diff --git a/ProblemsStore/00000000000.xd b/ProblemsStore/00000000000.xd index 84a3f28..4ec2db3 100644 Binary files a/ProblemsStore/00000000000.xd and b/ProblemsStore/00000000000.xd differ diff --git a/gradle/versioning.gradle b/gradle/versioning.gradle index 7565fd5..94b3234 100644 --- a/gradle/versioning.gradle +++ b/gradle/versioning.gradle @@ -1,6 +1,6 @@ //noinspection GroovyAssignabilityCheck version = new ProjectVersion( - '1', '0', '31', System.env.TRAVIS_BUILD_NUMBER + '1', '0', '32', System.env.TRAVIS_BUILD_NUMBER ) println "Version number: " + version diff --git a/problems.json b/problems.json index c1357a0..5ed8651 100644 --- a/problems.json +++ b/problems.json @@ -1,77 +1,77 @@ -[{"id":"fib","title":"Fibonacci","description":"Write the `fib` method to return the N'th term.\r\nWe start counting from:\r\n* fib(0) = 0\r\n* fib(1) = 1.\r\n\r\n### Examples\r\n\r\n* `0` -> `0`\r\n* `6` -> `8`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"fib","returnStatement":{"type":"java.lang.Long","comment":" N'th term of Fibonacci sequence"},"parameters":[{"name":"n","type":"java.lang.Integer","comment":"id of fibonacci term to be returned"}]},"testCases":[{"input":["0"],"output":0},{"input":["1"],"output":1},{"input":["2"],"output":1},{"input":["3"],"output":2},{"input":["4"],"output":3},{"input":["5"],"output":5},{"input":["6"],"output":8},{"input":["20"],"output":6765},{"input":["40"],"output":102334155}]}, -{"id":"number-of-leaves","title":"Count the Leaves","description":"Write a method `countLeaves` to find the total number of leaf nodes in a binary tree. If there is no leaf nodes, return 0..\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> # count = 4\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"countLeaves","returnStatement":{"type":"java.lang.Integer","comment":" Number of leaf nodes"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":2},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, -{"id":"isomorphic-strings","title":"Isomorphic Strings","description":"Given two strings - input1 and input2, implement method `isIsomorphic` to determine if they are isomorphic. Two strings are isomorphic if the letters in one string can be remapped to get the second string. Remapping a letter means replacing all occurrences of it with another letter. The ordering of the letters remains unchanged. You can also think of isomorphism as it is used in chemistry - i.e. having the same form or overall shape.\r\n\r\n### Examples\r\n\r\n* `'css', 'dll'` -> `true`\r\n* `'css', 'dle'` -> `false`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"isIsomorphic","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if strings are isomorphic"},"parameters":[{"name":"input1","type":"java.lang.String","comment":"input string 1 to be checked (ASCII)"},{"name":"input2","type":"java.lang.String","comment":"input string 2 to be checked (ASCII)"}]},"testCases":[{"input":["","a"],"output":false},{"input":[null,""],"output":false},{"input":["",null],"output":false},{"input":["",""],"output":true},{"input":[null,null],"output":false},{"input":["css","dll"],"output":true},{"input":["css","dle"],"output":false},{"input":["abcabc","xyzxyz"],"output":true},{"input":["abcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyz","xyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabc"],"output":true},{"input":["abcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyz","xyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzbacabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabc"],"output":false},{"input":["abcabc","xyzxzy"],"output":false},{"input":["a","z"],"output":true}]}, -{"id":"vertical-flip","title":"Vertical Flip","description":"Given an m x n 2D image matrix where each integer represents a pixel, write a method `flipVerticalAxis` to flip it in-place along its vertical axis.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 0],\r\n [1, 0]]\r\n->\r\n[[0, 1],\r\n [0, 1]]\r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"flipVerticalAxis","returnStatement":{"type":"void","comment":"Operation in-place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Image matrix to flip"}]},"testCases":[{"input":[[[1,0],[0,1]]],"output":[[0,1],[1,0]]},{"input":[[[1,0],[1,0]]],"output":[[0,1],[0,1]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1,0,1],[1,1,0],[0,1,1]]],"output":[[1,0,1],[0,1,1],[1,1,0]]}]}, -{"id":"palindrome-list","title":"Palindrome List","description":"Implement method `isPalindrome` with algorithm to check if a linked list is a palindrome.\r\n\r\n### Examples\r\n\r\n* `0->1->2->1->0` -> `true`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"isPalindrome","returnStatement":{"type":"java.lang.Boolean","comment":" Indicates if input linked list is palindrome"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List to check if it's palindrome"}]},"testCases":[{"input":[[0,1,2,1,0]],"output":true},{"input":[[0]],"output":true},{"input":[[]],"output":true},{"input":[[0,1,2,1,0,1,2,0,1,2,1,0]],"output":false},{"input":[[0,1,2,3,3,2,1,0]],"output":true},{"input":[[0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0]],"output":true},{"input":[[0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,7,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0]],"output":false}]}, -{"id":"transpose-matrix","title":"Transpose Matrix","description":"You are given a square 2D image matrix where each integer represents a pixel. Write a method `transposeMatrix` to transform the matrix into its transpose - in-place. The transpose of a matrix is a matrix which is formed by turning all the rows of the source matrix into columns and vice-versa..\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 2, 3, 4],\r\n [5, 6, 7, 8],\r\n [9, 0, 1, 2],\r\n [3, 4, 5, 0]]\r\n->\r\n[[1, 5, 9, 3],\r\n [2, 6, 0, 4],\r\n [3, 7, 1, 5],\r\n [4, 8, 2, 0]]\r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"transposeMatrix","returnStatement":{"type":"void","comment":" Operation in place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Matrix to transpose"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":[[1,5,9,3],[2,6,0,4],[3,7,1,5],[4,8,2,0]]},{"input":[[[0,2,3,4],[5,6,0,8],[9,0,1,2],[3,4,5,0]]],"output":[[0,5,9,3],[2,6,0,4],[3,0,1,5],[4,8,2,0]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1]]],"output":[[1]]},{"input":[[[1,0],[1,0]]],"output":[[1,1],[0,0]]}]}, -{"id":"2-sum","title":"2 Sum","description":"Given an array of integers, find two numbers such that they add up to a specific target number.\r\n\r\nThe method `twoSum` should return indices of the two numbers such that they add up to the target, where *index1* must be less than *index2*. Please note that your returned answers (both *index1* and *index2*) are not zero-based.\r\n\r\n**Note**: You may assume that each input would have exactly one solution.\r\n\r\n### Example\r\n\r\n* `[2,7,11,15], 9` -> `[1,2]`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"twoSum","returnStatement":{"type":"[I","comment":" Indices of the two numbers"},"parameters":[{"name":"numbers","type":"[I","comment":"An array of Integer"},{"name":"target","type":"java.lang.Integer","comment":"target = numbers[index1] + numbers[index2]"}]},"testCases":[{"input":[[2,7,11,15],9],"output":[1,2]},{"input":[[1,0,-1],-1],"output":[2,3]},{"input":[[1,0,-1],0],"output":[1,3]},{"input":[[1,0,-1],1],"output":[1,2]},{"input":[[1,2,5,6,7,3,5,8,-33,-5,-72,12,-34,100,99],-64],"output":[8,11]},{"input":[[1,2,33,23,2423,33,23,1,7,6,8787,5,33,2,3,-23,-54,-67,100,400],407],"output":[9,20]},{"input":[[-1,-2,-3,-4,-5,-6,-100,-98,-111,-11],-111],"output":[7,10]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,9,9,10,11,1001,2001,198,201,203,201,999,345,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,1,1,1,1,1,1,1,1,1,1,1,101,1,1,1,1,1,1,1,1],107],"output":[78,90]}]}, -{"id":"repeated-elements","title":"Repeated Elements","description":"Write a method `findDuplicates` to find the repeated or duplicate elements in an array. This method should return a list of repeated integers in a string with the elements sorted in ascending order.\r\n\r\n### Example\r\n\r\n* `[2,5,7,11,15,11,15]` -> `'[11, 15]'`\r\n* `[2,5,7]` -> `'[]'`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"findDuplicates","returnStatement":{"type":"java.lang.String","comment":" Array of sorted numbers representing duplicates in original array"},"parameters":[{"name":"arr","type":"[I","comment":"An array of Integers"}]},"testCases":[{"input":[[2,5,7,11,15,11,15]],"output":"[11, 15]"},{"input":[[2,5,7,11,15,11,2,4,5]],"output":"[2, 5, 11]"},{"input":[[2,5,7,11,15,4]],"output":"[]"},{"input":[[7,5,2,2,5,7,7,7,2,2,5,5]],"output":"[2, 5, 7]"},{"input":[[]],"output":"[]"}]}, -{"id":"reverse-list","title":"Reverse Linked List","description":"Given a singly linked list, write a method `reverseList` to reverse the list and return new head.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6` -> `6->5->4->3->2->1`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"reverseList","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Reversed linked list"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":[6,5,4,3,2,1]},{"input":[[1]],"output":[1]},{"input":[[1,2]],"output":[2,1]},{"input":[[2,2]],"output":[2,2]},{"input":[null],"output":null}]}, -{"id":"binary-representation","title":"Binary Representation","description":"Write a method `computeBinary` to compute the binary representation of an integer. The method should return a string with 1s and 0s. Use the minimum number of binary digits needed for representation (truncate unnecessary 0s).\n\n**Note**: using java framework to solve it is forbidden - you have to code it by yourself.\n\n### Example\n\n* `6` -> `'110'`\n* `-5` -> `'11111111111111111111111111111011'`","timeLimit":2,"memoryLimit":32,"level":2,"func":{"name":"computeBinary","returnStatement":{"type":"java.lang.String","comment":" Binary representation"},"parameters":[{"name":"value","type":"java.lang.Integer","comment":"Input number"}]},"testCases":[{"input":[5],"output":"101"},{"input":[6],"output":"110"},{"input":[-5],"output":"11111111111111111111111111111011"},{"input":[2147483647],"output":"1111111111111111111111111111111"},{"input":[0],"output":"0"},{"input":[10],"output":"1010"},{"input":[15],"output":"1111"},{"input":[52],"output":"110100"},{"input":[1],"output":"1"}]}, -{"id":"sum-lists-2","title":"Sum Lists 2","description":"You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in forward order, such that the 1's digit is at the tail of the list. Write method `addLists` that adds the two numbers and returns the sum as a linked list.\r\n\r\n### Examples\r\n\r\n* `6->1->7, 2->9->5` -> `9->1->2` (617 + 295 = 912)","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"addLists","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" linked list node containing result of sum"},"parameters":[{"name":"l1","type":"com.jalgoarena.type.ListNode","comment":"First Linked List to add"},{"name":"l2","type":"com.jalgoarena.type.ListNode","comment":"Second Linked List to add"}]},"testCases":[{"input":[[6,1,7],[2,9,5]],"output":[9,1,2]},{"input":[[1,4,5,6,7],[1,3,9]],"output":[1,4,7,0,6]},{"input":[[1,4,5,6,7],[]],"output":[1,4,5,6,7]},{"input":[[1],[1,3,9]],"output":[1,4,0]},{"input":[[9],[1]],"output":[1,0]},{"input":[[],[]],"output":[]}]}, -{"id":"remove-dups","title":"Remove Duplicates","description":"Write method `removeDuplicates` to remove duplicates from an unsorted linked list.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->3->3` -> `1->2->3->4`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"removeDuplicates","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Linked List with removed duplicates"},"parameters":[{"name":"node","type":"com.jalgoarena.type.ListNode","comment":"Linked List where we need to remove duplicates"}]},"testCases":[{"input":[[1,2,3,4,3,3]],"output":[1,2,3,4]},{"input":[[]],"output":[]},{"input":[[1,1,1,1]],"output":[1]},{"input":[[1,1,1,1,2,3,4,3,3]],"output":[1,2,3,4]},{"input":[[1,1,2,2,3,3,4,4,3,3]],"output":[1,2,3,4]},{"input":[[1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3]],"output":[1,2,3,4]}]}, -{"id":"insert-at-tail","title":"Insert Node at Tail","description":"Write a method `insertAtTail` to insert a node at the end of a singly linked list. Return the head of the modified list.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6, 7` -> `1->2->3->4->5->6->7`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"insertAtTail","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" New linked list"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"},{"name":"data","type":"java.lang.Integer","comment":"New value"}]},"testCases":[{"input":[[1,2,3,4,5,6],7],"output":[1,2,3,4,5,6,7]},{"input":[[],2],"output":[2]},{"input":[[1],1],"output":[1,1]},{"input":[[5,3],5],"output":[5,3,5]}]}, -{"id":"word-ladder","title":"Word Ladder","description":"Given two words (start and end), and a dictionary, write a method `ladderLength` to find the length of shortest transformation sequence from start to end, such that:\r\n* Only one letter can be changed at a time\r\n* Each intermediate word must exist in the dictionary\r\n* Including first word as one transformation\r\n\r\n### Examples\r\n\r\n* `\"a\", \"c\", [\"a\",\"b\",\"c\"]` -> `2`\r\n* `\"game\", \"thee\", [\"frye\",\"heat\",\"tree\",\"thee\",\"game\",\"free\",\"hell\",\"fame\",\"faye\"]` -> `7`","timeLimit":1,"memoryLimit":3200,"level":3,"func":{"name":"ladderLength","returnStatement":{"type":"java.lang.Integer","comment":"The shortest length"},"parameters":[{"name":"begin","type":"java.lang.String","comment":"the begin word"},{"name":"end","type":"java.lang.String","comment":"the end word"},{"name":"dict","type":"java.util.HashSet","comment":"the dictionary", "generic":"String"}]},"testCases":[{"input":["a","c",["a","b","c"]],"output":2},{"input":["hot","dog",["hot","cog","dog","tot","hog","hop","pot","dot"]],"output":3},{"input":["game","thee",["frye","heat","tree","thee","game","free","hell","fame","faye"]],"output":7},{"input":["kiss","tusk",["miss","dusk","kiss","musk","tusk","diss","disk","sang","ties","muss"]],"output":5},{"input":["teach","place",["peale","wilts","place","fetch","purer","pooch","peace","poach","berra","teach","rheum","peach"]],"output":4},{"input":["ta","if",["ts","sc","ph","ca","jr","hf","to","if","ha","is","io","cf","ta"]],"output":4},{"input":["qa","sq",["si","go","se","cm","so","ph","mt","db","mb","sb","kr","ln","tm","le","av","sm","ar","ci","ca","br","ti","ba","to","ra","fa","yo","ow","sn","ya","cr","po","fe","ho","ma","re","or","rn","au","ur","rh","sr","tc","lt","lo","as","fr","nb","yb","if","pb","ge","th","pm","rb","sh","co","ga","li","ha","hz","no","bi","di","hi","qa","pi","os","uh","wm","an","me","mo","na","la","st","er","sc","ne","mn","mi","am","ex","pt","io","be","fm","ta","tb","ni","mr","pa","he","lr","sq","ye"]],"output":5},{"input":["cet","ism",["kid","tag","pup","ail","tun","woo","erg","luz","brr","gay","sip","kay","per","val","mes","ohs","now","boa","cet","pal","bar","die","war","hay","eco","pub","lob","rue","fry","lit","rex","jan","cot","bid","ali","pay","col","gum","ger","row","won","dan","rum","fad","tut","sag","yip","sui","ark","has","zip","fez","own","ump","dis","ads","max","jaw","out","btu","ana","gap","cry","led","abe","box","ore","pig","fie","toy","fat","cal","lie","noh","sew","ono","tam","flu","mgm","ply","awe","pry","tit","tie","yet","too","tax","jim","san","pan","map","ski","ova","wed","non","wac","nut","why","bye","lye","oct","old","fin","feb","chi","sap","owl","log","tod","dot","bow","fob","for","joe","ivy","fan","age","fax","hip","jib","mel","hus","sob","ifs","tab","ara","dab","jag","jar","arm","lot","tom","sax","tex","yum","pei","wen","wry","ire","irk","far","mew","wit","doe","gas","rte","ian","pot","ask","wag","hag","amy","nag","ron","soy","gin","don","tug","fay","vic","boo","nam","ave","buy","sop","but","orb","fen","paw","his","sub","bob","yea","oft","inn","rod","yam","pew","web","hod","hun","gyp","wei","wis","rob","gad","pie","mon","dog","bib","rub","ere","dig","era","cat","fox","bee","mod","day","apr","vie","nev","jam","pam","new","aye","ani","and","ibm","yap","can","pyx","tar","kin","fog","hum","pip","cup","dye","lyx","jog","nun","par","wan","fey","bus","oak","bad","ats","set","qom","vat","eat","pus","rev","axe","ion","six","ila","lao","mom","mas","pro","few","opt","poe","art","ash","oar","cap","lop","may","shy","rid","bat","sum","rim","fee","bmw","sky","maj","hue","thy","ava","rap","den","fla","auk","cox","ibo","hey","saw","vim","sec","ltd","you","its","tat","dew","eva","tog","ram","let","see","zit","maw","nix","ate","gig","rep","owe","ind","hog","eve","sam","zoo","any","dow","cod","bed","vet","ham","sis","hex","via","fir","nod","mao","aug","mum","hoe","bah","hal","keg","hew","zed","tow","gog","ass","dem","who","bet","gos","son","ear","spy","kit","boy","due","sen","oaf","mix","hep","fur","ada","bin","nil","mia","ewe","hit","fix","sad","rib","eye","hop","haw","wax","mid","tad","ken","wad","rye","pap","bog","gut","ito","woe","our","ado","sin","mad","ray","hon","roy","dip","hen","iva","lug","asp","hui","yak","bay","poi","yep","bun","try","lad","elm","nat","wyo","gym","dug","toe","dee","wig","sly","rip","geo","cog","pas","zen","odd","nan","lay","pod","fit","hem","joy","bum","rio","yon","dec","leg","put","sue","dim","pet","yaw","nub","bit","bur","sid","sun","oil","red","doc","moe","caw","eel","dix","cub","end","gem","off","yew","hug","pop","tub","sgt","lid","pun","ton","sol","din","yup","jab","pea","bug","gag","mil","jig","hub","low","did","tin","get","gte","sox","lei","mig","fig","lon","use","ban","flo","nov","jut","bag","mir","sty","lap","two","ins","con","ant","net","tux","ode","stu","mug","cad","nap","gun","fop","tot","sow","sal","sic","ted","wot","del","imp","cob","way","ann","tan","mci","job","wet","ism","err","him","all","pad","hah","hie","aim","ike","jed","ego","mac","baa","min","com","ill","was","cab","ago","ina","big","ilk","gal","tap","duh","ola","ran","lab","top","gob","hot","ora","tia","kip","han","met","hut","she","sac","fed","goo","tee","ell","not","act","gil","rut","ala","ape","rig","cid","god","duo","lin","aid","gel","awl","lag","elf","liz","ref","aha","fib","oho","tho","her","nor","ace","adz","fun","ned","coo","win","tao","coy","van","man","pit","guy","foe","hid","mai","sup","jay","hob","mow","jot","are","pol","arc","lax","aft","alb","len","air","pug","pox","vow","got","meg","zoe","amp","ale","bud","gee","pin","dun","pat","ten","mob"]],"output":11}]}, -{"id":"postorder-traversal","title":"Postorder Traversal","description":"Given a binary tree, Write a method `postorderTraversal` to traverse the tree in the postorder manner. Return array of elements visited in postorder format.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> 4526731\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"postorderTraversal","returnStatement":{"type":"[I","comment":" Postordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[4,5,2,6,7,3,1]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}],"output":[4,2,7,3,1]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, -{"id":"max-gain","title":"Max gain","description":"Given an array of integers, write a method `maxGain` that returns the maximum gain. Maximum Gain is defined as the maximum difference between 2 elements in a list such that the larger element appears after the smaller element. If no gain is possible, return 0.\r\n\r\n### Example\r\n\r\n* `[0,50,10,100,30]` -> `100`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"maxGain","returnStatement":{"type":"java.lang.Integer","comment":" Max gain"},"parameters":[{"name":"arr","type":"[I","comment":"An array of Integer"}]},"testCases":[{"input":[[0,50,10,100,30]],"output":100},{"input":[[1,1]],"output":0},{"input":[[100,40,20,10]],"output":0},{"input":[[0,100,0,100,0,100]],"output":100},{"input":[[1,2,5,6,7,3,5,8,-33,-5,-72,12,-34,100,99]],"output":172},{"input":[[1,2,33,23,2423,33,23,1,7,6,8787,5,33,2,3,-23,-54,-67,100,400]],"output":8786},{"input":[[-1,-2,-3,-4,-5,-6,-100,-98,-111,-11]],"output":100},{"input":[[]],"output":0},{"input":[[1]],"output":0},{"input":[null],"output":0},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,9,9,10,11,1001,2001,198,201,203,201,999,345,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,1,1,1,1,1,1,1,1,1,1,1,101,1,1,1,1,1,1,1,1]],"output":2001}]}, -{"id":"rotate-matrix","title":"Rotate Matrix","description":"Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method `rotate` to rotate the image by 90 degrees in place.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 2, 3, 4],\r\n [5, 6, 7, 8],\r\n [9, 0, 1, 2],\r\n [3, 4, 5, 6]] \r\n->\r\n[[3, 9, 5, 1],\r\n [4, 0, 6, 2],\r\n [5, 1, 7, 3],\r\n [6, 2, 8, 4]]\r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"rotate","returnStatement":{"type":"void","comment":" Operation in place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Image matrix to rotate"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,6]]],"output":[[3,9,5,1],[4,0,6,2],[5,1,7,3],[6,2,8,4]]},{"input":[[[1,2],[5,6]]],"output":[[5,1],[6,2]]},{"input":[[[0]]],"output":[[0]]}]}, -{"id":"string-rotation","title":"String Rotation","description":"Given two strings, s1 and s2, write method `isRotation` with algorithm checking if s2 is a rotation of s1.\r\n\r\n### Example\r\n\r\n* `'watterbottle', 'erbottlewatt'` -> `true`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"isRotation","returnStatement":{"type":"java.lang.Boolean","comment":" Is s2 rotation of s1"},"parameters":[{"name":"s1","type":"java.lang.String","comment":"s1 string"},{"name":"s2","type":"java.lang.String","comment":"s2 string"}]},"testCases":[{"input":["watterbottle","erbottlewatt"],"output":true},{"input":["watterbottle","erbotlewat"],"output":false},{"input":["","a"],"output":false},{"input":["aa","a"],"output":false},{"input":["watterbattle","erbottlewat"],"output":false},{"input":["stackoverflow","stackoverflwo"],"output":false}]}, -{"id":"single-number","title":"Single Number","description":"Write a method `singleNumber` that returns a number that appears only once in an array. Assume that array will surely have a unique value. The array will never be empty..\r\n\r\n### Examples\r\n\r\n```\r\n[1,2,3,4,1,2,3,4,5]\r\n->\r\n5\r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"singleNumber","returnStatement":{"type":"java.lang.Integer","comment":"Single Number to find"},"parameters":[{"name":"arr","type":"[I","comment":"Array of integers with a single number"}]},"testCases":[{"input":[[1,2,3,4,1,2,3,4,5]],"output":5},{"input":[[0,1,2,3,4,5,1,2,3,4,5]],"output":0},{"input":[[1,2,3,4,3,-2,4,5,1,2,3,4,5]],"output":-2},{"input":[[1]],"output":1}]}, -{"id":"snake","title":"Snake","description":"Write a method `findSpiral` to traverse a 2D matrix of integers in a clockwise spiral order and set the elements to an output array of integers.\r\n\r\n### Example\r\n\r\n``` \r\nInput Matrix : \r\n{1, 2, 3} \r\n{4, 5, 6} \r\n{7, 8, 9} \r\n\r\nOutput ArrayList:[1, 2, 3, 6, 9, 8, 7, 4, 5] \r\n ```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"findSpiral","returnStatement":{"type":"[I","comment":" Spiral Path as array"},"parameters":[{"name":"matrix","type":"[[I","comment":"An input matrix"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":[1,2,3,4,8,2,0,5,4,3,9,5,6,7,1,0]},{"input":[[[1,2,3,4,5,6],[7,8,9,10,11,12],[13,14,15,16,17,18]]],"output":[1,2,3,4,5,6,12,18,17,16,15,14,13,7,8,9,10,11]},{"input":[[[0]]],"output":[0]},{"input":[[[]]],"output":[]},{"input":[[[1,0],[1,0]]],"output":[1,0,0,1]}]}, -{"id":"make-change","title":"Make Change","description":"Given an integer array containing the available denominations of coins in descending order, write a method `makeChange` to compute the number of possible ways of representing a monetary amount in cents. For simplicity, assume that there are an infinite number of coins available for each coin denomination in the array.\r\n\r\n### Example\r\n\r\n* `[25,10,5,1], 10` -> `4`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"makeChange","returnStatement":{"type":"java.lang.Integer","comment":" Number of possibilities"},"parameters":[{"name":"coins","type":"[I","comment":"An available denomination of coins"},{"name":"amount","type":"java.lang.Integer","comment":"Amount of money to change"}]},"testCases":[{"input":[[25,10,5,1],10],"output":4},{"input":[[],10],"output":0},{"input":[null,10],"output":0},{"input":[[25,10,5,1],100],"output":242},{"input":[[10,5,1],-10],"output":0},{"input":[[10,5,1],0],"output":0},{"input":[[1,0],1],"output":1}]}, -{"id":"reverse-integer","title":"Reverse Integer","description":"Implement a method `reverseInt` that reverses an integer - without using additional heap space.\r\n\r\n### Example\r\n\r\n* `-123` -> `-321`\r\n* `123` -> `321`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"reverseInt","returnStatement":{"type":"java.lang.Integer","comment":" Reversed integer"},"parameters":[{"name":"x","type":"java.lang.Integer","comment":"Input value"}]},"testCases":[{"input":[-123],"output":-321},{"input":[123],"output":321},{"input":[0],"output":0},{"input":[3000],"output":3},{"input":[-53000],"output":-35},{"input":[2147483640],"output":463847412},{"input":[2147483641],"output":1463847412},{"input":[-2147483640],"output":-463847412}]}, -{"id":"kth-to-last","title":"Return Kth to Last","description":"Implement method `kthToLast` with algorithm to find the kth to last element of a singly linked list.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6, 3` -> `3`\r\n\r\n### Notes\r\n\r\n* If index is absent, return 0.","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"kthToLast","returnStatement":{"type":"java.lang.Integer","comment":" kth to last element of a singly linked list"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List where we need to find kth to last element"},{"name":"k","type":"java.lang.Integer","comment":"index of element to find"}]},"testCases":[{"input":[[1,2,3,4,5,6],3],"output":3},{"input":[[13,1,1,1,2,3,4,3,3],100],"output":0},{"input":[[12,1,2,2,3,3,4,4,3,1],1],"output":3},{"input":[[11,1,2,2,3,3,4,4,3,6],-1],"output":0},{"input":[[10,1,2,2,3,3,4,4,3,6],8],"output":1},{"input":[[101,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1],219],"output":101}]}, -{"id":"horizontal-flip","title":"Horizontal Flip","description":"Given an m x n 2D image matrix where each integer represents a pixel, write a method `flipHorizontalAxis` to flip it in-place along its horizontal axis.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 0],\r\n [0, 1]]\r\n->\r\n[[0, 1],\r\n [1, 0]]\r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"flipHorizontalAxis","returnStatement":{"type":"void","comment":"Operation in-place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Image matrix to flip"}]},"testCases":[{"input":[[[1,0],[0,1]]],"output":[[0,1],[1,0]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1,0,1],[1,1,0],[0,1,1]]],"output":[[0,1,1],[1,1,0],[1,0,1]]}]}, -{"id":"binary-search","title":"Binary Search","description":"Write a method `binarySearch` that searches an array of integers for a given integer using the Binary Search Algorithm. If the input integer is found in the array - return index of that item. Otherwise, return -1.\n\n### Notes: \n* You may assume that the given array of integers is already sorted in ascending order.\n* Using java framework to solve it is forbidden - you have to code it by yourself.\n* You have to implement binary search - it cannot be solved through traversing array, or other sort algorithm\n\n### Example\n\n* `[2,5,7,11,15], 11` -> `3`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"binarySearch","returnStatement":{"type":"java.lang.Integer","comment":" Index of element if found or -1 if absent"},"parameters":[{"name":"arr","type":"[I","comment":"An array of Integers"},{"name":"n","type":"java.lang.Integer","comment":"element to find"}]},"testCases":[{"input":[[2,5,7,11,15],11],"output":3},{"input":[[2,5,7,11,15],15],"output":4},{"input":[[2,5,7,11,15],13],"output":-1},{"input":[[2],13],"output":-1},{"input":[[2],2],"output":0},{"input":[[],5],"output":-1},{"input":[[1,2,2,3],2],"output":1}]}, -{"id":"one-away","title":"One Away","description":"There are three types of edits that can be performed on strings: \r\n* insert a character\r\n* remove a character\r\n* replace a character. \r\n\r\nGiven two strings, write a method `oneEditAway` to check if they are one edit (or zero edits) away.\r\n\r\n### Examples\r\n\r\n* `\"pale\", \"ple\"` -> `true`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"oneEditAway","returnStatement":{"type":"java.lang.Boolean","comment":" Is first string one or zero edits away from the second?"},"parameters":[{"name":"first","type":"java.lang.String","comment":"first string"},{"name":"second","type":"java.lang.String","comment":"second string"}]},"testCases":[{"input":["pale","ple"],"output":true},{"input":["pales","pale"],"output":true},{"input":["pale","bale"],"output":true},{"input":["pale","bake"],"output":false},{"input":["pale","bae"],"output":false},{"input":["bae","pale"],"output":false},{"input":["p",""],"output":true},{"input":["","p"],"output":true},{"input":["","pa"],"output":false},{"input":["Julia","juliA"],"output":false}]}, -{"id":"stoi","title":"String to Integer (stoi)","description":"Implement method `stoi` to convert a string to an integer.\n\n**Hint**: Carefully consider all possible input cases. If you want a challenge.\n\n**Notes**: \n* It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front\n* For incorrect input, return 0\n* You cannot use `Integer.parseInt` or any other Java framework method - you have to implement it by yourself\n\n### Examples\n\n* `\"1\"` -> `1`\n* `\"abc\"` -> `0`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"stoi","returnStatement":{"type":"java.lang.Integer","comment":"An integer"},"parameters":[{"name":"str","type":"java.lang.String","comment":"A string"}]},"testCases":[{"input":[""],"output":0},{"input":["1"],"output":1},{"input":["+1"],"output":1},{"input":["-1"],"output":-1},{"input":["123"],"output":123},{"input":["-123"],"output":-123},{"input":["+-2"],"output":0},{"input":["010"],"output":10}]}, -{"id":"validate-bst","title":"BST Validation","description":"Given a binary tree, write a method `validateBST` to determine if it is a Binary Search Tree.\r\n\r\n### Example\r\n\r\n ``` \r\n 20 \r\n / \\ \r\n 15 30 \r\n / \\ \r\n14 18 \r\n \r\noutput ==> true\r\n\r\n 20\r\n / \\ \r\n 30 15 \r\n / \\ \r\n14 18 \r\n \r\noutput ==> false \r\n\r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"validateBST","returnStatement":{"type":"java.lang.Boolean","comment":" Is a binary search tree"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":5,"left":{"data":3,"left":{"data":2},"right":{"data":4}},"right":{"data":8,"left":{"data":6},"right":{"data":9}}}],"output":true},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":10},"right":{"data":7}}}],"output":false},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":false},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":40}}}}],"output":false},{"input":[{"data":20,"left":{"data":15,"left":{"data":10},"right":{"data":30}},"right":{"data":40}}],"output":false},{"input":[{"data":20,"left":{"data":15,"left":{"data":10},"right":{"data":16}},"right":{"data":40}}],"output":true},{"input":[{"data":1}],"output":true},{"input":[null],"output":true}]}, -{"id":"palindrome-perm","title":"Palindrome Permutations","description":"Given a string, write a method `isPermutationOfPalindrome` to check if it is a permutation of a palindrome. \r\n\r\nThe palindrome does not need to be limited to just dictionary words (skip non-letter characters). Your solution should be case insensitive.\r\n\r\n### Examples\r\n\r\n* `\"Tact Coa\"` -> `true` (permutations: \"taco cat\", \"acto tca\", etc.)","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"isPermutationOfPalindrome","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if string is a permutation of palindrome"},"parameters":[{"name":"phrase","type":"java.lang.String","comment":"string to be checked if any permutation is palindrome"}]},"testCases":[{"input":["abcabcd"],"output":true},{"input":["a"],"output":true},{"input":["Aa"],"output":true},{"input":[""],"output":false},{"input":["cxzwcxzwcxzwcxzwa"],"output":true},{"input":["cxzwcxzwcxzwcxzwab"],"output":false},{"input":["Tact Coa"],"output":true},{"input":["Tact Coa&"],"output":true}]}, -{"id":"delete-tail-node","title":"Delete List Tail Node","description":"Given a singly linked list, write a method `deleteAtTail` to delete its last node and return the head.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6` -> `1->2->3->4->5`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"deleteAtTail","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Initial linked list with removed tail"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":[1,2,3,4,5]},{"input":[[1]],"output":[]},{"input":[[]],"output":[]},{"input":[[5,3]],"output":[5]}]}, -{"id":"boggle-search","title":"Boggle Search","description":"You're given a 2D Boggle Board which contains an m x n matrix of chars - char[][] board, and a String - word. Write a method - `boggleSearch` that searches the Boggle Board for the presence of the input word. Words on the board can be constructed with sequentially adjacent letters, where adjacent letters are horizontal or vertical neighbors (not diagonal). Also, each letter on the Boggle Board must be used only once.\r\n\r\n### Examples\r\n\r\n``` \r\n\r\nInput Board : \r\n[ \r\n [A, O, L], \r\n [D, E, L], \r\n [G, H, I] \r\n] \r\nWord: \"HELLO\" \r\nOutput: true \r\n```","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"boggleSearch","returnStatement":{"type":"java.lang.Boolean","comment":" Is the word present"},"parameters":[{"name":"board","type":"[[C","comment":"Boggle Board"},{"name":"word","type":"java.lang.String","comment":"Word to find"}]},"testCases":[{"input":[[["A","O","L"],["D","E","L"],["G","H","I"]],"HELLO"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"JACK"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"AXE"],"output":false},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"ROCKS"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"DFS"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"ROCK"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"FIRES"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"SEE"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"JACKET"],"output":false},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"FIRECODE"],"output":true}]}, -{"id":"delete-head-node","title":"Delete List Head Node","description":"Given a singly linked list, write a method `deleteAtHead` to delete its head node and return the new head.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6` -> `2->3->4->5->6`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"deleteAtHead","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Initial linked list with removed head"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":[2,3,4,5,6]},{"input":[[1]],"output":[]},{"input":[[]],"output":[]},{"input":[[5,3]],"output":[3]}]}, -{"id":"count-paths","title":"Count Paths","description":"You're given a game board that has m x n squares on it, represented by an m x n array. Write a method `countPaths` that takes in m and n and returns the number of possible paths from the top left corner to the bottom right corner. Only down and right directions of movement are permitted.\r\n\r\n### Examples\r\n\r\n``` \r\n countPaths(m = 2, n = 2) => 2 \r\n \r\n as on the following 2x2 Board, the two paths are A->C->D and A->B->D \r\n \r\n A B \r\n C D \r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"countPaths","returnStatement":{"type":"java.lang.Integer","comment":" Number of paths"},"parameters":[{"name":"m","type":"java.lang.Integer","comment":"Number of rows"},{"name":"n","type":"java.lang.Integer","comment":"Number of columns"}]},"testCases":[{"input":[1,1],"output":1},{"input":[7,15],"output":38760},{"input":[3,5],"output":15},{"input":[10,12],"output":167960},{"input":[15,16],"output":77558760},{"input":[5,3],"output":15},{"input":[4,1],"output":1},{"input":[2,2],"output":2},{"input":[18,17],"output":1166803110},{"input":[12,6],"output":4368},{"input":[8,10],"output":11440},{"input":[0,0],"output":0},{"input":[1,0],"output":0},{"input":[0,1],"output":0}]}, -{"id":"delete-at-middle","title":"Delete Node at Middle","description":"Given a singly linked list, write a method `deleteAtMiddle` to delete the node at a given position (starting from 1 as the head position) and return the head of the list. Do nothing if the input position is out of range.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6, 3` -> `1->2->4->5->6`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"deleteAtMiddle","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" New Linked List with removed node at given position"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"},{"name":"position","type":"java.lang.Integer","comment":"Position of node to be removed"}]},"testCases":[{"input":[[1,2,3,4,5,6],3],"output":[1,2,4,5,6]},{"input":[[1,2,3,4,5,6],1],"output":[2,3,4,5,6]},{"input":[[1,2,3,4,5,6],6],"output":[1,2,3,4,5]},{"input":[[1],3],"output":[1]},{"input":[[1],1],"output":null},{"input":[null,1],"output":null}]}, -{"id":"sum-binary-tree","title":"Sum of a binary tree","description":"Given a binary tree, write a method `sum` to find and return the sum of all elements. For an empty tree return 0.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> sum = 28\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"sum","returnStatement":{"type":"java.lang.Integer","comment":" Sum of all binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":28},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":-5}},"right":{"data":3,"left":{"data":6},"right":{"data":-7}}}],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":23},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, -{"id":"happy-numbers","title":"Happy Numbers","description":"Write a method `isHappyNumber` to determine whether a positive number is `Happy`. A number is Happy (Yes, it is a thing!) if it follows a sequence that ends in 1 after following the steps given below:\n\n\bBeginning with the number itself, replace it by the sum of the squares of its digits until either the number becomes 1 or loops endlessly in a cycle that does not include 1. For instance, 19 is a happy number. Sequence: \n * 1^2^ + 9^2^ = 82 \n* 8^2^ + 2^2^ = 68 \n* 6^2^ + 8^2^ = 100 \n* 1^2^ + 0^2^ + 0^2^ = 1. \n\n### Examples\n\n* `19` -> `true`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"isHappyNumber","returnStatement":{"type":"java.lang.Boolean","comment":" Is happy number"},"parameters":[{"name":"head","type":"java.lang.Integer","comment":"Input number"}]},"testCases":[{"input":[19],"output":true},{"input":[28],"output":true},{"input":[68],"output":true},{"input":[12],"output":false},{"input":[100],"output":true},{"input":[12352],"output":false},{"input":[0],"output":false}]}, -{"id":"first-non-repeated-char","title":"First Non Repeated Character","description":"Write a method `findFirstNonRepeatedChar` that finds the first non-duplicate character in a string. Return null if no unique character is found.\r\n\r\n### Example\r\n\r\n* `'asdsdakz` -> `'k'`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"findFirstNonRepeatedChar","returnStatement":{"type":"java.lang.String","comment":" First non-duplicate character or null if absent"},"parameters":[{"name":"str","type":"java.lang.String","comment":"Input string"}]},"testCases":[{"input":["asdsdakz"],"output":"k"},{"input":["asdsda"],"output":null},{"input":["asd"],"output":"a"},{"input":[""],"output":null},{"input":[null],"output":null}]}, -{"id":"inorder-traversal","title":"Inorder Traversal","description":"Given a binary tree, Write a method `inorderTraversal` to traverse the tree in the inorder manner. Return array of elements visited in inorder format.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> 4251637\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"inorderTraversal","returnStatement":{"type":"[I","comment":" Inordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[4,2,5,1,6,3,7]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}],"output":[4,2,1,3,7]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, -{"id":"preorder-traversal","title":"Preorder Traversal","description":"Given a binary tree, Write a method `preorderTraversal` to traverse the tree in the preorder manner. Return array of elements visited in preorder format.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> 1245367\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"preorderTraversal","returnStatement":{"type":"[I","comment":" Preordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[1,2,4,5,3,6,7]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}],"output":[1,2,4,3,7]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, -{"id":"sort-array","title":"Sort Array","description":"Write method `sort` to sort given array.\r\n\r\n**Note**: You cannot use `Arrays.sort` or any other framework method to do that - you have to implement it.\r\n\r\n### Example\r\n\r\n* `[44,2,22,7,11,15]` -> `[2,7,11,15,22,44]`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"sort","returnStatement":{"type":"[I","comment":" Sorted array"},"parameters":[{"name":"arr","type":"[I","comment":"An array to sort"}]},"testCases":[{"input":[[44,2,22,7,11,15]],"output":[2,7,11,15,22,44]},{"input":[[1]],"output":[1]},{"input":[[]],"output":[]},{"input":[null],"output":null},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,9,9,10,11,1001,2001,198,201,203,201,999,345,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,1,1,1,1,1,1,1,1,1,1,1,101,1,1,1,1,1,1,1,1]],"output":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,9,9,9,10,11,101,198,201,201,203,345,999,1001,2001]}]}, -{"id":"string-compress","title":"String Compression","description":"Implement a method `compress` to perform basic string compression using the counts of repeated characters. \r\n\r\nIf the **compressed** string would not become smaller than original string, your method should return original string. \r\n\r\n**Note**: You can assume the string has only uppercase and lowercase letters (a-z).\r\n\r\n### Examples\r\n\r\n* `\"aabcccccaaa\"` -> `\"a2b1c5a3\"`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"compress","returnStatement":{"type":"java.lang.String","comment":" Compressed string."},"parameters":[{"name":"str","type":"java.lang.String","comment":"String to compress"}]},"testCases":[{"input":["aabcccccaaa"],"output":"a2b1c5a3"},{"input":["Julia"],"output":"Julia"},{"input":[""],"output":""},{"input":[null],"output":null},{"input":["JjuuLLiiiiAaaaaAAaaaaa"],"output":"J1j1u2L2i4A1a4A2a5"},{"input":["JjuuLLiiiiAaaaaAAaBCDEFG"],"output":"JjuuLLiiiiAaaaaAAaBCDEFG"},{"input":["JJJJJJJJJJJ"],"output":"J11"}]}, -{"id":"sum-lists","title":"Sum Lists","description":"You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in reverse order, such that the 1's digit is at the head of the list. Write method `addLists` that adds the two numbers and returns the sum as a linked list.\r\n\r\n### Examples\r\n\r\n* `7->1->6, 5->9->2` -> `2->1->9` (617 + 295 = 912)","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"addLists","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" linked list node containing result of sum"},"parameters":[{"name":"l1","type":"com.jalgoarena.type.ListNode","comment":"First Linked List to add"},{"name":"l2","type":"com.jalgoarena.type.ListNode","comment":"Second Linked List to add"}]},"testCases":[{"input":[[7,1,6],[5,9,2]],"output":[2,1,9]},{"input":[[7,6,5,4,1],[9,3,1]],"output":[6,0,7,4,1]},{"input":[[7,6,5,4,1],[]],"output":[7,6,5,4,1]},{"input":[[1],[9,3,1]],"output":[0,4,1]},{"input":[[9],[1]],"output":[0,1]},{"input":[[],[]],"output":[]}]}, -{"id":"find-middle-node","title":"Find Middle Node","description":"Given a singly linked list, write a method `findMiddleNode` to find and return the middle node of the list.\n\n### Examples\n\n* `1->2->3->4->5` => `3->4->5`\n* `1->2->3->4->5->6` => `3->4->5->6`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"findMiddleNode","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Middle node"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5]],"output":[3,4,5]},{"input":[[1]],"output":[1]},{"input":[[1,2]],"output":[1,2]},{"input":[[]],"output":null},{"input":[null],"output":null},{"input":[[5,3,2,1]],"output":[3,2,1]}]}, -{"id":"height-binary-tree","title":"Height of a Binary Tree","description":"Given a binary tree, write a method `findHeight` to find its height. An empty tree has a height of 0.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> height = 3\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"findHeight","returnStatement":{"type":"java.lang.Integer","comment":" Height of binary tree"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":3},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":4},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, -{"id":"find-max","title":"Find Max Element","description":"Given a binary tree, write a method `findMax` to return maximum element. Return 0 for empty tree.\r\n\r\n### Example\r\n\r\n ``` \r\n 20 \r\n / \\ \r\n 15 30 \r\n / \\ \r\n14 18 \r\n \r\noutput ==> 30\r\n\r\n```","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"findMax","returnStatement":{"type":"java.lang.Integer","comment":" Max element of a binary tree"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":5,"left":{"data":3,"left":{"data":2},"right":{"data":4}},"right":{"data":8,"left":{"data":6},"right":{"data":9}}}],"output":9},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":10},"right":{"data":7}}}],"output":10},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":7},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":40}}}}],"output":40},{"input":[{"data":20,"left":{"data":15,"left":{"data":10},"right":{"data":30}},"right":{"data":40}}],"output":40},{"input":[{"data":50,"left":{"data":15,"left":{"data":10},"right":{"data":16}},"right":{"data":40}}],"output":50},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, -{"id":"is-cyclic","title":"Is List cyclic","description":"Given a singly linked list, write a method `isCyclic` to check if the list has cycles. The space complexity can be O(n). If there is a cycle, return true otherwise return false. Empty lists should be considered non-cyclic.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6->1` -> `true`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"isCyclic","returnStatement":{"type":"java.lang.Boolean","comment":" Is List cyclic"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Input list"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":false},{"input":[[1,2,3,4,5,6,6]],"output":true},{"input":[[1,2,3,4,5,6,1]],"output":true},{"input":[[1,2,3,4,5,3,6]],"output":true},{"input":[[1]],"output":false},{"input":[[1,2]],"output":false},{"input":[[2,2]],"output":true},{"input":[null],"output":false}]}, -{"id":"max-sum-path","title":"Maximum sum path","description":"Given a binary tree, write a method `maxSumPath` that returns the maximum sum of data values obtained by traversing nodes along a path between any 2 nodes of the tree. The path must originate and terminate at 2 different nodes of the tree, and the maximum sum is obtained by summing all the data values of the nodes traversed along this path..\r\n\r\n### Example\r\n\r\n ``` \r\n 1 \r\n / \\ \r\n 2 3 => 18 \r\n / \\ / \\ \r\n 4 5 6 7 \r\n \r\nPath: 5 -> 2 -> 1 -> 3 -> 7 \r\nMax Sum = 5+2+1+3+7 = 18 \r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"maxSumPath","returnStatement":{"type":"java.lang.Integer","comment":" Sum of all elements in max path"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":18},{"input":[{"data":1,"left":{"data":2,"left":{"data":4,"left":{"data":8},"right":{"data":9}},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":26},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":-5}},"right":{"data":3,"left":{"data":6},"right":{"data":-7}}}],"output":16},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":23},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, -{"id":"chocolate-bars","title":"Chocolate Bars","description":"A rectangular chocolate bar is divided into squares by horizontal and vertical grooves, in the usual way. It is to be cut into individual squares. A cut is made by choosing a piece and cutting along one of it grooves. (Thus each cut splits one piece into at least two pieces). Additionally, your chocolate is already cut into two pieces. Write a method `countChocolateCuts` with a number answering question - what is the minimal number of cuts needed to completely cut the two parts of chocolate into all its squares?\n\n### Note\n* like in example below, the groove is calculated as 1 only when all the squares are connected. Every space between squares creates a new groove.\n\n### Examples\n\n``` \n [1] \n [1][1][1] \n [1]\n & ==> 9 \n[1][1][1] \n [1] \n[1][1][1]\n\nExplanation: \n [1] | |\n-----|---|---\n [1] |[1]|[1] => 4\n-----|---|---\n [1] | |\n & ==> 4 + 5 = 9\n[1]|[1]|[1] \n---|---|----\n |[1] => 5\n---|---|----\n[1]|[1]|[1]\n```","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"countChocolateCuts","returnStatement":{"type":"java.lang.Integer","comment":" Number of cuts"},"parameters":[{"name":"chocolateBarPartOne","type":"[[I","comment":"Matrix representing first part of chocolate bar"},{"name":"chocolateBarPartTwo","type":"[[I","comment":"Matrix representing second part of chocolate bar"}]},"testCases":[{"input":[[[1],[1,1,1],[1]],[[1,1,1],[1],[1,1,1]]],"output":9},{"input":[[[1,1,1,1],[1],[1,1,1],[1,1]],[[1,1,1],[1],[1,1]]],"output":12},{"input":[[[]],[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]]],"output":15},{"input":[[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]],[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]]],"output":30},{"input":[[[1]],[[1]]],"output":0},{"input":[[[0,0],[0,0]],[[0,0],[0,0]]],"output":6},{"input":[[[]],[[]]],"output":0}]}, -{"id":"insert-stars","title":"Insert Stars","description":"Given a string, write a method `insertPairStar` to compute a new string where the identical adjacent characters in the original string are separated by a \"*\".\r\n\r\n### Example\r\n\r\n* `'sas` -> `'sas'`\r\n* `'kk` -> `'k*k'`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"insertPairStar","returnStatement":{"type":"java.lang.String","comment":" Computed string"},"parameters":[{"name":"str","type":"java.lang.String","comment":"Input string"}]},"testCases":[{"input":["asdsdakz"],"output":"asdsdakz"},{"input":["aaaaa"],"output":"a*a*a*a*a"},{"input":["kk"],"output":"k*k"},{"input":["kkcckkcc"],"output":"k*kc*ck*kc*c"},{"input":[""],"output":""},{"input":[null],"output":null}]}, -{"id":"decompress-tree","title":"Tree Decompression","description":"Given a binary tree, write a method `decompressTree` that decompresses that tree (reconstructs the tree) and returns the root TreeNode. The compression algorithm included traversing the tree level by level, from the left to the right. The TreeNode's data values were appended to the String, delimited by commas. Also, null TreeNodes were denoted by appending an asterisk - *. The input String denotes the structure of a Full Binary Tree - i.e. a tree that is structurally balanced. However, the reconstructed tree may not be a full tree as the String included * characters, which represent null TreeNodes\r\n\r\n###Note\r\n\r\n You can assume that if a Binary Tree contains k levels, the compressed String will contain 2^k^-1 elements - either numbers or *.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> Compressed String = '1,2,3,4,5,6,7'\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"decompressTree","returnStatement":{"type":"com.jalgoarena.type.TreeNode","comment":" Decompressed binary tree"},"parameters":[{"name":"root","type":"java.lang.String","comment":"Compressed Tree"}]},"testCases":[{"input":["1,2,3,4,5,6,7"],"output":{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}},{"input":["1,2,3,4,*,*,7"],"output":{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}},{"input":["1"],"output":{"data":1}},{"input":["1,*,2,*,*,*,3"],"output":{"data":1,"right":{"data":2,"right":{"data":3}}}},{"input":[null],"output":null},{"input":["*"],"output":null},{"input":[""],"output":null}]}, -{"id":"check-perm","title":"Check Permutations","description":"Given two strings, write a method `permutation` to decide if one is a permutation of other.\r\n\r\n### Examples\r\n\r\n* `\"abc\", \"cba\"` -> `true`\r\n* `\"abc\", \"cb\"` -> `false`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"permutation","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if one string is a permutation of another"},"parameters":[{"name":"str1","type":"java.lang.String","comment":"first string to be checked for permutation match"},{"name":"str2","type":"java.lang.String","comment":"second string to be checked for permutation match"}]},"testCases":[{"input":["abc","cba"],"output":true},{"input":["abc","cbacba"],"output":false},{"input":["abccba","cbaccb"],"output":false},{"input":["abc","cbad"],"output":false},{"input":["AdSda","dAdaS"],"output":true},{"input":["AbcdefgHA",""],"output":false},{"input":["",""],"output":true},{"input":[" "," "],"output":false},{"input":["A","A"],"output":true},{"input":["A","a"],"output":false},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~","0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ !\"#$%&'()*+,-./"],"output":true},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~a","0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"],"output":false}]}, -{"id":"max-profit","title":"Stock Market Oracle","description":"You've recently acquired market prediction superpowers that let you predict the closing stock price of a Acme Inc.'s stock a month into the future! To get the most out of this superpower, you need to write a method called `maxProfit` that takes in an array of integers representing the close out stock price on a given day. This method should return the maximum profit you can make out of trading Acme Inc.'s stock. There are a few limitations however :\r\n\r\n1) You must sell your current holding before buying another - i.e. You may not buy and then buy again. It needs to be a buy - sell - buy - sell ... pattern.\r\n\r\n2) You may complete as many transactions as you like. You're using an awesome service like Robinhood, and so there are no transaction costs!\r\n\r\n3) If you're enormously unlucky (or karma takes over) and no profit can be made, return 0.\r\n\r\n### Examples\r\n\r\n```\r\n[50,100,20,80,20]\r\n->\r\n110\r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"maxProfit","returnStatement":{"type":"java.lang.Integer","comment":"Max profit"},"parameters":[{"name":"prices","type":"[I","comment":"Prices"}]},"testCases":[{"input":[[50,100,20,80,20]],"output":110},{"input":[[50,100]],"output":50},{"input":[[150,100]],"output":0},{"input":[[50,100,50,100,50]],"output":100},{"input":[[100,40,20,10]],"output":0},{"input":[[0,50,10,100,30]],"output":140},{"input":[[0,100,0,100,0,100]],"output":300},{"input":[[1,2,3,4,3,2,4,5,1,2,3,4,5]],"output":10},{"input":[[1]],"output":0},{"input":[[]],"output":0},{"input":[null],"output":0},{"input":[[1,1]],"output":0}]}, -{"id":"is-string-unique","title":"Is String Unique","description":"Implement method `isUniqueChars` with an algorithm to determine if a ASCII string has all unique characters. \r\n\r\nWhat if you cannot use additional data structures?\r\n\r\n### Examples\r\n\r\n* `\"AdSda\"` -> `false`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"isUniqueChars","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if string contains only unique chars"},"parameters":[{"name":"str","type":"java.lang.String","comment":"input string to be checked (ASCII)"}]},"testCases":[{"input":[""],"output":true},{"input":[null],"output":true},{"input":["abc"],"output":true},{"input":["AdSda"],"output":false},{"input":["AbcdefgHA"],"output":false},{"input":["edcvfrtyy"],"output":false},{"input":["AA"],"output":false},{"input":["AdSa"],"output":true},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"],"output":true},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~a"],"output":false}]}, -{"id":"zero-matrix","title":"Zero Matrix","description":"Write a method `zeroMatrix` with an algorithm such that if an element in a MxN matrix is 0, its entire row and column are set to 0. Matrix should be changed in place.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 2, 3, 4],\r\n [5, 6, 7, 8],\r\n [9, 0, 1, 2],\r\n [3, 4, 5, 0]]\r\n->\r\n[[1, 0, 3, 0],\r\n [5, 0, 7, 0],\r\n [0, 0, 0, 0],\r\n [0, 0, 0, 0]]\r\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"zeroMatrix","returnStatement":{"type":"void","comment":" Operation in place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Matrix to set zeros"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":[[1,0,3,0],[5,0,7,0],[0,0,0,0],[0,0,0,0]]},{"input":[[[0,2,3,4],[5,6,0,8],[9,0,1,2],[3,4,5,0]]],"output":[[0,0,0,0],[0,0,0,0],[0,0,0,0],[0,0,0,0]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1]]],"output":[[1]]}]}, -{"id":"check-balanced-parentheses","title":"Check Balanced Parentheses","description":"Implement method `isBalanced` to check whether an equation has a balanced number of left and right parentheses and brackets (including `(,),[,],{,}`).\n\n\n### Examples\n\n* `() [] ()` -> `true`\n* `([)]` -> `false`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"isBalanced","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if parentheses are balanced"},"parameters":[{"name":"input","type":"java.lang.String","comment":"input string with parentheses to be checked"}]},"testCases":[{"input":[""],"output":true},{"input":[null],"output":true},{"input":["() [] ()"],"output":true},{"input":["([)]"],"output":false},{"input":["()))[]"],"output":false},{"input":["[](){}"],"output":true},{"input":["(())"],"output":true},{"input":["{"],"output":false},{"input":[" ( ( { ( ( [ ]))}))()[()]"],"output":true},{"input":[" ( ( { ( ( [ ]))}))()[()] ( ( { ( ( [ ]))}))()[()] ( ( { ( ( [ ]))}))()[()] ( ( { ( ( [ ]))}))()[()]"],"output":true},{"input":[" ( ( { ( ( [ ]))}))()[()])"],"output":false}]}, -{"id":"matrix-max-sum-path","title":"Matrix Max Sum Path","description":"You are given an `m x n` matrix filed with non-negative integers. Write method `matrixMaxSum` to find the maximum sum along a path from the top-left of the grid to the bottom-right. Return this maximum sum.\n\nThe direction of movement is limited to right and down.\n\n### Examples\n\n```\n 1 2 3\n 4 5 6\n 7 8 9\n\n=> 1 + 4 + 7 + 8 + 9 = 29\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"matrixMaxSum","returnStatement":{"type":"java.lang.Integer","comment":"Max sum"},"parameters":[{"name":"matrix","type":"[[I","comment":"Matrix to check"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":29},{"input":[[[1,2,3],[4,5,6],[7,8,9]]],"output":29},{"input":[[[1,1,1],[1,1,1],[1,1,1]]],"output":5},{"input":[[[1]]],"output":1},{"input":[[[1,2],[3,4]]],"output":8},{"input":[[[1,2,3],[4,5,6]]],"output":16}]}, -{"id":"merge-k-sorted-linked-lists","title":"Merge k Sorted Linked Lists","description":"Write a method `mergeKLists` to merge k **Sorted** `LinkedList`. \n\nWhy would you ever want to do that? Well, if you're dealing with a list of over 200 Million `Integers` that needs to be sorted, an efficient approach might involve splitting up the massive list into `k` smaller lists, sorting each list in memory and then combining the sorted lists to re-create the original list, albeit sorted.\n\n### Example\n```\n* 1->2->13->20\n* 1->20->35->40\n* 5->6->12->18\n\n=> 1->1->2->5->6->12->13->18->20->20->35->40\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"mergeKLists","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":"Merged Linked List"},"parameters":[{"name":"lists","type":"java.util.ArrayList","comment":"List of Sorted Linked Lists","generic":"ListNode"}]},"testCases":[{"input":[[[1,2,13,20],[1,20,35,40],[5,6,12,18]]],"output":[1,1,2,5,6,12,13,18,20,20,35,40]},{"input":[[[1,2,3,4,5],[1,2,3,4],[8]]],"output":[1,1,2,2,3,3,4,4,5,8]},{"input":[[[2,4,13,40],[1,5,12,14],[8],[6,7,9]]],"output":[1,2,4,5,6,7,8,9,12,13,14,40]},{"input":[[[2,4,13,45],[1,5,12,14],[8],[60,70,82,89,90],[46,65]]],"output":[1,2,4,5,8,12,13,14,45,46,60,65,70,82,89,90]},{"input":[[[1],[1],[1],[1],[1]]],"output":[1,1,1,1,1]},{"input":[[[1,2]]],"output":[1,2]}]}, -{"id":"find-max-sum-level","title":"Find Max Sum Level","description":"Given a binary tree, Write a method `findMaxSumLevel` to return the level that has the maximum sum. In case the tree is empty return -1.\n\n### Example\n\n ```\n0 1\n / \\\n1 2 3 ==> 2\n / \\ / \\\n2 4 5 6 7 \n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"findMaxSumLevel","returnStatement":{"type":"java.lang.Integer","comment":"Level that has the Maximum Sum"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":2},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":2},{"input":[{"data":21,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":0},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6,"left":{"data":7},"right":{"data":8}}}}}],"output":4},{"input":[{"data":1}],"output":0},{"input":[null],"output":-1}]}, -{"id":"rev-level-order-traversal","title":"Reverse Level Order Traversal","description":"Given a binary tree, Write a method `levelorderRev ` to traverse the tree in the reversed level order manner. Return array of elements visited in reversed level order format.\n\n### Example\n\n ```\n 1\n / \\\n 2 3 ==> 4567231\n / \\ / \\\n 4 5 6 7 \n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"levelorderRev","returnStatement":{"type":"[I","comment":"Reverse level ordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[4,5,6,7,2,3,1]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":[6,4,7,2,3,1]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6,"left":{"data":7},"right":{"data":8}}}}}],"output":[7,8,6,4,7,2,3,1]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, -{"id":"word-similarity","title":"Word Similarity - Edit Distance","description":"Edit distance is a classic algorithm that is used in many applications, including Spell Correction, DNA Sequencing and Natural Language Processing. Given two strings `a` and `b`, write a method - `editDistance` that returns the **minimum number of operations** needed to transform `a` into `b`. The following character operations are allowed:\n* Replace character\n* Insert character\n* Delete character\n\n### Examples\n\n```\n\"sale\", \"sales\" => 1\n\n1) Insert \"s\"\n```\n\n```\n\"sale\", \"sold\" => 2\n\n1) Replace \"a\" with \"o\"\n2) Replace \"e\" with \"d\"\n```\n\n```\n\"sa\", \"s\" => 1\n\n1) Delete \"a\"\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"editDistance","returnStatement":{"type":"java.lang.Integer","comment":"Minimum number of operations"},"parameters":[{"name":"a","type":"java.lang.String","comment":"input string to be transformed"},{"name":"b","type":"java.lang.String","comment":"destination string"}]},"testCases":[{"input":["","a"],"output":1},{"input":[null,""],"output":0},{"input":["",null],"output":0},{"input":["",""],"output":0},{"input":[null,null],"output":0},{"input":["css","dll"],"output":3},{"input":["sale","sales"],"output":1},{"input":["sale","sold"],"output":2},{"input":["sa","s"],"output":1},{"input":["confusion","confusing"],"output":2},{"input":["abc","adef"],"output":3},{"input":["coding","code"],"output":3},{"input":["ATGCATGGCCAATTGCCAAT","ATCGATCGATCG"],"output":12},{"input":["ATGCATGGCCAAAATTTTAAAAATAGAGAGATTTCCCAATTGCCAAT","ATCGATCGATCGAATTA"],"output":32},{"input":["interview","intuition"],"output":5},{"input":["saturday","sunday"],"output":3}]}, -{"id":"subset-summation","title":"Subset Summation","description":"Given an array of integers and a target number, determine if it is possible to choose a group of integers from the array, such that the numbers in the group sum to the given target.\n\n### Example\n\n* `[1,2,3,6,5], 10` -> `true`\n* `[1,2,3,6,5], 18` -> `false`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"groupSum","returnStatement":{"type":"java.lang.Boolean","comment":"Is possible to find sum"},"parameters":[{"name":"numbers","type":"[I","comment":"An array of numbers","generic":null},{"name":"target","type":"java.lang.Integer","comment":"Target sum number","generic":null}]},"testCases":[{"input":[[2,7,11,15],9],"output":true},{"input":[[1,2,3,6,5],10],"output":true},{"input":[[1,2,3,6,5],18],"output":false},{"input":[[1,0,-1],2],"output":false},{"input":[[1,-3,-4],-2],"output":true},{"input":[[],1],"output":false},{"input":[[1,2,5,6,7,3,5,8,-33,-5,-72,12,-34,100,99],-64],"output":true},{"input":[[1,2,33,23,2423,33,23,1,7,6,8787,5,33,2,3,-23,-54,-67,100,400],390],"output":true},{"input":[[-1,-2,-3,-4,-5,-6,-100,-98,-111,-11],-70],"output":false}]}, -{"id":"longest-nr-substring-len","title":"Longest Non-Repeating Substring","description":"Given a `String` input, write a method `longestNRSubstringLen` to find the length of the longest `substring` that is made up of non-repeating characters.\n\n### Examples\n\n* `\"BCEFGHBCFG\"` -> `6` (\"CEFGHB\" or \"EFGHBC\")\n* `\"FFFFF\"` -> `1` (\"F\")\n* `\"aaabbbabcde\"` -> `5`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"longestNRSubstringLen","returnStatement":{"type":"java.lang.Integer","comment":"Length of longest non-repeating substring"},"parameters":[{"name":"input","type":"java.lang.String","comment":"input string"}]},"testCases":[{"input":[""],"output":0},{"input":[null],"output":0},{"input":["abc"],"output":3},{"input":["adSda"],"output":3},{"input":["BCEFGHBCFG"],"output":6},{"input":["FFFFF"],"output":1},{"input":["aaaabcdnha"],"output":6},{"input":["ABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./0123456789:;<=>?@[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz{|}~"],"output":94}]}, -{"id":"insert-range","title":"Range Module - Inserting Ranges","description":"A Range Module is a module that tracks ranges of numbers. Range modules are used extensively when designing scalable online game maps with millions of players. \n\nYour task is to write a method - `insertRange` that takes in an `ArrayList` of sorted, non-overlapping integer `Interval's` (aka ranges) and a new `Interval` - insert, and returns an `ArrayList` of sorted `Interval's` where insert has been added to the `ArrayList` in the correct spot and the required overlapping ranges have been merged. Target a time complexity of O(n).\n\nNote: \n* [1,3] represents an interval that includes 1, 2 and 3.\n* Intervals should be sorted based on the value of start\n* The words Range and Interval are used interchangeably\n\n### Examples\n\n* ` [ [1,3], [7,10] ] & [2,6]` -> `[ [1,6], [7,10] ]`\n","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"insertRange","returnStatement":{"type":"java.util.ArrayList","comment":"Array with inserted ranges","generic":"Interval"},"parameters":[{"name":"intervalsList","type":"java.util.ArrayList","comment":"sorted, non-overlapping list of Intervals","generic":"Interval"},{"name":"insert","type":"com.jalgoarena.type.Interval","comment":"interval to insert"}]},"testCases":[{"input":[[{"start":1,"end":3},{"start":7,"end":10}],{"start":2,"end":6}],"output":[{"start":1,"end":6},{"start":7,"end":10}]},{"input":[[{"start":-10,"end":-5},{"start":0,"end":10}],{"start":-2,"end":-1}],"output":[{"start":-10,"end":-5},{"start":-2,"end":-1},{"start":0,"end":10}]},{"input":[[{"start":-10,"end":-5},{"start":0,"end":10}],{"start":-5,"end":0}],"output":[{"start":-10,"end":10}]},{"input":[[{"start":0,"end":1},{"start":3,"end":4}],{"start":2,"end":10}],"output":[{"start":0,"end":1},{"start":2,"end":10}]},{"input":[[{"start":1,"end":2},{"start":3,"end":5},{"start":6,"end":7},{"start":8,"end":10},{"start":12,"end":14}],{"start":5,"end":9}],"output":[{"start":1,"end":2},{"start":3,"end":10},{"start":12,"end":14}]},{"input":[[{"start":0,"end":5}],{"start":1,"end":2}],"output":[{"start":0,"end":5}]},{"input":[[],{"start":1,"end":2}],"output":[{"start":1,"end":2}]},{"input":[[{"start":0,"end":1},{"start":4,"end":5}],{"start":2,"end":3}],"output":[{"start":0,"end":1},{"start":2,"end":3},{"start":4,"end":5}]}]}, -{"id":"min-triangle-depth","title":"Minimum Triangle Depth","description":"Given a 'triangle' as an `ArrayList` of `ArrayList`'s of integers, with each list representing a level of the triangle, find the **minimum sum** achieved by following a top-down path and adding the integer at each level along the path. \n\nMovement is restricted to adjacent numbers from the top to the bottom.\n\nNotes:\n* you can traverse through adjacent nodes while moving up or down the triangle.\n* An adjacent node is defined as a node that is reached by moving down and left or down and right from a level. For example, in the triangle shown below, if you are at the digit 3 in the second row, its adjacent nodes are 5 and 6\n\n### Examples\n\n```\n[ [1],\n [2,3],\n [4,5,6],\n [7,8,9,10]\n]\n\n=> 14 (1->2->4->7)\n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"minTriangleDepth","returnStatement":{"type":"java.lang.Integer","comment":"Minimum sum"},"parameters":[{"name":"input","type":"java.util.ArrayList","comment":"input triangle","generic":"ArrayList"}]},"testCases":[{"input":[[[1],[2,3],[4,5,6],[7,8,9,10]]],"output":14},{"input":[[[1]]],"output":1},{"input":[[[]]],"output":0},{"input":[[[1],[1,0],[1,2,3],[7,2,3,1]]],"output":5},{"input":[[[1],[1,0],[1,2,3],[7,2,3,1],[5,6,7,3,2]]],"output":7},{"input":[[[1],[2,3],[4,5,6]]],"output":7},{"input":[[[1],[2,3]]],"output":3}]}, -{"id":"distance-binary-tree","title":"Distance in a Binary Tree","description":"Given a binary tree and 2 integers that represents the `data` values of any two `TreeNode` present in the tree, write a method `getNodeDistance` that returns distance between the nodes. \n\nIf any of key does not exist in the tree, return -1. The **distance** between two nodes is defined as the minimum number of **edges** that must be traversed to travel between the two nodes.\n\n### Example\n\n ```\n 1\n / \\\n 2 3 ==> getNodeDistance(2,7) => 3\n / \\ / \\\n 4 5 6 7 \n```","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"getNodeDistance","returnStatement":{"type":"java.lang.Integer","comment":"Distance between the nodes"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"},{"name":"n1","type":"java.lang.Integer","comment":"first node data"},{"name":"n2","type":"java.lang.Integer","comment":"second node data"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}},2,7],"output":3},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}},4,6],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}},2,6],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}},2,5],"output":-1},{"input":[{"data":1},1,2],"output":-1},{"input":[null,1,2],"output":-1}]}, -{"id":"bit-conversion","title":"Bit Conversion","description":"Given two input integers `a` and `b`, write a method `bitSwapRequired` to determine the number of bits required to be swapped to convert `a` to `b`.\n\n**Note**: using java framework to solve it is forbidden - you have to code it by yourself.\n\n### Example\n\n`21, 31` => `2`\n* `21 = 10101`\n* `31 = 11111`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"bitSwapRequired","returnStatement":{"type":"java.lang.Integer","comment":"Number of swaps"},"parameters":[{"name":"a","type":"java.lang.Integer","comment":"first number"},{"name":"b","type":"java.lang.Integer","comment":"second number"}]},"testCases":[{"input":[21,31],"output":2},{"input":[19,29],"output":3},{"input":[121,200],"output":4},{"input":[21,29],"output":1},{"input":[0,0],"output":0},{"input":[2344,8274],"output":8}]}, -{"id":"reverse-in-pairs","title":"Reverse a Linked List in Pairs","description":"Given a **singly linked list**, write a method `reverseInPairs` to reverse the list in pairs.\n\n### Example\n\n* `1->2->3->4` -> `2->1->4->3`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"reverseInPairs","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":"Reversed list in pairs"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5]],"output":[2,1,4,3,5]},{"input":[[1]],"output":[1]},{"input":[[]],"output":[]},{"input":[[5,3,1]],"output":[3,5,1]},{"input":[[1,2,3,4]],"output":[2,1,4,3]},{"input":[null],"output":null}]}, -{"id":"merge-ranges","title":"Range Module - Merging Ranges","description":"A Range Module is a module that tracks ranges of numbers. Range modules are used extensively when designing scalable online game maps with millions of players. \n\nYour task is to write a method - `mergeIntervals` that takes in an `ArrayList` of integer `Interval`s (aka ranges), and returns an `ArrayList` of **sorted** `Interval`s where all overlapping intervals have been merged.\n\nNote: \n* [1,3] represents an interval that includes 1, 2 and 3.\n* Intervals should be sorted based on the value of start\n* The words Range and Interval are used interchangeably\n\n### Examples\n\n* ` [[1,3],[2,5]]` => `[[1,5]]`\n* `[[3,5],[1,2]]` => `[[1,2],[3,5]]`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"mergeIntervals","returnStatement":{"type":"java.util.ArrayList","comment":"Array with merged ranges","generic":"Interval"},"parameters":[{"name":"intervalsList","type":"java.util.ArrayList","comment":"list of Intervals","generic":"Interval"}]},"testCases":[{"input":[[{"start":1,"end":3},{"start":2,"end":5}]],"output":[{"start":1,"end":5}]},{"input":[[{"start":3,"end":5},{"start":1,"end":2}]],"output":[{"start":1,"end":2},{"start":3,"end":5}]},{"input":[[]],"output":[]},{"input":[[{"start":-1,"end":3},{"start":2,"end":4},{"start":1,"end":2}]],"output":[{"start":-1,"end":4}]},{"input":[[{"start":0,"end":1}]],"output":[{"start":0,"end":1}]},{"input":[[{"start":1,"end":2},{"start":3,"end":4},{"start":2,"end":3},{"start":4,"end":5}]],"output":[{"start":1,"end":5}]},{"input":[[{"start":1,"end":3},{"start":2,"end":9}]],"output":[{"start":1,"end":9}]},{"input":[[{"start":1,"end":3},{"start":2,"end":6},{"start":15,"end":18},{"start":8,"end":10}]],"output":[{"start":1,"end":6},{"start":8,"end":10},{"start":15,"end":18}]},{"input":[[{"start":0,"end":1},{"start":0,"end":1},{"start":0,"end":1},{"start":0,"end":0}]],"output":[{"start":0,"end":1}]},{"input":[[{"start":-5,"end":-3},{"start":0,"end":10},{"start":-4,"end":-2}]],"output":[{"start":-5,"end":-2},{"start":0,"end":10}]}]}, -{"id":"boggle-paper-dictionary","title":"Boggle with Paper Dictionary","description":"You're given a 2D **Boggle Board** which constrains an `m x n` matrix of chars - `char[][] board`, and a rudimentary, paper Dictionary in the form of an `ArrayList` of more than 19,000 words.\n\nWrite a method - `boggleByot` that searches the Boggle Board for words in the dictionary. Your method should return an **alphabetically sorted** `ArrayList` of words that are present on the board as well as in the dictionary.\n\nWords on the board can be constructed with **sequential adjacent** letters, where adjacent letters are horizontal or vertical neighbours (not diagonal). Also, each letter on the Boggle Board must be used only once.\n\nNote: \n* Your program should run in a reasonable amount of time - about a few milliseconds for each test case.\n\n### Examples\n\n```\nExample:\n\nInput Board : \n{\n {A, O, L},\n {D, E, L},\n {G, H, I},\n}\nDictionary : Boggle dictionary of more than 19,000 english words\nOutput: [HELLO]\n```","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"boggleByot","returnStatement":{"type":"java.util.ArrayList","comment":"List of words","generic":"String"},"parameters":[{"name":"board","type":"[[C","comment":"Boggle Board"},{"name":"dictionary","type":"java.util.ArrayList","comment":"Boggle dictionary of more than 19,000 english words","generic":"String"}]},"testCases":[{"input":[[["A","O","L"],["D","E","L"],["G","H","I"]],""],"output":["DELL","ELL","HELL","HELLO","HILL","ILL","LED","LOAD"]},{"input":[[["A","G","A","J"],["G","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["AGE","COD","CODE","CORE","FEE","FEED","GAG","GAGE","GIG","IRE","JACK","JAG","ODE","ORE","OVA","RIG","ROCK","ROE","SEE"]},{"input":[[["A","P","A","J"],["S","R","V","A"],["P","E","O","C"],["P","X","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["FEE","FEED","JACK","ODE","OVA","PER","POD","PREP","REP","SAP","SEE"]},{"input":[[["A","O","A","J"],["S","K","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","O"],["D","E","E","R"]],""],"output":["ASK","COD","CODE","CORE","CORK","DEER","FEE","FEED","FOR","FORE","JACK","ODE","ORE","OVA","REED","ROCK","ROE","SEC"]},{"input":[[["A","T","A","J"],["S","O","V","A"],["E","O","O","C"],["C","L","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["COD","CODE","COO","COOL","FEE","FEED","JACK","LOOSE","LOOT","ODE","OLD","OVA","SAT","SEC","SEE","TOO","TOOL","VAT"]},{"input":[[["A","F","G","N"],["N","I","D","I"],["T","E","R","V"],["C","G","E","I"],["O","N","F","E"],["D","I","E","W"]],""],"output":["ANI","ANT","ANTE","COD","CON","CONFER","DIE","DIET","DIN","DING","DINT","DON","DREG","ERE","ETC","EWE","FAN","FEW","FIN","GET","INFER","INTEGER","INTER","NOD","REIN","RET","VIE","VIEW"]},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","T"],["D","E","E","H"]],""],"output":["AFIRE","COD","CODE","CORE","EFT","FEE","FEED","FIR","FIRE","HEED","HEFT","IRE","JACK","ODE","ORE","OVA","RISE","ROCK","ROE","SEC","SERIF","SIR","SIRE","SIVA","THE","THEE","VIS","VISA","VISE"]},{"input":[[["S","E","B","J"],["T","L","U","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["BEL","BELT","BEST","COD","CODE","CORE","ESTER","FEE","FEED","JACK","LEST","ODE","ORE","RET","ROCK","ROE","SEE"]}]}, -{"id":"largest-square","title":"Largest Square","description":"Given a two dimensional matrix made up of **0**'s and **1**'s, write a method `largestSquare` to find the largest square containing all 1's and return its `area`. \n\nThe `area` is simply the sum of all integers enclosed in the square.\n\n### Example\n\n```\nInput Matrix : \n \n 1101 xxxx 11xx\n 1101 => 11xx or 11xx\n 1111 11xx xxxx\n\nOutput : 4\n```","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"largestSquare","returnStatement":{"type":"java.lang.Integer","comment":"Area of the largest square"},"parameters":[{"name":"matrix","type":"[[C","comment":"2D matrix of 0s and 1s"}]},"testCases":[{"input":[[["1","1","0","1"],["1","1","0","1"],["1","1","1","1"]]],"output":4},{"input":[[["1","1"],["1","1"]]],"output":4},{"input":[[["1","1","1"],["1","1","1"],["1","1","1"]]],"output":9},{"input":[[["1","0"],["0","1"]]],"output":1},{"input":[[["1","1","0","1","0"],["1","1","0","1","1"],["0","1","1","1","0"],["1","1","1","1","1"],["1","1","1","1","0"]]],"output":9},{"input":[[["0","0"],["0","0"]]],"output":0}]}, -{"id":"longest-palindromic-substring","title":"Longest Palindromic Substring","description":"Given a `String`, write the method `longestPalSubstr` that finds and returns the longest substring which is also a `Palindrome`. \n\nTry and accomplish this in at most **O(n^2^)** runtime.\n\n### Examples\n\n* `\"bccb\"` => `\"bccb\"`\n* `\"bccd\"` => `\"cc\"`\n* `\"bccc\"` => `\"ccc\"`","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"longestPalSubstr","returnStatement":{"type":"java.lang.String","comment":"Longest substring which is also a Palindrome"},"parameters":[{"name":"str","type":"java.lang.String","comment":"input"}]},"testCases":[{"input":["bccb"],"output":"bccb"},{"input":["bccd"],"output":"cc"},{"input":["bccc"],"output":"ccc"},{"input":["AAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBAAAAAAAAAAAAAAACCCCCCCDDDAAAAAAAAAAAAAAAA"],"output":"AAAAAAAAAAAAAAABBBBBBBBBBBBBBAAAAAAAAAAAAAAA"},{"input":["A"],"output":"A"},{"input":["ABCD"],"output":"A"},{"input":["ABCDEFGHHGFEBA"],"output":"EFGHHGFE"}]}, -{"id":"1-800-problem","title":"1-800-Problem","description":"Given a `String` that represents the digits pressed on a classic cell phone keypad - return all possible letter `combinations` that the numbers could represent in an `ArrayList` of `String`s.\n\nCheck out the keypad mapping below for reference.\n\n**Note:**\n* You can assume that the input String contains only numbers between 2 and 9\n* The `combinations` should be return in alphabetical order\n\nMapping:\n* 2 -> \"abc\"\n* 3 -> \"def\"\n* 4 -> \"ghi\"\n* 5 -> \"jkl\"\n* 6 -> \"mno\"\n* 7 -> \"pqrs\"\n* 8 -> \"tuv\"\n* 9 -> \"wxyz\"\n\n### Examples\n\n* `34` -> `[dg, dh, di, eg, eh, ei, fg, fh, fi]`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"getStringsFromNums","returnStatement":{"type":"java.util.ArrayList","comment":"Combinations","generic":"String"},"parameters":[{"name":"digits","type":"java.lang.String","comment":"digits pressed on a classic cell phone keypad"}]},"testCases":[{"input":["34"],"output":["dg","dh","di","eg","eh","ei","fg","fh","fi"]},{"input":["23"],"output":["ad","ae","af","bd","be","bf","cd","ce","cf"]},{"input":["232"],"output":["ada","adb","adc","aea","aeb","aec","afa","afb","afc","bda","bdb","bdc","bea","beb","bec","bfa","bfb","bfc","cda","cdb","cdc","cea","ceb","cec","cfa","cfb","cfc"]},{"input":["6"],"output":["m","n","o"]},{"input":["8"],"output":["t","u","v"]}]}, -{"id":"max-cont-sequence","title":"Maximum Contiguous Subsequence","description":"Given an array of integers consisting of both positive and negative numbers, write a method `maxContSequence` to find the contiguous subsequence that has the **maximum sum** among all `subsequences` in the array.\n\nYour method should return `res` array containing 3 integers in the following format:\n```\nres[0] = max sum\nres[1] = starting index of the subsequence\nres[2] = ending index of the subsequence\n```\n\n**Note**\n* In mathematics, a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements. For example, the sequence `` is a subsequence of ``. They should not be confused with substring which is a refinement of subsequence.\n* you can check wikipedia for more details\n* for empty input, return `[0,0,-1]`\n\n### Examples\n\n* `[-1,-2,3,4,5]` -> `[12,2,4]`\n* `[1,2,3,-2,5]` -> `[9,0,4]`","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"maxContSequence","returnStatement":{"type":"[I","comment":"Result containing 3 integers, max sum, starting and ending index of the subsequence"},"parameters":[{"name":"arr","type":"[I","comment":"array of integers"}]},"testCases":[{"input":[[-1,-2,3,4,5]],"output":[12,2,4]},{"input":[[1,2,3,-2,5]],"output":[9,0,4]},{"input":[[]],"output":[0,0,-1]},{"input":[[-1,30,-4,20,20,-11]],"output":[66,1,4]},{"input":[[1,2,3,4,5,6]],"output":[21,0,5]},{"input":[[-1,-2,-3,-4,-5,-6]],"output":[-1,0,0]}]}, -{"id":"factorial","title":"Factorial","description":"Write the `factorial` method to return unity digit of the factorial of n (`n!`).\n\n### Notes\n* for `n <= 1` we have `n! = 1`\n\n### Examples\n\n* `4` -> `4`","timeLimit":1,"memoryLimit":32,"level":1,"func":{"name":"factorial","returnStatement":{"type":"java.lang.Integer","comment":"Unity digit of the factorial"},"parameters":[{"name":"n","type":"java.lang.Integer","comment":"Input number for factorial"}]},"testCases":[{"input":[4],"output":4},{"input":[0],"output":1},{"input":[1],"output":1},{"input":[3],"output":6},{"input":[4],"output":4},{"input":[5],"output":0},{"input":[6],"output":0},{"input":[7],"output":0},{"input":[21351],"output":0},{"input":[29999],"output":0}]}, -{"id":"country-postman","title":"Country postman","description":"Country postman has to delivery the mail all the inhabitants of the area, who live in the villages and next to the roads linking villages.\n\nYou need to help pave the postman route - find a path that will allow him to ride along every road and visit every village in the area at least once. That's fortunate that in the considered examples of such a route is always there. However, the marked routes may differ quality, ie. the postman can receive different payment for his work depending on the chosen route (as we will see, it does not gain the postman is the most important, but the profit of his company, the post office).\n\nThe inhabitants of each village would like to postman reached them as soon as possible. Each village has concluded with the post office the following agreement: if `i'th` village is visited by the postman as `k'th` in order (means the postman visited already `k - 1` other villages before he reached `i'th` village) and `k <= w(i)`, then village pays the post office `w(i) - k`CHF. Although, if `k > w(i)`, then the post office pays village `k - w(i)`CHF. \n\nMoreover, the post office pays to country postman one CHF for each passage between two successive villages along his route.\n\n### Notes\n* We mark villages with `id` - which is number between `1..n`, `n` is number of villages.\n* The post office is located in the village identified by a number `1` and thus the postman route must begin in this village.\n* In each village coincides 2, 4 or 8 roads.\n* Between the two villages there may be several different ways; the road may also return to the same village, from which it emerged.\n\nWrite method `findPath` to find the route that runs through every village and along every road, and which achieves the post maximum profit (or suffer minimal loss).\n\nIf there is more than one solution, your program should calculate one of them.\n\n### Input\n* `villages` - id of village is `i = index + 1`, the values in array represents `w(i)`, where `1<=w(i) <= 1000`, that is the initial amount paid by the village to the post office number `i` (this amount is obviously modified as described at the beginning of the task the way).\n* `roads` - array of paths, every path contains two village ids which it connects\n\n### Examples\n\n* `[1,7,4,10,20,5], [[2,4],[1,5],[2,1],[4,5],[3,6],[1,6],[1,3]]` -> `[1,5,4,2,1,6,3,1]`\n","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"findPath","returnStatement":{"type":"[I","comment":"Array of village ids as the most optimal path for country postman"},"parameters":[{"name":"villages","type":"[I","comment":"array of village ids"},{"name":"roads","type":"[[I","comment":"paths joining different villages"}]},"testCases":[{"input":[[1,7,4,10,20,5],[[2,4],[1,5],[2,1],[4,5],[3,6],[1,6],[1,3]]],"output":[1,5,4,2,1,6,3,1]},{"input":[[1,2,5,1,12,2,3],[[1,2],[7,7],[2,5],[3,7],[4,3],[1,4],[5,2],[2,3],[3,6],[6,6],[6,7]]],"output":[1,2,5,2,3,7,7,6,6,3,4,1]},{"input":[[1,1,1,1,1,1,1,1,1,1],[[7,7],[4,10],[2,7],[1,3],[5,4],[10,4],[3,1],[3,8],[8,7],[4,5],[7,8],[4,3],[5,1],[5,2],[6,7],[7,4],[9,9],[8,9],[8,8],[4,4],[8,3],[7,6],[6,1],[2,2],[3,2],[5,2],[9,6],[1,1],[2,5],[3,10],[10,8],[1,5],[1,5],[2,3]]],"output":[1,3,1,5,4,10,4,5,2,2,7,7,8,3,4,4,7,6,7,8,8,3,2,5,2,3,10,8,9,9,6,1,1,5,1]},{"input":[[32,32,25,15,64,49,87,28,72,85,75,79,56,85,97,37,86,31,81,80],[[5,7],[9,10],[15,17],[1,10],[10,9],[20,19],[6,5],[14,16],[19,20],[2,1],[13,15],[6,8],[11,13],[16,15],[12,11],[13,14],[4,3],[20,10],[10,12],[7,8],[15,16],[18,20],[2,4],[16,18],[1,2],[4,6],[8,7],[9,11],[7,9],[17,18],[11,12],[18,17],[2,1],[5,6],[1,1],[14,13],[3,5],[8,10],[3,4],[1,20],[20,19],[20,20],[17,19],[1,3],[10,10],[12,14]]],"output":[1,2,1,1,10,9,10,12,11,13,15,16,14,13,14,12,11,9,7,5,6,8,7,8,10,10,20,19,20,18,16,15,17,18,17,19,20,20,1,2,4,3,5,6,4,3,1]},{"input":[[35,95,25,8,10,98,52,45,25,6,55,46,46,52,61,7,9,43,92,79,84,28,52,75,12,100,58,56,83,64,22,47,94,78,40,22,10,63,34,46],[[2,19],[20,20],[8,9],[8,3],[39,40],[35,13],[25,26],[9,13],[37,21],[2,21],[34,2],[22,38],[36,12],[27,28],[40,1],[32,40],[9,3],[6,6],[10,19],[30,28],[20,39],[12,13],[25,3],[29,9],[11,3],[18,6],[22,15],[17,18],[23,24],[4,5],[10,10],[29,30],[31,13],[18,19],[15,15],[35,40],[16,17],[9,20],[3,4],[8,4],[13,14],[21,25],[28,11],[8,8],[33,24],[31,19],[21,16],[31,34],[4,27],[36,35],[30,31],[9,10],[5,38],[17,16],[18,18],[21,22],[37,38],[36,37],[9,9],[21,19],[3,14],[10,11],[2,3],[27,26],[32,33],[11,25],[32,2],[38,38],[34,35],[4,4],[31,32],[25,18],[13,29],[36,18],[31,40],[22,24],[33,34],[4,36],[20,34],[35,14],[32,35],[17,11],[15,13],[11,23],[16,13],[26,27],[36,36],[1,2],[6,7],[28,29],[11,2],[30,1],[12,25],[32,10],[14,15],[28,26],[8,6],[19,37],[38,30],[23,23],[30,19],[35,28],[20,21],[7,8],[8,30],[15,16],[10,40],[22,23],[23,22],[14,14],[24,25],[34,32],[15,16],[22,28],[15,10],[16,16],[35,36],[11,12],[33,4],[40,38],[23,32],[1,5],[14,22],[30,31],[28,39],[25,18],[38,39],[3,6],[5,6],[19,20],[23,2],[20,21],[34,34],[14,6],[40,31]]],"output":[1,40,39,20,20,9,8,8,3,9,29,30,28,11,3,25,21,2,19,10,10,9,9,13,35,36,12,13,31,34,35,40,32,33,34,2,32,31,19,18,18,17,16,17,11,25,18,6,6,8,4,3,14,13,29,28,27,4,4,5,38,22,15,15,13,16,21,37,36,36,4,33,24,23,23,11,10,32,35,14,14,15,16,16,15,10,40,31,30,1,2,11,12,25,26,27,26,28,35,36,18,25,24,22,23,22,21,19,37,38,38,30,19,20,21,20,34,34,32,23,2,3,6,7,8,30,31,40,38,39,28,22,14,6,5,1]},{"input":[[12,266,129,692,640,907,337,828,382,413,559,495,342,717,291,798,855,855,41,651,813,570,673,892,385,815,813,94,775,896,851,555,364,519,488,189,517,652,663,654,721,586,238,392,505,663,288,82,901,8,169,179,251,109,993,110,668,638,876,244,868,553,203,267,404,981,779,451,777,111,201,960,212,935,175,749,385,580,100,74,372,963,293,241,932,884,682,201,308,270,984,986,65,106,970,83,775,615,232,109],[[19,12],[88,15],[63,38],[50,2],[1,50],[30,3],[37,100],[21,21],[70,72],[22,95],[23,79],[28,58],[33,98],[14,42],[28,19],[2,71],[36,83],[32,42],[24,69],[72,8],[84,97],[44,83],[75,49],[79,63],[35,11],[16,69],[74,50],[23,31],[92,1],[99,32],[83,66],[78,43],[88,88],[36,83],[47,6],[12,4],[70,92],[64,11],[70,39],[77,42],[68,58],[3,50],[59,59],[76,47],[6,47],[85,27],[84,84],[60,66],[29,13],[17,26],[72,76],[16,39],[76,18],[34,89],[74,81],[100,47],[31,23],[86,36],[48,19],[79,85],[41,41],[93,40],[96,31],[59,41],[46,60],[58,68],[15,65],[91,34],[84,42],[90,72],[77,52],[19,95],[82,21],[96,80],[51,28],[8,72],[86,66],[87,25],[73,73],[63,34],[9,21],[74,8],[58,81],[55,14],[14,55],[8,74],[6,53],[55,44],[61,56],[52,77],[22,10],[4,54],[89,77],[47,76],[12,44],[22,86],[86,22],[55,99],[61,15],[40,73],[94,54],[85,79],[95,57],[27,24],[65,8],[67,44],[71,35],[50,2],[95,19],[97,98],[17,78],[12,24],[33,38],[73,27],[65,61],[66,60],[82,78],[19,19],[38,33],[83,36],[31,29],[21,5],[28,14],[21,82],[42,75],[99,55],[20,61],[17,48],[10,87],[48,11],[36,36],[64,87],[45,79],[5,17],[50,74],[23,12],[90,10],[87,55],[16,31],[7,94],[75,6],[94,89],[92,66],[49,79],[81,63],[8,65],[31,16],[24,2],[71,88],[42,14],[61,64],[4,73],[41,6],[44,12],[29,35],[19,28],[75,53],[10,22],[15,41],[72,70],[39,67],[23,71],[82,30],[25,65],[10,5],[28,51],[70,99],[62,69],[89,94],[76,100],[44,84],[3,28],[52,85],[95,96],[26,62],[81,45],[44,67],[92,84],[68,8],[43,9],[1,24],[16,16],[4,39],[2,24],[48,48],[41,15],[80,96],[27,73],[61,65],[9,9],[100,37],[76,32],[48,17],[66,92],[54,99],[94,81],[100,76],[10,100],[58,54],[90,90],[51,94],[5,86],[46,78],[3,3],[49,55],[42,77],[39,27],[14,28],[18,56],[57,82],[52,34],[11,48],[69,32],[33,33],[65,90],[6,75],[69,62],[12,23],[9,67],[89,89],[68,59],[47,67],[15,7],[57,95],[50,3],[24,12],[63,81],[57,31],[38,35],[72,90],[99,99],[5,21],[59,68],[78,46],[46,88],[39,4],[29,100],[52,89],[65,15],[34,63],[77,77],[64,4],[85,52],[66,6],[32,69],[54,58],[34,48],[90,54],[27,29],[13,68],[35,71],[96,59],[88,46],[3,62],[62,14],[25,87],[24,1],[67,47],[45,85],[64,61],[85,58],[25,26],[78,17],[37,22],[87,87],[11,11],[8,74],[71,93],[80,80],[94,7],[58,85],[80,16],[27,39],[75,97],[55,49],[15,88],[33,35],[40,82],[26,25],[69,51],[17,36],[63,63],[36,17],[79,49],[60,70],[32,32],[59,96],[83,44],[2,80],[49,49],[87,10],[100,29],[95,97],[13,23],[71,23],[32,76],[62,9],[46,46],[67,9],[83,83],[14,52],[96,96],[53,59],[78,82],[54,4],[35,33],[91,92],[68,13],[67,64],[11,33],[54,90],[98,97],[97,95],[92,91],[79,45],[57,37],[62,3],[99,70],[42,84],[47,80],[77,20],[84,92],[66,86],[86,5],[7,86],[69,16],[11,64],[25,22],[73,40],[31,57],[4,64],[53,75],[81,94],[34,52],[2,50],[21,46],[97,75],[49,57],[41,78],[93,71],[56,61],[89,34],[98,25],[73,93],[97,72],[56,5],[22,25],[39,70],[5,10],[81,74],[6,41],[29,27],[82,57],[35,29],[80,2],[9,62],[74,91],[88,68]]],"output":[1,50,74,81,58,68,58,28,19,48,48,17,78,43,9,9,21,21,82,30,3,50,2,71,35,11,64,87,10,22,95,19,19,95,57,82,78,46,60,66,86,22,10,90,90,72,8,74,8,72,70,92,66,83,36,83,44,55,14,42,77,52,77,77,89,34,63,38,33,98,97,84,84,42,32,99,55,14,28,51,28,19,12,4,54,94,89,89,94,81,63,79,23,31,23,12,44,67,39,16,69,24,27,73,73,4,39,70,72,76,47,6,47,100,37,100,76,18,56,61,15,65,8,68,59,59,41,41,15,88,88,46,46,78,82,21,5,17,26,62,69,32,76,47,67,44,12,24,2,50,74,8,65,61,64,4,39,27,85,79,85,52,34,63,63,81,45,79,49,75,6,53,75,42,14,28,3,3,62,69,51,94,7,15,41,6,75,97,95,96,80,80,96,31,16,16,31,29,13,68,59,96,96,59,53,75,97,95,57,31,57,37,22,86,36,36,83,83,44,84,92,66,6,41,78,17,36,17,48,11,11,48,34,91,92,1,24,2,80,47,67,9,62,3,50,2,80,16,69,32,32,76,100,10,5,86,66,60,70,99,99,55,49,55,87,25,26,25,65,61,20,77,42,84,92,91,74,81,94,7,86,5,21,46,88,71,35,38,33,33,35,29,100,29,27,73,40,93,71,23,13,68,88,15,65,90,72,97,98,25,22,25,87,87,10,5,56,61,64,11,33,35,29,27,39,70,99,54,58,54,90,54,4,64,67,9,62,14,52,89,34,52,85,58,85,45,79,49,49,57,82,40,73,93,71,23,12,24,1]}]}, -{"id":"power","title":"Power","description":"Write the `pow` method to return unity digit (last digit of integer) of the number 2^n^. \n\n### Notes\n* 0 <= n <= 10^40^ \n\n### Examples\n\n* `\"10\"` -> `4`","timeLimit":1,"memoryLimit":32,"level":2,"func":{"name":"pow","returnStatement":{"type":"java.lang.Integer","comment":"Unity digit of the calculation result"},"parameters":[{"name":"n","type":"java.lang.String","comment":"Power value"}]},"testCases":[{"input":["10"],"output":4},{"input":["0"],"output":1},{"input":["1"],"output":2},{"input":["98"],"output":4},{"input":["1231231232"],"output":6},{"input":["100000000000000000000017"],"output":2},{"input":["999999999999999999999999999999999999999"],"output":8},{"input":["189027346918234689012375018"],"output":4},{"input":["1000000000000000000000000000000000000000"],"output":6},{"input":["31137"],"output":2},{"input":["13858949068651216783729893211"],"output":8}]}, -{"id":"binary-weighing-scale","title":"Binary Weighing Scale","description":"The binary weighing scale is a specific device that can perform measurements of any size within a specified range `(0, 1)` with a fixed accuracy. \n\nAccuracy of the balance is set using a knob that can be set in position `1` or `2` or `3`, or `...`, or `10`. When the accuracy is set to `m`, the weighing scale measures weight with an accuracy of ==1 / (2^m^)==.\n\nThe weighing results are stored in the form of pair `[l, m]`. Such a pair indicates that the accuracy of the weighing scale is set to `m` and weighing scale result is `l`. That is, the weight of the weighted object is ==(l / (2 ^m^))== (`l` is a natural number, and of course ==0 < L < 2^m^==, as mentioned above, the weighing scale indicates the size of the range of `(0, 1)`).\n\nWrite a method `sort` which will return the weighing scale results in ascending order of their real value. The results are given as array of pairs (another array), `[l, m]`. Different pairs can have same real value (e.g. `[1, 2]`, `[2, 3]`) - then you need to sort them by first item - `l`, again in ascending order.\n\n### Examples\n\n```\nInput:\n[[1000, 10],\n [3, 10],\n [5, 3],\n [250, 8]]\n\nOutput:\n[[3, 10],\n [5, 3],\n [250, 8],\n [1000, 10]]\n```","timeLimit":1,"memoryLimit":32,"level":3,"func":{"name":"sort","returnStatement":{"type":"[[I","comment":"Sorted weighing scale results"},"parameters":[{"name":"results","type":"[[I","comment":"Unsorted weighing scale results"}]},"testCases":[{"input":[[[1000,10],[3,10],[5,3],[250,8]]],"output":[[3,10],[5,3],[250,8],[1000,10]]},{"input":[[[100,10],[50,7],[7,3]]],"output":[[100,10],[50,7],[7,3]]},{"input":[[[100,10],[2,7],[1,4]]],"output":[[2,7],[1,4],[100,10]]},{"input":[[[100,10],[2,5],[1,4]]],"output":[[1,4],[2,5],[100,10]]},{"input":[[[730,10],[523,10],[66,10],[802,10],[390,10],[131,10],[980,10],[777,10],[844,10],[604,10],[779,10],[490,10],[697,10],[155,10],[365,10],[344,10],[656,10],[102,10],[509,10],[1003,10],[595,10],[70,10],[939,10],[961,10],[425,10],[187,10],[499,10],[961,10],[373,10],[236,10],[832,10],[121,10],[523,10],[225,10],[178,10],[169,10],[304,10],[742,10],[722,10],[248,10],[387,10],[565,10],[450,10],[350,10],[499,10],[1005,10],[622,10],[514,10],[870,10],[22,10],[406,10],[501,10],[921,10],[295,10],[564,10],[387,10],[82,10],[1022,10],[838,10],[478,10],[447,10],[25,10],[786,10],[638,10],[732,10],[822,10],[908,10],[3,10],[947,10],[199,10],[210,10],[850,10],[190,10],[939,10],[890,10],[674,10],[830,10],[455,10],[528,10],[904,10],[1008,10],[660,10],[398,10],[282,10],[420,10],[116,10],[974,10],[465,10],[565,10],[999,10],[108,10],[340,10],[301,10],[59,10],[884,10],[966,10],[871,10],[1,10],[266,10],[391,10],[512,10],[525,10],[1004,10],[125,10],[844,10],[785,10],[752,10],[136,10],[327,10],[777,10],[445,10],[583,10],[805,10],[239,10],[689,10],[353,10],[847,10],[669,10],[227,10],[644,10],[460,10],[953,10],[221,10],[241,10],[143,10],[937,10],[79,10],[408,10],[201,10],[964,10],[783,10],[493,10],[10,10],[811,10],[19,10],[669,10],[719,10],[759,10],[27,10],[387,10],[207,10],[240,10],[416,10],[678,10],[427,10],[413,10],[612,10],[505,10],[784,10],[414,10],[157,10],[503,10],[753,10],[901,10],[710,10],[625,10],[162,10],[410,10],[637,10],[271,10],[648,10],[707,10],[265,10],[352,10],[794,10],[889,10],[225,10],[457,10],[77,10],[101,10],[38,10],[174,10],[21,10],[837,10],[321,10],[11,10],[484,10],[56,10],[392,10],[782,10],[887,10],[459,10],[488,10],[62,10],[306,10],[454,10],[10,10],[851,10],[829,10],[43,10],[10,10],[139,10],[763,10],[469,10],[864,10],[3,10],[852,10],[513,10],[117,10],[127,10],[173,10],[418,10],[455,10],[364,10],[585,10],[859,10],[440,10],[31,10],[31,10],[152,10],[869,10],[596,10],[972,10],[464,10],[45,10],[265,10],[972,10],[624,10],[1002,10],[693,10],[196,10],[960,10],[226,10],[387,10],[864,10],[888,10],[337,10],[368,10],[465,10],[298,10],[748,10],[1001,10],[575,10],[855,10],[968,10],[601,10],[579,10],[23,10],[700,10],[645,10],[338,10],[486,10],[609,10],[959,10],[916,10],[990,10],[599,10],[722,10],[88,10],[385,10],[319,10],[483,10],[926,10],[350,10],[466,10],[263,10],[1017,10],[209,10],[206,10],[189,10],[662,10],[289,10],[309,10],[52,10],[587,10],[255,10],[91,10],[640,10],[80,10],[698,10],[748,10],[871,10],[993,10],[630,10],[730,10],[710,10],[583,10],[283,10],[630,10],[277,10],[144,10],[949,10],[429,10],[626,10],[829,10],[245,10],[208,10],[912,10],[792,10],[749,10],[453,10],[864,10],[726,10],[819,10],[863,10],[731,10],[84,10],[154,10],[337,10],[248,10],[338,10],[525,10],[306,10],[588,10],[45,10],[195,10],[560,10],[1006,10],[916,10],[326,10],[780,10],[92,10],[1000,10],[305,10],[87,10],[660,10],[480,10],[982,10],[497,10],[213,10],[723,10],[201,10],[245,10],[765,10],[175,10],[281,10],[396,10],[665,10],[772,10],[312,10],[147,10],[108,10],[362,10],[620,10],[513,10],[498,10],[934,10],[295,10],[129,10],[882,10],[124,10],[510,10],[25,10],[1011,10],[174,10],[424,10],[766,10],[263,10],[160,10],[830,10],[664,10],[352,10],[150,10],[866,10],[206,10],[737,10],[851,10],[29,10],[670,10],[67,10],[721,10],[293,10],[8,10],[566,10],[712,10],[914,10],[720,10],[777,10],[462,10],[225,10],[828,10],[7,10],[293,10],[480,10],[92,10],[749,10],[338,10],[42,10],[80,10],[220,10],[1023,10],[306,10],[904,10],[31,10],[45,10],[443,10],[672,10],[856,10],[1003,10],[845,10],[772,10],[370,10],[116,10],[58,10],[970,10],[942,10],[934,10],[59,10],[73,10],[795,10],[687,10],[592,10],[758,10],[901,10],[241,10],[991,10],[645,10],[84,10],[858,10],[299,10],[402,10],[106,10],[511,10],[940,10],[909,10],[717,10],[285,10],[880,10],[110,10],[299,10],[993,10],[621,10],[766,10],[849,10],[504,10],[290,10],[291,10],[337,10],[431,10],[490,10],[687,10],[438,10],[940,10],[2,10],[792,10],[19,10],[15,10],[865,10],[283,10],[508,10],[933,10],[720,10],[114,10],[403,10],[648,10],[800,10],[61,10],[170,10],[229,10],[559,10],[504,10],[461,10],[93,10],[529,10],[872,10],[859,10],[522,10],[153,10],[117,10],[252,10],[752,10],[128,10],[404,10],[910,10],[565,10],[547,10],[302,10],[624,10],[66,10],[837,10],[2,10],[808,10],[406,10],[846,10],[887,10],[187,10],[681,10],[619,10],[256,10],[980,10],[362,10],[921,10],[395,10],[533,10],[843,10],[373,10],[234,10],[72,10],[1006,10],[323,10],[447,10],[621,10],[268,10],[52,10],[165,10],[758,10],[950,10],[1009,10],[633,10],[904,10],[776,10],[273,10],[63,10],[260,10],[750,10],[171,10],[47,10],[425,10],[592,10],[888,10],[215,10],[511,10],[368,10],[105,10],[525,10],[128,10],[1017,10],[954,10],[305,10],[601,10],[360,10],[798,10],[628,10],[500,10],[709,10],[705,10],[520,10],[758,10],[880,10],[72,10],[409,10],[730,10],[62,10],[274,10],[684,10],[985,10],[909,10],[516,10],[53,10],[68,10],[121,10],[125,10],[863,10],[526,10],[733,10],[99,10],[756,10],[284,10],[768,10],[46,10],[907,10],[464,10],[125,10],[359,10],[215,10],[172,10],[949,10],[773,10],[114,10],[910,10],[191,10],[606,10],[299,10],[696,10],[990,10],[524,10],[935,10],[849,10],[184,10],[859,10],[840,10],[854,10],[322,10],[691,10],[699,10],[894,10],[388,10],[244,10],[542,10],[442,10],[400,10],[613,10],[565,10],[1011,10],[837,10],[572,10],[637,10],[488,10],[547,10],[121,10],[122,10],[588,10],[752,10],[663,10],[448,10],[619,10],[976,10],[318,10],[356,10],[758,10],[911,10],[67,10],[833,10],[313,10],[790,10],[249,10],[547,10],[270,10],[13,10],[850,10],[603,10],[767,10],[719,10],[11,10],[163,10],[182,10],[785,10],[19,10],[798,10],[714,10],[557,10],[836,10],[379,10],[580,10],[618,10],[907,10],[557,10],[411,10],[130,10],[519,10],[258,10],[703,10],[984,10],[767,10],[171,10],[313,10],[186,10],[455,10],[67,10],[283,10],[847,10],[31,10],[575,10],[754,10],[882,10],[352,10],[586,10],[228,10],[866,10],[953,10],[86,10],[795,10],[368,10],[717,10],[893,10],[611,10],[161,10],[552,10],[514,10],[297,10],[203,10],[419,10],[917,10],[235,10],[631,10],[159,10],[25,10],[277,10],[42,10],[315,10],[847,10],[106,10],[188,10],[620,10],[43,10],[195,10],[841,10],[887,10],[1010,10],[872,10],[937,10],[529,10],[339,10],[933,10],[578,10],[923,10],[379,10],[558,10],[670,10],[77,10],[643,10],[126,10],[604,10],[85,10],[877,10],[388,10],[606,10],[645,10],[473,10],[463,10],[50,10],[101,10],[485,10],[1019,10],[574,10],[140,10],[2,10],[158,10],[716,10],[503,10],[834,10],[90,10],[63,10],[163,10],[22,10],[265,10],[76,10],[632,10],[660,10],[242,10],[453,10],[163,10],[438,10],[984,10],[308,10],[131,10],[944,10],[107,10],[1006,10],[318,10],[509,10],[157,10],[20,10],[1,10],[11,10],[294,10],[268,10],[888,10],[787,10],[873,10],[228,10],[120,10],[977,10],[186,10],[494,10],[575,10],[610,10],[925,10],[469,10],[401,10],[891,10],[250,10],[39,10],[505,10],[742,10],[1020,10],[925,10],[543,10],[739,10],[596,10],[697,10],[376,10],[141,10],[481,10],[488,10],[806,10],[813,10],[318,10],[659,10],[632,10],[590,10],[609,10],[469,10],[30,10],[281,10],[78,10],[18,10],[959,10],[155,10],[666,10],[17,10],[972,10],[734,10],[978,10],[79,10],[30,10],[63,10],[738,10],[829,10],[441,10],[723,10],[782,10],[281,10],[851,10],[131,10],[663,10],[44,10],[707,10],[666,10],[406,10],[472,10],[852,10],[150,10],[434,10],[645,10],[190,10],[605,10],[9,10],[33,10],[661,10],[9,10],[314,10],[334,10],[18,10],[691,10],[825,10],[133,10],[525,10],[897,10],[783,10],[603,10],[327,10],[266,10],[472,10],[820,10],[544,10],[849,10],[62,10],[659,10],[896,10],[456,10],[923,10],[940,10],[809,10],[485,10],[868,10],[79,10],[236,10],[609,10],[427,10],[261,10],[124,10],[264,10],[448,10],[503,10],[114,10],[614,10],[74,10],[435,10],[115,10],[356,10],[919,10],[1011,10],[949,10],[303,10],[532,10],[598,10],[365,10],[422,10],[488,10],[324,10],[668,10],[924,10],[372,10],[975,10],[777,10],[407,10],[807,10],[808,10],[576,10],[465,10],[1016,10],[755,10],[317,10],[516,10],[369,10],[970,10],[664,10],[540,10],[494,10],[554,10],[96,10],[63,10],[872,10],[265,10],[674,10],[262,10],[302,10],[572,10],[649,10],[167,10],[513,10],[74,10],[998,10],[116,10],[734,10],[763,10],[747,10],[769,10],[518,10],[381,10],[136,10],[647,10],[22,10],[620,10],[988,10],[170,10],[71,10],[97,10],[671,10],[495,10],[6,10],[64,10],[635,10],[606,10],[42,10],[730,10],[828,10],[505,10],[199,10],[790,10],[516,10],[442,10],[679,10],[377,10],[921,10],[127,10],[916,10],[997,10],[681,10],[624,10],[342,10],[485,10],[86,10],[278,10],[138,10],[1015,10],[489,10],[357,10],[826,10],[931,10],[334,10],[317,10],[942,10],[716,10],[412,10],[794,10],[995,10],[141,10],[846,10],[6,10],[841,10],[991,10],[151,10],[680,10],[115,10],[111,10],[733,10],[198,10],[150,10],[733,10],[58,10],[397,10],[642,10],[598,10],[884,10],[514,10],[667,10],[837,10],[79,10],[155,10],[307,10],[593,10],[935,10],[607,10],[398,10],[60,10],[367,10],[653,10],[663,10],[298,10],[15,10],[789,10],[499,10],[845,10],[524,10],[663,10],[567,10],[626,10],[955,10],[35,10],[190,10],[689,10],[143,10],[909,10],[352,10],[203,10],[19,10],[698,10],[97,10],[654,10],[1019,10],[935,10],[532,10],[945,10],[953,10],[831,10],[581,10],[913,10],[854,10],[214,10],[597,10],[67,10],[164,10],[354,10],[221,10],[861,10],[659,10],[986,10],[266,10],[106,10],[1001,10],[504,10],[922,10],[103,10],[774,10],[141,10],[880,10],[932,10],[814,10],[445,10],[78,10],[700,10],[751,10],[292,10],[891,10],[648,10],[949,10],[992,10],[431,10],[599,10],[205,10],[870,10],[498,10],[472,10],[998,10],[346,10],[181,10],[883,10],[880,10],[365,10],[810,10],[214,10],[362,10],[219,10],[333,10],[82,10],[357,10],[502,10],[945,10],[125,10],[801,10],[32,10],[415,10],[452,10],[1011,10],[328,10],[979,10],[665,10],[192,10],[408,10],[706,10],[793,10],[71,10],[811,10],[848,10],[363,10],[107,10],[399,10],[440,10],[978,10],[276,10],[842,10],[928,10],[926,10],[515,10],[711,10],[385,10],[704,10],[47,10],[981,10],[851,10],[905,10],[790,10],[508,10],[696,10],[636,10],[124,10],[233,10],[652,10],[518,10],[840,10],[919,10],[906,10],[562,10],[303,10],[176,10],[358,10],[507,10],[27,10],[547,10],[116,10],[940,10],[126,10],[323,10],[148,10],[883,10],[487,10],[836,10],[683,10],[230,10],[372,10],[570,10],[920,10],[811,10],[615,10],[352,10],[686,10],[838,10],[912,10],[473,10],[397,10],[439,10],[842,10],[624,10],[311,10],[648,10],[790,10],[671,10],[399,10],[457,10],[899,10],[196,10],[884,10],[321,10],[796,10],[310,10],[991,10],[628,10],[254,10],[97,10],[451,10],[924,10],[15,10],[367,10],[983,10],[224,10],[501,10],[476,10],[657,10],[227,10],[435,10],[630,10],[343,10],[643,10],[358,10],[856,10],[11,10],[949,10],[874,10],[775,10],[651,10],[714,10],[189,10],[857,10],[486,10],[562,10],[29,10],[2,10],[426,10],[701,10],[825,10],[728,10],[997,10],[451,10],[778,10],[36,10],[722,10],[33,10],[180,10],[140,10],[835,10],[72,10],[133,10],[179,10],[537,10],[468,10],[646,10],[28,10],[909,10],[522,10],[151,10],[317,10],[111,10],[668,10],[927,10],[880,10],[203,10],[372,10],[368,10],[269,10],[419,10],[369,10],[399,10],[108,10],[220,10],[791,10],[224,10],[397,10],[67,10],[195,10],[807,10],[42,10],[449,10],[515,10],[624,10],[270,10],[691,10],[884,10],[62,10],[985,10],[182,10],[119,10],[913,10],[786,10],[755,10],[433,10],[808,10],[628,10],[74,10],[287,10],[54,10],[727,10],[910,10],[270,10],[142,10],[503,10],[188,10],[213,10],[229,10],[490,10],[283,10],[744,10],[47,10],[259,10],[878,10],[867,10],[840,10],[889,10],[578,10],[228,10],[461,10],[616,10],[740,10],[829,10],[479,10],[44,10],[748,10],[542,10],[576,10],[922,10],[457,10],[968,10],[329,10],[265,10],[935,10],[227,10],[493,10],[86,10],[1020,10],[256,10],[529,10],[885,10],[421,10],[512,10],[114,10],[612,10],[341,10],[266,10],[200,10],[39,10],[292,10],[845,10],[635,10],[821,10],[170,10],[154,10],[3,10],[674,10],[366,10],[57,10],[144,10],[63,10],[62,10],[228,10],[892,10],[889,10],[201,10],[271,10],[564,10],[705,10],[582,10],[581,10],[146,10],[511,10],[254,10],[55,10],[215,10],[931,10],[541,10],[169,10],[72,10],[165,10],[119,10],[593,10],[610,10],[635,10],[899,10],[3,10],[918,10],[137,10],[367,10],[324,10],[51,10],[35,10],[1020,10],[674,10],[625,10],[285,10],[580,10],[584,10],[960,10],[228,10],[13,10],[970,10],[816,10],[384,10],[949,10],[234,10],[657,10],[981,10],[696,10],[563,10],[379,10],[625,10],[648,10],[789,10],[896,10],[967,10],[444,10],[546,10],[567,10],[645,10],[411,10],[376,10],[121,10],[831,10],[230,10],[445,10],[441,10],[542,10],[927,10],[410,10],[668,10],[844,10],[376,10],[809,10],[680,10],[426,10],[477,10],[857,10],[644,10],[341,10],[944,10],[656,10],[234,10],[933,10],[820,10],[278,10],[62,10],[143,10],[328,10],[942,10],[520,10],[742,10],[466,10],[352,10],[577,10],[841,10],[431,10],[137,10],[521,10],[208,10],[661,10],[426,10],[193,10],[191,10],[886,10],[868,10],[986,10],[369,10],[945,10],[1006,10],[840,10],[901,10],[315,10],[71,10],[938,10],[605,10],[242,10],[803,10],[265,10],[206,10],[1016,10],[595,10],[107,10],[16,10],[405,10],[667,10],[464,10],[889,10],[807,10],[850,10],[272,10],[113,10],[460,10],[823,10],[522,10],[748,10],[567,10],[528,10],[569,10],[31,10],[473,10],[782,10],[481,10],[66,10],[40,10],[945,10],[814,10],[203,10],[488,10],[431,10],[999,10],[726,10],[1011,10],[201,10],[776,10],[69,10],[399,10],[998,10],[843,10],[219,10],[337,10],[257,10],[681,10],[66,10],[746,10],[1008,10],[330,10],[223,10],[71,10],[272,10],[262,10],[667,10],[161,10],[779,10],[430,10],[982,10],[256,10],[221,10],[590,10],[259,10],[633,10],[581,10],[774,10],[436,10],[234,10],[482,10],[64,10],[390,10],[31,10],[650,10],[72,10],[23,10],[314,10],[53,10],[44,10],[198,10],[10,10],[681,10],[401,10],[435,10],[433,10],[1014,10],[569,10],[480,10],[791,10],[950,10],[953,10],[10,10],[616,10],[341,10],[626,10],[176,10],[590,10],[823,10],[925,10],[782,10],[35,10],[392,10],[255,10],[542,10],[25,10],[801,10],[168,10],[865,10],[194,10],[889,10],[202,10],[931,10],[622,10],[330,10],[247,10],[457,10],[419,10],[45,10],[91,10],[801,10],[505,10],[162,10],[620,10],[941,10],[443,10],[1000,10],[702,10],[911,10],[26,10],[724,10],[599,10],[833,10],[911,10],[562,10],[535,10],[893,10],[511,10],[860,10],[864,10],[671,10],[923,10],[743,10],[574,10],[506,10],[359,10],[770,10],[338,10],[395,10],[4,10],[462,10],[946,10],[732,10],[409,10],[706,10],[177,10],[36,10],[556,10],[109,10],[587,10],[33,10],[745,10],[442,10],[978,10],[454,10],[200,10],[500,10],[306,10],[275,10],[878,10],[420,10],[268,10],[476,10],[396,10],[827,10],[93,10],[896,10],[240,10],[917,10],[337,10],[725,10],[516,10],[654,10],[494,10],[926,10],[686,10],[681,10],[654,10],[453,10],[812,10],[668,10],[351,10],[761,10],[487,10],[654,10],[919,10],[140,10],[278,10],[816,10],[416,10],[743,10],[734,10],[819,10],[815,10],[296,10],[246,10],[702,10],[88,10],[826,10],[12,10],[354,10],[751,10],[153,10],[408,10],[717,10],[370,10],[628,10],[820,10],[174,10],[848,10],[857,10],[681,10],[548,10],[253,10],[782,10],[611,10],[200,10],[93,10],[648,10],[456,10],[245,10],[575,10],[1023,10],[522,10],[580,10],[647,10],[722,10],[665,10],[784,10],[743,10],[201,10],[906,10],[501,10],[993,10],[226,10],[98,10],[404,10],[465,10],[317,10],[520,10],[350,10],[709,10],[123,10],[229,10],[821,10],[849,10],[838,10],[859,10],[770,10],[269,10],[411,10],[102,10],[399,10],[620,10],[1014,10],[919,10],[42,10],[343,10],[851,10],[503,10],[499,10],[566,10],[773,10],[593,10],[621,10],[751,10],[239,10],[271,10],[594,10],[260,10],[144,10],[326,10],[469,10],[405,10],[763,10],[480,10],[366,10],[645,10],[391,10],[729,10],[239,10],[427,10],[161,10],[169,10],[211,10],[814,10],[215,10],[937,10],[15,10],[250,10],[885,10],[816,10],[580,10],[648,10],[673,10],[506,10],[574,10],[277,10],[387,10],[58,10],[718,10],[1017,10],[664,10],[951,10],[614,10],[945,10],[892,10],[818,10],[838,10],[11,10],[22,10],[10,10],[575,10],[744,10],[175,10],[366,10],[127,10],[557,10],[902,10],[354,10],[1003,10],[423,10],[210,10],[533,10],[509,10],[746,10],[233,10],[612,10],[694,10],[596,10],[697,10],[695,10],[872,10],[241,10],[356,10],[489,10],[519,10],[706,10],[892,10],[540,10],[468,10],[557,10],[263,10],[83,10],[616,10],[192,10],[174,10],[69,10],[953,10],[491,10],[638,10],[414,10],[185,10],[331,10],[281,10],[678,10],[616,10],[606,10],[37,10],[537,10],[107,10],[435,10],[832,10],[143,10],[97,10],[962,10],[33,10],[619,10],[297,10],[138,10],[329,10],[625,10],[368,10],[506,10],[551,10],[60,10],[990,10],[168,10],[1003,10],[1002,10],[700,10],[146,10],[779,10],[637,10],[621,10],[124,10],[295,10],[299,10],[573,10],[775,10],[274,10],[818,10],[823,10],[362,10],[911,10],[337,10],[253,10],[473,10],[877,10],[4,10],[288,10],[592,10],[752,10],[348,10],[48,10],[350,10],[385,10],[302,10],[307,10],[188,10],[840,10],[63,10],[903,10],[401,10],[170,10],[174,10],[876,10],[224,10],[619,10],[201,10],[255,10],[787,10],[854,10],[403,10],[682,10],[545,10],[646,10],[296,10],[766,10],[763,10],[16,10],[158,10],[687,10],[722,10],[475,10],[949,10],[18,10],[662,10],[923,10],[910,10],[769,10],[8,10],[282,10],[613,10],[130,10],[795,10],[356,10],[83,10],[926,10],[297,10],[341,10],[899,10],[873,10],[704,10],[684,10],[580,10],[848,10],[910,10],[752,10],[269,10],[526,10],[857,10],[195,10],[483,10],[514,10],[334,10],[670,10],[848,10],[609,10],[117,10],[155,10],[37,10],[384,10],[259,10],[644,10],[978,10],[161,10],[569,10],[572,10],[99,10],[85,10],[964,10],[766,10],[179,10],[632,10],[971,10],[45,10],[296,10],[744,10],[40,10],[85,10],[24,10],[154,10],[617,10],[287,10],[742,10],[864,10],[893,10],[650,10],[100,10],[559,10],[221,10],[298,10],[197,10],[276,10],[765,10],[559,10],[344,10],[11,10],[626,10],[436,10],[857,10],[319,10],[526,10],[775,10],[952,10],[776,10],[797,10],[108,10],[248,10],[891,10],[389,10],[220,10],[194,10],[161,10],[301,10],[662,10],[490,10],[767,10],[388,10],[253,10],[517,10],[255,10],[985,10],[612,10],[660,10],[328,10],[879,10],[405,10],[820,10],[422,10],[907,10],[22,10],[6,10],[103,10],[522,10],[309,10],[652,10],[403,10],[101,10],[135,10],[341,10],[390,10],[613,10],[222,10],[172,10],[758,10],[1012,10],[127,10],[1004,10],[964,10],[422,10],[163,10],[771,10],[802,10],[791,10],[498,10],[456,10],[797,10],[69,10],[321,10],[768,10],[481,10],[771,10],[956,10],[590,10],[591,10],[765,10],[755,10],[410,10],[3,10],[850,10],[326,10],[539,10],[530,10],[499,10],[169,10],[637,10],[557,10],[182,10],[397,10],[323,10],[97,10],[360,10],[57,10],[487,10],[182,10],[330,10],[220,10],[21,10],[934,10],[965,10],[428,10],[511,10],[263,10],[494,10],[413,10],[20,10],[447,10],[805,10],[675,10],[307,10],[86,10],[397,10],[722,10],[348,10],[207,10],[857,10],[541,10],[157,10],[107,10],[61,10],[83,10],[113,10],[521,10],[212,10],[120,10],[968,10],[431,10],[252,10],[793,10],[192,10],[400,10],[74,10],[257,10],[685,10],[619,10],[324,10],[325,10],[577,10],[129,10],[948,10],[501,10],[40,10],[929,10],[262,10],[820,10],[303,10],[59,10],[660,10],[625,10],[850,10],[468,10],[338,10],[279,10],[894,10],[3,10],[640,10],[629,10],[406,10],[102,10],[332,10],[734,10],[406,10],[669,10],[190,10],[942,10],[934,10],[1001,10],[853,10],[153,10],[542,10],[125,10],[578,10],[717,10],[164,10],[697,10],[618,10],[105,10],[229,10],[647,10],[973,10],[65,10],[708,10],[298,10],[229,10],[531,10],[168,10],[846,10],[412,10],[297,10],[179,10],[344,10],[841,10],[724,10],[960,10],[969,10],[426,10],[170,10],[282,10],[104,10],[822,10],[1007,10],[483,10],[52,10],[147,10],[910,10],[70,10],[704,10],[975,10],[722,10],[131,10],[503,10],[233,10],[905,10],[746,10],[535,10],[714,10],[442,10],[301,10],[431,10],[176,10],[103,10],[114,10],[549,10],[193,10],[386,10],[85,10],[844,10],[423,10],[288,10],[62,10],[882,10],[436,10],[948,10],[383,10],[23,10],[957,10],[997,10],[481,10],[782,10],[256,10],[670,10],[170,10],[421,10],[237,10],[736,10],[706,10],[675,10],[871,10],[423,10],[556,10],[308,10],[490,10],[764,10],[7,10],[452,10],[1011,10],[418,10],[541,10],[1014,10],[153,10],[909,10],[430,10],[171,10],[197,10],[843,10],[406,10],[843,10],[239,10],[832,10],[156,10],[348,10],[877,10],[269,10],[457,10],[262,10],[944,10],[238,10],[889,10],[141,10],[28,10],[164,10],[46,10],[683,10],[319,10],[558,10],[421,10],[18,10],[761,10],[917,10],[673,10],[728,10],[988,10],[349,10],[215,10],[368,10],[738,10],[929,10],[838,10],[686,10],[41,10],[238,10],[360,10],[929,10],[56,10],[87,10],[393,10],[115,10],[568,10],[446,10],[1007,10],[540,10],[884,10],[15,10],[659,10],[477,10],[408,10],[355,10],[232,10],[604,10],[118,10],[212,10],[948,10],[667,10],[621,10],[68,10],[29,10],[903,10],[618,10],[751,10],[684,10],[173,10],[563,10],[599,10],[899,10],[970,10],[994,10],[155,10],[699,10],[397,10],[292,10],[456,10],[483,10],[94,10],[355,10],[264,10],[573,10],[52,10],[822,10],[723,10],[228,10],[990,10],[912,10],[564,10],[846,10],[1014,10],[161,10],[926,10],[294,10],[980,10],[363,10],[112,10],[985,10],[158,10],[656,10],[484,10],[450,10],[529,10],[712,10],[645,10],[1006,10],[990,10],[209,10],[266,10],[373,10],[803,10],[406,10],[256,10],[197,10],[555,10],[612,10],[358,10],[805,10],[572,10],[875,10],[304,10],[597,10],[455,10],[232,10],[989,10],[716,10],[97,10],[621,10],[894,10],[122,10],[277,10],[153,10],[542,10],[540,10],[259,10],[828,10],[87,10],[144,10],[892,10],[673,10],[52,10],[130,10],[232,10],[74,10],[388,10],[27,10],[147,10],[697,10],[899,10],[387,10],[716,10],[439,10],[382,10],[289,10],[388,10],[467,10],[337,10],[428,10],[526,10],[783,10],[990,10],[646,10],[937,10],[100,10],[897,10],[390,10],[1023,10],[260,10],[866,10],[985,10],[411,10],[785,10],[943,10],[792,10],[156,10],[436,10],[869,10],[361,10],[581,10],[817,10],[1006,10],[895,10],[940,10],[419,10],[141,10],[935,10],[114,10],[407,10],[166,10],[436,10],[564,10],[84,10],[50,10],[499,10],[319,10],[670,10],[672,10],[284,10],[979,10],[912,10],[316,10],[227,10],[1004,10],[927,10],[210,10],[971,10],[551,10],[928,10],[111,10],[561,10],[428,10],[542,10],[151,10],[933,10],[3,10],[319,10],[223,10],[994,10],[690,10],[860,10],[367,10],[162,10],[781,10],[1018,10],[363,10],[236,10],[292,10],[990,10],[462,10],[288,10],[972,10],[397,10],[361,10],[979,10],[151,10],[674,10],[780,10],[204,10],[212,10],[500,10],[191,10],[607,10],[151,10],[484,10],[179,10],[993,10],[234,10],[495,10],[979,10],[116,10],[925,10],[600,10],[977,10],[886,10],[551,10],[826,10],[489,10],[65,10],[883,10],[888,10],[442,10],[812,10],[321,10],[78,10],[801,10],[750,10],[545,10],[426,10],[224,10],[486,10],[266,10],[205,10],[154,10],[501,10],[580,10],[190,10],[772,10],[174,10],[170,10],[157,10],[607,10],[162,10],[754,10],[192,10],[58,10],[682,10],[85,10],[690,10],[1001,10],[71,10],[889,10],[307,10],[751,10],[349,10],[966,10],[987,10],[965,10],[62,10],[878,10],[636,10],[7,10],[12,10],[664,10],[703,10],[540,10],[210,10],[671,10],[496,10],[759,10],[397,10],[130,10],[637,10],[254,10],[145,10],[298,10],[1022,10],[647,10],[338,10],[512,10],[125,10],[216,10],[657,10],[965,10],[823,10],[463,10],[339,10],[396,10],[876,10],[18,10],[630,10],[590,10],[467,10],[638,10],[769,10],[367,10],[512,10],[957,10],[211,10],[453,10],[544,10],[133,10],[291,10],[809,10],[701,10],[319,10],[857,10],[874,10],[107,10],[942,10],[950,10],[577,10],[902,10],[1023,10],[962,10],[673,10],[51,10],[52,10],[532,10],[390,10],[46,10],[337,10],[589,10],[674,10],[1019,10],[288,10],[28,10],[293,10],[881,10],[64,10],[743,10],[548,10],[48,10],[772,10],[317,10],[968,10],[585,10],[601,10],[496,10],[376,10],[101,10],[940,10],[252,10],[125,10],[634,10],[243,10],[763,10],[343,10],[402,10],[185,10],[440,10],[294,10],[833,10],[891,10],[110,10],[237,10],[360,10],[466,10],[711,10],[359,10],[892,10],[828,10],[849,10],[357,10],[346,10],[611,10],[390,10],[394,10],[420,10],[289,10],[594,10],[985,10],[925,10],[940,10],[203,10],[449,10],[804,10],[20,10],[694,10],[369,10],[384,10],[926,10],[498,10],[36,10],[687,10],[859,10],[628,10],[244,10],[745,10],[119,10],[727,10],[140,10],[545,10],[256,10],[319,10],[687,10],[522,10],[703,10],[622,10],[208,10],[271,10],[580,10],[837,10],[405,10],[143,10],[660,10],[977,10],[679,10],[1018,10],[305,10],[313,10],[416,10],[152,10],[1007,10],[922,10],[92,10],[721,10],[386,10],[741,10],[625,10],[387,10],[51,10],[860,10],[910,10],[544,10],[785,10],[900,10],[109,10],[71,10],[781,10],[588,10],[489,10],[605,10],[872,10],[462,10],[124,10],[669,10],[603,10],[13,10],[485,10],[710,10],[425,10],[482,10],[37,10],[78,10],[704,10],[766,10],[815,10],[681,10],[491,10],[263,10],[434,10],[586,10],[397,10],[456,10],[646,10],[803,10],[722,10],[363,10],[657,10],[673,10],[203,10],[891,10],[484,10],[615,10],[626,10],[637,10],[751,10],[299,10],[513,10],[252,10],[376,10],[400,10],[183,10],[80,10],[367,10],[45,10],[506,10],[813,10],[152,10],[357,10],[645,10],[664,10],[834,10],[980,10],[815,10],[950,10],[31,10],[338,10],[953,10],[522,10],[809,10],[958,10],[897,10],[655,10],[956,10],[551,10],[472,10],[819,10],[420,10],[990,10],[898,10],[544,10],[22,10],[823,10],[54,10],[56,10],[726,10],[435,10],[541,10],[288,10],[1006,10],[397,10],[546,10],[204,10],[529,10],[228,10],[557,10],[335,10],[232,10],[609,10],[364,10],[643,10],[797,10],[333,10],[349,10],[210,10],[79,10],[266,10],[434,10],[800,10],[819,10],[621,10],[488,10],[552,10],[834,10],[215,10],[88,10],[548,10],[504,10],[87,10],[819,10],[984,10],[308,10],[777,10],[927,10],[858,10],[996,10],[146,10],[560,10],[285,10],[809,10],[486,10],[938,10],[785,10],[151,10],[820,10],[128,10],[267,10],[108,10],[552,10],[530,10],[213,10],[733,10],[573,10],[445,10],[56,10],[986,10],[486,10],[346,10],[89,10],[479,10],[98,10],[829,10],[938,10],[325,10],[910,10],[371,10],[479,10],[388,10],[714,10],[679,10],[450,10],[556,10],[904,10],[760,10],[46,10],[701,10],[616,10],[414,10],[177,10],[640,10],[564,10],[570,10],[34,10],[30,10],[784,10],[993,10],[507,10],[325,10],[325,10],[492,10],[786,10],[708,10],[177,10],[309,10],[475,10],[662,10],[881,10],[180,10],[949,10],[561,10],[646,10],[522,10],[801,10],[553,10],[22,10],[881,10],[133,10],[62,10],[219,10],[312,10],[678,10],[475,10],[332,10],[162,10],[139,10],[194,10],[591,10],[556,10],[654,10],[78,10],[784,10],[354,10],[783,10],[465,10],[193,10],[915,10],[259,10],[350,10],[885,10],[242,10],[216,10],[265,10],[715,10],[761,10],[26,10],[585,10],[394,10],[976,10],[738,10],[401,10],[132,10],[572,10],[869,10],[466,10],[621,10],[314,10],[285,10],[805,10],[133,10],[637,10],[473,10],[29,10],[240,10],[399,10],[257,10],[834,10],[504,10],[54,10],[268,10],[645,10],[891,10],[898,10],[584,10],[214,10],[595,10],[647,10],[191,10],[562,10],[974,10],[148,10],[374,10],[759,10],[411,10],[969,10],[188,10],[861,10],[862,10],[113,10],[416,10],[681,10],[329,10],[179,10],[589,10],[600,10],[313,10],[810,10],[842,10],[299,10],[812,10],[23,10],[774,10],[846,10],[211,10],[320,10],[694,10],[916,10],[558,10],[151,10],[634,10],[544,10],[593,10],[698,10],[250,10],[873,10],[745,10],[54,10],[716,10],[616,10],[226,10],[784,10],[976,10],[381,10],[384,10],[351,10],[621,10],[554,10],[615,10],[365,10],[507,10],[317,10],[918,10],[674,10],[63,10],[134,10],[714,10],[598,10],[491,10],[823,10],[498,10],[368,10],[225,10],[757,10],[466,10],[832,10],[903,10],[537,10],[258,10],[933,10],[289,10],[364,10],[11,10],[10,10],[30,10],[89,10],[475,10],[133,10],[352,10],[1022,10],[712,10],[213,10],[374,10],[600,10],[644,10],[980,10],[746,10],[796,10],[37,10],[1003,10],[45,10],[1021,10],[286,10],[567,10],[473,10],[880,10],[990,10],[778,10],[414,10],[428,10],[818,10],[841,10],[476,10],[701,10],[423,10],[212,10],[760,10],[750,10],[935,10],[111,10],[554,10],[1020,10],[533,10],[171,10],[218,10],[154,10],[857,10],[121,10],[786,10],[988,10],[322,10],[971,10],[637,10],[20,10],[88,10],[321,10],[364,10],[414,10],[940,10],[3,10],[708,10],[1021,10],[309,10],[907,10],[112,10],[115,10],[470,10],[617,10],[931,10],[989,10],[1,10],[321,10],[754,10],[244,10],[700,10],[797,10],[350,10],[19,10],[581,10],[370,10],[738,10],[878,10],[505,10],[539,10],[70,10],[845,10],[427,10],[646,10],[702,10],[902,10],[230,10],[991,10],[163,10],[210,10],[888,10],[490,10],[183,10],[624,10],[775,10],[197,10],[512,10],[616,10],[229,10],[246,10],[832,10],[827,10],[174,10],[617,10],[636,10],[689,10],[1017,10],[441,10],[581,10],[216,10],[25,10],[716,10],[516,10],[428,10],[876,10],[799,10],[788,10],[788,10],[910,10],[479,10],[365,10],[778,10],[114,10],[592,10],[693,10],[631,10],[854,10],[699,10],[34,10],[789,10],[140,10],[596,10],[563,10],[347,10],[201,10],[677,10],[523,10],[904,10],[272,10],[231,10],[944,10],[172,10],[769,10],[185,10],[286,10],[777,10],[29,10],[39,10],[559,10],[197,10],[348,10],[875,10],[69,10],[937,10],[643,10],[63,10],[1019,10],[461,10],[59,10],[916,10],[1010,10],[187,10],[718,10],[466,10],[515,10],[170,10],[972,10],[417,10],[196,10],[290,10],[524,10],[590,10],[708,10],[162,10],[516,10],[174,10],[412,10],[712,10],[5,10],[603,10],[718,10],[75,10],[1006,10],[433,10],[447,10],[544,10],[479,10],[259,10],[588,10],[628,10],[891,10],[968,10],[265,10],[721,10],[926,10],[162,10],[551,10],[725,10],[187,10],[654,10],[866,10],[907,10],[567,10],[718,10],[510,10],[195,10],[645,10],[253,10],[525,10],[764,10],[297,10],[405,10],[57,10],[892,10],[251,10],[520,10],[427,10],[248,10],[778,10],[57,10],[129,10],[879,10],[341,10],[14,10],[963,10],[254,10],[719,10],[636,10],[460,10],[959,10],[4,10],[285,10],[837,10],[855,10],[526,10],[299,10],[951,10],[521,10],[372,10],[117,10],[378,10],[46,10],[485,10],[403,10],[925,10],[87,10],[76,10],[185,10],[367,10],[822,10],[121,10],[677,10],[491,10],[431,10],[93,10],[1000,10],[381,10],[499,10],[908,10],[535,10],[137,10],[956,10],[823,10],[147,10],[438,10],[1002,10],[860,10],[1,10],[780,10],[211,10],[1022,10],[823,10],[22,10],[1,10],[110,10],[884,10],[1016,10],[170,10],[888,10],[1016,10],[862,10],[652,10],[487,10],[570,10],[560,10],[291,10],[44,10],[557,10],[272,10],[390,10],[212,10],[693,10],[135,10],[939,10],[819,10],[697,10],[769,10],[447,10],[114,10],[974,10],[801,10],[391,10],[745,10],[164,10],[293,10],[316,10],[913,10],[10,10],[610,10],[579,10],[411,10],[418,10],[16,10],[458,10],[100,10],[6,10],[8,10],[856,10],[951,10],[124,10],[272,10],[436,10],[124,10],[729,10],[776,10],[774,10],[300,10],[343,10],[767,10],[84,10],[143,10],[600,10],[835,10],[71,10],[550,10],[134,10],[587,10],[99,10],[719,10],[561,10],[308,10],[149,10],[149,10],[686,10],[132,10],[38,10],[32,10],[403,10],[121,10],[800,10],[617,10],[630,10],[495,10],[924,10],[909,10],[233,10],[166,10],[327,10],[576,10],[886,10],[168,10],[556,10],[334,10],[958,10],[163,10],[379,10],[741,10],[212,10],[660,10],[939,10],[718,10],[72,10],[320,10],[525,10],[969,10],[563,10],[278,10],[449,10],[808,10],[559,10],[423,10],[531,10],[84,10],[71,10],[580,10],[984,10],[693,10],[679,10],[273,10],[265,10],[449,10],[207,10],[891,10],[426,10],[893,10],[449,10],[809,10],[1004,10],[726,10],[194,10],[456,10],[332,10],[399,10],[109,10],[492,10],[573,10],[695,10],[497,10],[600,10],[859,10],[474,10],[206,10],[597,10],[219,10],[293,10],[970,10],[371,10],[541,10],[887,10],[827,10],[737,10],[18,10],[62,10],[723,10],[996,10],[688,10],[506,10],[942,10],[593,10],[211,10],[618,10],[287,10],[351,10],[291,10],[380,10],[516,10],[105,10],[676,10],[675,10],[776,10],[189,10],[416,10],[521,10],[700,10],[570,10],[1008,10],[951,10],[11,10],[147,10],[294,10],[617,10],[857,10],[625,10],[321,10],[542,10],[868,10],[370,10],[319,10],[901,10],[64,10],[775,10],[232,10],[131,10],[306,10],[769,10],[319,10],[263,10],[229,10],[607,10],[554,10],[1013,10],[124,10],[252,10],[46,10],[516,10],[1020,10],[974,10],[342,10],[921,10],[540,10],[596,10],[244,10],[26,10],[486,10],[696,10],[720,10],[401,10],[1012,10],[181,10],[780,10],[574,10],[361,10],[403,10],[904,10],[401,10],[343,10],[18,10],[955,10],[135,10],[921,10],[168,10],[917,10],[373,10],[188,10],[35,10],[808,10],[362,10],[274,10],[220,10],[635,10],[860,10],[363,10],[538,10],[708,10],[1013,10],[414,10],[547,10],[159,10],[711,10],[39,10],[182,10],[237,10],[47,10],[32,10],[517,10],[329,10],[716,10],[590,10],[407,10],[671,10],[533,10],[665,10],[44,10],[160,10],[277,10],[959,10],[232,10],[488,10],[343,10],[21,10],[520,10],[728,10],[391,10],[746,10],[686,10],[848,10],[10,10],[545,10],[664,10],[762,10],[179,10],[923,10],[932,10],[125,10],[163,10],[948,10],[1004,10],[900,10],[94,10],[438,10],[92,10],[761,10],[919,10],[707,10],[924,10],[722,10],[711,10],[148,10],[344,10],[579,10],[277,10],[765,10],[136,10],[515,10],[495,10],[6,10],[701,10],[23,10],[500,10],[82,10],[569,10],[414,10],[562,10],[87,10],[654,10],[531,10],[338,10],[434,10],[287,10],[231,10],[879,10],[577,10],[155,10],[170,10],[231,10],[5,10],[245,10],[67,10],[489,10],[883,10],[565,10],[406,10],[331,10],[887,10],[438,10],[101,10],[153,10],[896,10],[856,10],[983,10],[515,10],[972,10],[836,10],[836,10],[878,10],[689,10],[1021,10],[332,10],[826,10],[588,10],[904,10],[94,10],[922,10],[739,10],[571,10],[458,10],[875,10],[38,10],[705,10],[350,10],[744,10],[142,10],[16,10],[755,10],[445,10],[304,10],[775,10],[974,10],[567,10],[830,10],[266,10],[935,10],[247,10],[555,10],[989,10],[522,10],[295,10],[834,10],[323,10],[918,10],[241,10],[934,10],[947,10],[694,10],[3,10],[762,10],[596,10],[600,10],[536,10],[74,10],[166,10],[248,10],[930,10],[953,10],[684,10],[436,10],[575,10],[561,10],[570,10],[419,10],[984,10],[217,10],[745,10],[777,10],[11,10],[928,10],[832,10],[397,10],[212,10],[613,10],[655,10],[273,10],[953,10],[880,10],[614,10],[775,10],[292,10],[1000,10],[845,10],[655,10],[948,10],[590,10],[730,10],[645,10],[279,10],[40,10],[225,10],[452,10],[134,10],[29,10],[228,10],[345,10],[502,10],[865,10],[190,10],[965,10],[315,10],[607,10],[266,10],[241,10],[882,10],[987,10],[113,10],[942,10],[28,10],[600,10],[676,10],[515,10],[377,10],[306,10],[564,10],[687,10],[943,10],[294,10],[760,10],[967,10],[223,10],[748,10],[733,10],[724,10],[555,10],[157,10],[371,10],[906,10],[5,10],[543,10],[130,10],[406,10],[302,10],[559,10],[244,10],[234,10],[905,10],[538,10],[725,10],[14,10],[470,10],[125,10],[456,10],[704,10],[70,10],[506,10],[705,10],[148,10],[596,10],[198,10],[263,10],[208,10],[887,10],[408,10],[259,10],[703,10],[988,10],[718,10],[1011,10],[352,10],[93,10],[13,10],[1014,10],[706,10],[687,10],[394,10],[966,10],[447,10],[201,10],[43,10],[849,10],[538,10],[958,10],[325,10],[793,10],[398,10],[301,10],[475,10],[783,10],[313,10],[427,10],[970,10],[270,10],[472,10],[830,10],[594,10],[899,10],[838,10],[814,10],[281,10],[839,10],[397,10],[35,10],[593,10],[806,10],[238,10],[789,10],[270,10],[397,10],[795,10],[324,10],[42,10],[290,10],[355,10],[62,10],[865,10],[554,10],[720,10],[446,10],[101,10],[482,10],[324,10],[699,10],[535,10],[874,10],[380,10],[482,10],[809,10],[310,10],[191,10],[181,10],[410,10],[1013,10],[52,10],[820,10],[11,10],[125,10],[502,10],[742,10],[725,10],[644,10],[849,10],[76,10],[485,10],[318,10],[705,10],[330,10],[399,10],[40,10],[382,10],[414,10],[12,10],[707,10],[427,10],[964,10],[208,10],[179,10],[955,10],[892,10],[157,10],[138,10],[554,10],[87,10],[893,10],[918,10],[521,10],[54,10],[415,10],[142,10],[66,10],[602,10],[90,10],[503,10],[624,10],[525,10],[590,10],[507,10],[972,10],[415,10],[397,10],[810,10],[245,10],[990,10],[431,10],[576,10],[584,10],[179,10],[774,10],[707,10],[111,10],[644,10],[233,10],[684,10],[847,10],[43,10],[382,10],[910,10],[697,10],[796,10],[417,10],[796,10],[349,10],[404,10],[310,10],[750,10],[646,10],[333,10],[463,10],[357,10],[143,10],[433,10],[971,10],[932,10],[878,10],[201,10],[314,10],[384,10],[362,10],[304,10],[506,10],[796,10],[314,10],[760,10],[272,10],[480,10],[820,10],[505,10],[665,10],[687,10],[234,10],[848,10],[241,10],[929,10],[446,10],[788,10],[525,10],[296,10],[661,10],[926,10],[987,10],[677,10],[857,10],[623,10],[144,10],[292,10],[764,10],[131,10],[834,10],[788,10],[146,10],[19,10],[215,10],[382,10],[677,10],[800,10],[946,10],[780,10],[211,10],[15,10],[330,10],[531,10],[241,10],[105,10],[878,10],[227,10],[416,10],[850,10],[353,10],[388,10],[449,10],[687,10],[837,10],[801,10],[815,10],[694,10],[3,10],[755,10],[955,10],[664,10],[303,10],[280,10],[945,10],[843,10],[681,10],[470,10],[54,10],[417,10],[863,10],[581,10],[413,10],[186,10],[258,10],[1002,10],[157,10],[992,10],[837,10],[331,10],[797,10],[660,10],[133,10],[276,10],[104,10],[548,10],[619,10],[776,10],[73,10],[442,10],[549,10],[744,10],[753,10],[921,10],[208,10],[247,10],[403,10],[277,10],[887,10],[30,10],[309,10],[105,10],[633,10],[234,10],[93,10],[587,10],[96,10],[666,10],[831,10],[584,10],[417,10],[912,10],[119,10],[407,10],[759,10],[971,10],[389,10],[250,10],[146,10],[562,10],[588,10],[211,10],[622,10],[930,10],[575,10],[860,10],[417,10],[884,10],[30,10],[720,10],[729,10],[42,10],[584,10],[286,10],[81,10],[889,10],[987,10],[683,10],[868,10],[345,10],[938,10],[964,10],[556,10],[343,10],[408,10],[453,10],[917,10],[137,10],[856,10],[171,10],[360,10],[841,10],[968,10],[38,10],[703,10],[767,10],[350,10],[971,10],[93,10],[970,10],[975,10],[46,10],[4,10],[430,10],[758,10],[263,10],[216,10],[839,10],[143,10],[118,10],[43,10],[313,10],[243,10],[259,10],[276,10],[371,10],[75,10],[587,10],[603,10],[339,10],[592,10],[735,10],[783,10],[281,10],[153,10],[953,10],[491,10],[849,10],[629,10],[128,10],[741,10],[248,10],[868,10],[56,10],[775,10],[414,10],[439,10],[194,10],[170,10],[138,10],[593,10],[558,10],[765,10],[705,10],[711,10],[143,10],[538,10],[456,10],[143,10],[958,10],[934,10],[527,10],[521,10],[783,10],[899,10],[188,10],[829,10],[800,10],[581,10],[858,10],[105,10],[553,10],[625,10],[984,10],[46,10],[387,10],[616,10],[80,10],[202,10],[734,10],[723,10],[255,10],[439,10],[98,10],[328,10],[719,10],[634,10],[389,10],[273,10],[206,10],[609,10],[805,10],[28,10],[339,10],[335,10],[973,10],[319,10],[803,10],[167,10],[175,10],[730,10],[232,10],[695,10],[244,10],[651,10],[686,10],[161,10],[283,10],[48,10],[998,10],[20,10],[759,10],[146,10],[73,10],[2,10],[941,10],[79,10],[532,10],[125,10],[980,10],[910,10],[368,10],[903,10],[310,10],[315,10],[257,10],[1013,10],[562,10],[321,10],[300,10],[2,10],[317,10],[530,10],[74,10],[539,10],[715,10],[515,10],[688,10],[369,10],[920,10],[430,10],[225,10],[296,10],[808,10],[950,10],[844,10],[103,10],[37,10],[743,10],[680,10],[996,10],[156,10],[688,10],[295,10],[834,10],[206,10],[765,10],[237,10],[714,10],[464,10],[785,10],[712,10],[150,10],[503,10],[485,10],[93,10],[820,10],[80,10],[150,10],[603,10],[424,10],[20,10],[523,10],[65,10],[464,10],[1000,10],[415,10],[204,10],[152,10],[706,10],[369,10],[216,10],[311,10],[813,10],[144,10],[207,10],[83,10],[903,10],[248,10],[587,10],[960,10],[21,10],[476,10],[704,10],[629,10],[688,10],[572,10],[689,10],[93,10],[164,10],[925,10],[90,10],[720,10],[856,10],[769,10],[647,10],[448,10],[117,10],[43,10],[130,10],[818,10],[506,10],[232,10],[404,10],[797,10],[158,10],[252,10],[37,10],[872,10],[4,10],[843,10],[815,10],[66,10],[456,10],[524,10],[864,10],[695,10],[387,10],[821,10],[270,10],[156,10],[870,10],[741,10],[168,10],[83,10],[287,10],[651,10],[751,10],[132,10],[548,10],[673,10],[111,10],[747,10],[175,10],[238,10],[750,10],[156,10],[159,10],[959,10],[792,10],[793,10],[1015,10],[383,10],[589,10],[122,10],[89,10],[1012,10],[144,10],[886,10],[911,10],[618,10],[1007,10],[407,10],[519,10],[455,10],[496,10],[886,10],[546,10],[70,10],[667,10],[909,10],[482,10],[113,10],[548,10],[561,10],[573,10],[750,10],[493,10],[515,10],[308,10],[941,10],[721,10],[634,10],[38,10],[282,10],[562,10],[775,10],[884,10],[372,10],[703,10],[861,10],[467,10],[539,10],[98,10],[486,10],[491,10],[504,10],[136,10],[283,10],[300,10],[639,10],[968,10],[397,10],[300,10],[200,10],[327,10],[928,10],[1,10],[367,10],[563,10],[350,10],[665,10],[29,10],[736,10],[312,10],[134,10],[846,10],[176,10],[382,10],[5,10],[959,10],[590,10],[516,10],[919,10],[726,10],[245,10],[296,10],[117,10],[689,10],[487,10],[871,10],[632,10],[261,10],[998,10],[194,10],[383,10],[314,10],[636,10],[515,10],[972,10],[61,10],[493,10],[700,10],[190,10],[828,10],[430,10],[404,10],[286,10],[654,10],[861,10],[100,10],[949,10],[641,10],[462,10],[609,10],[231,10],[748,10],[440,10],[666,10],[264,10],[614,10],[338,10],[934,10],[493,10],[234,10],[85,10],[254,10],[227,10],[167,10],[966,10],[879,10],[497,10],[454,10],[733,10],[268,10],[961,10],[552,10],[534,10],[650,10],[404,10],[810,10],[330,10],[858,10],[98,10],[52,10],[71,10],[990,10],[597,10],[420,10],[311,10],[89,10],[723,10],[691,10],[46,10],[769,10],[609,10],[448,10],[664,10],[718,10],[193,10],[332,10],[920,10],[790,10],[497,10],[726,10],[691,10],[667,10],[279,10],[820,10],[673,10],[32,10],[665,10],[687,10],[157,10],[793,10],[173,10],[315,10],[552,10],[592,10],[867,10],[153,10],[420,10],[412,10],[789,10],[476,10],[950,10],[565,10],[811,10],[338,10],[921,10],[417,10],[1023,10],[444,10],[15,10],[718,10],[845,10],[452,10],[999,10],[359,10],[835,10],[802,10],[493,10],[679,10],[201,10],[117,10],[368,10],[93,10],[671,10],[866,10],[659,10],[165,10],[622,10],[985,10],[370,10],[1007,10],[611,10],[402,10],[847,10],[255,10],[606,10],[702,10],[36,10],[299,10],[653,10],[118,10],[522,10],[119,10],[681,10],[508,10],[449,10],[336,10],[982,10],[746,10],[654,10],[66,10],[107,10],[720,10],[126,10],[267,10],[867,10],[906,10],[112,10],[643,10],[831,10],[395,10],[373,10],[668,10],[61,10],[453,10],[255,10],[670,10],[694,10],[13,10],[982,10],[742,10],[602,10],[865,10],[193,10],[1000,10],[624,10],[639,10],[523,10],[379,10],[159,10],[769,10],[476,10],[780,10],[450,10],[852,10],[678,10],[23,10],[936,10],[161,10],[750,10],[499,10],[399,10],[623,10],[232,10],[344,10],[896,10],[721,10],[290,10],[956,10],[844,10],[1002,10],[348,10],[201,10],[337,10],[28,10],[115,10],[972,10],[1005,10],[954,10],[934,10],[730,10],[123,10],[444,10],[912,10],[880,10],[604,10],[432,10],[269,10],[659,10],[93,10],[717,10],[368,10],[85,10],[918,10],[673,10],[470,10],[944,10],[763,10],[597,10],[240,10],[917,10],[82,10],[349,10],[894,10],[112,10],[373,10],[409,10],[981,10],[116,10],[985,10],[161,10],[753,10],[710,10],[834,10],[679,10],[4,10],[221,10],[788,10],[912,10],[32,10],[429,10],[400,10],[502,10],[919,10],[427,10],[874,10],[80,10],[27,10],[746,10],[871,10],[999,10],[797,10],[834,10],[20,10],[131,10],[244,10],[509,10],[194,10],[953,10],[63,10],[598,10],[764,10],[10,10],[619,10],[493,10],[684,10],[653,10],[713,10],[9,10],[423,10],[244,10],[353,10],[634,10],[200,10],[454,10],[344,10],[802,10],[725,10],[53,10],[202,10],[136,10],[801,10],[44,10],[409,10],[792,10],[572,10],[842,10],[753,10],[56,10],[883,10],[582,10],[251,10],[387,10],[23,10],[668,10],[520,10],[477,10],[813,10],[1008,10],[123,10],[135,10],[300,10],[740,10],[1022,10],[596,10],[406,10],[526,10],[343,10],[225,10],[833,10],[52,10],[20,10],[471,10],[851,10],[783,10],[677,10],[467,10],[150,10],[215,10],[1014,10],[15,10],[646,10],[350,10],[61,10],[707,10],[895,10],[728,10],[402,10],[924,10],[903,10],[1,10],[503,10],[480,10],[646,10],[806,10],[137,10],[405,10],[550,10],[257,10],[591,10],[245,10],[846,10],[685,10],[652,10],[887,10],[958,10],[230,10],[668,10],[267,10],[535,10],[152,10],[577,10],[1019,10],[599,10],[509,10],[97,10],[656,10],[433,10],[608,10],[234,10],[320,10],[582,10],[717,10],[407,10],[970,10],[17,10],[402,10],[797,10],[342,10],[217,10],[696,10],[1011,10],[439,10],[126,10],[259,10],[594,10],[668,10],[737,10],[119,10],[283,10],[143,10],[522,10],[77,10],[1004,10],[425,10],[827,10],[838,10],[978,10],[125,10],[753,10],[1018,10],[327,10],[335,10],[149,10],[558,10],[196,10],[341,10],[831,10],[404,10],[360,10],[534,10],[852,10],[805,10],[744,10],[78,10],[1004,10],[467,10],[126,10],[292,10],[180,10],[562,10],[554,10],[39,10],[773,10],[766,10],[962,10],[1005,10],[479,10],[421,10],[799,10],[164,10],[304,10],[596,10],[851,10],[345,10],[385,10],[735,10],[965,10],[80,10],[777,10],[149,10],[807,10],[573,10],[192,10],[157,10],[249,10],[517,10],[879,10],[875,10],[719,10],[274,10],[392,10],[316,10],[550,10],[100,10],[456,10],[887,10],[93,10],[410,10],[632,10],[60,10],[600,10],[538,10],[233,10],[106,10],[160,10],[401,10],[683,10],[996,10],[378,10],[343,10],[1009,10],[949,10],[71,10],[821,10],[642,10],[773,10],[435,10],[660,10],[803,10],[367,10],[396,10],[437,10],[760,10],[165,10],[225,10],[419,10],[544,10],[53,10],[564,10],[946,10],[569,10],[286,10],[324,10],[281,10],[517,10],[72,10],[198,10],[540,10],[90,10],[67,10],[955,10],[72,10],[891,10],[629,10],[212,10],[613,10],[287,10],[763,10],[288,10],[409,10],[353,10],[491,10],[225,10],[125,10],[186,10],[434,10],[839,10],[295,10],[125,10],[885,10],[305,10],[491,10],[818,10],[521,10],[60,10],[85,10],[582,10],[127,10],[570,10],[585,10],[370,10],[705,10],[808,10],[233,10],[405,10],[817,10],[517,10],[212,10],[168,10],[423,10],[315,10],[812,10],[519,10],[181,10],[164,10],[782,10],[749,10],[479,10],[447,10],[522,10],[384,10],[905,10],[824,10],[108,10],[199,10],[649,10],[65,10],[78,10],[467,10],[563,10],[459,10],[295,10],[65,10],[340,10],[193,10],[795,10],[131,10],[512,10],[879,10],[731,10],[140,10],[704,10],[850,10],[830,10],[89,10],[571,10],[123,10],[687,10],[991,10],[553,10],[199,10],[771,10],[259,10],[931,10],[915,10],[925,10],[962,10],[592,10],[36,10],[510,10],[289,10],[957,10],[299,10],[660,10],[204,10],[631,10],[435,10],[618,10],[780,10],[412,10],[613,10],[289,10],[690,10],[1023,10],[963,10],[221,10],[508,10],[33,10],[951,10],[431,10],[810,10],[587,10],[116,10],[572,10],[341,10],[339,10],[406,10],[13,10],[210,10],[634,10],[829,10],[245,10],[391,10],[382,10],[268,10],[562,10],[857,10],[747,10],[380,10],[882,10],[421,10],[403,10],[73,10],[698,10],[422,10],[816,10],[840,10],[745,10],[360,10],[84,10],[116,10],[236,10],[665,10],[465,10],[591,10],[358,10],[533,10],[769,10],[838,10],[928,10],[182,10],[321,10],[1007,10],[229,10],[209,10],[242,10],[75,10],[770,10],[470,10],[919,10],[158,10],[863,10],[569,10],[985,10],[911,10],[634,10],[13,10],[193,10],[89,10],[539,10],[768,10],[606,10],[467,10],[691,10],[920,10],[258,10],[228,10],[223,10],[362,10],[844,10],[63,10],[222,10],[720,10],[741,10],[176,10],[737,10],[416,10],[457,10],[185,10],[109,10],[65,10],[763,10],[329,10],[961,10],[919,10],[931,10],[355,10],[482,10],[112,10],[879,10],[304,10],[253,10],[236,10],[53,10],[46,10],[955,10],[247,10],[385,10],[93,10],[766,10],[150,10],[363,10],[13,10],[927,10],[389,10],[628,10],[26,10],[516,10],[176,10],[313,10],[770,10],[665,10],[345,10],[791,10],[513,10],[340,10],[144,10],[739,10],[227,10],[547,10],[147,10],[519,10],[367,10],[641,10],[435,10],[20,10],[874,10],[58,10],[734,10],[584,10],[675,10],[344,10],[914,10],[913,10],[948,10],[654,10],[841,10],[432,10],[258,10],[698,10],[98,10],[176,10],[727,10],[581,10],[1022,10],[692,10],[279,10],[722,10],[1006,10],[628,10],[994,10],[560,10],[536,10],[42,10],[968,10],[973,10],[952,10],[412,10],[368,10],[833,10],[834,10],[294,10],[327,10],[85,10],[477,10],[712,10],[853,10],[656,10],[797,10],[446,10],[995,10],[885,10],[201,10],[893,10],[640,10],[632,10],[580,10],[824,10],[305,10],[862,10],[317,10],[679,10],[778,10],[166,10],[51,10],[131,10],[553,10],[254,10],[549,10],[297,10],[121,10],[187,10],[265,10],[69,10],[762,10],[620,10],[831,10],[425,10],[260,10],[485,10],[856,10],[309,10],[660,10],[344,10],[61,10],[553,10],[493,10],[312,10],[508,10],[846,10],[68,10],[800,10],[904,10],[565,10],[804,10],[713,10],[977,10],[660,10],[487,10],[245,10],[191,10],[294,10],[515,10],[956,10],[634,10],[495,10],[216,10],[1,10],[271,10],[492,10],[197,10],[833,10],[742,10],[92,10],[620,10],[31,10],[109,10],[338,10],[6,10],[509,10],[371,10],[57,10],[94,10],[840,10],[1003,10],[593,10],[367,10],[49,10],[499,10],[260,10],[574,10],[22,10],[345,10],[309,10],[571,10],[16,10],[793,10],[406,10],[524,10],[297,10],[330,10],[53,10],[227,10],[859,10],[610,10],[175,10],[701,10],[982,10],[958,10],[738,10],[959,10],[441,10],[418,10],[924,10],[401,10],[672,10],[375,10],[612,10],[317,10],[229,10],[852,10],[914,10],[918,10],[818,10],[374,10],[735,10],[97,10],[134,10],[607,10],[240,10],[257,10],[653,10],[942,10],[324,10],[615,10],[227,10],[1013,10],[214,10],[420,10],[945,10],[957,10],[304,10],[835,10],[1019,10],[259,10],[885,10],[136,10],[280,10],[771,10],[452,10],[601,10],[364,10],[937,10],[816,10],[1020,10],[769,10],[492,10],[428,10],[311,10],[526,10],[958,10],[502,10],[660,10],[728,10],[163,10],[550,10],[597,10],[48,10],[674,10],[122,10],[373,10],[67,10],[137,10],[61,10],[387,10],[59,10],[250,10],[152,10],[744,10],[962,10],[756,10],[937,10],[634,10],[796,10],[409,10],[371,10],[797,10],[510,10],[974,10],[57,10],[144,10],[102,10],[656,10],[1004,10],[562,10],[321,10],[284,10],[181,10],[123,10],[603,10],[900,10],[422,10],[221,10],[958,10],[525,10],[874,10],[898,10],[501,10],[49,10],[81,10],[16,10],[781,10],[904,10],[807,10],[388,10],[601,10],[712,10],[553,10],[82,10],[588,10],[1011,10],[226,10],[286,10],[803,10],[145,10],[606,10],[395,10],[222,10],[168,10],[53,10],[843,10],[74,10],[291,10],[768,10],[687,10],[887,10],[399,10],[4,10],[272,10],[374,10],[4,10],[937,10],[726,10],[844,10],[87,10],[218,10],[741,10],[694,10],[267,10],[584,10],[927,10],[461,10],[879,10],[537,10],[485,10],[291,10],[203,10],[11,10],[358,10],[513,10],[827,10],[234,10],[668,10],[220,10],[979,10],[501,10],[205,10],[998,10],[623,10],[262,10],[630,10],[967,10],[557,10],[758,10],[21,10],[647,10],[742,10],[920,10],[36,10],[589,10],[483,10],[353,10],[897,10],[939,10],[840,10],[528,10],[397,10],[976,10],[10,10],[529,10],[473,10],[711,10],[354,10],[270,10],[945,10],[464,10],[848,10],[621,10],[781,10],[912,10],[521,10],[486,10],[737,10],[89,10],[579,10],[527,10],[87,10],[874,10],[335,10],[572,10],[181,10],[620,10],[524,10],[495,10],[596,10],[778,10],[989,10],[563,10],[102,10],[176,10],[481,10],[337,10],[385,10],[1008,10],[213,10],[135,10],[813,10],[44,10],[335,10],[509,10],[689,10],[611,10],[651,10],[736,10],[946,10],[604,10],[160,10],[707,10],[982,10],[392,10],[119,10],[240,10],[1001,10],[345,10],[614,10],[140,10],[826,10],[33,10],[381,10],[480,10],[271,10],[711,10],[487,10],[210,10],[831,10],[731,10],[549,10],[212,10],[113,10],[31,10],[730,10],[799,10],[526,10],[41,10],[115,10],[1004,10],[69,10],[435,10],[697,10],[727,10],[878,10],[938,10],[137,10],[943,10],[381,10],[291,10],[721,10],[912,10],[484,10],[813,10],[139,10],[595,10],[257,10],[527,10],[671,10],[552,10],[445,10],[797,10],[588,10],[500,10],[475,10],[951,10],[388,10],[417,10],[806,10],[865,10],[69,10],[882,10],[718,10],[989,10],[451,10],[70,10],[1011,10],[300,10],[509,10],[586,10],[430,10],[639,10],[923,10],[75,10],[697,10],[830,10],[101,10],[817,10],[699,10],[377,10],[751,10],[675,10],[752,10],[253,10],[224,10],[944,10],[292,10],[898,10],[190,10],[42,10],[858,10],[346,10],[432,10],[438,10],[518,10],[154,10],[886,10],[596,10],[179,10],[890,10],[579,10],[912,10],[410,10],[568,10],[956,10],[850,10],[650,10],[240,10],[750,10],[590,10],[700,10],[492,10],[738,10],[532,10],[465,10],[76,10],[544,10],[708,10],[820,10],[979,10],[319,10],[929,10],[977,10],[198,10],[908,10],[534,10],[70,10],[21,10],[704,10],[738,10],[683,10],[200,10],[866,10],[121,10],[423,10],[921,10],[722,10],[276,10],[911,10],[426,10],[737,10],[481,10],[361,10],[954,10],[708,10],[387,10],[947,10],[155,10],[479,10],[585,10],[436,10],[793,10],[1,10],[781,10],[296,10],[169,10],[490,10],[889,10],[43,10],[262,10],[984,10],[586,10],[763,10],[648,10],[468,10],[772,10],[898,10],[913,10],[884,10],[588,10],[391,10],[120,10],[946,10],[279,10],[996,10],[611,10],[39,10],[360,10],[499,10],[190,10],[955,10],[741,10],[713,10],[892,10],[186,10],[311,10],[469,10],[500,10],[312,10],[987,10],[289,10],[788,10],[735,10],[821,10],[481,10],[1005,10],[860,10],[340,10],[224,10],[722,10],[986,10],[318,10],[565,10],[620,10],[729,10],[754,10],[681,10],[1003,10],[371,10],[556,10],[109,10],[481,10],[767,10],[343,10],[993,10],[132,10],[684,10],[20,10],[172,10],[617,10],[227,10],[529,10],[848,10],[260,10],[765,10],[789,10],[683,10],[810,10],[394,10],[454,10],[890,10],[575,10],[424,10],[196,10],[966,10],[468,10],[806,10],[760,10],[580,10],[282,10],[354,10],[285,10],[202,10],[658,10],[974,10],[167,10],[555,10],[267,10],[169,10],[1018,10],[226,10],[77,10],[999,10],[628,10],[686,10],[759,10],[994,10],[595,10],[960,10],[868,10],[608,10],[149,10],[949,10],[433,10],[998,10],[831,10],[776,10],[597,10],[668,10],[217,10],[534,10],[260,10],[118,10],[281,10],[869,10],[491,10],[632,10],[980,10],[576,10],[824,10],[46,10],[316,10],[947,10],[244,10],[403,10],[332,10],[277,10],[932,10],[990,10],[1022,10],[809,10],[641,10],[554,10],[563,10],[964,10],[695,10],[878,10],[84,10],[855,10],[620,10],[961,10],[561,10],[243,10],[329,10],[153,10],[10,10],[26,10],[841,10],[875,10],[459,10],[802,10],[514,10],[846,10],[99,10],[22,10],[297,10],[140,10],[94,10],[923,10],[837,10],[779,10],[307,10],[1002,10],[45,10],[727,10],[939,10],[489,10],[887,10],[366,10],[675,10],[873,10],[19,10],[843,10],[245,10],[48,10],[615,10],[826,10],[647,10],[662,10],[293,10],[758,10],[9,10],[760,10],[132,10],[42,10],[967,10],[692,10],[358,10],[25,10],[36,10],[882,10],[143,10],[968,10],[827,10],[16,10],[272,10],[768,10],[676,10],[918,10],[616,10],[68,10],[480,10],[368,10],[826,10],[45,10],[500,10],[134,10],[58,10],[463,10],[587,10],[139,10],[528,10],[540,10],[649,10],[940,10],[537,10],[421,10],[551,10],[606,10],[118,10],[209,10],[203,10],[573,10],[716,10],[239,10],[261,10],[343,10],[148,10],[486,10],[374,10],[895,10],[746,10],[548,10],[853,10],[68,10],[911,10],[470,10],[538,10],[392,10],[789,10],[23,10],[322,10],[607,10],[547,10],[94,10],[222,10],[949,10],[444,10],[254,10],[778,10],[471,10],[26,10],[810,10],[216,10],[743,10],[537,10],[799,10],[850,10],[83,10],[570,10],[93,10],[525,10],[516,10],[75,10],[241,10],[752,10],[140,10],[391,10],[327,10],[997,10],[940,10],[380,10],[183,10],[360,10],[152,10],[178,10],[983,10],[259,10],[632,10],[487,10],[611,10],[909,10],[651,10],[871,10],[491,10],[968,10],[622,10],[973,10],[113,10],[192,10],[261,10],[571,10],[598,10],[277,10],[824,10],[124,10],[658,10],[279,10],[404,10],[3,10],[553,10],[444,10],[410,10],[996,10],[263,10],[534,10],[824,10],[738,10],[313,10],[419,10],[714,10],[870,10],[51,10],[195,10],[926,10],[793,10],[791,10],[159,10],[219,10],[798,10],[150,10],[260,10],[862,10],[379,10],[402,10],[362,10],[943,10],[495,10],[30,10],[718,10],[315,10],[1009,10],[907,10],[364,10],[160,10],[224,10],[576,10],[297,10],[468,10],[932,10],[68,10],[779,10],[1004,10],[128,10],[1006,10],[927,10],[629,10],[6,10],[989,10],[987,10],[850,10],[822,10],[226,10],[41,10],[141,10],[409,10],[937,10],[89,10],[647,10],[448,10],[273,10],[454,10],[160,10],[881,10],[694,10],[244,10],[810,10],[170,10],[58,10],[271,10],[398,10],[436,10],[815,10],[936,10],[405,10],[107,10],[133,10],[557,10],[933,10],[597,10],[850,10],[463,10],[462,10],[959,10],[545,10],[219,10],[440,10],[286,10],[769,10],[765,10],[513,10],[147,10],[914,10],[604,10],[715,10],[2,10],[807,10],[708,10],[422,10],[784,10],[516,10],[425,10],[927,10],[917,10],[854,10],[931,10],[208,10],[668,10],[752,10],[296,10],[657,10],[488,10],[250,10],[236,10],[21,10],[4,10],[649,10],[106,10],[844,10],[1001,10],[732,10],[46,10],[175,10],[1,10],[103,10],[539,10],[311,10],[136,10],[733,10],[851,10],[527,10],[217,10],[695,10],[905,10],[180,10],[109,10],[21,10],[146,10],[804,10],[263,10],[785,10],[587,10],[975,10],[147,10],[173,10],[303,10],[931,10],[864,10],[482,10],[399,10],[569,10],[716,10],[242,10],[609,10],[730,10],[196,10],[899,10],[895,10],[103,10],[966,10],[944,10],[978,10],[610,10],[725,10],[664,10],[832,10],[472,10],[26,10],[299,10],[829,10],[985,10],[634,10],[799,10],[206,10],[680,10],[791,10],[135,10],[147,10],[360,10],[264,10],[818,10],[386,10],[670,10],[122,10],[215,10],[916,10],[534,10],[651,10],[885,10],[96,10],[632,10],[902,10],[874,10],[727,10],[947,10],[903,10],[469,10],[845,10],[351,10],[839,10],[723,10],[411,10],[678,10],[521,10],[68,10],[214,10],[480,10],[24,10],[856,10],[348,10],[121,10],[704,10],[160,10],[865,10],[868,10],[377,10],[423,10],[688,10],[260,10],[791,10],[28,10],[811,10],[80,10],[964,10],[1017,10],[391,10],[284,10],[822,10],[48,10],[437,10],[431,10],[87,10],[282,10],[203,10],[303,10],[974,10],[41,10],[479,10],[105,10],[215,10],[533,10],[104,10],[536,10],[79,10],[854,10],[888,10],[946,10],[372,10],[853,10],[727,10],[1003,10],[918,10],[923,10],[755,10],[558,10],[738,10],[167,10],[1004,10],[648,10],[840,10],[711,10],[926,10],[852,10],[458,10],[927,10],[832,10],[102,10],[82,10],[79,10],[22,10],[720,10],[50,10],[89,10],[679,10],[834,10],[1010,10],[809,10],[284,10],[106,10],[782,10],[402,10],[398,10],[612,10],[112,10],[413,10],[803,10],[512,10],[987,10],[845,10],[782,10],[452,10],[363,10],[713,10],[356,10],[948,10],[519,10],[756,10],[47,10],[449,10],[820,10],[288,10],[959,10],[951,10],[302,10],[113,10],[937,10],[447,10],[673,10],[880,10],[939,10],[906,10],[714,10],[812,10],[853,10],[24,10],[658,10],[799,10],[66,10],[686,10],[40,10],[419,10],[585,10],[372,10],[242,10],[273,10],[873,10],[424,10],[459,10],[994,10],[212,10],[763,10],[80,10],[241,10],[280,10],[494,10],[140,10],[587,10],[551,10],[571,10],[152,10],[705,10],[605,10],[330,10],[433,10],[773,10],[346,10],[656,10],[728,10],[173,10],[180,10],[874,10],[168,10],[457,10],[989,10],[815,10],[269,10],[549,10],[433,10],[859,10],[645,10],[928,10],[603,10],[245,10],[946,10],[51,10],[938,10],[632,10],[422,10],[745,10],[575,10],[993,10],[86,10],[946,10],[150,10],[910,10],[989,10],[2,10],[309,10],[538,10],[323,10],[272,10],[595,10],[919,10],[364,10],[621,10],[869,10],[133,10],[585,10],[484,10],[916,10],[383,10],[779,10],[67,10],[866,10],[365,10],[548,10],[571,10],[435,10],[872,10],[164,10],[829,10],[60,10],[288,10],[136,10],[113,10],[689,10],[527,10],[140,10],[904,10],[301,10],[339,10],[789,10],[513,10],[626,10],[493,10],[435,10],[937,10],[90,10],[242,10],[180,10],[383,10],[951,10],[254,10],[245,10],[755,10],[158,10],[42,10],[451,10],[722,10],[382,10],[744,10],[425,10],[39,10],[698,10],[866,10],[809,10],[57,10],[23,10],[968,10],[900,10],[449,10],[719,10],[109,10],[777,10],[963,10],[267,10],[142,10],[845,10],[470,10],[340,10],[701,10],[227,10],[305,10],[273,10],[54,10],[863,10],[113,10],[587,10],[191,10],[930,10],[821,10],[654,10],[231,10],[186,10],[64,10],[109,10],[518,10],[112,10],[584,10],[254,10],[579,10],[422,10],[900,10],[845,10],[41,10],[435,10],[351,10],[122,10],[608,10],[666,10],[959,10],[803,10],[863,10],[574,10],[760,10],[724,10],[737,10],[702,10],[575,10],[1015,10],[982,10],[342,10],[418,10],[1015,10],[734,10],[781,10],[662,10],[816,10],[845,10],[341,10],[296,10],[667,10],[914,10],[98,10],[1020,10],[803,10],[1015,10],[715,10],[390,10],[409,10],[743,10],[536,10],[682,10],[381,10],[851,10],[15,10],[420,10],[115,10],[310,10],[790,10],[64,10],[969,10],[613,10],[313,10],[614,10],[704,10],[969,10],[611,10],[41,10],[33,10],[312,10],[22,10],[158,10],[456,10],[456,10],[121,10],[380,10],[760,10],[495,10],[685,10],[462,10],[365,10],[942,10],[824,10],[316,10],[496,10],[302,10],[160,10],[137,10],[1007,10],[593,10],[158,10],[104,10],[772,10],[860,10],[458,10],[431,10],[520,10],[602,10],[779,10],[115,10],[220,10],[960,10],[85,10],[202,10],[314,10],[602,10],[910,10],[751,10],[890,10],[691,10],[970,10],[822,10],[564,10],[625,10],[189,10],[851,10],[815,10],[656,10],[635,10],[346,10],[416,10],[682,10],[35,10],[598,10],[371,10],[964,10],[746,10],[600,10],[396,10],[689,10],[730,10],[376,10],[744,10],[958,10],[457,10],[881,10],[374,10],[331,10],[719,10],[513,10],[242,10],[938,10],[630,10],[97,10],[315,10],[895,10],[596,10],[486,10],[483,10],[467,10],[808,10],[286,10],[309,10],[922,10],[504,10],[296,10],[593,10],[372,10],[114,10],[245,10],[150,10],[616,10],[766,10],[25,10],[128,10],[599,10],[875,10],[219,10],[1017,10],[886,10],[192,10],[307,10],[995,10],[611,10],[318,10],[407,10],[734,10],[500,10],[253,10],[317,10],[654,10],[895,10],[609,10],[58,10],[23,10],[822,10],[880,10],[665,10],[429,10],[931,10],[98,10],[830,10],[464,10],[27,10],[274,10],[248,10],[443,10],[569,10],[737,10],[769,10],[729,10],[911,10],[913,10],[278,10],[116,10],[279,10],[836,10],[561,10],[625,10],[363,10],[929,10],[386,10],[155,10],[337,10],[285,10],[899,10],[177,10],[9,10],[413,10],[153,10],[761,10],[901,10],[796,10],[896,10],[257,10],[514,10],[634,10],[234,10],[352,10],[816,10],[963,10],[740,10],[195,10],[348,10],[948,10],[4,10],[748,10],[506,10],[397,10],[679,10],[286,10],[369,10],[445,10],[523,10],[352,10],[729,10],[887,10],[602,10],[773,10],[447,10],[629,10],[942,10],[539,10],[215,10],[250,10],[272,10],[85,10],[991,10],[21,10],[196,10],[538,10],[410,10],[356,10],[868,10],[940,10],[771,10],[276,10],[784,10],[72,10],[804,10],[946,10],[88,10],[178,10],[515,10],[860,10],[170,10],[552,10],[602,10],[107,10],[464,10],[580,10],[446,10],[678,10],[524,10],[21,10],[322,10],[720,10],[401,10],[202,10],[592,10],[363,10],[553,10],[296,10],[187,10],[631,10],[968,10],[124,10],[653,10],[450,10],[696,10],[1021,10],[566,10],[961,10],[709,10],[766,10],[406,10],[687,10],[1006,10],[263,10],[811,10],[665,10],[978,10],[465,10],[643,10],[609,10],[950,10],[547,10],[1019,10],[776,10],[739,10],[797,10],[40,10],[40,10],[229,10],[880,10],[318,10],[837,10],[725,10],[184,10],[427,10],[1006,10],[136,10],[923,10],[932,10],[194,10],[696,10],[554,10],[230,10],[887,10],[155,10],[846,10],[539,10],[170,10],[188,10],[421,10],[69,10],[494,10],[415,10],[624,10],[52,10],[459,10],[466,10],[1014,10],[484,10],[859,10],[256,10],[638,10],[852,10],[86,10],[97,10],[638,10],[281,10],[247,10],[700,10],[696,10],[519,10],[433,10],[273,10],[971,10],[844,10],[365,10],[162,10],[234,10],[204,10],[936,10],[468,10],[250,10],[629,10],[940,10],[296,10],[797,10],[723,10],[618,10],[219,10],[88,10],[701,10],[620,10],[601,10],[48,10],[142,10],[392,10],[471,10],[226,10],[440,10],[878,10],[657,10],[179,10],[761,10],[799,10],[927,10],[588,10],[404,10],[994,10],[865,10],[937,10],[483,10],[691,10],[92,10],[225,10],[491,10],[577,10],[774,10],[930,10],[771,10],[28,10],[1006,10],[753,10],[978,10],[655,10],[443,10],[950,10],[781,10],[264,10],[292,10],[1006,10],[266,10],[641,10],[736,10],[592,10],[893,10],[315,10],[37,10],[30,10],[86,10],[374,10],[307,10],[781,10],[862,10],[536,10],[677,10],[699,10],[556,10],[925,10],[70,10],[296,10],[790,10],[238,10],[396,10],[993,10],[413,10],[487,10],[743,10],[870,10],[660,10],[833,10],[828,10],[493,10],[185,10],[621,10],[897,10],[534,10],[27,10],[64,10],[975,10],[563,10],[627,10],[45,10],[419,10],[288,10],[17,10],[881,10],[144,10],[585,10],[789,10],[844,10],[579,10],[687,10],[836,10],[1003,10],[197,10],[79,10],[629,10],[546,10],[974,10],[790,10],[840,10],[337,10],[477,10],[628,10],[39,10],[716,10],[541,10],[926,10],[928,10],[938,10],[881,10],[435,10],[709,10],[676,10],[665,10],[139,10],[790,10],[73,10],[891,10],[5,10],[847,10],[60,10],[890,10],[168,10],[290,10],[715,10],[27,10],[571,10],[891,10],[932,10],[186,10],[647,10],[595,10],[985,10],[713,10],[772,10],[1005,10],[815,10],[576,10],[70,10],[16,10],[654,10],[749,10],[372,10],[197,10],[288,10],[11,10],[440,10],[926,10],[526,10],[338,10],[600,10],[113,10],[528,10],[643,10],[904,10],[502,10],[105,10],[419,10],[212,10],[758,10],[406,10],[665,10],[414,10],[879,10],[611,10],[151,10],[848,10],[370,10],[90,10],[426,10],[298,10],[687,10],[461,10],[800,10],[944,10],[146,10],[519,10],[378,10],[312,10],[340,10],[45,10],[120,10],[608,10],[741,10],[1014,10],[575,10],[932,10],[401,10],[73,10],[25,10],[496,10],[486,10],[18,10],[863,10],[566,10],[496,10],[188,10],[655,10],[273,10],[724,10],[16,10],[683,10],[890,10],[912,10],[331,10],[525,10],[206,10],[906,10],[398,10],[726,10],[753,10],[281,10],[184,10],[160,10],[932,10],[830,10],[534,10],[380,10],[144,10],[730,10],[799,10],[864,10],[277,10],[865,10],[569,10],[45,10],[974,10],[567,10],[424,10],[474,10],[125,10],[184,10],[769,10],[208,10],[520,10],[1013,10],[895,10],[381,10],[892,10],[739,10],[424,10],[135,10],[156,10],[219,10],[888,10],[184,10],[159,10],[140,10],[771,10],[789,10],[790,10],[101,10],[128,10],[185,10],[689,10],[717,10],[772,10],[133,10],[106,10],[907,10],[87,10],[306,10],[143,10],[285,10],[165,10],[586,10],[895,10],[116,10],[71,10],[76,10],[662,10],[373,10],[888,10],[804,10],[790,10],[345,10],[819,10],[902,10],[289,10],[27,10],[98,10],[926,10],[15,10],[824,10],[656,10],[978,10],[167,10],[531,10],[398,10],[277,10],[557,10],[397,10],[662,10],[941,10],[236,10],[834,10],[834,10],[702,10],[547,10],[423,10],[139,10],[103,10],[686,10],[935,10],[60,10],[576,10],[250,10],[726,10],[972,10],[539,10],[235,10],[429,10],[476,10],[397,10],[19,10],[628,10],[675,10],[229,10],[252,10],[839,10],[128,10],[824,10],[151,10],[756,10],[108,10],[722,10],[151,10],[264,10],[156,10],[416,10],[416,10],[803,10],[175,10],[638,10],[761,10],[465,10],[88,10],[259,10],[965,10],[903,10],[282,10],[170,10],[437,10],[26,10],[173,10],[603,10],[429,10],[1005,10],[694,10],[998,10],[573,10],[427,10],[925,10],[957,10],[400,10],[795,10],[332,10],[34,10],[75,10],[809,10],[750,10],[311,10],[869,10],[877,10],[429,10],[37,10],[338,10],[975,10],[849,10],[782,10],[333,10],[384,10],[770,10],[189,10],[754,10],[557,10],[893,10],[584,10],[979,10],[210,10],[290,10],[996,10],[324,10],[901,10],[534,10],[885,10],[545,10],[463,10],[723,10],[882,10],[576,10],[103,10],[147,10],[945,10],[254,10],[681,10],[49,10],[930,10],[224,10],[919,10],[299,10],[738,10],[585,10],[777,10],[957,10],[253,10],[610,10],[756,10],[511,10],[428,10],[546,10],[101,10],[670,10],[932,10],[763,10],[792,10],[600,10],[770,10],[387,10],[1016,10],[330,10],[700,10],[257,10],[373,10],[852,10],[527,10],[562,10],[677,10],[518,10],[328,10],[343,10],[1006,10],[134,10],[121,10],[835,10],[511,10],[299,10],[160,10],[15,10],[680,10],[116,10],[765,10],[421,10],[216,10],[66,10],[851,10],[1010,10],[329,10],[349,10],[1021,10],[954,10],[350,10],[143,10],[209,10],[397,10],[835,10],[616,10],[329,10],[77,10],[1010,10],[26,10],[422,10],[28,10],[628,10],[856,10],[630,10],[458,10],[901,10],[991,10],[774,10],[350,10],[959,10],[887,10],[272,10],[768,10],[803,10],[273,10],[771,10],[940,10],[486,10],[469,10],[298,10],[292,10],[1023,10],[958,10],[244,10],[66,10],[531,10],[390,10],[924,10],[52,10],[333,10],[898,10],[89,10],[455,10],[525,10],[826,10],[782,10],[789,10],[190,10],[551,10],[549,10],[126,10],[760,10],[12,10],[693,10],[529,10],[379,10],[551,10],[994,10],[729,10],[510,10],[87,10],[434,10],[970,10],[973,10],[837,10],[56,10],[176,10],[564,10],[520,10],[408,10],[232,10],[300,10],[39,10],[960,10],[709,10],[427,10],[38,10],[182,10],[742,10],[909,10],[618,10],[440,10],[967,10],[928,10],[365,10],[142,10],[387,10],[928,10],[474,10],[104,10],[716,10],[401,10],[703,10],[676,10],[238,10],[247,10],[584,10],[171,10],[600,10],[1011,10],[1015,10],[649,10],[472,10],[69,10],[881,10],[226,10],[267,10],[495,10],[330,10],[714,10],[866,10],[366,10],[421,10],[602,10],[901,10],[739,10],[923,10],[241,10],[207,10],[135,10],[893,10],[963,10],[142,10],[32,10],[252,10],[333,10],[466,10],[662,10],[159,10],[559,10],[399,10],[301,10],[268,10],[957,10],[634,10],[796,10],[1019,10],[178,10],[229,10],[133,10],[813,10],[949,10],[425,10],[855,10],[69,10],[517,10],[763,10],[24,10],[244,10],[127,10],[149,10],[386,10],[561,10],[749,10],[347,10],[655,10],[818,10],[399,10],[771,10],[322,10],[496,10],[329,10],[479,10],[949,10],[211,10],[1015,10],[205,10],[213,10],[285,10],[776,10],[191,10],[810,10],[252,10],[57,10],[325,10],[197,10],[607,10],[757,10],[258,10],[286,10],[548,10],[919,10],[704,10],[461,10],[756,10],[619,10],[164,10],[795,10],[377,10],[70,10],[229,10],[635,10],[57,10],[913,10],[94,10],[339,10],[940,10],[438,10],[954,10],[309,10],[483,10],[87,10],[63,10],[814,10],[645,10],[948,10],[750,10],[1,10],[705,10],[48,10],[336,10],[243,10],[730,10],[647,10],[996,10],[751,10],[927,10],[532,10],[757,10],[95,10],[402,10],[350,10],[256,10],[492,10],[289,10],[477,10],[827,10],[317,10],[278,10],[538,10],[902,10],[465,10],[481,10],[60,10],[16,10],[177,10],[24,10],[796,10],[288,10],[620,10],[258,10],[584,10],[829,10],[585,10],[142,10],[907,10],[140,10],[151,10],[481,10],[194,10],[951,10],[339,10],[663,10],[456,10],[1015,10],[590,10],[609,10],[455,10],[743,10],[391,10],[522,10],[668,10],[642,10],[66,10],[52,10],[682,10],[625,10],[246,10],[576,10],[861,10],[945,10],[136,10],[275,10],[425,10],[544,10],[690,10],[123,10],[648,10],[467,10],[48,10],[813,10],[825,10],[265,10],[560,10],[55,10],[643,10],[437,10],[198,10],[188,10],[483,10],[813,10],[596,10],[813,10],[274,10],[42,10],[586,10],[684,10],[947,10],[168,10],[433,10],[803,10],[150,10],[988,10],[344,10],[545,10],[962,10],[47,10],[214,10],[529,10],[442,10],[864,10],[298,10],[405,10],[8,10],[295,10],[767,10],[427,10],[658,10],[514,10],[40,10],[267,10],[768,10],[470,10],[946,10],[476,10],[751,10],[107,10],[968,10],[341,10],[430,10],[344,10],[357,10],[143,10],[633,10],[803,10],[349,10],[217,10],[214,10],[27,10],[17,10],[111,10],[970,10],[537,10],[138,10],[154,10],[894,10],[311,10],[402,10],[916,10],[1013,10],[718,10],[804,10],[670,10],[592,10],[213,10],[438,10],[965,10],[803,10],[790,10],[198,10],[688,10],[416,10],[266,10],[940,10],[178,10],[950,10],[131,10],[153,10],[109,10],[454,10],[443,10],[242,10],[492,10],[593,10],[78,10],[387,10],[281,10],[326,10],[888,10],[581,10],[885,10],[295,10],[27,10],[206,10],[339,10],[643,10],[871,10],[906,10],[669,10],[369,10],[733,10],[661,10],[984,10],[607,10],[978,10],[1005,10],[919,10],[927,10],[272,10],[300,10],[583,10],[227,10],[716,10],[325,10],[543,10],[491,10],[339,10],[173,10],[459,10],[464,10],[569,10],[761,10],[475,10],[611,10],[695,10],[576,10],[36,10],[516,10],[730,10],[865,10],[893,10],[220,10],[997,10],[316,10],[86,10],[838,10],[280,10],[852,10],[211,10],[852,10],[977,10],[909,10],[568,10],[332,10],[416,10],[112,10],[825,10],[838,10],[610,10],[308,10],[751,10],[580,10],[832,10],[816,10],[75,10],[28,10],[234,10],[629,10],[705,10],[587,10],[950,10],[43,10],[153,10],[882,10],[763,10],[375,10],[99,10],[647,10],[750,10],[467,10],[643,10],[722,10],[56,10],[76,10],[565,10],[902,10],[427,10],[914,10],[695,10],[243,10],[234,10],[511,10],[688,10],[782,10],[417,10],[730,10],[63,10],[475,10],[789,10],[544,10],[664,10],[525,10],[615,10],[557,10],[181,10],[614,10],[991,10],[147,10],[690,10],[1005,10],[913,10],[346,10],[439,10],[235,10],[334,10],[58,10],[427,10],[501,10],[575,10],[697,10],[630,10],[748,10],[93,10],[1007,10],[656,10],[512,10],[677,10],[868,10],[396,10],[720,10],[32,10],[93,10],[746,10],[712,10],[520,10],[310,10],[736,10],[958,10],[187,10],[297,10],[86,10],[695,10],[184,10],[643,10],[720,10],[316,10],[915,10],[89,10],[430,10],[836,10],[824,10],[704,10],[333,10],[1004,10],[951,10],[741,10],[632,10],[760,10],[704,10],[336,10],[416,10],[49,10],[484,10],[192,10],[57,10],[515,10],[852,10],[237,10],[657,10],[529,10],[1012,10],[598,10],[720,10],[158,10],[891,10],[844,10],[862,10],[206,10],[380,10],[865,10],[839,10],[925,10],[210,10],[654,10],[337,10],[706,10],[634,10],[860,10],[508,10],[78,10],[243,10],[230,10],[135,10],[662,10],[439,10],[257,10],[959,10],[328,10],[864,10],[393,10],[133,10],[649,10],[565,10],[671,10],[20,10],[312,10],[80,10],[30,10],[272,10],[672,10],[334,10],[123,10],[357,10],[942,10],[393,10],[320,10],[194,10],[317,10],[622,10],[34,10],[559,10],[252,10],[906,10],[354,10],[664,10],[240,10],[977,10],[899,10],[997,10],[284,10],[935,10],[840,10],[819,10],[960,10],[364,10],[479,10],[687,10],[793,10],[329,10],[542,10],[218,10],[532,10],[50,10],[303,10],[20,10],[94,10],[130,10],[535,10],[48,10],[55,10],[938,10],[287,10],[853,10],[612,10],[699,10],[441,10],[856,10],[786,10],[915,10],[589,10],[369,10],[68,10],[523,10],[743,10],[34,10],[948,10],[829,10],[1014,10],[40,10],[433,10],[190,10],[170,10],[268,10],[136,10],[262,10],[196,10],[840,10],[951,10],[348,10],[524,10],[291,10],[416,10],[889,10],[1004,10],[834,10],[37,10],[442,10],[619,10],[855,10],[674,10],[838,10],[749,10],[618,10],[39,10],[86,10],[626,10],[866,10],[540,10],[204,10],[463,10],[540,10],[966,10],[932,10],[344,10],[486,10],[994,10],[82,10],[169,10],[792,10],[454,10],[86,10],[440,10],[268,10],[787,10],[827,10],[814,10],[184,10],[459,10],[947,10],[804,10],[818,10],[879,10],[756,10],[571,10],[736,10],[643,10],[736,10],[780,10],[326,10],[451,10],[467,10],[264,10],[492,10],[380,10],[537,10],[941,10],[881,10],[20,10],[408,10],[200,10],[220,10],[592,10],[269,10],[561,10],[677,10],[814,10],[615,10],[735,10],[174,10],[734,10],[935,10],[873,10],[425,10],[412,10],[159,10],[490,10],[476,10],[254,10],[680,10],[1016,10],[961,10],[222,10],[208,10],[71,10],[320,10],[583,10],[451,10],[992,10],[899,10],[477,10],[64,10],[476,10],[906,10],[367,10],[341,10],[63,10],[944,10],[332,10],[287,10],[508,10],[738,10],[42,10],[229,10],[228,10],[550,10],[954,10],[647,10],[422,10],[699,10],[707,10],[415,10],[846,10],[274,10],[57,10],[336,10],[166,10],[785,10],[489,10],[601,10],[373,10],[932,10],[13,10],[475,10],[156,10],[591,10],[317,10],[784,10],[89,10],[226,10],[525,10],[834,10],[588,10],[951,10],[961,10],[596,10],[504,10],[308,10],[996,10],[193,10],[41,10],[916,10],[1009,10],[392,10],[515,10],[81,10],[46,10],[204,10],[926,10],[678,10],[91,10],[827,10],[777,10],[701,10],[905,10],[315,10],[874,10],[636,10],[179,10],[470,10],[218,10],[131,10],[282,10],[591,10],[752,10],[266,10],[269,10],[666,10],[970,10],[783,10],[252,10],[734,10],[133,10],[121,10],[139,10],[825,10],[346,10],[251,10],[758,10],[966,10],[743,10],[656,10],[377,10],[217,10],[238,10],[575,10],[342,10],[1017,10],[791,10],[277,10],[718,10],[369,10],[230,10],[918,10],[98,10],[432,10],[322,10],[868,10],[299,10],[785,10],[899,10],[539,10],[681,10],[13,10],[101,10],[570,10],[457,10],[216,10],[602,10],[231,10],[793,10],[3,10],[941,10],[61,10],[369,10],[415,10],[13,10],[539,10],[380,10],[929,10],[945,10],[759,10],[529,10],[52,10],[747,10],[631,10],[214,10],[125,10],[786,10],[233,10],[355,10],[920,10],[331,10],[240,10],[528,10],[679,10],[807,10],[313,10],[369,10],[1012,10],[817,10],[607,10],[12,10],[726,10],[233,10],[628,10],[456,10],[213,10],[201,10],[688,10],[41,10],[749,10],[359,10],[476,10],[688,10],[724,10],[925,10],[42,10],[138,10],[51,10],[273,10],[660,10],[629,10],[1007,10],[403,10],[131,10],[640,10],[899,10],[158,10],[654,10],[368,10],[248,10],[351,10],[1020,10],[29,10],[102,10],[65,10],[962,10],[427,10],[752,10],[990,10],[82,10],[657,10],[944,10],[697,10],[802,10],[600,10],[996,10],[513,10],[371,10],[684,10],[706,10],[659,10],[768,10],[255,10],[962,10],[319,10],[429,10],[867,10],[175,10],[475,10],[266,10],[215,10],[720,10],[580,10],[140,10],[954,10],[127,10],[450,10],[654,10],[301,10],[811,10],[314,10],[447,10],[916,10],[479,10],[917,10],[1004,10],[380,10],[249,10],[548,10],[838,10],[509,10],[861,10],[694,10],[970,10],[705,10],[409,10],[397,10],[996,10],[436,10],[53,10],[546,10],[271,10],[966,10],[899,10],[43,10],[104,10],[577,10],[866,10],[687,10],[190,10],[270,10],[116,10],[165,10],[547,10],[558,10],[386,10],[178,10],[155,10],[470,10],[290,10],[700,10],[118,10],[567,10],[937,10],[596,10],[408,10],[974,10],[511,10],[930,10],[343,10],[246,10],[794,10],[937,10],[277,10],[1020,10],[306,10],[70,10],[212,10],[870,10],[912,10],[519,10],[737,10],[865,10],[100,10],[19,10],[882,10],[992,10],[895,10],[665,10],[792,10],[34,10],[146,10],[586,10],[837,10],[196,10],[113,10],[808,10],[725,10],[317,10],[661,10],[338,10],[454,10],[950,10],[64,10],[596,10],[221,10],[403,10],[284,10],[789,10],[350,10],[87,10],[737,10],[956,10],[955,10],[1019,10],[405,10],[763,10],[506,10],[429,10],[680,10],[112,10],[267,10],[813,10],[278,10],[478,10],[923,10],[831,10],[618,10],[272,10],[571,10],[1,10],[17,10],[77,10],[444,10],[574,10],[729,10],[574,10],[19,10],[170,10],[646,10],[878,10],[459,10],[631,10],[320,10],[28,10],[473,10],[8,10],[305,10],[32,10],[251,10],[231,10],[179,10],[330,10],[378,10],[192,10],[4,10],[269,10],[656,10],[242,10],[509,10],[932,10],[365,10],[632,10],[99,10],[622,10],[886,10],[702,10],[203,10],[222,10],[909,10],[393,10],[432,10],[155,10],[280,10],[200,10],[818,10],[329,10],[848,10],[638,10],[181,10],[630,10],[501,10],[872,10],[823,10],[289,10],[789,10],[668,10],[232,10],[610,10],[491,10],[686,10],[203,10],[236,10],[725,10],[408,10],[889,10],[379,10],[906,10],[431,10],[717,10],[23,10],[30,10],[27,10],[393,10],[442,10],[441,10],[678,10],[840,10],[1001,10],[12,10],[437,10],[1011,10],[209,10],[81,10],[313,10],[578,10],[624,10],[705,10],[88,10],[992,10],[469,10],[315,10],[588,10],[159,10],[131,10],[981,10],[471,10],[594,10],[24,10],[801,10],[865,10],[351,10],[383,10],[975,10],[392,10],[57,10],[135,10],[46,10],[890,10],[558,10],[1006,10],[564,10],[92,10],[863,10],[822,10],[667,10],[49,10],[635,10],[24,10],[488,10],[366,10],[649,10],[964,10],[85,10],[666,10],[942,10],[997,10],[994,10],[201,10],[138,10],[288,10],[402,10],[714,10],[106,10],[752,10],[591,10],[604,10],[354,10],[209,10],[704,10],[13,10],[978,10],[153,10],[961,10],[1021,10],[356,10],[528,10],[74,10],[1006,10],[321,10],[579,10],[897,10],[97,10],[975,10],[509,10],[1014,10],[611,10],[340,10],[558,10],[57,10],[26,10],[889,10],[391,10],[439,10],[234,10],[351,10],[147,10],[263,10],[19,10],[360,10],[993,10],[133,10],[553,10],[163,10],[100,10],[968,10],[880,10],[688,10],[420,10],[370,10],[264,10],[577,10],[234,10],[96,10],[19,10],[673,10],[389,10],[992,10],[532,10],[663,10],[300,10],[874,10],[269,10],[209,10],[18,10],[756,10],[537,10],[497,10],[936,10],[980,10],[298,10],[254,10],[173,10],[991,10],[562,10],[644,10],[715,10],[807,10],[35,10],[818,10],[744,10],[261,10],[735,10],[134,10],[482,10],[392,10],[793,10],[460,10],[610,10],[136,10],[389,10],[914,10],[13,10],[364,10],[286,10],[727,10],[109,10],[438,10],[409,10],[890,10],[217,10],[1009,10],[510,10],[631,10],[785,10],[796,10],[478,10],[588,10],[714,10],[585,10],[791,10],[542,10],[900,10],[612,10],[853,10],[328,10],[942,10],[102,10],[37,10],[842,10],[594,10],[845,10],[41,10],[253,10],[148,10],[22,10],[231,10],[71,10],[286,10],[620,10],[861,10],[652,10],[471,10],[865,10],[311,10],[832,10],[413,10],[658,10],[872,10],[78,10],[1,10],[586,10],[397,10],[840,10],[657,10],[590,10],[163,10],[744,10],[717,10],[507,10],[493,10],[968,10],[515,10],[318,10],[387,10],[398,10],[317,10],[560,10],[724,10],[179,10],[23,10],[1021,10],[386,10],[30,10],[813,10],[918,10],[460,10],[259,10],[822,10],[357,10],[118,10],[955,10],[958,10],[700,10],[111,10],[248,10],[549,10],[461,10],[1011,10],[7,10],[87,10],[418,10],[288,10],[618,10],[20,10],[296,10],[483,10],[386,10],[141,10],[753,10],[477,10],[550,10],[482,10],[918,10],[713,10],[724,10],[765,10],[945,10],[946,10],[993,10],[35,10],[416,10],[533,10],[416,10],[99,10],[255,10],[423,10],[128,10],[734,10],[904,10],[314,10],[727,10],[34,10],[587,10],[1023,10],[518,10],[581,10],[624,10],[237,10],[302,10],[877,10],[732,10],[858,10],[643,10],[36,10],[535,10],[763,10],[316,10],[159,10],[15,10],[673,10],[435,10],[519,10],[546,10],[853,10],[584,10],[590,10],[155,10],[322,10],[200,10],[259,10],[69,10],[603,10],[426,10],[552,10],[854,10],[487,10],[861,10],[472,10],[783,10],[490,10],[554,10],[994,10],[360,10],[585,10],[243,10],[390,10],[231,10],[225,10],[62,10],[633,10],[330,10],[729,10],[643,10],[909,10],[155,10],[294,10],[10,10],[609,10],[704,10],[291,10],[971,10],[118,10],[968,10],[174,10],[311,10],[17,10],[621,10],[666,10],[828,10],[568,10],[632,10],[916,10],[989,10],[761,10],[510,10],[47,10],[203,10],[212,10],[401,10],[795,10],[678,10],[253,10],[885,10],[317,10],[795,10],[701,10],[232,10],[146,10],[760,10],[286,10],[857,10],[664,10],[333,10],[526,10],[19,10],[596,10],[457,10],[292,10],[971,10],[9,10],[485,10],[357,10],[373,10],[338,10],[898,10],[279,10],[811,10],[500,10],[499,10],[376,10],[891,10],[991,10],[749,10],[293,10],[131,10],[274,10],[1010,10],[982,10],[214,10],[382,10],[515,10],[667,10],[783,10],[186,10],[894,10],[662,10],[465,10],[731,10],[129,10],[1023,10],[180,10],[262,10],[853,10],[803,10],[357,10],[227,10],[698,10],[932,10],[480,10],[496,10],[453,10],[61,10],[728,10],[327,10],[338,10],[144,10],[621,10],[478,10],[368,10],[507,10],[818,10],[820,10],[980,10],[770,10],[195,10],[976,10],[905,10],[391,10],[70,10],[68,10],[161,10],[158,10],[648,10],[784,10],[245,10],[1008,10],[686,10],[396,10],[507,10],[653,10],[304,10],[413,10],[461,10],[666,10],[1014,10],[531,10],[818,10],[16,10],[652,10],[484,10],[899,10],[695,10],[57,10],[260,10],[505,10],[273,10],[179,10],[34,10],[23,10],[244,10],[272,10],[299,10],[856,10],[484,10],[82,10],[289,10],[836,10],[348,10],[235,10],[707,10],[913,10],[226,10],[358,10],[786,10],[752,10],[349,10],[154,10],[524,10],[518,10],[243,10],[835,10],[545,10],[520,10],[555,10],[465,10],[706,10],[74,10],[939,10],[82,10],[127,10],[292,10],[267,10],[76,10],[907,10],[211,10],[502,10],[99,10],[15,10],[581,10],[750,10],[700,10],[740,10],[945,10],[645,10],[889,10],[697,10],[611,10],[451,10],[459,10],[338,10],[1015,10],[1013,10],[723,10],[917,10],[782,10],[236,10],[182,10],[10,10],[186,10],[240,10],[999,10],[473,10],[818,10],[169,10],[130,10],[286,10],[763,10],[104,10],[937,10],[754,10],[712,10],[876,10],[257,10],[79,10],[73,10],[25,10],[45,10],[23,10],[931,10],[55,10],[680,10],[242,10],[400,10],[558,10],[852,10],[110,10],[748,10],[111,10],[216,10],[199,10],[29,10],[475,10],[222,10],[614,10],[415,10],[701,10],[771,10],[776,10],[601,10],[95,10],[350,10],[276,10],[175,10],[1002,10],[412,10],[184,10],[144,10],[974,10],[329,10],[940,10],[275,10],[607,10],[357,10],[895,10],[490,10],[651,10],[350,10],[704,10],[465,10],[484,10],[977,10],[340,10],[282,10],[234,10],[28,10],[312,10],[641,10],[495,10],[16,10],[750,10],[526,10],[524,10],[329,10],[568,10],[283,10],[195,10],[126,10],[834,10],[640,10],[286,10],[947,10],[315,10],[697,10],[603,10],[411,10],[423,10],[442,10],[508,10],[900,10],[711,10],[886,10],[767,10],[352,10],[332,10],[485,10],[209,10],[688,10],[457,10],[461,10],[740,10],[456,10],[134,10],[794,10],[748,10],[608,10],[438,10],[216,10],[559,10],[206,10],[670,10],[988,10],[292,10],[784,10],[842,10],[187,10],[563,10],[652,10],[511,10],[818,10],[997,10],[46,10],[931,10],[2,10],[45,10],[162,10],[291,10],[269,10],[48,10],[269,10],[455,10],[477,10],[154,10],[998,10],[268,10],[378,10],[625,10],[356,10],[284,10],[924,10],[240,10],[310,10],[335,10],[912,10],[947,10],[961,10],[370,10],[53,10],[1012,10],[847,10],[497,10],[197,10],[395,10],[544,10],[42,10],[1012,10],[160,10],[670,10],[170,10],[10,10],[852,10],[78,10],[192,10],[232,10],[358,10],[639,10],[553,10],[137,10],[465,10],[869,10],[810,10],[354,10],[691,10],[426,10],[518,10],[711,10],[707,10],[951,10],[283,10],[75,10],[727,10],[506,10],[822,10],[552,10],[328,10],[119,10],[522,10],[492,10],[350,10],[743,10],[247,10],[387,10],[929,10],[660,10],[507,10],[59,10],[793,10],[231,10],[454,10],[466,10],[809,10],[497,10],[743,10],[429,10],[246,10],[111,10],[314,10],[253,10],[262,10],[110,10],[767,10],[724,10],[122,10],[602,10],[625,10],[128,10],[379,10],[525,10],[213,10],[163,10],[969,10],[75,10],[792,10],[841,10],[848,10],[87,10],[781,10],[52,10],[584,10],[150,10],[438,10],[31,10],[792,10],[779,10],[288,10],[237,10],[481,10],[290,10],[126,10],[1023,10],[4,10],[40,10],[668,10],[848,10],[393,10],[291,10],[957,10],[154,10],[166,10],[649,10],[348,10],[104,10],[893,10],[967,10],[373,10],[729,10],[213,10],[771,10],[635,10],[476,10],[743,10],[964,10],[430,10],[642,10],[510,10],[672,10],[704,10],[819,10],[357,10],[281,10],[894,10],[728,10],[138,10],[485,10],[798,10],[412,10],[818,10],[355,10],[185,10],[806,10],[755,10],[666,10],[143,10],[728,10],[896,10],[1012,10],[725,10],[279,10],[790,10],[654,10],[876,10],[605,10],[645,10],[173,10],[476,10],[221,10],[678,10],[163,10],[142,10],[648,10],[478,10],[105,10],[948,10],[944,10],[816,10],[275,10],[936,10],[715,10],[747,10],[304,10],[791,10],[473,10],[147,10],[969,10],[163,10],[539,10],[906,10],[830,10],[908,10],[773,10],[397,10],[1009,10],[286,10],[112,10],[143,10],[204,10],[264,10],[528,10],[608,10],[53,10],[787,10],[169,10],[95,10],[468,10],[91,10],[53,10],[688,10],[82,10],[76,10],[884,10],[261,10],[764,10],[996,10],[565,10],[583,10],[949,10],[227,10],[767,10],[1018,10],[947,10],[388,10],[202,10],[365,10],[56,10],[131,10],[1008,10],[465,10],[541,10],[114,10],[660,10],[309,10],[108,10],[335,10],[926,10],[754,10],[26,10],[831,10],[376,10],[834,10],[102,10],[535,10],[887,10],[466,10],[35,10],[380,10],[743,10],[648,10],[265,10],[778,10],[35,10],[332,10],[728,10],[60,10],[922,10],[868,10],[307,10],[621,10],[682,10],[417,10],[279,10],[128,10],[286,10],[146,10],[973,10],[882,10],[838,10],[429,10],[849,10],[470,10],[165,10],[434,10],[821,10],[16,10],[824,10],[264,10],[138,10],[65,10],[436,10],[278,10],[423,10],[704,10],[235,10],[207,10],[619,10],[897,10],[340,10],[837,10],[702,10],[890,10],[111,10],[1,10],[566,10],[459,10],[831,10],[536,10],[183,10],[876,10],[844,10],[673,10],[170,10],[13,10],[515,10],[1001,10],[1021,10],[954,10],[713,10],[716,10],[581,10],[31,10],[672,10],[591,10],[494,10],[598,10],[795,10],[149,10],[316,10],[600,10],[921,10],[260,10],[92,10],[462,10],[151,10],[264,10],[399,10],[362,10],[797,10],[616,10],[262,10],[407,10],[993,10],[9,10],[683,10],[305,10],[108,10],[499,10],[220,10],[214,10],[264,10],[223,10],[568,10],[20,10],[298,10],[139,10],[769,10],[930,10],[14,10],[129,10],[301,10],[643,10],[595,10],[581,10],[270,10],[2,10],[657,10],[677,10],[135,10],[632,10],[94,10],[722,10],[9,10],[602,10],[926,10],[614,10],[134,10],[886,10],[844,10],[333,10],[133,10],[539,10],[664,10],[132,10],[413,10],[282,10],[547,10],[351,10],[644,10],[528,10],[446,10],[400,10],[38,10],[237,10],[140,10],[148,10],[277,10],[1013,10],[867,10],[132,10],[1004,10],[548,10],[69,10],[22,10],[111,10],[107,10],[386,10],[644,10],[132,10],[49,10],[651,10],[63,10],[797,10],[116,10],[703,10],[368,10],[635,10],[819,10],[17,10],[149,10],[433,10],[441,10],[529,10],[320,10],[974,10],[642,10],[380,10],[197,10],[671,10],[747,10],[858,10],[544,10],[373,10],[72,10],[715,10],[640,10],[355,10],[629,10],[813,10],[746,10],[697,10],[979,10],[552,10],[270,10],[766,10],[933,10],[214,10],[13,10],[938,10],[895,10],[639,10],[729,10],[802,10],[569,10],[968,10],[809,10],[159,10],[403,10],[554,10],[604,10],[931,10],[379,10],[539,10],[616,10],[394,10],[719,10],[274,10],[679,10],[194,10],[331,10],[897,10],[926,10],[576,10],[232,10],[162,10],[855,10],[534,10],[648,10],[104,10],[333,10],[329,10],[714,10],[285,10],[223,10],[675,10],[1017,10],[352,10],[569,10],[512,10],[616,10],[620,10],[235,10],[934,10],[569,10],[738,10],[126,10],[970,10],[897,10],[81,10],[666,10],[804,10],[181,10],[260,10],[283,10],[939,10],[69,10],[598,10],[766,10],[431,10],[846,10],[231,10],[933,10],[44,10],[382,10],[57,10],[589,10],[281,10],[237,10],[98,10],[393,10],[192,10],[146,10],[200,10],[883,10],[452,10],[90,10],[169,10],[462,10],[131,10],[290,10],[405,10],[734,10],[588,10],[958,10],[45,10],[792,10],[661,10],[990,10],[819,10],[930,10],[924,10],[353,10],[713,10],[518,10],[538,10],[637,10],[197,10],[112,10],[800,10],[872,10],[299,10],[518,10],[296,10],[941,10],[22,10],[863,10],[812,10],[867,10],[408,10],[345,10],[156,10],[764,10],[928,10],[535,10],[549,10],[685,10],[960,10],[415,10],[1007,10],[395,10],[780,10],[407,10],[794,10],[413,10],[598,10],[330,10],[872,10],[780,10],[39,10],[965,10],[293,10],[422,10],[880,10],[308,10],[208,10],[567,10],[525,10],[531,10],[207,10],[704,10],[756,10],[726,10],[58,10],[436,10],[396,10],[571,10],[464,10],[538,10],[561,10],[276,10],[56,10],[121,10],[369,10],[173,10],[205,10],[966,10],[492,10],[477,10],[709,10],[930,10],[508,10],[674,10],[138,10],[688,10],[728,10],[149,10],[880,10],[579,10],[1018,10],[92,10],[425,10],[836,10],[994,10],[47,10],[905,10],[790,10],[1011,10],[349,10],[291,10],[611,10],[644,10],[209,10],[699,10],[117,10],[98,10],[26,10],[861,10],[270,10],[132,10],[462,10],[598,10],[311,10],[120,10],[60,10],[861,10],[175,10],[281,10],[573,10],[635,10],[856,10],[603,10],[883,10],[572,10],[1008,10],[349,10],[274,10],[374,10],[837,10],[988,10],[829,10],[83,10],[543,10],[800,10],[920,10],[74,10],[50,10],[15,10],[466,10],[793,10],[83,10],[982,10],[803,10],[299,10],[611,10],[591,10],[945,10],[97,10],[105,10],[938,10],[718,10],[5,10],[553,10],[1008,10],[662,10],[164,10],[482,10],[643,10],[697,10],[580,10],[612,10],[738,10],[41,10],[715,10],[391,10],[151,10],[263,10],[371,10],[202,10],[679,10],[946,10],[282,10],[938,10],[388,10],[206,10],[766,10],[262,10],[260,10],[322,10],[806,10],[801,10],[662,10],[142,10],[36,10],[16,10],[966,10],[430,10],[759,10],[597,10],[428,10],[530,10],[159,10],[534,10],[936,10],[320,10],[15,10],[809,10],[617,10],[699,10],[372,10],[700,10],[816,10],[720,10],[457,10],[134,10],[548,10],[330,10],[746,10],[928,10],[817,10],[958,10],[809,10],[374,10],[549,10],[169,10],[405,10],[999,10],[396,10],[531,10],[21,10],[407,10],[859,10],[428,10],[435,10],[547,10],[912,10],[506,10],[1018,10],[266,10],[950,10],[439,10],[663,10],[690,10],[618,10],[640,10],[664,10],[1005,10],[423,10],[838,10],[242,10],[350,10],[849,10],[556,10],[583,10],[305,10],[904,10],[980,10],[808,10],[86,10],[893,10],[773,10],[974,10],[632,10],[167,10],[887,10],[394,10],[223,10],[891,10],[623,10],[869,10],[589,10],[145,10],[103,10],[93,10],[705,10],[2,10],[105,10],[145,10],[938,10],[843,10],[820,10],[682,10],[140,10],[481,10],[317,10],[306,10],[768,10],[260,10],[635,10],[33,10],[996,10],[998,10],[139,10],[22,10],[240,10],[859,10],[362,10],[29,10],[774,10],[161,10],[263,10],[319,10],[523,10],[490,10],[52,10],[776,10],[816,10],[581,10],[879,10],[822,10],[651,10],[414,10],[468,10],[569,10],[647,10],[76,10],[350,10],[278,10],[627,10],[477,10],[704,10],[654,10],[292,10],[298,10],[663,10],[334,10],[613,10],[190,10],[906,10],[521,10],[509,10],[516,10],[33,10],[648,10],[95,10],[580,10],[411,10],[752,10],[835,10],[440,10],[441,10],[861,10],[643,10],[892,10],[588,10],[238,10],[890,10],[739,10],[1003,10],[42,10],[216,10],[769,10],[147,10],[602,10],[179,10],[758,10],[94,10],[813,10],[76,10],[861,10],[733,10],[533,10],[170,10],[341,10],[787,10],[570,10],[314,10],[902,10],[783,10],[90,10],[944,10],[530,10],[969,10],[236,10],[928,10],[481,10],[91,10],[230,10],[1000,10],[587,10],[791,10],[375,10],[747,10],[70,10],[435,10],[94,10],[856,10],[274,10],[856,10],[1009,10],[1008,10],[557,10],[494,10],[656,10],[885,10],[963,10],[745,10],[806,10],[239,10],[1011,10],[200,10],[398,10],[379,10],[512,10],[181,10],[176,10],[708,10],[530,10],[447,10],[625,10],[923,10],[501,10],[131,10],[696,10],[523,10],[765,10],[486,10],[633,10],[258,10],[435,10],[710,10],[908,10],[6,10],[82,10],[630,10],[411,10],[692,10],[199,10],[210,10],[293,10],[348,10],[754,10],[918,10],[359,10],[997,10],[657,10],[933,10],[526,10],[213,10],[858,10],[609,10],[921,10],[752,10],[63,10],[557,10],[437,10],[83,10],[435,10],[732,10],[648,10],[383,10],[10,10],[541,10],[950,10],[600,10],[531,10],[530,10],[126,10],[728,10],[913,10],[311,10],[427,10],[495,10],[537,10],[490,10],[904,10],[822,10],[247,10],[376,10],[125,10],[741,10],[294,10],[8,10],[72,10],[237,10],[963,10],[809,10],[944,10],[697,10],[388,10],[458,10],[149,10],[960,10],[359,10],[456,10],[271,10],[393,10],[307,10],[199,10],[747,10],[566,10],[513,10],[560,10],[341,10],[1000,10],[888,10],[173,10],[451,10],[483,10],[195,10],[649,10],[7,10],[155,10],[361,10],[422,10],[631,10],[771,10],[746,10],[773,10],[910,10],[128,10],[858,10],[435,10],[746,10],[863,10],[789,10],[114,10],[44,10],[441,10],[457,10],[916,10],[933,10],[835,10],[849,10],[1002,10],[274,10],[841,10],[570,10],[530,10],[365,10],[501,10],[288,10],[740,10],[112,10],[751,10],[212,10],[549,10],[65,10],[681,10],[778,10],[266,10],[637,10],[263,10],[426,10],[986,10],[377,10],[999,10],[248,10],[549,10],[945,10],[135,10],[555,10],[372,10],[56,10],[707,10],[497,10],[542,10],[200,10],[493,10],[198,10],[441,10],[388,10],[585,10],[796,10],[488,10],[859,10],[773,10],[947,10],[1006,10],[962,10],[902,10],[718,10],[405,10],[566,10],[361,10],[338,10],[747,10],[706,10],[388,10],[88,10],[705,10],[622,10],[972,10],[960,10],[854,10],[228,10],[69,10],[452,10],[898,10],[475,10],[666,10],[144,10],[917,10],[102,10],[409,10],[490,10],[197,10],[669,10],[95,10],[107,10],[14,10],[786,10],[227,10],[558,10],[574,10],[306,10],[729,10],[755,10],[531,10],[81,10],[360,10],[155,10],[39,10],[47,10],[78,10],[497,10],[775,10],[263,10],[883,10],[39,10],[803,10],[1011,10],[708,10],[641,10],[806,10],[940,10],[99,10],[899,10],[630,10],[545,10],[21,10],[253,10],[233,10],[403,10],[703,10],[928,10],[940,10],[49,10],[874,10],[465,10],[290,10],[109,10],[599,10],[375,10],[305,10],[484,10],[575,10],[916,10],[738,10],[1010,10],[297,10],[92,10],[1019,10],[315,10],[441,10],[223,10],[810,10],[853,10],[756,10],[462,10],[843,10],[996,10],[929,10],[555,10],[114,10],[688,10],[222,10],[855,10],[877,10],[57,10],[635,10],[350,10],[229,10],[480,10],[869,10],[479,10],[215,10],[941,10],[989,10],[157,10],[437,10],[955,10],[635,10],[118,10],[318,10],[237,10],[880,10],[687,10],[1009,10],[404,10],[596,10],[608,10],[1008,10],[997,10],[860,10],[701,10],[58,10],[473,10],[871,10],[548,10],[971,10],[607,10],[146,10],[941,10],[25,10],[951,10],[617,10],[202,10],[62,10],[788,10],[2,10],[457,10],[698,10],[365,10],[426,10],[771,10],[59,10],[65,10],[530,10],[279,10],[319,10],[407,10],[265,10],[701,10],[240,10],[606,10],[535,10],[449,10],[846,10],[111,10],[274,10],[875,10],[882,10],[661,10],[128,10],[239,10],[718,10],[703,10],[21,10],[676,10],[778,10],[548,10],[178,10],[644,10],[557,10],[352,10],[140,10],[497,10],[676,10],[452,10],[513,10],[543,10],[210,10],[1006,10],[375,10],[6,10],[881,10],[116,10],[404,10],[580,10],[931,10],[877,10],[806,10],[712,10],[896,10],[326,10],[577,10],[361,10],[396,10],[608,10],[533,10],[249,10],[902,10],[373,10],[237,10],[469,10],[586,10],[4,10],[748,10],[86,10],[517,10],[351,10],[921,10],[463,10],[486,10],[136,10],[329,10],[262,10],[716,10],[340,10],[619,10],[919,10],[465,10],[116,10],[74,10],[739,10],[14,10],[357,10],[59,10],[379,10],[230,10],[95,10],[325,10],[974,10],[287,10],[191,10],[971,10],[444,10],[874,10],[380,10],[314,10],[464,10],[194,10],[206,10],[636,10],[184,10],[79,10],[703,10],[253,10],[986,10],[974,10],[100,10],[674,10],[18,10],[394,10],[265,10],[310,10],[993,10],[103,10],[672,10],[613,10],[184,10],[509,10],[534,10],[497,10],[685,10],[205,10],[926,10],[464,10],[6,10],[711,10],[735,10],[598,10],[1019,10],[647,10],[558,10],[726,10],[958,10],[199,10],[614,10],[904,10],[936,10],[653,10],[156,10],[753,10],[920,10],[509,10],[796,10],[428,10],[88,10],[38,10],[377,10],[186,10],[62,10],[987,10],[544,10],[29,10],[381,10],[433,10],[481,10],[955,10],[14,10],[579,10],[1011,10],[499,10],[734,10],[386,10],[400,10],[652,10],[867,10],[190,10],[894,10],[57,10],[339,10],[982,10],[193,10],[430,10],[379,10],[432,10],[295,10],[774,10],[452,10],[74,10],[469,10],[331,10],[159,10],[405,10],[442,10],[54,10],[301,10],[558,10],[136,10],[92,10],[297,10],[512,10],[683,10],[1003,10],[20,10],[97,10],[14,10],[859,10],[138,10],[867,10],[212,10],[403,10],[705,10],[124,10],[451,10],[904,10],[369,10],[295,10],[655,10],[686,10],[44,10],[903,10],[147,10],[147,10],[759,10],[201,10],[741,10],[572,10],[425,10],[106,10],[96,10],[243,10],[670,10],[882,10],[654,10],[735,10],[656,10],[854,10],[491,10],[961,10],[894,10],[203,10],[39,10],[402,10],[735,10],[872,10],[64,10],[444,10],[423,10],[802,10],[193,10],[11,10],[11,10],[749,10],[490,10],[104,10],[5,10],[431,10],[397,10],[354,10],[806,10],[236,10],[315,10],[296,10],[840,10],[922,10],[256,10],[979,10],[9,10],[197,10],[391,10],[380,10],[874,10],[453,10],[1004,10],[1007,10],[238,10],[741,10],[775,10],[367,10],[492,10],[598,10],[655,10],[616,10],[213,10],[564,10],[624,10],[498,10],[292,10],[925,10],[223,10],[869,10],[868,10],[193,10],[683,10],[871,10],[368,10],[823,10],[538,10],[841,10],[421,10],[994,10],[351,10],[984,10],[406,10],[820,10],[778,10],[420,10],[107,10],[454,10],[629,10],[209,10],[926,10],[169,10],[472,10],[945,10],[687,10],[446,10],[120,10],[894,10],[722,10],[245,10],[174,10],[241,10],[212,10],[616,10],[452,10],[996,10],[603,10],[818,10],[586,10],[618,10],[54,10],[964,10],[368,10],[497,10],[487,10],[481,10],[88,10],[30,10],[534,10],[244,10],[745,10],[818,10],[476,10],[797,10],[962,10],[454,10],[603,10],[350,10],[538,10],[453,10],[424,10],[702,10],[392,10],[82,10],[730,10],[546,10],[774,10],[750,10],[381,10],[734,10],[609,10],[658,10],[616,10],[847,10],[267,10],[751,10],[659,10],[547,10],[948,10],[326,10],[173,10],[675,10],[133,10],[384,10],[642,10],[592,10],[532,10],[214,10],[118,10],[630,10],[81,10],[498,10],[332,10],[123,10],[183,10],[208,10],[567,10],[967,10],[500,10],[136,10],[39,10],[415,10],[209,10],[317,10],[208,10],[710,10],[813,10],[625,10],[794,10],[409,10],[995,10],[473,10],[913,10],[714,10],[617,10],[887,10],[1016,10],[457,10],[481,10],[70,10],[543,10],[509,10],[861,10],[505,10],[904,10],[559,10],[681,10],[594,10],[588,10],[800,10],[684,10],[417,10],[762,10],[24,10],[732,10],[188,10],[464,10],[675,10],[197,10],[52,10],[674,10],[900,10],[214,10],[822,10],[528,10],[933,10],[434,10],[398,10],[73,10],[848,10],[284,10],[920,10],[683,10],[386,10],[354,10],[234,10],[954,10],[750,10],[945,10],[543,10],[137,10],[307,10],[124,10],[510,10],[153,10],[622,10],[870,10],[431,10],[430,10],[964,10],[170,10],[391,10],[854,10],[953,10],[64,10],[746,10],[263,10],[239,10],[691,10],[154,10],[28,10],[872,10],[777,10],[47,10],[419,10],[952,10],[430,10],[161,10],[711,10],[4,10],[517,10],[322,10],[918,10],[481,10],[611,10],[378,10],[386,10],[397,10],[592,10],[741,10],[190,10],[255,10],[25,10],[429,10],[488,10],[689,10],[311,10],[301,10],[430,10],[861,10],[541,10],[793,10],[558,10],[826,10],[575,10],[404,10],[955,10],[373,10],[740,10],[311,10],[351,10],[696,10],[424,10],[333,10],[599,10],[473,10],[664,10],[662,10],[393,10],[405,10],[408,10],[676,10],[584,10],[338,10],[825,10],[961,10],[1010,10],[901,10],[169,10],[156,10],[756,10],[425,10],[456,10],[255,10],[153,10],[816,10],[171,10],[389,10],[594,10],[777,10],[504,10],[968,10],[539,10],[1021,10],[852,10],[319,10],[338,10],[1023,10],[873,10],[848,10],[645,10],[863,10],[264,10],[45,10],[304,10],[201,10],[86,10],[885,10],[520,10],[976,10],[508,10],[751,10],[1005,10],[449,10],[191,10],[879,10],[912,10],[1002,10],[746,10],[603,10],[875,10],[103,10],[71,10],[459,10],[246,10],[995,10],[621,10],[1005,10],[294,10],[491,10],[858,10],[755,10],[909,10],[825,10],[977,10],[624,10],[575,10],[941,10],[533,10],[279,10],[752,10],[547,10],[56,10],[859,10],[182,10],[976,10],[80,10],[916,10],[806,10],[549,10],[726,10],[513,10],[113,10],[882,10],[1017,10],[362,10],[961,10],[582,10],[404,10],[325,10],[778,10],[49,10],[89,10],[787,10],[559,10],[484,10],[855,10],[779,10],[222,10],[205,10],[856,10],[599,10],[593,10],[639,10],[754,10],[24,10],[192,10],[474,10],[27,10],[54,10],[271,10],[681,10],[871,10],[333,10],[138,10],[490,10],[569,10],[96,10],[899,10],[792,10],[676,10],[468,10],[43,10],[600,10],[214,10],[214,10],[395,10],[579,10],[603,10],[766,10],[122,10],[245,10],[649,10],[726,10],[926,10],[821,10],[192,10],[935,10],[514,10],[389,10],[945,10],[968,10],[35,10],[74,10],[767,10],[543,10],[812,10],[720,10],[342,10],[163,10],[726,10],[214,10],[917,10],[562,10],[102,10],[667,10],[485,10],[422,10],[77,10],[275,10],[427,10],[312,10],[110,10],[405,10],[473,10],[17,10],[126,10],[204,10],[205,10],[857,10],[566,10],[511,10],[205,10],[251,10],[843,10],[8,10],[629,10],[895,10],[1004,10],[116,10],[887,10],[934,10],[723,10],[394,10],[840,10],[361,10],[301,10],[780,10],[813,10],[439,10],[798,10],[819,10],[146,10],[388,10],[804,10],[158,10],[381,10],[894,10],[72,10],[893,10],[304,10],[589,10],[533,10],[722,10],[135,10],[585,10],[665,10],[993,10],[957,10],[1020,10],[25,10],[811,10],[110,10],[816,10],[536,10],[961,10],[475,10],[772,10],[616,10],[356,10],[888,10],[893,10],[175,10],[167,10],[153,10],[128,10],[865,10],[407,10],[805,10],[583,10],[38,10],[967,10],[331,10],[864,10],[901,10],[505,10],[778,10],[157,10],[682,10],[475,10],[621,10],[48,10],[89,10],[105,10],[139,10],[984,10],[965,10],[775,10],[579,10],[164,10],[509,10],[133,10],[806,10],[40,10],[253,10],[890,10],[608,10],[393,10],[27,10],[79,10],[815,10],[934,10],[953,10],[891,10],[1003,10],[1021,10],[454,10],[692,10],[855,10],[1009,10],[879,10],[704,10],[850,10],[706,10],[865,10],[663,10],[942,10],[291,10],[684,10],[465,10],[992,10],[84,10],[975,10],[397,10],[270,10],[363,10],[566,10],[561,10],[597,10],[939,10],[159,10],[223,10],[849,10],[902,10],[895,10],[629,10],[754,10],[147,10],[151,10],[223,10],[660,10],[498,10],[131,10],[309,10],[546,10],[340,10],[373,10],[432,10],[644,10],[173,10],[806,10],[53,10],[173,10],[516,10],[144,10],[148,10],[666,10],[856,10],[266,10],[411,10],[450,10],[195,10],[20,10],[954,10],[882,10],[59,10],[347,10],[962,10],[116,10],[66,10],[309,10],[453,10],[320,10],[638,10],[1010,10],[1017,10],[194,10],[130,10],[474,10],[486,10],[536,10],[149,10],[808,10],[778,10],[502,10],[59,10],[494,10],[992,10],[193,10],[191,10],[115,10],[4,10],[683,10],[751,10],[515,10],[194,10],[360,10],[782,10],[639,10],[684,10],[652,10],[282,10],[970,10],[180,10],[40,10],[500,10],[513,10],[140,10],[653,10],[614,10],[663,10],[218,10],[150,10],[811,10],[555,10],[186,10],[52,10],[773,10],[818,10],[655,10],[365,10],[666,10],[936,10],[498,10],[257,10],[954,10],[981,10],[584,10],[464,10],[200,10],[697,10],[338,10],[224,10],[121,10],[540,10],[568,10],[120,10],[419,10],[422,10],[849,10],[288,10],[577,10],[676,10],[587,10],[591,10],[1015,10],[879,10],[1023,10],[535,10],[1007,10],[792,10],[953,10],[926,10],[397,10],[659,10],[452,10],[200,10],[584,10],[236,10],[364,10],[658,10],[998,10],[569,10],[371,10],[295,10],[550,10],[872,10],[955,10],[587,10],[800,10],[460,10],[352,10],[831,10],[945,10],[994,10],[696,10],[805,10],[663,10],[280,10],[549,10],[159,10],[495,10],[830,10],[535,10],[909,10],[798,10],[939,10],[162,10],[586,10],[858,10],[211,10],[610,10],[144,10],[183,10],[480,10],[124,10],[350,10],[831,10],[620,10],[829,10],[150,10],[689,10],[947,10],[471,10],[844,10],[744,10],[708,10],[828,10],[350,10],[685,10],[783,10],[674,10],[567,10],[334,10],[375,10],[414,10],[40,10],[852,10],[327,10],[331,10],[633,10],[822,10],[165,10],[927,10],[214,10],[40,10],[940,10],[733,10],[330,10],[546,10],[142,10],[941,10],[829,10],[680,10],[302,10],[196,10],[791,10],[434,10],[246,10],[596,10],[293,10],[269,10],[699,10],[513,10],[859,10],[160,10],[652,10],[750,10],[413,10],[70,10],[994,10],[151,10],[872,10],[406,10],[96,10],[700,10],[816,10],[363,10],[546,10],[673,10],[499,10],[894,10],[753,10],[701,10],[957,10],[615,10],[361,10],[972,10],[313,10],[718,10],[142,10],[547,10],[603,10],[57,10],[407,10],[103,10],[602,10],[737,10],[49,10],[157,10],[914,10],[65,10],[412,10],[643,10],[933,10],[713,10],[877,10],[476,10],[137,10],[696,10],[501,10],[118,10],[664,10],[453,10],[200,10],[178,10],[130,10],[586,10],[99,10],[512,10],[922,10],[342,10],[633,10],[261,10],[412,10],[618,10],[339,10],[388,10],[503,10],[281,10],[414,10],[176,10],[110,10],[941,10],[570,10],[683,10],[489,10],[702,10],[729,10],[738,10],[277,10],[390,10],[703,10],[978,10],[564,10],[103,10],[965,10],[920,10],[352,10],[225,10],[913,10],[28,10],[458,10],[448,10],[479,10],[147,10],[393,10],[809,10],[505,10],[1022,10],[208,10],[762,10],[183,10],[743,10],[998,10],[1002,10],[28,10],[519,10],[136,10],[771,10],[225,10],[498,10],[342,10],[208,10],[334,10],[112,10],[1022,10],[860,10],[471,10],[411,10],[673,10],[575,10],[138,10],[710,10],[548,10],[189,10],[602,10],[222,10],[214,10],[623,10],[986,10],[203,10],[338,10],[115,10],[470,10],[474,10],[234,10],[410,10],[181,10],[689,10],[850,10],[362,10],[971,10],[124,10],[594,10],[183,10],[472,10],[831,10],[337,10],[15,10],[236,10],[959,10],[485,10],[785,10],[679,10],[611,10],[371,10],[531,10],[386,10],[895,10],[517,10],[354,10],[317,10],[383,10],[949,10],[594,10],[471,10],[840,10],[540,10],[138,10],[786,10],[418,10],[103,10],[692,10],[571,10],[894,10],[63,10],[779,10],[445,10],[348,10],[315,10],[835,10],[51,10],[656,10],[786,10],[914,10],[418,10],[151,10],[577,10],[955,10],[109,10],[421,10],[540,10],[620,10],[861,10],[465,10],[279,10],[216,10],[686,10],[688,10],[481,10],[1021,10],[981,10],[414,10],[743,10],[348,10],[165,10],[544,10],[448,10],[413,10],[743,10],[676,10],[136,10],[804,10],[504,10],[126,10],[709,10],[260,10],[237,10],[214,10],[37,10],[367,10],[801,10],[890,10],[647,10],[831,10],[745,10],[588,10],[13,10],[543,10],[965,10],[130,10],[827,10],[416,10],[912,10],[87,10],[92,10],[566,10],[124,10],[458,10],[940,10],[216,10],[137,10],[603,10],[731,10],[986,10],[596,10],[104,10],[647,10],[1017,10],[283,10],[289,10],[22,10],[685,10],[48,10],[908,10],[646,10],[590,10],[967,10],[59,10],[141,10],[285,10],[962,10],[975,10],[274,10],[243,10],[907,10],[316,10],[568,10],[563,10],[458,10],[220,10],[765,10],[530,10],[142,10],[589,10],[644,10],[725,10],[509,10],[951,10],[895,10],[885,10],[678,10],[369,10],[883,10],[516,10],[498,10],[181,10],[402,10],[153,10],[839,10],[938,10],[347,10],[347,10],[1016,10],[34,10],[703,10],[957,10],[5,10],[802,10],[962,10],[148,10],[19,10],[392,10],[885,10],[319,10],[636,10],[777,10],[535,10],[751,10],[366,10],[916,10],[228,10],[10,10],[779,10],[467,10],[296,10],[210,10],[951,10],[447,10],[695,10],[679,10],[322,10],[37,10],[250,10],[10,10],[678,10],[106,10],[829,10],[138,10],[171,10],[98,10],[950,10],[879,10],[601,10],[88,10],[402,10],[841,10],[100,10],[397,10],[441,10],[830,10],[471,10],[729,10],[1001,10],[49,10],[317,10],[594,10],[53,10],[754,10],[485,10],[214,10],[720,10],[1018,10],[245,10],[232,10],[741,10],[1007,10],[115,10],[61,10],[382,10],[192,10],[916,10],[210,10],[992,10],[389,10],[307,10],[479,10],[481,10],[727,10],[236,10],[425,10],[580,10],[386,10],[545,10],[203,10],[1021,10],[558,10],[875,10],[394,10],[196,10],[604,10],[749,10],[510,10],[595,10],[710,10],[299,10],[325,10],[258,10],[501,10],[593,10],[358,10],[632,10],[655,10],[862,10],[53,10],[413,10],[104,10],[856,10],[47,10],[777,10],[624,10],[954,10],[45,10],[846,10],[100,10],[1001,10],[821,10],[343,10],[358,10],[763,10],[781,10],[794,10],[965,10],[34,10],[420,10],[64,10],[725,10],[112,10],[824,10],[621,10],[7,10],[272,10],[310,10],[524,10],[259,10],[790,10],[505,10],[371,10],[809,10],[536,10],[379,10],[505,10],[606,10],[428,10],[98,10],[740,10],[157,10],[385,10],[123,10],[222,10],[392,10],[547,10],[60,10],[354,10],[860,10],[317,10],[669,10],[885,10],[429,10],[422,10],[555,10],[364,10],[529,10],[757,10],[210,10],[189,10],[6,10],[150,10],[228,10],[826,10],[311,10],[191,10],[318,10],[209,10],[424,10],[159,10],[278,10],[317,10],[85,10],[110,10],[856,10],[826,10],[902,10],[526,10],[437,10],[571,10],[905,10],[425,10],[824,10],[913,10],[443,10],[382,10],[216,10],[610,10],[953,10],[605,10],[671,10],[119,10],[14,10],[242,10],[985,10],[930,10],[773,10],[649,10],[508,10],[982,10],[504,10],[954,10],[113,10],[117,10],[129,10],[914,10],[190,10],[741,10],[472,10],[480,10],[646,10],[133,10],[227,10],[229,10],[429,10],[130,10],[388,10],[176,10],[892,10],[43,10],[441,10],[770,10],[333,10],[837,10],[9,10],[537,10],[62,10],[305,10],[354,10],[58,10],[419,10],[37,10],[211,10],[811,10],[63,10],[977,10],[747,10],[806,10],[776,10],[147,10],[443,10],[235,10],[833,10],[746,10],[683,10],[270,10],[48,10],[662,10],[299,10],[26,10],[981,10],[877,10],[304,10],[103,10],[544,10],[852,10],[670,10],[419,10],[742,10],[658,10],[655,10],[266,10],[440,10],[687,10],[313,10],[347,10],[881,10],[727,10],[923,10],[650,10],[169,10],[541,10],[516,10],[871,10],[454,10],[524,10],[739,10],[465,10],[586,10],[797,10],[82,10],[223,10],[35,10],[214,10],[367,10],[552,10],[543,10],[760,10],[86,10],[918,10],[220,10],[821,10],[122,10],[129,10],[151,10],[139,10],[860,10],[231,10],[1010,10],[536,10],[63,10],[980,10],[770,10],[230,10],[968,10],[891,10],[361,10],[121,10],[720,10],[280,10],[598,10],[22,10],[871,10],[730,10],[2,10],[911,10],[803,10],[240,10],[773,10],[97,10],[173,10],[514,10],[895,10],[714,10],[72,10],[608,10],[147,10],[641,10],[698,10],[974,10],[963,10],[253,10],[300,10],[990,10],[344,10],[385,10],[422,10],[304,10],[457,10],[877,10],[900,10],[466,10],[133,10],[354,10],[612,10],[922,10],[9,10],[806,10],[89,10],[84,10],[804,10],[995,10],[704,10],[560,10],[180,10],[338,10],[34,10],[1006,10],[289,10],[597,10],[925,10],[852,10],[266,10],[739,10],[244,10],[954,10],[500,10],[110,10],[514,10],[466,10],[288,10],[692,10],[480,10],[603,10],[603,10],[208,10],[798,10],[735,10],[514,10],[892,10],[381,10],[593,10],[270,10],[844,10],[994,10],[658,10],[520,10],[542,10],[467,10],[411,10],[935,10],[25,10],[445,10],[8,10],[25,10],[437,10],[500,10],[315,10],[965,10],[14,10],[682,10],[241,10],[24,10],[8,10],[932,10],[446,10],[163,10],[144,10],[997,10],[724,10],[704,10],[284,10],[863,10],[3,10],[657,10],[701,10],[131,10],[708,10],[219,10],[653,10],[300,10],[684,10],[922,10],[546,10],[842,10],[642,10],[402,10],[415,10],[763,10],[206,10],[83,10],[242,10],[925,10],[549,10],[141,10],[750,10],[817,10],[739,10],[953,10],[247,10],[326,10],[634,10],[272,10],[898,10],[140,10],[55,10],[846,10],[496,10],[257,10],[983,10],[505,10],[326,10],[19,10],[789,10],[361,10],[547,10],[969,10],[913,10],[516,10],[829,10],[247,10],[234,10],[449,10],[52,10],[975,10],[323,10],[179,10],[33,10],[744,10],[504,10],[261,10],[962,10],[850,10],[134,10],[325,10],[645,10],[225,10],[930,10],[762,10],[419,10],[766,10],[875,10],[674,10],[693,10],[494,10],[335,10],[374,10],[206,10],[344,10],[268,10],[763,10],[941,10],[911,10],[792,10],[700,10],[442,10],[729,10],[38,10],[455,10],[140,10],[876,10],[139,10],[748,10],[708,10],[299,10],[108,10],[616,10],[727,10],[170,10],[80,10],[635,10],[1008,10],[356,10],[523,10],[240,10],[921,10],[771,10],[622,10],[679,10],[148,10],[948,10],[735,10],[278,10],[283,10],[684,10],[289,10],[115,10],[966,10],[517,10],[649,10],[249,10],[18,10],[163,10],[256,10],[440,10],[231,10],[719,10],[136,10],[1,10],[592,10],[400,10],[40,10],[869,10],[246,10],[639,10],[298,10],[540,10],[388,10],[599,10],[997,10],[399,10],[661,10],[505,10],[604,10],[1013,10],[390,10],[310,10],[902,10],[87,10],[112,10],[846,10],[865,10],[163,10],[138,10],[281,10],[116,10],[499,10],[353,10],[258,10],[121,10],[74,10],[408,10],[383,10],[117,10],[920,10],[835,10],[358,10],[946,10],[924,10],[695,10],[575,10],[855,10],[959,10],[66,10],[472,10],[409,10],[168,10],[505,10],[436,10],[320,10],[816,10],[174,10],[366,10],[690,10],[435,10],[136,10],[135,10],[392,10],[495,10],[373,10],[593,10],[598,10],[286,10],[403,10],[838,10],[504,10],[234,10],[958,10],[959,10],[841,10],[883,10],[731,10],[216,10],[204,10],[800,10],[88,10],[215,10],[58,10],[491,10],[773,10],[301,10],[968,10],[902,10],[835,10],[754,10],[356,10],[846,10],[518,10],[751,10],[339,10],[938,10],[196,10],[12,10],[756,10],[504,10],[227,10],[873,10],[176,10],[876,10],[209,10],[205,10],[177,10],[754,10],[334,10],[384,10],[924,10],[738,10],[568,10],[641,10],[985,10],[504,10],[152,10],[138,10],[286,10],[680,10],[718,10],[359,10],[1016,10],[122,10],[851,10],[727,10],[900,10],[352,10],[821,10],[779,10],[416,10],[53,10],[688,10],[526,10],[611,10],[662,10],[916,10],[851,10],[100,10],[396,10],[146,10],[485,10],[504,10],[178,10],[530,10],[764,10],[403,10],[864,10],[784,10],[407,10],[664,10],[874,10],[865,10],[537,10],[641,10],[930,10],[575,10],[254,10],[221,10],[110,10],[786,10],[914,10],[986,10],[371,10],[854,10],[990,10],[340,10],[861,10],[915,10],[153,10],[661,10],[578,10],[86,10],[60,10],[765,10],[562,10],[264,10],[20,10],[556,10],[999,10],[170,10],[23,10],[818,10],[374,10],[525,10],[934,10],[429,10],[118,10],[670,10],[707,10],[672,10],[909,10],[207,10],[80,10],[46,10],[600,10],[571,10],[737,10],[295,10],[705,10],[182,10],[1002,10],[933,10],[32,10],[88,10],[544,10],[164,10],[700,10],[366,10],[658,10],[802,10],[863,10],[845,10],[878,10],[32,10],[391,10],[229,10],[877,10],[430,10],[18,10],[223,10],[249,10],[200,10],[880,10],[639,10],[525,10],[928,10],[637,10],[732,10],[119,10],[646,10],[1,10],[667,10],[785,10],[817,10],[67,10],[665,10],[936,10],[651,10],[569,10],[335,10],[392,10],[73,10],[613,10],[481,10],[249,10],[951,10],[887,10],[650,10],[109,10],[125,10],[895,10],[525,10],[762,10],[862,10],[640,10],[249,10],[688,10],[746,10],[775,10],[530,10],[747,10],[1005,10],[960,10],[109,10],[747,10],[842,10],[281,10],[99,10],[482,10],[669,10],[266,10],[711,10],[105,10],[55,10],[1010,10],[437,10],[648,10],[489,10],[573,10],[575,10],[694,10],[51,10],[763,10],[399,10],[300,10],[496,10],[308,10],[252,10],[586,10],[801,10],[892,10],[332,10],[274,10],[73,10],[793,10],[774,10],[276,10],[155,10],[166,10],[966,10],[327,10],[146,10],[646,10],[160,10],[67,10],[345,10],[897,10],[681,10],[692,10],[680,10],[561,10],[384,10],[708,10],[655,10],[928,10],[783,10],[829,10],[1008,10],[422,10],[567,10],[873,10],[377,10],[846,10],[709,10],[468,10],[220,10],[669,10],[1021,10],[852,10],[871,10],[354,10],[907,10],[411,10],[964,10],[910,10],[467,10],[339,10],[855,10],[130,10],[502,10],[815,10],[306,10],[778,10],[732,10],[23,10],[696,10],[730,10],[127,10],[436,10],[870,10],[889,10],[48,10],[344,10],[221,10],[395,10],[601,10],[117,10],[641,10],[1019,10],[918,10],[862,10],[828,10],[797,10],[474,10],[155,10],[539,10],[606,10],[1007,10],[270,10],[183,10],[3,10],[393,10],[158,10],[27,10],[262,10],[605,10],[835,10],[63,10],[391,10],[853,10],[607,10],[505,10],[611,10],[315,10],[502,10],[372,10],[586,10],[304,10],[242,10],[114,10],[778,10],[969,10],[546,10],[778,10],[977,10],[435,10],[122,10],[575,10],[964,10],[421,10],[568,10],[662,10],[198,10],[658,10],[883,10],[466,10],[508,10],[39,10],[276,10],[85,10],[176,10],[405,10],[461,10],[325,10],[229,10],[147,10],[290,10],[548,10],[558,10],[365,10],[7,10],[591,10],[7,10],[53,10],[838,10],[799,10],[595,10],[36,10],[404,10],[484,10],[716,10],[363,10],[899,10],[721,10],[203,10],[373,10],[453,10],[467,10],[578,10],[46,10],[363,10],[192,10],[980,10],[240,10],[768,10],[677,10],[49,10],[27,10],[27,10],[212,10],[256,10],[167,10],[738,10],[971,10],[119,10],[1010,10],[416,10],[4,10],[624,10],[332,10],[361,10],[286,10],[865,10],[623,10],[1019,10],[602,10],[807,10],[936,10],[490,10],[181,10],[133,10],[854,10],[51,10],[819,10],[689,10],[432,10],[883,10],[785,10],[985,10],[935,10],[136,10],[590,10],[517,10],[45,10],[31,10],[712,10],[885,10],[730,10],[582,10],[1005,10],[520,10],[805,10],[748,10],[986,10],[766,10],[400,10],[563,10],[582,10],[823,10],[511,10],[630,10],[317,10],[417,10],[94,10],[1007,10],[70,10],[675,10],[33,10],[624,10],[557,10],[584,10],[337,10],[513,10],[788,10],[680,10],[105,10],[124,10],[769,10],[748,10],[142,10],[288,10],[212,10],[463,10],[408,10],[914,10],[31,10],[982,10],[355,10],[496,10],[238,10],[498,10],[645,10],[303,10],[544,10],[873,10],[283,10],[260,10],[259,10],[484,10],[897,10],[887,10],[991,10],[308,10],[801,10],[1022,10],[180,10],[842,10],[981,10],[367,10],[640,10],[726,10],[688,10],[960,10],[440,10],[910,10],[36,10],[813,10],[56,10],[205,10],[998,10],[548,10],[893,10],[526,10],[158,10],[764,10],[80,10],[65,10],[491,10],[200,10],[615,10],[418,10],[143,10],[751,10],[972,10],[529,10],[494,10],[273,10],[208,10],[346,10],[653,10],[299,10],[778,10],[306,10],[662,10],[570,10],[164,10],[188,10],[488,10],[865,10],[424,10],[873,10],[31,10],[234,10],[706,10],[111,10],[653,10],[821,10],[837,10],[728,10],[502,10],[360,10],[891,10],[210,10],[682,10],[161,10],[150,10],[787,10],[754,10],[252,10],[528,10],[560,10],[42,10],[482,10],[109,10],[995,10],[1019,10],[2,10],[308,10],[648,10],[604,10],[566,10],[469,10],[480,10],[524,10],[984,10],[382,10],[508,10],[177,10],[996,10],[19,10],[937,10],[318,10],[495,10],[586,10],[710,10],[342,10],[254,10],[433,10],[322,10],[88,10],[115,10],[170,10],[623,10],[791,10],[67,10],[547,10],[401,10],[21,10],[121,10],[146,10],[77,10],[79,10],[211,10],[30,10],[437,10],[599,10],[660,10],[718,10],[461,10],[20,10],[449,10],[183,10],[712,10],[435,10],[752,10],[962,10],[888,10],[777,10],[770,10],[37,10],[796,10],[316,10],[693,10],[361,10],[804,10],[9,10],[672,10],[414,10],[382,10],[456,10],[129,10],[479,10],[653,10],[1022,10],[505,10],[795,10],[834,10],[31,10],[468,10],[959,10],[698,10],[445,10],[647,10],[143,10],[323,10],[179,10],[936,10],[361,10],[781,10],[844,10],[343,10],[786,10],[266,10],[660,10],[627,10],[1003,10],[109,10],[68,10],[605,10],[803,10],[312,10],[686,10],[103,10],[569,10],[88,10],[65,10],[664,10],[486,10],[434,10],[228,10],[336,10],[318,10],[165,10],[933,10],[790,10],[537,10],[900,10],[584,10],[691,10],[683,10],[93,10],[338,10],[588,10],[28,10],[642,10],[877,10],[791,10],[338,10],[306,10],[927,10],[29,10],[928,10],[881,10],[780,10],[124,10],[990,10],[634,10],[195,10],[652,10],[339,10],[414,10],[166,10],[517,10],[822,10],[739,10],[414,10],[178,10],[765,10],[1,10],[846,10],[780,10],[241,10],[689,10],[60,10],[705,10],[116,10],[624,10],[573,10],[444,10],[865,10],[240,10],[602,10],[89,10],[747,10],[739,10],[45,10],[972,10],[556,10],[111,10],[550,10],[858,10],[63,10],[11,10],[650,10],[297,10],[154,10],[179,10],[938,10],[399,10],[232,10],[524,10],[362,10],[640,10],[558,10],[168,10],[684,10],[834,10],[477,10],[303,10],[161,10],[568,10],[110,10],[793,10],[310,10],[189,10],[604,10],[633,10],[557,10],[17,10],[470,10],[21,10],[492,10],[555,10],[828,10],[254,10],[780,10],[457,10],[1016,10],[997,10],[61,10],[571,10],[297,10],[578,10],[775,10],[630,10],[483,10],[623,10],[965,10],[983,10],[967,10],[460,10],[447,10],[599,10],[360,10],[548,10],[975,10],[697,10],[993,10],[18,10],[881,10],[295,10],[864,10],[296,10],[510,10],[200,10],[541,10],[269,10],[1012,10],[438,10],[889,10],[148,10],[319,10],[632,10],[103,10],[822,10],[156,10],[974,10],[727,10],[811,10],[136,10],[719,10],[805,10],[482,10],[526,10],[976,10],[18,10],[111,10],[858,10],[200,10],[351,10],[69,10],[69,10],[249,10],[22,10],[484,10],[860,10],[740,10],[230,10],[713,10],[578,10],[609,10],[498,10],[60,10],[80,10],[76,10],[754,10],[842,10],[497,10],[127,10],[189,10],[968,10],[151,10],[558,10],[923,10],[101,10],[242,10],[266,10],[538,10],[444,10],[687,10],[33,10],[350,10],[839,10],[764,10],[128,10],[192,10],[101,10],[778,10],[601,10],[705,10],[562,10],[787,10],[136,10],[631,10],[738,10],[910,10],[674,10],[248,10],[21,10],[93,10],[13,10],[69,10],[287,10],[1000,10],[407,10],[131,10],[490,10],[861,10],[799,10],[101,10],[247,10],[569,10],[602,10],[457,10],[832,10],[112,10],[317,10],[882,10],[653,10],[547,10],[450,10],[465,10],[76,10],[63,10],[36,10],[143,10],[708,10],[882,10],[56,10],[256,10],[376,10],[846,10],[967,10],[895,10],[9,10],[7,10],[531,10],[909,10],[632,10],[532,10],[461,10],[601,10],[207,10],[233,10],[994,10],[358,10],[955,10],[356,10],[28,10],[235,10],[123,10],[596,10],[468,10],[132,10],[91,10],[813,10],[422,10],[530,10],[451,10],[413,10],[409,10],[416,10],[539,10],[923,10],[618,10],[395,10],[859,10],[287,10],[847,10],[725,10],[1016,10],[567,10],[375,10],[813,10],[272,10],[841,10],[548,10],[1005,10],[136,10],[719,10],[465,10],[998,10],[863,10],[624,10],[625,10],[33,10],[475,10],[348,10],[121,10],[1011,10],[29,10],[358,10],[241,10],[841,10],[980,10],[755,10],[944,10],[651,10],[503,10],[49,10],[847,10],[520,10],[436,10],[758,10],[189,10],[971,10],[909,10],[111,10],[198,10],[453,10],[986,10],[233,10],[763,10],[109,10],[967,10],[614,10],[519,10],[572,10],[1011,10],[46,10],[664,10],[308,10],[748,10],[374,10],[178,10],[812,10],[443,10],[125,10],[682,10],[893,10],[18,10],[775,10],[734,10],[679,10],[387,10],[861,10],[725,10],[435,10],[917,10],[443,10],[781,10],[863,10],[7,10],[278,10],[651,10],[394,10],[875,10],[543,10],[697,10],[177,10],[175,10],[899,10],[358,10],[182,10],[836,10],[269,10],[764,10],[913,10],[761,10],[321,10],[571,10],[707,10],[834,10],[901,10],[510,10],[201,10],[242,10],[963,10],[22,10],[869,10],[159,10],[406,10],[808,10],[918,10],[136,10],[134,10],[798,10],[866,10],[336,10],[1017,10],[842,10],[662,10],[322,10],[436,10],[248,10],[504,10],[452,10],[766,10],[287,10],[297,10],[165,10],[634,10],[478,10],[559,10],[845,10],[309,10],[81,10],[931,10],[825,10],[712,10],[960,10],[508,10],[483,10],[676,10],[172,10],[757,10],[987,10],[411,10],[527,10],[209,10],[611,10],[640,10],[232,10],[668,10],[478,10],[57,10],[696,10],[204,10],[826,10],[253,10],[618,10],[186,10],[373,10],[703,10],[857,10],[246,10],[682,10],[763,10],[146,10],[185,10],[875,10],[370,10],[747,10],[184,10],[886,10],[45,10],[499,10],[823,10],[478,10],[139,10],[368,10],[1011,10],[137,10],[1009,10],[200,10],[204,10],[982,10],[569,10],[335,10],[443,10],[37,10],[902,10],[134,10],[597,10],[1013,10],[982,10],[673,10],[720,10],[297,10],[79,10],[580,10],[372,10],[673,10],[7,10],[909,10],[260,10],[210,10],[152,10],[362,10],[727,10],[93,10],[240,10],[166,10],[70,10],[574,10],[496,10],[145,10],[25,10],[96,10],[118,10],[936,10],[437,10],[314,10],[257,10],[201,10],[987,10],[72,10],[169,10],[1013,10],[318,10],[542,10],[683,10],[21,10],[201,10],[578,10],[803,10],[841,10],[117,10],[705,10],[609,10],[773,10],[710,10],[12,10],[911,10],[232,10],[134,10],[687,10],[921,10],[275,10],[375,10],[163,10],[689,10],[446,10],[68,10],[441,10],[867,10],[349,10],[516,10],[630,10],[905,10],[759,10],[28,10],[773,10],[482,10],[167,10],[486,10],[177,10],[981,10],[729,10],[516,10],[479,10],[142,10],[817,10],[942,10],[838,10],[499,10],[230,10],[378,10],[638,10],[758,10],[733,10],[129,10],[271,10],[708,10],[934,10],[313,10],[727,10],[860,10],[749,10],[698,10],[341,10],[275,10],[930,10],[72,10],[182,10],[649,10],[829,10],[422,10],[130,10],[779,10],[85,10],[871,10],[59,10],[863,10],[755,10],[113,10],[184,10],[495,10],[782,10],[634,10],[855,10],[275,10],[684,10],[235,10],[597,10],[102,10],[622,10],[572,10],[735,10],[455,10],[162,10],[90,10],[893,10],[133,10],[932,10],[35,10],[303,10],[220,10],[489,10],[943,10],[780,10],[921,10],[87,10],[138,10],[447,10],[516,10],[859,10],[32,10],[795,10],[316,10],[709,10],[484,10],[529,10],[501,10],[45,10],[423,10],[493,10],[168,10],[691,10],[347,10],[172,10],[694,10],[232,10],[772,10],[419,10],[14,10],[200,10],[551,10],[193,10],[762,10],[576,10],[885,10],[53,10],[154,10],[554,10],[580,10],[926,10],[904,10],[447,10],[365,10],[720,10],[227,10],[155,10],[547,10],[258,10],[411,10],[615,10],[438,10],[735,10],[955,10],[757,10],[237,10],[398,10],[639,10],[112,10],[838,10],[150,10],[548,10],[472,10],[561,10],[417,10],[883,10],[985,10],[436,10],[752,10],[500,10],[759,10],[170,10],[118,10],[522,10],[527,10],[765,10],[390,10],[402,10],[317,10],[321,10],[338,10],[956,10],[64,10],[410,10],[975,10],[428,10],[269,10],[65,10],[294,10],[982,10],[211,10],[735,10],[805,10],[377,10],[239,10],[443,10],[269,10],[838,10],[628,10],[150,10],[604,10],[28,10],[34,10],[602,10],[506,10],[89,10],[20,10],[623,10],[357,10],[802,10],[938,10],[759,10],[577,10],[131,10],[641,10],[658,10],[364,10],[953,10],[478,10],[660,10],[885,10],[266,10],[823,10],[628,10],[762,10],[61,10],[16,10],[705,10],[465,10],[509,10],[190,10],[567,10],[142,10],[282,10],[148,10],[950,10],[930,10],[281,10],[576,10],[441,10],[685,10],[837,10],[88,10],[322,10],[490,10],[777,10],[309,10],[220,10],[98,10],[354,10],[220,10],[1016,10],[337,10],[631,10],[965,10],[269,10],[358,10],[820,10],[49,10],[373,10],[532,10],[227,10],[497,10],[797,10],[72,10],[901,10],[965,10],[15,10],[490,10],[70,10],[836,10],[176,10],[926,10],[978,10],[627,10],[738,10],[232,10],[261,10],[192,10],[265,10],[905,10],[636,10],[291,10],[805,10],[1,10],[267,10],[949,10],[785,10],[804,10],[90,10],[834,10],[66,10],[714,10],[807,10],[72,10],[646,10],[477,10],[575,10],[788,10],[749,10],[943,10],[847,10],[82,10],[754,10],[604,10],[748,10],[705,10],[254,10],[482,10],[1002,10],[31,10],[10,10],[637,10],[337,10],[753,10],[522,10],[128,10],[578,10],[571,10],[93,10],[786,10],[247,10],[730,10],[184,10],[198,10],[166,10],[270,10],[802,10],[335,10],[405,10],[490,10],[1009,10],[97,10],[336,10],[298,10],[6,10],[405,10],[924,10],[548,10],[462,10],[978,10],[136,10],[729,10],[271,10],[287,10],[293,10],[159,10],[553,10],[859,10],[485,10],[256,10],[442,10],[626,10],[337,10],[435,10],[477,10],[642,10],[176,10],[401,10],[779,10],[187,10],[923,10],[193,10],[948,10],[483,10],[657,10],[415,10],[417,10],[826,10],[774,10],[593,10],[588,10],[81,10],[344,10],[757,10],[144,10],[865,10],[197,10],[627,10],[844,10],[920,10],[18,10],[791,10],[657,10],[162,10],[266,10],[682,10],[456,10],[764,10],[242,10],[968,10],[960,10],[300,10],[556,10],[367,10],[652,10],[653,10],[523,10],[578,10],[95,10],[562,10],[736,10],[435,10],[560,10],[901,10],[529,10],[101,10],[856,10],[633,10],[838,10],[387,10],[273,10],[619,10],[199,10],[309,10],[432,10],[214,10],[360,10],[420,10],[579,10],[996,10],[244,10],[128,10],[431,10],[606,10],[166,10],[588,10],[189,10],[291,10],[344,10],[519,10],[247,10],[622,10],[371,10],[692,10],[174,10],[647,10],[46,10],[635,10],[322,10],[640,10],[570,10],[347,10],[257,10],[464,10],[1002,10],[159,10],[692,10],[42,10],[591,10],[500,10],[657,10],[384,10],[42,10],[58,10],[887,10],[741,10],[617,10],[158,10],[913,10],[136,10],[959,10],[842,10],[263,10],[184,10],[488,10],[235,10],[971,10],[98,10],[878,10],[118,10],[273,10],[744,10],[824,10],[454,10],[653,10],[535,10],[69,10],[664,10],[884,10],[684,10],[913,10],[744,10],[40,10],[692,10],[444,10],[543,10],[456,10],[156,10],[398,10],[832,10],[431,10],[650,10],[136,10],[411,10],[372,10],[329,10],[538,10],[528,10],[897,10],[472,10],[688,10],[962,10],[644,10],[746,10],[98,10],[858,10],[675,10],[325,10],[642,10],[106,10],[96,10],[319,10],[422,10],[877,10],[710,10],[960,10],[1023,10],[790,10],[946,10],[866,10],[865,10],[958,10],[964,10],[606,10],[513,10],[181,10],[387,10],[894,10],[755,10],[455,10],[790,10],[677,10],[964,10],[738,10],[310,10],[649,10],[905,10],[900,10],[514,10],[853,10],[282,10],[478,10],[684,10],[478,10],[783,10],[871,10],[613,10],[786,10],[981,10],[727,10],[6,10],[683,10],[413,10],[216,10],[882,10],[867,10],[952,10],[614,10],[829,10],[346,10],[578,10],[461,10],[316,10],[525,10],[295,10],[159,10],[987,10],[335,10],[162,10],[220,10],[934,10],[506,10],[929,10],[456,10],[59,10],[986,10],[486,10],[191,10],[368,10],[89,10],[166,10],[705,10],[183,10],[35,10],[764,10],[125,10],[44,10],[103,10],[272,10],[338,10],[202,10],[1,10],[296,10],[911,10],[984,10],[642,10],[536,10],[846,10],[678,10],[153,10],[548,10],[750,10],[583,10],[510,10],[647,10],[82,10],[384,10],[911,10],[840,10],[775,10],[908,10],[183,10],[931,10],[432,10],[1023,10],[806,10],[244,10],[9,10],[248,10],[908,10],[891,10],[497,10],[72,10],[714,10],[659,10],[117,10],[663,10],[740,10],[390,10],[480,10],[302,10],[275,10],[89,10],[635,10],[90,10],[165,10],[960,10],[265,10],[54,10],[729,10],[90,10],[907,10],[65,10],[110,10],[358,10],[352,10],[105,10],[621,10],[835,10],[511,10],[170,10],[617,10],[311,10],[446,10],[32,10],[191,10],[614,10],[795,10],[941,10],[968,10],[480,10],[799,10],[884,10],[819,10],[226,10],[816,10],[256,10],[232,10],[335,10],[700,10],[448,10],[613,10],[578,10],[616,10],[714,10],[289,10],[495,10],[999,10],[216,10],[1001,10],[790,10],[947,10],[499,10],[718,10],[353,10],[131,10],[758,10],[787,10],[704,10],[941,10],[335,10],[609,10],[397,10],[320,10],[121,10],[622,10],[416,10],[142,10],[799,10],[669,10],[113,10],[451,10],[276,10],[689,10],[764,10],[126,10],[237,10],[175,10],[532,10],[196,10],[759,10],[795,10],[796,10],[546,10],[845,10],[389,10],[480,10],[408,10],[480,10],[202,10],[1014,10],[740,10],[52,10],[217,10],[260,10],[323,10],[568,10],[49,10],[945,10],[493,10],[476,10],[136,10],[909,10],[912,10],[392,10],[181,10],[654,10],[410,10],[340,10],[988,10],[802,10],[163,10],[904,10],[855,10],[982,10],[362,10],[665,10],[305,10],[288,10],[474,10],[28,10],[1007,10],[692,10],[924,10],[807,10],[32,10],[598,10],[997,10],[687,10],[734,10],[328,10],[259,10],[910,10],[940,10],[670,10],[197,10],[660,10],[953,10],[670,10],[671,10],[191,10],[124,10],[497,10],[64,10],[906,10],[529,10],[279,10],[132,10],[978,10],[418,10],[256,10],[54,10],[751,10],[653,10],[646,10],[855,10],[843,10],[592,10],[864,10],[809,10],[388,10],[218,10],[60,10],[45,10],[208,10],[529,10],[153,10],[488,10],[423,10],[312,10],[735,10],[641,10],[427,10],[854,10],[658,10],[273,10],[374,10],[814,10],[174,10],[262,10],[771,10],[128,10],[763,10],[921,10],[577,10],[993,10],[930,10],[932,10],[46,10],[816,10],[899,10],[862,10],[706,10],[342,10],[823,10],[860,10],[609,10],[814,10],[511,10],[116,10],[201,10],[472,10],[551,10],[821,10],[314,10],[722,10],[908,10],[461,10],[107,10],[329,10],[36,10],[918,10],[37,10],[921,10],[639,10],[941,10],[275,10],[76,10],[743,10],[129,10],[284,10],[108,10],[229,10],[869,10],[230,10],[159,10],[125,10],[760,10],[951,10],[257,10],[750,10],[232,10],[712,10],[308,10],[752,10],[1013,10],[706,10],[361,10],[601,10],[214,10],[629,10],[662,10],[598,10],[691,10],[479,10],[728,10],[282,10],[196,10],[494,10],[626,10],[417,10],[255,10],[294,10],[905,10],[663,10],[900,10],[756,10],[961,10],[257,10],[394,10],[526,10],[633,10],[738,10],[299,10],[227,10],[787,10],[372,10],[321,10],[917,10],[745,10],[795,10],[541,10],[943,10],[489,10],[913,10],[788,10],[736,10],[474,10],[376,10],[467,10],[358,10],[796,10],[779,10],[275,10],[15,10],[785,10],[999,10],[9,10],[102,10],[89,10],[94,10],[905,10],[478,10],[728,10],[753,10],[530,10],[576,10],[633,10],[235,10],[125,10],[105,10],[650,10],[465,10],[979,10],[202,10],[611,10],[225,10],[287,10],[122,10],[555,10],[297,10],[43,10],[608,10],[793,10],[257,10],[614,10],[684,10],[142,10],[173,10],[18,10],[122,10],[375,10],[111,10],[36,10],[348,10],[701,10],[48,10],[325,10],[623,10],[540,10],[445,10],[138,10],[903,10],[491,10],[282,10],[272,10],[632,10],[381,10],[289,10],[259,10],[623,10],[839,10],[695,10],[53,10],[556,10],[441,10],[864,10],[797,10],[12,10],[102,10],[339,10],[263,10],[69,10],[204,10],[763,10],[797,10],[129,10],[991,10],[697,10],[177,10],[548,10],[623,10],[304,10],[947,10],[811,10],[572,10],[252,10],[526,10],[501,10],[183,10],[31,10],[486,10],[729,10],[792,10],[526,10],[891,10],[628,10],[785,10],[290,10],[518,10],[144,10],[257,10],[506,10],[599,10],[700,10],[158,10],[367,10],[136,10],[735,10],[613,10],[190,10],[213,10],[178,10],[299,10],[183,10],[844,10],[74,10],[467,10],[630,10],[360,10],[595,10],[259,10],[960,10],[551,10],[280,10],[178,10],[420,10],[408,10],[63,10],[932,10],[45,10],[816,10],[656,10],[149,10],[727,10],[408,10],[614,10],[765,10],[489,10],[526,10],[549,10],[665,10],[696,10],[798,10],[11,10],[574,10],[586,10],[349,10],[728,10],[984,10],[362,10],[143,10],[679,10],[695,10],[401,10],[173,10],[362,10],[656,10],[808,10],[259,10],[320,10],[671,10],[77,10],[795,10],[538,10],[256,10],[315,10],[610,10],[468,10],[301,10],[257,10],[991,10],[767,10],[90,10],[68,10],[26,10],[82,10],[491,10],[971,10],[21,10],[38,10],[502,10],[409,10],[74,10],[918,10],[471,10],[1002,10],[766,10],[833,10],[826,10],[864,10],[351,10],[307,10],[309,10],[264,10],[1010,10],[355,10],[487,10],[139,10],[155,10],[726,10],[944,10],[94,10],[925,10],[569,10],[445,10],[502,10],[548,10],[246,10],[890,10],[988,10],[7,10],[555,10],[943,10],[666,10],[281,10],[521,10],[106,10],[14,10],[591,10],[966,10],[437,10],[288,10],[460,10],[794,10],[872,10],[287,10],[930,10],[302,10],[679,10],[926,10],[819,10],[179,10],[250,10],[916,10],[1,10],[1021,10],[673,10],[934,10],[899,10],[424,10],[668,10],[610,10],[8,10],[219,10],[618,10],[853,10],[350,10],[82,10],[484,10],[74,10],[607,10],[940,10],[92,10],[512,10],[801,10],[995,10],[648,10],[984,10],[222,10],[398,10],[744,10],[581,10],[429,10],[292,10],[788,10],[547,10],[600,10],[962,10],[11,10],[710,10],[59,10],[167,10],[91,10],[269,10],[12,10],[744,10],[837,10],[396,10],[573,10],[538,10],[810,10],[944,10],[676,10],[392,10],[445,10],[554,10],[938,10],[292,10],[627,10],[21,10],[397,10],[112,10],[43,10],[452,10],[580,10],[820,10],[504,10],[461,10],[312,10],[55,10],[572,10],[89,10],[760,10],[756,10],[875,10],[93,10],[866,10],[120,10],[836,10],[401,10],[331,10],[186,10],[633,10],[791,10],[237,10],[365,10],[906,10],[810,10],[488,10],[825,10],[654,10],[802,10],[398,10],[489,10],[95,10],[744,10],[666,10],[804,10],[240,10],[1023,10],[472,10],[737,10],[836,10],[247,10],[182,10],[352,10],[468,10],[661,10],[578,10],[162,10],[928,10],[975,10],[718,10],[24,10],[223,10],[510,10],[28,10],[501,10],[61,10],[503,10],[904,10],[13,10],[831,10],[847,10],[453,10],[573,10],[719,10],[742,10],[588,10],[843,10],[383,10],[355,10],[233,10],[1002,10],[872,10],[327,10],[912,10],[240,10],[901,10],[556,10],[660,10],[553,10],[82,10],[449,10],[210,10],[895,10],[961,10],[16,10],[1011,10],[432,10],[594,10],[696,10],[99,10],[631,10],[95,10],[238,10],[718,10],[59,10],[466,10],[304,10],[976,10],[463,10],[737,10],[867,10],[686,10],[447,10],[351,10],[441,10],[963,10],[371,10],[212,10],[553,10],[358,10],[213,10],[452,10],[824,10],[359,10],[361,10],[321,10],[93,10],[400,10],[972,10],[698,10],[942,10],[983,10],[354,10],[341,10],[386,10],[353,10],[610,10],[611,10],[690,10],[342,10],[456,10],[355,10],[183,10],[959,10],[1000,10],[946,10],[785,10],[460,10],[709,10],[222,10],[356,10],[596,10],[198,10],[144,10],[848,10],[729,10],[330,10],[635,10],[972,10],[143,10],[659,10],[115,10],[954,10],[724,10],[275,10],[166,10],[439,10],[815,10],[425,10],[614,10],[281,10],[183,10],[882,10],[718,10],[698,10],[812,10],[105,10],[366,10],[211,10],[69,10],[930,10],[167,10],[966,10],[527,10],[467,10],[909,10],[332,10],[849,10],[503,10],[882,10],[50,10],[737,10],[558,10],[131,10],[8,10],[153,10],[466,10],[136,10],[477,10],[22,10],[457,10],[417,10],[791,10],[724,10],[811,10],[211,10],[454,10],[279,10],[614,10],[272,10],[182,10],[396,10],[712,10],[566,10],[860,10],[88,10],[335,10],[847,10],[72,10],[921,10],[824,10],[571,10],[356,10],[84,10],[28,10],[150,10],[544,10],[426,10],[996,10],[642,10],[518,10],[524,10],[997,10],[322,10],[56,10],[93,10],[824,10],[136,10],[789,10],[248,10],[419,10],[366,10],[152,10],[913,10],[363,10],[535,10],[943,10],[841,10],[771,10],[272,10],[338,10],[11,10],[585,10],[776,10],[278,10],[173,10],[736,10],[503,10],[431,10],[341,10],[38,10],[751,10],[434,10],[720,10],[991,10],[485,10],[116,10],[563,10],[317,10],[625,10],[646,10],[27,10],[182,10],[277,10],[465,10],[990,10],[452,10],[716,10],[952,10],[701,10],[933,10],[332,10],[1000,10],[6,10],[446,10],[492,10],[183,10],[833,10],[577,10],[704,10],[398,10],[443,10],[526,10],[74,10],[136,10],[697,10],[196,10],[725,10],[809,10],[985,10],[408,10],[221,10],[148,10],[242,10],[373,10],[53,10],[799,10],[666,10],[685,10],[706,10],[947,10],[95,10],[62,10],[737,10],[602,10],[687,10],[989,10],[522,10],[690,10],[512,10],[909,10],[39,10],[720,10],[30,10],[667,10],[464,10],[943,10],[34,10],[906,10],[257,10],[380,10],[96,10],[586,10],[1021,10],[330,10],[881,10],[32,10],[807,10],[1006,10],[611,10],[1009,10],[687,10],[495,10],[80,10],[48,10],[335,10],[834,10],[607,10],[73,10],[657,10],[972,10],[1019,10],[271,10],[385,10],[182,10],[645,10],[692,10],[790,10],[307,10],[907,10],[931,10],[292,10],[899,10],[837,10],[37,10],[354,10],[423,10],[354,10],[297,10],[515,10],[427,10],[252,10],[9,10],[233,10],[549,10],[357,10],[644,10],[669,10],[547,10],[639,10],[510,10],[1022,10],[560,10],[142,10],[240,10],[188,10],[229,10],[1007,10],[921,10],[964,10],[825,10],[225,10],[458,10],[642,10],[503,10],[673,10],[369,10],[152,10],[843,10],[425,10],[396,10],[677,10],[502,10],[998,10],[998,10],[995,10],[761,10],[431,10],[880,10],[668,10],[711,10],[275,10],[867,10],[589,10],[978,10],[506,10],[63,10],[14,10],[736,10],[81,10],[930,10],[286,10],[766,10],[137,10],[965,10],[830,10],[362,10],[482,10],[948,10],[244,10],[871,10],[204,10],[365,10],[688,10],[798,10],[962,10],[774,10],[663,10],[985,10],[123,10],[475,10],[631,10],[318,10],[751,10],[470,10],[830,10],[759,10],[788,10],[238,10],[66,10],[217,10],[665,10],[546,10],[716,10],[937,10],[976,10],[656,10],[333,10],[444,10],[788,10],[505,10],[857,10],[55,10],[385,10],[185,10],[121,10],[1021,10],[196,10],[633,10],[362,10],[54,10],[879,10],[151,10],[785,10],[754,10],[1005,10],[930,10],[212,10],[852,10],[884,10],[598,10],[840,10],[287,10],[72,10],[134,10],[612,10],[695,10],[733,10],[51,10],[152,10],[678,10],[703,10],[578,10],[629,10],[273,10],[583,10],[216,10],[195,10],[201,10],[708,10],[598,10],[781,10],[331,10],[124,10],[210,10],[443,10],[428,10],[102,10],[50,10],[548,10],[917,10],[302,10],[245,10],[248,10],[105,10],[27,10],[12,10],[753,10],[1004,10],[278,10],[376,10],[272,10],[851,10],[652,10],[268,10],[237,10],[770,10],[704,10],[39,10],[25,10],[626,10],[784,10],[521,10],[817,10],[420,10],[364,10],[326,10],[518,10],[186,10],[897,10],[128,10],[968,10],[716,10],[740,10],[644,10],[387,10],[260,10],[346,10],[27,10],[879,10],[173,10],[815,10],[282,10],[937,10],[25,10],[578,10],[344,10],[367,10],[1009,10],[676,10],[734,10],[932,10],[939,10],[563,10],[923,10],[478,10],[925,10],[178,10],[981,10],[260,10],[710,10],[985,10],[761,10],[9,10],[422,10],[961,10],[809,10],[998,10],[142,10],[192,10],[454,10],[397,10],[90,10],[511,10],[107,10],[844,10],[501,10],[975,10],[761,10],[357,10],[719,10],[430,10],[294,10],[689,10],[919,10],[901,10],[463,10],[484,10],[165,10],[692,10],[512,10],[840,10],[590,10],[307,10],[961,10],[720,10],[566,10],[955,10],[346,10],[302,10],[218,10],[771,10],[720,10],[105,10],[916,10],[346,10],[420,10],[12,10],[461,10],[873,10],[322,10],[918,10],[462,10],[672,10],[85,10],[861,10],[234,10],[941,10],[304,10],[705,10],[572,10],[1001,10],[545,10],[960,10],[240,10],[335,10],[826,10],[931,10],[191,10],[534,10],[975,10],[638,10],[649,10],[416,10],[907,10],[347,10],[748,10],[759,10],[171,10],[103,10],[633,10],[330,10],[582,10],[284,10],[391,10],[847,10],[476,10],[992,10],[79,10],[399,10],[237,10],[196,10],[281,10],[769,10],[278,10],[673,10],[618,10],[332,10],[296,10],[674,10],[842,10],[798,10],[233,10],[187,10],[441,10],[103,10],[948,10],[113,10],[405,10],[199,10],[432,10],[934,10],[147,10],[961,10],[560,10],[619,10],[909,10],[967,10],[44,10],[427,10],[367,10],[272,10],[325,10],[599,10],[620,10],[146,10],[883,10],[419,10],[367,10],[38,10],[26,10],[842,10],[685,10],[750,10],[793,10],[169,10],[188,10],[785,10],[432,10],[898,10],[850,10],[477,10],[81,10],[931,10],[321,10],[210,10],[946,10],[153,10],[196,10],[418,10],[53,10],[653,10],[197,10],[902,10],[640,10],[9,10],[49,10],[436,10],[258,10],[357,10],[155,10],[272,10],[539,10],[940,10],[841,10],[802,10],[967,10],[750,10],[524,10],[613,10],[25,10],[393,10],[587,10],[222,10],[685,10],[93,10],[958,10],[925,10],[731,10],[751,10],[885,10],[588,10],[951,10],[238,10],[620,10],[412,10],[133,10],[892,10],[359,10],[975,10],[486,10],[440,10],[696,10],[393,10],[599,10],[521,10],[466,10],[538,10],[458,10],[490,10],[249,10],[495,10],[180,10],[12,10],[898,10],[934,10],[847,10],[815,10],[834,10],[380,10],[42,10],[807,10],[400,10],[115,10],[24,10],[923,10],[37,10],[208,10],[164,10],[4,10],[563,10],[994,10],[716,10],[149,10],[236,10],[561,10],[856,10],[429,10],[894,10],[679,10],[279,10],[664,10],[603,10],[735,10],[515,10],[272,10],[643,10],[327,10],[909,10],[187,10],[475,10],[63,10],[825,10],[336,10],[204,10],[910,10],[379,10],[267,10],[746,10],[604,10],[162,10],[862,10],[185,10],[931,10],[929,10],[208,10],[187,10],[426,10],[534,10],[937,10],[30,10],[219,10],[612,10],[566,10],[984,10],[243,10],[94,10],[560,10],[1013,10],[695,10],[290,10],[626,10],[205,10],[535,10],[148,10],[1005,10],[648,10],[436,10],[817,10],[69,10],[624,10],[302,10],[950,10],[179,10],[56,10],[73,10],[598,10],[836,10],[383,10],[871,10],[209,10],[1007,10],[527,10],[96,10],[496,10],[865,10],[689,10],[946,10],[676,10],[926,10],[192,10],[393,10],[647,10],[620,10],[552,10],[282,10],[218,10],[611,10],[841,10],[968,10],[332,10],[938,10],[649,10],[274,10],[670,10],[272,10],[982,10],[1007,10],[882,10],[412,10],[286,10],[871,10],[987,10],[910,10],[276,10],[548,10],[568,10],[513,10],[44,10],[27,10],[562,10],[190,10],[345,10],[785,10],[1022,10],[838,10],[693,10],[26,10],[320,10],[835,10],[312,10],[933,10],[340,10],[707,10],[442,10],[50,10],[212,10],[882,10],[54,10],[585,10],[769,10],[435,10],[326,10],[411,10],[634,10],[507,10],[706,10],[425,10],[277,10],[354,10],[805,10],[610,10],[338,10],[247,10],[383,10],[554,10],[422,10],[701,10],[181,10],[767,10],[755,10],[551,10],[805,10],[906,10],[769,10],[828,10],[741,10],[756,10],[523,10],[429,10],[851,10],[1004,10],[679,10],[103,10],[419,10],[18,10],[896,10],[829,10],[309,10],[517,10],[778,10],[685,10],[114,10],[159,10],[906,10],[850,10],[904,10],[562,10],[519,10],[773,10],[113,10],[862,10],[866,10],[270,10],[450,10],[866,10],[687,10],[1016,10],[514,10],[427,10],[553,10],[687,10],[808,10],[338,10],[128,10],[77,10],[584,10],[229,10],[298,10],[182,10],[417,10],[416,10],[420,10],[948,10],[399,10],[388,10],[613,10],[595,10],[653,10],[95,10],[409,10],[681,10],[472,10],[696,10],[187,10],[920,10],[1008,10],[293,10],[951,10],[178,10],[633,10],[898,10],[174,10],[825,10],[287,10],[477,10],[44,10],[74,10],[701,10],[113,10],[741,10],[850,10],[332,10],[792,10],[656,10],[293,10],[848,10],[153,10],[711,10],[459,10],[919,10],[454,10],[15,10],[24,10],[276,10],[888,10],[707,10],[293,10],[595,10],[964,10],[358,10],[377,10],[808,10],[249,10],[1014,10],[348,10],[165,10],[590,10],[167,10],[600,10],[882,10],[368,10],[510,10],[1004,10],[553,10],[65,10],[212,10],[30,10],[873,10],[506,10],[736,10],[709,10],[814,10],[176,10],[428,10],[554,10],[929,10],[872,10],[63,10],[457,10],[450,10],[25,10],[579,10],[2,10],[682,10],[203,10],[245,10],[461,10],[306,10],[264,10],[973,10],[715,10],[364,10],[134,10],[297,10],[924,10],[8,10],[213,10],[472,10],[386,10],[114,10],[225,10],[996,10],[909,10],[462,10],[866,10],[320,10],[50,10],[15,10],[191,10],[392,10],[62,10],[882,10],[451,10],[330,10],[590,10],[710,10],[757,10],[946,10],[114,10],[292,10],[630,10],[587,10],[291,10],[518,10],[809,10],[57,10],[523,10],[675,10],[152,10],[853,10],[443,10],[711,10],[295,10],[575,10],[379,10],[90,10],[532,10],[981,10],[597,10],[287,10],[1021,10],[744,10],[328,10],[833,10],[906,10],[763,10],[167,10],[475,10],[676,10],[992,10],[38,10],[384,10],[410,10],[180,10],[691,10],[705,10],[311,10],[119,10],[972,10],[302,10],[65,10],[651,10],[38,10],[520,10],[463,10],[789,10],[769,10],[23,10],[799,10],[803,10],[625,10],[450,10],[412,10],[221,10],[860,10],[22,10],[838,10],[838,10],[573,10],[286,10],[597,10],[200,10],[505,10],[694,10],[555,10],[450,10],[240,10],[582,10],[641,10],[384,10],[390,10],[730,10],[518,10],[491,10],[820,10],[765,10],[505,10],[542,10],[464,10],[370,10],[55,10],[274,10],[165,10],[96,10],[767,10],[612,10],[531,10],[104,10],[996,10],[561,10],[910,10],[996,10],[406,10],[981,10],[886,10],[477,10],[759,10],[235,10],[126,10],[57,10],[12,10],[304,10],[836,10],[497,10],[405,10],[728,10],[500,10],[712,10],[926,10],[361,10],[932,10],[376,10],[1002,10],[520,10],[276,10],[846,10],[550,10],[293,10],[992,10],[923,10],[821,10],[264,10],[519,10],[747,10],[418,10],[750,10],[820,10],[541,10],[1008,10],[619,10],[267,10],[363,10],[605,10],[580,10],[237,10],[431,10],[176,10],[125,10],[270,10],[48,10],[739,10],[762,10],[565,10],[689,10],[809,10],[717,10],[652,10],[748,10],[999,10],[305,10],[779,10],[169,10],[447,10],[229,10],[454,10],[482,10],[1022,10],[83,10],[657,10],[806,10],[573,10],[117,10],[211,10],[274,10],[35,10],[599,10],[876,10],[904,10],[256,10],[517,10],[579,10],[200,10],[15,10],[309,10],[671,10],[222,10],[116,10],[640,10],[692,10],[792,10],[772,10],[716,10],[115,10],[83,10],[705,10],[772,10],[553,10],[330,10],[857,10],[268,10],[806,10],[357,10],[93,10],[563,10],[431,10],[944,10],[576,10],[163,10],[100,10],[344,10],[341,10],[106,10],[893,10],[905,10],[865,10],[451,10],[106,10],[683,10],[730,10],[114,10],[662,10],[737,10],[387,10],[10,10],[186,10],[511,10],[603,10],[657,10],[113,10],[951,10],[236,10],[82,10],[746,10],[398,10],[441,10],[131,10],[269,10],[572,10],[743,10],[487,10],[155,10],[782,10],[568,10],[557,10],[809,10],[275,10],[850,10],[129,10],[457,10],[509,10],[233,10],[386,10],[511,10],[175,10],[659,10],[108,10],[335,10],[173,10],[379,10],[824,10],[792,10],[622,10],[918,10],[699,10],[131,10],[1006,10],[490,10],[84,10],[220,10],[135,10],[760,10],[16,10],[353,10],[769,10],[5,10],[876,10],[899,10],[680,10],[475,10],[423,10],[571,10],[686,10],[827,10],[420,10],[107,10],[986,10],[1000,10],[365,10],[770,10],[605,10],[819,10],[538,10],[705,10],[878,10],[284,10],[198,10],[597,10],[20,10],[738,10],[260,10],[423,10],[429,10],[878,10],[605,10],[866,10],[241,10],[61,10],[734,10],[287,10],[784,10],[329,10],[618,10],[579,10],[665,10],[495,10],[262,10],[731,10],[144,10],[192,10],[19,10],[91,10],[482,10],[633,10],[393,10],[57,10],[491,10],[338,10],[527,10],[461,10],[185,10],[451,10],[612,10],[254,10],[516,10],[845,10],[555,10],[767,10],[1015,10],[199,10],[482,10],[600,10],[433,10],[783,10],[628,10],[224,10],[170,10],[794,10],[292,10],[773,10],[923,10],[415,10],[423,10],[278,10],[724,10],[949,10],[358,10],[109,10],[420,10],[775,10],[7,10],[535,10],[479,10],[256,10],[20,10],[580,10],[579,10],[151,10],[89,10],[581,10],[114,10],[435,10],[423,10],[740,10],[595,10],[684,10],[259,10],[61,10],[356,10],[704,10],[234,10],[334,10],[30,10],[563,10],[902,10],[14,10],[635,10],[772,10],[574,10],[537,10],[341,10],[942,10],[395,10],[765,10],[567,10],[450,10],[289,10],[983,10],[94,10],[761,10],[641,10],[263,10],[848,10],[654,10],[163,10],[188,10],[642,10],[638,10],[653,10],[570,10],[78,10],[787,10],[33,10],[195,10],[329,10],[844,10],[392,10],[356,10],[796,10],[434,10],[677,10],[389,10],[81,10],[238,10],[332,10],[563,10],[184,10],[238,10],[831,10],[836,10],[794,10],[339,10],[206,10],[417,10],[470,10],[214,10],[139,10],[333,10],[882,10],[845,10],[808,10],[667,10],[148,10],[12,10],[621,10],[130,10],[225,10],[735,10],[784,10],[959,10],[898,10],[484,10],[515,10],[976,10],[826,10],[272,10],[547,10],[734,10],[793,10],[638,10],[570,10],[207,10],[116,10],[987,10],[777,10],[82,10],[831,10],[914,10],[268,10],[429,10],[536,10],[330,10],[332,10],[390,10],[570,10],[229,10],[810,10],[804,10],[752,10],[500,10],[698,10],[102,10],[416,10],[618,10],[360,10],[832,10],[571,10],[166,10],[783,10],[375,10],[560,10],[296,10],[466,10],[295,10],[653,10],[263,10],[341,10],[503,10],[351,10],[118,10],[583,10],[388,10],[971,10],[87,10],[616,10],[590,10],[989,10],[599,10],[52,10],[496,10],[34,10],[726,10],[630,10],[338,10],[169,10],[212,10],[706,10],[297,10],[748,10],[335,10],[162,10],[560,10],[115,10],[937,10],[661,10],[941,10],[1004,10],[568,10],[738,10],[725,10],[940,10],[835,10],[395,10],[569,10],[355,10],[619,10],[317,10],[1019,10],[457,10],[865,10],[840,10],[624,10],[919,10],[409,10],[497,10],[462,10],[870,10],[661,10],[998,10],[365,10],[138,10],[643,10],[912,10],[658,10],[634,10],[950,10],[187,10],[331,10],[217,10],[693,10],[726,10],[503,10],[70,10],[534,10],[342,10],[47,10],[313,10],[444,10],[811,10],[548,10],[894,10],[673,10],[376,10],[934,10],[207,10],[928,10],[928,10],[749,10],[906,10],[606,10],[613,10],[980,10],[789,10],[1022,10],[546,10],[695,10],[637,10],[207,10],[666,10],[985,10],[766,10],[94,10],[656,10],[245,10],[148,10],[744,10],[684,10],[150,10],[311,10],[565,10],[936,10],[669,10],[122,10],[281,10],[968,10],[102,10],[648,10],[869,10],[990,10],[20,10],[550,10],[737,10],[814,10],[18,10],[351,10],[451,10],[494,10],[139,10],[999,10],[248,10],[398,10],[292,10],[717,10],[26,10],[682,10],[21,10],[692,10],[309,10],[881,10],[223,10],[496,10],[209,10],[1012,10],[957,10],[821,10],[409,10],[380,10],[312,10],[413,10],[62,10],[891,10],[878,10],[779,10],[320,10],[407,10],[44,10],[272,10],[806,10],[475,10],[730,10],[148,10],[965,10],[662,10],[151,10],[115,10],[883,10],[439,10],[125,10],[885,10],[639,10],[78,10],[379,10],[751,10],[184,10],[571,10],[129,10],[717,10],[462,10],[705,10],[299,10],[955,10],[532,10],[941,10],[368,10],[850,10],[211,10],[542,10],[449,10],[752,10],[501,10],[423,10],[307,10],[316,10],[145,10],[327,10],[480,10],[881,10],[809,10],[68,10],[879,10],[667,10],[118,10],[472,10],[504,10],[869,10],[637,10],[81,10],[908,10],[378,10],[133,10],[42,10],[779,10],[959,10],[829,10],[348,10],[157,10],[540,10],[54,10],[603,10],[60,10],[678,10],[443,10],[372,10],[782,10],[924,10],[795,10],[207,10],[143,10],[213,10],[514,10],[835,10],[655,10],[866,10],[516,10],[430,10],[459,10],[556,10],[168,10],[687,10],[543,10],[808,10],[276,10],[802,10],[132,10],[833,10],[472,10],[821,10],[906,10],[765,10],[15,10],[249,10],[568,10],[865,10],[729,10],[773,10],[619,10],[18,10],[133,10],[567,10],[345,10],[283,10],[67,10],[303,10],[348,10],[730,10],[262,10],[246,10],[813,10],[318,10],[444,10],[915,10],[805,10],[935,10],[500,10],[553,10],[903,10],[865,10],[70,10],[283,10],[859,10],[822,10],[489,10],[1019,10],[705,10],[25,10],[827,10],[811,10],[859,10],[815,10],[422,10],[735,10],[824,10],[996,10],[160,10],[88,10],[31,10],[154,10],[183,10],[215,10],[121,10],[923,10],[944,10],[725,10],[20,10],[501,10],[673,10],[662,10],[22,10],[693,10],[70,10],[928,10],[464,10],[814,10],[535,10],[941,10],[206,10],[412,10],[370,10],[486,10],[604,10],[535,10],[679,10],[509,10],[3,10],[469,10],[960,10],[32,10],[124,10],[595,10],[766,10],[748,10],[801,10],[431,10],[490,10],[580,10],[261,10],[341,10],[364,10],[502,10],[14,10],[132,10],[391,10],[777,10],[359,10],[34,10],[391,10],[1006,10],[241,10],[649,10],[94,10],[491,10],[748,10],[66,10],[523,10],[921,10],[511,10],[1008,10],[599,10],[678,10],[418,10],[862,10],[315,10],[790,10],[503,10],[994,10],[230,10],[201,10],[365,10],[556,10],[272,10],[423,10],[579,10],[952,10],[995,10],[900,10],[578,10],[1010,10],[882,10],[276,10],[256,10],[781,10],[331,10],[346,10],[55,10],[124,10],[669,10],[259,10],[703,10],[746,10],[920,10],[236,10],[778,10],[939,10],[766,10],[50,10],[407,10],[460,10],[88,10],[282,10],[556,10],[151,10],[947,10],[28,10],[322,10],[767,10],[850,10],[115,10],[875,10],[413,10],[841,10],[66,10],[889,10],[1020,10],[211,10],[711,10],[394,10],[790,10],[205,10],[777,10],[978,10],[794,10],[629,10],[733,10],[980,10],[280,10],[266,10],[94,10],[975,10],[708,10],[606,10],[875,10],[70,10],[244,10],[502,10],[392,10],[988,10],[261,10],[416,10],[427,10],[678,10],[724,10],[66,10],[342,10],[854,10],[645,10],[20,10],[263,10],[569,10],[493,10],[989,10],[511,10],[847,10],[364,10],[983,10],[549,10],[976,10],[667,10],[357,10],[607,10],[99,10],[585,10],[484,10],[514,10],[807,10],[799,10],[485,10],[834,10],[490,10],[447,10],[841,10],[745,10],[862,10],[536,10],[913,10],[260,10],[977,10],[279,10],[584,10],[25,10],[623,10],[162,10],[772,10],[921,10],[477,10],[283,10],[289,10],[880,10],[999,10],[699,10],[78,10],[295,10],[269,10],[541,10],[21,10],[227,10],[856,10],[263,10],[973,10],[32,10],[29,10],[805,10],[744,10],[828,10],[1002,10],[968,10],[564,10],[1020,10],[488,10],[323,10],[979,10],[325,10],[645,10],[45,10],[436,10],[332,10],[394,10],[213,10],[715,10],[135,10],[55,10],[96,10],[356,10],[803,10],[541,10],[104,10],[800,10],[68,10],[977,10],[876,10],[937,10],[107,10],[742,10],[271,10],[354,10],[25,10],[105,10],[374,10],[134,10],[26,10],[440,10],[929,10],[351,10],[921,10],[558,10],[20,10],[342,10],[319,10],[454,10],[728,10],[386,10],[383,10],[180,10],[861,10],[799,10],[342,10],[401,10],[962,10],[526,10],[134,10],[732,10],[533,10],[895,10],[295,10],[443,10],[126,10],[81,10],[279,10],[346,10],[15,10],[678,10],[42,10],[925,10],[274,10],[218,10],[682,10],[110,10],[774,10],[205,10],[337,10],[616,10],[424,10],[619,10],[707,10],[292,10],[667,10],[854,10],[547,10],[312,10],[13,10],[707,10],[215,10],[255,10],[827,10],[396,10],[767,10],[837,10],[269,10],[815,10],[952,10],[24,10],[552,10],[830,10],[450,10],[395,10],[476,10],[313,10],[234,10],[594,10],[503,10],[609,10],[382,10],[839,10],[286,10],[991,10],[610,10],[597,10],[572,10],[759,10],[369,10],[161,10],[574,10],[459,10],[187,10],[651,10],[678,10],[357,10],[29,10],[108,10],[588,10],[283,10],[393,10],[181,10],[955,10],[22,10],[159,10],[906,10],[415,10],[178,10],[465,10],[628,10],[234,10],[303,10],[474,10],[692,10],[707,10],[651,10],[163,10],[485,10],[924,10],[384,10],[650,10],[376,10],[120,10],[1014,10],[150,10],[277,10],[941,10],[135,10],[152,10],[911,10],[935,10],[924,10],[152,10],[57,10],[107,10],[133,10],[943,10],[991,10],[987,10],[145,10],[996,10],[878,10],[427,10],[672,10],[149,10],[715,10],[689,10],[834,10],[912,10],[361,10],[242,10],[965,10],[271,10],[107,10],[609,10],[35,10],[608,10],[999,10],[368,10],[12,10],[243,10],[145,10],[398,10],[16,10],[189,10],[384,10],[577,10],[487,10],[488,10],[351,10],[668,10],[228,10],[938,10],[590,10],[602,10],[700,10],[733,10],[867,10],[953,10],[771,10],[687,10],[606,10],[432,10],[640,10],[216,10],[1005,10],[347,10],[318,10],[158,10],[84,10],[136,10],[255,10],[192,10],[887,10],[825,10],[256,10],[268,10],[627,10],[413,10],[736,10],[934,10],[433,10],[746,10],[646,10],[440,10],[926,10],[680,10],[292,10],[498,10],[485,10],[929,10],[165,10],[557,10],[975,10],[961,10],[30,10],[16,10],[144,10],[177,10],[674,10],[64,10],[280,10],[348,10],[638,10],[515,10],[1010,10],[618,10],[742,10],[83,10],[392,10],[722,10],[4,10],[353,10],[147,10],[803,10],[177,10],[398,10],[189,10],[276,10],[812,10],[903,10],[905,10],[871,10],[714,10],[952,10],[409,10],[870,10],[693,10],[871,10],[199,10],[474,10],[207,10],[593,10],[324,10],[831,10],[79,10],[919,10],[899,10],[603,10],[779,10],[899,10],[286,10],[74,10],[904,10],[708,10],[164,10],[590,10],[510,10],[295,10],[389,10],[414,10],[842,10],[324,10],[926,10],[911,10],[187,10],[481,10],[387,10],[907,10],[515,10],[850,10],[100,10],[17,10],[480,10],[117,10],[226,10],[432,10],[270,10],[751,10],[785,10],[464,10],[965,10],[236,10],[546,10],[148,10],[324,10],[275,10],[752,10],[667,10],[489,10],[899,10],[516,10],[510,10],[570,10],[125,10],[960,10],[751,10],[281,10],[537,10],[136,10],[844,10],[934,10],[722,10],[710,10],[778,10],[823,10],[615,10],[740,10],[397,10],[861,10],[870,10],[587,10],[999,10],[598,10],[524,10],[942,10],[324,10],[115,10],[601,10],[390,10],[39,10],[606,10],[1015,10],[60,10],[819,10],[262,10],[219,10],[870,10],[655,10],[718,10],[785,10],[103,10],[761,10],[4,10],[106,10],[753,10],[106,10],[510,10],[904,10],[984,10],[955,10],[66,10],[778,10],[460,10],[588,10],[745,10],[662,10],[561,10],[318,10],[550,10],[334,10],[830,10],[749,10],[214,10],[253,10],[803,10],[463,10],[446,10],[402,10],[496,10],[355,10],[382,10],[222,10],[286,10],[756,10],[998,10],[151,10],[537,10],[733,10],[770,10],[765,10],[961,10],[242,10],[661,10],[725,10],[378,10],[902,10],[561,10],[846,10],[73,10],[345,10],[723,10],[188,10],[107,10],[257,10],[529,10],[722,10],[790,10],[47,10],[2,10],[244,10],[69,10],[5,10],[780,10],[212,10],[72,10],[54,10],[935,10],[511,10],[986,10],[951,10],[550,10],[366,10],[1004,10],[568,10],[896,10],[168,10],[624,10],[272,10],[742,10],[542,10],[667,10],[516,10],[9,10],[685,10],[397,10],[421,10],[607,10],[888,10],[36,10],[940,10],[75,10],[91,10],[296,10],[581,10],[290,10],[940,10],[34,10],[702,10],[920,10],[325,10],[666,10],[802,10],[1017,10],[90,10],[317,10],[330,10],[280,10],[691,10],[966,10],[821,10],[879,10],[1021,10],[199,10],[495,10],[543,10],[207,10],[405,10],[591,10],[73,10],[563,10],[22,10],[402,10],[888,10],[715,10],[831,10],[941,10],[835,10],[171,10],[882,10],[705,10],[341,10],[125,10],[628,10],[481,10],[813,10],[85,10],[559,10],[771,10],[700,10],[150,10],[265,10],[78,10],[199,10],[894,10],[355,10],[624,10],[376,10],[868,10],[84,10],[248,10],[641,10],[910,10],[961,10],[578,10],[247,10],[819,10],[426,10],[970,10],[498,10],[173,10],[890,10],[271,10],[529,10],[537,10],[796,10],[341,10],[830,10],[489,10],[382,10],[830,10],[924,10],[812,10],[140,10],[916,10],[127,10],[494,10],[668,10],[733,10],[981,10],[196,10],[68,10],[583,10],[20,10],[125,10],[891,10],[978,10],[664,10],[1000,10],[29,10],[46,10],[612,10],[525,10],[898,10],[706,10],[334,10],[754,10],[249,10],[270,10],[536,10],[869,10],[763,10],[215,10],[154,10],[257,10],[48,10],[32,10],[101,10],[980,10],[222,10],[573,10],[216,10],[688,10],[172,10],[153,10],[1019,10],[878,10],[635,10],[255,10],[204,10],[1014,10],[99,10],[419,10],[534,10],[66,10],[232,10],[311,10],[975,10],[116,10],[138,10],[197,10],[281,10],[340,10],[326,10],[164,10],[286,10],[651,10],[77,10],[640,10],[735,10],[155,10],[718,10],[413,10],[37,10],[170,10],[801,10],[303,10],[368,10],[601,10],[397,10],[438,10],[28,10],[670,10],[412,10],[76,10],[801,10],[764,10],[360,10],[893,10],[187,10],[549,10],[490,10],[752,10],[658,10],[456,10],[545,10],[544,10],[950,10],[280,10],[813,10],[517,10],[422,10],[259,10],[235,10],[775,10],[142,10],[468,10],[572,10],[559,10],[948,10],[564,10],[477,10],[515,10],[748,10],[880,10],[42,10],[339,10],[811,10],[748,10],[891,10],[493,10],[768,10],[400,10],[920,10],[315,10],[490,10],[975,10],[311,10],[1013,10],[971,10],[104,10],[81,10],[381,10],[186,10],[982,10],[12,10],[945,10],[188,10],[950,10],[727,10],[964,10],[1011,10],[750,10],[77,10],[403,10],[726,10],[161,10],[480,10],[632,10],[536,10],[854,10],[955,10],[306,10],[386,10],[1002,10],[517,10],[74,10],[478,10],[646,10],[751,10],[33,10],[709,10],[923,10],[465,10],[184,10],[634,10],[784,10],[362,10],[965,10],[781,10],[809,10],[178,10],[355,10],[238,10],[815,10],[417,10],[982,10],[391,10],[534,10],[66,10],[736,10],[550,10],[932,10],[175,10],[222,10],[282,10],[742,10],[303,10],[540,10],[199,10],[622,10],[292,10],[270,10],[567,10],[938,10],[916,10],[492,10],[229,10],[45,10],[635,10],[58,10],[225,10],[135,10],[626,10],[894,10],[56,10],[871,10],[579,10],[583,10],[637,10],[802,10],[477,10],[751,10],[898,10],[502,10],[610,10],[335,10],[786,10],[583,10],[54,10],[1000,10],[877,10],[5,10],[714,10],[433,10],[531,10],[700,10],[1014,10],[947,10],[920,10],[338,10],[239,10],[851,10],[157,10],[68,10],[716,10],[791,10],[244,10],[386,10],[599,10],[212,10],[842,10],[396,10],[683,10],[387,10],[183,10],[656,10],[81,10],[20,10],[370,10],[312,10],[74,10],[58,10],[286,10],[762,10],[742,10],[360,10],[674,10],[520,10],[880,10],[597,10],[218,10],[717,10],[909,10],[58,10],[36,10],[496,10],[573,10],[193,10],[177,10],[74,10],[485,10],[809,10],[64,10],[941,10],[159,10],[75,10],[445,10],[113,10],[730,10],[649,10],[829,10],[970,10],[844,10],[834,10],[710,10],[918,10],[884,10],[62,10],[256,10],[682,10],[662,10],[877,10],[658,10],[462,10],[940,10],[653,10],[773,10],[675,10],[391,10],[709,10],[805,10],[830,10],[612,10],[359,10],[760,10],[964,10],[334,10],[575,10],[962,10],[39,10],[847,10],[532,10],[271,10],[695,10],[623,10],[628,10],[145,10],[390,10],[379,10],[532,10],[245,10],[73,10],[603,10],[287,10],[938,10],[567,10],[891,10],[392,10],[104,10],[594,10],[1014,10],[82,10],[473,10],[847,10],[48,10],[377,10],[122,10],[532,10],[529,10],[448,10],[537,10],[932,10],[967,10],[524,10],[462,10],[773,10],[357,10],[251,10],[161,10],[629,10],[679,10],[656,10],[918,10],[471,10],[602,10],[221,10],[890,10],[482,10],[371,10],[37,10],[885,10],[280,10],[15,10],[969,10],[467,10],[865,10],[618,10],[503,10],[43,10],[97,10],[804,10],[656,10],[21,10],[654,10],[169,10],[209,10],[205,10],[560,10],[706,10],[124,10],[675,10],[430,10],[493,10],[212,10],[786,10],[342,10],[851,10],[870,10],[374,10],[156,10],[298,10],[922,10],[11,10],[560,10],[1003,10],[552,10],[919,10],[1023,10],[856,10],[79,10],[431,10],[696,10],[533,10],[294,10],[974,10],[435,10],[368,10],[156,10],[687,10],[278,10],[552,10],[514,10],[123,10],[489,10],[382,10],[344,10],[482,10],[90,10],[759,10],[820,10],[496,10],[652,10],[230,10],[70,10],[468,10],[978,10],[783,10],[247,10],[126,10],[489,10],[966,10],[417,10],[246,10],[63,10],[8,10],[501,10],[920,10],[688,10],[967,10],[837,10],[621,10],[166,10],[289,10],[986,10],[728,10],[957,10],[573,10],[778,10],[908,10],[784,10],[599,10],[219,10],[326,10],[4,10],[183,10],[718,10],[875,10],[145,10],[616,10],[476,10],[353,10],[1017,10],[541,10],[179,10],[599,10],[877,10],[477,10],[284,10],[670,10],[174,10],[290,10],[518,10],[549,10],[376,10],[1014,10],[235,10],[944,10],[919,10],[97,10],[970,10],[514,10],[445,10],[640,10],[554,10],[717,10],[848,10],[990,10],[759,10],[545,10],[50,10],[918,10],[390,10],[1012,10],[519,10],[517,10],[68,10],[1001,10],[186,10],[882,10],[635,10],[472,10],[742,10],[985,10],[108,10],[464,10],[245,10],[402,10],[641,10],[681,10],[53,10],[217,10],[530,10],[761,10],[966,10],[46,10],[520,10],[855,10],[309,10],[861,10],[1018,10],[999,10],[53,10],[750,10],[502,10],[851,10],[707,10],[76,10],[359,10],[432,10],[907,10],[324,10],[812,10],[885,10],[149,10],[315,10],[574,10],[508,10],[160,10],[954,10],[841,10],[432,10],[603,10],[279,10],[420,10],[110,10],[548,10],[8,10],[219,10],[138,10],[512,10],[131,10],[642,10],[486,10],[959,10],[79,10],[940,10],[728,10],[710,10],[674,10],[767,10],[470,10],[911,10],[751,10],[882,10],[692,10],[478,10],[989,10],[928,10],[185,10],[715,10],[897,10],[822,10],[118,10],[880,10],[507,10],[494,10],[561,10],[675,10],[785,10],[778,10],[423,10],[732,10],[292,10],[109,10],[591,10],[257,10],[405,10],[61,10],[554,10],[47,10],[486,10],[877,10],[900,10],[921,10],[492,10],[819,10],[182,10],[617,10],[622,10],[975,10],[329,10],[332,10],[630,10],[834,10],[579,10],[327,10],[62,10],[129,10],[981,10],[980,10],[49,10],[311,10],[148,10],[93,10],[548,10],[596,10],[479,10],[470,10],[681,10],[81,10],[184,10],[52,10],[741,10],[776,10],[860,10],[415,10],[695,10],[897,10],[713,10],[351,10],[350,10],[718,10],[741,10],[465,10],[732,10],[31,10],[681,10],[400,10],[46,10],[574,10],[489,10],[181,10],[57,10],[718,10],[483,10],[821,10],[903,10],[313,10],[631,10],[305,10],[900,10],[794,10],[961,10],[303,10],[210,10],[241,10],[171,10],[617,10],[655,10],[152,10],[619,10],[894,10],[988,10],[266,10],[63,10],[421,10],[300,10],[561,10],[257,10],[1021,10],[862,10],[826,10],[760,10],[556,10],[1014,10],[859,10],[282,10],[949,10],[446,10],[980,10],[976,10],[951,10],[79,10],[233,10],[690,10],[113,10],[602,10],[504,10],[990,10],[308,10],[998,10],[153,10],[196,10],[579,10],[545,10],[769,10],[83,10],[960,10],[511,10],[550,10],[655,10],[535,10],[792,10],[218,10],[996,10],[838,10],[582,10],[707,10],[512,10],[456,10],[63,10],[271,10],[695,10],[439,10],[192,10],[973,10],[429,10],[811,10],[20,10],[115,10],[653,10],[679,10],[653,10],[392,10],[376,10],[442,10],[991,10],[506,10],[31,10],[239,10],[46,10],[402,10],[262,10],[86,10],[272,10],[304,10],[409,10],[718,10],[602,10],[34,10],[189,10],[529,10],[83,10],[590,10],[560,10],[533,10],[72,10],[564,10],[773,10],[835,10],[223,10],[358,10],[848,10],[739,10],[1013,10],[271,10],[821,10],[410,10],[32,10],[540,10],[186,10],[385,10],[517,10],[943,10],[1003,10],[1006,10],[403,10],[972,10],[41,10],[269,10],[505,10],[743,10],[660,10],[717,10],[624,10],[878,10],[12,10],[271,10],[745,10],[802,10],[701,10],[899,10],[527,10],[676,10],[269,10],[214,10],[495,10],[467,10],[745,10],[236,10],[359,10],[901,10],[646,10],[748,10],[12,10],[76,10],[134,10],[452,10],[733,10],[90,10],[214,10],[30,10],[162,10],[907,10],[670,10],[948,10],[279,10],[439,10],[867,10],[271,10],[689,10],[289,10],[182,10],[550,10],[665,10],[897,10],[278,10],[847,10],[399,10],[1014,10],[535,10],[304,10],[669,10],[867,10],[221,10],[417,10],[364,10],[821,10],[805,10],[284,10],[723,10],[994,10],[607,10],[102,10],[485,10],[30,10],[243,10],[687,10],[158,10],[413,10],[422,10],[124,10],[712,10],[219,10],[601,10],[805,10],[26,10],[955,10],[978,10],[333,10],[452,10],[139,10],[998,10],[529,10],[401,10],[680,10],[301,10],[82,10],[228,10],[122,10],[841,10],[919,10],[226,10],[696,10],[262,10],[742,10],[915,10],[452,10],[122,10],[662,10],[579,10],[546,10],[532,10],[49,10],[117,10],[272,10],[1005,10],[935,10],[987,10],[595,10],[962,10],[518,10],[609,10],[245,10],[906,10],[898,10],[184,10],[558,10],[59,10],[139,10],[305,10],[475,10],[918,10],[178,10],[974,10],[511,10],[911,10],[759,10],[688,10],[535,10],[300,10],[359,10],[563,10],[500,10],[415,10],[706,10],[5,10],[761,10],[206,10],[923,10],[844,10],[64,10],[236,10],[100,10],[1018,10],[65,10],[711,10],[228,10],[641,10],[547,10],[560,10],[157,10],[810,10],[553,10],[804,10],[244,10],[745,10],[928,10],[606,10],[583,10],[451,10],[239,10],[397,10],[816,10],[821,10],[671,10],[328,10],[49,10],[549,10],[940,10],[559,10],[994,10],[523,10],[966,10],[853,10],[123,10],[566,10],[17,10],[740,10],[17,10],[175,10],[146,10],[252,10],[629,10],[188,10],[832,10],[586,10],[987,10],[349,10],[576,10],[285,10],[864,10],[829,10],[702,10],[445,10],[7,10],[731,10],[833,10],[984,10],[858,10],[114,10],[781,10],[190,10],[647,10],[592,10],[436,10],[527,10],[433,10],[670,10],[672,10],[830,10],[329,10],[413,10],[806,10],[902,10],[862,10],[480,10],[333,10],[798,10],[114,10],[159,10],[1005,10],[896,10],[880,10],[334,10],[651,10],[536,10],[717,10],[520,10],[362,10],[92,10],[58,10],[692,10],[458,10],[870,10],[404,10],[990,10],[648,10],[147,10],[858,10],[434,10],[366,10],[878,10],[147,10],[376,10],[409,10],[1014,10],[758,10],[470,10],[955,10],[468,10],[71,10],[607,10],[623,10],[186,10],[282,10],[309,10],[630,10],[500,10],[876,10],[348,10],[101,10],[5,10],[836,10],[420,10],[610,10],[465,10],[1019,10],[562,10],[932,10],[1003,10],[544,10],[303,10],[682,10],[231,10],[843,10],[992,10],[646,10],[394,10],[758,10],[676,10],[643,10],[741,10],[890,10],[72,10],[1011,10],[657,10],[932,10],[954,10],[37,10],[594,10],[460,10],[246,10],[523,10],[187,10],[73,10],[882,10],[433,10],[889,10],[577,10],[987,10],[825,10],[517,10],[574,10],[257,10],[111,10],[876,10],[419,10],[79,10],[575,10],[817,10],[294,10],[936,10],[95,10],[357,10],[926,10],[242,10],[595,10],[143,10],[976,10],[120,10],[264,10],[755,10],[679,10],[888,10],[655,10],[43,10],[83,10],[527,10],[397,10],[719,10],[895,10],[573,10],[38,10],[128,10],[475,10],[293,10],[1009,10],[673,10],[606,10],[223,10],[388,10],[112,10],[155,10],[388,10],[249,10],[539,10],[863,10],[295,10],[132,10],[281,10],[385,10],[1016,10],[454,10],[609,10],[205,10],[535,10],[310,10],[332,10],[691,10],[834,10],[181,10],[243,10],[754,10],[818,10],[907,10],[247,10],[612,10],[742,10],[849,10],[251,10],[4,10],[631,10],[960,10],[331,10],[695,10],[89,10],[862,10],[1003,10],[833,10],[914,10],[386,10],[914,10],[71,10],[975,10],[915,10],[749,10],[518,10],[648,10],[96,10],[844,10],[962,10],[952,10],[280,10],[401,10],[384,10],[748,10],[809,10],[484,10],[118,10],[658,10],[323,10],[931,10],[787,10],[898,10],[155,10],[99,10],[761,10],[623,10],[500,10],[655,10],[44,10],[120,10],[347,10],[430,10],[789,10],[418,10],[491,10],[717,10],[939,10],[136,10],[763,10],[322,10],[619,10],[322,10],[645,10],[686,10],[88,10],[326,10],[37,10],[652,10],[476,10],[8,10],[90,10],[932,10],[29,10],[6,10],[249,10],[391,10],[177,10],[665,10],[495,10],[335,10],[808,10],[955,10],[720,10],[746,10],[491,10],[50,10],[634,10],[848,10],[650,10],[824,10],[882,10],[540,10],[317,10],[865,10],[95,10],[683,10],[590,10],[755,10],[247,10],[995,10],[662,10],[726,10],[600,10],[787,10],[211,10],[419,10],[874,10],[799,10],[821,10],[369,10],[744,10],[693,10],[985,10],[650,10],[532,10],[211,10],[944,10],[614,10],[400,10],[885,10],[515,10],[658,10],[63,10],[820,10],[601,10],[618,10],[6,10],[577,10],[767,10],[761,10],[462,10],[288,10],[854,10],[531,10],[513,10],[971,10],[53,10],[977,10],[886,10],[636,10],[224,10],[279,10],[470,10],[649,10],[784,10],[6,10],[743,10],[925,10],[206,10],[224,10],[498,10],[710,10],[383,10],[118,10],[763,10],[864,10],[635,10],[875,10],[958,10],[147,10],[644,10],[308,10],[352,10],[888,10],[394,10],[399,10],[798,10],[228,10],[675,10],[681,10],[226,10],[558,10],[130,10],[581,10],[353,10],[874,10],[913,10],[398,10],[882,10],[976,10],[442,10],[185,10],[1001,10],[391,10],[469,10],[498,10],[619,10],[404,10],[325,10],[980,10],[294,10],[274,10],[198,10],[1012,10],[916,10],[283,10],[661,10],[613,10],[766,10],[653,10],[453,10],[600,10],[24,10],[101,10],[393,10],[129,10],[343,10],[208,10],[439,10],[721,10],[365,10],[882,10],[238,10],[614,10],[769,10],[251,10],[505,10],[980,10],[748,10],[486,10],[881,10],[518,10],[340,10],[991,10],[9,10],[605,10],[1016,10],[307,10],[429,10],[799,10],[570,10],[74,10],[192,10],[348,10],[374,10],[344,10],[485,10],[572,10],[722,10],[387,10],[68,10],[817,10],[552,10],[12,10],[514,10],[711,10],[708,10],[242,10],[296,10],[721,10],[465,10],[932,10],[814,10],[614,10],[419,10],[97,10],[50,10],[15,10],[545,10],[974,10],[427,10],[34,10],[785,10],[264,10],[66,10],[551,10],[602,10],[249,10],[197,10],[399,10],[668,10],[455,10],[897,10],[97,10],[573,10],[781,10],[468,10],[627,10],[123,10],[989,10],[98,10],[438,10],[602,10],[828,10],[833,10],[253,10],[390,10],[388,10],[239,10],[914,10],[682,10],[399,10],[52,10],[728,10],[740,10],[589,10],[923,10],[746,10],[964,10],[991,10],[363,10],[804,10],[235,10],[935,10],[255,10],[141,10],[814,10],[220,10],[267,10],[880,10],[917,10],[491,10],[66,10],[604,10],[1,10],[308,10],[820,10],[262,10],[208,10],[274,10],[80,10],[204,10],[472,10],[679,10],[671,10],[640,10],[992,10],[426,10],[709,10],[295,10],[98,10],[516,10],[486,10],[810,10],[223,10],[899,10],[50,10],[681,10],[622,10],[124,10],[146,10],[174,10],[85,10],[759,10],[655,10],[831,10],[524,10],[701,10],[959,10],[348,10],[915,10],[687,10],[661,10],[711,10],[848,10],[270,10],[521,10],[505,10],[805,10],[373,10],[491,10],[185,10],[145,10],[251,10],[233,10],[167,10],[269,10],[805,10],[928,10],[552,10],[265,10],[869,10],[797,10],[593,10],[617,10],[351,10],[306,10],[876,10],[607,10],[662,10],[64,10],[482,10],[48,10],[83,10],[284,10],[538,10],[647,10],[281,10],[525,10],[318,10],[329,10],[833,10],[735,10],[899,10],[643,10],[355,10],[250,10],[249,10],[410,10],[917,10],[1022,10],[406,10],[263,10],[91,10],[414,10],[544,10],[147,10],[944,10],[89,10],[354,10],[320,10],[587,10],[951,10],[337,10],[576,10],[805,10],[748,10],[829,10],[870,10],[34,10],[474,10],[682,10],[478,10],[767,10],[8,10],[516,10],[435,10],[184,10],[65,10],[694,10],[602,10],[888,10],[737,10],[972,10],[978,10],[286,10],[35,10],[297,10],[351,10],[909,10],[55,10],[279,10],[619,10],[819,10],[262,10],[889,10],[588,10],[697,10],[249,10],[219,10],[407,10],[410,10],[721,10],[675,10],[645,10],[3,10],[736,10],[410,10],[53,10],[760,10],[977,10],[743,10],[514,10],[871,10],[954,10],[939,10],[304,10],[136,10],[340,10],[585,10],[550,10],[986,10],[222,10],[630,10],[641,10],[162,10],[607,10],[965,10],[809,10],[200,10],[174,10],[793,10],[762,10],[1018,10],[371,10],[171,10],[424,10],[248,10],[186,10],[252,10],[345,10],[99,10],[778,10],[60,10],[1009,10],[739,10],[924,10],[1021,10],[393,10],[225,10],[980,10],[443,10],[139,10],[387,10],[566,10],[813,10],[615,10],[393,10],[400,10],[267,10],[261,10],[208,10],[68,10],[475,10],[776,10],[661,10],[505,10],[467,10],[109,10],[847,10],[236,10],[776,10],[649,10],[808,10],[940,10],[338,10],[850,10],[773,10],[16,10],[526,10],[826,10],[312,10],[543,10],[684,10],[371,10],[426,10],[905,10],[70,10],[282,10],[703,10],[491,10],[778,10],[198,10],[119,10],[907,10],[433,10],[870,10],[514,10],[41,10],[290,10],[431,10],[707,10],[827,10],[34,10],[62,10],[101,10],[264,10],[469,10],[451,10],[824,10],[358,10],[396,10],[940,10],[69,10],[829,10],[486,10],[75,10],[356,10],[496,10],[771,10],[720,10],[574,10],[449,10],[121,10],[952,10],[391,10],[953,10],[216,10],[85,10],[802,10],[604,10],[981,10],[400,10],[848,10],[307,10],[105,10],[209,10],[218,10],[586,10],[761,10],[329,10],[662,10],[475,10],[434,10],[218,10],[174,10],[558,10],[107,10],[572,10],[54,10],[152,10],[529,10],[989,10],[375,10],[42,10],[803,10],[983,10],[378,10],[832,10],[331,10],[24,10],[275,10],[980,10],[734,10],[568,10],[612,10],[524,10],[734,10],[16,10],[825,10],[877,10],[67,10],[140,10],[856,10],[522,10],[273,10],[817,10],[400,10],[708,10],[636,10],[722,10],[1022,10],[699,10],[247,10],[267,10],[438,10],[225,10],[436,10],[138,10],[157,10],[112,10],[839,10],[885,10],[223,10],[437,10],[193,10],[811,10],[582,10],[944,10],[442,10],[664,10],[752,10],[507,10],[718,10],[758,10],[715,10],[294,10],[1014,10],[872,10],[944,10],[605,10],[598,10],[83,10],[335,10],[762,10],[752,10],[70,10],[864,10],[565,10],[74,10],[533,10],[306,10],[149,10],[418,10],[954,10],[357,10],[264,10],[606,10],[205,10],[597,10],[197,10],[929,10],[798,10],[595,10],[655,10],[980,10],[750,10],[1012,10],[665,10],[647,10],[359,10],[873,10],[924,10],[260,10],[754,10],[193,10],[706,10],[177,10],[357,10],[38,10],[629,10],[401,10],[176,10],[51,10],[894,10],[807,10],[709,10],[212,10],[97,10],[26,10],[264,10],[415,10],[603,10],[32,10],[220,10],[702,10],[149,10],[367,10],[145,10],[572,10],[381,10],[450,10],[403,10],[628,10],[316,10],[968,10],[953,10],[690,10],[808,10],[484,10],[378,10],[342,10],[683,10],[962,10],[630,10],[498,10],[335,10],[374,10],[336,10],[960,10],[321,10],[396,10],[795,10],[737,10],[549,10],[1022,10],[938,10],[211,10],[986,10],[968,10],[49,10],[560,10],[19,10],[1006,10],[786,10],[110,10],[358,10],[619,10],[422,10],[982,10],[870,10],[664,10],[109,10],[436,10],[38,10],[656,10],[845,10],[728,10],[384,10],[19,10],[292,10],[397,10],[95,10],[13,10],[1012,10],[651,10],[473,10],[210,10],[777,10],[87,10],[910,10],[475,10],[341,10],[736,10],[760,10],[782,10],[464,10],[646,10],[257,10],[811,10],[373,10],[599,10],[850,10],[183,10],[664,10],[539,10],[40,10],[631,10],[884,10],[797,10],[843,10],[647,10],[837,10],[430,10],[965,10],[924,10],[129,10],[342,10],[935,10],[291,10],[764,10],[440,10],[640,10],[592,10],[279,10],[760,10],[695,10],[735,10],[527,10],[290,10],[73,10],[692,10],[1011,10],[355,10],[921,10],[8,10],[257,10],[687,10],[728,10],[969,10],[721,10],[496,10],[604,10],[988,10],[930,10],[161,10],[155,10],[413,10],[7,10],[374,10],[682,10],[281,10],[863,10],[468,10],[62,10],[434,10],[301,10],[412,10],[602,10],[940,10],[175,10],[926,10],[168,10],[125,10],[969,10],[338,10],[1002,10],[561,10],[151,10],[610,10],[796,10],[501,10],[530,10],[999,10],[121,10],[9,10],[950,10],[241,10],[369,10],[653,10],[530,10],[540,10],[627,10],[548,10],[738,10],[242,10],[154,10],[204,10],[835,10],[47,10],[826,10],[555,10],[980,10],[446,10],[272,10],[609,10],[400,10],[458,10],[354,10],[61,10],[167,10],[781,10],[82,10],[974,10],[882,10],[297,10],[249,10],[979,10],[936,10],[177,10],[689,10],[44,10],[421,10],[649,10],[486,10],[888,10],[206,10],[99,10],[109,10],[557,10],[281,10],[373,10],[643,10],[623,10],[156,10],[921,10],[977,10],[592,10],[168,10],[620,10],[137,10],[776,10],[802,10],[140,10],[951,10],[87,10],[348,10],[194,10],[501,10],[901,10],[950,10],[685,10],[694,10],[79,10],[68,10],[487,10],[803,10],[645,10],[431,10],[201,10],[386,10],[576,10],[658,10],[436,10],[309,10],[505,10],[685,10],[274,10],[232,10],[947,10],[390,10],[612,10],[626,10],[692,10],[503,10],[999,10],[543,10],[244,10],[934,10],[40,10],[973,10],[332,10],[799,10],[767,10],[250,10],[627,10],[876,10],[20,10],[459,10],[880,10],[255,10],[366,10],[561,10],[18,10],[990,10],[962,10],[520,10],[459,10],[873,10],[254,10],[605,10],[659,10],[154,10],[961,10],[306,10],[826,10],[275,10],[159,10],[121,10],[972,10],[167,10],[163,10],[376,10],[962,10],[498,10],[434,10],[54,10],[164,10],[793,10],[318,10],[807,10],[907,10],[306,10],[81,10],[3,10],[421,10],[94,10],[668,10],[477,10],[519,10],[200,10],[531,10],[832,10],[705,10],[187,10],[221,10],[921,10],[649,10],[558,10],[800,10],[979,10],[668,10],[997,10],[69,10],[972,10],[444,10],[602,10],[401,10],[374,10],[410,10],[259,10],[852,10],[21,10],[438,10],[197,10],[759,10],[454,10],[472,10],[899,10],[403,10],[332,10],[542,10],[227,10],[480,10],[233,10],[772,10],[554,10],[577,10],[561,10],[470,10],[888,10],[191,10],[161,10],[715,10],[539,10],[848,10],[939,10],[719,10],[348,10],[690,10],[393,10],[481,10],[383,10],[398,10],[441,10],[630,10],[918,10],[644,10],[742,10],[785,10],[121,10],[30,10],[207,10],[267,10],[436,10],[327,10],[371,10],[777,10],[857,10],[128,10],[101,10],[363,10],[135,10],[257,10],[15,10],[47,10],[968,10],[43,10],[636,10],[760,10],[188,10],[605,10],[254,10],[882,10],[15,10],[300,10],[663,10],[94,10],[172,10],[118,10],[229,10],[903,10],[55,10],[120,10],[340,10],[403,10],[690,10],[825,10],[607,10],[21,10],[531,10],[899,10],[215,10],[758,10],[333,10],[881,10],[489,10],[42,10],[542,10],[394,10],[799,10],[828,10],[747,10],[366,10],[771,10],[836,10],[179,10],[872,10],[143,10],[151,10],[315,10],[170,10],[867,10],[40,10],[969,10],[877,10],[236,10],[401,10],[941,10],[899,10],[908,10],[515,10],[638,10],[483,10],[564,10],[316,10],[62,10],[171,10],[350,10],[333,10],[693,10],[628,10],[428,10],[240,10],[407,10],[831,10],[695,10],[711,10],[641,10],[485,10],[842,10],[329,10],[560,10],[65,10],[963,10],[59,10],[182,10],[927,10],[511,10],[632,10],[642,10],[938,10],[443,10],[540,10],[195,10],[451,10],[120,10],[870,10],[404,10],[470,10],[148,10],[693,10],[964,10],[222,10],[294,10],[704,10],[604,10],[513,10],[167,10],[675,10],[306,10],[731,10],[987,10],[944,10],[140,10],[85,10],[809,10],[443,10],[523,10],[903,10],[787,10],[424,10],[520,10],[487,10],[604,10],[20,10],[727,10],[800,10],[656,10],[594,10],[971,10],[148,10],[490,10],[278,10],[792,10],[803,10],[900,10],[162,10],[94,10],[139,10],[717,10],[798,10],[152,10],[429,10],[581,10],[551,10],[999,10],[901,10],[590,10],[896,10],[800,10],[409,10],[423,10],[892,10],[933,10],[51,10],[685,10],[816,10],[567,10],[359,10],[44,10],[884,10],[70,10],[317,10],[345,10],[731,10],[946,10],[449,10],[460,10],[203,10],[825,10],[784,10],[321,10],[636,10],[854,10],[808,10],[826,10],[299,10],[345,10],[244,10],[896,10],[766,10],[951,10],[451,10],[908,10],[882,10],[492,10],[897,10],[516,10],[379,10],[1,10],[118,10],[379,10],[327,10],[321,10],[611,10],[605,10],[374,10],[1008,10],[683,10],[374,10],[605,10],[108,10],[874,10],[87,10],[489,10],[593,10],[764,10],[501,10],[866,10],[375,10],[606,10],[966,10],[276,10],[225,10],[786,10],[402,10],[1012,10],[783,10],[929,10],[249,10],[960,10],[309,10],[990,10],[628,10],[719,10],[303,10],[88,10],[502,10],[539,10],[462,10],[976,10],[733,10],[156,10],[827,10],[541,10],[622,10],[574,10],[929,10],[744,10],[724,10],[688,10],[839,10],[523,10],[407,10],[681,10],[711,10],[95,10],[267,10],[172,10],[83,10],[577,10],[125,10],[251,10],[772,10],[217,10],[277,10],[852,10],[987,10],[593,10],[1006,10],[868,10],[181,10],[85,10],[612,10],[17,10],[652,10],[736,10],[942,10],[250,10],[537,10],[460,10],[1014,10],[615,10],[954,10],[921,10],[222,10],[1004,10],[495,10],[35,10],[177,10],[776,10],[951,10],[74,10],[909,10],[522,10],[385,10],[103,10],[354,10],[385,10],[172,10],[483,10],[983,10],[827,10],[663,10],[211,10],[281,10],[603,10],[267,10],[913,10],[994,10],[878,10],[101,10],[803,10],[667,10],[469,10],[772,10],[449,10],[73,10],[375,10],[6,10],[150,10],[752,10],[425,10],[981,10],[444,10],[802,10],[378,10],[394,10],[950,10],[134,10],[473,10],[495,10],[498,10],[179,10],[263,10],[76,10],[544,10],[120,10],[926,10],[165,10],[560,10],[621,10],[981,10],[791,10],[1015,10],[465,10],[811,10],[746,10],[192,10],[341,10],[519,10],[222,10],[145,10],[209,10],[83,10],[223,10],[659,10],[860,10],[201,10],[614,10],[377,10],[128,10],[1010,10],[554,10],[923,10],[474,10],[394,10],[944,10],[654,10],[665,10],[434,10],[340,10],[542,10],[112,10],[120,10],[136,10],[865,10],[409,10],[838,10],[439,10],[733,10],[821,10],[392,10],[239,10],[947,10],[649,10],[353,10],[126,10],[945,10],[314,10],[968,10],[35,10],[172,10],[964,10],[3,10],[863,10],[672,10],[895,10],[1019,10],[24,10],[43,10],[464,10],[375,10],[574,10],[643,10],[824,10],[296,10],[284,10],[10,10],[218,10],[176,10],[132,10],[465,10],[574,10],[188,10],[325,10],[896,10],[369,10],[780,10],[735,10],[878,10],[533,10],[867,10],[551,10],[228,10],[779,10],[785,10],[540,10],[627,10],[499,10],[124,10],[492,10],[41,10],[717,10],[96,10],[623,10],[677,10],[569,10],[169,10],[401,10],[609,10],[501,10],[648,10],[2,10],[452,10],[985,10],[165,10],[341,10],[455,10],[100,10],[918,10],[832,10],[90,10],[551,10],[823,10],[905,10],[820,10],[847,10],[117,10],[123,10],[478,10],[61,10],[951,10],[59,10],[611,10],[219,10],[933,10],[144,10],[547,10],[702,10],[334,10],[222,10],[780,10],[925,10],[889,10],[807,10],[95,10],[94,10],[165,10],[890,10],[628,10],[355,10],[407,10],[235,10],[147,10],[676,10],[759,10],[43,10],[597,10],[739,10],[746,10],[406,10],[693,10],[165,10],[526,10],[494,10],[76,10],[418,10],[308,10],[660,10],[475,10],[71,10],[496,10],[653,10],[327,10],[634,10],[471,10],[648,10],[485,10],[13,10],[211,10],[202,10],[834,10],[587,10],[687,10],[425,10],[115,10],[312,10],[291,10],[415,10],[776,10],[96,10],[175,10],[774,10],[567,10],[702,10],[61,10],[785,10],[591,10],[750,10],[12,10],[509,10],[368,10],[130,10],[878,10],[13,10],[435,10],[42,10],[953,10],[500,10],[495,10],[519,10],[868,10],[228,10],[623,10],[314,10],[105,10],[984,10],[246,10],[997,10],[284,10],[542,10],[571,10],[832,10],[315,10],[16,10],[767,10],[649,10],[181,10],[425,10],[992,10],[737,10],[173,10],[772,10],[21,10],[300,10],[175,10],[755,10],[370,10],[18,10],[991,10],[83,10],[687,10],[417,10],[922,10],[319,10],[599,10],[491,10],[609,10],[307,10],[874,10],[970,10],[993,10],[197,10],[481,10],[383,10],[250,10],[37,10],[422,10],[20,10],[259,10],[832,10],[785,10],[212,10],[860,10],[522,10],[105,10],[310,10],[171,10],[447,10],[484,10],[58,10],[495,10],[397,10],[510,10],[83,10],[273,10],[732,10],[424,10],[907,10],[96,10],[393,10],[581,10],[226,10],[50,10],[712,10],[581,10],[419,10],[221,10],[339,10],[722,10],[644,10],[869,10],[601,10],[639,10],[1002,10],[689,10],[923,10],[159,10],[855,10],[775,10],[133,10],[191,10],[923,10],[53,10],[318,10],[893,10],[286,10],[414,10],[306,10],[806,10],[248,10],[349,10],[1010,10],[806,10],[185,10],[607,10],[216,10],[636,10],[848,10],[877,10],[85,10],[940,10],[122,10],[629,10],[10,10],[316,10],[1016,10],[579,10]]],"output":[[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[757,10],[757,10],[757,10],[757,10],[757,10],[757,10],[757,10],[757,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[956,10],[956,10],[956,10],[956,10],[956,10],[956,10],[956,10],[956,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10]]},{"input":[[[275,10],[113,7],[1,1],[3,3],[413,9],[1,1],[28,5],[3,3],[1,3],[44,10],[937,10],[299,9],[3,2],[127,9],[1,1],[1,3],[36,6],[1,1],[206,8],[20,6]]],"output":[[44,10],[1,3],[1,3],[127,9],[275,10],[20,6],[3,3],[3,3],[1,1],[1,1],[1,1],[1,1],[36,6],[299,9],[3,2],[206,8],[413,9],[28,5],[113,7],[937,10]]},{"input":[[[23,5],[188,8],[404,9],[4,4],[132,8],[8,5],[393,10],[1,5],[7,3],[1,1],[393,9],[1,1],[178,9],[10,4],[14,4],[15,10],[19,6],[2,6],[73,7],[3,2],[8,4],[1,1],[27,8],[25,9],[1,1],[1,1],[3,2],[26,6],[1,1],[1,1],[1,1],[46,6],[30,5],[59,7],[3,4],[2,3],[491,10],[71,7],[65,7],[2,3],[1,1],[476,9],[1,1],[329,9],[4,3],[244,9],[61,7],[440,9],[61,8],[2,2],[77,7],[4,3],[86,8],[93,8],[233,8],[34,6],[1,1],[188,9],[13,5],[2,2],[251,9],[31,7],[44,10],[405,9],[1,3],[1,1],[8,4],[55,9],[9,4],[7,3],[1,3],[139,10],[5,3],[311,9],[70,7],[146,8],[196,9],[1,1],[14,5],[73,8],[7,3],[103,7],[1,1],[1,1],[5,3],[5,7],[10,4],[165,8],[11,6],[1,2],[97,9],[236,8],[2,2],[675,10],[1,7],[7,3],[6,3],[2,4],[4,6],[9,5],[94,9],[133,10],[2,3],[307,9],[12,7],[4,4],[502,10],[2,4],[2,3],[1,1],[11,8],[72,7],[937,10],[11,4],[15,4],[448,10],[58,6],[60,8],[15,5],[3,2],[179,9],[1,1],[1,6],[4,4],[4,4],[7,4],[33,6],[1,1],[511,9],[68,8],[2,2],[174,8],[200,8],[493,9],[30,8],[31,5],[1,1],[10,6],[32,6],[3,4],[52,8],[8,4],[22,8],[1,5],[6,4],[146,9],[254,8],[54,7],[55,6],[15,4],[120,8],[26,6],[62,6],[29,6],[796,10],[1,1],[4,6],[3,5],[1,2],[7,4],[1,9],[3,2],[68,10],[10,4],[16,5],[326,9],[1,1],[7,4],[69,7],[223,8],[7,5],[1,2],[27,5],[187,10],[85,7],[3,2],[5,3],[58,7],[1,2],[178,9],[1,1],[12,6],[88,8],[81,8],[558,10],[10,5],[1,1],[390,9],[2,2],[8,4],[272,9],[685,10],[182,8],[44,7],[4,5],[7,3],[119,9],[663,10],[2,2],[5,5],[55,6],[1,3],[1,1],[85,7],[57,7],[15,4],[96,9],[946,10],[68,10],[49,7],[16,6],[434,10],[1,1],[9,7],[2,4],[57,7],[152,10],[3,4],[254,8],[93,7],[248,8],[98,7],[478,9],[3,2],[711,10],[44,6],[53,6],[44,7],[51,8],[78,7],[38,8],[573,10],[39,7],[1,1],[12,5],[199,9],[11,4],[100,9],[4,3],[9,4],[5,3],[16,5],[1,2],[188,9],[7,5],[228,8],[35,7],[8,4],[127,9],[1,2],[34,6],[67,9],[91,7],[207,9],[178,8],[464,9],[1,1],[11,4],[19,7],[5,4],[28,6],[755,10],[28,5],[1,1],[11,4],[105,8],[1,1],[107,7],[1,1],[15,5],[5,6],[138,8],[2,2],[1008,10],[65,9],[235,8],[1,1],[2,2],[11,5],[8,5],[4,4],[1,1],[141,9],[91,7],[1,1],[207,9],[280,9],[254,9],[173,8],[86,7],[28,7],[485,9],[10,7],[1,2],[603,10],[481,9],[2,2],[19,6],[6,3],[11,5],[16,5],[16,6],[43,6],[1,1],[1,1],[25,5],[1,1],[11,4],[9,10],[1,1],[409,9],[476,9],[264,9],[3,5],[15,4],[341,9],[395,10],[114,10],[1,2],[357,9],[278,9],[1,2],[491,9],[1,5],[484,9],[1,1],[6,5],[1,1],[24,5],[146,10],[10,4],[686,10],[414,9],[104,8],[20,5],[7,5],[13,4],[3,5],[225,9],[6,5],[29,5],[1,1],[2,2],[47,6],[37,8],[235,10],[964,10],[2,3],[187,8],[758,10],[1,1],[98,8],[10,4],[7,3],[375,9],[55,7],[83,7],[3,4],[4,3],[2,2],[59,6],[23,7],[12,7],[332,10],[39,6],[17,5],[9,4],[44,10],[1,1],[130,9],[5,4],[116,8],[1,1],[196,9],[559,10],[92,7],[30,6],[67,10],[6,3],[260,10],[246,10],[25,5],[31,5],[1,1],[109,8],[58,9],[81,8],[53,8],[101,7],[18,6],[63,6],[4,3],[673,10],[68,8],[6,3],[197,9],[122,7],[3,2],[6,3],[96,9],[59,6],[120,7],[5,3],[3,6],[14,4],[390,9],[14,4],[1,1],[11,5],[1,1],[2,2],[51,9],[7,3],[423,10],[3,2],[44,6],[1,1],[401,9],[12,5],[125,7],[22,5],[530,10],[1,1],[27,7],[5,3],[5,3],[70,7],[58,10],[2,2],[82,8],[6,5],[62,6],[12,8],[8,4],[7,3],[1,1],[29,5],[23,5],[225,8],[61,7],[3,2],[5,3],[13,6],[53,8],[143,10],[59,6],[8,4],[7,3],[13,4],[1,1],[37,7],[3,2],[72,7],[1,1],[40,6],[71,7],[466,9],[716,10],[4,3],[2,2],[558,10],[1,3],[30,7],[2,7],[55,6],[167,8],[8,5],[430,10],[1,2],[77,7],[63,6],[1,1],[28,6],[102,7],[57,6],[21,7],[120,7],[4,4],[5,3],[25,5],[964,10],[705,10],[990,10],[12,5],[1,1],[34,7],[2,2],[198,8],[877,10],[6,4],[15,7],[2,2],[25,5],[4,6],[3,2],[1,1],[21,5],[47,8],[2,3],[1,3],[2,4],[1,1],[81,8],[502,9],[1,1],[2,2],[44,9],[47,9],[14,7],[1,1],[7,4],[1,1],[10,5],[126,7],[430,9],[14,4],[303,10],[2,2],[112,7],[22,5],[7,9],[2,5],[407,9],[3,3],[213,8],[12,7],[429,10],[108,7],[6,5],[3,2],[95,9],[1,1],[3,4],[460,9],[1,1],[3,5],[26,7],[519,10],[3,3],[810,10],[1,1],[479,10],[90,7],[536,10],[1,1],[2,2],[215,8],[11,4],[2,5],[5,3],[15,5],[3,3],[59,7],[100,7],[744,10],[84,9],[4,5],[764,10],[1,1],[47,9],[8,5],[531,10],[397,10],[1,2],[177,10],[31,6],[6,3],[1,3],[4,3],[55,6],[29,7],[4,6],[8,4],[422,10],[12,5],[101,7],[1,1],[13,4],[198,9],[2,3],[13,6],[3,3],[736,10],[1,1],[173,9],[23,5],[15,6],[3,2],[8,5],[42,8],[160,10],[45,10],[79,8],[65,7],[2,4],[1,2],[6,5],[457,9],[183,9],[2,2],[1,2],[166,8],[1,3],[1,5],[1,5],[3,3],[1,1],[2,4],[1,1],[3,3],[1,1],[797,10],[119,7],[8,5],[113,7],[126,8],[237,8],[7,3],[1,2],[6,5],[2,2],[5,3],[902,10],[18,6],[1,4],[7,3],[88,7],[1,1],[346,9],[330,9],[3,2],[104,8],[2,2],[3,2],[1,1],[147,9],[3,2],[2,2],[47,6],[210,10],[1,2],[30,5],[8,6],[37,8],[71,7],[22,5],[370,9],[1,1],[19,5],[941,10],[3,2],[2,2],[408,9],[5,3],[3,2],[420,9],[11,4],[5,5],[758,10],[168,8],[318,9],[1,1],[796,10],[6,3],[52,10],[2,2],[675,10],[173,8],[1,1],[4,3],[15,5],[3,2],[1,1],[29,5],[242,9],[11,4],[6,3],[104,7],[22,5],[1,1],[10,6],[5,4],[434,10],[849,10],[1,1],[1,1],[6,3],[1,1],[2,5],[189,9],[1,1],[1,2],[25,5],[6,3],[2,2],[86,7],[7,4],[21,5],[5,5],[139,9],[33,8],[988,10],[2,2],[14,5],[26,6],[28,7],[12,6],[89,9],[10,4],[2,2],[40,7],[472,9],[36,6],[16,5],[25,6],[1,1],[3,5],[60,7],[30,6],[2,2],[3,2],[17,5],[210,8],[1,3],[27,5],[29,6],[1,6],[4,5],[62,7],[1,1],[5,3],[1,1],[194,9],[1,5],[287,9],[7,3],[306,10],[501,9],[434,9],[181,8],[226,8],[1,1],[3,2],[5,4],[2,2],[3,2],[1,2],[5,3],[13,5],[21,7],[296,10],[7,3],[1,2],[61,7],[1,8],[2,2],[28,6],[3,2],[27,5],[116,9],[1,1],[241,9],[16,5],[40,7],[99,7],[1,2],[1,3],[29,5],[132,10],[138,8],[1,5],[14,5],[30,5],[36,8],[467,9],[8,6],[1,1],[3,10],[2,2],[107,8],[455,9],[1,1],[1,1],[1,2],[4,6],[5,4],[25,6],[37,6],[91,9],[3,3],[56,6],[1,1],[178,9],[9,4],[111,8],[337,9],[684,10],[877,10],[133,8],[3,4],[97,7],[48,7],[6,3],[2,2],[39,6],[55,6],[6,3],[88,7],[539,10],[1,2],[13,4],[125,8],[832,10],[307,9],[1,2],[3,4],[14,4],[50,6],[1,2],[1,3],[791,10],[1,1],[1,2],[23,9],[645,10],[7,5],[304,9],[693,10],[496,9],[1,1],[236,10],[14,6],[48,9],[108,7],[64,7],[1,1],[9,4],[3,3],[12,4],[25,5],[1,1],[4,4],[9,6],[2,4],[2,2],[1,4],[112,8],[2,2],[1,4],[1,3],[47,7],[97,7],[1,2],[1,2],[2,2],[18,6],[4,5],[166,8],[470,9],[7,3],[54,7],[3,2],[31,6],[141,8],[46,7],[3,2],[14,5],[353,9],[16,5],[84,7],[3,3],[54,6],[745,10],[1,1],[12,5],[2,3],[20,5],[1,5],[58,7],[155,8],[38,6],[5,3],[11,4],[1,7],[24,5],[80,7],[2,3],[352,9],[3,2],[23,5],[316,9],[448,9],[182,8],[41,6],[6,3],[109,8],[21,5],[2,2],[5,5],[1,1],[28,5],[1,2],[1,2],[2,2],[1,1],[834,10],[6,7],[20,5],[19,9],[27,6],[10,4],[1,2],[27,6],[1003,10],[103,10],[18,5],[40,6],[15,4],[3,2],[169,9],[12,4],[23,5],[7,3],[7,5],[4,3],[47,6],[36,7],[29,6],[295,10],[901,10],[31,6],[80,7],[29,6],[195,8],[502,9],[45,9],[1,2],[7,4],[1,3],[7,3],[175,8],[1,1],[12,5],[2,3],[226,9],[50,7],[1,2],[41,6],[88,8],[6,3],[2,3],[497,10],[184,8],[3,3],[2,3],[5,3],[25,5],[107,8],[3,2],[828,10],[35,6],[15,4],[41,7],[7,3],[7,4],[13,4],[1,4],[130,8],[1,1],[44,6],[29,5],[124,7],[1,3],[205,8],[2,2],[1,2],[301,10],[1,6],[1,1],[2,2],[1,1],[2,2],[1,1],[3,2],[61,6],[168,10],[1,1],[155,8],[302,9],[36,6],[52,6],[1,1],[1,1],[27,5],[87,7],[41,7],[409,10],[1,2],[241,9],[313,10],[621,10],[51,6],[22,6],[35,6],[10,5],[26,7],[7,3],[126,7],[3,4],[15,4],[34,8],[873,10],[22,5],[18,5],[2,2],[1,1],[380,10],[1,2],[1,2],[10,6],[210,9],[61,10],[392,10],[124,7],[53,7],[12,4],[15,4],[1,1],[854,10],[215,8],[1,1],[71,7],[8,8],[1,1],[200,10],[16,8],[1,4],[179,8],[29,6],[38,6],[13,4],[44,8],[506,9],[378,9],[25,7],[2,2],[1,2],[1,1],[65,7],[6,4],[1,4],[3,3],[70,7],[810,10],[223,9],[38,8],[168,8],[11,4],[469,9],[1022,10],[3,2],[19,9],[27,5],[147,8],[51,6],[20,10],[331,10],[372,9],[561,10],[14,4],[12,4],[2,3],[7,8],[2,5],[79,7],[1,2],[255,10],[71,8],[44,7],[1,1],[2,3],[75,8],[82,9],[12,4],[5,4],[115,7],[1,1],[479,9],[10,5],[1,2],[146,10],[40,9],[4,4],[5,3],[58,6],[224,9],[204,8],[65,8],[28,6],[5,4],[183,8],[37,6],[304,10],[1,1],[35,6],[8,4],[1,1],[95,10],[3,2],[14,4],[111,8],[7,3],[24,5],[153,8],[10,6],[17,6],[1,1],[582,10],[99,8],[5,3],[1,2],[4,3],[4,4],[11,4],[52,9],[15,4],[1,3],[1,1],[29,5],[53,9],[11,5],[300,10],[11,4],[6,3],[3,2],[8,4],[233,9],[800,10],[70,8],[92,7],[622,10],[2,2],[5,5],[1,1],[23,5],[195,8],[12,4],[1,3],[12,5],[31,7],[18,7],[89,7],[8,4],[602,10],[405,10],[15,7],[1,2],[1,4],[1,3],[15,4],[9,6],[7,3],[1,3],[1,4],[87,8],[11,5],[2,3],[12,8],[85,7],[195,8],[125,8],[41,8],[10,6],[145,8],[9,4],[7,3],[6,3],[30,5],[3,3],[154,8],[206,10],[15,4],[1,1],[446,9],[44,8],[501,9],[143,10],[1,1],[81,7],[384,9],[1,8],[13,4],[1,2],[895,10],[19,5],[428,10],[3,2],[14,4],[1,4],[3,3],[74,9],[289,9],[2,3],[32,6],[10,4],[7,3],[44,6],[205,9],[5,4],[52,6],[14,5],[36,9],[3,5],[3,2],[182,10],[95,7],[1,1],[54,6],[1,1],[106,7],[295,10],[2,4],[70,8],[1,2],[2,2],[815,10],[189,8],[3,2],[89,8],[15,8],[15,4],[3,2],[690,10],[640,10],[502,9],[1,1],[913,10],[2,5],[27,5],[7,3],[2,5],[1,1],[20,5],[13,5],[63,7],[2,2],[787,10],[20,5],[508,9],[1,1],[66,7],[2,5],[981,10],[14,4],[54,6],[4,3],[5,4],[171,8],[1,1],[13,8],[40,7],[3,3],[376,9],[4,4],[1,1],[73,8],[16,5],[132,8],[2,3],[3,3],[1,1],[1,1],[2,2],[23,6],[1,1],[9,4],[1,1],[232,8],[3,2],[1,2],[93,7],[1,3],[7,4],[1,2],[14,5],[5,4],[1,3],[53,7],[1,2],[50,6],[48,6],[870,10],[1,1],[51,6],[18,5],[9,6],[68,8],[41,6],[40,6],[13,8],[134,8],[37,6],[1021,10],[89,9],[6,4],[15,4],[484,9],[194,8],[1,1],[488,9],[42,7],[238,9],[181,9],[6,3],[3,2],[5,3],[1,2],[49,7],[348,9],[9,8],[29,6],[165,9],[2,2],[1,2],[1,1],[171,8],[29,5],[127,10],[626,10],[8,5],[2,8],[10,4],[2,4],[1,1],[4,6],[51,6],[11,4],[84,7],[435,10],[3,2],[3,5],[8,4],[35,8],[1,1],[3,2],[7,4],[663,10],[31,6],[101,7],[1,1],[21,5],[1,1],[1,1],[22,5],[18,6],[77,9],[3,2],[107,7],[120,8],[43,6],[61,6],[104,8],[113,8],[228,8],[19,6],[2,3],[257,10],[4,5],[74,9],[10,4],[36,8],[2,3],[22,5],[1,1],[513,10],[247,8],[5,4],[1,1],[3,2],[2,2],[7,3],[445,10],[265,9],[196,8],[1,1],[11,4],[8,4],[11,6],[104,7],[9,6],[21,5],[183,8],[10,4],[11,4],[274,10],[3,3],[1,2],[26,7],[487,10],[53,6],[837,10],[42,6],[75,7],[93,8],[149,9],[5,3],[251,8],[79,7],[14,4],[7,3],[39,7],[11,5],[5,5],[51,9],[72,9],[1,1],[155,8],[40,7],[76,7],[205,8],[63,6],[60,6],[29,6],[258,10],[1,2],[2,2],[2,4],[2,3],[94,8],[289,9],[170,8],[4,4],[7,4],[12,4],[20,5],[233,9],[3,3],[82,7],[1,1],[1,1],[1,2],[1,1],[627,10],[5,6],[49,7],[177,8],[5,7],[19,7],[35,6],[474,9],[868,10],[50,6],[105,7],[13,4],[276,9],[27,5],[14,5],[2,2],[75,8],[104,7],[1,2],[2,2],[13,5],[997,10],[94,7],[9,4],[106,8],[14,5],[3,2],[76,8],[2,3],[57,6],[326,9],[1,1],[179,8],[1,4],[114,7],[1,2],[3,2],[7,3],[77,7],[1,2],[381,9],[231,10],[1,4],[8,4],[5,3],[122,9],[5,4],[712,10],[6,4],[24,5],[5,6],[99,8],[1,1],[31,5],[17,5],[31,6],[118,7],[89,9],[15,4],[31,6],[242,9],[106,8],[24,5],[32,6],[2,2],[98,8],[400,9],[6,5],[2,5],[436,9],[79,7],[24,5],[393,10],[31,5],[7,3],[3,2],[197,8],[195,8],[1,1],[11,4],[7,3],[15,4],[2,5],[1,1],[90,7],[11,4],[287,9],[56,6],[126,9],[1,1],[4,3],[7,5],[3,2],[68,9],[15,6],[49,6],[7,4],[94,8],[7,5],[127,8],[6,4],[124,8],[120,8],[64,7],[57,6],[8,4],[45,7],[119,8],[3,3],[2,6],[1,1],[64,7],[107,7],[178,8],[113,7],[1,1],[1,1],[15,6],[16,5],[3,4],[4,4],[29,7],[88,7],[396,9],[57,7],[661,10],[147,9],[89,7],[288,9],[6,4],[1,6],[94,7],[1,1],[1,1],[35,9],[3,5],[512,10],[43,6],[28,5],[45,9],[1,2],[51,7],[48,7],[3,2],[2,2],[13,5],[204,10],[40,9],[8,5],[34,6],[1012,10],[1,2],[421,9],[3,3],[5,7],[14,5],[26,6],[1,1],[34,6],[431,9],[14,6],[2,6],[1,1],[1,1],[33,6],[3,3],[108,7],[194,8],[726,10],[27,8],[1,1],[24,5],[24,5],[1,2],[1,1],[1,2],[6,3],[4,3],[271,9],[55,7],[4,4],[9,4],[97,7],[212,8],[24,8],[231,8],[72,8],[2,3],[145,8],[3,4],[1,4],[1,2],[6,8],[29,7],[23,7],[158,8],[1,2],[481,10],[1,4],[17,6],[85,9],[20,5],[17,5],[5,3],[2,2],[31,6],[1,1],[3,2],[58,6],[21,6],[12,4],[3,4],[411,10],[2,2],[2,3],[1,1],[3,2],[2,2],[5,4],[378,9],[10,5],[16,6],[956,10],[24,6],[1,1],[2,3],[1,4],[2,2],[2,2],[11,5],[159,9],[363,9],[1,1],[7,4],[5,3],[437,9],[350,9],[14,4],[3,2],[8,4],[264,9],[34,7],[97,9],[178,8],[2,5],[124,9],[6,3],[107,8],[1,8],[503,9],[26,5],[7,6],[1,2],[61,6],[4,3],[830,10],[66,9],[214,8],[361,9],[3,5],[1,1],[3,2],[5,3],[1,1],[63,6],[1,1],[31,5],[60,7],[1,1],[1,1],[11,4],[1,1],[27,5],[119,8],[11,5],[28,5],[1,2],[54,6],[157,9],[7,3],[38,9],[748,10],[42,6],[98,7],[198,8],[3,2],[562,10],[26,5],[834,10],[82,9],[41,6],[440,9],[8,4],[15,5],[13,4],[2,3],[101,7],[243,8],[15,4],[1,3],[83,7],[276,9],[2,5],[9,4],[21,7],[8,5],[6,3],[53,6],[459,9],[1,1],[48,9],[26,5],[2,2],[1,1],[58,6],[107,8],[1,1],[14,4],[48,7],[7,3],[325,10],[75,7],[14,4],[11,4],[594,10],[2,5],[119,7],[1,1],[3,2],[90,7],[43,6],[117,7],[6,4],[1,3],[4,5],[218,8],[29,9],[6,4],[6,4],[17,5],[9,4],[927,10],[1,1],[1,3],[1,1],[145,9],[14,4],[56,7],[11,4],[1,4],[246,8],[9,6],[56,6],[4,3],[104,7],[1,1],[82,8],[680,10],[801,10],[1,2],[3,2],[44,7],[20,5],[1,3],[152,9],[175,9],[1,1],[1,1],[6,5],[1,1],[55,8],[3,3],[219,8],[3,2],[26,5],[1,1],[3,9],[3,2],[871,10],[30,6],[3,3],[42,6],[220,8],[1,1],[16,5],[27,10],[25,7],[3,2],[462,9],[80,8],[613,10],[3,4],[16,6],[1,3],[83,7],[4,4],[81,7],[11,5],[7,3],[1,1],[79,7],[27,5],[129,8],[14,4],[2,2],[18,6],[1,2],[148,9],[13,5],[4,3],[62,6],[48,6],[4,3],[6,3],[21,7],[187,8],[1,1],[224,8],[4,3],[1,1],[146,8],[4,3],[11,4],[4,5],[2,3],[321,10],[725,10],[426,10],[242,10],[1,1],[2,2],[717,10],[2,4],[838,10],[129,8],[591,10],[288,9],[1,1],[132,8],[205,8],[27,7],[1,2],[24,7],[1,3],[128,9],[117,7],[1,3],[8,4],[14,4],[29,7],[37,6],[14,5],[5,3],[265,9],[27,6],[461,9],[32,6],[485,9],[5,3],[14,4],[1,1],[12,4],[2,5],[2,2],[1,1],[10,4],[69,7],[2,2],[1,1],[3,2],[5,5],[121,7],[28,5],[54,6],[2,2],[10,7],[70,7],[2,2],[3,2],[1,2],[1,1],[1,2],[13,4],[354,10],[785,10],[1,1],[1,7],[230,9],[23,5],[57,9],[58,6],[11,4],[1,1],[3,2],[3,3],[4,3],[13,6],[1,2],[114,7],[7,3],[302,9],[46,6],[32,8],[1,2],[23,5],[90,10],[9,8],[3,3],[12,5],[229,8],[51,6],[185,8],[12,5],[717,10],[31,5],[283,9],[1,1],[76,7],[9,4],[1,3],[1,1],[7,3],[1,1],[13,4],[65,8],[56,8],[201,8],[15,8],[2,4],[5,4],[15,4],[407,10],[1,1],[1,2],[447,9],[135,8],[23,8],[38,7],[550,10],[596,10],[63,6],[70,7],[199,9],[10,10],[1,2],[7,3],[842,10],[4,3],[1,2],[21,7],[1,4],[105,10],[1,1],[101,8],[7,4],[3,4],[478,9],[23,5],[5,4],[6,4],[252,9],[1,1],[3,2],[30,6],[7,3],[5,3],[96,7],[82,8],[1,1],[25,6],[554,10],[15,4],[216,8],[16,8],[9,4],[11,5],[15,6],[13,5],[46,7],[2,2],[183,10],[6,3],[7,4],[412,9],[191,8],[486,9],[7,3],[5,4],[4,4],[2,6],[1,1],[15,5],[7,5],[4,3],[9,4],[3,4],[58,6],[165,9],[200,8],[51,7],[8,6],[33,6],[509,9],[16,6],[18,5],[1,2],[147,8],[1,1],[322,9],[1,5],[11,8],[38,7],[171,9],[3,2],[40,6],[1,2],[24,5],[99,7],[55,6],[1,2],[953,10],[2,2],[1,1],[96,9],[10,4],[120,7],[5,3],[2,3],[28,6],[56,6],[5,6],[3,2],[29,5],[25,5],[175,8],[67,7],[11,7],[315,10],[30,5],[842,10],[123,7],[72,8],[43,7],[169,8],[2,2],[1,1],[19,5],[216,9],[18,5],[1,2],[1,1],[850,10],[9,4],[159,9],[1,5],[1,1],[5,3],[4,3],[1,4],[1,1],[690,10],[1,1],[460,9],[39,6],[184,9],[1,1],[39,7],[22,5],[1,1],[2,4],[5,3],[1,1],[1,5],[482,10],[20,6],[2,2],[194,9],[11,7],[5,6],[2,3],[51,6],[1,1],[79,7],[1,1],[3,3],[5,8],[2,2],[10,5],[1,2],[1,1],[1,1],[4,3],[55,7],[10,5],[76,7],[5,5],[5,3],[41,6],[6,3],[2,2],[5,3],[104,7],[7,6],[21,6],[1,3],[7,3],[85,7],[378,9],[4,4],[6,3],[122,7],[542,10],[503,9],[79,9],[11,7],[1,3],[45,7],[2,2],[10,4],[117,8],[2,4],[79,7],[59,7],[110,7],[1,1],[19,5],[23,8],[1,1],[1,1],[1,5],[2,2],[3,2],[249,8],[419,9],[137,8],[61,7],[7,3],[543,10],[14,4],[32,6],[15,8],[3,2],[1,2],[243,9],[5,3],[61,6],[20,7],[2,3],[1,2],[122,7],[363,9],[25,6],[174,9],[13,4],[340,9],[88,10],[44,6],[100,7],[92,8],[5,3],[49,6],[15,4],[555,10],[10,4],[19,5],[95,8],[1,1],[10,5],[223,10],[21,5],[65,7],[39,6],[707,10],[24,6],[10,4],[2,2],[149,8],[156,9],[2,3],[893,10],[377,10],[1,1],[38,6],[5,3],[13,6],[205,8],[54,7],[237,9],[477,9],[2,3],[418,9],[8,4],[45,8],[316,9],[11,5],[1,1],[14,4],[1,1],[15,6],[97,7],[6,3],[5,4],[1,1],[667,10],[1,4],[92,7],[16,7],[43,6],[179,8],[2,2],[1,1],[5,4],[12,4],[7,3],[8,4],[3,2],[2,2],[5,3],[13,4],[16,7],[1,1],[248,8],[435,10],[30,5],[138,8],[205,9],[3,3],[704,10],[1,1],[17,5],[1,1],[1,2],[27,5],[22,5],[26,5],[6,3],[30,6],[85,7],[1,1],[1,4],[28,6],[2,5],[1,1],[1,4],[1,1],[28,5],[870,10],[6,3],[10,5],[58,10],[891,10],[845,10],[2,2],[24,5],[99,7],[1,2],[2,2],[1,1],[36,9],[110,9],[5,3],[480,10],[43,8],[5,3],[363,9],[1,1],[28,5],[4,3],[358,9],[5,4],[33,6],[42,6],[222,8],[3,4],[3,3],[224,8],[259,10],[1,1],[39,7],[1,2],[141,10],[14,4],[1,1],[4,3],[8,4],[77,7],[11,6],[3,3],[117,7],[239,8],[3,2],[46,7],[168,10],[7,6],[1,1],[10,4],[197,9],[2,2],[2,4],[1,2],[2,4],[46,7],[1,1],[3,3],[6,4],[7,3],[306,9],[3,5],[24,5],[46,7],[432,10],[5,4],[20,5],[181,9],[91,8],[248,10],[8,5],[6,4],[1,1],[80,7],[970,10],[85,7],[40,7],[47,6],[7,3],[24,5],[120,7],[57,6],[1,1],[127,8],[145,8],[209,8],[680,10],[14,4],[1,1],[8,6],[1,1],[61,7],[15,4],[5,4],[369,9],[158,8],[5,5],[189,8],[1,1],[1,1],[2,3],[28,5],[941,10],[7,3],[21,5],[6,4],[453,9],[1,1],[209,9],[4,4],[426,10],[23,7],[341,10],[13,4],[39,6],[10,5],[29,5],[6,3],[15,4],[10,4],[1,2],[124,7],[9,7],[194,9],[14,5],[3,4],[1,2],[1,1],[94,8],[79,8],[1,4],[96,7],[114,9],[65,8],[25,5],[171,10],[30,5],[355,9],[108,8],[63,6],[5,4],[965,10],[363,10],[3,2],[42,8],[4,3],[3,4],[1,2],[1,5],[236,8],[3,7],[34,8],[49,9],[134,10],[30,5],[259,10],[111,7],[2,3],[967,10],[4,3],[85,9],[133,8],[6,5],[21,5],[1,1],[847,10],[20,5],[3,3],[265,9],[28,5],[799,10],[130,9],[31,5],[3,2],[60,6],[6,3],[17,5],[7,6],[40,7],[3,6],[108,8],[5,3],[75,7],[1,1],[4,5],[1,1],[2,2],[253,10],[58,8],[2,3],[12,4],[78,7],[62,8],[1,1],[44,10],[18,6],[243,9],[197,8],[61,7],[3,2],[45,6],[50,6],[243,8],[82,7],[3,4],[249,9],[57,10],[47,6],[6,4],[41,6],[205,8],[2,4],[183,8],[151,10],[204,9],[1,1],[126,7],[5,3],[274,9],[8,5],[3,3],[482,9],[397,9],[2,5],[1,1],[1,1],[1,1],[279,9],[2,3],[32,6],[1,2],[34,6],[3,2],[7,3],[1,1],[6,4],[2,3],[90,7],[96,7],[18,6],[127,7],[1,1],[183,8],[38,6],[21,5],[62,6],[3,4],[5,3],[111,9],[831,10],[457,9],[22,5],[59,6],[65,7],[3,3],[381,10],[115,7],[1,2],[63,6],[3,5],[17,7],[730,10],[1,1],[1,5],[2,5],[1,1],[1,3],[144,8],[120,7],[3,2],[2,5],[41,6],[146,8],[78,7],[11,4],[73,7],[7,3],[312,9],[1,1],[1,1],[52,6],[39,7],[1,1],[17,5],[344,9],[45,9],[10,5],[238,8],[3,2],[1,1],[5,4],[23,9],[85,7],[631,10],[25,5],[12,10],[17,7],[2,2],[269,9],[26,5],[5,4],[8,4],[3,2],[448,9],[49,7],[2,2],[1,2],[1,2],[503,9],[71,7],[81,7],[65,7],[15,5],[25,6],[15,4],[21,5],[462,9],[6,3],[70,9],[1,1],[2,2],[5,6],[505,9],[110,7],[206,9],[1,1],[910,10],[34,7],[10,4],[24,5],[77,7],[14,4],[148,10],[40,6],[108,8],[1,3],[13,4],[1,1],[77,7],[509,10],[5,3],[3,2],[18,8],[44,9],[64,9],[402,9],[2,5],[309,9],[1,1],[293,9],[280,9],[225,8],[4,4],[90,8],[155,10],[1,1],[2,2],[3,2],[6,4],[2,2],[7,5],[14,4],[1,1],[12,5],[1,1],[4,3],[154,8],[102,7],[7,3],[1,2],[1,1],[2,3],[191,8],[1,1],[18,5],[372,9],[61,7],[24,5],[17,5],[348,9],[2,2],[7,5],[24,5],[1,1],[2,4],[19,5],[2,2],[4,3],[2,3],[1,1],[60,6],[1,4],[4,4],[11,4],[1,1],[11,4],[24,5],[107,7],[1,1],[85,8],[12,4],[5,3],[30,5],[1,2],[81,8],[6,3],[1,2],[15,4],[9,4],[27,6],[22,5],[49,6],[1,3],[2,3],[395,9],[27,6],[26,5],[16,5],[120,8],[20,5],[445,9],[2,2],[5,3],[29,5],[140,8],[6,3],[5,3],[13,4],[211,10],[286,9],[3,3],[152,8],[31,7],[590,10],[20,9],[416,9],[1,1],[214,9],[242,8],[343,10],[12,6],[1,2],[1,1],[31,6],[177,8],[10,4],[5,5],[1,1],[18,5],[1,1],[6,5],[28,9],[662,10],[2,4],[2,3],[225,10],[59,7],[14,9],[23,7],[1,3],[1,1],[13,4],[11,4],[1,3],[30,5],[14,4],[3,2],[1,1],[1,1],[3,4],[324,10],[5,4],[22,6],[133,9],[498,9],[32,6],[66,7],[216,9],[3,2],[3,2],[186,9],[1,6],[3,3],[1,1],[126,7],[1,1],[22,7],[1,2],[368,10],[15,5],[4,4],[1,2],[13,6],[8,4],[975,10],[61,9],[1,4],[510,10],[4,3],[254,10],[4,3],[429,9],[28,6],[1,1],[3,2],[1,1],[23,6],[5,3],[1,2],[633,10],[1,1],[54,6],[1,1],[4,3],[51,6],[1,1],[99,7],[6,5],[49,7],[3,3],[1,1],[11,5],[276,9],[325,10],[518,10],[46,7],[12,4],[34,6],[149,8],[218,8],[2,6],[448,9],[60,8],[107,8],[108,7],[42,6],[1,6],[88,7],[67,8],[267,10],[13,5],[1,2],[30,6],[1,3],[9,4],[21,5],[33,7],[6,3],[19,10],[1,1],[1,1],[1,1],[118,7],[3,2],[139,8],[13,5],[1,1],[3,3],[8,4],[143,8],[2,3],[215,8],[3,5],[1,1],[883,10],[9,5],[6,3],[487,10],[81,7],[46,8],[6,4],[571,10],[2,2],[25,6],[197,9],[4,3],[3,4],[113,9],[3,4],[213,8],[206,8],[889,10],[45,8],[3,2],[3,2],[1,1],[42,6],[14,5],[30,5],[1,2],[2,2],[56,6],[887,10],[4,5],[3,2],[439,9],[2,2],[413,9],[3,2],[9,4],[22,6],[344,10],[2,2],[2,2],[124,8],[88,10],[681,10],[463,9],[90,7],[7,4],[9,5],[1,1],[3,2],[1,1],[1,2],[2,3],[1,4],[930,10],[427,9],[103,9],[66,7],[2,4],[179,8],[206,8],[3,9],[155,10],[6,4],[1,3],[1,1],[8,6],[85,8],[292,9],[3,2],[642,10],[1,1],[2,3],[7,3],[102,9],[6,3],[15,5],[4,4],[192,10],[7,3],[64,7],[153,8],[1,1],[3,2],[817,10],[4,4],[1,6],[195,9],[181,8],[6,6],[9,5],[3,6],[385,10],[114,7],[20,6],[6,4],[30,5],[62,6],[949,10],[23,5],[3,3],[372,9],[13,7],[130,9],[3,2],[6,6],[200,8],[96,7],[24,7],[1,1],[7,9],[7,6],[27,5],[263,9],[1,2],[37,7],[3,4],[58,6],[367,9],[6,3],[7,3],[26,5],[14,6],[659,10],[48,6],[22,5],[26,6],[5,3],[38,6],[1,6],[436,9],[84,10],[55,6],[22,10],[1,1],[6,3],[21,10],[68,8],[1,1],[264,9],[1,1],[3,4],[8,4],[1,2],[7,3],[2,2],[60,6],[55,6],[5,7],[1,2],[7,4],[1,1],[31,5],[6,4],[3,5],[1,1],[1,2],[75,7],[3,2],[18,7],[1,1],[3,2],[9,5],[32,6],[46,7],[20,5],[76,8],[23,5],[1,1],[548,10],[12,4],[16,5],[13,5],[44,6],[239,8],[3,2],[28,5],[118,9],[93,8],[105,7],[1,2],[5,3],[227,8],[209,8],[36,6],[749,10],[53,7],[723,10],[14,7],[134,8],[2,2],[24,5],[1,1],[6,3],[60,6],[16,8],[38,6],[1,3],[63,6],[18,5],[99,7],[1,1],[67,8],[2,2],[2,4],[43,6],[638,10],[6,3],[64,8],[16,7],[1,1],[3,3],[67,7],[6,4],[28,5],[1,1],[18,7],[4,3],[1,2],[1,2],[346,10],[130,8],[466,10],[7,3],[85,8],[98,7],[13,4],[2,2],[13,7],[6,6],[4,4],[31,6],[1,4],[793,10],[156,9],[2,2],[1,1],[6,3],[388,10],[188,10],[76,7],[23,6],[2,2],[115,9],[13,4],[355,10],[5,4],[33,6],[20,9],[3,2],[252,8],[81,8],[1,2],[1,1],[251,10],[12,4],[15,4],[1,2],[227,8],[1,1],[17,6],[55,6],[21,5],[756,10],[6,5],[1,1],[7,3],[84,9],[1,2],[254,8],[3,9],[25,6],[45,6],[1,1],[175,9],[473,10],[46,6],[14,5],[130,8],[109,9],[102,7],[1,3],[2,2],[24,5],[2,2],[67,7],[4,4],[1,2],[707,10],[3,2],[6,5],[196,8],[197,8],[40,6],[5,4],[45,6],[383,9],[1,4],[3,4],[82,9],[40,6],[793,10],[164,9],[15,6],[138,8],[1,3],[12,4],[128,10],[20,5],[2,10],[9,4],[19,5],[15,7],[1,2],[59,6],[107,7],[2,2],[121,8],[34,7],[120,8],[6,3],[1,1],[2,2],[3,2],[29,5],[846,10],[1,1],[48,6],[1,2],[613,10],[204,8],[106,8],[1,3],[6,3],[1,1],[6,4],[16,6],[546,10],[441,9],[204,8],[4,3],[29,6],[6,3],[72,7],[345,9],[212,9],[3,5],[75,7],[52,6],[53,6],[304,10],[5,5],[8,4],[1,1],[64,7],[11,5],[7,4],[14,4],[49,7],[1,2],[192,8],[17,8],[127,8],[3,5],[15,4],[28,5],[54,7],[14,6],[5,3],[30,5],[7,3],[6,3],[6,4],[216,8],[842,10],[301,9],[23,5],[541,10],[21,6],[6,3],[3,2],[12,4],[1,3],[63,7],[4,8],[367,9],[1,1],[509,9],[1,5],[37,7],[1,1],[507,10],[197,9],[1,1],[6,4],[18,5],[57,7],[196,9],[10,6],[15,5],[1,1],[219,10],[14,5],[208,8],[6,3],[1,2],[1,1],[97,8],[7,4],[7,5],[4,3],[20,7],[27,5],[56,7],[2,5],[196,8],[6,4],[27,5],[6,4],[330,9],[63,7],[1,1],[28,6],[11,5],[363,9],[6,3],[19,6],[7,3],[1,1],[36,6],[178,8],[47,6],[1,1],[397,9],[522,10],[48,9],[332,10],[1,4],[12,4],[233,10],[118,7],[4,6],[973,10],[5,3],[7,5],[820,10],[4,3],[7,3],[495,9],[85,7],[29,5],[396,9],[37,6],[12,4],[1,1],[1,1],[57,6],[8,5],[1,1],[94,8],[3,2],[3,2],[1,2],[1,1],[53,7],[799,10],[1,2],[24,5],[24,5],[1,1],[12,4],[24,6],[464,9],[78,8],[4,3],[384,9],[10,5],[25,10],[15,4],[3,3],[280,10],[351,9],[3,3],[1,2],[1,1],[10,10],[5,5],[4,4],[3,2],[2,2],[7,3],[45,9],[24,6],[1,1],[5,3],[1,1],[40,7],[2,4],[338,9],[14,6],[97,8],[25,5],[6,7],[36,7],[206,8],[1,4],[1,1],[73,7],[7,7],[2,2],[119,8],[112,7],[699,10],[2,4],[42,7],[218,8],[505,9],[8,5],[219,10],[361,10],[60,8],[66,8],[21,5],[244,8],[16,5],[23,6],[34,6],[113,7],[21,6],[30,10],[1,2],[1,2],[30,6],[1,1],[106,8],[16,5],[271,9],[4,5],[36,7],[71,8],[13,4],[57,6],[87,7],[43,7],[1,1],[10,4],[2,3],[41,9],[32,6],[18,8],[32,6],[62,8],[25,5],[1,1],[35,6],[1,1],[51,6],[48,6],[35,6],[105,7],[1,1],[1,1],[214,9],[170,8],[1,2],[1,5],[96,7],[1,2],[134,8],[472,9],[14,4],[37,7],[12,6],[8,5],[24,5],[9,5],[7,5],[17,9],[906,10],[1,1],[107,8],[8,4],[210,10],[123,9],[9,8],[3,2],[11,8],[861,10],[170,8],[175,10],[2,3],[52,7],[89,7],[15,4],[6,4],[1,1],[13,4],[112,7],[1,1],[19,5],[1,1],[1,1],[81,9],[1,1],[2,2],[1,1],[509,10],[1,1],[1,2],[338,9],[60,6],[14,4],[1,2],[80,7],[1,1],[90,7],[5,4],[10,4],[74,7],[145,9],[13,4],[6,5],[26,5],[374,9],[2,2],[3,2],[43,7],[887,10],[38,7],[1,1],[383,10],[44,6],[26,7],[12,4],[499,9],[5,5],[905,10],[1,1],[1,1],[1,1],[1,2],[88,9],[3,2],[1,1],[74,8],[5,3],[199,9],[7,4],[936,10],[41,6],[2,3],[1,2],[2,2],[1,4],[193,9],[1,1],[739,10],[25,5],[1,2],[7,3],[29,7],[5,4],[58,6],[34,7],[7,3],[11,5],[649,10],[51,6],[418,9],[340,9],[2,2],[153,9],[38,6],[1,2],[8,5],[82,7],[486,9],[312,9],[453,10],[72,7],[1,1],[3,3],[3,2],[6,3],[28,5],[7,3],[7,5],[138,9],[23,5],[1,4],[1,1],[38,8],[60,9],[28,6],[5,3],[167,9],[1,5],[29,9],[6,3],[5,4],[1,2],[53,6],[32,6],[1,1],[443,9],[75,8],[5,5],[6,4],[23,5],[1,3],[11,4],[46,7],[422,9],[7,6],[15,4],[62,6],[1,1],[182,9],[236,9],[1,1],[1,1],[24,7],[24,5],[113,8],[199,8],[3,4],[72,10],[50,6],[170,8],[2,5],[40,6],[2,2],[2,2],[178,9],[6,3],[454,10],[1,1],[1,1],[39,10],[6,3],[3,2],[11,5],[2,2],[201,8],[339,9],[452,10],[7,3],[13,5],[1,8],[57,6],[4,4],[9,4],[640,10],[116,7],[6,3],[7,4],[6,5],[1,1],[220,8],[78,9],[86,7],[1,3],[20,6],[8,4],[3,6],[115,8],[137,9],[49,6],[124,7],[422,10],[9,4],[1,2],[2,2],[27,8],[150,10],[7,4],[1,2],[1,1],[2,2],[397,9],[505,9],[13,7],[1,2],[1,1],[169,8],[75,7],[1,2],[2,5],[9,4],[35,6],[2,7],[15,6],[107,10],[260,9],[130,8],[14,4],[1,1],[467,9],[28,8],[93,8],[14,6],[45,6],[27,7],[228,9],[18,9],[1,2],[3,2],[841,10],[10,4],[7,4],[29,5],[347,10],[186,9],[176,9],[7,4],[1,1],[15,5],[3,3],[148,10],[1,1],[2,4],[84,7],[19,6],[42,6],[3,3],[111,7],[241,8],[7,3],[1,1],[6,6],[7,3],[30,6],[1,1],[2,3],[25,6],[5,3],[211,8],[647,10],[817,10],[7,4],[12,9],[475,9],[1,1],[1,2],[9,4],[3,2],[25,6],[41,10],[658,10],[3,2],[112,7],[3,4],[86,7],[1,3],[234,10],[1,1],[62,8],[1,3],[58,7],[11,7],[107,7],[2,3],[429,9],[3,6],[862,10],[1,1],[7,4],[365,9],[20,6],[3,2],[910,10],[755,10],[23,6],[9,5],[61,7],[458,10],[8,6],[190,8],[56,9],[7,5],[338,9],[115,8],[60,6],[554,10],[3,3],[25,5],[482,9],[1,1],[20,7],[752,10],[5,5],[3,2],[930,10],[3,6],[30,5],[1,3],[3,2],[210,8],[43,8],[18,7],[513,10],[15,4],[36,7],[9,7],[114,8],[2,2],[74,8],[845,10],[31,6],[893,10],[1,1],[78,10],[238,10],[14,5],[14,5],[4,3],[32,8],[30,5],[166,8],[12,5],[7,3],[23,8],[4,3],[6,5],[2,2],[10,5],[7,8],[54,6],[235,10],[424,9],[807,10],[178,8],[842,10],[36,8],[1,4],[469,9],[63,6],[3,3],[12,7],[1,2],[1,2],[7,6],[35,8],[36,7],[175,8],[1,1],[72,7],[971,10],[285,10],[3,2],[250,8],[41,6],[12,10],[5,3],[34,6],[2,3],[53,6],[154,10],[1,1],[2,2],[234,8],[437,9],[3,2],[1,1],[38,7],[3,3],[426,9],[932,10],[21,6],[823,10],[43,6],[1,4],[23,6],[1,6],[1,1],[3,5],[9,4],[115,7],[470,9],[9,4],[29,6],[1,3],[42,6],[1,1],[187,8],[206,8],[2,3],[5,3],[100,8],[288,9],[4,3],[73,8],[136,10],[1,1],[462,9],[1,1],[1,1],[130,10],[6,3],[80,8],[8,7],[1,5],[1,1],[329,10],[34,7],[3,3],[1,3],[820,10],[41,6],[2,4],[11,6],[1,3],[350,10],[1,2],[3,3],[3,2],[12,8],[25,6],[1,1],[25,7],[217,9],[6,4],[668,10],[7,7],[799,10],[25,6],[4,6],[14,5],[413,10],[2,2],[245,8],[1,3],[103,7],[288,9],[1,4],[1,1],[494,9],[1,1],[63,7],[14,4],[7,3],[53,6],[226,9],[113,7],[126,7],[7,6],[3,3],[2,2],[80,9],[1,1],[11,5],[10,4],[25,6],[1,2],[40,8],[194,8],[24,5],[14,4],[535,10],[8,4],[35,7],[13,6],[594,10],[143,9],[10,4],[1,1],[1,1],[24,5],[31,8],[7,4],[360,9],[392,9],[1,1],[633,10],[3,2],[97,7],[2,3],[111,7],[2,3],[357,9],[55,6],[3,4],[2,3],[47,6],[7,4],[198,8],[72,7],[229,8],[30,7],[1,3],[855,10],[19,7],[191,9],[510,9],[18,6],[127,7],[9,4],[1,1],[22,6],[84,7],[6,4],[1,4],[6,3],[3,2],[14,5],[2,3],[105,8],[1,1],[1,1],[5,3],[14,5],[6,3],[1,2],[11,4],[27,6],[3,3],[6,3],[623,10],[7,4],[6,8],[238,8],[45,6],[775,10],[46,7],[28,6],[1,1],[1,1],[1,1],[27,6],[8,5],[3,2],[935,10],[3,3],[862,10],[9,7],[125,8],[112,8],[411,10],[1,5],[1,1],[251,8],[19,5],[141,9],[3,2],[4,3],[173,9],[7,3],[266,9],[43,9],[18,5],[1,3],[3,4],[241,8],[457,9],[1,2],[1,3],[219,8],[2,3],[2,3],[7,3],[13,5],[2,3],[8,4],[17,6],[843,10],[6,3],[1,2],[29,5],[100,7],[75,7],[3,4],[28,8],[3,2],[387,10],[63,6],[1,1],[41,7],[26,7],[212,8],[31,5],[1,4],[91,7],[20,5],[82,7],[7,3],[584,10],[1,2],[1,2],[43,8],[1,2],[1,1],[3,2],[9,5],[1,1],[45,6],[7,5],[44,8],[49,6],[51,6],[12,4],[25,6],[1,2],[81,8],[8,5],[2,5],[2,3],[330,9],[36,7],[12,5],[143,10],[785,10],[3,5],[10,4],[266,9],[40,8],[1,1],[274,9],[41,8],[26,5],[1,1],[12,4],[23,6],[13,4],[7,6],[2,4],[126,7],[197,8],[1,1],[93,7],[33,6],[265,9],[1,1],[2,3],[2,8],[12,8],[524,10],[1,1],[85,7],[41,7],[3,3],[1,2],[520,10],[21,9],[1,1],[483,10],[53,7],[1,2],[277,10],[896,10],[1,1],[489,9],[1,2],[1,1],[1,2],[113,10],[5,3],[3,2],[10,4],[77,9],[1,2],[1,2],[48,8],[230,8],[1,1],[16,5],[10,4],[3,6],[376,9],[9,4],[15,4],[183,8],[24,5],[24,5],[1,1],[6,3],[41,6],[3,2],[88,8],[1,2],[1,3],[1,2],[1,2],[167,10],[5,4],[3,5],[1,2],[2,5],[101,7],[10,8],[1,1],[1,1],[2,2],[248,8],[437,9],[399,9],[377,9],[230,8],[250,9],[307,9],[22,5],[1,1],[42,8],[1,1],[26,6],[18,5],[78,9],[1,1],[2,3],[30,9],[6,8],[4,3],[30,5],[6,4],[8,5],[5,5],[10,5],[817,10],[5,3],[210,8],[84,7],[21,5],[171,8],[2,7],[141,8],[20,8],[1,1],[386,9],[243,8],[1,1],[423,10],[1,2],[1,5],[3,2],[108,8],[102,7],[27,6],[1,1],[249,10],[29,6],[17,6],[1,1],[157,8],[1,1],[69,7],[7,4],[14,4],[1,3],[27,5],[49,8],[1,3],[1,1],[1,1],[5,5],[1,1],[409,9],[10,4],[6,3],[459,9],[13,4],[18,7],[14,7],[5,3],[51,6],[1,1],[228,9],[51,6],[104,7],[15,5],[52,6],[4,3],[2,3],[251,9],[72,8],[4,3],[5,3],[137,9],[1,1],[1,1],[491,9],[2,2],[1,1],[346,9],[6,4],[16,8],[4,3],[6,6],[796,10],[3,2],[1,1],[7,3],[227,9],[15,6],[31,6],[3,4],[30,7],[46,7],[41,8],[81,8],[89,8],[47,7],[734,10],[94,9],[1,1],[15,5],[1,6],[1,2],[12,4],[2,4],[87,7],[116,7],[246,9],[8,4],[83,7],[2,2],[1,1],[4,3],[154,8],[188,9],[2,3],[92,7],[188,10],[27,6],[4,3],[102,8],[210,8],[2,3],[83,8],[451,9],[39,6],[612,10],[1,2],[18,8],[1,2],[3,2],[31,5],[78,9],[1,2],[2,2],[2,2],[107,10],[2,4],[252,8],[3,2],[15,5],[582,10],[35,7],[253,9],[205,8],[22,6],[12,8],[96,7],[159,9],[28,5],[1,4],[1,1],[1,1],[80,7],[112,7],[13,6],[406,10],[962,10],[1,1],[1,2],[6,4],[33,6],[4,3],[55,7],[2,3],[165,8],[232,8],[1,4],[52,7],[226,10],[1,2],[511,10],[3,2],[225,8],[18,7],[4,5],[30,5],[1,1],[11,5],[31,5],[153,8],[3,2],[9,4],[85,8],[165,8],[105,7],[368,9],[7,3],[41,6],[10,4],[228,9],[71,7],[31,5],[1,2],[474,9],[5,3],[518,10],[870,10],[101,7],[98,7],[22,7],[315,9],[704,10],[1,1],[2,4],[149,8],[59,6],[74,7],[1,2],[3,3],[281,9],[22,5],[74,7],[57,6],[79,7],[85,8],[30,8],[5,5],[4,3],[9,4],[1,1],[23,5],[193,9],[48,6],[1,2],[648,10],[404,10],[609,10],[13,4],[23,5],[21,5],[17,5],[51,7],[6,3],[4,3],[1,1],[28,6],[154,8],[211,8],[5,3],[13,4],[85,7],[2,3],[223,9],[69,8],[10,5],[3,3],[269,10],[26,5],[240,8],[15,4],[7,5],[1,1],[6,4],[153,9],[121,7],[25,5],[11,4],[25,7],[5,3],[7,4],[13,5],[308,10],[1,2],[3,4],[72,8],[1,1],[6,5],[63,8],[1012,10],[87,9],[9,4],[3,2],[354,10],[3,6],[5,4],[26,7],[97,8],[492,9],[1,1],[9,4],[166,8],[31,6],[42,8],[1,2],[158,8],[3,2],[174,9],[6,3],[1,1],[21,6],[2,2],[5,5],[1,1],[127,8],[3,2],[10,4],[193,10],[1,1],[188,9],[142,9],[1,1],[46,6],[16,5],[150,9],[13,4],[1,1],[502,10],[7,4],[5,4],[11,7],[1,3],[7,5],[1,1],[13,4],[1,1],[1,1],[859,10],[11,4],[154,9],[33,6],[2,3],[1,1],[90,10],[215,10],[1,1],[105,7],[24,5],[57,6],[161,9],[74,7],[1,2],[2,5],[1,1],[1,1],[197,9],[7,7],[1,3],[2,3],[1,1],[15,4],[264,9],[213,8],[120,7],[202,8],[15,6],[37,6],[8,5],[105,7],[1,1],[14,5],[1,2],[1,1],[3,2],[790,10],[2,2],[15,5],[1,2],[15,5],[295,9],[2,5],[7,4],[1,1],[143,10],[1,1],[23,5],[1,2],[91,8],[1,4],[107,8],[57,7],[672,10],[1,2],[243,8],[207,8],[241,9],[6,5],[1,2],[1,1],[152,8],[16,5],[24,6],[10,4],[56,7],[3,3],[45,7],[1,1],[1,2],[38,7],[1,1],[1,1],[583,10],[7,3],[1,1],[117,8],[22,5],[482,10],[15,5],[489,10],[157,9],[74,8],[8,5],[110,8],[3,2],[7,3],[41,7],[13,4],[3,2],[36,6],[233,9],[31,6],[6,3],[59,7],[38,6],[43,6],[2,5],[2,8],[55,7],[1,1],[13,6],[86,9],[6,4],[3,3],[28,7],[1,1],[127,8],[37,6],[90,8],[59,8],[3,3],[2,3],[402,9],[157,10],[4,6],[10,4],[249,9],[102,8],[2,3],[2,2],[30,7],[434,9],[58,7],[1,1],[1,3],[509,10],[25,5],[40,10],[60,6],[4,6],[2,2],[828,10],[107,9],[1,1],[10,8],[8,7],[44,7],[1,1],[7,3],[202,10],[31,5],[1,1],[1,1],[9,4],[1,3],[4,3],[5,3],[3,2],[42,7],[94,9],[656,10],[1,2],[4,4],[2,3],[940,10],[15,4],[43,6],[143,10],[35,7],[102,7],[2,2],[43,6],[9,4],[12,4],[913,10],[1,2],[429,9],[1,1],[265,10],[951,10],[42,6],[77,8],[101,7],[6,4],[6,3],[31,7],[118,9],[14,4],[1,1],[1,1],[54,6],[436,9],[471,9],[11,4],[9,4],[82,9],[1,3],[6,4],[133,8],[6,5],[378,10],[15,6],[40,6],[1,1],[111,8],[6,3],[7,5],[179,9],[74,9],[90,7],[1,1],[188,9],[9,4],[1,1],[3,2],[1,5],[5,7],[1,1],[7,5],[1,2],[23,7],[6,3],[109,9],[23,10],[642,10],[28,5],[1,1],[2,6],[65,7],[3,2],[1,3],[494,10],[271,9],[892,10],[57,6],[160,9],[45,7],[147,8],[3,5],[85,8],[1,1],[99,8],[364,9],[10,4],[4,3],[19,5],[98,7],[28,5],[50,8],[829,10],[1014,10],[6,3],[78,8],[1,1],[3,2],[2,2],[3,2],[35,6],[5,3],[395,10],[512,10],[667,10],[150,8],[16,5],[4,4],[44,6],[123,10],[21,5],[700,10],[1,1],[780,10],[334,9],[166,8],[1,2],[40,7],[27,7],[6,3],[10,5],[2,2],[438,9],[22,5],[1,1],[3,4],[27,8],[1,1],[1,1],[96,7],[1,2],[1,1],[7,7],[7,3],[1,2],[27,6],[2,3],[320,9],[295,10],[27,6],[6,4],[4,4],[31,6],[1,1],[1,1],[1,2],[10,6],[5,6],[7,5],[1,1],[210,9],[15,6],[1,1],[677,10],[82,10],[160,9],[11,4],[428,9],[123,7],[783,10],[4,3],[45,7],[220,10],[378,9],[1,2],[937,10],[155,8],[130,9],[479,9],[127,8],[15,4],[5,3],[5,3],[321,9],[7,5],[5,3],[82,8],[62,6],[1,1],[7,3],[62,7],[25,5],[14,6],[1,2],[16,5],[1,1],[2,3],[3,2],[6,5],[28,5],[30,9],[12,4],[155,8],[1,1],[2,2],[388,9],[112,8],[139,8],[23,5],[14,6],[7,4],[7,4],[4,7],[414,9],[5,3],[3,2],[57,8],[1,2],[1,1],[184,8],[1,1],[949,10],[35,7],[2,3],[120,8],[2,8],[4,4],[3,3],[16,6],[2,2],[3,3],[1,1],[47,8],[1,1],[8,6],[31,6],[71,10],[7,6],[25,8],[119,9],[231,9],[526,10],[27,5],[28,5],[1,4],[44,6],[1,1],[4,4],[130,9],[200,10],[7,4],[704,10],[26,6],[3,2],[5,5],[45,8],[1,2],[6,3],[409,9],[21,5],[873,10],[7,3],[18,5],[340,9],[7,3],[3,2],[483,9],[356,10],[1,1],[3,2],[123,8],[271,10],[642,10],[23,8],[1,1],[1,1],[428,9],[297,9],[53,6],[48,7],[258,10],[182,8],[2,2],[27,5],[2,3],[1,2],[944,10],[63,6],[15,4],[6,3],[56,6],[875,10],[35,6],[11,4],[62,8],[1,1],[8,5],[119,7],[5,3],[5,4],[1,1],[2,2],[1,1],[7,3],[2,4],[31,8],[65,8],[92,8],[3,2],[1,1],[223,8],[10,4],[8,5],[52,9],[10,5],[4,4],[1,1],[617,10],[4,3],[19,5],[2,2],[169,8],[102,8],[1,1],[213,8],[1,1],[389,9],[13,4],[25,8],[1,2],[3,3],[99,7],[1,1],[11,5],[48,8],[119,8],[1,2],[7,7],[96,8],[120,9],[76,8],[511,9],[30,5],[910,10],[210,8],[1,1],[1,2],[2,2],[956,10],[155,9],[215,9],[188,8],[1,1],[989,10],[1,1],[184,9],[15,4],[4,3],[148,9],[50,8],[23,5],[561,10],[364,9],[1,1],[2,3],[123,8],[9,10],[1,2],[124,10],[12,5],[867,10],[386,10],[679,10],[7,3],[484,10],[7,7],[1,5],[262,9],[20,5],[3,3],[5,3],[127,7],[439,10],[249,10],[3,3],[3,2],[18,5],[303,9],[21,6],[78,7],[2,3],[176,10],[6,3],[611,10],[7,3],[175,9],[36,6],[5,3],[7,3],[42,6],[24,5],[33,10],[390,9],[18,5],[4,3],[2,2],[1,1],[1,1],[1,2],[6,3],[19,5],[202,8],[120,7],[68,7],[9,4],[100,9],[56,6],[1,1],[41,6],[6,3],[24,5],[6,4],[14,4],[5,4],[337,9],[123,7],[13,4],[9,5],[179,8],[14,4],[26,5],[989,10],[2,3],[1,6],[502,10],[174,9],[1,3],[17,5],[83,7],[39,6],[7,3],[7,3],[12,4],[3,4],[14,4],[1,2],[1007,10],[76,8],[1,1],[5,3],[693,10],[1,1],[104,8],[58,7],[16,5],[103,7],[7,7],[1,1],[806,10],[124,7],[413,10],[14,5],[49,7],[4,3],[8,5],[110,7],[4,4],[1,2],[2,7],[43,8],[4,3],[79,7],[3,4],[17,5],[6,3],[1,3],[57,7],[343,9],[120,7],[1,1],[970,10],[2,2],[10,5],[798,10],[54,8],[249,8],[12,4],[2,2],[13,4],[1,1],[20,6],[228,8],[494,9],[1,1],[3,2],[489,9],[6,4],[7,3],[87,8],[282,10],[1,1],[4,3],[477,9],[1,1],[8,4],[194,8],[1,3],[36,6],[276,9],[408,9],[140,8],[1,1],[810,10],[11,4],[1,1],[3,3],[1,3],[534,10],[41,7],[988,10],[1,1],[7,4],[430,9],[18,5],[20,8],[7,5],[1,2],[9,6],[1,2],[107,7],[31,8],[29,6],[1,2],[365,9],[39,7],[31,7],[822,10],[198,8],[1,1],[187,10],[4,4],[1,1],[213,8],[65,9],[18,5],[640,10],[6,3],[87,7],[90,7],[29,7],[999,10],[40,7],[2,6],[132,8],[3,3],[2,3],[21,5],[8,6],[1,1],[5,3],[35,6],[22,5],[123,9],[331,10],[2,2],[1,1],[2,3],[6,3],[142,8],[27,9],[87,7],[113,7],[8,5],[2,2],[3,2],[98,9],[408,9],[1,2],[19,5],[118,7],[8,5],[763,10],[229,8],[1,1],[109,10],[184,9],[2,2],[864,10],[248,8],[14,4],[1,1],[21,8],[52,10],[764,10],[32,7],[60,8],[283,9],[1,1],[263,9],[259,10],[8,4],[15,9],[469,9],[112,10],[10,4],[3,2],[114,8],[2,3],[1,1],[2,3],[24,5],[833,10],[27,7],[651,10],[247,8],[196,9],[84,7],[191,8],[4,9],[8,4],[70,9],[206,8],[27,7],[72,10],[1,1],[665,10],[6,3],[451,9],[5,3],[7,3],[96,8],[4,9],[13,5],[127,7],[210,10],[2,2],[777,10],[85,7],[58,7],[2,4],[1,2],[2,3],[1,1],[2,3],[235,8],[4,6],[1,3],[5,4],[11,5],[1,1],[377,10],[3,4],[3,2],[209,10],[12,6],[238,8],[1,1],[729,10],[13,4],[97,8],[1,1],[554,10],[80,9],[30,5],[207,8],[121,8],[3,2],[3,3],[144,8],[10,4],[59,8],[511,9],[13,5],[7,5],[39,7],[19,5],[7,3],[12,4],[198,8],[404,10],[1,3],[99,7],[71,7],[3,2],[1,2],[112,7],[1,6],[234,10],[20,8],[7,5],[2,5],[9,6],[9,4],[3,2],[35,9],[112,8],[374,9],[211,10],[1,1],[29,6],[392,9],[828,10],[105,8],[27,6],[2,2],[31,5],[28,5],[206,8],[10,4],[119,7],[118,8],[16,9],[5,3],[37,6],[57,7],[950,10],[193,8],[5,5],[90,8],[1,2],[3,2],[23,6],[4,5],[353,10],[4,4],[1,3],[17,5],[97,7],[250,8],[4,4],[2,2],[30,7],[509,9],[1,1],[99,8],[11,4],[68,7],[7,3],[1,1],[15,7],[36,8],[876,10],[4,3],[4,4],[48,7],[101,7],[15,4],[2,3],[1,1],[1,2],[288,9],[27,5],[2,3],[110,7],[90,7],[27,6],[26,5],[13,4],[443,9],[277,9],[2,4],[10,4],[151,8],[5,3],[103,10],[167,9],[310,9],[1,1],[1,1],[6,3],[7,3],[1,1],[94,7],[409,9],[1,1],[578,10],[69,7],[9,4],[7,7],[88,7],[38,6],[3,2],[46,6],[24,5],[22,5],[14,7],[1,1],[4,4],[16,7],[398,9],[43,6],[1,2],[820,10],[1,1],[451,9],[2,2],[1,3],[2,2],[3,3],[10,4],[1,1],[22,6],[2,2],[31,5],[6,3],[115,8],[2,2],[1,2],[26,7],[74,7],[3,2],[15,4],[1,1],[20,5],[7,3],[28,9],[18,5],[2,8],[189,9],[649,10],[2,3],[6,4],[1,1],[2,3],[10,4],[50,6],[3,2],[283,9],[1,3],[241,8],[58,6],[1,3],[196,8],[5,5],[146,8],[2,3],[1,1],[1,2],[185,10],[538,10],[125,8],[300,10],[12,4],[41,7],[3,4],[11,6],[2,2],[1,1],[3,4],[41,8],[744,10],[7,3],[267,9],[811,10],[3,2],[172,8],[26,5],[287,9],[54,6],[26,5],[18,5],[4,3],[1,1],[284,9],[149,8],[1,1],[85,8],[16,5],[119,10],[6,4],[74,9],[13,6],[3,3],[263,9],[42,6],[215,10],[11,4],[208,9],[7,3],[1,3],[31,5],[3,2],[3,3],[867,10],[127,7],[19,9],[14,6],[299,9],[439,9],[12,6],[98,8],[197,8],[122,7],[180,9],[44,6],[3,3],[2,2],[2,5],[108,7],[63,6],[2,2],[1,1],[15,5],[2,2],[330,10],[3,3],[238,9],[101,7],[1,1],[361,9],[53,6],[981,10],[198,10],[34,7],[109,8],[1,1],[399,9],[1,2],[1,3],[5,3],[1,2],[54,8],[21,5],[19,6],[103,7],[1,1],[25,6],[4,3],[95,8],[55,7],[1,5],[12,4],[28,6],[36,6],[216,9],[53,6],[24,7],[124,7],[2,3],[13,4],[15,4],[23,5],[161,8],[4,4],[51,7],[155,8],[22,5],[389,9],[244,9],[452,9],[107,9],[225,8],[2,2],[7,5],[2,5],[142,8],[2,3],[22,5],[4,4],[61,6],[7,6],[3,7],[54,6],[49,6],[11,5],[31,5],[589,10],[2,2],[199,8],[5,4],[5,3],[954,10],[76,7],[347,9],[106,7],[1,1],[392,9],[682,10],[83,7],[94,7],[3,2],[1,1],[11,5],[1,1],[1,1],[197,9],[136,8],[2,2],[23,7],[10,4],[11,6],[1,2],[14,4],[940,10],[56,8],[1,1],[12,5],[131,8],[1,1],[176,8],[3,2],[36,9],[11,10],[171,8],[1,2],[1,1],[3,3],[13,5],[2,2],[259,9],[3,3],[1,1],[3,3],[329,10],[56,7],[1,2],[6,3],[1,1],[420,9],[302,9],[850,10],[12,4],[157,8],[3,2],[77,9],[1,1],[3,4],[1,2],[1,1],[1,1],[61,7],[60,8],[3,2],[49,7],[1,1],[2,2],[4,4],[1,1],[41,6],[25,8],[52,8],[1,1],[1,1],[1,1],[1,1],[784,10],[863,10],[857,10],[2,4],[137,8],[33,6],[1,1],[1,1],[4,3],[725,10],[10,4],[686,10],[2,2],[2,2],[6,3],[1,1],[2,2],[2,3],[3,2],[1,1],[28,6],[169,8],[11,4],[63,7],[78,8],[117,7],[7,3],[3,5],[7,4],[1,1],[88,7],[20,5],[28,5],[1,1],[30,6],[73,7],[61,8],[1,2],[15,6],[157,10],[162,8],[2,2],[13,5],[2,3],[369,10],[7,5],[41,7],[7,5],[60,6],[756,10],[117,7],[936,10],[1,1],[1,1],[3,2],[2,2],[1,3],[58,6],[502,10],[169,8],[858,10],[3,5],[30,7],[43,6],[13,5],[2,4],[6,3],[3,2],[4,3],[5,4],[757,10],[2,3],[611,10],[48,6],[11,4],[104,8],[276,9],[5,3],[2,3],[158,9],[114,10],[5,3],[1,1],[1,2],[24,8],[307,9],[10,4],[103,7],[294,9],[2,2],[1,1],[2,5],[27,6],[854,10],[21,6],[1,2],[3,2],[142,9],[6,3],[246,8],[21,6],[81,7],[27,5],[29,5],[4,3],[2,2],[1,1],[3,2],[1,2],[2,2],[2,2],[42,8],[3,2],[12,4],[1,1],[26,6],[9,7],[7,3],[1,1],[5,4],[84,8],[3,3],[1,1],[209,8],[306,10],[466,9],[73,8],[1,1],[42,6],[2,2],[53,6],[7,4],[87,8],[3,2],[135,10],[596,10],[24,5],[1,1],[287,9],[1,1],[202,8],[212,9],[4,3],[165,8],[45,6],[43,6],[89,9],[229,9],[292,9],[209,9],[72,7],[2,2],[1,1],[118,7],[85,7],[61,6],[7,3],[154,9],[169,8],[13,4],[912,10],[53,7],[53,8],[46,8],[12,5],[639,10],[1,1],[4,6],[2,2],[4,3],[2,3],[233,8],[12,4],[1,2],[53,8],[28,5],[1,1],[52,7],[1,2],[43,6],[1,1],[9,6],[76,8],[31,9],[5,4],[197,10],[606,10],[16,6],[388,9],[1,3],[1,7],[5,4],[287,9],[1,1],[297,10],[75,7],[6,3],[87,8],[28,9],[10,4],[503,9],[25,8],[107,7],[43,7],[1,1],[1,2],[181,8],[1,1],[29,8],[1,2],[1,2],[1,1],[3,2],[21,6],[427,10],[119,8],[4,3],[29,5],[4,4],[8,5],[4,3],[6,3],[98,9],[1,2],[9,5],[1,1],[1,2],[3,2],[9,6],[319,9],[705,10],[1,3],[35,7],[2,3],[491,9],[691,10],[5,3],[473,10],[6,4],[655,10],[22,5],[13,4],[447,9],[2,5],[165,8],[10,6],[1,1],[400,9],[206,8],[7,3],[21,6],[5,6],[105,10],[1,1],[3,3],[1,1],[1,3],[1,2],[24,5],[504,9],[1,5],[56,6],[4,3],[1,1],[110,8],[49,7],[17,5],[37,6],[383,10],[1,1],[5,3],[3,3],[3,2],[1,1],[1,1],[10,6],[280,9],[1,1],[100,7],[89,8],[2,2],[1,3],[5,4],[1,2],[9,4],[1,1],[246,8],[23,6],[1,2],[3,2],[183,9],[3,4],[1,1],[30,8],[56,7],[18,5],[2,2],[19,5],[330,9],[47,7],[14,5],[34,8],[3,2],[144,9],[2,4],[95,7],[64,7],[2,2],[15,9],[40,10],[6,3],[14,4],[470,9],[1,1],[60,6],[80,8],[22,5],[56,7],[27,7],[3,2],[380,9],[134,8],[1,1],[400,9],[29,5],[10,6],[248,9],[386,9],[1,3],[52,6],[747,10],[3,2],[163,10],[39,7],[371,10],[16,6],[127,7],[88,9],[8,5],[1,2],[6,3],[94,7],[24,8],[26,5],[3,2],[170,9],[2,4],[16,7],[53,7],[29,5],[3,3],[3,3],[45,8],[18,7],[221,9],[822,10],[3,2],[2,2],[97,7],[92,8],[15,4],[6,4],[1,1],[4,7],[58,7],[41,6],[257,9],[1,2],[30,6],[11,6],[71,7],[1,1],[1,1],[40,7],[6,3],[2,2],[3,7],[50,6],[15,4],[6,6],[579,10],[9,4],[1,3],[1,1],[224,9],[11,4],[4,6],[66,8],[1,3],[84,7],[32,9],[17,5],[491,9],[444,10],[4,3],[490,10],[518,10],[14,4],[1,2],[3,3],[1,3],[295,10],[453,9],[5,3],[3,2],[10,7],[2,6],[63,6],[200,8],[40,7],[297,9],[118,9],[80,8],[6,7],[101,7],[2,3],[165,9],[506,9],[23,6],[378,9],[49,6],[1,1],[775,10],[10,4],[10,6],[922,10],[3,2],[21,5],[1,2],[4,3],[318,10],[1,2],[1,2],[25,7],[175,9],[3,3],[456,9],[14,4],[318,9],[13,4],[11,4],[687,10],[627,10],[464,10],[2,3],[8,6],[60,7],[1,1],[110,8],[915,10],[2,3],[110,7],[4,4],[12,4],[6,3],[13,4],[557,10],[1,2],[6,4],[383,10],[2,2],[645,10],[2,6],[3,2],[18,5],[78,10],[5,3],[2,2],[2,2],[1,1],[175,8],[226,8],[2,2],[59,6],[8,5],[3,2],[2,2],[1,1],[1,1],[7,4],[6,4],[13,4],[14,6],[1,6],[39,6],[444,10],[2,3],[227,9],[2,2],[71,7],[83,7],[49,8],[83,9],[1,1],[5,4],[47,7],[79,7],[153,10],[148,10],[71,7],[115,7],[7,4],[23,6],[284,9],[113,8],[342,10],[15,7],[1,1],[214,9],[63,9],[1,2],[1,5],[123,8],[47,6],[31,6],[205,8],[840,10],[113,8],[6,6],[45,6],[11,6],[1,3],[19,5],[1,7],[4,3],[53,6],[2,3],[18,5],[1,1],[75,8],[3,2],[1,1],[87,9],[121,9],[29,5],[119,7],[31,5],[2,3],[272,10],[1,1],[4,3],[25,7],[6,3],[57,6],[3,2],[1,1],[285,10],[1,2],[4,5],[8,5],[2,3],[61,9],[1,4],[202,8],[2,2],[1,1],[1,4],[76,8],[1,1],[1,1],[56,8],[123,8],[139,9],[1,1],[256,9],[21,5],[373,10],[991,10],[4,3],[3,3],[1,1],[6,4],[770,10],[3,4],[50,7],[27,5],[2,2],[27,5],[75,7],[214,8],[8,4],[3,2],[90,7],[171,8],[1,3],[2,4],[51,6],[103,7],[6,4],[10,4],[14,7],[2,4],[81,7],[2,2],[41,6],[80,7],[4,3],[1,1],[29,5],[1,1],[8,5],[8,4],[11,4],[1,2],[220,8],[941,10],[1,3],[144,9],[1,1],[5,3],[1,1],[24,5],[13,5],[27,5],[112,9],[7,3],[3,2],[205,10],[487,9],[245,9],[2,2],[54,6],[737,10],[1,2],[36,10],[8,4],[7,4],[64,9],[23,7],[178,10],[147,8],[122,8],[66,10],[5,4],[3,2],[662,10],[236,8],[9,7],[95,7],[2,2],[925,10],[2,2],[4,5],[4,4],[2,4],[5,8],[8,4],[13,6],[3,2],[20,5],[887,10],[890,10],[154,9],[98,7],[1,1],[211,9],[9,5],[3,6],[170,8],[2,2],[5,4],[252,9],[2,2],[70,7],[7,6],[14,5],[20,5],[2,2],[4,3],[7,4],[2,5],[182,8],[1,1],[1,2],[2,5],[3,2],[15,4],[32,7],[5,3],[177,9],[19,6],[495,9],[61,9],[11,4],[2,2],[186,9],[1,4],[5,4],[27,5],[1,1],[199,8],[200,9],[1,1],[1,1],[25,5],[15,4],[162,10],[62,6],[396,9],[31,10],[1,1],[438,9],[1,1],[2,4],[392,10],[7,3],[3,3],[82,7],[33,6],[24,5],[32,8],[7,3],[1,2],[86,8],[17,5],[507,9],[150,8],[7,3],[1,1],[1,1],[1,1],[1,1],[39,6],[119,8],[374,10],[4,8],[382,9],[12,6],[784,10],[127,7],[1,1],[381,10],[26,7],[9,5],[25,6],[6,3],[30,5],[598,10],[220,8],[581,10],[7,4],[2,2],[9,8],[3,4],[2,2],[1,1],[8,9],[641,10],[1,2],[23,5],[2,2],[37,6],[293,9],[2,2],[18,5],[3,2],[324,9],[108,10],[30,5],[62,6],[17,5],[1,1],[68,10],[247,10],[80,7],[9,5],[12,5],[17,7],[156,9],[63,6],[4,5],[2,2],[222,8],[4,4],[29,6],[1,2],[430,9],[51,8],[303,9],[1,2],[172,9],[3,2],[29,5],[1,2],[29,7],[34,6],[26,5],[32,6],[1,1],[3,2],[112,9],[2,2],[988,10],[1,1],[13,5],[236,8],[135,8],[99,7],[1,2],[5,3],[101,8],[1,3],[6,3],[11,6],[29,6],[332,9],[3,5],[4,3],[7,3],[3,2],[1,1],[18,6],[63,7],[38,7],[6,3],[44,9],[6,3],[1,1],[185,9],[3,2],[27,6],[890,10],[728,10],[1,4],[32,6],[15,4],[125,7],[10,4],[95,8],[1,4],[783,10],[5,3],[3,2],[250,8],[478,9],[498,9],[1,1],[1,2],[93,7],[6,4],[110,9],[312,10],[34,7],[221,8],[3,2],[2,2],[85,7],[1,2],[1,1],[45,10],[2,6],[38,9],[237,8],[5,3],[7,5],[6,4],[7,3],[12,7],[607,10],[453,9],[105,7],[86,8],[3,3],[1,3],[1,1],[104,7],[226,8],[58,7],[1,1],[87,7],[486,9],[3,2],[995,10],[11,5],[10,4],[50,6],[3,3],[46,6],[3,2],[15,5],[304,9],[60,10],[102,10],[762,10],[318,9],[26,5],[3,5],[17,5],[6,3],[1,1],[5,4],[97,10],[3,2],[50,6],[14,4],[1,1],[7,3],[41,7],[59,6],[14,4],[8,5],[401,10],[38,7],[21,7],[1,3],[482,9],[1,1],[10,4],[8,5],[18,5],[3,3],[4,3],[60,6],[756,10],[664,10],[3,4],[9,5],[128,9],[15,4],[7,4],[240,8],[476,9],[2,5],[1,2],[55,6],[7,3],[106,8],[10,5],[236,8],[183,10],[815,10],[151,8],[31,6],[407,9],[2,4],[7,4],[115,9],[359,9],[16,8],[1,1],[1,3],[204,8],[1,2],[136,9],[11,5],[139,9],[1,2],[3,4],[4,3],[6,4],[23,10],[7,3],[1,2],[51,9],[99,7],[1,1],[395,9],[24,5],[2,4],[22,8],[12,10],[9,6],[1,1],[105,8],[221,9],[135,8],[7,3],[22,5],[14,5],[30,6],[70,8],[763,10],[815,10],[7,6],[106,8],[454,10],[47,6],[1,1],[6,3],[182,9],[49,6],[4,3],[855,10],[6,4],[1,1],[3,3],[1,3],[87,7],[496,10],[6,3],[25,5],[14,4],[204,9],[3,5],[938,10],[99,7],[155,10],[61,6],[209,8],[28,5],[333,9],[10,4],[323,9],[24,7],[2,2],[63,6],[14,4],[3,2],[1,1],[1,2],[30,5],[16,5],[1,2],[75,7],[3,2],[93,7],[3,5],[15,5],[4,5],[259,9],[1,1],[36,8],[654,10],[2,2],[5,3],[10,4],[391,9],[5,4],[24,5],[20,6],[1,1],[15,4],[12,4],[272,9],[120,9],[1,2],[36,6],[3,3],[3,2],[382,10],[179,9],[65,7],[31,7],[393,9],[37,6],[928,10],[743,10],[299,9],[159,9],[1,1],[1,1],[1,1],[57,10],[35,6],[233,9],[2,4],[218,8],[125,7],[125,7],[204,8],[351,9],[14,6],[126,7],[4,3],[1,3],[283,10],[227,9],[1,1],[7,3],[79,9],[2,2],[17,5],[53,6],[685,10],[4,4],[1,1],[988,10],[213,8],[18,5],[1,1],[184,8],[1,1],[9,4],[14,6],[9,4],[3,2],[5,7],[27,6],[172,8],[15,4],[13,4],[5,3],[70,7],[39,10],[1,2],[1017,10],[4,3],[3,2],[898,10],[3,2],[27,5],[710,10],[7,3],[4,5],[52,6],[2,2],[60,6],[5,4],[1,1],[23,6],[115,7],[908,10],[5,6],[1,3],[9,5],[20,7],[2,9],[859,10],[1,1],[38,6],[41,6],[3,3],[13,5],[1,1],[2,3],[2,2],[2,3],[2,4],[98,8],[71,8],[33,8],[288,9],[3,4],[829,10],[537,10],[1,1],[82,7],[1017,10],[241,9],[25,7],[1,1],[1,10],[18,5],[2,2],[241,8],[7,3],[8,6],[63,8],[42,6],[46,7],[1,2],[55,8],[2,2],[415,10],[26,5],[1,2],[459,9],[182,8],[2,4],[8,6],[635,10],[4,3],[3,2],[393,9],[7,3],[50,6],[15,7],[152,8],[25,5],[26,5],[81,7],[33,6],[11,5],[979,10],[3,2],[1,1],[229,10],[222,10],[2,2],[3,5],[21,5],[52,7],[2,2],[20,7],[73,7],[805,10],[7,3],[7,3],[4,4],[229,8],[2,3],[46,6],[471,9],[14,4],[34,6],[8,4],[3,4],[19,6],[174,9],[35,6],[7,3],[7,4],[877,10],[10,7],[2,3],[63,6],[1,1],[56,6],[414,10],[1,1],[1,2],[38,8],[6,5],[37,6],[1,1],[5,3],[5,3],[7,4],[1,3],[2,2],[5,5],[9,4],[3,2],[357,9],[25,7],[7,3],[35,6],[31,7],[53,6],[278,9],[60,6],[19,6],[399,9],[6,3],[19,6],[21,5],[28,6],[5,3],[5,3],[40,6],[1,3],[82,7],[3,2],[5,3],[59,6],[15,4],[906,10],[41,6],[7,3],[3,3],[56,10],[51,8],[238,8],[64,7],[1006,10],[39,6],[92,8],[3,2],[2,2],[92,7],[63,8],[114,7],[58,7],[62,6],[141,9],[1,6],[29,5],[493,9],[1,2],[197,9],[76,9],[23,7],[129,8],[29,7],[2,2],[29,5],[1,3],[4,4],[7,4],[31,6],[5,3],[44,6],[5,4],[1,2],[17,6],[1,3],[13,4],[1,3],[1,3],[30,5],[5,3],[41,7],[4,3],[2,2],[18,5],[803,10],[7,3],[189,8],[83,8],[206,10],[5,3],[108,8],[229,8],[85,7],[56,7],[40,7],[174,8],[2,3],[2,4],[5,3],[203,8],[17,6],[386,9],[343,10],[4,3],[88,7],[1,1],[97,8],[61,7],[72,8],[6,3],[3,2],[24,5],[21,7],[1,1],[116,9],[24,6],[32,6],[3,2],[3,2],[1,1],[20,5],[80,9],[66,7],[3,2],[86,9],[4,5],[1,1],[4,7],[2,2],[18,5],[1,2],[2,2],[20,5],[297,9],[1,2],[561,10],[3,2],[233,9],[29,7],[304,9],[102,7],[1,1],[6,3],[5,3],[1,2],[108,7],[186,8],[7,3],[168,8],[2,4],[17,5],[2,4],[43,6],[15,5],[1,2],[1,5],[10,4],[22,5],[2,2],[19,7],[794,10],[170,8],[3,3],[3,2],[5,3],[15,4],[3,2],[104,9],[13,4],[52,6],[3,2],[1,1],[5,3],[142,9],[13,4],[7,4],[23,5],[110,8],[39,6],[516,10],[3,3],[2,2],[3,3],[248,8],[126,7],[14,4],[2,2],[1,1],[402,10],[15,5],[385,10],[30,7],[1,1],[234,9],[84,10],[43,8],[1,1],[175,9],[891,10],[54,8],[6,3],[798,10],[424,9],[83,8],[14,5],[12,4],[3,2],[514,10],[4,4],[44,7],[14,4],[1,1],[1012,10],[3,4],[82,7],[3,2],[5,3],[222,8],[3,3],[10,7],[3,2],[1,1],[41,6],[33,6],[3,3],[1,1],[92,10],[2,10],[2,2],[22,6],[26,5],[54,6],[2,2],[28,5],[5,3],[46,6],[182,9],[7,5],[145,8],[456,10],[1,1],[89,7],[204,9],[50,7],[2,2],[194,8],[8,6],[9,4],[12,7],[8,4],[10,6],[6,9],[1,1],[4,5],[19,5],[2,4],[301,10],[143,8],[7,4],[145,10],[2,2],[7,4],[18,5],[17,5],[1,1],[1,1],[2,2],[30,5],[1,4],[16,5],[2,3],[270,10],[255,9],[327,9],[339,9],[1,1],[80,10],[275,9],[156,8],[1,1],[4,6],[1,2],[117,7],[47,8],[9,4],[8,5],[44,6],[9,5],[51,7],[72,10],[87,7],[459,9],[302,9],[12,5],[4,5],[188,9],[93,8],[15,6],[1,1],[22,5],[40,6],[189,9],[1,1],[5,3],[1,2],[9,6],[2,3],[99,10],[72,8],[1,2],[1,2],[26,6],[1,2],[1,2],[5,3],[47,8],[1,1],[2,2],[69,9],[717,10],[6,5],[228,9],[31,6],[19,5],[5,4],[2,2],[50,6],[38,6],[485,9],[141,8],[247,8],[13,4],[17,6],[46,7],[77,7],[3,2],[85,7],[11,4],[87,8],[1,3],[2,4],[511,10],[83,7],[1,1],[949,10],[281,9],[328,10],[813,10],[67,10],[1,2],[4,5],[1,1],[559,10],[3,2],[53,6],[5,4],[439,10],[1,2],[3,2],[1,1],[3,2],[765,10],[2,2],[7,4],[3,3],[5,3],[1,1],[483,10],[36,6],[154,10],[2,2],[3,3],[4,4],[1,3],[183,8],[4,4],[25,6],[2,2],[1,3],[7,4],[2,2],[16,6],[15,5],[14,5],[4,6],[3,2],[2,2],[137,9],[8,4],[19,5],[42,6],[2,3],[88,7],[3,2],[266,9],[16,5],[487,9],[704,10],[2,2],[102,9],[1,1],[425,9],[1,1],[120,7],[1,1],[1,1],[176,10],[1,3],[10,7],[1,1],[14,4],[4,3],[44,7],[1,2],[31,5],[16,5],[9,5],[572,10],[205,8],[7,3],[36,6],[16,6],[288,9],[264,9],[3,2],[255,8],[97,7],[628,10],[36,6],[51,8],[105,8],[6,5],[389,9],[1,1],[7,5],[57,7],[193,8],[6,8],[11,4],[32,6],[113,9],[51,8],[268,9],[1,3],[63,6],[1,1],[3,2],[25,5],[19,7],[6,3],[6,3],[26,5],[1,1],[91,10],[5,5],[7,3],[114,9],[18,6],[1,1],[1,1],[1,3],[297,10],[2,3],[109,10],[359,10],[22,5],[22,5],[6,6],[3,2],[2,2],[1,3],[110,8],[2,2],[21,6],[181,9],[742,10],[6,3],[1,1],[127,8],[12,5],[168,9],[107,8],[667,10],[14,4],[25,6],[33,6],[134,9],[1,2],[594,10],[2,2],[2,2],[29,7],[35,6],[29,6],[1,1],[875,10],[79,7],[59,6],[403,9],[2,3],[3,2],[5,5],[7,3],[724,10],[1,2],[175,10],[13,7],[6,3],[14,4],[1,1],[1,1],[57,6],[21,8],[697,10],[7,3],[955,10],[3,2],[998,10],[3,2],[41,8],[346,10],[1,6],[1013,10],[92,7],[2,3],[125,7],[1,1],[6,3],[15,4],[859,10],[57,6],[5,4],[2,2],[12,4],[208,9],[4,3],[945,10],[14,7],[52,6],[63,7],[1,4],[29,6],[7,3],[3,6],[1,1],[1,5],[2,2],[1,3],[74,7],[88,9],[32,6],[361,9],[25,5],[4,4],[10,4],[5,3],[145,8],[39,6],[6,3],[1,1],[6,3],[2,3],[45,7],[3,3],[221,8],[40,8],[38,6],[15,6],[23,7],[30,6],[15,6],[39,7],[3,4],[1,3],[1,2],[276,9],[234,8],[48,9],[156,8],[77,7],[3,5],[174,8],[2,3],[4,8],[806,10],[19,6],[1,3],[237,8],[5,5],[31,7],[62,7],[29,5],[222,9],[32,6],[24,5],[57,9],[8,4],[43,8],[1,1],[1,1],[176,10],[233,8],[1,1],[7,5],[468,9],[179,10],[16,5],[2,2],[2,2],[187,9],[122,7],[1,1],[13,4],[7,8],[1,1],[5,3],[36,7],[770,10],[230,10],[1,1],[29,6],[17,5],[22,8],[6,3],[2,3],[237,9],[37,6],[25,6],[1,4],[5,3],[22,6],[3,3],[25,5],[188,9],[95,8],[165,9],[7,3],[43,7],[368,9],[5,4],[3,3],[4,4],[41,6],[83,8],[30,6],[1,8],[1,1],[6,5],[45,6],[10,7],[3,4],[2,3],[253,8],[56,6],[6,4],[73,9],[221,8],[4,3],[24,5],[154,8],[77,8],[364,9],[1,1],[655,10],[25,9],[31,7],[2,3],[1,2],[3,6],[3,2],[1,1],[467,9],[22,7],[6,3],[1,2],[4,3],[2,2],[2,2],[411,9],[11,4],[342,9],[3,2],[4,3],[3,2],[70,7],[1,2],[60,8],[3,5],[12,5],[337,9],[24,5],[687,10],[33,10],[121,8],[805,10],[1,1],[1,2],[291,10],[2,9],[5,3],[24,6],[1,2],[187,8],[1,4],[412,10],[25,5],[7,3],[1,1],[1,1],[2,3],[61,6],[97,8],[16,6],[61,6],[1,1],[476,9],[60,6],[90,8],[242,9],[54,6],[5,5],[10,5],[466,10],[65,7],[324,9],[14,4],[107,9],[50,6],[37,7],[366,10],[24,5],[237,8],[96,9],[114,7],[244,8],[266,9],[1,1],[10,10],[29,8],[487,9],[1,1],[2,10],[48,6],[6,3],[81,10],[2,2],[1,1],[22,5],[101,7],[201,10],[6,4],[180,8],[20,6],[34,7],[111,8],[747,10],[3,3],[57,6],[4,3],[23,5],[199,9],[1,1],[1,2],[952,10],[379,9],[10,7],[6,3],[1,9],[38,6],[28,5],[24,6],[3,2],[22,5],[124,9],[287,9],[1,1],[411,9],[16,7],[182,8],[1,1],[14,4],[2,2],[1,1],[40,6],[95,8],[1,1],[3,6],[75,9],[31,6],[1,1],[6,4],[332,9],[2,4],[545,10],[5,4],[469,9],[15,5],[1,1],[19,5],[393,9],[175,10],[216,9],[40,6],[1,2],[5,4],[3,2],[91,7],[1,1],[81,8],[207,8],[334,10],[394,10],[92,7],[2,3],[160,9],[114,7],[33,6],[2,4],[6,4],[2,2],[127,7],[52,6],[27,5],[102,10],[1,1],[7,3],[368,10],[3,2],[10,5],[34,6],[6,4],[451,10],[1,1],[451,10],[79,8],[2,3],[1,1],[200,9],[48,7],[52,6],[6,3],[3,2],[323,9],[1,1],[3,3],[32,6],[260,9],[13,5],[1,1],[1,1],[232,8],[281,9],[1,5],[5,5],[3,2],[1,1],[143,9],[8,4],[9,7],[26,6],[604,10],[4,4],[487,9],[369,9],[2,3],[909,10],[378,9],[6,4],[557,10],[1,1],[41,6],[3,2],[160,8],[7,8],[288,10],[1,1],[1,4],[12,4],[4,3],[26,8],[4,3],[1,2],[414,10],[1,1],[766,10],[163,8],[175,8],[2,2],[57,6],[8,5],[1,2],[92,8],[298,9],[3,2],[10,6],[26,6],[76,10],[29,8],[467,9],[16,6],[111,7],[1,1],[4,3],[33,6],[30,6],[29,6],[1,4],[1,1],[4,3],[4,4],[1,1],[1,1],[599,10],[38,6],[10,4],[3,2],[31,6],[47,6],[31,5],[34,7],[3,7],[109,7],[16,5],[193,8],[90,7],[1007,10],[1,4],[198,8],[62,7],[1,1],[1,1],[3,3],[60,6],[496,9],[786,10],[1,2],[823,10],[7,8],[267,9],[1,1],[204,8],[5,4],[435,9],[2,2],[59,7],[108,7],[6,3],[1,2],[7,3],[30,6],[213,9],[13,4],[15,4],[2,2],[1,1],[2,2],[188,8],[141,9],[23,8],[9,8],[13,4],[1,2],[1,1],[672,10],[32,7],[1,1],[10,4],[325,9],[97,8],[3,2],[370,9],[477,10],[38,6],[4,3],[2,2],[165,8],[86,7],[22,5],[127,9],[86,7],[3,5],[30,7],[6,3],[2,3],[519,10],[10,5],[162,8],[7,3],[2,2],[2,4],[94,7],[2,4],[19,7],[9,7],[110,7],[223,9],[1,1],[77,7],[1,1],[348,9],[1,4],[3,2],[1,1],[23,5],[14,5],[50,6],[7,5],[1,2],[4,3],[79,8],[246,8],[1,3],[47,7],[4,4],[115,7],[309,10],[19,5],[18,7],[60,6],[2,2],[12,4],[3,2],[3,2],[51,6],[813,10],[2,2],[1,1],[11,5],[5,3],[5,3],[289,10],[4,3],[161,9],[13,4],[25,6],[72,7],[748,10],[8,5],[421,10],[20,5],[3,2],[84,8],[101,7],[81,8],[1,3],[1,4],[581,10],[190,9],[1,1],[1,1],[2,2],[147,9],[5,4],[1,1],[49,6],[52,6],[504,10],[1,1],[1,1],[93,9],[1,4],[1,2],[526,10],[3,3],[1,3],[216,9],[279,9],[415,9],[27,5],[23,6],[3,4],[13,6],[9,4],[1,1],[830,10],[2,2],[7,3],[3,2],[25,5],[2,9],[837,10],[49,7],[306,9],[1,1],[1,1],[31,5],[14,4],[1,1],[9,4],[416,9],[21,5],[262,10],[1,2],[1,2],[7,8],[32,6],[52,6],[44,10],[115,8],[44,6],[69,7],[24,5],[1,2],[11,4],[770,10],[1,1],[120,7],[297,10],[1,2],[1,1],[859,10],[872,10],[8,7],[1,1],[20,6],[123,7],[1,1],[59,6],[288,9],[1,1],[554,10],[2,3],[3,2],[59,6],[12,4],[9,5],[2,6],[163,9],[1,1],[13,5],[117,7],[137,8],[1,1],[34,6],[1,1],[1,2],[5,3],[2,4],[31,7],[6,3],[12,6],[6,3],[237,9],[15,7],[13,5],[22,6],[2,2],[6,3],[4,3],[10,6],[6,6],[188,8],[129,8],[6,3],[132,8],[70,8],[1,1],[55,6],[21,6],[77,8],[1,1],[22,7],[21,5],[1,1],[2,5],[73,8],[7,3],[634,10],[33,7],[1,1],[604,10],[71,7],[23,5],[35,6],[773,10],[13,4],[5,3],[5,3],[43,7],[1,4],[6,3],[1,1],[348,10],[4,9],[14,4],[5,3],[1,1],[1,2],[1,3],[56,7],[4,3],[2,2],[1,1],[6,4],[3,3],[2,2],[115,7],[2,3],[71,8],[55,6],[641,10],[29,5],[2,2],[6,5],[17,6],[1,1],[160,8],[468,9],[28,5],[36,9],[2,2],[87,7],[72,7],[14,4],[8,4],[85,7],[2,4],[13,5],[15,4],[54,7],[76,9],[124,9],[5,4],[4,3],[1,1],[10,5],[15,4],[134,8],[1,1],[1,2],[1,3],[69,8],[3,2],[1,1],[5,3],[195,8],[1,2],[2,3],[22,5],[1,2],[105,8],[1,2],[8,4],[113,7],[78,10],[61,7],[1,7],[3,2],[7,6],[27,5],[63,6],[3,2],[442,9],[1,3],[118,7],[1,4],[2,2],[216,9],[1,1],[10,4],[12,5],[3,2],[106,7],[3,3],[26,7],[473,10],[32,8],[1,2],[13,4],[6,3],[5,5],[323,10],[91,8],[56,7],[87,8],[23,8],[1,1],[761,10],[9,5],[519,10],[19,6],[4,5],[9,4],[11,4],[171,9],[10,4],[26,5],[15,5],[2,7],[149,8],[61,6],[375,9],[47,6],[1,1],[14,4],[1,1],[1,2],[15,5],[83,9],[440,10],[4,3],[158,8],[372,10],[3,2],[18,6],[11,4],[7,6],[1,2],[10,4],[50,7],[415,9],[1,1],[47,6],[7,3],[15,4],[4,3],[7,5],[5,4],[432,9],[5,3],[15,5],[13,4],[762,10],[13,5],[4,7],[4,5],[17,6],[999,10],[573,10],[143,8],[21,5],[113,7],[389,10],[5,6],[5,3],[9,4],[791,10],[102,7],[1,3],[75,10],[6,4],[897,10],[3,2],[181,10],[3,2],[1,1],[14,4],[34,8],[28,8],[4,9],[47,10],[2,3],[121,9],[1,1],[1,1],[7,4],[285,9],[326,9],[24,7],[74,7],[330,9],[117,9],[22,5],[209,9],[2,4],[3,2],[7,3],[5,3],[26,5],[3,2],[153,9],[6,3],[7,3],[255,9],[11,5],[7,3],[1,1],[928,10],[403,9],[2,3],[1,1],[6,3],[7,3],[6,3],[212,8],[1,2],[1,1],[204,8],[1,1],[399,9],[44,8],[3,2],[1,1],[6,4],[436,9],[1,1],[3,2],[1,1],[2,3],[31,9],[147,8],[13,7],[59,7],[3,3],[6,3],[457,9],[42,6],[3,7],[82,8],[226,9],[12,6],[1,1],[9,7],[6,3],[33,8],[3,2],[425,9],[2,7],[7,4],[1,3],[580,10],[53,6],[2,2],[1,3],[15,4],[2,5],[197,8],[76,7],[190,8],[92,7],[115,8],[335,9],[105,8],[84,8],[744,10],[109,7],[450,10],[193,8],[3,4],[65,7],[8,4],[1,1],[9,4],[42,6],[6,5],[195,8],[38,6],[1,1],[313,9],[63,6],[361,9],[22,5],[54,6],[1,2],[53,6],[4,3],[1,1],[28,5],[9,6],[298,9],[2,2],[3,3],[20,6],[2,2],[21,6],[35,6],[5,3],[13,6],[72,8],[490,10],[471,9],[9,4],[14,5],[10,5],[30,7],[5,3],[10,5],[13,5],[175,9],[3,3],[1,1],[1,4],[2,2],[1,1],[20,5],[2,2],[33,6],[2,2],[5,3],[7,3],[74,8],[1,3],[3,2],[223,9],[367,9],[7,4],[7,3],[1,1],[1,4],[2,3],[2,3],[1,1],[201,9],[1,1],[103,7],[4,4],[2,3],[1,1],[36,6],[167,9],[12,4],[462,9],[1,3],[46,6],[1,1],[11,5],[1,1],[2,4],[39,7],[15,7],[25,5],[11,4],[121,7],[1,2],[7,3],[2,3],[1,2],[1,1],[1,1],[15,8],[780,10],[3,3],[28,7],[475,9],[13,6],[12,4],[2,2],[1,1],[135,9],[3,2],[18,5],[1,1],[135,9],[1,2],[356,9],[27,5],[21,5],[115,7],[6,3],[19,5],[29,6],[114,8],[37,6],[9,5],[307,9],[545,10],[1,1],[26,7],[3,2],[24,7],[5,3],[447,9],[3,2],[22,6],[18,5],[28,5],[27,9],[1,4],[146,10],[22,5],[125,8],[3,2],[16,5],[46,6],[4,5],[51,7],[5,3],[109,7],[582,10],[61,7],[2,2],[12,5],[65,9],[1,1],[16,7],[211,9],[18,5],[5,5],[330,9],[26,6],[1,2],[179,8],[1,2],[384,10],[10,6],[639,10],[31,6],[189,8],[264,9],[16,7],[1,1],[3,4],[994,10],[31,6],[35,7],[51,6],[53,7],[1,1],[3,3],[1,3],[63,6],[1,1],[12,4],[46,8],[84,7],[266,9],[6,4],[38,8],[15,4],[10,4],[163,8],[565,10],[74,8],[28,5],[158,8],[316,9],[1,1],[1,1],[123,7],[848,10],[7,4],[11,4],[1,1],[1,1],[289,9],[9,6],[7,4],[3,2],[2,3],[125,7],[1,1],[161,8],[1,1],[34,6],[109,7],[419,10],[165,8],[113,7],[3,3],[314,10],[122,8],[3,2],[2,2],[1,3],[2,2],[6,3],[208,8],[122,10],[331,9],[129,9],[1,1],[20,5],[44,6],[6,3],[17,6],[7,5],[1,1],[98,9],[139,9],[102,8],[60,9],[164,8],[1,1],[211,8],[636,10],[3,2],[18,6],[3,3],[204,9],[3,6],[17,5],[97,9],[259,9],[9,4],[7,3],[12,4],[105,7],[148,8],[16,5],[5,4],[801,10],[377,9],[207,9],[504,10],[1,3],[239,8],[8,4],[116,7],[30,5],[293,10],[96,8],[24,8],[6,3],[1,2],[333,9],[15,4],[440,9],[3,2],[41,6],[2,3],[5,3],[149,9],[279,9],[86,9],[1,1],[27,6],[87,7],[7,6],[1,1],[39,10],[28,6],[6,3],[2,3],[1,1],[7,3],[397,9],[12,4],[2,2],[2,4],[386,9],[351,10],[419,10],[1,2],[23,6],[3,3],[14,4],[28,6],[2,2],[26,8],[9,6],[9,5],[26,5],[3,2],[746,10],[129,8],[3,2],[132,8],[129,8],[205,8],[14,5],[96,7],[7,3],[30,5],[1,1],[11,7],[219,10],[450,10],[291,9],[1,1],[820,10],[8,6],[5,5],[102,7],[13,5],[314,9],[3,2],[1,1],[481,9],[354,10],[395,9],[284,9],[201,8],[378,9],[6,3],[3,2],[2,4],[68,8],[32,7],[25,5],[6,6],[110,8],[49,6],[13,4],[1,1],[30,5],[330,10],[77,10],[731,10],[19,5],[12,4],[61,8],[1,1],[113,9],[1,3],[20,5],[10,7],[1,1],[76,9],[3,4],[2,2],[3,3],[101,7],[1,1],[1,2],[6,3],[65,7],[7,3],[1,4],[1,3],[257,10],[13,4],[121,7],[205,8],[12,5],[1,1],[241,9],[7,3],[11,5],[35,7],[59,6],[189,8],[8,5],[3,2],[29,10],[15,4],[1,3],[27,5],[913,10],[126,7],[6,3],[182,9],[27,5],[29,5],[1,2],[1005,10],[22,5],[9,4],[7,3],[63,6],[2,2],[47,7],[215,8],[91,7],[327,9],[37,7],[75,7],[339,9],[386,9],[175,9],[14,5],[795,10],[11,4],[425,9],[30,5],[961,10],[3,2],[80,7],[1,2],[64,8],[8,4],[2,2],[49,9],[27,6],[14,5],[60,7],[277,9],[354,9],[2,2],[137,8],[25,10],[1,3],[323,9],[1,3],[13,4],[65,9],[5,3],[26,5],[51,8],[1,1],[66,7],[6,3],[7,3],[7,3],[24,5],[9,4],[243,8],[48,9],[2,4],[13,4],[49,9],[42,7],[1,2],[1,1],[468,9],[52,6],[1,1],[210,9],[570,10],[1,1],[23,8],[7,3],[6,3],[25,5],[862,10],[4,4],[7,5],[9,5],[15,6],[123,8],[51,6],[14,4],[3,5],[96,7],[1,1],[565,10],[176,9],[6,3],[56,6],[3,2],[3,5],[368,9],[2,4],[287,9],[812,10],[540,10],[14,4],[1,1],[19,6],[1,4],[104,7],[186,8],[43,6],[252,9],[7,5],[127,8],[200,9],[2,2],[19,5],[97,7],[17,6],[251,9],[594,10],[7,3],[112,9],[9,4],[3,2],[21,5],[28,6],[7,4],[15,4],[2,5],[39,6],[29,5],[3,5],[1,1],[124,7],[12,4],[6,3],[1,1],[192,8],[2,2],[4,6],[6,4],[1,1],[5,4],[1,1],[54,7],[1,1],[4,4],[222,8],[649,10],[20,5],[7,3],[1,1],[545,10],[204,8],[2,2],[152,10],[544,10],[66,8],[41,6],[1,1],[3,2],[119,7],[298,10],[1,1],[33,7],[104,7],[19,5],[7,4],[27,5],[7,3],[617,10],[427,9],[51,6],[2,2],[159,9],[11,4],[2,2],[5,4],[1012,10],[113,8],[2,2],[976,10],[1,2],[1,1],[169,8],[1,1],[125,9],[1,1],[1,1],[7,6],[31,8],[33,6],[6,4],[57,6],[29,5],[15,4],[21,5],[497,10],[17,5],[233,8],[294,9],[127,7],[23,5],[12,4],[185,8],[4,3],[163,10],[5,3],[15,7],[11,4],[122,7],[461,9],[1,1],[420,9],[1,2],[12,5],[2,2],[2,4],[2,3],[12,4],[15,4],[12,7],[38,9],[10,5],[1,1],[15,7],[11,5],[3,2],[12,7],[1,8],[2,4],[8,4],[1,1],[5,4],[73,9],[8,7],[12,7],[2,2],[1,3],[47,7],[10,4],[1,1],[1,1],[206,8],[135,8],[4,4],[3,3],[9,7],[16,5],[18,5],[395,9],[792,10],[2,3],[2,3],[1,1],[225,9],[7,4],[171,9],[21,6],[3,2],[1,1],[1,1],[355,10],[1,1],[3,4],[1,2],[69,7],[222,8],[12,4],[1,1],[68,8],[57,10],[112,7],[46,6],[131,8],[245,9],[62,6],[1,1],[8,4],[206,10],[873,10],[1,1],[216,8],[47,6],[254,8],[26,6],[474,9],[230,10],[204,8],[486,9],[158,9],[29,6],[5,3],[8,4],[6,3],[16,6],[7,3],[58,7],[211,8],[241,9],[1,3],[329,9],[3,2],[13,4],[954,10],[6,4],[87,7],[274,9],[56,6],[1,1],[6,3],[19,5],[5,9],[11,6],[1,1],[29,5],[195,8],[26,5],[32,7],[2,2],[2,6],[3,2],[791,10],[1,1],[17,5],[114,7],[121,7],[3,3],[1,4],[8,4],[7,4],[27,5],[29,6],[3,4],[29,7],[246,8],[1,2],[83,7],[390,9],[137,8],[22,5],[393,9],[1,1],[1,1],[2,3],[9,5],[26,8],[1,1],[11,4],[21,5],[3,4],[1,1],[8,4],[2,2],[115,7],[119,8],[23,5],[50,7],[1,5],[113,7],[61,7],[317,9],[1,2],[34,7],[285,9],[5,3],[8,5],[7,4],[2,3],[1,1],[305,9],[31,6],[27,6],[481,9],[22,10],[51,6],[208,9],[913,10],[178,8],[61,7],[61,6],[553,10],[327,10],[79,7],[29,6],[893,10],[10,7],[81,8],[124,7],[1,7],[160,9],[107,9],[5,3],[3,2],[12,5],[57,8],[7,3],[25,6],[138,8],[12,5],[2,2],[384,10],[168,8],[19,6],[5,4],[2,3],[13,4],[250,9],[2,2],[62,7],[10,5],[1,1],[31,7],[195,9],[1,2],[141,9],[42,6],[3,3],[14,4],[3,2],[3,2],[322,9],[22,6],[7,6],[6,3],[80,8],[178,8],[4,7],[1,1],[47,6],[141,8],[1,1],[77,7],[2,2],[195,9],[319,10],[63,7],[1,1],[766,10],[109,8],[1,2],[26,6],[23,7],[24,10],[14,4],[84,9],[117,7],[1,1],[1,1],[55,6],[5,3],[70,7],[3,2],[214,9],[273,9],[310,10],[6,4],[11,6],[1,1],[245,10],[450,10],[45,10],[1,1],[106,9],[49,7],[1,1],[3,2],[9,4],[336,9],[5,3],[1,1],[1,1],[1,1],[642,10],[16,6],[155,9],[187,8],[314,9],[62,7],[1,1],[2,2],[6,5],[3,3],[46,6],[3,3],[4,7],[27,6],[10,4],[12,4],[175,8],[16,6],[786,10],[31,5],[22,5],[36,7],[143,8],[15,4],[36,6],[18,5],[1,1],[1,1],[209,8],[3,2],[242,10],[3,2],[17,6],[236,8],[7,4],[5,3],[4,4],[122,9],[19,6],[2,10],[31,5],[171,8],[3,4],[2,3],[724,10],[823,10],[2,4],[2,2],[162,8],[2,3],[248,8],[371,9],[47,6],[343,9],[91,8],[1,2],[41,6],[3,2],[6,5],[13,5],[12,10],[253,8],[4,5],[5,4],[2,2],[28,5],[89,7],[3,2],[101,8],[15,5],[1,1],[4,4],[1,1],[16,5],[147,10],[3,5],[42,7],[196,8],[3,4],[40,8],[1,2],[24,7],[24,6],[8,6],[107,9],[3,2],[33,7],[39,7],[326,10],[97,7],[5,3],[2,2],[1,1],[8,4],[26,7],[150,8],[14,4],[5,3],[12,4],[15,5],[23,7],[311,9],[849,10],[111,7],[18,6],[7,3],[2,4],[94,8],[1,1],[1,1],[485,9],[235,8],[15,4],[1,2],[1,1],[1,1],[11,5],[1,3],[70,9],[52,6],[1,1],[3,2],[2,3],[3,4],[1,1],[15,5],[47,7],[292,10],[7,4],[449,9],[3,5],[238,9],[1,1],[39,6],[3,7],[451,10],[1,1],[521,10],[18,6],[7,4],[685,10],[2,2],[1,1],[9,4],[1,1],[465,9],[26,5],[1,3],[643,10],[67,7],[3,2],[1,3],[167,8],[7,10],[1,1],[160,10],[9,4],[342,9],[466,9],[12,4],[34,7],[5,4],[274,10],[3,2],[2,2],[445,9],[1,1],[30,7],[60,6],[153,10],[1,1],[150,8],[51,8],[82,9],[3,3],[114,7],[56,8],[90,7],[7,4],[223,9],[1,1],[251,9],[15,5],[161,9],[146,9],[1,2],[215,8],[513,10],[163,8],[161,8],[6,4],[547,10],[7,5],[125,7],[433,10],[40,6],[127,7],[14,4],[470,9],[30,5],[1,1],[7,3],[8,6],[389,9],[14,4],[23,6],[5,4],[5,3],[6,3],[6,7],[1,2],[112,9],[125,9],[10,4],[3,3],[23,5],[1,1],[52,6],[191,8],[7,3],[1,2],[401,9],[3,2],[2,2],[211,9],[16,5],[240,10],[124,7],[30,6],[7,3],[56,8],[285,9],[55,9],[871,10],[74,10],[51,10],[94,7],[315,10],[536,10],[247,8],[3,2],[29,6],[1,6],[30,5],[8,7],[350,10],[206,8],[144,9],[265,10],[2,3],[2,2],[114,7],[3,2],[45,7],[1,1],[1,2],[2,2],[4,5],[2,2],[1,1],[50,10],[6,3],[61,6],[1,1],[296,9],[872,10],[81,8],[55,6],[1,1],[82,10],[1,1],[37,7],[1,3],[14,8],[1,3],[14,4],[10,4],[3,3],[20,8],[43,6],[614,10],[122,7],[21,6],[3,7],[42,7],[19,5],[4,4],[225,8],[90,9],[3,2],[1,1],[30,5],[1,1],[9,4],[11,9],[36,9],[2,2],[56,6],[726,10],[1,3],[38,7],[4,3],[33,7],[3,2],[1008,10],[109,7],[5,4],[5,4],[562,10],[3,2],[163,8],[1,1],[205,10],[57,6],[1,1],[39,10],[660,10],[260,9],[661,10],[215,8],[2,2],[198,10],[640,10],[104,8],[298,9],[17,8],[9,4],[1,1],[55,8],[1,4],[796,10],[440,9],[220,8],[96,8],[17,5],[54,6],[3,2],[48,6],[63,6],[750,10],[1,1],[10,4],[5,5],[6,3],[1,1],[119,7],[1,3],[181,9],[12,8],[453,9],[606,10],[4,3],[126,7],[2,2],[17,8],[7,3],[47,6],[1,2],[345,9],[389,9],[2,3],[5,4],[59,6],[1,2],[177,8],[1,1],[2,3],[688,10],[184,8],[3,2],[1,1],[56,7],[54,9],[1,2],[331,9],[1,1],[63,6],[246,8],[9,4],[6,3],[115,7],[31,5],[22,6],[2,3],[327,10],[10,4],[1,1],[1,1],[3,2],[9,6],[3,4],[192,8],[5,3],[113,7],[63,6],[4,3],[1,3],[2,4],[9,5],[1,1],[1,1],[27,5],[168,9],[2,4],[23,5],[1,1],[2,4],[247,9],[14,5],[3,2],[3,6],[42,6],[27,5],[6,3],[2,2],[18,6],[4,5],[3,3],[4,3],[7,3],[24,7],[62,6],[374,10],[27,5],[4,3],[1,1],[136,9],[1,1],[4,5],[5,5],[698,10],[232,9],[721,10],[176,9],[7,3],[2,3],[1,1],[9,4],[254,8],[22,6],[1,1],[5,3],[1,2],[1,2],[10,4],[18,5],[197,9],[105,9],[14,5],[126,8],[11,4],[123,7],[5,3],[1,1],[3,2],[1,1],[126,7],[367,9],[1,1],[3,3],[228,8],[59,7],[443,10],[34,8],[59,7],[459,10],[1,1],[37,7],[7,3],[1,1],[14,4],[1,2],[325,9],[7,4],[195,8],[61,7],[1,1],[26,5],[3,3],[20,6],[8,4],[3,3],[29,5],[23,7],[2,2],[8,6],[350,9],[12,5],[2,2],[10,5],[4,3],[2,2],[391,10],[65,8],[1,2],[288,9],[23,5],[474,10],[17,6],[339,9],[103,7],[9,6],[492,9],[2,6],[11,6],[239,8],[124,7],[3,3],[187,8],[78,7],[2,2],[75,7],[1,1],[4,3],[10,4],[5,3],[6,3],[7,3],[29,5],[7,3],[4,3],[1,1],[160,8],[3,2],[1,3],[6,4],[696,10],[9,4],[71,9],[1,1],[323,10],[172,9],[31,6],[1,1],[5,3],[20,5],[66,7],[874,10],[6,4],[7,3],[212,8],[1,1],[22,5],[448,10],[2,4],[125,10],[813,10],[13,4],[8,5],[13,5],[1,2],[3,2],[4,4],[1,1],[24,7],[1,1],[1,1],[1004,10],[30,7],[444,10],[2,3],[1,1],[595,10],[189,8],[1,1],[35,8],[98,7],[3,2],[12,4],[424,9],[14,4],[55,6],[1,1],[3,2],[60,7],[5,7],[20,6],[635,10],[3,2],[53,6],[359,9],[506,10],[18,6],[8,5],[3,2],[19,7],[1,1],[16,5],[28,7],[1,1],[6,4],[1,1],[1,1],[134,8],[1,1],[708,10],[6,3],[7,4],[3,3],[1,1],[111,7],[501,10],[24,6],[12,5],[102,7],[1,1],[4,4],[1,1],[26,7],[32,6],[83,8],[4,4],[88,7],[2,2],[1,1],[52,6],[6,3],[1,1],[48,6],[4,3],[2,3],[217,9],[6,3],[1,1],[12,4],[19,5],[2,2],[40,6],[533,10],[12,5],[3,3],[2,2],[270,10],[218,9],[7,3],[5,5],[173,9],[54,6],[113,7],[206,10],[14,5],[21,7],[2,2],[20,5],[172,9],[1,4],[53,6],[4,4],[1,8],[76,7],[92,7],[1,1],[14,5],[37,8],[201,8],[153,8],[73,10],[30,9],[4,5],[182,8],[1,1],[16,5],[882,10],[3,2],[63,6],[26,5],[11,6],[284,9],[194,10],[1,2],[10,4],[688,10],[1,1],[63,6],[11,4],[44,6],[15,4],[15,4],[57,7],[82,7],[11,4],[4,3],[46,9],[1,2],[34,6],[10,5],[21,8],[134,8],[382,9],[6,5],[17,5],[2,2],[1,1],[306,9],[1,1],[53,6],[9,7],[1,1],[664,10],[1,1],[1,3],[1,1],[14,4],[120,10],[3,2],[3,2],[38,6],[41,7],[56,6],[80,7],[1,1],[2,2],[21,5],[1,5],[10,5],[1,3],[7,3],[12,5],[3,4],[20,5],[90,7],[3,2],[57,6],[14,4],[162,8],[31,5],[1,1],[51,9],[109,7],[9,4],[53,6],[803,10],[3,2],[636,10],[56,7],[1,2],[5,4],[531,10],[2,6],[81,8],[20,6],[4,5],[53,10],[123,7],[3,2],[32,6],[254,9],[3,2],[2,2],[1,1],[12,4],[1,4],[13,4],[1,1],[10,6],[1,1],[91,8],[8,5],[291,10],[1,2],[428,9],[2,3],[2,6],[1,1],[123,8],[446,9],[1,1],[1,1],[29,6],[503,10],[6,3],[75,7],[1,1],[318,9],[5,3],[112,7],[5,3],[42,6],[85,8],[74,9],[2,2],[2,2],[1,1],[2,2],[208,10],[3,3],[1,2],[44,6],[2,2],[1,1],[26,6],[136,8],[13,5],[97,8],[55,9],[38,6],[6,3],[58,8],[39,6],[94,7],[2,2],[1,5],[137,9],[790,10],[122,7],[1,1],[16,6],[1,1],[1,3],[251,8],[2,3],[9,4],[13,4],[670,10],[279,9],[2,2],[15,5],[911,10],[79,7],[49,6],[83,7],[226,8],[48,6],[6,3],[15,4],[14,4],[223,8],[111,9],[7,5],[9,6],[32,6],[45,6],[1,2],[7,3],[44,6],[7,4],[3,2],[1,1],[41,9],[134,9],[27,5],[12,4],[351,9],[1,1],[400,9],[1,1],[23,6],[6,3],[87,7],[474,10],[8,4],[364,9],[5,3],[19,5],[6,5],[10,5],[1,5],[25,5],[2,2],[1,1],[137,8],[382,10],[1,1],[1,1],[15,8],[1,1],[16,5],[29,6],[55,6],[1,2],[306,9],[1,1],[41,6],[148,8],[5,3],[231,10],[16,8],[102,9],[894,10],[3,4],[67,8],[166,8],[508,10],[337,9],[13,5],[22,6],[3,2],[362,9],[1,1],[11,4],[2,7],[161,9],[2,2],[207,8],[99,7],[9,9],[256,9],[166,9],[1,1],[1,1],[11,5],[1,3],[1,1],[2,2],[17,9],[29,7],[348,9],[7,7],[1,1],[12,4],[5,3],[52,6],[1,1],[25,6],[27,5],[60,6],[37,6],[1,2],[93,8],[6,8],[47,6],[1,1],[1,2],[7,3],[236,10],[23,5],[7,3],[345,9],[24,5],[174,8],[5,3],[1,2],[152,8],[12,4],[10,9],[30,6],[36,8],[7,9],[5,4],[51,6],[120,9],[29,5],[484,9],[1,1],[2,2],[3,2],[11,4],[4,3],[128,9],[98,7],[344,9],[78,8],[7,6],[452,10],[1,3],[2,3],[49,6],[14,4],[4,4],[6,6],[253,8],[1,3],[241,9],[3,2],[1013,10],[18,5],[86,7],[24,5],[39,10],[3,2],[8,4],[106,9],[1,1],[540,10],[3,3],[201,8],[3,2],[3,2],[7,5],[33,6],[1,1],[1,3],[16,5],[32,8],[2,6],[105,7],[2,2],[47,6],[1,1],[32,6],[1,4],[11,4],[444,9],[45,9],[316,9],[408,9],[8,4],[11,5],[1,1],[40,6],[3,2],[756,10],[1,1],[1,1],[46,6],[9,4],[1,2],[2,5],[58,8],[8,5],[213,8],[13,4],[5,4],[11,4],[4,6],[2,5],[4,7],[1,3],[3,2],[19,7],[1,1],[8,4],[976,10],[13,4],[448,9],[207,9],[1,4],[11,5],[462,9],[14,5],[1,1],[3,2],[503,9],[10,4],[2,5],[20,5],[4,3],[1,1],[28,7],[335,9],[293,10],[15,5],[2,3],[164,8],[2,2],[46,7],[161,8],[4,4],[1,1],[211,10],[124,10],[5,4],[1,1],[1,1],[240,9],[6,5],[1,2],[7,4],[36,8],[2,2],[50,6],[114,7],[61,7],[1,4],[13,5],[159,9],[107,7],[72,7],[25,5],[23,6],[1,1],[52,6],[1,1],[2,2],[6,3],[1,2],[21,5],[6,5],[6,3],[276,9],[30,10],[11,5],[7,4],[13,4],[128,10],[46,6],[7,4],[3,2],[690,10],[6,3],[47,9],[349,10],[1,3],[24,5],[207,8],[1,1],[16,7],[117,7],[21,5],[56,6],[26,5],[10,4],[2,4],[1,1],[387,9],[1,1],[97,7],[2,3],[2,2],[43,6],[4,3],[9,7],[1,2],[1,1],[11,5],[347,10],[168,8],[252,8],[528,10],[28,6],[3,2],[3,3],[1,1],[63,6],[3,2],[98,7],[2,3],[1,1],[612,10],[1,1],[168,8],[243,8],[116,9],[3,5],[800,10],[115,9],[10,4],[207,8],[37,6],[2,4],[24,5],[14,4],[151,8],[1,1],[213,10],[3,2],[6,3],[347,9],[493,10],[4,3],[32,6],[2,2],[15,4],[15,5],[1,3],[6,5],[6,4],[150,8],[1,5],[101,8],[11,5],[2,3],[1,2],[330,9],[110,9],[444,9],[11,6],[45,7],[3,7],[13,4],[3,2],[12,4],[67,7],[199,8],[1,1],[701,10],[6,3],[5,4],[101,7],[7,3],[61,10],[2,2],[9,4],[12,4],[4,3],[7,5],[7,8],[3,2],[130,8],[138,9],[1,1],[12,4],[60,6],[2,2],[13,4],[1,1],[52,9],[24,6],[1,1],[2,2],[2,2],[3,5],[326,10],[3,2],[9,5],[766,10],[5,3],[729,10],[489,9],[1,1],[1,1],[1,1],[1,1],[17,5],[226,8],[2,2],[62,6],[13,7],[831,10],[11,7],[428,9],[338,10],[134,8],[61,8],[370,10],[13,7],[3,4],[10,4],[5,4],[7,4],[43,7],[1,1],[13,4],[56,7],[2,2],[10,4],[482,10],[7,4],[102,10],[13,5],[30,7],[1,1],[12,9],[14,5],[499,9],[111,9],[140,9],[457,9],[2,4],[523,10],[80,9],[253,9],[193,9],[26,5],[1,1],[1,2],[20,5],[2,2],[2,4],[6,3],[31,6],[2,4],[2,2],[9,6],[9,4],[24,6],[3,3],[115,9],[3,2],[240,8],[2,3],[2,6],[31,5],[27,5],[17,5],[22,5],[59,6],[1,1],[234,8],[1,1],[48,8],[305,9],[36,10],[1,2],[2,2],[3,3],[5,3],[2,3],[6,3],[2,3],[1,1],[2,2],[1,1],[3,3],[23,7],[121,7],[62,6],[31,10],[79,7],[198,8],[33,6],[16,5],[1,6],[41,6],[11,4],[80,7],[1,1],[2,3],[25,8],[213,8],[118,7],[4,3],[154,10],[82,7],[10,4],[416,9],[1,1],[45,6],[4,4],[1,1],[32,7],[1,1],[63,9],[5,3],[2,2],[5,3],[123,7],[119,8],[4,6],[63,6],[27,5],[4,4],[2,3],[58,6],[45,6],[291,9],[10,7],[29,5],[60,6],[59,6],[114,8],[100,7],[25,7],[1,1],[66,8],[32,10],[303,9],[101,7],[105,7],[108,8],[555,10],[14,5],[23,7],[3,2],[15,6],[1,1],[11,5],[3,2],[24,8],[165,8],[42,6],[1,2],[462,10],[5,4],[372,10],[3,2],[2,2],[181,10],[2,3],[1,1],[1,1],[12,4],[159,10],[253,8],[6,7],[91,7],[1,1],[922,10],[12,6],[269,9],[23,5],[4,4],[26,6],[3,6],[4,4],[25,5],[19,8],[96,8],[199,9],[90,10],[681,10],[173,8],[28,5],[272,10],[1011,10],[73,7],[1,1],[25,5],[290,9],[246,8],[3,2],[4,3],[14,4],[950,10],[1,1],[274,9],[46,10],[90,9],[1,1],[15,5],[1,2],[11,4],[898,10],[176,8],[200,8],[7,3],[1,1],[2,3],[932,10],[106,7],[688,10],[19,9],[996,10],[3,2],[3,5],[33,8],[1,1],[1,2],[248,8],[77,7],[38,6],[690,10],[2,5],[1,2],[1,2],[142,10],[82,8],[23,7],[23,5],[799,10],[2,5],[232,8],[460,9],[3,2],[14,4],[21,5],[43,6],[42,7],[368,9],[3,2],[553,10],[410,9],[1,1],[1,1],[3,5],[117,7],[24,6],[5,3],[2,2],[12,4],[15,6],[114,9],[14,6],[1,1],[591,10],[1,1],[664,10],[1,1],[1,2],[25,7],[616,10],[933,10],[215,10],[66,8],[15,4],[6,4],[2,2],[1,1],[105,10],[20,6],[7,4],[27,7],[152,9],[5,4],[508,10],[747,10],[949,10],[448,10],[54,6],[1,1],[4,4],[34,6],[430,9],[73,7],[12,6],[72,8],[228,8],[561,10],[48,9],[11,4],[85,7],[9,5],[1,4],[97,7],[1,1],[501,10],[835,10],[19,5],[2,2],[18,10],[1,1],[43,6],[1,2],[14,7],[157,9],[24,7],[1,2],[138,9],[112,10],[4,3],[30,5],[37,6],[1,1],[13,4],[111,7],[28,7],[4,3],[15,4],[6,5],[40,8],[316,9],[1,1],[1,1],[1,1],[41,6],[1,1],[7,3],[7,3],[2,3],[3,3],[463,9],[25,6],[675,10],[3,2],[252,8],[757,10],[14,4],[123,7],[45,9],[7,4],[46,9],[871,10],[83,7],[13,4],[1,1],[26,6],[30,6],[308,9],[173,9],[305,9],[5,7],[19,6],[2,3],[9,4],[10,4],[12,6],[3,3],[122,7],[2,2],[262,10],[415,9],[122,8],[57,6],[133,8],[33,7],[58,7],[250,8],[2,2],[460,9],[2,8],[76,7],[9,6],[3,3],[4,4],[27,6],[177,10],[769,10],[10,5],[61,7],[521,10],[1,1],[230,8],[3,2],[101,8],[4,4],[3,2],[715,10],[385,9],[3,3],[27,5],[12,4],[23,6],[5,6],[21,5],[423,9],[4,4],[3,5],[5,8],[3,2],[49,6],[1,5],[48,7],[4,4],[1,1],[31,7],[3,2],[4,3],[3,2],[1,2],[455,10],[92,7],[11,4],[10,4],[1,1],[12,4],[224,8],[4,3],[6,3],[6,4],[52,7],[19,7],[1,1],[14,5],[157,10],[35,6],[21,9],[1,1],[44,7],[213,10],[42,6],[26,5],[117,8],[3,2],[1,2],[11,5],[85,7],[1,1],[1,2],[104,7],[49,6],[136,8],[474,9],[1,1],[22,6],[414,9],[860,10],[1,1],[1,2],[13,5],[1,3],[822,10],[1,3],[21,6],[313,9],[9,6],[114,7],[15,6],[542,10],[147,8],[14,6],[30,8],[3,3],[28,5],[3,2],[2,4],[623,10],[1,1],[1,2],[938,10],[1,2],[71,8],[1,1],[876,10],[164,8],[597,10],[10,4],[296,10],[91,9],[72,10],[709,10],[3,3],[104,8],[174,8],[12,5],[58,9],[14,4],[65,7],[29,5],[51,6],[2,2],[752,10],[2,2],[105,7],[2,2],[4,3],[17,5],[6,3],[501,9],[179,8],[34,7],[17,6],[8,6],[1,1],[28,6],[76,9],[6,3],[644,10],[73,9],[44,6],[1,1],[1,1],[41,7],[53,6],[6,3],[3,2],[1,3],[962,10],[28,7],[132,10],[13,4],[32,6],[364,10],[141,10],[4,3],[1,2],[36,6],[1,1],[1,1],[22,5],[417,9],[1,2],[25,5],[4,3],[486,9],[30,5],[109,7],[62,7],[55,6],[12,4],[23,5],[828,10],[33,6],[9,4],[1,1],[26,8],[65,7],[10,4],[234,9],[5,5],[31,5],[5,6],[8,8],[69,8],[3,3],[2,3],[249,8],[15,5],[382,10],[101,8],[3,3],[148,8],[78,7],[949,10],[57,6],[104,7],[12,4],[220,9],[6,3],[35,6],[52,6],[2,2],[4,4],[32,6],[1,3],[13,7],[6,3],[1,1],[1,1],[1,2],[1,3],[664,10],[59,6],[123,7],[160,10],[1,1],[29,9],[7,4],[7,3],[96,8],[4,3],[1,2],[1,1],[10,6],[4,4],[41,6],[7,3],[1,2],[1,1],[268,9],[1,2],[37,7],[92,8],[156,9],[1,1],[20,5],[420,9],[119,7],[69,8],[7,4],[24,5],[35,8],[28,6],[51,6],[94,8],[1,1],[2,3],[1,2],[1,4],[2,2],[55,6],[4,3],[352,9],[3,2],[1,1],[2,5],[3,5],[10,5],[1,2],[5,3],[1,5],[2,2],[55,6],[5,5],[428,9],[19,6],[25,7],[118,7],[12,4],[7,4],[19,5],[157,10],[1,1],[26,5],[9,4],[26,7],[1,2],[259,9],[21,5],[3,3],[1,1],[140,10],[1,1],[2,2],[6,3],[4,3],[1,1],[86,8],[1,3],[66,9],[298,9],[26,6],[61,7],[127,7],[18,7],[99,7],[4,6],[18,5],[5,5],[66,7],[44,6],[3,2],[1,1],[1,1],[7,3],[61,8],[334,9],[1,1],[8,4],[12,5],[21,6],[114,8],[29,5],[2,2],[261,10],[3,3],[22,5],[1,1],[15,4],[627,10],[11,4],[164,9],[57,8],[5,3],[14,7],[6,3],[976,10],[88,7],[1,2],[589,10],[7,5],[3,2],[3,2],[1012,10],[27,5],[375,9],[18,5],[32,8],[9,4],[10,5],[72,9],[6,3],[34,6],[1,6],[207,10],[171,8],[492,10],[2,3],[29,8],[631,10],[506,10],[153,8],[357,9],[187,9],[22,5],[1,1],[54,6],[6,6],[1,1],[5,4],[26,5],[3,2],[39,6],[15,5],[3,2],[1,1],[144,10],[2,2],[1,1],[195,8],[3,2],[96,8],[226,9],[1,1],[25,5],[180,8],[1,2],[447,9],[57,6],[1,3],[2,2],[1,3],[7,4],[4,5],[8,4],[39,6],[6,4],[1,1],[29,6],[71,7],[2,4],[78,7],[1,1],[646,10],[6,4],[217,8],[3,2],[146,8],[91,9],[145,10],[5,3],[45,8],[39,7],[152,8],[1,1],[114,7],[2,2],[2,7],[4,3],[121,7],[97,8],[26,5],[15,4],[2,2],[2,2],[2,2],[404,9],[5,3],[864,10],[1,1],[167,9],[360,9],[8,4],[7,5],[3,2],[3,5],[8,4],[7,4],[119,7],[4,3],[115,7],[61,7],[1,1],[87,7],[225,9],[120,9],[807,10],[497,10],[19,6],[72,7],[1,1],[387,9],[31,6],[235,9],[60,7],[98,7],[255,9],[12,4],[504,9],[5,4],[3,2],[5,3],[42,9],[112,8],[76,8],[44,7],[26,7],[785,10],[6,5],[16,5],[7,3],[1,1],[1,1],[50,7],[1,1],[1,1],[3,3],[3,3],[14,6],[686,10],[10,4],[2,2],[125,9],[396,9],[38,6],[13,4],[217,8],[19,6],[2,2],[3,2],[2,2],[511,10],[6,4],[1,1],[8,5],[2,2],[13,5],[3,2],[11,4],[398,9],[474,9],[7,3],[16,5],[1,4],[378,10],[5,4],[5,3],[154,10],[1,2],[46,6],[178,9],[112,10],[491,9],[14,6],[60,6],[3,2],[3,3],[7,6],[3,2],[1,1],[1,4],[112,9],[779,10],[41,7],[32,7],[4,3],[4,3],[1,1],[1,2],[97,8],[2,2],[78,7],[2,2],[3,3],[2,2],[7,3],[7,4],[11,4],[7,3],[24,7],[958,10],[3,5],[52,6],[2,2],[497,9],[26,5],[26,5],[275,9],[3,3],[1,1],[14,4],[17,5],[3,4],[2,5],[8,5],[5,5],[240,8],[1,1],[44,6],[180,9],[31,7],[1,1],[5,3],[7,5],[140,9],[4,5],[99,7],[1,2],[2,3],[181,8],[8,4],[3,3],[311,10],[2,2],[1,1],[28,5],[6,3],[10,4],[173,9],[3,3],[1,1],[84,10],[223,9],[57,8],[241,9],[725,10],[5,6],[944,10],[274,9],[489,10],[9,4],[11,4],[258,9],[280,9],[1,2],[1,1],[885,10],[5,5],[443,10],[511,9],[460,10],[90,9],[211,9],[1,1],[9,4],[14,4],[44,6],[869,10],[36,8],[985,10],[57,6],[68,9],[12,6],[3,6],[3,4],[45,6],[27,5],[1,3],[21,5],[76,7],[1,1],[765,10],[36,7],[6,7],[15,4],[111,7],[1,2],[11,4],[226,10],[2,2],[231,8],[7,3],[185,8],[1,3],[3,2],[684,10],[2,2],[18,5],[138,8],[252,8],[6,3],[84,7],[13,5],[12,4],[107,7],[3,2],[4,4],[13,5],[11,5],[11,4],[1,1],[27,5],[3,2],[41,9],[29,5],[131,8],[335,9],[220,9],[1,2],[24,5],[452,10],[1,1],[317,9],[59,9],[4,4],[16,8],[78,8],[6,3],[3,2],[3,2],[3,2],[163,9],[216,8],[1,2],[9,6],[30,5],[12,5],[13,5],[22,5],[287,9],[1,1],[7,4],[15,6],[27,5],[996,10],[56,7],[228,8],[5,4],[174,10],[5,3],[86,10],[92,7],[48,10],[1,1],[29,7],[357,9],[663,10],[49,10],[135,8],[31,7],[5,6],[6,5],[7,5],[169,8],[1,1],[7,7],[3,2],[18,7],[23,8],[6,3],[1,3],[81,10],[1,2],[25,5],[39,8],[4,3],[2,3],[13,5],[48,6],[11,4],[353,9],[199,8],[12,5],[7,3],[14,5],[33,8],[36,6],[22,10],[406,9],[27,6],[30,9],[2,4],[2,2],[4,3],[637,10],[125,7],[20,6],[1,1],[5,6],[74,8],[388,9],[1007,10],[11,4],[3,2],[24,5],[64,7],[8,4],[4,3],[110,8],[1,1],[1,1],[7,4],[5,4],[6,3],[10,4],[6,4],[5,6],[5,4],[51,6],[135,8],[441,10],[416,10],[1,1],[1,1],[15,4],[49,8],[1,1],[36,6],[26,9],[624,10],[1,1],[1,1],[2,2],[4,9],[59,6],[1,1],[8,4],[252,8],[17,6],[14,5],[7,3],[59,6],[392,9],[60,6],[23,5],[7,4],[871,10],[1,1],[17,5],[272,10],[6,3],[190,8],[552,10],[4,3],[1,2],[430,10],[165,8],[10,4],[40,8],[56,7],[97,7],[9,4],[3,3],[724,10],[4,3],[21,5],[1,5],[1,3],[1,1],[1,1],[100,7],[4,5],[982,10],[10,4],[183,8],[67,9],[124,9],[8,4],[1,1],[8,4],[16,5],[13,5],[1,1],[24,6],[48,7],[1,1],[158,9],[2,4],[1,1],[208,8],[13,4],[121,7],[58,6],[3,2],[22,7],[5,3],[847,10],[7,4],[1,2],[28,5],[772,10],[6,3],[518,10],[31,5],[9,4],[169,8],[5,5],[3,2],[501,10],[113,8],[106,9],[1,4],[1,1],[870,10],[1,1],[20,5],[223,9],[1,1],[868,10],[74,7],[54,6],[1,3],[110,10],[23,6],[988,10],[247,8],[2,7],[91,7],[287,10],[108,9],[242,8],[17,5],[563,10],[161,9],[1,1],[1,1],[5,3],[3,4],[3,2],[46,6],[2,2],[332,9],[5,3],[19,6],[2,2],[1,1],[106,9],[91,8],[356,9],[516,10],[25,6],[58,8],[2,2],[4,4],[56,6],[4,4],[35,7],[14,4],[266,10],[2,4],[14,9],[1,1],[4,4],[1,1],[1,1],[14,5],[1,1],[17,9],[169,8],[1,2],[127,9],[5,3],[1,1],[4,5],[27,5],[6,4],[50,9],[31,7],[70,8],[345,10],[2,2],[57,6],[109,8],[12,4],[24,5],[2,3],[285,9],[1,3],[7,4],[615,10],[226,8],[382,9],[63,8],[3,2],[1,1],[4,5],[6,3],[1,3],[9,5],[24,7],[2,2],[632,10],[142,8],[259,9],[27,5],[1,1],[96,8],[193,8],[660,10],[22,5],[45,6],[1,1],[1,1],[115,9],[6,3],[116,8],[468,9],[13,7],[18,5],[4,7],[1,1],[1,1],[10,4],[7,4],[82,7],[76,7],[15,6],[4,3],[45,6],[6,3],[26,6],[2,2],[9,6],[87,7],[166,8],[56,6],[12,5],[243,9],[962,10],[368,9],[1,1],[166,8],[68,7],[19,6],[1,1],[58,7],[493,9],[63,7],[4,4],[165,8],[122,7],[48,6],[1,4],[877,10],[1,1],[2,2],[220,8],[30,7],[92,7],[1,5],[4,3],[3,5],[1,2],[3,10],[209,8],[43,6],[205,8],[1010,10],[385,9],[599,10],[114,9],[14,4],[1,1],[1,1],[5,3],[110,8],[13,4],[10,4],[12,6],[218,8],[1,1],[2,2],[1,1],[7,3],[235,10],[49,7],[81,8],[1,1],[4,3],[215,8],[505,9],[2,2],[69,7],[40,6],[472,9],[8,4],[302,9],[124,8],[1,7],[944,10],[3,2],[14,6],[8,4],[36,9],[375,10],[311,9],[16,6],[6,4],[912,10],[852,10],[18,7],[396,9],[6,3],[322,9],[10,7],[169,9],[50,7],[64,8],[22,5],[369,10],[250,10],[1,7],[13,4],[6,3],[86,7],[115,8],[150,9],[240,8],[966,10],[1,1],[1,4],[14,5],[4,3],[10,4],[839,10],[1,1],[3,2],[25,5],[83,7],[121,9],[116,7],[385,9],[7,3],[118,7],[6,5],[8,5],[381,9],[35,6],[1,2],[1,3],[18,5],[306,9],[45,8],[9,4],[30,8],[110,8],[64,7],[21,5],[5,4],[424,9],[1,1],[1015,10],[6,7],[53,6],[24,5],[2,2],[873,10],[6,3],[8,5],[13,9],[372,9],[5,3],[1,1],[15,4],[2,2],[1,1],[330,10],[192,8],[495,10],[41,10],[54,6],[1,1],[45,7],[72,8],[23,6],[10,5],[3,2],[10,4],[1,1],[5,3],[1,1],[3,2],[6,3],[2,2],[2,2],[3,3],[33,6],[2,7],[209,10],[1,1],[23,6],[3,2],[1,3],[210,8],[3,5],[1,1],[12,6],[404,9],[799,10],[1,3],[3,3],[7,3],[265,9],[15,4],[383,9],[735,10],[1,1],[191,8],[240,8],[13,6],[12,6],[19,5],[470,10],[3,4],[33,6],[29,5],[1,1],[3,3],[2,3],[1,1],[1,1],[36,7],[44,6],[1,2],[349,9],[4,3],[4,4],[10,4],[3,2],[159,10],[24,7],[25,6],[188,8],[510,9],[49,8],[472,10],[127,7],[197,9],[5,3],[28,7],[7,4],[3,2],[21,5],[481,10],[6,3],[88,9],[199,8],[66,7],[1,2],[20,5],[3,3],[1,1],[337,10],[9,7],[60,6],[124,7],[6,3],[904,10],[190,9],[1,2],[211,9],[7,3],[10,7],[190,8],[210,8],[179,8],[13,4],[3,2],[1,2],[17,5],[60,6],[4,3],[816,10],[18,7],[1,1],[426,10],[29,5],[1,1],[1,1],[83,7],[696,10],[530,10],[1,7],[2,4],[94,8],[13,4],[21,5],[1,1],[181,10],[1,1],[284,9],[708,10],[176,8],[96,7],[14,7],[37,6],[12,6],[2,3],[2,5],[727,10],[6,3],[529,10],[376,10],[6,3],[7,6],[6,4],[6,3],[9,6],[94,7],[5,4],[207,10],[1,1],[251,9],[22,5],[2,2],[1,1],[1,2],[79,7],[4,3],[6,3],[6,4],[1,1],[362,9],[1,1],[6,3],[5,3],[1,1],[14,5],[120,9],[1,3],[111,7],[1,1],[16,6],[13,6],[140,10],[6,4],[10,8],[2,2],[654,10],[166,8],[36,6],[88,7],[4,3],[4,3],[2,7],[3,2],[2,3],[150,8],[902,10],[210,8],[252,8],[26,7],[35,10],[21,6],[7,5],[1,1],[4,4],[132,8],[138,10],[302,10],[56,6],[242,8],[6,6],[812,10],[87,7],[13,6],[10,5],[506,9],[507,9],[19,7],[3,3],[12,4],[2,3],[492,10],[177,9],[35,8],[4,3],[98,7],[54,8],[1,1],[9,4],[1,2],[97,7],[2,4],[121,8],[120,9],[14,4],[90,7],[242,8],[451,10],[21,7],[3,6],[110,8],[39,9],[7,9],[3,2],[443,9],[70,7],[330,9],[142,8],[1,5],[1,1],[1,1],[206,10],[25,6],[247,8],[31,5],[170,8],[7,3],[7,4],[89,9],[2,2],[2,10],[1,1],[83,7],[81,8],[1,1],[3,2],[163,10],[54,10],[254,8],[21,6],[11,4],[1,1],[44,8],[728,10],[1,2],[44,6],[615,10],[221,8],[51,6],[1,2],[824,10],[89,7],[89,9],[2,3],[1,3],[212,8],[94,9],[116,7],[1,1],[1,1],[1,2],[14,4],[1,2],[1,2],[466,9],[58,6],[5,3],[55,7],[120,8],[91,8],[57,9],[58,7],[1013,10],[3,4],[5,3],[9,4],[25,7],[172,8],[5,6],[27,7],[93,7],[654,10],[75,7],[4,3],[5,4],[212,9],[282,9],[24,5],[3,2],[16,5],[536,10],[6,4],[123,7],[850,10],[27,6],[56,8],[4,10],[10,6],[874,10],[29,5],[2,2],[22,5],[75,7],[11,5],[113,7],[8,4],[7,3],[31,5],[450,9],[227,8],[1,1],[8,5],[29,7],[253,8],[4,3],[4,4],[2,2],[2,2],[39,6],[28,6],[1,2],[54,7],[5,3],[806,10],[208,9],[1,1],[307,9],[1,1],[126,9],[2,2],[4,3],[209,10],[181,9],[1,1],[526,10],[123,7],[11,4],[5,3],[131,8],[131,8],[7,5],[392,9],[23,5],[408,9],[204,8],[21,6],[126,7],[1,2],[84,7],[11,4],[14,4],[38,6],[5,3],[1,1],[182,8],[27,7],[1,3],[14,4],[352,10],[1,1],[1,1],[2,3],[3,3],[2,2],[5,3],[49,6],[572,10],[2,2],[63,8],[1,1],[150,8],[30,8],[1,1],[1,1],[1,3],[44,6],[5,3],[80,8],[48,7],[37,6],[36,6],[521,10],[3,2],[2,2],[9,5],[1,1],[120,8],[215,8],[247,8],[18,5],[15,4],[2,2],[31,5],[477,9],[15,4],[25,7],[90,8],[127,10],[1,3],[31,5],[27,5],[2,2],[118,7],[5,3],[130,8],[167,8],[4,3],[638,10],[3,4],[11,5],[1,1],[115,7],[1,2],[1,1],[21,5],[500,9],[45,9],[75,8],[17,5],[1,1],[2,3],[10,4],[57,6],[12,4],[253,8],[9,4],[23,6],[8,4],[384,10],[26,5],[1,1],[226,8],[1,1],[4,4],[154,9],[443,9],[6,3],[40,7],[1,9],[2,2],[3,2],[84,7],[69,7],[2,5],[33,8],[793,10],[1,1],[6,4],[13,6],[3,3],[755,10],[56,6],[2,2],[3,2],[187,8],[1,3],[2,2],[1,3],[3,2],[1,2],[151,8],[58,6],[1,1],[1,1],[1,3],[36,7],[154,8],[55,6],[46,6],[18,5],[4,7],[85,7],[3,7],[1,2],[5,3],[14,4],[1,2],[368,10],[123,8],[113,7],[345,10],[51,9],[171,8],[2,2],[2,2],[38,10],[10,5],[4,5],[1,1],[7,3],[1,1],[461,9],[2,3],[240,9],[51,7],[24,5],[1,3],[367,10],[15,5],[41,6],[21,6],[31,6],[92,7],[581,10],[1,3],[220,8],[171,8],[771,10],[1,5],[375,9],[3,6],[1,4],[1,2],[1,4],[502,10],[84,7],[48,6],[1,2],[12,5],[10,5],[6,3],[3,5],[561,10],[3,3],[1,2],[2,3],[39,8],[6,3],[11,4],[5,3],[2,3],[11,4],[124,8],[2,2],[35,6],[43,7],[10,5],[54,6],[3,2],[430,9],[1,7],[27,5],[7,4],[309,9],[11,6],[76,8],[212,8],[270,10],[5,4],[1,1],[545,10],[4,3],[95,9],[118,7],[520,10],[258,9],[7,3],[191,10],[6,8],[284,9],[1,1],[1,2],[1,1],[9,5],[44,6],[9,5],[68,10],[1,3],[6,3],[30,5],[6,3],[573,10],[399,10],[9,5],[8,5],[421,9],[25,7],[4,3],[1,1],[7,4],[145,9],[1,1],[80,8],[12,4],[3,3],[68,7],[980,10],[75,7],[9,4],[14,5],[2,3],[1,1],[1,2],[190,8],[35,9],[757,10],[128,8],[20,5],[11,4],[18,6],[479,9],[49,6],[1,1],[2,2],[418,10],[22,5],[608,10],[41,6],[2,7],[578,10],[209,8],[2,2],[29,7],[15,4],[1,1],[73,8],[4,3],[14,4],[26,5],[71,7],[522,10],[3,3],[126,8],[3,2],[35,8],[4,9],[30,6],[30,5],[40,7],[2,3],[3,2],[1,1],[27,5],[3,4],[3,2],[498,10],[1,3],[32,8],[5,3],[1,1],[75,7],[6,4],[15,7],[2,3],[375,9],[3,2],[221,9],[4,5],[690,10],[779,10],[33,6],[397,10],[79,7],[239,8],[894,10],[1,2],[2,4],[3,2],[333,9],[19,5],[1,4],[6,3],[20,6],[1,2],[1,2],[37,8],[46,6],[1,1],[54,7],[23,5],[23,6],[1,1],[1,1],[300,9],[17,5],[22,5],[2,4],[7,3],[26,6],[16,5],[7,7],[21,5],[31,8],[5,3],[27,8],[7,3],[304,10],[2,6],[17,6],[4,10],[55,9],[2,3],[56,6],[25,6],[3,2],[121,9],[942,10],[13,5],[888,10],[77,9],[181,8],[87,8],[1,1],[4,3],[26,8],[19,7],[9,4],[327,9],[1,1],[445,9],[1,1],[26,5],[209,10],[54,6],[1,3],[389,10],[24,5],[4,4],[27,6],[1,5],[19,6],[135,8],[30,5],[3,2],[1,1],[39,6],[3,2],[1,1],[22,5],[3,2],[3,3],[14,6],[5,3],[31,5],[55,6],[2,2],[7,4],[7,3],[1,1],[21,6],[3,6],[2,3],[147,10],[247,9],[678,10],[115,7],[28,5],[23,5],[4,3],[12,6],[2,3],[66,7],[15,5],[2,4],[861,10],[9,4],[3,5],[240,8],[2,3],[1,1],[427,9],[1,3],[5,7],[5,4],[7,3],[1,1],[1,1],[34,7],[29,5],[1,1],[963,10],[300,10],[8,4],[557,10],[12,5],[2,5],[169,9],[2,2],[10,5],[2,3],[1,1],[179,9],[4,5],[15,4],[1,3],[7,3],[153,8],[3,2],[3,2],[1,2],[31,8],[7,5],[3,2],[173,8],[54,6],[76,7],[5,4],[79,7],[6,3],[1,1],[20,5],[2,2],[1,1],[7,4],[50,6],[88,7],[110,7],[2,3],[18,5],[12,4],[25,5],[45,6],[1,1],[395,9],[115,9],[1,1],[19,6],[38,6],[2,2],[287,10],[111,8],[327,9],[12,4],[78,10],[40,6],[18,6],[20,5],[28,5],[4,3],[34,6],[1,2],[1,2],[2,4],[41,8],[931,10],[110,7],[3,3],[28,10],[464,9],[3,2],[10,5],[6,3],[1,2],[324,10],[73,7],[948,10],[13,5],[2,8],[112,7],[13,4],[3,5],[1,1],[7,6],[2,2],[2,4],[183,10],[184,10],[23,5],[2,2],[39,6],[6,3],[22,5],[48,6],[399,10],[1,1],[1,1],[3,2],[52,8],[1,1],[4,4],[15,4],[188,8],[445,10],[346,10],[624,10],[2,4],[1,5],[198,8],[1,1],[3,4],[103,7],[245,8],[3,2],[33,7],[16,5],[330,9],[18,5],[3,6],[26,5],[92,9],[90,8],[82,7],[2,3],[68,8],[2,4],[1,4],[7,3],[2,2],[7,3],[13,4],[773,10],[30,5],[63,7],[4,3],[3,3],[99,7],[376,9],[350,9],[117,9],[191,8],[11,5],[2,2],[1,1],[29,5],[3,3],[30,5],[2,2],[35,6],[71,7],[2,2],[522,10],[184,9],[703,10],[1,1],[672,10],[94,9],[38,6],[1,1],[1,1],[1,1],[3,2],[4,5],[1,2],[11,4],[1,3],[43,9],[573,10],[26,5],[20,5],[90,8],[57,7],[147,10],[6,4],[854,10],[25,5],[17,6],[250,10],[18,7],[137,8],[27,5],[71,8],[480,10],[45,7],[476,9],[4,3],[68,9],[10,4],[25,8],[1,6],[492,9],[221,9],[14,4],[2,2],[13,5],[5,3],[6,7],[15,4],[3,2],[70,10],[1,1],[18,5],[12,4],[14,4],[176,8],[203,9],[1,1],[5,5],[1,1],[9,6],[349,9],[1,1],[7,3],[5,3],[3,3],[1,1],[1,4],[1,3],[14,4],[227,8],[7,4],[3,2],[1,1],[110,7],[1,3],[291,10],[2,4],[8,4],[1,1],[2,2],[21,5],[3,2],[29,6],[8,7],[120,8],[11,4],[17,5],[120,8],[2,2],[1,1],[140,8],[1,1],[8,7],[1,1],[23,6],[80,7],[100,7],[1,1],[103,8],[1,1],[501,9],[675,10],[434,10],[60,6],[90,8],[31,8],[879,10],[223,8],[19,6],[26,6],[989,10],[10,4],[1,3],[2,4],[8,4],[1,1],[41,6],[4,3],[672,10],[58,8],[31,5],[177,8],[15,4],[424,9],[1,1],[3,2],[2,6],[17,5],[3,2],[2,3],[6,3],[320,10],[12,5],[1,1],[1017,10],[2,4],[23,8],[218,8],[72,7],[101,7],[11,4],[6,5],[1,1],[3,2],[69,7],[2,3],[1,4],[8,5],[9,4],[436,10],[1,2],[2,2],[8,4],[42,8],[5,5],[2,3],[22,6],[1,1],[213,10],[25,5],[2,2],[311,9],[1,2],[1,1],[212,8],[1,1],[1,1],[7,3],[59,7],[2,2],[638,10],[7,5],[44,6],[309,10],[10,5],[452,9],[138,9],[3,4],[417,10],[3,3],[13,4],[2,3],[104,8],[284,10],[4,5],[4,4],[1,1],[3,3],[154,8],[1,5],[203,8],[22,5],[270,10],[38,6],[3,2],[3,2],[6,3],[12,4],[146,9],[7,4],[121,7],[429,9],[72,8],[23,6],[2,2],[8,4],[1,1],[4,4],[1,1],[4,3],[412,10],[301,9],[7,3],[81,7],[4,3],[3,3],[173,8],[21,5],[1,1],[3,2],[3,2],[117,7],[1,1],[6,3],[31,5],[51,6],[2,2],[882,10],[1,3],[1,2],[378,9],[41,6],[7,3],[13,4],[86,9],[29,6],[197,10],[1,1],[1,2],[5,4],[30,5],[20,5],[213,9],[14,4],[130,8],[11,10],[14,4],[1,1],[531,10],[8,4],[1,2],[14,5],[6,5],[141,10],[5,3],[1,1],[1,1],[130,8],[15,5],[43,7],[3,3],[1,1],[56,6],[1,5],[3,5],[1,1],[7,6],[1,1],[66,8],[9,5],[5,4],[115,7],[2,2],[657,10],[20,5],[27,5],[6,3],[254,9],[31,5],[118,8],[59,7],[5,4],[1,1],[1,1],[7,4],[900,10],[1,2],[41,6],[13,5],[2,2],[5,4],[14,6],[11,4],[63,6],[1,2],[235,8],[1,3],[6,4],[209,8],[1,2],[1,1],[6,6],[189,9],[7,3],[186,9],[1,1],[80,8],[2,4],[162,8],[41,6],[2,3],[48,6],[2,2],[101,7],[390,10],[1,1],[73,7],[1,1],[1,4],[215,8],[4,4],[9,6],[737,10],[160,8],[1,1],[5,4],[14,4],[7,3],[122,7],[1,1],[85,7],[708,10],[3,3],[1,1],[2,3],[170,9],[21,5],[354,9],[3,2],[242,8],[5,5],[505,10],[2,2],[2,3],[167,9],[7,4],[294,9],[1,1],[9,4],[4,3],[62,6],[3,2],[9,4],[190,8],[1,1],[53,6],[112,7],[6,3],[846,10],[12,4],[208,8],[8,4],[185,9],[7,3],[25,5],[64,7],[402,10],[5,4],[143,8],[126,7],[5,3],[3,3],[334,9],[11,4],[15,6],[795,10],[1,1],[1,1],[1,1],[1,1],[1,2],[230,9],[2,2],[1,4],[3,3],[3,2],[109,7],[8,8],[254,9],[5,5],[605,10],[112,7],[48,7],[4,4],[1,1],[2,3],[756,10],[223,9],[187,8],[30,5],[7,4],[6,3],[37,8],[19,6],[1,1],[4,3],[250,8],[1,1],[3,4],[2,2],[1,2],[306,9],[1,2],[3,3],[81,7],[98,7],[90,9],[78,9],[14,4],[5,3],[35,6],[24,7],[3,3],[2,3],[16,6],[3,2],[30,6],[422,9],[5,3],[3,2],[26,5],[5,4],[144,10],[38,6],[6,3],[13,4],[109,9],[121,9],[235,9],[17,5],[501,9],[404,9],[405,9],[256,9],[1,3],[190,9],[29,5],[2,6],[25,5],[14,4],[1,1],[105,8],[2,2],[2,2],[215,8],[59,6],[4,4],[18,5],[5,6],[6,3],[119,7],[3,2],[2,2],[442,9],[1,1],[64,7],[75,9],[623,10],[1,1],[82,8],[3,3],[121,8],[3,3],[83,8],[18,7],[13,4],[50,9],[9,5],[1,1],[394,10],[1,2],[396,9],[146,10],[198,8],[46,8],[7,3],[1,1],[7,3],[1,7],[5,3],[1,4],[55,6],[12,4],[64,7],[569,10],[1,1],[89,7],[68,10],[26,6],[2,2],[7,3],[14,7],[42,6],[14,4],[372,10],[38,6],[386,10],[36,6],[3,2],[474,9],[3,2],[47,7],[25,5],[2,5],[16,5],[190,8],[2,4],[1,1],[27,5],[253,8],[11,4],[117,10],[251,9],[121,10],[38,6],[1,1],[15,4],[299,9],[2,2],[13,10],[34,6],[976,10],[82,10],[30,5],[8,5],[1,1],[452,9],[531,10],[383,9],[79,7],[22,8],[381,9],[14,4],[1,2],[2,3],[42,7],[262,9],[1,1],[2,2],[1,2],[4,3],[23,6],[3,2],[390,9],[32,6],[8,4],[12,6],[245,8],[739,10],[124,7],[3,3],[3,2],[461,9],[1,1],[285,10],[65,7],[46,8],[6,3],[3,2],[1,3],[102,9],[335,10],[29,8],[1,2],[11,5],[1,3],[28,5],[3,2],[9,9],[226,9],[11,5],[1,4],[590,10],[278,10],[92,10],[1,3],[490,9],[2,4],[1,1],[1,1],[1,1],[10,4],[511,9],[2,2],[18,5],[33,7],[81,7],[938,10],[307,9],[6,5],[30,6],[27,7],[74,9],[50,6],[350,9],[1,2],[5,3],[102,8],[722,10],[68,7],[120,7],[1,3],[504,10],[112,7],[399,9],[21,5],[1,1],[34,6],[61,6],[1,1],[323,9],[333,9],[1,1],[311,9],[897,10],[92,8],[24,5],[1,1],[913,10],[3,4],[840,10],[4,7],[1,1],[23,5],[6,3],[281,10],[3,4],[197,8],[1,4],[532,10],[233,8],[15,4],[206,8],[3,3],[751,10],[1,3],[1,2],[26,6],[74,7],[66,8],[103,7],[1,3],[1,2],[176,9],[53,7],[23,7],[175,8],[6,5],[23,7],[2,7],[1,2],[103,7],[63,6],[6,4],[13,4],[24,7],[16,5],[88,7],[54,6],[2,2],[3,3],[1,1],[1,2],[344,9],[17,5],[2,2],[6,3],[1,1],[39,6],[20,8],[5,3],[5,4],[14,4],[1,1],[624,10],[3,2],[11,6],[1,2],[889,10],[38,8],[271,9],[8,4],[99,8],[185,8],[1,2],[146,9],[1,2],[39,7],[13,5],[68,7],[31,5],[139,10],[29,6],[2,2],[61,6],[27,6],[1,1],[30,6],[3,4],[1,2],[15,5],[1,1],[33,9],[7,6],[931,10],[111,7],[180,8],[19,7],[324,10],[1,1],[986,10],[4,3],[3,8],[2,2],[3,6],[727,10],[7,3],[645,10],[1,1],[4,4],[7,4],[101,7],[224,8],[1,1],[51,6],[2,2],[176,9],[116,8],[335,9],[432,9],[91,7],[103,10],[8,5],[8,4],[45,8],[28,7],[7,3],[1,1],[17,5],[23,6],[86,8],[5,4],[118,7],[2,2],[5,5],[11,5],[1,2],[113,7],[228,8],[11,4],[1,3],[25,5],[14,5],[810,10],[22,5],[3,4],[1,1],[1,2],[2,3],[7,6],[170,10],[98,10],[8,6],[491,9],[4,7],[55,6],[1,1],[11,4],[1,1],[35,9],[1,1],[1,1],[92,7],[6,3],[2,4],[1,1],[132,9],[2,2],[1,3],[26,6],[6,6],[1,1],[22,5],[113,8],[37,7],[5,7],[2,4],[4,3],[165,8],[1,2],[11,4],[288,10],[23,8],[2,2],[1,1],[9,4],[2,2],[29,5],[44,6],[1,1],[5,5],[124,7],[4,3],[99,7],[12,4],[1,1],[28,5],[1,2],[50,6],[18,5],[716,10],[1,1],[11,4],[485,10],[51,7],[581,10],[2,3],[331,10],[8,4],[1,1],[1,1],[422,10],[36,8],[28,10],[32,6],[3,2],[6,6],[59,6],[488,9],[3,3],[15,4],[1,2],[5,3],[5,3],[3,3],[31,5],[50,7],[5,3],[22,7],[5,3],[55,6],[253,8],[1,2],[30,7],[117,9],[218,8],[30,5],[4,3],[14,4],[16,7],[1,1],[2,2],[103,10],[1,2],[2,3],[1,1],[42,6],[834,10],[125,9],[4,3],[5,3],[14,5],[357,10],[196,9],[852,10],[2,2],[1020,10],[4,8],[86,7],[12,4],[9,5],[1,1],[26,5],[2,5],[499,9],[342,9],[5,4],[5,3],[1,1],[1,1],[32,8],[2,2],[3,2],[6,3],[349,9],[29,5],[16,6],[6,7],[15,4],[16,5],[1,1],[86,9],[2,2],[987,10],[7,3],[184,10],[14,4],[1,1],[3,3],[3,2],[25,6],[2,2],[1,1],[5,3],[7,4],[1,1],[3,2],[55,6],[3,2],[994,10],[107,7],[25,5],[472,9],[4,3],[858,10],[82,7],[948,10],[15,5],[1,1],[13,4],[429,9],[118,9],[57,6],[222,8],[6,4],[1,1],[6,3],[5,4],[5,5],[285,9],[2,2],[19,5],[1,1],[1,1],[1,1],[3,2],[51,8],[31,5],[22,5],[53,10],[884,10],[427,9],[13,4],[1,2],[5,4],[10,4],[167,9],[3,2],[1,1],[87,8],[10,4],[1,1],[1,1],[4,7],[338,9],[129,9],[7,3],[44,9],[700,10],[42,8],[1,4],[20,7],[768,10],[151,9],[96,8],[71,8],[1,1],[31,5],[48,6],[4,6],[98,7],[506,10],[622,10],[322,9],[54,7],[5,3],[2,2],[1,8],[63,6],[1,1],[19,5],[12,5],[3,3],[4,3],[4,3],[3,2],[3,2],[1,3],[254,9],[10,6],[544,10],[14,4],[49,6],[161,8],[44,6],[760,10],[822,10],[88,8],[2,3],[47,8],[1,1],[638,10],[37,6],[107,7],[84,7],[111,8],[239,8],[1,1],[40,7],[1,1],[918,10],[266,9],[75,8],[6,3],[885,10],[12,6],[556,10],[86,7],[3,2],[12,4],[53,10],[44,8],[2,7],[12,4],[7,7],[1,1],[96,7],[1,1],[112,7],[20,9],[27,5],[15,5],[21,7],[166,8],[1,1],[305,9],[1,2],[32,7],[1,1],[39,6],[1,1],[20,6],[111,8],[1,5],[1,2],[3,2],[20,5],[189,8],[3,2],[1,2],[911,10],[1,1],[131,8],[3,4],[15,4],[9,4],[1,4],[22,5],[232,8],[14,5],[3,2],[8,8],[295,10],[1,4],[995,10],[2,5],[1,1],[16,8],[1,2],[39,7],[56,6],[50,6],[63,9],[6,4],[65,7],[2,2],[1,2],[2,3],[232,9],[1,3],[10,6],[134,8],[3,2],[192,9],[57,7],[3,2],[3,2],[21,5],[71,10],[661,10],[12,5],[1,1],[251,9],[14,7],[3,3],[4,3],[8,5],[948,10],[3,3],[26,5],[539,10],[19,8],[10,4],[108,7],[1,1],[248,8],[266,9],[13,4],[3,3],[1,3],[1,8],[11,4],[3,5],[254,10],[2,4],[47,7],[122,7],[3,3],[35,7],[1,2],[14,4],[11,4],[5,3],[3,2],[15,4],[11,5],[16,5],[50,7],[13,5],[79,7],[46,9],[98,9],[614,10],[19,6],[406,10],[5,3],[5,3],[2,2],[166,9],[395,10],[194,8],[700,10],[31,7],[53,6],[8,5],[317,9],[107,8],[883,10],[6,4],[1,2],[306,9],[3,2],[49,6],[2,2],[353,9],[1,1],[125,10],[81,7],[27,5],[51,7],[31,8],[1,1],[1,2],[4,4],[4,4],[3,2],[79,9],[514,10],[2,2],[1,1],[41,6],[1,3],[3,2],[13,6],[142,8],[3,2],[5,3],[1,2],[52,6],[387,9],[5,3],[61,9],[24,5],[7,3],[3,5],[1,1],[43,7],[14,5],[1,1],[2,2],[5,7],[29,9],[1,2],[11,4],[1,1],[770,10],[14,5],[430,9],[24,5],[28,7],[5,4],[910,10],[9,4],[2,3],[3,2],[1,2],[30,5],[4,3],[12,4],[1,2],[28,5],[103,8],[1,1],[74,7],[463,9],[167,9],[195,9],[2,4],[21,5],[36,7],[16,8],[6,3],[4,4],[50,10],[27,5],[28,8],[3,6],[730,10],[1,1],[245,9],[17,5],[1,1],[1,3],[13,4],[4,3],[121,9],[4,4],[8,6],[3,4],[5,3],[1,1],[110,7],[4,3],[19,6],[198,9],[365,10],[197,8],[194,9],[10,5],[24,8],[1,2],[4,7],[63,7],[61,8],[4,4],[24,6],[13,6],[3,2],[116,7],[30,5],[824,10],[6,5],[580,10],[8,5],[175,8],[2,2],[7,3],[1,1],[50,6],[3,2],[1,1],[1,1],[1,3],[6,4],[20,5],[230,9],[53,8],[2,2],[3,3],[1,3],[12,4],[9,5],[2,4],[19,5],[476,10],[4,3],[96,7],[4,3],[8,6],[793,10],[423,9],[1,1],[17,6],[1,3],[1,3],[1,2],[8,6],[116,7],[3,2],[11,4],[5,3],[2,4],[59,6],[446,9],[409,9],[57,6],[2,2],[816,10],[5,3],[134,9],[188,8],[332,9],[117,7],[63,7],[7,4],[1,4],[1,1],[180,8],[59,7],[4,3],[288,10],[365,9],[3,3],[3,2],[2,2],[8,4],[3,3],[42,8],[70,9],[49,8],[143,8],[6,4],[1,1],[1,2],[5,8],[276,9],[4,3],[345,9],[4,5],[1,1],[5,3],[96,9],[6,3],[27,5],[21,6],[4,3],[1,1],[33,6],[709,10],[2,7],[6,3],[1,1],[539,10],[13,8],[3,3],[1,1],[1,1],[1003,10],[1,2],[1,1],[27,5],[55,9],[61,8],[31,5],[4,4],[3,3],[56,6],[4,6],[1,1],[81,7],[495,10],[8,5],[35,8],[55,7],[337,9],[2,3],[55,7],[101,7],[208,8],[506,9],[9,8],[116,7],[32,6],[10,6],[1,1],[1,1],[14,5],[347,9],[7,3],[27,5],[7,5],[13,5],[24,5],[197,10],[102,7],[444,9],[1,1],[5,3],[1,2],[7,3],[835,10],[36,10],[1,1],[31,6],[14,4],[2,3],[235,8],[4,3],[6,3],[1,1],[2,7],[8,4],[73,9],[1,3],[27,7],[1,1],[87,7],[6,4],[26,5],[2,2],[1,4],[19,6],[2,4],[14,4],[111,8],[1,1],[2,3],[39,6],[27,5],[28,7],[14,4],[1,4],[1,1],[13,5],[337,9],[8,6],[2,3],[59,9],[30,5],[26,5],[1,1],[63,6],[7,3],[1,2],[23,6],[3,5],[3,2],[1,1],[28,9],[11,5],[43,7],[433,9],[667,10],[706,10],[6,3],[645,10],[34,6],[9,6],[101,8],[135,9],[79,7],[162,10],[87,8],[27,5],[6,4],[26,5],[1,2],[5,3],[2,2],[121,7],[1,1],[2,2],[22,5],[1,3],[57,7],[3,2],[13,4],[322,10],[49,8],[47,6],[3,2],[1,1],[52,7],[7,4],[8,4],[1,1],[1,1],[1,2],[130,10],[3,3],[2,2],[97,7],[1,2],[5,3],[61,8],[2,2],[5,4],[7,3],[13,5],[15,6],[204,8],[12,4],[6,3],[1,1],[29,5],[576,10],[253,8],[3,2],[10,8],[211,8],[81,7],[7,3],[9,4],[2,2],[11,6],[13,4],[1,1],[4,3],[152,8],[11,4],[17,5],[120,8],[1,4],[55,6],[741,10],[7,3],[1,2],[2,5],[3,2],[3,2],[79,7],[31,5],[43,6],[6,3],[7,7],[1,1],[16,5],[84,7],[929,10],[13,4],[7,3],[122,7],[33,6],[500,9],[283,9],[1,7],[29,5],[313,9],[1,1],[62,7],[68,8],[7,5],[3,2],[1,3],[100,7],[11,4],[283,9],[2,3],[2,2],[4,5],[1,2],[1,4],[19,5],[26,6],[2,4],[23,6],[6,4],[20,5],[15,4],[504,9],[2,2],[3,2],[15,4],[1,3],[162,10],[914,10],[35,6],[147,8],[441,9],[405,10],[902,10],[7,3],[19,10],[362,10],[1,1],[883,10],[499,9],[93,8],[3,2],[1,1],[6,4],[116,7],[5,4],[3,3],[2,2],[26,5],[577,10],[2,5],[67,7],[239,9],[1019,10],[229,8],[1,3],[1,3],[72,7],[3,3],[423,9],[3,3],[62,6],[20,5],[967,10],[11,4],[1,1],[114,8],[10,4],[2,4],[4,3],[371,9],[109,8],[7,5],[189,8],[75,7],[2,2],[5,4],[31,5],[1,1],[2,2],[12,8],[59,6],[414,9],[65,7],[1,1],[86,8],[55,7],[8,10],[1,2],[97,7],[3,2],[23,6],[6,3],[14,4],[1,1],[4,3],[15,10],[1,1],[289,10],[3,7],[14,6],[1,4],[1,2],[3,2],[31,5],[1,1],[48,7],[846,10],[940,10],[6,3],[1,2],[22,5],[15,4],[236,8],[239,9],[1,4],[156,8],[1,2],[52,6],[15,4],[9,4],[29,9],[673,10],[1,3],[19,7],[1,1],[20,5],[5,3],[19,5],[42,6],[1,1],[226,10],[70,10],[294,10],[179,8],[1,5],[181,8],[515,10],[413,10],[2,2],[3,2],[61,6],[661,10],[36,6],[17,7],[3,2],[17,5],[10,5],[88,8],[52,8],[6,5],[135,8],[1,1],[7,4],[37,8],[275,9],[133,9],[465,9],[299,9],[63,6],[233,8],[100,7],[427,9],[5,4],[3,5],[8,4],[3,6],[52,9],[66,7],[3,3],[274,10],[14,4],[243,10],[35,7],[42,7],[99,7],[400,9],[5,3],[46,6],[128,8],[5,4],[191,8],[19,7],[1,1],[23,5],[14,4],[27,6],[6,3],[519,10],[1,1],[1,4],[43,7],[24,5],[54,6],[1,1],[3,3],[2,2],[38,8],[9,8],[339,9],[27,7],[25,5],[1,2],[2,3],[3,3],[1,1],[591,10],[230,8],[157,9],[1,4],[1,2],[24,5],[7,5],[24,7],[6,5],[6,3],[461,9],[198,10],[7,3],[125,9],[4,3],[707,10],[4,3],[33,7],[1,2],[26,9],[3,2],[7,4],[111,8],[1,2],[15,6],[3,2],[4,4],[14,6],[55,7],[86,8],[1,2],[4,3],[29,5],[194,9],[388,9],[30,5],[114,7],[502,9],[260,9],[5,5],[77,8],[109,7],[27,5],[271,9],[3,2],[20,6],[91,7],[975,10],[12,5],[2,2],[1,1],[12,6],[12,6],[450,9],[2,8],[1,1],[1,1],[7,6],[114,7],[2,6],[1,1],[3,5],[4,3],[346,10],[193,10],[63,6],[28,6],[2,5],[221,9],[576,10],[30,6],[126,9],[357,10],[1,1],[7,3],[5,3],[1,1],[4,3],[12,4],[269,9],[1,1],[1,2],[2,3],[1,4],[408,10],[28,7],[214,8],[2,4],[11,5],[979,10],[1,1],[18,10],[81,7],[14,4],[11,4],[1,1],[13,4],[2,2],[5,9],[210,10],[6,5],[17,5],[1,1],[49,7],[1002,10],[36,8],[1,1],[354,9],[645,10],[1,1],[14,4],[1,1],[5,3],[2,2],[202,10],[5,4],[458,9],[24,6],[37,7],[59,6],[4,3],[630,10],[3,2],[49,10],[325,9],[32,6],[1,2],[53,10],[3,2],[3,3],[236,10],[64,8],[264,9],[1,1],[457,9],[3,3],[1014,10],[1,1],[1,3],[57,6],[1,1],[3,2],[297,9],[12,4],[186,9],[2,3],[24,6],[1,1],[2,4],[38,8],[524,10],[1,1],[5,4],[169,9],[4,5],[140,8],[25,7],[474,9],[1,1],[41,6],[34,8],[1,1],[72,7],[25,5],[509,10],[18,6],[3,4],[12,4],[4,3],[2,2],[1,3],[29,5],[222,9],[615,10],[3,2],[14,4],[58,6],[2,2],[19,5],[72,7],[215,9],[2,2],[242,10],[132,8],[8,5],[17,5],[9,7],[7,3],[31,5],[47,6],[308,9],[3,2],[13,4],[46,7],[1,1],[1,1],[1,2],[27,5],[3,2],[6,4],[1,1],[689,10],[12,5],[1,1],[40,7],[12,7],[50,7],[5,4],[40,6],[1,1],[153,8],[313,9],[441,9],[2,2],[1,3],[3,5],[163,8],[105,8],[12,4],[91,7],[3,3],[24,8],[6,3],[398,9],[56,6],[3,7],[3,3],[315,9],[116,8],[8,6],[1,1],[6,4],[2,4],[380,9],[7,3],[225,8],[6,3],[345,9],[47,7],[1,1],[1,1],[7,4],[1,4],[964,10],[6,3],[506,9],[1,1],[39,7],[7,5],[9,6],[1,1],[1,1],[207,9],[2,5],[2,2],[28,6],[110,7],[1,1],[2,4],[71,7],[219,8],[5,7],[3,2],[1,2],[7,6],[5,4],[1,7],[134,8],[41,6],[13,5],[1,1],[49,7],[209,9],[5,4],[332,9],[136,9],[302,10],[390,9],[183,8],[812,10],[2,2],[4,4],[3,2],[9,6],[959,10],[52,6],[119,7],[36,9],[16,6],[18,6],[206,8],[3,3],[3,2],[541,10],[3,2],[1,1],[13,5],[958,10],[25,9],[268,9],[1,3],[18,5],[239,8],[7,5],[375,10],[3,2],[953,10],[3,2],[1,2],[3,4],[4,3],[7,7],[23,5],[35,7],[221,8],[146,10],[3,2],[168,8],[9,4],[1,1],[2,5],[1,1],[101,7],[177,8],[46,6],[219,9],[123,7],[46,6],[13,4],[5,3],[5,3],[71,8],[11,4],[7,3],[346,9],[26,5],[1,3],[11,4],[7,6],[2,2],[16,6],[465,10],[757,10],[298,9],[1,5],[2,3],[27,7],[4,5],[1,1],[209,9],[23,8],[15,5],[8,4],[2,2],[1,1],[932,10],[20,7],[56,8],[4,4],[4,3],[1,2],[217,8],[4,3],[3,2],[1,1],[3,2],[30,9],[11,4],[1,2],[1,1],[42,9],[8,4],[25,5],[347,9],[23,5],[2,2],[160,8],[412,9],[6,3],[11,9],[98,8],[112,7],[29,6],[48,7],[862,10],[56,6],[79,7],[1,1],[42,6],[699,10],[2,2],[7,3],[1,2],[178,10],[13,4],[352,10],[17,10],[29,5],[3,3],[13,4],[6,3],[19,6],[226,8],[33,8],[1,1],[215,9],[7,3],[3,3],[9,5],[2,3],[299,10],[42,7],[5,8],[340,9],[1,1],[18,8],[8,7],[3,2],[138,10],[1,1],[146,8],[4,3],[83,10],[469,9],[972,10],[243,8],[2,2],[6,3],[1,1],[1,2],[2,5],[21,5],[3,2],[111,7],[11,4],[14,4],[7,3],[5,3],[1,2],[39,7],[22,5],[4,5],[91,7],[88,10],[1,3],[1,2],[7,5],[401,10],[10,6],[1,1],[1,3],[702,10],[865,10],[107,8],[15,4],[31,6],[767,10],[18,6],[1,8],[3,2],[204,8],[10,5],[406,9],[34,6],[1,1],[1,7],[202,8],[2,4],[3,5],[2,2],[4,4],[31,5],[57,6],[125,7],[19,5],[250,9],[18,5],[458,10],[2,2],[8,4],[74,7],[500,10],[1,1],[522,10],[50,7],[2,4],[20,5],[1,1],[4,3],[6,4],[802,10],[63,6],[454,9],[517,10],[15,5],[1,1],[4,4],[2,4],[2,2],[32,7],[5,4],[219,10],[6,4],[361,9],[12,4],[2,2],[2,2],[1,1],[110,9],[148,8],[10,5],[30,8],[633,10],[6,3],[5,4],[188,9],[60,6],[13,5],[325,9],[1,1],[210,8],[206,9],[1,1],[24,5],[49,6],[2,4],[66,7],[118,8],[9,4],[5,4],[1,1],[1,1],[800,10],[236,9],[504,9],[5,4],[3,3],[84,7],[4,4],[435,9],[13,5],[216,8],[2,2],[2,4],[66,9],[121,7],[1,2],[55,9],[1,1],[4,3],[5,4],[24,6],[12,4],[1,1],[1,2],[175,8],[95,9],[3,2],[826,10],[5,3],[4,3],[4,3],[4,3],[1,1],[350,9],[1,1],[251,8],[6,3],[3,4],[1,4],[336,10],[422,9],[5,3],[10,4],[191,8],[276,9],[813,10],[988,10],[4,3],[190,10],[10,4],[1,1],[1,1],[186,8],[209,8],[38,10],[107,9],[1,2],[1,1],[14,4],[1,3],[77,10],[43,7],[373,9],[254,10],[2,5],[3,2],[442,10],[28,8],[17,6],[1,1],[42,7],[9,5],[128,10],[5,3],[1,6],[97,8],[11,4],[1,4],[221,10],[1,4],[120,8],[381,10],[1,1],[1,1],[11,5],[35,6],[65,7],[40,7],[1,1],[79,9],[5,3],[7,3],[115,10],[1,4],[20,7],[1,2],[106,7],[274,10],[15,4],[13,5],[2,2],[6,3],[9,4],[81,7],[123,10],[5,3],[473,9],[20,9],[209,8],[3,3],[3,3],[2,2],[14,4],[19,6],[1,1],[28,6],[5,3],[44,6],[25,6],[22,5],[53,6],[15,4],[5,5],[1,2],[9,5],[7,4],[1,1],[5,5],[1,1],[229,9],[674,10],[1,4],[6,5],[187,8],[107,7],[1,1],[1,2],[13,7],[123,10],[47,7],[2,2],[1,4],[6,3],[1,2],[1,2],[3,2],[2,2],[1,1],[1,1],[9,7],[584,10],[34,7],[43,8],[16,5],[183,8],[9,4],[1012,10],[4,3],[5,4],[324,9],[33,6],[198,9],[18,6],[4,3],[2,3],[2,2],[3,2],[10,5],[2,4],[1,1],[62,7],[3,2],[27,5],[1,1],[12,5],[64,7],[4,5],[15,4],[11,4],[966,10],[9,5],[3,2],[1,1],[496,9],[1,2],[6,3],[25,5],[489,9],[4,4],[1,1],[1,1],[16,5],[1,1],[1,1],[699,10],[379,10],[73,7],[1,1],[5,3],[611,10],[1,1],[85,8],[12,4],[82,9],[23,6],[123,8],[159,8],[30,8],[4,3],[195,10],[3,2],[41,7],[111,8],[9,5],[68,8],[14,4],[245,8],[60,6],[127,9],[62,7],[3,2],[165,9],[785,10],[17,6],[6,3],[1,1],[26,7],[1,1],[231,8],[7,3],[750,10],[2,2],[20,6],[61,6],[24,6],[7,4],[90,7],[33,6],[14,5],[255,8],[62,7],[1,2],[3,2],[8,4],[353,9],[587,10],[1,2],[52,8],[3,4],[396,9],[45,7],[953,10],[12,6],[7,4],[355,9],[92,10],[1,2],[1,1],[431,9],[219,8],[51,7],[3,2],[154,8],[6,4],[21,6],[30,6],[6,4],[12,5],[37,6],[218,8],[5,4],[851,10],[358,9],[7,3],[225,9],[52,7],[11,8],[28,5],[6,3],[65,8],[163,9],[1,1],[1,1],[19,5],[598,10],[3,3],[1,2],[16,6],[105,9],[994,10],[1,1],[1,4],[123,7],[1,1],[2,2],[7,4],[2,2],[3,2],[275,9],[2,2],[740,10],[54,7],[3,2],[203,8],[20,6],[9,4],[17,5],[17,5],[735,10],[338,10],[254,8],[464,10],[50,7],[3,2],[1,1],[1,1],[1,1],[100,7],[334,10],[13,4],[93,7],[49,7],[2,2],[57,6],[158,10],[14,6],[91,7],[14,4],[7,3],[1,1],[84,9],[171,8],[312,9],[21,5],[513,10],[7,4],[81,7],[241,9],[6,8],[59,10],[281,10],[296,9],[13,4],[2,4],[1,2],[443,9],[14,4],[9,7],[7,5],[1,4],[1,1],[3,2],[83,8],[10,5],[288,9],[170,8],[207,10],[2,2],[27,6],[7,3],[1,2],[3,2],[4,4],[353,9],[103,8],[33,9],[4,4],[102,7],[102,7],[297,9],[1,1],[1,1],[518,10],[278,9],[28,5],[22,7],[581,10],[45,6],[126,8],[435,9],[12,4],[60,7],[69,8],[26,7],[2,2],[1,6],[21,6],[1,1],[5,3],[1,2],[3,2],[395,9],[2,3],[88,10],[28,5],[399,9],[140,9],[5,3],[1,1],[106,7],[1,1],[1,1],[53,6],[4,4],[51,8],[13,4],[97,8],[475,9],[188,8],[20,5],[96,7],[29,5],[41,6],[7,4],[20,8],[3,2],[1,3],[13,4],[9,4],[2,2],[212,8],[7,3],[292,9],[404,9],[1,1],[25,5],[2,4],[3,2],[1,4],[3,2],[1,1],[6,3],[10,5],[257,9],[8,5],[9,4],[2,3],[6,5],[10,4],[25,5],[6,5],[385,10],[1,3],[55,6],[494,9],[894,10],[2,3],[5,3],[421,9],[22,7],[7,5],[1,3],[107,7],[15,4],[1,1],[7,3],[90,8],[41,6],[1,2],[10,5],[124,8],[2,2],[32,6],[22,5],[5,3],[3,2],[1,2],[21,5],[1,1],[1,1],[1,1],[821,10],[73,7],[615,10],[343,9],[3,2],[108,7],[430,9],[18,5],[445,10],[4,4],[75,8],[464,10],[1,1],[32,7],[31,5],[3,2],[7,5],[179,8],[3,2],[1,1],[92,7],[333,9],[75,7],[45,8],[280,9],[4,5],[685,10],[10,4],[1,1],[175,10],[248,10],[182,9],[13,4],[3,2],[391,9],[250,8],[161,8],[6,3],[5,6],[2,3],[3,3],[105,9],[1,8],[601,10],[53,7],[202,8],[24,5],[14,4],[1,1],[16,6],[46,6],[6,4],[32,9],[2,2],[1,1],[128,10],[11,4],[119,8],[56,6],[155,8],[340,9],[65,9],[527,10],[1,1],[1,1],[78,7],[17,6],[3,5],[1,1],[138,8],[620,10],[1,1],[31,6],[61,8],[6,3],[1,1],[1,1],[779,10],[68,9],[97,7],[6,3],[45,9],[7,3],[5,6],[52,10],[4,3],[23,7],[1,2],[242,8],[395,9],[302,9],[172,8],[125,7],[48,6],[211,9],[12,4],[115,7],[47,6],[503,9],[116,8],[3,5],[16,5],[25,6],[45,7],[2,4],[6,3],[48,6],[27,5],[1,7],[18,5],[1,5],[15,4],[4,3],[121,7],[92,9],[2,2],[3,2],[2,4],[12,5],[1,1],[1,1],[1,3],[30,8],[10,5],[57,6],[7,6],[208,8],[3,2],[2,2],[88,7],[503,9],[14,5],[95,7],[2,2],[53,6],[94,7],[121,7],[1,1],[250,8],[30,5],[2,2],[60,7],[2,2],[7,3],[62,6],[1,1],[366,9],[78,7],[4,3],[1,2],[1,5],[13,5],[3,3],[2,2],[3,5],[41,7],[107,7],[47,9],[768,10],[64,8],[4,4],[5,3],[117,7],[24,5],[11,8],[45,6],[14,4],[1,1],[5,3],[238,9],[10,4],[316,9],[20,6],[3,2],[4,3],[1,1],[1,3],[210,10],[72,8],[1,1],[28,7],[219,8],[1,3],[73,7],[3,3],[63,6],[103,7],[436,9],[7,4],[69,8],[4,4],[8,4],[127,7],[4,5],[3,2],[2,2],[3,3],[1,1],[5,3],[3,2],[6,3],[1,1],[8,7],[252,9],[1,1],[100,7],[1,1],[1,2],[1,1],[254,9],[10,4],[63,9],[2,3],[88,9],[122,10],[14,5],[30,5],[81,8],[1,4],[17,6],[166,8],[63,6],[1,2],[29,6],[1,1],[114,9],[44,8],[3,2],[30,7],[3,2],[50,6],[1,1],[71,7],[7,4],[3,4],[7,3],[46,10],[64,7],[1,1],[31,8],[34,6],[2,3],[14,6],[289,9],[62,6],[6,3],[3,6],[1,1],[1,1],[4,3],[26,5],[2,2],[12,4],[31,6],[4,4],[54,6],[15,6],[51,6],[25,5],[1,1],[98,7],[43,8],[2,3],[13,6],[245,8],[13,5],[12,5],[523,10],[220,8],[84,10],[399,9],[5,5],[1,1],[3,2],[1,1],[3,3],[171,8],[93,7],[36,7],[6,3],[33,7],[796,10],[151,8],[3,4],[1,1],[2,3],[17,5],[256,9],[38,7],[6,3],[143,8],[1,1],[14,4],[1,1],[8,9],[1,2],[95,7],[260,10],[1,1],[5,4],[1,1],[4,3],[1,1],[6,3],[7,3],[1,1],[15,4],[46,7],[560,10],[114,10],[1,1],[109,7],[350,9],[39,6],[7,3],[6,9],[102,7],[147,8],[684,10],[5,6],[78,8],[7,5],[1,1],[7,3],[1,1],[27,5],[117,8],[18,5],[2,2],[6,5],[35,8],[77,8],[497,9],[150,8],[2,3],[148,8],[36,9],[469,10],[7,3],[29,5],[55,6],[1,1],[1,1],[1,1],[124,7],[37,7],[5,7],[2,2],[4,6],[1,4],[5,4],[1,1],[2,2],[22,6],[233,9],[52,7],[2,6],[1,2],[27,5],[1,2],[9,4],[6,3],[480,10],[5,3],[1,1],[7,3],[9,4],[1,2],[16,5],[595,10],[1,1],[116,9],[3,3],[6,5],[4,3],[35,7],[15,4],[1,3],[3,3],[24,9],[8,5],[30,10],[2,2],[716,10],[1,1],[2,2],[2,2],[11,4],[11,4],[7,4],[1,1],[1,2],[19,6],[14,7],[108,8],[1,2],[1,1],[35,8],[1,1],[2,2],[7,8],[900,10],[7,3],[1,1],[27,5],[103,8],[214,10],[31,6],[18,8],[3,2],[44,6],[71,10],[7,5],[2,4],[1,1],[96,7],[24,5],[1,2],[75,7],[24,7],[7,4],[1,7],[2,2],[3,2],[73,7],[8,4],[2,2],[8,4],[13,4],[21,5],[84,7],[616,10],[563,10],[41,6],[1,1],[224,8],[48,8],[110,7],[7,3],[22,5],[735,10],[63,6],[9,4],[201,9],[61,8],[475,10],[14,9],[8,4],[4,4],[14,4],[56,7],[47,6],[64,7],[1,1],[970,10],[21,5],[45,10],[9,5],[41,9],[1,1],[25,5],[9,5],[607,10],[3,2],[7,3],[643,10],[3,3],[217,10],[2,2],[96,7],[242,9],[3,3],[1,1],[474,9],[3,2],[1,1],[29,8],[119,7],[13,5],[1,3],[15,4],[1,1],[37,6],[4,3],[6,5],[2,2],[210,8],[401,10],[15,6],[14,4],[4,5],[1,2],[22,5],[40,7],[1,2],[499,10],[18,5],[1,1],[432,9],[813,10],[195,9],[1,1],[799,10],[1,2],[4,6],[12,7],[704,10],[102,7],[23,5],[67,7],[7,3],[84,10],[15,8],[433,9],[3,2],[7,4],[19,6],[115,8],[1,1],[12,5],[13,4],[7,5],[5,3],[8,4],[201,9],[4,3],[62,7],[7,5],[72,7],[1,1],[5,3],[305,10],[16,8],[3,2],[212,8],[38,8],[89,10],[1,2],[5,4],[99,7],[3,3],[14,4],[1,1],[29,5],[2,2],[5,3],[1,2],[3,3],[467,10],[2,2],[3,2],[3,5],[31,5],[10,6],[1,2],[98,7],[303,9],[31,5],[79,8],[14,8],[196,8],[10,4],[96,7],[294,9],[243,8],[44,7],[7,3],[23,5],[450,9],[189,9],[60,6],[2,2],[39,7],[208,8],[29,5],[3,2],[124,7],[96,7],[69,7],[2,2],[983,10],[6,8],[18,5],[11,4],[94,7],[10,4],[58,7],[93,8],[184,9],[9,4],[34,6],[237,8],[466,9],[1,1],[1,5],[40,7],[7,8],[11,5],[1,1],[11,6],[1,1],[1,1],[1,2],[275,10],[945,10],[42,6],[20,5],[10,5],[111,7],[371,9],[8,4],[41,6],[1,2],[785,10],[1,2],[63,6],[9,5],[6,4],[1,2],[291,9],[498,9],[610,10],[30,6],[13,6],[18,5],[1,1],[3,2],[19,5],[256,9],[1,1],[1,1],[9,7],[4,3],[109,8],[953,10],[3,3],[39,6],[4,3],[1,1],[933,10],[91,9],[75,8],[21,6],[625,10],[403,9],[5,6],[1,3],[3,3],[819,10],[1,1],[369,9],[1,1],[148,8],[30,7],[190,8],[3,2],[133,8],[7,6],[27,5],[14,4],[16,5],[5,3],[240,10],[19,7],[3,2],[118,8],[2,5],[28,6],[91,7],[2,2],[1,1],[2,7],[27,8],[12,4],[4,4],[35,6],[90,8],[2,2],[61,6],[9,8],[3,4],[1,3],[109,9],[1,2],[8,4],[53,6],[280,10],[240,9],[8,4],[2,3],[5,3],[1,2],[167,9],[28,5],[86,7],[3,3],[14,4],[77,8],[2,2],[1,1],[18,6],[7,3],[29,5],[25,6],[1,1],[81,7],[20,5],[1,1],[5,3],[224,8],[108,8],[25,5],[3,4],[239,8],[346,10],[88,7],[211,8],[11,4],[25,6],[3,3],[499,9],[21,5],[481,10],[2,5],[6,3],[1,1],[983,10],[3,2],[1,1],[8,4],[1,1],[1,1],[526,10],[157,9],[2,5],[136,9],[3,3],[10,4],[1,4],[52,6],[19,9],[3,3],[67,9],[204,8],[2,2],[17,5],[4,3],[14,4],[73,7],[293,9],[428,10],[245,8],[3,2],[28,5],[231,8],[1,1],[12,5],[32,10],[110,7],[123,8],[32,8],[1,3],[39,6],[1,2],[276,9],[12,6],[11,4],[20,6],[1,2],[1,4],[4,3],[3,3],[278,10],[3,3],[15,5],[17,5],[55,6],[304,9],[101,7],[1,1],[1,1],[4,6],[160,8],[189,8],[4,3],[20,5],[393,10],[273,9],[18,6],[220,8],[61,8],[1,1],[61,6],[63,6],[8,8],[3,2],[1,2],[1,4],[1,1],[13,4],[1,1],[25,8],[1,1],[17,8],[6,3],[79,7],[452,10],[23,5],[146,8],[2,2],[14,5],[20,5],[19,5],[1,1],[20,5],[1,1],[8,4],[864,10],[43,6],[59,7],[110,7],[11,6],[1,8],[1,1],[23,7],[63,8],[124,7],[11,6],[282,9],[6,4],[1,1],[3,5],[2,2],[7,3],[201,8],[39,10],[1,2],[3,10],[1,3],[5,6],[1,1],[1,1],[22,5],[78,9],[162,8],[60,6],[1,4],[43,6],[117,7],[6,4],[21,6],[123,8],[1,1],[42,6],[4,3],[45,6],[15,6],[79,9],[2,4],[66,7],[3,3],[3,2],[180,9],[1,2],[2,2],[21,7],[22,7],[4,3],[841,10],[970,10],[1,1],[390,9],[5,3],[338,9],[1,4],[2,4],[5,8],[9,5],[1,2],[2,2],[7,4],[1,4],[941,10],[1,2],[447,9],[6,5],[789,10],[1,1],[242,8],[3,7],[44,9],[51,6],[21,7],[3,2],[1,1],[3,5],[7,3],[3,2],[7,3],[1,2],[12,4],[756,10],[224,10],[3,4],[6,3],[13,10],[1,2],[2,3],[110,7],[85,8],[2,2],[18,5],[8,4],[57,6],[72,8],[2,5],[4,3],[3,2],[2,3],[1,1],[184,8],[126,7],[8,8],[551,10],[5,7],[394,9],[1,1],[10,4],[46,7],[112,7],[3,2],[2,2],[2,2],[1,3],[3,3],[7,4],[4,5],[197,8],[7,3],[649,10],[15,7],[1,1],[1,1],[1,2],[190,10],[70,8],[36,7],[2,4],[1,1],[101,7],[3,5],[8,4],[1,3],[11,4],[28,8],[3,3],[35,7],[9,7],[89,7],[410,9],[3,5],[1,1],[29,6],[19,6],[1,3],[177,8],[32,6],[3,3],[4,8],[206,8],[2,2],[106,7],[3,2],[25,5],[1,1],[1014,10],[439,10],[216,8],[90,7],[1,2],[1,1],[43,6],[1,1],[141,9],[7,6],[39,6],[1,3],[51,7],[2,3],[629,10],[451,9],[1,2],[2,2],[3,3],[3,2],[54,7],[194,9],[287,10],[1,1],[1,2],[3,6],[6,4],[907,10],[235,9],[9,4],[72,8],[1,3],[92,9],[53,6],[216,10],[15,4],[135,8],[484,9],[28,6],[62,6],[122,8],[215,8],[24,6],[1,1],[86,10],[77,7],[452,9],[496,9],[3,2],[46,7],[99,10],[1,1],[6,4],[176,10],[16,7],[1,1],[626,10],[63,6],[12,4],[131,8],[63,7],[6,3],[70,7],[49,9],[16,5],[850,10],[5,3],[471,10],[108,7],[6,3],[5,4],[1,1],[3,2],[16,5],[500,9],[89,9],[3,2],[36,6],[14,7],[1,2],[68,10],[918,10],[487,10],[217,9],[225,8],[3,2],[12,5],[1,1],[131,10],[430,10],[17,6],[1,1],[82,8],[161,8],[1,1],[63,8],[184,8],[1,1],[25,5],[573,10],[19,5],[1,1],[102,8],[15,5],[436,9],[410,9],[7,3],[242,9],[66,10],[18,6],[6,3],[15,8],[218,9],[2,7],[32,6],[1,6],[1,1],[1,5],[6,3],[31,5],[31,5],[16,6],[2,3],[25,5],[17,5],[77,8],[102,8],[12,4],[8,5],[4,3],[28,6],[413,10],[23,7],[87,7],[3,3],[22,6],[6,6],[26,9],[9,4],[944,10],[270,9],[22,5],[4,3],[1,5],[418,9],[6,3],[2,3],[220,9],[225,8],[1,1],[270,9],[147,9],[11,4],[1,1],[899,10],[56,7],[4,5],[15,6],[8,4],[3,2],[1,2],[4,8],[81,8],[5,3],[4,5],[1,2],[4,3],[446,9],[472,9],[34,6],[1,2],[17,5],[36,6],[83,7],[11,6],[1,1],[3,2],[1,1],[6,4],[3,2],[1,1],[5,3],[728,10],[41,7],[3,2],[1,1],[228,10],[2,2],[381,9],[31,5],[4,3],[12,6],[3,2],[3,2],[10,4],[200,8],[32,7],[5,7],[14,4],[277,10],[8,6],[15,4],[1,4],[7,3],[3,2],[122,9],[1,1],[5,3],[230,8],[1,1],[1,1],[3,2],[726,10],[2,2],[77,7],[1,1],[14,4],[6,3],[1,1],[669,10],[33,7],[1,1],[95,8],[34,6],[15,4],[57,6],[14,4],[4,5],[1,2],[2,6],[62,8],[23,6],[1,1],[1,2],[25,6],[135,10],[102,7],[4,3],[1,1],[958,10],[3,4],[240,8],[16,6],[1,3],[327,10],[9,4],[148,10],[74,8],[35,6],[1,1],[1,1],[12,5],[26,5],[240,8],[13,5],[9,4],[1,1],[7,4],[1,1],[1,4],[3,4],[445,10],[2,2],[7,4],[112,7],[14,5],[1,1],[75,9],[80,7],[41,6],[11,4],[3,2],[1,2],[2,2],[889,10],[3,3],[1,4],[52,7],[56,8],[31,5],[408,9],[383,9],[103,7],[363,9],[7,3],[13,5],[7,3],[406,9],[1,1],[14,4],[204,8],[464,9],[2,2],[3,4],[184,10],[104,8],[14,6],[1,1],[17,5],[12,4],[3,6],[57,7],[9,4],[1,3],[29,5],[101,7],[3,2],[136,8],[2,5],[2,2],[2,4],[18,5],[3,3],[15,4],[355,9],[255,8],[1,3],[65,8],[46,6],[242,8],[2,2],[51,6],[37,7],[5,3],[6,3],[2,2],[146,8],[23,9],[1,3],[1,1],[17,5],[1,2],[706,10],[7,3],[183,9],[809,10],[4,3],[786,10],[5,4],[99,7],[14,5],[312,10],[15,6],[14,4],[7,3],[33,9],[1,1],[1,2],[320,9],[436,9],[22,7],[63,9],[29,5],[366,9],[69,7],[2,2],[5,7],[46,6],[1,1],[271,9],[338,9],[25,7],[374,10],[309,9],[73,8],[20,5],[637,10],[1,2],[1,1],[19,5],[481,9],[3,2],[142,9],[2,4],[504,9],[26,5],[7,4],[3,2],[63,8],[409,9],[3,2],[1,1],[24,6],[477,10],[899,10],[51,9],[146,8],[5,3],[136,8],[9,5],[13,4],[8,5],[1,1],[15,8],[461,9],[6,3],[3,2],[7,8],[6,4],[4,4],[2,2],[2,3],[58,6],[5,4],[10,6],[43,6],[407,9],[88,8],[15,4],[29,5],[12,6],[1,2],[849,10],[16,6],[4,5],[354,9],[413,10],[68,7],[243,8],[435,10],[234,8],[15,5],[2,2],[1,1],[6,5],[20,6],[1,1],[203,9],[15,4],[20,5],[9,6],[1,1],[3,4],[2,5],[318,10],[1,1],[7,4],[99,7],[6,3],[1,1],[27,5],[109,8],[1,1],[962,10],[6,9],[1,1],[180,8],[87,7],[2,6],[1,2],[2,2],[712,10],[87,8],[10,4],[6,9],[3,2],[1,4],[4,4],[2,3],[13,4],[3,4],[250,9],[899,10],[38,7],[1,1],[2,2],[1,1],[1,1],[192,8],[12,7],[12,4],[2,3],[92,7],[1,4],[6,3],[5,3],[2,2],[221,9],[1,1],[9,4],[499,9],[186,9],[99,7],[5,3],[192,8],[3,2],[17,7],[176,10],[5,7],[128,8],[248,10],[110,10],[54,6],[3,3],[1,1],[31,7],[9,5],[18,7],[1,1],[24,7],[17,8],[61,6],[2,3],[33,6],[24,7],[6,3],[1018,10],[414,10],[20,9],[1,1],[3,2],[81,7],[50,6],[23,7],[42,7],[24,5],[1,1],[21,6],[1,5],[1,1],[1,1],[219,8],[3,2],[476,10],[80,10],[911,10],[1,3],[24,5],[34,8],[5,3],[433,10],[5,4],[5,5],[23,5],[39,6],[1,2],[4,3],[1,1],[439,9],[598,10],[171,8],[2,3],[77,7],[10,6],[157,8],[181,9],[46,6],[66,8],[196,8],[4,5],[6,4],[20,5],[3,2],[369,10],[214,8],[7,3],[1,1],[3,4],[5,5],[27,7],[339,10],[120,8],[1,1],[2,3],[8,4],[233,9],[1,1],[51,6],[3,2],[1,2],[7,3],[7,3],[41,6],[11,5],[1,1],[9,7],[7,3],[3,3],[1,8],[247,8],[96,7],[7,3],[822,10],[40,6],[9,4],[6,3],[149,8],[7,8],[748,10],[61,6],[14,6],[1,1],[322,9],[1,1],[6,3],[600,10],[387,9],[1,1],[21,6],[4,3],[5,3],[1,3],[13,9],[667,10],[1,1],[18,7],[358,9],[1,1],[135,8],[1,1],[1,1],[95,8],[1,1],[4,4],[93,7],[27,5],[3,2],[834,10],[28,5],[38,6],[1,1],[6,4],[1,2],[2,2],[1,1],[471,10],[75,9],[466,9],[2,2],[156,10],[37,7],[51,7],[1,5],[236,8],[98,7],[115,7],[14,4],[1,1],[3,3],[2,2],[1,1],[489,10],[1,1],[871,10],[320,9],[157,9],[1,3],[1,1],[823,10],[51,6],[44,6],[26,5],[88,7],[290,9],[1,1],[153,8],[8,5],[14,4],[122,7],[226,8],[229,8],[23,5],[24,5],[19,6],[299,9],[57,7],[121,8],[11,9],[142,8],[20,5],[24,5],[8,4],[41,6],[81,8],[24,10],[849,10],[200,9],[25,6],[1,1],[5,4],[2,2],[125,7],[28,5],[2,2],[505,9],[2,3],[71,10],[47,6],[56,6],[672,10],[1,1],[370,9],[3,3],[17,6],[375,10],[12,8],[19,5],[12,4],[4,3],[1,1],[24,6],[456,9],[1,1],[28,5],[76,8],[106,7],[1,1],[194,9],[574,10],[7,4],[30,5],[6,4],[1,1],[1,1],[39,8],[3,6],[215,9],[132,8],[49,10],[120,7],[3,2],[6,7],[8,6],[5,4],[48,6],[27,5],[2,3],[183,8],[11,5],[3,2],[3,2],[1,1],[917,10],[31,6],[7,3],[29,6],[319,10],[3,2],[37,7],[1,2],[19,5],[126,7],[6,3],[3,3],[1,2],[44,6],[31,7],[26,6],[1,2],[2,2],[100,9],[68,7],[88,8],[1,2],[70,7],[1,2],[1,1],[20,5],[218,8],[154,8],[5,3],[55,8],[46,6],[145,9],[1,1],[217,8],[1,1],[1,1],[2,4],[10,5],[27,8],[15,6],[218,8],[5,3],[484,9],[66,7],[24,6],[10,4],[4,3],[13,5],[58,6],[877,10],[47,6],[261,9],[17,5],[351,9],[12,8],[19,9],[2,4],[20,10],[58,7],[3,2],[7,4],[41,6],[12,5],[669,10],[6,3],[2,6],[138,8],[4,3],[11,6],[148,8],[331,9],[1000,10],[9,5],[28,6],[2,4],[14,4],[64,8],[25,6],[15,4],[873,10],[1,1],[12,4],[7,3],[157,10],[127,10],[140,9],[93,7],[200,8],[196,9],[25,7],[123,9],[3,2],[61,9],[187,8],[1,1],[39,6],[215,8],[20,6],[117,8],[3,2],[1,1],[1,3],[574,10],[847,10],[7,3],[1,1],[10,7],[875,10],[86,7],[6,4],[325,9],[3,3],[4,3],[1,1],[3,2],[517,10],[5,4],[422,10],[11,5],[227,9],[6,4],[4,5],[27,5],[8,4],[6,7],[203,8],[13,5],[60,6],[4,6],[5,3],[66,10],[4,5],[593,10],[7,6],[9,4],[29,6],[1,1],[5,3],[13,7],[8,5],[187,8],[906,10],[24,5],[54,6],[334,10],[74,8],[1,2],[1,2],[127,7],[231,8],[6,3],[17,6],[199,10],[23,9],[5,3],[11,4],[3,2],[56,6],[2,4],[4,4],[94,7],[338,9],[717,10],[451,9],[511,10],[4,3],[484,10],[1,1],[1,1],[10,4],[22,5],[3,3],[89,8],[11,6],[5,3],[1,1],[3,2],[256,9],[477,10],[82,9],[1,2],[26,7],[366,9],[9,4],[30,6],[116,9],[15,4],[264,9],[58,10],[1,3],[13,4],[79,9],[238,8],[5,3],[465,10],[28,8],[235,8],[155,8],[708,10],[15,5],[3,2],[1,2],[59,9],[1,1],[2,3],[100,7],[128,9],[49,6],[6,4],[82,10],[73,8],[50,6],[100,7],[3,5],[51,8],[2,4],[393,9],[21,6],[500,10],[3,2],[1,1],[3,2],[14,5],[2,2],[1,3],[69,10],[2,4],[41,10],[4,3],[473,9],[729,10],[59,6],[75,7],[7,3],[9,5],[4,4],[1,1],[14,5],[45,7],[1,2],[2,2],[50,8],[503,9],[36,6],[5,9],[5,8],[188,10],[1,1],[20,5],[732,10],[6,5],[1,1],[965,10],[60,6],[40,6],[1,6],[2,7],[5,4],[11,6],[39,8],[3,2],[285,9],[200,9],[23,5],[3,2],[1,1],[9,5],[30,5],[15,4],[2,2],[4,3],[18,10],[99,8],[2,4],[5,3],[33,7],[1,4],[20,7],[1,1],[4,4],[35,6],[2,2],[140,8],[34,6],[354,9],[6,3],[3,2],[24,9],[89,8],[1,1],[32,6],[1,2],[25,5],[91,8],[2,2],[19,7],[59,6],[384,9],[25,6],[829,10],[5,3],[491,9],[3,2],[3,2],[5,4],[2,2],[571,10],[48,6],[1,1],[13,5],[38,9],[1,3],[167,10],[58,6],[3,3],[1,2],[38,6],[5,4],[60,8],[2,3],[1,1],[1,3],[313,9],[2,5],[6,3],[13,8],[3,2],[398,9],[586,10],[3,2],[5,4],[7,8],[452,9],[6,4],[30,5],[43,6],[12,7],[6,3],[201,10],[144,8],[62,6],[2,2],[1,2],[39,6],[44,6],[261,9],[63,8],[1,3],[6,7],[60,8],[1,3],[5,3],[683,10],[8,4],[1,3],[272,10],[544,10],[2,2],[8,4],[2,3],[436,9],[420,10],[3,2],[212,8],[2,3],[1,2],[15,6],[553,10],[15,4],[4,4],[85,7],[118,10],[12,4],[228,8],[5,4],[74,7],[7,3],[1,1],[84,7],[1,1],[29,5],[2,2],[16,5],[25,6],[5,3],[4,3],[15,4],[1,1],[110,7],[2,2],[1,1],[4,3],[1,1],[1,2],[1,1],[200,9],[318,9],[1,1],[309,9],[39,6],[12,6],[539,10],[1,3],[18,6],[7,3],[236,8],[15,4],[6,4],[3,2],[1,5],[496,10],[23,6],[1,2],[842,10],[32,7],[5,3],[182,9],[326,9],[240,9],[370,9],[14,6],[1,1],[138,9],[131,8],[10,5],[217,9],[502,10],[56,6],[1,2],[15,4],[1,1],[1,1],[29,5],[55,6],[726,10],[5,3],[54,10],[300,10],[71,8],[13,4],[89,7],[23,6],[2,2],[333,10],[8,4],[2,2],[52,6],[765,10],[1,1],[28,5],[1,1],[3,4],[3,5],[88,10],[7,5],[1,1],[3,4],[20,6],[375,9],[1,4],[585,10],[1,4],[3,5],[23,5],[735,10],[180,8],[67,7],[229,8],[1,2],[60,8],[373,9],[12,4],[89,9],[2,2],[8,5],[1,1],[1,1],[34,6],[2,3],[73,8],[29,6],[1,1],[1,2],[506,9],[103,7],[3,3],[1,2],[16,5],[81,7],[30,5],[1,1],[60,6],[22,8],[2,2],[16,10],[2,2],[1,1],[85,8],[1,1],[129,9],[221,8],[93,8],[3,2],[19,5],[1,4],[3,2],[507,9],[1,2],[35,7],[15,4],[68,7],[9,4],[52,7],[398,9],[1,1],[3,2],[2,3],[28,6],[912,10],[5,5],[681,10],[1,2],[2,3],[975,10],[94,9],[682,10],[24,6],[2,2],[1,1],[487,9],[1,1],[145,8],[824,10],[232,9],[11,4],[80,7],[51,6],[57,7],[345,9],[3,2],[2,2],[58,7],[1,1],[104,7],[20,9],[15,8],[493,10],[148,9],[1,1],[3,7],[1,2],[1,1],[217,8],[7,3],[1,1],[1,1],[9,4],[13,4],[2,2],[1,2],[1,2],[18,9],[162,9],[4,4],[33,6],[117,9],[1,3],[1,1],[69,10],[5,5],[93,8],[7,3],[4,3],[1,1],[20,6],[14,4],[13,6],[19,5],[3,2],[118,7],[912,10],[33,7],[3,3],[5,3],[1,1],[1,1],[6,5],[1,1],[4,4],[5,3],[172,10],[56,8],[9,4],[7,4],[6,3],[3,2],[10,4],[1,3],[16,5],[1,1],[1,2],[1,1],[78,7],[2,2],[3,2],[10,5],[1,1],[5,3],[4,3],[549,10],[118,9],[50,7],[51,6],[9,4],[11,6],[8,5],[3,3],[1,3],[3,3],[190,8],[3,2],[20,6],[22,5],[3,3],[29,10],[28,5],[14,4],[46,6],[15,6],[8,7],[7,5],[10,5],[5,4],[1,2],[3,2],[59,6],[6,3],[15,4],[2,2],[284,9],[174,10],[51,7],[46,9],[153,8],[118,7],[2,3],[3,2],[317,10],[1,7],[255,9],[6,3],[1,1],[1,1],[1,1],[86,7],[1,1],[109,7],[10,6],[2,2],[16,6],[57,6],[909,10],[1,1],[5,4],[389,10],[180,8],[6,3],[20,8],[24,6],[6,3],[11,4],[1,4],[418,10],[447,9],[554,10],[99,8],[32,10],[452,9],[82,7],[1,1],[3,2],[50,7],[244,8],[803,10],[14,4],[11,4],[17,5],[1,1],[5,3],[1,3],[37,6],[1,2],[4,3],[143,8],[3,2],[142,8],[8,5],[1,1],[189,8],[1,1],[3,2],[804,10],[6,3],[2,2],[753,10],[1,1],[15,4],[491,9],[247,8],[2,6],[2,5],[112,7],[3,2],[85,8],[6,3],[410,9],[80,9],[7,3],[912,10],[1,1],[21,7],[4,4],[7,3],[3,3],[90,7],[1,3],[3,2],[327,10],[32,8],[37,6],[124,7],[1,1],[61,6],[349,9],[4,4],[64,9],[58,6],[128,8],[3,3],[3,4],[10,4],[61,8],[51,6],[91,7],[177,8],[23,5],[7,3],[29,5],[61,7],[283,9],[10,5],[50,6],[5,3],[13,6],[12,4],[114,7],[71,8],[13,4],[395,10],[45,7],[4,3],[405,9],[196,10],[716,10],[11,5],[75,7],[2,2],[461,9],[60,6],[1,1],[6,4],[1,2],[2,3],[26,6],[12,4],[55,6],[3,3],[1,2],[8,5],[354,10],[49,6],[461,9],[1,1],[11,4],[1,1],[87,7],[55,7],[1,2],[909,10],[164,9],[1,1],[18,5],[2,3],[175,8],[589,10],[77,8],[2,2],[130,8],[1,1],[7,5],[1,1],[12,4],[1,1],[23,5],[53,8],[1,4],[11,4],[1,1],[3,4],[1,1],[12,4],[13,4],[1,5],[1,2],[314,9],[28,5],[178,10],[1,1],[1,1],[1,2],[35,6],[117,7],[1,1],[2,2],[1,1],[4,5],[6,3],[1,1],[1,3],[15,4],[6,6],[2,4],[143,8],[204,9],[12,4],[41,6],[21,10],[6,5],[119,7],[1,2],[101,8],[10,4],[286,9],[58,6],[1,1],[2,2],[12,7],[82,7],[153,8],[5,3],[30,5],[26,6],[2,2],[342,10],[1,1],[804,10],[34,9],[143,8],[75,8],[103,7],[956,10],[2,4],[589,10],[1,1],[4,3],[781,10],[435,9],[2,5],[1,2],[27,6],[232,8],[22,6],[10,5],[1,1],[18,8],[27,6],[72,7],[1,2],[4,3],[34,7],[1,1],[1,4],[1,1],[1,1],[3,3],[3,2],[17,6],[7,5],[26,5],[190,8],[795,10],[6,3],[195,8],[268,9],[418,10],[10,5],[5,3],[12,4],[48,6],[470,9],[268,10],[28,7],[69,7],[10,4],[32,6],[1,1],[95,8],[180,9],[1,1],[42,8],[21,5],[15,4],[573,10],[5,4],[13,4],[3,2],[228,9],[20,7],[55,6],[505,9],[4,5],[1,3],[50,6],[3,3],[27,6],[150,8],[2,4],[1,1],[428,9],[11,5],[1,2],[141,8],[135,8],[887,10],[1,1],[33,6],[189,9],[3,2],[851,10],[22,5],[56,6],[237,8],[19,10],[4,6],[4,8],[316,9],[363,9],[240,8],[214,10],[14,7],[1,2],[1,1],[2,3],[3,6],[1,1],[196,8],[1,4],[76,8],[1,1],[69,7],[13,4],[267,9],[32,7],[3,3],[30,5],[1,4],[100,8],[1,1],[5,4],[1,1],[832,10],[14,5],[6,6],[1,1],[14,4],[35,7],[13,5],[1,1],[10,4],[3,2],[20,6],[23,6],[2,2],[64,9],[53,9],[7,3],[31,7],[9,5],[1,1],[1,1],[10,4],[12,6],[374,9],[256,9],[29,9],[1,2],[1,1],[1,5],[9,5],[115,7],[227,8],[22,5],[63,6],[10,4],[19,5],[320,10],[29,5],[491,10],[12,4],[5,5],[140,8],[12,6],[11,4],[41,6],[109,7],[52,7],[16,6],[248,8],[1,2],[7,5],[1,1],[180,9],[6,3],[45,6],[175,8],[115,7],[3,2],[325,9],[54,7],[23,7],[45,6],[4,4],[21,5],[232,8],[253,8],[1,1],[294,9],[3,2],[271,9],[202,9],[129,9],[7,4],[1,2],[1,3],[11,4],[64,7],[18,5],[335,10],[158,9],[33,6],[4,5],[96,7],[93,7],[2,2],[2,2],[21,7],[4,3],[815,10],[1,2],[361,10],[1,4],[1,1],[214,8],[272,9],[44,6],[374,9],[123,8],[1,3],[5,4],[7,6],[544,10],[12,7],[38,6],[30,6],[12,4],[3,3],[273,9],[6,6],[4,3],[1,1],[2,2],[46,6],[7,4],[14,5],[193,8],[82,8],[438,9],[1,2],[7,4],[2,3],[268,9],[55,6],[1,1],[493,10],[6,5],[3,2],[500,9],[1,1],[17,5],[370,9],[3,3],[1,1],[8,4],[196,9],[7,3],[3,4],[12,4],[2,2],[787,10],[323,9],[217,8],[5,3],[274,9],[141,8],[119,7],[221,9],[1,1],[7,3],[14,4],[4,3],[40,6],[1,1],[33,6],[8,4],[9,7],[1,2],[4,3],[2,2],[14,6],[1,1],[13,5],[19,7],[4,3],[2,3],[289,9],[120,8],[5,3],[3,2],[2,3],[1,1],[1,1],[124,9],[11,4],[167,8],[51,7],[1,3],[13,5],[12,5],[17,6],[42,6],[1,1],[14,6],[9,5],[1,1],[40,7],[241,9],[8,4],[2,6],[1,1],[1,3],[7,3],[6,4],[11,5],[230,8],[34,9],[208,9],[2,2],[10,4],[463,10],[49,10],[40,6],[117,8],[2,2],[54,7],[3,3],[6,3],[185,9],[2,3],[31,9],[1,1],[2,2],[7,5],[1,3],[16,6],[5,3],[28,5],[1,1],[33,9],[1,1],[3,2],[37,7],[2,8],[19,5],[27,7],[947,10],[3,2],[143,8],[435,10],[147,9],[549,10],[4,3],[1,4],[46,9],[1,1],[218,8],[132,10],[262,9],[1,1],[7,5],[6,3],[1,2],[1,1],[344,9],[83,9],[40,6],[1,1],[867,10],[11,6],[2,2],[15,5],[1,1],[1,1],[23,5],[6,3],[333,9],[201,8],[3,8],[6,4],[1,2],[13,4],[217,10],[13,5],[1,1],[32,6],[2,2],[15,8],[194,10],[3,4],[1,1],[1,1],[285,9],[33,7],[201,9],[6,6],[19,5],[2,2],[64,7],[7,5],[308,9],[23,5],[5,4],[1,3],[25,5],[1008,10],[3,3],[817,10],[7,4],[14,4],[67,7],[8,4],[1,1],[1,1],[2,2],[7,3],[1,1],[30,10],[1,1],[8,5],[2,3],[642,10],[103,7],[9,7],[70,7],[81,9],[1,2],[84,7],[18,6],[39,6],[79,8],[1,1],[948,10],[436,9],[457,9],[226,8],[188,10],[1,1],[5,3],[3,3],[4,4],[502,9],[61,6],[1,2],[5,8],[27,5],[596,10],[4,3],[2,4],[65,7],[3,3],[14,4],[1,6],[1,1],[1,1],[327,9],[68,9],[12,4],[12,5],[27,5],[1,1],[194,8],[105,7],[379,10],[3,6],[3,2],[19,7],[2,2],[3,2],[13,4],[87,9],[73,7],[3,3],[51,7],[1,1],[17,5],[4,4],[1,4],[1,2],[2,2],[1,1],[222,8],[84,10],[2,2],[60,10],[7,6],[35,9],[14,5],[328,10],[297,9],[40,7],[2,4],[771,10],[9,4],[570,10],[427,10],[73,9],[11,6],[908,10],[3,3],[50,6],[62,8],[2,4],[882,10],[44,6],[117,8],[43,6],[26,5],[8,4],[6,4],[88,7],[7,8],[4,3],[315,9],[1,1],[71,7],[1,2],[31,6],[20,6],[1,1],[473,9],[41,8],[24,5],[202,8],[99,7],[472,9],[1,1],[2,2],[384,9],[1,2],[98,7],[27,6],[1,3],[158,8],[3,3],[165,9],[804,10],[47,6],[2,2],[3,2],[7,3],[2,2],[300,9],[7,4],[122,7],[71,8],[1,1],[508,9],[387,9],[816,10],[149,9],[3,4],[4,3],[2,2],[238,9],[46,6],[37,6],[9,4],[234,8],[1,2],[6,5],[28,5],[7,3],[157,9],[24,5],[1,1],[221,10],[11,5],[911,10],[41,7],[84,7],[6,3],[12,4],[5,8],[14,5],[1,1],[1,1],[45,9],[2,2],[22,5],[9,4],[316,9],[294,10],[5,3],[13,5],[971,10],[1,2],[6,3],[159,8],[42,6],[60,6],[2,2],[286,10],[1,2],[430,9],[128,9],[1,1],[148,10],[41,8],[10,4],[6,3],[1,4],[5,5],[243,10],[4,3],[7,3],[14,4],[14,4],[37,10],[11,5],[1,1],[397,9],[2,3],[3,2],[23,7],[2,2],[121,8],[486,9],[26,5],[2,2],[36,6],[95,8],[401,9],[732,10],[13,5],[1,3],[2,2],[330,10],[1,3],[25,5],[11,6],[20,10],[3,4],[208,9],[61,6],[89,7],[297,9],[1,1],[1,1],[28,5],[36,6],[177,8],[5,3],[115,9],[60,7],[130,9],[970,10],[843,10],[122,9],[1,4],[21,5],[731,10],[122,9],[3,2],[2,3],[195,8],[5,4],[61,8],[1,1],[2,2],[46,6],[53,7],[462,9],[19,5],[1,1],[108,8],[21,5],[159,9],[605,10],[1,1],[10,5],[59,6],[18,6],[158,8],[5,4],[11,5],[378,9],[4,5],[4,4],[1,1],[182,8],[14,6],[78,9],[859,10],[75,8],[103,7],[1,2],[379,9],[2,3],[39,6],[2,2],[61,7],[1,1],[147,9],[1,1],[142,8],[1,7],[940,10],[224,8],[1,1],[9,4],[1,4],[229,8],[51,7],[980,10],[3,4],[113,8],[7,3],[374,9],[15,5],[3,3],[7,5],[53,6],[1,3],[137,8],[585,10],[141,10],[2,3],[101,7],[3,2],[166,8],[1,3],[5,3],[9,7],[3,2],[7,3],[1,2],[1,1],[2,2],[384,9],[2,6],[760,10],[2,2],[1,1],[4,4],[1,3],[88,8],[51,7],[13,5],[1,5],[500,10],[21,6],[28,5],[8,4],[10,8],[104,9],[76,10],[2,4],[3,2],[17,5],[1,1],[38,6],[43,9],[8,5],[20,5],[498,10],[13,7],[1,2],[2,5],[7,5],[196,10],[19,6],[17,5],[2,2],[9,4],[14,4],[46,6],[170,8],[1,3],[1,1],[12,4],[138,10],[49,6],[4,3],[31,7],[10,5],[288,10],[146,8],[663,10],[1,1],[1,1],[1,4],[36,6],[3,3],[1,1],[120,9],[21,8],[196,10],[2,2],[1,1],[223,10],[1,1],[91,7],[1,2],[7,5],[11,6],[72,8],[40,7],[253,8],[1,1],[31,5],[5,3],[147,8],[142,10],[14,7],[5,5],[1,2],[62,6],[12,6],[2,3],[167,9],[449,9],[1,1],[6,4],[33,7],[19,6],[93,7],[102,7],[1,1],[13,8],[85,8],[6,3],[10,4],[29,5],[15,6],[177,10],[24,6],[7,3],[389,9],[120,7],[5,3],[3,3],[2,2],[13,5],[12,6],[30,6],[2,3],[97,7],[10,4],[42,8],[24,5],[9,4],[1,3],[3,2],[24,5],[107,7],[58,8],[11,6],[4,3],[173,9],[4,3],[461,9],[66,8],[876,10],[4,4],[1,3],[1,5],[1,1],[157,10],[23,7],[156,9],[101,9],[1,1],[93,8],[100,8],[225,10],[865,10],[2,3],[7,3],[7,4],[539,10],[5,4],[8,5],[15,6],[4,3],[1,1],[416,9],[4,7],[1,2],[122,7],[1,1],[11,4],[725,10],[2,3],[924,10],[1,1],[3,6],[3,2],[23,9],[769,10],[290,9],[62,6],[1,2],[62,9],[13,5],[36,6],[7,3],[3,2],[70,7],[21,6],[1,1],[6,4],[204,8],[240,9],[10,6],[7,3],[60,7],[399,9],[1,2],[2,2],[18,6],[5,3],[133,9],[10,4],[31,7],[35,9],[36,9],[3,2],[7,3],[6,3],[12,4],[43,6],[1,1],[24,5],[2,3],[13,4],[5,4],[13,5],[58,6],[4,3],[1,1],[1,2],[9,6],[13,8],[106,8],[14,7],[31,5],[53,6],[204,9],[44,6],[17,5],[61,7],[1,1],[207,8],[181,8],[49,7],[12,4],[48,6],[14,4],[2,6],[248,8],[941,10],[113,7],[818,10],[1,1],[120,10],[14,6],[1,2],[35,8],[18,7],[1,1],[7,4],[1,1],[124,7],[417,9],[2,2],[122,7],[3,2],[3,2],[1,2],[25,5],[23,7],[3,3],[88,7],[34,6],[10,4],[28,5],[6,3],[2,3],[58,7],[1,1],[39,6],[10,4],[2,2],[187,8],[568,10],[3,5],[83,7],[401,9],[12,4],[1,1],[135,8],[110,8],[72,7],[3,2],[1,1],[4,3],[7,4],[455,9],[495,10],[197,8],[108,7],[114,7],[4,3],[11,4],[26,6],[1,1],[13,4],[35,6],[1,4],[116,7],[19,6],[109,8],[3,3],[27,5],[3,2],[5,3],[22,10],[14,7],[1,1],[477,10],[2,2],[947,10],[468,9],[1,5],[1,1],[6,3],[1,1],[1,1],[1,1],[12,7],[230,9],[3,2],[271,10],[1,1],[10,4],[165,8],[66,7],[260,9],[13,4],[1,1],[31,5],[1,1],[25,5],[1,2],[8,5],[322,9],[39,6],[2,5],[1,1],[30,5],[245,8],[98,9],[33,6],[2,3],[155,8],[14,6],[3,3],[65,7],[77,10],[98,8],[1,3],[649,10],[12,4],[10,4],[48,8],[1,1],[54,6],[49,9],[31,5],[332,9],[108,8],[3,3],[7,3],[7,4],[672,10],[1,1],[1,1],[5,4],[317,9],[26,10],[623,10],[115,8],[5,3],[15,4],[1,1],[81,10],[33,8],[19,5],[31,5],[12,4],[449,10],[10,4],[396,10],[1,2],[2,3],[72,10],[111,7],[1,4],[6,3],[218,8],[1,4],[102,8],[248,8],[1,2],[19,7],[1,1],[31,6],[3,3],[231,8],[28,7],[5,4],[4,6],[12,4],[21,5],[9,5],[114,7],[580,10],[49,6],[6,3],[938,10],[142,8],[3,2],[7,7],[209,8],[42,8],[160,9],[136,10],[299,10],[19,5],[3,5],[203,8],[15,4],[19,5],[1,2],[6,9],[56,6],[933,10],[2,3],[329,9],[27,5],[3,3],[22,6],[17,5],[34,6],[100,10],[1,1],[14,4],[1,3],[9,6],[2,2],[7,3],[19,7],[249,9],[1,1],[253,8],[9,7],[2,2],[100,9],[135,8],[338,10],[1,2],[33,7],[886,10],[1,3],[13,4],[45,7],[48,6],[1,6],[1,1],[16,5],[6,3],[248,9],[243,9],[12,4],[1,3],[15,4],[1,2],[217,8],[36,6],[1,2],[46,6],[7,3],[85,7],[762,10],[90,9],[1,1],[7,3],[81,7],[6,5],[200,8],[456,10],[42,7],[88,10],[2,2],[409,9],[136,9],[743,10],[2,3],[146,8],[229,8],[13,6],[21,5],[17,7],[2,3],[1,1],[3,2],[2,3],[7,5],[67,8],[367,9],[1,4],[13,4],[1,3],[3,3],[3,3],[14,4],[60,6],[7,4],[72,7],[20,5],[26,5],[3,2],[5,3],[86,8],[228,10],[1,2],[300,10],[8,5],[23,5],[1,1],[90,8],[3,4],[8,4],[279,10],[4,5],[11,6],[481,9],[1,1],[5,4],[1,1],[915,10],[8,9],[24,6],[15,4],[433,10],[5,4],[67,7],[4,3],[275,10],[604,10],[4,4],[1,2],[1,1],[1,1],[2,2],[1,1],[482,10],[159,10],[1,4],[8,5],[1006,10],[18,6],[2,2],[187,9],[98,7],[11,4],[5,3],[62,8],[65,7],[2,2],[1,1],[15,5],[1,1],[300,10],[60,6],[4,3],[91,8],[1,1],[1,4],[362,10],[47,6],[4,3],[29,5],[14,5],[247,10],[363,9],[231,10],[2,2],[59,10],[70,7],[66,7],[6,3],[7,3],[164,9],[6,3],[2,3],[3,3],[102,8],[1,1],[3,2],[6,4],[13,5],[33,9],[3,4],[29,7],[142,9],[69,8],[5,3],[10,4],[7,4],[250,8],[307,9],[374,10],[1,1],[302,10],[3,4],[655,10],[18,6],[203,8],[2,2],[120,7],[26,5],[22,7],[3,5],[18,5],[95,8],[219,10],[1,2],[468,10],[207,8],[30,5],[11,4],[17,5],[11,4],[1,1],[1,1],[470,9],[9,6],[905,10],[376,9],[4,6],[9,6],[996,10],[1,1],[19,5],[10,7],[88,7],[86,7],[3,3],[33,6],[7,3],[1,1],[14,6],[102,7],[3,2],[1,1],[3,2],[10,5],[48,6],[3,2],[983,10],[2,3],[122,7],[1,1],[21,5],[251,9],[76,8],[69,7],[473,9],[133,8],[3,2],[696,10],[2,3],[1,2],[58,6],[84,7],[15,4],[356,9],[9,4],[1,2],[3,2],[223,10],[78,7],[60,7],[6,4],[6,3],[3,2],[6,4],[1,5],[1,1],[6,5],[12,4],[51,6],[1,1],[6,3],[281,10],[7,3],[47,6],[343,9],[2,2],[26,5],[90,8],[12,4],[1,1],[1,1],[3,2],[3,3],[10,7],[256,9],[1,1],[3,3],[402,10],[64,9],[16,5],[122,10],[137,9],[27,7],[1,1],[1,1],[892,10],[262,9],[1,1],[1,1],[96,7],[363,9],[202,9],[112,7],[24,5],[486,10],[879,10],[263,10],[27,5],[517,10],[29,5],[1,3],[3,2],[301,10],[30,6],[21,6],[1,2],[22,5],[111,9],[1,2],[31,7],[2,2],[200,9],[37,6],[77,7],[253,8],[61,8],[41,7],[50,6],[1,1],[1,1],[390,9],[2,2],[23,7],[1,1],[775,10],[294,9],[1,1],[7,3],[1,1],[498,9],[23,6],[390,10],[26,9],[6,4],[621,10],[56,6],[1,1],[34,7],[917,10],[1,3],[233,9],[10,4],[1,1],[60,6],[36,7],[17,8],[112,7],[1,2],[121,8],[461,9],[20,5],[50,6],[1,1],[505,9],[1,1],[1,5],[2,2],[13,4],[1,1],[1,2],[132,8],[38,6],[6,10],[197,8],[2,2],[190,8],[176,8],[1,2],[2,4],[492,9],[7,3],[12,5],[2,3],[27,6],[165,9],[7,3],[3,5],[31,5],[732,10],[14,7],[1,1],[79,9],[59,10],[89,8],[106,8],[85,7],[1,3],[3,7],[28,5],[1,2],[929,10],[1,1],[48,6],[2,5],[1,1],[46,7],[453,10],[1,2],[7,3],[22,5],[15,5],[300,10],[1,1],[438,9],[15,9],[14,4],[805,10],[1,1],[18,5],[28,7],[153,9],[121,8],[1,3],[1,4],[18,7],[15,5],[29,8],[28,6],[8,5],[51,6],[11,4],[27,6],[1,2],[1,2],[5,5],[423,9],[13,7],[362,10],[24,10],[30,7],[26,5],[4,3],[424,9],[240,9],[1,3],[99,8],[34,6],[2,3],[7,3],[417,10],[46,6],[650,10],[67,7],[1,2],[4,4],[2,4],[8,4],[1,3],[104,7],[1,1],[260,9],[687,10],[1,1],[5,3],[1,2],[1,1],[434,9],[26,5],[1,1],[1,3],[1,2],[4,3],[5,4],[5,3],[1018,10],[7,3],[1,1],[103,7],[225,8],[4,6],[29,5],[12,6],[102,9],[183,9],[338,9],[416,9],[6,4],[9,4],[5,3],[2,3],[51,6],[26,6],[2,2],[51,7],[22,7],[3,2],[89,7],[27,7],[44,6],[5,7],[1,1],[27,5],[123,7],[3,4],[126,10],[40,6],[10,4],[500,10],[26,5],[1,1],[2,8],[1,2],[281,9],[2,2],[473,9],[2,4],[435,9],[15,4],[113,7],[13,4],[540,10],[601,10],[1,1],[14,4],[13,4],[115,7],[3,5],[15,4],[19,6],[27,5],[389,9],[1,1],[10,6],[74,8],[2,2],[1,1],[11,4],[8,5],[1,1],[33,8],[181,8],[916,10],[110,8],[3,2],[26,5],[452,9],[216,8],[11,5],[2,2],[976,10],[12,8],[254,9],[7,3],[107,7],[5,3],[221,9],[166,8],[6,5],[3,2],[40,6],[371,9],[125,7],[117,8],[82,7],[1,1],[901,10],[1,1],[19,5],[15,7],[50,6],[1,2],[301,9],[635,10],[182,10],[212,8],[1,1],[1,1],[29,5],[61,6],[1,1],[31,10],[26,6],[1,7],[1,1],[53,6],[3,4],[226,9],[7,3],[3,4],[5,4],[3,3],[16,5],[136,8],[13,4],[131,8],[10,5],[80,7],[2,3],[19,5],[14,4],[1,1],[1,1],[11,4],[160,8],[1,1],[3,2],[55,6],[1,1],[1,1],[4,6],[324,9],[24,5],[13,5],[174,8],[3,3],[40,7],[1,3],[54,7],[1,2],[115,10],[250,8],[9,4],[37,7],[400,10],[1,1],[318,9],[45,6],[1,1],[12,5],[54,6],[9,9],[48,6],[16,5],[55,7],[1,4],[31,5],[53,7],[747,10],[64,8],[24,5],[403,9],[105,7],[1,2],[79,7],[7,3],[2,2],[269,9],[50,6],[65,8],[174,8],[1,1],[394,10],[18,5],[410,9],[1,2],[1,1],[9,4],[155,8],[1,4],[1,2],[55,6],[60,6],[5,4],[3,2],[1,1],[7,4],[235,8],[24,7],[10,4],[477,9],[65,8],[11,5],[15,4],[45,6],[1,1],[5,3],[1,1],[6,3],[47,7],[3,2],[31,7],[24,6],[368,9],[7,3],[16,5],[877,10],[1,1],[321,9],[34,6],[7,3],[140,9],[2,2],[95,9],[109,9],[2,2],[194,8],[3,2],[6,4],[235,8],[1,3],[1,1],[29,5],[5,4],[136,8],[468,9],[519,10],[13,6],[42,6],[14,9],[126,7],[4,6],[22,6],[1,2],[14,4],[127,10],[81,7],[2,2],[189,9],[3,3],[1,1],[213,9],[69,8],[46,7],[4,3],[13,5],[19,7],[31,6],[33,6],[2,5],[3,4],[892,10],[29,6],[105,8],[2,3],[108,7],[35,6],[2,2],[1,1],[4,3],[2,3],[266,9],[171,8],[5,4],[33,7],[3,2],[6,3],[243,8],[96,7],[775,10],[25,5],[15,5],[1,4],[4,3],[27,6],[1,1],[763,10],[3,3],[17,5],[26,5],[2,3],[22,9],[1,1],[26,5],[5,3],[18,7],[29,6],[255,9],[14,4],[4,4],[6,4],[4,3],[47,8],[39,6],[44,6]]],"output":[[1,10],[1,9],[1,9],[1,9],[2,10],[2,10],[2,10],[2,10],[2,10],[3,10],[3,10],[3,10],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[2,9],[2,9],[2,9],[4,10],[4,10],[3,9],[3,9],[3,9],[6,10],[7,10],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[4,9],[4,9],[4,9],[4,9],[4,9],[4,9],[8,10],[9,10],[9,10],[5,9],[5,9],[5,9],[10,10],[10,10],[10,10],[11,10],[11,10],[3,8],[3,8],[6,9],[6,9],[6,9],[6,9],[6,9],[12,10],[12,10],[12,10],[12,10],[13,10],[13,10],[7,9],[7,9],[7,9],[7,9],[15,10],[15,10],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[4,8],[4,8],[4,8],[4,8],[4,8],[4,8],[4,8],[8,9],[8,9],[8,9],[16,10],[17,10],[9,9],[9,9],[9,9],[18,10],[18,10],[18,10],[19,10],[19,10],[19,10],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[10,9],[20,10],[20,10],[20,10],[21,10],[21,10],[11,9],[11,9],[11,9],[22,10],[22,10],[22,10],[22,10],[23,10],[23,10],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[6,8],[6,8],[6,8],[6,8],[6,8],[6,8],[6,8],[6,8],[12,9],[12,9],[24,10],[24,10],[24,10],[25,10],[25,10],[13,9],[13,9],[26,10],[27,10],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[14,9],[14,9],[14,9],[14,9],[28,10],[28,10],[29,10],[29,10],[15,9],[15,9],[15,9],[30,10],[30,10],[30,10],[30,10],[31,10],[31,10],[31,10],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[8,8],[8,8],[8,8],[8,8],[8,8],[8,8],[16,9],[32,10],[32,10],[32,10],[33,10],[33,10],[17,9],[17,9],[17,9],[35,10],[9,8],[9,8],[9,8],[9,8],[9,8],[9,8],[9,8],[9,8],[18,9],[18,9],[36,10],[36,10],[36,10],[37,10],[19,9],[19,9],[19,9],[19,9],[19,9],[19,9],[38,10],[38,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[10,8],[10,8],[10,8],[10,8],[10,8],[20,9],[20,9],[20,9],[20,9],[20,9],[20,9],[40,10],[40,10],[41,10],[41,10],[41,10],[21,9],[21,9],[11,8],[11,8],[11,8],[11,8],[11,8],[22,9],[44,10],[44,10],[44,10],[44,10],[45,10],[45,10],[45,10],[45,10],[23,9],[23,9],[23,9],[23,9],[23,9],[46,10],[46,10],[47,10],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[24,9],[24,9],[48,10],[49,10],[49,10],[49,10],[49,10],[25,9],[25,9],[25,9],[50,10],[50,10],[51,10],[13,8],[13,8],[13,8],[13,8],[13,8],[13,8],[26,9],[26,9],[26,9],[26,9],[52,10],[52,10],[52,10],[53,10],[53,10],[53,10],[53,10],[27,9],[27,9],[54,10],[54,10],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[14,8],[14,8],[28,9],[28,9],[28,9],[28,9],[56,10],[57,10],[57,10],[57,10],[29,9],[29,9],[29,9],[29,9],[29,9],[29,9],[58,10],[58,10],[58,10],[59,10],[59,10],[59,10],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[30,9],[30,9],[30,9],[30,9],[30,9],[60,10],[60,10],[61,10],[61,10],[31,9],[31,9],[31,9],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[32,9],[32,9],[33,9],[33,9],[33,9],[33,9],[33,9],[66,10],[66,10],[66,10],[67,10],[67,10],[17,8],[17,8],[17,8],[17,8],[17,8],[17,8],[34,9],[34,9],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[69,10],[69,10],[35,9],[35,9],[35,9],[35,9],[35,9],[35,9],[70,10],[70,10],[71,10],[71,10],[71,10],[71,10],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[18,8],[18,8],[18,8],[18,8],[18,8],[18,8],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[72,10],[72,10],[72,10],[72,10],[72,10],[73,10],[74,10],[75,10],[19,8],[19,8],[38,9],[38,9],[38,9],[38,9],[76,10],[76,10],[77,10],[77,10],[77,10],[39,9],[78,10],[78,10],[78,10],[78,10],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[20,8],[20,8],[20,8],[20,8],[20,8],[20,8],[20,8],[40,9],[40,9],[80,10],[80,10],[81,10],[81,10],[81,10],[41,9],[41,9],[41,9],[41,9],[82,10],[82,10],[82,10],[82,10],[83,10],[21,8],[21,8],[21,8],[21,8],[42,9],[42,9],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[43,9],[43,9],[43,9],[86,10],[86,10],[11,7],[11,7],[11,7],[11,7],[11,7],[11,7],[11,7],[22,8],[22,8],[22,8],[22,8],[22,8],[44,9],[44,9],[44,9],[44,9],[44,9],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[89,10],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[90,10],[90,10],[90,10],[91,10],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[46,9],[46,9],[46,9],[46,9],[46,9],[92,10],[92,10],[92,10],[47,9],[47,9],[47,9],[47,9],[95,10],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[24,8],[24,8],[24,8],[24,8],[24,8],[24,8],[24,8],[48,9],[48,9],[48,9],[48,9],[48,9],[48,9],[97,10],[49,9],[49,9],[49,9],[49,9],[49,9],[98,10],[99,10],[99,10],[25,8],[25,8],[25,8],[25,8],[25,8],[25,8],[25,8],[50,9],[50,9],[100,10],[51,9],[51,9],[51,9],[51,9],[51,9],[51,9],[102,10],[102,10],[102,10],[103,10],[103,10],[103,10],[103,10],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[26,8],[26,8],[26,8],[26,8],[26,8],[52,9],[52,9],[52,9],[52,9],[105,10],[105,10],[105,10],[53,9],[53,9],[107,10],[107,10],[27,8],[27,8],[27,8],[27,8],[27,8],[27,8],[27,8],[54,9],[108,10],[109,10],[109,10],[55,9],[55,9],[55,9],[55,9],[55,9],[55,9],[110,10],[110,10],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[28,8],[28,8],[28,8],[28,8],[28,8],[28,8],[28,8],[56,9],[112,10],[112,10],[112,10],[113,10],[57,9],[57,9],[57,9],[114,10],[114,10],[114,10],[115,10],[115,10],[29,8],[29,8],[29,8],[29,8],[29,8],[29,8],[29,8],[58,9],[58,9],[117,10],[59,9],[59,9],[59,9],[118,10],[119,10],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[60,9],[60,9],[120,10],[120,10],[121,10],[61,9],[61,9],[61,9],[61,9],[61,9],[122,10],[122,10],[122,10],[123,10],[123,10],[123,10],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[62,9],[124,10],[124,10],[125,10],[125,10],[63,9],[63,9],[63,9],[63,9],[63,9],[126,10],[127,10],[127,10],[127,10],[127,10],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[64,9],[64,9],[64,9],[64,9],[64,9],[128,10],[128,10],[128,10],[128,10],[65,9],[65,9],[65,9],[65,9],[65,9],[130,10],[130,10],[131,10],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[66,9],[66,9],[66,9],[132,10],[132,10],[132,10],[133,10],[67,9],[67,9],[67,9],[134,10],[135,10],[135,10],[17,7],[17,7],[17,7],[17,7],[17,7],[17,7],[34,8],[34,8],[34,8],[34,8],[34,8],[34,8],[34,8],[68,9],[68,9],[68,9],[68,9],[68,9],[136,10],[136,10],[69,9],[138,10],[138,10],[138,10],[139,10],[139,10],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[70,9],[70,9],[70,9],[70,9],[140,10],[140,10],[141,10],[141,10],[141,10],[141,10],[71,9],[142,10],[142,10],[143,10],[143,10],[143,10],[143,10],[143,10],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[72,9],[72,9],[144,10],[144,10],[145,10],[145,10],[73,9],[73,9],[73,9],[73,9],[73,9],[146,10],[146,10],[146,10],[146,10],[146,10],[147,10],[147,10],[147,10],[37,8],[37,8],[37,8],[37,8],[37,8],[37,8],[74,9],[74,9],[74,9],[74,9],[74,9],[74,9],[148,10],[148,10],[148,10],[148,10],[148,10],[75,9],[75,9],[75,9],[75,9],[150,10],[151,10],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[76,9],[76,9],[76,9],[76,9],[152,10],[152,10],[153,10],[153,10],[77,9],[77,9],[77,9],[77,9],[154,10],[154,10],[154,10],[154,10],[155,10],[155,10],[155,10],[39,8],[39,8],[39,8],[39,8],[78,9],[78,9],[78,9],[78,9],[78,9],[78,9],[156,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[79,9],[79,9],[79,9],[79,9],[79,9],[79,9],[79,9],[158,10],[159,10],[159,10],[159,10],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[40,8],[40,8],[40,8],[40,8],[40,8],[40,8],[80,9],[80,9],[80,9],[80,9],[80,9],[160,10],[160,10],[160,10],[81,9],[81,9],[162,10],[162,10],[162,10],[163,10],[163,10],[163,10],[41,8],[41,8],[41,8],[41,8],[41,8],[41,8],[41,8],[41,8],[82,9],[82,9],[82,9],[82,9],[82,9],[82,9],[82,9],[83,9],[83,9],[83,9],[167,10],[167,10],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[84,9],[84,9],[84,9],[84,9],[168,10],[168,10],[85,9],[85,9],[170,10],[171,10],[43,8],[43,8],[43,8],[43,8],[43,8],[43,8],[43,8],[43,8],[86,9],[86,9],[86,9],[86,9],[86,9],[172,10],[87,9],[87,9],[87,9],[174,10],[174,10],[175,10],[175,10],[175,10],[175,10],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[44,8],[44,8],[44,8],[44,8],[44,8],[44,8],[44,8],[88,9],[88,9],[88,9],[88,9],[88,9],[176,10],[176,10],[176,10],[176,10],[176,10],[177,10],[177,10],[177,10],[89,9],[89,9],[89,9],[89,9],[89,9],[89,9],[89,9],[89,9],[178,10],[178,10],[178,10],[179,10],[45,8],[45,8],[45,8],[45,8],[45,8],[45,8],[45,8],[45,8],[90,9],[90,9],[90,9],[90,9],[90,9],[181,10],[181,10],[181,10],[91,9],[91,9],[91,9],[91,9],[182,10],[182,10],[183,10],[183,10],[183,10],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[46,8],[46,8],[46,8],[46,8],[46,8],[92,9],[92,9],[92,9],[184,10],[184,10],[184,10],[185,10],[93,9],[187,10],[187,10],[47,8],[47,8],[47,8],[47,8],[47,8],[47,8],[94,9],[94,9],[94,9],[94,9],[94,9],[94,9],[188,10],[188,10],[188,10],[188,10],[95,9],[95,9],[95,9],[95,9],[190,10],[190,10],[191,10],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[48,8],[48,8],[48,8],[48,8],[48,8],[96,9],[96,9],[96,9],[96,9],[96,9],[192,10],[193,10],[193,10],[97,9],[97,9],[97,9],[194,10],[194,10],[195,10],[49,8],[49,8],[49,8],[49,8],[49,8],[49,8],[98,9],[98,9],[98,9],[98,9],[98,9],[196,10],[196,10],[196,10],[197,10],[197,10],[197,10],[198,10],[198,10],[198,10],[199,10],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[50,8],[50,8],[50,8],[100,9],[100,9],[100,9],[100,9],[200,10],[200,10],[201,10],[201,10],[101,9],[202,10],[202,10],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[102,9],[102,9],[102,9],[102,9],[102,9],[204,10],[205,10],[205,10],[103,9],[206,10],[206,10],[206,10],[206,10],[206,10],[207,10],[207,10],[207,10],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[52,8],[52,8],[52,8],[52,8],[52,8],[104,9],[104,9],[208,10],[209,10],[209,10],[209,10],[209,10],[105,9],[105,9],[105,9],[210,10],[210,10],[210,10],[210,10],[210,10],[211,10],[211,10],[211,10],[53,8],[53,8],[53,8],[53,8],[53,8],[53,8],[106,9],[106,9],[106,9],[106,9],[213,10],[213,10],[213,10],[107,9],[107,9],[107,9],[107,9],[107,9],[107,9],[214,10],[214,10],[215,10],[215,10],[215,10],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[54,8],[54,8],[54,8],[54,8],[108,9],[216,10],[217,10],[217,10],[109,9],[109,9],[109,9],[109,9],[109,9],[219,10],[219,10],[219,10],[219,10],[219,10],[55,8],[55,8],[55,8],[55,8],[110,9],[110,9],[110,9],[110,9],[220,10],[221,10],[221,10],[111,9],[111,9],[111,9],[111,9],[222,10],[223,10],[223,10],[223,10],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[112,9],[112,9],[112,9],[112,9],[112,9],[224,10],[225,10],[225,10],[113,9],[113,9],[113,9],[226,10],[226,10],[226,10],[57,8],[57,8],[57,8],[57,8],[114,9],[114,9],[114,9],[114,9],[114,9],[228,10],[228,10],[229,10],[115,9],[115,9],[115,9],[115,9],[115,9],[115,9],[115,9],[230,10],[230,10],[231,10],[231,10],[231,10],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[58,8],[58,8],[58,8],[58,8],[58,8],[58,8],[116,9],[116,9],[116,9],[116,9],[116,9],[233,10],[117,9],[117,9],[117,9],[117,9],[234,10],[234,10],[235,10],[235,10],[235,10],[59,8],[59,8],[118,9],[118,9],[118,9],[118,9],[118,9],[236,10],[236,10],[236,10],[119,9],[119,9],[238,10],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[120,9],[120,9],[120,9],[120,9],[120,9],[120,9],[120,9],[240,10],[240,10],[121,9],[121,9],[121,9],[121,9],[121,9],[121,9],[242,10],[242,10],[242,10],[243,10],[243,10],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[122,9],[122,9],[122,9],[122,9],[122,9],[245,10],[123,9],[123,9],[123,9],[246,10],[247,10],[247,10],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[62,8],[62,8],[62,8],[62,8],[62,8],[62,8],[62,8],[124,9],[124,9],[124,9],[124,9],[124,9],[248,10],[248,10],[248,10],[249,10],[249,10],[125,9],[125,9],[125,9],[125,9],[125,9],[250,10],[250,10],[251,10],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[126,9],[126,9],[126,9],[253,10],[127,9],[127,9],[127,9],[127,9],[254,10],[254,10],[254,10],[255,10],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[64,8],[64,8],[64,8],[64,8],[64,8],[64,8],[64,8],[128,9],[128,9],[128,9],[128,9],[128,9],[257,10],[257,10],[129,9],[129,9],[129,9],[129,9],[258,10],[258,10],[259,10],[259,10],[259,10],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[130,9],[130,9],[130,9],[130,9],[130,9],[130,9],[260,10],[260,10],[261,10],[262,10],[262,10],[263,10],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[132,9],[265,10],[265,10],[133,9],[133,9],[133,9],[266,10],[267,10],[67,8],[67,8],[67,8],[67,8],[134,9],[134,9],[134,9],[268,10],[269,10],[135,9],[135,9],[135,9],[270,10],[270,10],[270,10],[270,10],[271,10],[271,10],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[136,9],[136,9],[136,9],[136,9],[136,9],[272,10],[272,10],[272,10],[272,10],[137,9],[137,9],[137,9],[137,9],[137,9],[274,10],[274,10],[274,10],[274,10],[275,10],[275,10],[69,8],[69,8],[69,8],[69,8],[69,8],[69,8],[69,8],[69,8],[138,9],[138,9],[138,9],[138,9],[138,9],[277,10],[277,10],[139,9],[139,9],[139,9],[139,9],[278,10],[278,10],[279,10],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[70,8],[70,8],[70,8],[70,8],[70,8],[70,8],[140,9],[140,9],[140,9],[140,9],[140,9],[280,10],[280,10],[281,10],[281,10],[281,10],[141,9],[141,9],[141,9],[141,9],[141,9],[141,9],[282,10],[283,10],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[142,9],[142,9],[142,9],[142,9],[142,9],[284,10],[285,10],[285,10],[285,10],[143,9],[143,9],[286,10],[287,10],[287,10],[287,10],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[144,9],[144,9],[144,9],[288,10],[288,10],[288,10],[288,10],[289,10],[289,10],[145,9],[145,9],[145,9],[145,9],[291,10],[291,10],[291,10],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[146,9],[146,9],[146,9],[146,9],[292,10],[293,10],[293,10],[147,9],[147,9],[147,9],[147,9],[147,9],[147,9],[294,10],[294,10],[295,10],[295,10],[295,10],[295,10],[295,10],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[148,9],[148,9],[148,9],[296,10],[296,10],[297,10],[297,10],[297,10],[149,9],[149,9],[149,9],[298,10],[299,10],[299,10],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[150,9],[150,9],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[301,10],[301,10],[301,10],[151,9],[302,10],[302,10],[302,10],[303,10],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[152,9],[152,9],[304,10],[304,10],[304,10],[305,10],[153,9],[153,9],[153,9],[153,9],[306,10],[306,10],[77,8],[77,8],[77,8],[77,8],[77,8],[77,8],[77,8],[77,8],[154,9],[154,9],[154,9],[154,9],[308,10],[309,10],[309,10],[155,9],[155,9],[310,10],[311,10],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[78,8],[78,8],[78,8],[78,8],[78,8],[78,8],[156,9],[156,9],[156,9],[156,9],[156,9],[312,10],[312,10],[313,10],[157,9],[157,9],[157,9],[157,9],[157,9],[157,9],[157,9],[314,10],[315,10],[315,10],[79,8],[79,8],[79,8],[79,8],[79,8],[79,8],[158,9],[158,9],[158,9],[158,9],[317,10],[159,9],[159,9],[159,9],[159,9],[159,9],[159,9],[159,9],[318,10],[318,10],[319,10],[319,10],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[80,8],[80,8],[80,8],[80,8],[80,8],[80,8],[80,8],[80,8],[160,9],[160,9],[160,9],[160,9],[160,9],[320,10],[320,10],[321,10],[161,9],[161,9],[161,9],[161,9],[161,9],[322,10],[323,10],[323,10],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[162,9],[324,10],[324,10],[324,10],[325,10],[325,10],[163,9],[163,9],[163,9],[326,10],[326,10],[327,10],[327,10],[327,10],[327,10],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[164,9],[164,9],[164,9],[164,9],[328,10],[328,10],[329,10],[329,10],[165,9],[165,9],[165,9],[165,9],[165,9],[165,9],[165,9],[330,10],[330,10],[330,10],[330,10],[331,10],[331,10],[331,10],[83,8],[83,8],[83,8],[83,8],[83,8],[83,8],[83,8],[166,9],[166,9],[332,10],[332,10],[333,10],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[334,10],[334,10],[334,10],[335,10],[335,10],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[84,8],[84,8],[84,8],[168,9],[168,9],[336,10],[337,10],[169,9],[169,9],[169,9],[169,9],[338,10],[338,10],[338,10],[339,10],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[170,9],[170,9],[341,10],[171,9],[171,9],[171,9],[342,10],[342,10],[343,10],[343,10],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[86,8],[86,8],[86,8],[86,8],[86,8],[86,8],[86,8],[86,8],[172,9],[172,9],[172,9],[344,10],[345,10],[345,10],[173,9],[173,9],[173,9],[173,9],[173,9],[173,9],[346,10],[346,10],[346,10],[346,10],[346,10],[347,10],[347,10],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[174,9],[174,9],[174,9],[174,9],[348,10],[349,10],[175,9],[175,9],[175,9],[175,9],[175,9],[175,9],[175,9],[350,10],[350,10],[351,10],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[88,8],[88,8],[88,8],[88,8],[88,8],[88,8],[88,8],[88,8],[176,9],[176,9],[176,9],[176,9],[176,9],[352,10],[352,10],[353,10],[177,9],[177,9],[354,10],[354,10],[354,10],[354,10],[355,10],[355,10],[89,8],[89,8],[89,8],[89,8],[89,8],[89,8],[178,9],[178,9],[178,9],[178,9],[178,9],[356,10],[357,10],[357,10],[179,9],[179,9],[179,9],[179,9],[359,10],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[180,9],[180,9],[180,9],[180,9],[180,9],[361,10],[361,10],[181,9],[181,9],[181,9],[181,9],[181,9],[181,9],[362,10],[362,10],[362,10],[363,10],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[182,9],[182,9],[182,9],[182,9],[182,9],[182,9],[364,10],[365,10],[183,9],[183,9],[183,9],[183,9],[366,10],[367,10],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[92,8],[92,8],[92,8],[92,8],[92,8],[92,8],[92,8],[184,9],[184,9],[184,9],[184,9],[184,9],[368,10],[368,10],[368,10],[369,10],[369,10],[369,10],[185,9],[185,9],[185,9],[370,10],[371,10],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[186,9],[186,9],[186,9],[186,9],[186,9],[186,9],[372,10],[372,10],[372,10],[373,10],[187,9],[187,9],[187,9],[374,10],[374,10],[374,10],[374,10],[375,10],[375,10],[375,10],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[94,8],[94,8],[94,8],[94,8],[94,8],[94,8],[94,8],[188,9],[188,9],[188,9],[188,9],[188,9],[188,9],[188,9],[188,9],[376,10],[377,10],[377,10],[189,9],[189,9],[189,9],[189,9],[189,9],[189,9],[189,9],[378,10],[378,10],[379,10],[379,10],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[190,9],[190,9],[190,9],[380,10],[381,10],[381,10],[381,10],[191,9],[382,10],[382,10],[382,10],[383,10],[383,10],[383,10],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[192,9],[384,10],[384,10],[384,10],[385,10],[385,10],[385,10],[193,9],[193,9],[193,9],[386,10],[386,10],[387,10],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[194,9],[194,9],[194,9],[194,9],[194,9],[194,9],[194,9],[388,10],[389,10],[389,10],[389,10],[195,9],[195,9],[195,9],[195,9],[195,9],[390,10],[390,10],[391,10],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[98,8],[98,8],[98,8],[98,8],[98,8],[98,8],[196,9],[196,9],[196,9],[196,9],[196,9],[196,9],[196,9],[392,10],[392,10],[393,10],[393,10],[393,10],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[394,10],[394,10],[394,10],[395,10],[395,10],[395,10],[395,10],[99,8],[99,8],[99,8],[99,8],[99,8],[99,8],[99,8],[99,8],[198,9],[198,9],[198,9],[396,10],[397,10],[397,10],[199,9],[199,9],[199,9],[199,9],[199,9],[399,10],[399,10],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[100,8],[100,8],[100,8],[200,9],[200,9],[200,9],[200,9],[200,9],[200,9],[200,9],[400,10],[401,10],[401,10],[401,10],[201,9],[201,9],[201,9],[201,9],[402,10],[402,10],[402,10],[101,8],[101,8],[101,8],[101,8],[101,8],[101,8],[101,8],[101,8],[202,9],[202,9],[404,10],[404,10],[405,10],[405,10],[203,9],[203,9],[406,10],[406,10],[407,10],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[204,9],[204,9],[204,9],[204,9],[204,9],[204,9],[408,10],[409,10],[205,9],[205,9],[411,10],[411,10],[103,8],[103,8],[103,8],[103,8],[206,9],[206,9],[412,10],[412,10],[413,10],[413,10],[413,10],[413,10],[413,10],[207,9],[207,9],[207,9],[207,9],[207,9],[414,10],[414,10],[414,10],[415,10],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[208,9],[208,9],[208,9],[208,9],[208,9],[208,9],[416,10],[417,10],[417,10],[209,9],[209,9],[209,9],[209,9],[209,9],[418,10],[418,10],[418,10],[419,10],[419,10],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[210,9],[210,9],[210,9],[420,10],[421,10],[211,9],[211,9],[211,9],[211,9],[211,9],[211,9],[422,10],[422,10],[422,10],[422,10],[423,10],[423,10],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[106,8],[106,8],[106,8],[106,8],[106,8],[106,8],[106,8],[106,8],[212,9],[212,9],[212,9],[213,9],[213,9],[213,9],[426,10],[426,10],[426,10],[427,10],[427,10],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[214,9],[214,9],[214,9],[214,9],[428,10],[428,10],[429,10],[215,9],[215,9],[215,9],[215,9],[430,10],[430,10],[430,10],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[216,9],[216,9],[216,9],[216,9],[216,9],[216,9],[432,10],[433,10],[433,10],[433,10],[217,9],[217,9],[217,9],[217,9],[434,10],[434,10],[434,10],[435,10],[435,10],[435,10],[435,10],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[218,9],[218,9],[436,10],[219,9],[439,10],[439,10],[439,10],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[220,9],[220,9],[220,9],[440,10],[441,10],[221,9],[221,9],[221,9],[221,9],[221,9],[221,9],[221,9],[221,9],[442,10],[443,10],[443,10],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[222,9],[222,9],[444,10],[444,10],[444,10],[445,10],[445,10],[445,10],[445,10],[223,9],[223,9],[223,9],[223,9],[223,9],[223,9],[223,9],[223,9],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[112,8],[112,8],[112,8],[112,8],[112,8],[224,9],[224,9],[448,10],[448,10],[448,10],[449,10],[225,9],[225,9],[225,9],[225,9],[450,10],[450,10],[450,10],[451,10],[451,10],[451,10],[451,10],[113,8],[113,8],[113,8],[113,8],[113,8],[113,8],[113,8],[113,8],[226,9],[226,9],[226,9],[226,9],[226,9],[226,9],[452,10],[452,10],[452,10],[452,10],[453,10],[453,10],[227,9],[227,9],[227,9],[227,9],[454,10],[454,10],[455,10],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[114,8],[114,8],[114,8],[114,8],[114,8],[114,8],[228,9],[228,9],[228,9],[228,9],[228,9],[456,10],[456,10],[229,9],[229,9],[458,10],[458,10],[459,10],[115,8],[115,8],[115,8],[115,8],[115,8],[115,8],[115,8],[115,8],[230,9],[230,9],[230,9],[230,9],[460,10],[231,9],[462,10],[463,10],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[116,8],[116,8],[116,8],[116,8],[116,8],[232,9],[232,9],[232,9],[464,10],[464,10],[464,10],[465,10],[465,10],[233,9],[233,9],[233,9],[233,9],[233,9],[233,9],[233,9],[233,9],[466,10],[466,10],[467,10],[117,8],[117,8],[117,8],[117,8],[117,8],[117,8],[117,8],[117,8],[234,9],[234,9],[468,10],[469,10],[235,9],[235,9],[235,9],[470,10],[471,10],[471,10],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[118,8],[118,8],[118,8],[118,8],[236,9],[236,9],[472,10],[473,10],[473,10],[473,10],[237,9],[237,9],[237,9],[474,10],[474,10],[475,10],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[238,9],[238,9],[238,9],[238,9],[238,9],[476,10],[476,10],[477,10],[477,10],[477,10],[477,10],[239,9],[239,9],[479,10],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[240,9],[240,9],[240,9],[240,9],[240,9],[240,9],[480,10],[480,10],[480,10],[481,10],[481,10],[481,10],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[482,10],[482,10],[482,10],[482,10],[483,10],[483,10],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[242,9],[242,9],[242,9],[242,9],[242,9],[484,10],[484,10],[485,10],[243,9],[243,9],[243,9],[243,9],[486,10],[487,10],[487,10],[487,10],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[122,8],[122,8],[122,8],[122,8],[244,9],[244,9],[489,10],[489,10],[489,10],[245,9],[245,9],[245,9],[490,10],[490,10],[491,10],[491,10],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[246,9],[492,10],[492,10],[493,10],[493,10],[493,10],[247,9],[247,9],[494,10],[495,10],[495,10],[495,10],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[124,8],[124,8],[124,8],[124,8],[124,8],[248,9],[248,9],[496,10],[496,10],[497,10],[497,10],[497,10],[249,9],[249,9],[249,9],[498,10],[498,10],[499,10],[125,8],[125,8],[125,8],[125,8],[125,8],[250,9],[250,9],[250,9],[250,9],[500,10],[500,10],[500,10],[500,10],[501,10],[501,10],[501,10],[251,9],[251,9],[251,9],[251,9],[251,9],[251,9],[251,9],[251,9],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[503,10],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[126,8],[126,8],[126,8],[126,8],[252,9],[252,9],[252,9],[252,9],[504,10],[504,10],[504,10],[505,10],[253,9],[253,9],[506,10],[506,10],[506,10],[507,10],[127,8],[127,8],[127,8],[127,8],[127,8],[127,8],[127,8],[127,8],[254,9],[254,9],[254,9],[254,9],[254,9],[254,9],[254,9],[508,10],[508,10],[509,10],[509,10],[509,10],[509,10],[255,9],[255,9],[255,9],[255,9],[255,9],[510,10],[511,10],[511,10],[511,10],[511,10],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[2,2],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[128,8],[128,8],[128,8],[128,8],[256,9],[256,9],[256,9],[256,9],[256,9],[256,9],[256,9],[256,9],[512,10],[512,10],[513,10],[513,10],[513,10],[513,10],[257,9],[257,9],[514,10],[514,10],[515,10],[129,8],[129,8],[129,8],[129,8],[129,8],[129,8],[258,9],[258,9],[516,10],[516,10],[517,10],[517,10],[517,10],[259,9],[259,9],[259,9],[259,9],[259,9],[518,10],[518,10],[518,10],[518,10],[518,10],[519,10],[519,10],[519,10],[519,10],[519,10],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[260,9],[260,9],[260,9],[260,9],[260,9],[260,9],[520,10],[520,10],[521,10],[521,10],[521,10],[261,9],[261,9],[522,10],[522,10],[522,10],[522,10],[523,10],[523,10],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[262,9],[262,9],[262,9],[262,9],[524,10],[524,10],[263,9],[263,9],[263,9],[526,10],[526,10],[526,10],[526,10],[527,10],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[264,9],[264,9],[264,9],[264,9],[264,9],[264,9],[264,9],[264,9],[528,10],[529,10],[265,9],[265,9],[265,9],[265,9],[265,9],[530,10],[530,10],[531,10],[531,10],[531,10],[531,10],[133,8],[133,8],[133,8],[133,8],[133,8],[133,8],[266,9],[266,9],[266,9],[266,9],[266,9],[266,9],[266,9],[266,9],[532,10],[533,10],[267,9],[267,9],[267,9],[534,10],[535,10],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[268,9],[268,9],[268,9],[268,9],[268,9],[536,10],[536,10],[536,10],[537,10],[269,9],[269,9],[269,9],[269,9],[538,10],[539,10],[539,10],[539,10],[539,10],[539,10],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[270,9],[270,9],[540,10],[540,10],[540,10],[541,10],[541,10],[271,9],[271,9],[271,9],[271,9],[271,9],[271,9],[271,9],[542,10],[542,10],[543,10],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[136,8],[136,8],[136,8],[136,8],[136,8],[136,8],[136,8],[272,9],[272,9],[272,9],[544,10],[544,10],[544,10],[544,10],[545,10],[545,10],[545,10],[545,10],[273,9],[273,9],[273,9],[546,10],[547,10],[137,8],[137,8],[137,8],[137,8],[137,8],[137,8],[137,8],[137,8],[274,9],[274,9],[274,9],[274,9],[274,9],[274,9],[548,10],[549,10],[549,10],[275,9],[275,9],[275,9],[275,9],[550,10],[551,10],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[138,8],[138,8],[138,8],[138,8],[138,8],[138,8],[138,8],[138,8],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[552,10],[553,10],[553,10],[553,10],[277,9],[277,9],[554,10],[554,10],[554,10],[554,10],[554,10],[555,10],[555,10],[139,8],[139,8],[278,9],[278,9],[278,9],[556,10],[557,10],[557,10],[557,10],[279,9],[279,9],[279,9],[279,9],[558,10],[558,10],[559,10],[559,10],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[140,8],[140,8],[140,8],[140,8],[140,8],[140,8],[280,9],[280,9],[280,9],[280,9],[280,9],[560,10],[561,10],[561,10],[561,10],[561,10],[561,10],[281,9],[281,9],[281,9],[281,9],[562,10],[562,10],[563,10],[563,10],[141,8],[141,8],[141,8],[141,8],[141,8],[141,8],[282,9],[282,9],[565,10],[565,10],[283,9],[283,9],[283,9],[283,9],[283,9],[283,9],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[284,9],[284,9],[284,9],[284,9],[284,9],[284,9],[284,9],[568,10],[569,10],[285,9],[285,9],[285,9],[285,9],[285,9],[285,9],[285,9],[570,10],[570,10],[571,10],[571,10],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[286,9],[286,9],[572,10],[572,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[287,9],[287,9],[287,9],[287,9],[287,9],[287,9],[287,9],[287,9],[574,10],[574,10],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[144,8],[144,8],[144,8],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[576,10],[576,10],[577,10],[289,9],[289,9],[289,9],[289,9],[289,9],[578,10],[578,10],[579,10],[145,8],[145,8],[145,8],[145,8],[145,8],[145,8],[290,9],[290,9],[290,9],[580,10],[580,10],[580,10],[581,10],[581,10],[581,10],[581,10],[581,10],[291,9],[291,9],[291,9],[582,10],[582,10],[582,10],[583,10],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[292,9],[292,9],[292,9],[584,10],[584,10],[585,10],[585,10],[293,9],[293,9],[293,9],[586,10],[587,10],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[294,9],[294,9],[294,9],[294,9],[294,9],[294,9],[589,10],[589,10],[589,10],[589,10],[295,9],[590,10],[590,10],[591,10],[591,10],[591,10],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[148,8],[148,8],[148,8],[148,8],[148,8],[148,8],[148,8],[296,9],[296,9],[593,10],[297,9],[297,9],[297,9],[297,9],[297,9],[297,9],[297,9],[594,10],[594,10],[594,10],[594,10],[595,10],[595,10],[149,8],[149,8],[149,8],[149,8],[149,8],[149,8],[298,9],[298,9],[298,9],[298,9],[298,9],[596,10],[596,10],[596,10],[597,10],[299,9],[299,9],[299,9],[299,9],[299,9],[598,10],[598,10],[598,10],[599,10],[599,10],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[300,9],[300,9],[600,10],[601,10],[601,10],[301,9],[301,9],[301,9],[602,10],[603,10],[151,8],[151,8],[151,8],[151,8],[151,8],[302,9],[302,9],[302,9],[302,9],[302,9],[302,9],[604,10],[604,10],[604,10],[605,10],[605,10],[303,9],[303,9],[303,9],[303,9],[606,10],[606,10],[607,10],[607,10],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[152,8],[152,8],[152,8],[152,8],[152,8],[152,8],[304,9],[304,9],[304,9],[304,9],[608,10],[609,10],[305,9],[305,9],[305,9],[305,9],[610,10],[611,10],[611,10],[611,10],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[306,9],[306,9],[306,9],[306,9],[306,9],[306,9],[306,9],[612,10],[612,10],[613,10],[613,10],[307,9],[307,9],[307,9],[307,9],[307,9],[307,9],[307,9],[307,9],[614,10],[614,10],[615,10],[615,10],[615,10],[615,10],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[308,9],[308,9],[308,9],[616,10],[616,10],[617,10],[617,10],[309,9],[309,9],[309,9],[309,9],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[310,9],[620,10],[621,10],[621,10],[311,9],[311,9],[311,9],[311,9],[311,9],[622,10],[622,10],[623,10],[623,10],[623,10],[623,10],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[156,8],[156,8],[156,8],[312,9],[312,9],[312,9],[624,10],[624,10],[624,10],[625,10],[313,9],[313,9],[313,9],[313,9],[313,9],[626,10],[626,10],[627,10],[627,10],[627,10],[157,8],[157,8],[157,8],[314,9],[314,9],[314,9],[628,10],[629,10],[315,9],[315,9],[315,9],[630,10],[631,10],[631,10],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[158,8],[158,8],[158,8],[158,8],[158,8],[158,8],[158,8],[316,9],[316,9],[316,9],[316,9],[316,9],[316,9],[316,9],[316,9],[632,10],[633,10],[633,10],[633,10],[317,9],[317,9],[317,9],[317,9],[634,10],[635,10],[635,10],[635,10],[159,8],[159,8],[318,9],[318,9],[318,9],[318,9],[318,9],[318,9],[636,10],[636,10],[637,10],[637,10],[319,9],[638,10],[638,10],[638,10],[638,10],[639,10],[639,10],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[160,8],[160,8],[160,8],[160,8],[160,8],[160,8],[160,8],[320,9],[320,9],[320,9],[640,10],[640,10],[640,10],[640,10],[641,10],[641,10],[321,9],[321,9],[642,10],[642,10],[642,10],[642,10],[642,10],[643,10],[643,10],[161,8],[161,8],[161,8],[161,8],[161,8],[161,8],[161,8],[322,9],[322,9],[322,9],[322,9],[322,9],[322,9],[644,10],[645,10],[645,10],[645,10],[645,10],[645,10],[323,9],[323,9],[323,9],[323,9],[323,9],[646,10],[647,10],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[162,8],[162,8],[162,8],[162,8],[162,8],[162,8],[324,9],[324,9],[324,9],[324,9],[648,10],[649,10],[649,10],[649,10],[649,10],[649,10],[325,9],[325,9],[325,9],[325,9],[325,9],[325,9],[650,10],[651,10],[163,8],[163,8],[163,8],[163,8],[163,8],[326,9],[326,9],[326,9],[326,9],[327,9],[327,9],[327,9],[327,9],[327,9],[654,10],[654,10],[654,10],[655,10],[655,10],[655,10],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[164,8],[164,8],[164,8],[656,10],[657,10],[329,9],[329,9],[329,9],[658,10],[659,10],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[660,10],[660,10],[661,10],[661,10],[661,10],[661,10],[331,9],[331,9],[331,9],[662,10],[662,10],[663,10],[663,10],[663,10],[663,10],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[332,9],[332,9],[332,9],[332,9],[332,9],[332,9],[664,10],[664,10],[664,10],[664,10],[665,10],[333,9],[333,9],[333,9],[333,9],[333,9],[333,9],[667,10],[667,10],[667,10],[667,10],[667,10],[167,8],[167,8],[167,8],[167,8],[334,9],[334,9],[334,9],[668,10],[669,10],[669,10],[335,9],[335,9],[335,9],[335,9],[670,10],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[168,8],[168,8],[168,8],[168,8],[168,8],[168,8],[168,8],[336,9],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[673,10],[673,10],[337,9],[337,9],[337,9],[337,9],[337,9],[337,9],[674,10],[675,10],[675,10],[675,10],[675,10],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[338,9],[338,9],[338,9],[338,9],[338,9],[338,9],[338,9],[338,9],[677,10],[339,9],[339,9],[339,9],[339,9],[339,9],[678,10],[679,10],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[340,9],[340,9],[340,9],[340,9],[340,9],[680,10],[680,10],[681,10],[681,10],[681,10],[341,9],[682,10],[682,10],[683,10],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[342,9],[342,9],[342,9],[684,10],[684,10],[684,10],[685,10],[685,10],[685,10],[685,10],[343,9],[343,9],[343,9],[343,9],[686,10],[686,10],[686,10],[687,10],[687,10],[687,10],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[172,8],[172,8],[172,8],[172,8],[344,9],[344,9],[344,9],[344,9],[688,10],[688,10],[688,10],[689,10],[345,9],[345,9],[345,9],[345,9],[345,9],[345,9],[690,10],[690,10],[690,10],[690,10],[690,10],[691,10],[173,8],[173,8],[173,8],[173,8],[173,8],[346,9],[346,9],[346,9],[693,10],[693,10],[347,9],[347,9],[347,9],[347,9],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[174,8],[174,8],[174,8],[174,8],[174,8],[174,8],[174,8],[348,9],[348,9],[348,9],[348,9],[696,10],[696,10],[696,10],[697,10],[349,9],[349,9],[349,9],[349,9],[698,10],[699,10],[699,10],[699,10],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[350,9],[350,9],[350,9],[350,9],[350,9],[350,9],[700,10],[700,10],[700,10],[701,10],[351,9],[351,9],[351,9],[351,9],[702,10],[703,10],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[176,8],[176,8],[176,8],[176,8],[176,8],[352,9],[352,9],[704,10],[704,10],[704,10],[704,10],[704,10],[705,10],[705,10],[353,9],[353,9],[353,9],[353,9],[353,9],[706,10],[706,10],[707,10],[707,10],[707,10],[177,8],[177,8],[177,8],[177,8],[177,8],[177,8],[177,8],[177,8],[354,9],[354,9],[354,9],[354,9],[354,9],[708,10],[708,10],[708,10],[708,10],[709,10],[709,10],[355,9],[355,9],[355,9],[710,10],[711,10],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[178,8],[178,8],[178,8],[178,8],[178,8],[178,8],[178,8],[356,9],[356,9],[356,9],[712,10],[712,10],[357,9],[357,9],[357,9],[357,9],[357,9],[715,10],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[358,9],[358,9],[358,9],[716,10],[716,10],[716,10],[716,10],[717,10],[717,10],[717,10],[717,10],[359,9],[359,9],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[180,8],[180,8],[180,8],[180,8],[180,8],[180,8],[180,8],[360,9],[360,9],[721,10],[361,9],[361,9],[361,9],[361,9],[361,9],[722,10],[723,10],[181,8],[181,8],[181,8],[181,8],[181,8],[181,8],[181,8],[181,8],[362,9],[362,9],[724,10],[724,10],[724,10],[725,10],[725,10],[725,10],[725,10],[363,9],[363,9],[363,9],[363,9],[363,9],[363,9],[363,9],[363,9],[726,10],[726,10],[726,10],[726,10],[727,10],[727,10],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[364,9],[364,9],[364,9],[364,9],[728,10],[728,10],[728,10],[729,10],[729,10],[729,10],[365,9],[365,9],[365,9],[730,10],[730,10],[731,10],[731,10],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[366,9],[366,9],[366,9],[732,10],[732,10],[732,10],[367,9],[367,9],[367,9],[367,9],[367,9],[734,10],[735,10],[735,10],[735,10],[735,10],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[184,8],[184,8],[184,8],[184,8],[184,8],[184,8],[368,9],[368,9],[368,9],[368,9],[368,9],[368,9],[736,10],[737,10],[737,10],[369,9],[369,9],[369,9],[739,10],[739,10],[185,8],[185,8],[185,8],[185,8],[370,9],[370,9],[370,9],[370,9],[370,9],[740,10],[741,10],[371,9],[371,9],[371,9],[371,9],[742,10],[743,10],[743,10],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[186,8],[186,8],[186,8],[372,9],[372,9],[372,9],[372,9],[744,10],[744,10],[744,10],[745,10],[373,9],[373,9],[746,10],[747,10],[747,10],[747,10],[747,10],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[374,9],[374,9],[374,9],[374,9],[374,9],[748,10],[748,10],[748,10],[749,10],[375,9],[375,9],[375,9],[375,9],[375,9],[375,9],[750,10],[750,10],[751,10],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[188,8],[188,8],[188,8],[188,8],[188,8],[188,8],[188,8],[188,8],[376,9],[376,9],[376,9],[376,9],[752,10],[752,10],[753,10],[377,9],[377,9],[755,10],[755,10],[755,10],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[757,10],[757,10],[757,10],[757,10],[379,9],[379,9],[758,10],[758,10],[95,7],[95,7],[95,7],[95,7],[95,7],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[380,9],[380,9],[760,10],[760,10],[761,10],[381,9],[381,9],[381,9],[381,9],[762,10],[762,10],[762,10],[763,10],[763,10],[763,10],[191,8],[191,8],[191,8],[191,8],[191,8],[191,8],[191,8],[191,8],[382,9],[382,9],[382,9],[764,10],[764,10],[765,10],[765,10],[765,10],[383,9],[383,9],[383,9],[383,9],[766,10],[766,10],[766,10],[767,10],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[192,8],[192,8],[192,8],[192,8],[192,8],[192,8],[384,9],[384,9],[384,9],[384,9],[384,9],[768,10],[768,10],[769,10],[769,10],[385,9],[385,9],[385,9],[770,10],[770,10],[770,10],[770,10],[771,10],[771,10],[193,8],[193,8],[193,8],[193,8],[193,8],[193,8],[386,9],[386,9],[386,9],[386,9],[386,9],[772,10],[773,10],[773,10],[387,9],[387,9],[387,9],[387,9],[387,9],[775,10],[775,10],[775,10],[775,10],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[194,8],[194,8],[194,8],[194,8],[194,8],[194,8],[194,8],[194,8],[388,9],[388,9],[388,9],[388,9],[777,10],[389,9],[389,9],[389,9],[389,9],[389,9],[389,9],[389,9],[779,10],[779,10],[779,10],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[390,9],[390,9],[390,9],[390,9],[390,9],[390,9],[390,9],[390,9],[780,10],[780,10],[781,10],[391,9],[391,9],[783,10],[783,10],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[196,8],[196,8],[196,8],[196,8],[196,8],[196,8],[196,8],[196,8],[392,9],[392,9],[392,9],[392,9],[392,9],[784,10],[784,10],[785,10],[785,10],[785,10],[785,10],[785,10],[393,9],[393,9],[393,9],[393,9],[393,9],[393,9],[786,10],[786,10],[786,10],[787,10],[787,10],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[394,9],[789,10],[395,9],[395,9],[395,9],[395,9],[395,9],[395,9],[395,9],[790,10],[790,10],[791,10],[791,10],[791,10],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[396,9],[396,9],[396,9],[396,9],[396,9],[396,9],[396,9],[792,10],[793,10],[793,10],[793,10],[793,10],[397,9],[397,9],[397,9],[397,9],[397,9],[794,10],[795,10],[795,10],[795,10],[199,8],[199,8],[199,8],[199,8],[199,8],[199,8],[398,9],[398,9],[398,9],[398,9],[398,9],[796,10],[796,10],[796,10],[796,10],[796,10],[797,10],[399,9],[399,9],[399,9],[399,9],[399,9],[399,9],[399,9],[399,9],[798,10],[798,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[200,8],[200,8],[200,8],[200,8],[200,8],[200,8],[200,8],[200,8],[400,9],[400,9],[400,9],[400,9],[400,9],[800,10],[800,10],[800,10],[801,10],[801,10],[401,9],[401,9],[401,9],[401,9],[802,10],[803,10],[803,10],[803,10],[201,8],[201,8],[201,8],[201,8],[201,8],[201,8],[201,8],[402,9],[402,9],[804,10],[804,10],[804,10],[805,10],[805,10],[805,10],[403,9],[403,9],[403,9],[403,9],[806,10],[806,10],[806,10],[807,10],[807,10],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[202,8],[202,8],[202,8],[202,8],[202,8],[202,8],[202,8],[404,9],[404,9],[404,9],[404,9],[404,9],[809,10],[405,9],[405,9],[405,9],[810,10],[810,10],[810,10],[810,10],[811,10],[203,8],[203,8],[203,8],[203,8],[203,8],[203,8],[406,9],[406,9],[406,9],[812,10],[812,10],[812,10],[813,10],[813,10],[813,10],[813,10],[813,10],[407,9],[407,9],[407,9],[815,10],[815,10],[815,10],[815,10],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[408,9],[408,9],[408,9],[408,9],[408,9],[408,9],[816,10],[816,10],[816,10],[817,10],[817,10],[817,10],[817,10],[409,9],[409,9],[409,9],[409,9],[409,9],[409,9],[409,9],[818,10],[819,10],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[410,9],[410,9],[410,9],[410,9],[410,9],[820,10],[820,10],[820,10],[820,10],[821,10],[411,9],[411,9],[822,10],[822,10],[822,10],[822,10],[822,10],[823,10],[823,10],[823,10],[823,10],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[412,9],[412,9],[824,10],[824,10],[824,10],[413,9],[826,10],[207,8],[207,8],[207,8],[207,8],[207,8],[207,8],[207,8],[207,8],[414,9],[414,9],[414,9],[414,9],[828,10],[828,10],[828,10],[828,10],[829,10],[829,10],[829,10],[415,9],[415,9],[415,9],[830,10],[830,10],[831,10],[831,10],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[208,8],[208,8],[208,8],[208,8],[208,8],[208,8],[208,8],[416,9],[416,9],[416,9],[416,9],[416,9],[832,10],[832,10],[833,10],[417,9],[417,9],[834,10],[834,10],[834,10],[834,10],[835,10],[835,10],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[418,9],[418,9],[418,9],[837,10],[837,10],[419,9],[838,10],[839,10],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[420,9],[420,9],[420,9],[420,9],[840,10],[840,10],[841,10],[841,10],[421,9],[421,9],[421,9],[842,10],[842,10],[842,10],[842,10],[842,10],[843,10],[843,10],[211,8],[211,8],[211,8],[211,8],[211,8],[211,8],[422,9],[422,9],[422,9],[845,10],[845,10],[423,9],[423,9],[423,9],[423,9],[846,10],[846,10],[846,10],[847,10],[847,10],[847,10],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[106,7],[106,7],[106,7],[106,7],[106,7],[106,7],[106,7],[106,7],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[424,9],[424,9],[424,9],[424,9],[424,9],[424,9],[848,10],[849,10],[849,10],[849,10],[849,10],[425,9],[425,9],[425,9],[850,10],[850,10],[850,10],[850,10],[851,10],[851,10],[213,8],[213,8],[213,8],[213,8],[213,8],[213,8],[213,8],[213,8],[426,9],[852,10],[852,10],[427,9],[427,9],[427,9],[427,9],[427,9],[854,10],[854,10],[854,10],[855,10],[855,10],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[214,8],[214,8],[214,8],[214,8],[214,8],[428,9],[428,9],[428,9],[428,9],[428,9],[428,9],[857,10],[429,9],[429,9],[429,9],[429,9],[429,9],[858,10],[858,10],[859,10],[859,10],[859,10],[859,10],[859,10],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[430,9],[430,9],[430,9],[430,9],[430,9],[430,9],[430,9],[430,9],[860,10],[861,10],[861,10],[431,9],[431,9],[862,10],[862,10],[862,10],[862,10],[863,10],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[216,8],[216,8],[216,8],[216,8],[216,8],[216,8],[216,8],[432,9],[432,9],[432,9],[864,10],[864,10],[864,10],[865,10],[865,10],[433,9],[433,9],[867,10],[867,10],[867,10],[217,8],[217,8],[217,8],[217,8],[217,8],[217,8],[217,8],[434,9],[434,9],[434,9],[868,10],[868,10],[869,10],[435,9],[435,9],[435,9],[435,9],[435,9],[870,10],[870,10],[870,10],[870,10],[871,10],[871,10],[871,10],[871,10],[871,10],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[872,10],[872,10],[873,10],[873,10],[873,10],[873,10],[873,10],[437,9],[437,9],[437,9],[874,10],[874,10],[875,10],[875,10],[875,10],[219,8],[219,8],[219,8],[219,8],[219,8],[219,8],[438,9],[438,9],[438,9],[438,9],[876,10],[876,10],[876,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[439,9],[439,9],[439,9],[879,10],[879,10],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[440,9],[440,9],[440,9],[440,9],[441,9],[441,9],[441,9],[882,10],[882,10],[882,10],[883,10],[883,10],[883,10],[221,8],[221,8],[221,8],[221,8],[221,8],[221,8],[442,9],[442,9],[884,10],[885,10],[885,10],[443,9],[443,9],[443,9],[443,9],[443,9],[886,10],[887,10],[887,10],[887,10],[887,10],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[222,8],[222,8],[222,8],[222,8],[222,8],[222,8],[222,8],[444,9],[444,9],[444,9],[888,10],[889,10],[889,10],[889,10],[445,9],[445,9],[445,9],[890,10],[890,10],[891,10],[891,10],[223,8],[223,8],[223,8],[223,8],[446,9],[446,9],[446,9],[446,9],[892,10],[892,10],[892,10],[893,10],[893,10],[893,10],[447,9],[447,9],[447,9],[447,9],[447,9],[447,9],[894,10],[894,10],[894,10],[895,10],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[224,8],[224,8],[224,8],[224,8],[224,8],[224,8],[224,8],[448,9],[448,9],[448,9],[448,9],[896,10],[897,10],[897,10],[449,9],[449,9],[898,10],[898,10],[899,10],[899,10],[899,10],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[450,9],[450,9],[450,9],[900,10],[900,10],[901,10],[901,10],[451,9],[451,9],[451,9],[451,9],[451,9],[902,10],[902,10],[902,10],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[452,9],[452,9],[452,9],[452,9],[452,9],[452,9],[452,9],[904,10],[905,10],[905,10],[453,9],[453,9],[453,9],[453,9],[906,10],[906,10],[906,10],[907,10],[227,8],[227,8],[227,8],[227,8],[227,8],[454,9],[908,10],[908,10],[909,10],[909,10],[909,10],[455,9],[455,9],[910,10],[910,10],[910,10],[910,10],[911,10],[911,10],[911,10],[911,10],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[228,8],[228,8],[228,8],[228,8],[228,8],[228,8],[228,8],[228,8],[456,9],[456,9],[912,10],[912,10],[912,10],[912,10],[912,10],[913,10],[913,10],[913,10],[913,10],[913,10],[457,9],[457,9],[457,9],[457,9],[457,9],[457,9],[457,9],[914,10],[915,10],[915,10],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[458,9],[916,10],[917,10],[917,10],[459,9],[459,9],[459,9],[459,9],[918,10],[918,10],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[230,8],[230,8],[230,8],[230,8],[230,8],[230,8],[460,9],[460,9],[460,9],[460,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[922,10],[922,10],[231,8],[231,8],[231,8],[231,8],[231,8],[231,8],[462,9],[462,9],[462,9],[462,9],[462,9],[462,9],[924,10],[925,10],[463,9],[463,9],[463,9],[927,10],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[232,8],[232,8],[232,8],[232,8],[232,8],[232,8],[232,8],[464,9],[464,9],[464,9],[464,9],[928,10],[928,10],[929,10],[929,10],[465,9],[465,9],[930,10],[930,10],[931,10],[931,10],[233,8],[233,8],[233,8],[233,8],[233,8],[233,8],[466,9],[466,9],[466,9],[466,9],[466,9],[466,9],[932,10],[932,10],[932,10],[933,10],[933,10],[933,10],[467,9],[467,9],[467,9],[467,9],[935,10],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[234,8],[234,8],[234,8],[234,8],[234,8],[468,9],[468,9],[468,9],[468,9],[468,9],[468,9],[936,10],[936,10],[937,10],[937,10],[469,9],[469,9],[469,9],[469,9],[469,9],[938,10],[938,10],[938,10],[938,10],[235,8],[235,8],[235,8],[235,8],[235,8],[235,8],[235,8],[235,8],[470,9],[470,9],[470,9],[470,9],[470,9],[470,9],[940,10],[940,10],[940,10],[940,10],[941,10],[941,10],[941,10],[941,10],[941,10],[471,9],[471,9],[471,9],[942,10],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[472,9],[472,9],[472,9],[472,9],[472,9],[472,9],[944,10],[944,10],[944,10],[944,10],[945,10],[945,10],[473,9],[473,9],[473,9],[473,9],[473,9],[946,10],[947,10],[947,10],[237,8],[237,8],[237,8],[237,8],[237,8],[237,8],[474,9],[474,9],[474,9],[474,9],[474,9],[474,9],[474,9],[474,9],[948,10],[948,10],[948,10],[948,10],[949,10],[949,10],[949,10],[949,10],[949,10],[475,9],[475,9],[475,9],[950,10],[950,10],[951,10],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[238,8],[238,8],[238,8],[238,8],[238,8],[476,9],[476,9],[476,9],[476,9],[476,9],[952,10],[953,10],[953,10],[953,10],[953,10],[477,9],[477,9],[477,9],[477,9],[954,10],[954,10],[955,10],[239,8],[239,8],[239,8],[239,8],[239,8],[239,8],[239,8],[239,8],[478,9],[478,9],[478,9],[956,10],[956,10],[956,10],[479,9],[479,9],[479,9],[958,10],[958,10],[958,10],[959,10],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[961,10],[481,9],[481,9],[481,9],[481,9],[481,9],[962,10],[962,10],[962,10],[962,10],[963,10],[241,8],[241,8],[241,8],[241,8],[482,9],[482,9],[482,9],[964,10],[964,10],[964,10],[965,10],[965,10],[483,9],[966,10],[966,10],[967,10],[967,10],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[242,8],[242,8],[242,8],[242,8],[242,8],[242,8],[242,8],[242,8],[484,9],[484,9],[484,9],[484,9],[484,9],[485,9],[485,9],[485,9],[485,9],[970,10],[970,10],[970,10],[970,10],[970,10],[971,10],[971,10],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[486,9],[486,9],[486,9],[486,9],[486,9],[486,9],[972,10],[973,10],[487,9],[487,9],[487,9],[487,9],[487,9],[975,10],[975,10],[975,10],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[244,8],[244,8],[244,8],[488,9],[488,9],[976,10],[976,10],[976,10],[976,10],[976,10],[489,9],[489,9],[489,9],[489,9],[979,10],[979,10],[245,8],[245,8],[245,8],[245,8],[245,8],[245,8],[245,8],[490,9],[980,10],[980,10],[981,10],[981,10],[491,9],[491,9],[491,9],[491,9],[491,9],[491,9],[491,9],[491,9],[982,10],[983,10],[983,10],[983,10],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[246,8],[246,8],[246,8],[246,8],[246,8],[246,8],[246,8],[492,9],[492,9],[492,9],[492,9],[985,10],[493,9],[493,9],[493,9],[986,10],[987,10],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[494,9],[494,9],[494,9],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[989,10],[989,10],[989,10],[495,9],[495,9],[990,10],[991,10],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[496,9],[496,9],[496,9],[496,9],[497,9],[497,9],[994,10],[994,10],[994,10],[995,10],[995,10],[249,8],[249,8],[249,8],[498,9],[498,9],[498,9],[498,9],[996,10],[996,10],[996,10],[997,10],[499,9],[499,9],[499,9],[499,9],[499,9],[499,9],[998,10],[999,10],[999,10],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[500,9],[500,9],[500,9],[500,9],[1000,10],[501,9],[501,9],[501,9],[501,9],[501,9],[1002,10],[1003,10],[1003,10],[251,8],[251,8],[251,8],[251,8],[502,9],[502,9],[502,9],[502,9],[502,9],[1004,10],[1005,10],[503,9],[503,9],[503,9],[503,9],[503,9],[503,9],[503,9],[503,9],[1006,10],[1006,10],[1007,10],[1007,10],[1007,10],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[252,8],[252,8],[252,8],[252,8],[252,8],[252,8],[252,8],[504,9],[504,9],[504,9],[504,9],[504,9],[1008,10],[1008,10],[1008,10],[505,9],[505,9],[505,9],[505,9],[505,9],[505,9],[505,9],[1010,10],[1011,10],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[506,9],[506,9],[506,9],[506,9],[506,9],[506,9],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1013,10],[1013,10],[1013,10],[507,9],[507,9],[507,9],[1014,10],[1014,10],[1014,10],[1015,10],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[254,8],[254,8],[254,8],[254,8],[254,8],[254,8],[254,8],[508,9],[508,9],[1017,10],[1017,10],[1017,10],[509,9],[509,9],[509,9],[1018,10],[1018,10],[1019,10],[255,8],[255,8],[255,8],[510,9],[510,9],[1020,10],[1021,10],[511,9],[511,9],[511,9],[511,9],[511,9],[1022,10]]}]}] +[{"id":"fib","title":"Fibonacci","description":"Write the `fib` method to return the N'th term.\r\nWe start counting from:\r\n* fib(0) = 0\r\n* fib(1) = 1.\r\n\r\n### Examples\r\n\r\n* `0` -> `0`\r\n* `6` -> `8`","timeLimit":1,"level":1,"func":{"name":"fib","returnStatement":{"type":"java.lang.Long","comment":" N'th term of Fibonacci sequence"},"parameters":[{"name":"n","type":"java.lang.Integer","comment":"id of fibonacci term to be returned"}]},"testCases":[{"input":["0"],"output":0},{"input":["1"],"output":1},{"input":["2"],"output":1},{"input":["3"],"output":2},{"input":["4"],"output":3},{"input":["5"],"output":5},{"input":["6"],"output":8},{"input":["20"],"output":6765},{"input":["40"],"output":102334155}]}, +{"id":"number-of-leaves","title":"Count the Leaves","description":"Write a method `countLeaves` to find the total number of leaf nodes in a binary tree. If there is no leaf nodes, return 0..\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> # count = 4\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":1,"func":{"name":"countLeaves","returnStatement":{"type":"java.lang.Integer","comment":" Number of leaf nodes"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":2},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, +{"id":"isomorphic-strings","title":"Isomorphic Strings","description":"Given two strings - input1 and input2, implement method `isIsomorphic` to determine if they are isomorphic. Two strings are isomorphic if the letters in one string can be remapped to get the second string. Remapping a letter means replacing all occurrences of it with another letter. The ordering of the letters remains unchanged. You can also think of isomorphism as it is used in chemistry - i.e. having the same form or overall shape.\r\n\r\n### Examples\r\n\r\n* `'css', 'dll'` -> `true`\r\n* `'css', 'dle'` -> `false`","timeLimit":1,"level":2,"func":{"name":"isIsomorphic","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if strings are isomorphic"},"parameters":[{"name":"input1","type":"java.lang.String","comment":"input string 1 to be checked (ASCII)"},{"name":"input2","type":"java.lang.String","comment":"input string 2 to be checked (ASCII)"}]},"testCases":[{"input":["","a"],"output":false},{"input":[null,""],"output":false},{"input":["",null],"output":false},{"input":["",""],"output":true},{"input":[null,null],"output":false},{"input":["css","dll"],"output":true},{"input":["css","dle"],"output":false},{"input":["abcabc","xyzxyz"],"output":true},{"input":["abcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyz","xyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabc"],"output":true},{"input":["abcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyz","xyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabcxyzxyzbacabcxyzxyzabcabcxyzxyzabcabcxyzxyzabcabc"],"output":false},{"input":["abcabc","xyzxzy"],"output":false},{"input":["a","z"],"output":true}]}, +{"id":"vertical-flip","title":"Vertical Flip","description":"Given an m x n 2D image matrix where each integer represents a pixel, write a method `flipVerticalAxis` to flip it in-place along its vertical axis.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 0],\r\n [1, 0]]\r\n->\r\n[[0, 1],\r\n [0, 1]]\r\n```","timeLimit":1,"level":2,"func":{"name":"flipVerticalAxis","returnStatement":{"type":"void","comment":"Operation in-place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Image matrix to flip"}]},"testCases":[{"input":[[[1,0],[0,1]]],"output":[[0,1],[1,0]]},{"input":[[[1,0],[1,0]]],"output":[[0,1],[0,1]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1,0,1],[1,1,0],[0,1,1]]],"output":[[1,0,1],[0,1,1],[1,1,0]]}]}, +{"id":"palindrome-list","title":"Palindrome List","description":"Implement method `isPalindrome` with algorithm to check if a linked list is a palindrome.\r\n\r\n### Examples\r\n\r\n* `0->1->2->1->0` -> `true`","timeLimit":1,"level":1,"func":{"name":"isPalindrome","returnStatement":{"type":"java.lang.Boolean","comment":" Indicates if input linked list is palindrome"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List to check if it's palindrome"}]},"testCases":[{"input":[[0,1,2,1,0]],"output":true},{"input":[[0]],"output":true},{"input":[[]],"output":true},{"input":[[0,1,2,1,0,1,2,0,1,2,1,0]],"output":false},{"input":[[0,1,2,3,3,2,1,0]],"output":true},{"input":[[0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0]],"output":true},{"input":[[0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,7,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0,0,1,2,3,3,2,1,0]],"output":false}]}, +{"id":"transpose-matrix","title":"Transpose Matrix","description":"You are given a square 2D image matrix where each integer represents a pixel. Write a method `transposeMatrix` to transform the matrix into its transpose - in-place. The transpose of a matrix is a matrix which is formed by turning all the rows of the source matrix into columns and vice-versa..\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 2, 3, 4],\r\n [5, 6, 7, 8],\r\n [9, 0, 1, 2],\r\n [3, 4, 5, 0]]\r\n->\r\n[[1, 5, 9, 3],\r\n [2, 6, 0, 4],\r\n [3, 7, 1, 5],\r\n [4, 8, 2, 0]]\r\n```","timeLimit":1,"level":1,"func":{"name":"transposeMatrix","returnStatement":{"type":"void","comment":" Operation in place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Matrix to transpose"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":[[1,5,9,3],[2,6,0,4],[3,7,1,5],[4,8,2,0]]},{"input":[[[0,2,3,4],[5,6,0,8],[9,0,1,2],[3,4,5,0]]],"output":[[0,5,9,3],[2,6,0,4],[3,0,1,5],[4,8,2,0]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1]]],"output":[[1]]},{"input":[[[1,0],[1,0]]],"output":[[1,1],[0,0]]}]}, +{"id":"2-sum","title":"2 Sum","description":"Given an array of integers, find two numbers such that they add up to a specific target number.\r\n\r\nThe method `twoSum` should return indices of the two numbers such that they add up to the target, where *index1* must be less than *index2*. Please note that your returned answers (both *index1* and *index2*) are not zero-based.\r\n\r\n**Note**: You may assume that each input would have exactly one solution.\r\n\r\n### Example\r\n\r\n* `[2,7,11,15], 9` -> `[1,2]`","timeLimit":1,"level":2,"func":{"name":"twoSum","returnStatement":{"type":"[I","comment":" Indices of the two numbers"},"parameters":[{"name":"numbers","type":"[I","comment":"An array of Integer"},{"name":"target","type":"java.lang.Integer","comment":"target = numbers[index1] + numbers[index2]"}]},"testCases":[{"input":[[2,7,11,15],9],"output":[1,2]},{"input":[[1,0,-1],-1],"output":[2,3]},{"input":[[1,0,-1],0],"output":[1,3]},{"input":[[1,0,-1],1],"output":[1,2]},{"input":[[1,2,5,6,7,3,5,8,-33,-5,-72,12,-34,100,99],-64],"output":[8,11]},{"input":[[1,2,33,23,2423,33,23,1,7,6,8787,5,33,2,3,-23,-54,-67,100,400],407],"output":[9,20]},{"input":[[-1,-2,-3,-4,-5,-6,-100,-98,-111,-11],-111],"output":[7,10]},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,9,9,10,11,1001,2001,198,201,203,201,999,345,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,1,1,1,1,1,1,1,1,1,1,1,101,1,1,1,1,1,1,1,1],107],"output":[78,90]}]}, +{"id":"repeated-elements","title":"Repeated Elements","description":"Write a method `findDuplicates` to find the repeated or duplicate elements in an array. This method should return a list of repeated integers in a string with the elements sorted in ascending order.\r\n\r\n### Example\r\n\r\n* `[2,5,7,11,15,11,15]` -> `'[11, 15]'`\r\n* `[2,5,7]` -> `'[]'`","timeLimit":1,"level":2,"func":{"name":"findDuplicates","returnStatement":{"type":"java.lang.String","comment":" Array of sorted numbers representing duplicates in original array"},"parameters":[{"name":"arr","type":"[I","comment":"An array of Integers"}]},"testCases":[{"input":[[2,5,7,11,15,11,15]],"output":"[11, 15]"},{"input":[[2,5,7,11,15,11,2,4,5]],"output":"[2, 5, 11]"},{"input":[[2,5,7,11,15,4]],"output":"[]"},{"input":[[7,5,2,2,5,7,7,7,2,2,5,5]],"output":"[2, 5, 7]"},{"input":[[]],"output":"[]"}]}, +{"id":"reverse-list","title":"Reverse Linked List","description":"Given a singly linked list, write a method `reverseList` to reverse the list and return new head.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6` -> `6->5->4->3->2->1`","timeLimit":1,"level":2,"func":{"name":"reverseList","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Reversed linked list"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":[6,5,4,3,2,1]},{"input":[[1]],"output":[1]},{"input":[[1,2]],"output":[2,1]},{"input":[[2,2]],"output":[2,2]},{"input":[null],"output":null}]}, +{"id":"binary-representation","title":"Binary Representation","description":"Write a method `computeBinary` to compute the binary representation of an integer. The method should return a string with 1s and 0s. Use the minimum number of binary digits needed for representation (truncate unnecessary 0s).\n\n**Note**: using java framework to solve it is forbidden - you have to code it by yourself.\n\n### Example\n\n* `6` -> `'110'`\n* `-5` -> `'11111111111111111111111111111011'`","timeLimit":2,"level":2,"func":{"name":"computeBinary","returnStatement":{"type":"java.lang.String","comment":" Binary representation"},"parameters":[{"name":"value","type":"java.lang.Integer","comment":"Input number"}]},"testCases":[{"input":[5],"output":"101"},{"input":[6],"output":"110"},{"input":[-5],"output":"11111111111111111111111111111011"},{"input":[2147483647],"output":"1111111111111111111111111111111"},{"input":[0],"output":"0"},{"input":[10],"output":"1010"},{"input":[15],"output":"1111"},{"input":[52],"output":"110100"},{"input":[1],"output":"1"}]}, +{"id":"sum-lists-2","title":"Sum Lists 2","description":"You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in forward order, such that the 1's digit is at the tail of the list. Write method `addLists` that adds the two numbers and returns the sum as a linked list.\r\n\r\n### Examples\r\n\r\n* `6->1->7, 2->9->5` -> `9->1->2` (617 + 295 = 912)","timeLimit":1,"level":2,"func":{"name":"addLists","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" linked list node containing result of sum"},"parameters":[{"name":"l1","type":"com.jalgoarena.type.ListNode","comment":"First Linked List to add"},{"name":"l2","type":"com.jalgoarena.type.ListNode","comment":"Second Linked List to add"}]},"testCases":[{"input":[[6,1,7],[2,9,5]],"output":[9,1,2]},{"input":[[1,4,5,6,7],[1,3,9]],"output":[1,4,7,0,6]},{"input":[[1,4,5,6,7],[]],"output":[1,4,5,6,7]},{"input":[[1],[1,3,9]],"output":[1,4,0]},{"input":[[9],[1]],"output":[1,0]},{"input":[[],[]],"output":[]}]}, +{"id":"remove-dups","title":"Remove Duplicates","description":"Write method `removeDuplicates` to remove duplicates from an unsorted linked list.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->3->3` -> `1->2->3->4`","timeLimit":1,"level":1,"func":{"name":"removeDuplicates","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Linked List with removed duplicates"},"parameters":[{"name":"node","type":"com.jalgoarena.type.ListNode","comment":"Linked List where we need to remove duplicates"}]},"testCases":[{"input":[[1,2,3,4,3,3]],"output":[1,2,3,4]},{"input":[[]],"output":[]},{"input":[[1,1,1,1]],"output":[1]},{"input":[[1,1,1,1,2,3,4,3,3]],"output":[1,2,3,4]},{"input":[[1,1,2,2,3,3,4,4,3,3]],"output":[1,2,3,4]},{"input":[[1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3,1,2,3,4,3,3]],"output":[1,2,3,4]}]}, +{"id":"insert-at-tail","title":"Insert Node at Tail","description":"Write a method `insertAtTail` to insert a node at the end of a singly linked list. Return the head of the modified list.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6, 7` -> `1->2->3->4->5->6->7`","timeLimit":1,"level":1,"func":{"name":"insertAtTail","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" New linked list"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"},{"name":"data","type":"java.lang.Integer","comment":"New value"}]},"testCases":[{"input":[[1,2,3,4,5,6],7],"output":[1,2,3,4,5,6,7]},{"input":[[],2],"output":[2]},{"input":[[1],1],"output":[1,1]},{"input":[[5,3],5],"output":[5,3,5]}]}, +{"id":"word-ladder","title":"Word Ladder","description":"Given two words (start and end), and a dictionary, write a method `ladderLength` to find the length of shortest transformation sequence from start to end, such that:\r\n* Only one letter can be changed at a time\r\n* Each intermediate word must exist in the dictionary\r\n* Including first word as one transformation\r\n\r\n### Examples\r\n\r\n* `\"a\", \"c\", [\"a\",\"b\",\"c\"]` -> `2`\r\n* `\"game\", \"thee\", [\"frye\",\"heat\",\"tree\",\"thee\",\"game\",\"free\",\"hell\",\"fame\",\"faye\"]` -> `7`","timeLimit":1,"level":3,"func":{"name":"ladderLength","returnStatement":{"type":"java.lang.Integer","comment":"The shortest length"},"parameters":[{"name":"begin","type":"java.lang.String","comment":"the begin word"},{"name":"end","type":"java.lang.String","comment":"the end word"},{"name":"dict","type":"java.util.HashSet","comment":"the dictionary", "generic":"String"}]},"testCases":[{"input":["a","c",["a","b","c"]],"output":2},{"input":["hot","dog",["hot","cog","dog","tot","hog","hop","pot","dot"]],"output":3},{"input":["game","thee",["frye","heat","tree","thee","game","free","hell","fame","faye"]],"output":7},{"input":["kiss","tusk",["miss","dusk","kiss","musk","tusk","diss","disk","sang","ties","muss"]],"output":5},{"input":["teach","place",["peale","wilts","place","fetch","purer","pooch","peace","poach","berra","teach","rheum","peach"]],"output":4},{"input":["ta","if",["ts","sc","ph","ca","jr","hf","to","if","ha","is","io","cf","ta"]],"output":4},{"input":["qa","sq",["si","go","se","cm","so","ph","mt","db","mb","sb","kr","ln","tm","le","av","sm","ar","ci","ca","br","ti","ba","to","ra","fa","yo","ow","sn","ya","cr","po","fe","ho","ma","re","or","rn","au","ur","rh","sr","tc","lt","lo","as","fr","nb","yb","if","pb","ge","th","pm","rb","sh","co","ga","li","ha","hz","no","bi","di","hi","qa","pi","os","uh","wm","an","me","mo","na","la","st","er","sc","ne","mn","mi","am","ex","pt","io","be","fm","ta","tb","ni","mr","pa","he","lr","sq","ye"]],"output":5},{"input":["cet","ism",["kid","tag","pup","ail","tun","woo","erg","luz","brr","gay","sip","kay","per","val","mes","ohs","now","boa","cet","pal","bar","die","war","hay","eco","pub","lob","rue","fry","lit","rex","jan","cot","bid","ali","pay","col","gum","ger","row","won","dan","rum","fad","tut","sag","yip","sui","ark","has","zip","fez","own","ump","dis","ads","max","jaw","out","btu","ana","gap","cry","led","abe","box","ore","pig","fie","toy","fat","cal","lie","noh","sew","ono","tam","flu","mgm","ply","awe","pry","tit","tie","yet","too","tax","jim","san","pan","map","ski","ova","wed","non","wac","nut","why","bye","lye","oct","old","fin","feb","chi","sap","owl","log","tod","dot","bow","fob","for","joe","ivy","fan","age","fax","hip","jib","mel","hus","sob","ifs","tab","ara","dab","jag","jar","arm","lot","tom","sax","tex","yum","pei","wen","wry","ire","irk","far","mew","wit","doe","gas","rte","ian","pot","ask","wag","hag","amy","nag","ron","soy","gin","don","tug","fay","vic","boo","nam","ave","buy","sop","but","orb","fen","paw","his","sub","bob","yea","oft","inn","rod","yam","pew","web","hod","hun","gyp","wei","wis","rob","gad","pie","mon","dog","bib","rub","ere","dig","era","cat","fox","bee","mod","day","apr","vie","nev","jam","pam","new","aye","ani","and","ibm","yap","can","pyx","tar","kin","fog","hum","pip","cup","dye","lyx","jog","nun","par","wan","fey","bus","oak","bad","ats","set","qom","vat","eat","pus","rev","axe","ion","six","ila","lao","mom","mas","pro","few","opt","poe","art","ash","oar","cap","lop","may","shy","rid","bat","sum","rim","fee","bmw","sky","maj","hue","thy","ava","rap","den","fla","auk","cox","ibo","hey","saw","vim","sec","ltd","you","its","tat","dew","eva","tog","ram","let","see","zit","maw","nix","ate","gig","rep","owe","ind","hog","eve","sam","zoo","any","dow","cod","bed","vet","ham","sis","hex","via","fir","nod","mao","aug","mum","hoe","bah","hal","keg","hew","zed","tow","gog","ass","dem","who","bet","gos","son","ear","spy","kit","boy","due","sen","oaf","mix","hep","fur","ada","bin","nil","mia","ewe","hit","fix","sad","rib","eye","hop","haw","wax","mid","tad","ken","wad","rye","pap","bog","gut","ito","woe","our","ado","sin","mad","ray","hon","roy","dip","hen","iva","lug","asp","hui","yak","bay","poi","yep","bun","try","lad","elm","nat","wyo","gym","dug","toe","dee","wig","sly","rip","geo","cog","pas","zen","odd","nan","lay","pod","fit","hem","joy","bum","rio","yon","dec","leg","put","sue","dim","pet","yaw","nub","bit","bur","sid","sun","oil","red","doc","moe","caw","eel","dix","cub","end","gem","off","yew","hug","pop","tub","sgt","lid","pun","ton","sol","din","yup","jab","pea","bug","gag","mil","jig","hub","low","did","tin","get","gte","sox","lei","mig","fig","lon","use","ban","flo","nov","jut","bag","mir","sty","lap","two","ins","con","ant","net","tux","ode","stu","mug","cad","nap","gun","fop","tot","sow","sal","sic","ted","wot","del","imp","cob","way","ann","tan","mci","job","wet","ism","err","him","all","pad","hah","hie","aim","ike","jed","ego","mac","baa","min","com","ill","was","cab","ago","ina","big","ilk","gal","tap","duh","ola","ran","lab","top","gob","hot","ora","tia","kip","han","met","hut","she","sac","fed","goo","tee","ell","not","act","gil","rut","ala","ape","rig","cid","god","duo","lin","aid","gel","awl","lag","elf","liz","ref","aha","fib","oho","tho","her","nor","ace","adz","fun","ned","coo","win","tao","coy","van","man","pit","guy","foe","hid","mai","sup","jay","hob","mow","jot","are","pol","arc","lax","aft","alb","len","air","pug","pox","vow","got","meg","zoe","amp","ale","bud","gee","pin","dun","pat","ten","mob"]],"output":11}]}, +{"id":"postorder-traversal","title":"Postorder Traversal","description":"Given a binary tree, Write a method `postorderTraversal` to traverse the tree in the postorder manner. Return array of elements visited in postorder format.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> 4526731\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":1,"func":{"name":"postorderTraversal","returnStatement":{"type":"[I","comment":" Postordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[4,5,2,6,7,3,1]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}],"output":[4,2,7,3,1]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, +{"id":"max-gain","title":"Max gain","description":"Given an array of integers, write a method `maxGain` that returns the maximum gain. Maximum Gain is defined as the maximum difference between 2 elements in a list such that the larger element appears after the smaller element. If no gain is possible, return 0.\r\n\r\n### Example\r\n\r\n* `[0,50,10,100,30]` -> `100`","timeLimit":1,"level":2,"func":{"name":"maxGain","returnStatement":{"type":"java.lang.Integer","comment":" Max gain"},"parameters":[{"name":"arr","type":"[I","comment":"An array of Integer"}]},"testCases":[{"input":[[0,50,10,100,30]],"output":100},{"input":[[1,1]],"output":0},{"input":[[100,40,20,10]],"output":0},{"input":[[0,100,0,100,0,100]],"output":100},{"input":[[1,2,5,6,7,3,5,8,-33,-5,-72,12,-34,100,99]],"output":172},{"input":[[1,2,33,23,2423,33,23,1,7,6,8787,5,33,2,3,-23,-54,-67,100,400]],"output":8786},{"input":[[-1,-2,-3,-4,-5,-6,-100,-98,-111,-11]],"output":100},{"input":[[]],"output":0},{"input":[[1]],"output":0},{"input":[null],"output":0},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,9,9,10,11,1001,2001,198,201,203,201,999,345,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,1,1,1,1,1,1,1,1,1,1,1,101,1,1,1,1,1,1,1,1]],"output":2001}]}, +{"id":"rotate-matrix","title":"Rotate Matrix","description":"Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method `rotate` to rotate the image by 90 degrees in place.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 2, 3, 4],\r\n [5, 6, 7, 8],\r\n [9, 0, 1, 2],\r\n [3, 4, 5, 6]] \r\n->\r\n[[3, 9, 5, 1],\r\n [4, 0, 6, 2],\r\n [5, 1, 7, 3],\r\n [6, 2, 8, 4]]\r\n```","timeLimit":1,"level":2,"func":{"name":"rotate","returnStatement":{"type":"void","comment":" Operation in place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Image matrix to rotate"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,6]]],"output":[[3,9,5,1],[4,0,6,2],[5,1,7,3],[6,2,8,4]]},{"input":[[[1,2],[5,6]]],"output":[[5,1],[6,2]]},{"input":[[[0]]],"output":[[0]]}]}, +{"id":"string-rotation","title":"String Rotation","description":"Given two strings, s1 and s2, write method `isRotation` with algorithm checking if s2 is a rotation of s1.\r\n\r\n### Example\r\n\r\n* `'watterbottle', 'erbottlewatt'` -> `true`","timeLimit":1,"level":1,"func":{"name":"isRotation","returnStatement":{"type":"java.lang.Boolean","comment":" Is s2 rotation of s1"},"parameters":[{"name":"s1","type":"java.lang.String","comment":"s1 string"},{"name":"s2","type":"java.lang.String","comment":"s2 string"}]},"testCases":[{"input":["watterbottle","erbottlewatt"],"output":true},{"input":["watterbottle","erbotlewat"],"output":false},{"input":["","a"],"output":false},{"input":["aa","a"],"output":false},{"input":["watterbattle","erbottlewat"],"output":false},{"input":["stackoverflow","stackoverflwo"],"output":false}]}, +{"id":"single-number","title":"Single Number","description":"Write a method `singleNumber` that returns a number that appears only once in an array. Assume that array will surely have a unique value. The array will never be empty..\r\n\r\n### Examples\r\n\r\n```\r\n[1,2,3,4,1,2,3,4,5]\r\n->\r\n5\r\n```","timeLimit":1,"level":1,"func":{"name":"singleNumber","returnStatement":{"type":"java.lang.Integer","comment":"Single Number to find"},"parameters":[{"name":"arr","type":"[I","comment":"Array of integers with a single number"}]},"testCases":[{"input":[[1,2,3,4,1,2,3,4,5]],"output":5},{"input":[[0,1,2,3,4,5,1,2,3,4,5]],"output":0},{"input":[[1,2,3,4,3,-2,4,5,1,2,3,4,5]],"output":-2},{"input":[[1]],"output":1}]}, +{"id":"snake","title":"Snake","description":"Write a method `findSpiral` to traverse a 2D matrix of integers in a clockwise spiral order and set the elements to an output array of integers.\r\n\r\n### Example\r\n\r\n``` \r\nInput Matrix : \r\n{1, 2, 3} \r\n{4, 5, 6} \r\n{7, 8, 9} \r\n\r\nOutput ArrayList:[1, 2, 3, 6, 9, 8, 7, 4, 5] \r\n ```","timeLimit":1,"level":2,"func":{"name":"findSpiral","returnStatement":{"type":"[I","comment":" Spiral Path as array"},"parameters":[{"name":"matrix","type":"[[I","comment":"An input matrix"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":[1,2,3,4,8,2,0,5,4,3,9,5,6,7,1,0]},{"input":[[[1,2,3,4,5,6],[7,8,9,10,11,12],[13,14,15,16,17,18]]],"output":[1,2,3,4,5,6,12,18,17,16,15,14,13,7,8,9,10,11]},{"input":[[[0]]],"output":[0]},{"input":[[[]]],"output":[]},{"input":[[[1,0],[1,0]]],"output":[1,0,0,1]}]}, +{"id":"make-change","title":"Make Change","description":"Given an integer array containing the available denominations of coins in descending order, write a method `makeChange` to compute the number of possible ways of representing a monetary amount in cents. For simplicity, assume that there are an infinite number of coins available for each coin denomination in the array.\r\n\r\n### Example\r\n\r\n* `[25,10,5,1], 10` -> `4`","timeLimit":1,"level":2,"func":{"name":"makeChange","returnStatement":{"type":"java.lang.Integer","comment":" Number of possibilities"},"parameters":[{"name":"coins","type":"[I","comment":"An available denomination of coins"},{"name":"amount","type":"java.lang.Integer","comment":"Amount of money to change"}]},"testCases":[{"input":[[25,10,5,1],10],"output":4},{"input":[[],10],"output":0},{"input":[null,10],"output":0},{"input":[[25,10,5,1],100],"output":242},{"input":[[10,5,1],-10],"output":0},{"input":[[10,5,1],0],"output":0},{"input":[[1,0],1],"output":1}]}, +{"id":"reverse-integer","title":"Reverse Integer","description":"Implement a method `reverseInt` that reverses an integer - without using additional heap space.\r\n\r\n### Example\r\n\r\n* `-123` -> `-321`\r\n* `123` -> `321`","timeLimit":1,"level":2,"func":{"name":"reverseInt","returnStatement":{"type":"java.lang.Integer","comment":" Reversed integer"},"parameters":[{"name":"x","type":"java.lang.Integer","comment":"Input value"}]},"testCases":[{"input":[-123],"output":-321},{"input":[123],"output":321},{"input":[0],"output":0},{"input":[3000],"output":3},{"input":[-53000],"output":-35},{"input":[2147483640],"output":463847412},{"input":[2147483641],"output":1463847412},{"input":[-2147483640],"output":-463847412}]}, +{"id":"kth-to-last","title":"Return Kth to Last","description":"Implement method `kthToLast` with algorithm to find the kth to last element of a singly linked list.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6, 3` -> `3`\r\n\r\n### Notes\r\n\r\n* If index is absent, return 0.","timeLimit":1,"level":2,"func":{"name":"kthToLast","returnStatement":{"type":"java.lang.Integer","comment":" kth to last element of a singly linked list"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List where we need to find kth to last element"},{"name":"k","type":"java.lang.Integer","comment":"index of element to find"}]},"testCases":[{"input":[[1,2,3,4,5,6],3],"output":3},{"input":[[13,1,1,1,2,3,4,3,3],100],"output":0},{"input":[[12,1,2,2,3,3,4,4,3,1],1],"output":3},{"input":[[11,1,2,2,3,3,4,4,3,6],-1],"output":0},{"input":[[10,1,2,2,3,3,4,4,3,6],8],"output":1},{"input":[[101,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1,10,1,2,2,3,3,4,4,3,6,1],219],"output":101}]}, +{"id":"horizontal-flip","title":"Horizontal Flip","description":"Given an m x n 2D image matrix where each integer represents a pixel, write a method `flipHorizontalAxis` to flip it in-place along its horizontal axis.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 0],\r\n [0, 1]]\r\n->\r\n[[0, 1],\r\n [1, 0]]\r\n```","timeLimit":1,"level":2,"func":{"name":"flipHorizontalAxis","returnStatement":{"type":"void","comment":"Operation in-place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Image matrix to flip"}]},"testCases":[{"input":[[[1,0],[0,1]]],"output":[[0,1],[1,0]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1,0,1],[1,1,0],[0,1,1]]],"output":[[0,1,1],[1,1,0],[1,0,1]]}]}, +{"id":"binary-search","title":"Binary Search","description":"Write a method `binarySearch` that searches an array of integers for a given integer using the Binary Search Algorithm. If the input integer is found in the array - return index of that item. Otherwise, return -1.\n\n### Notes: \n* You may assume that the given array of integers is already sorted in ascending order.\n* Using java framework to solve it is forbidden - you have to code it by yourself.\n* You have to implement binary search - it cannot be solved through traversing array, or other sort algorithm\n\n### Example\n\n* `[2,5,7,11,15], 11` -> `3`","timeLimit":1,"level":1,"func":{"name":"binarySearch","returnStatement":{"type":"java.lang.Integer","comment":" Index of element if found or -1 if absent"},"parameters":[{"name":"arr","type":"[I","comment":"An array of Integers"},{"name":"n","type":"java.lang.Integer","comment":"element to find"}]},"testCases":[{"input":[[2,5,7,11,15],11],"output":3},{"input":[[2,5,7,11,15],15],"output":4},{"input":[[2,5,7,11,15],13],"output":-1},{"input":[[2],13],"output":-1},{"input":[[2],2],"output":0},{"input":[[],5],"output":-1},{"input":[[1,2,2,3],2],"output":1}]}, +{"id":"one-away","title":"One Away","description":"There are three types of edits that can be performed on strings: \r\n* insert a character\r\n* remove a character\r\n* replace a character. \r\n\r\nGiven two strings, write a method `oneEditAway` to check if they are one edit (or zero edits) away.\r\n\r\n### Examples\r\n\r\n* `\"pale\", \"ple\"` -> `true`","timeLimit":1,"level":2,"func":{"name":"oneEditAway","returnStatement":{"type":"java.lang.Boolean","comment":" Is first string one or zero edits away from the second?"},"parameters":[{"name":"first","type":"java.lang.String","comment":"first string"},{"name":"second","type":"java.lang.String","comment":"second string"}]},"testCases":[{"input":["pale","ple"],"output":true},{"input":["pales","pale"],"output":true},{"input":["pale","bale"],"output":true},{"input":["pale","bake"],"output":false},{"input":["pale","bae"],"output":false},{"input":["bae","pale"],"output":false},{"input":["p",""],"output":true},{"input":["","p"],"output":true},{"input":["","pa"],"output":false},{"input":["Julia","juliA"],"output":false}]}, +{"id":"stoi","title":"String to Integer (stoi)","description":"Implement method `stoi` to convert a string to an integer.\n\n**Hint**: Carefully consider all possible input cases. If you want a challenge.\n\n**Notes**: \n* It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front\n* For incorrect input, return 0\n* You cannot use `Integer.parseInt` or any other Java framework method - you have to implement it by yourself\n\n### Examples\n\n* `\"1\"` -> `1`\n* `\"abc\"` -> `0`","timeLimit":1,"level":2,"func":{"name":"stoi","returnStatement":{"type":"java.lang.Integer","comment":"An integer"},"parameters":[{"name":"str","type":"java.lang.String","comment":"A string"}]},"testCases":[{"input":[""],"output":0},{"input":["1"],"output":1},{"input":["+1"],"output":1},{"input":["-1"],"output":-1},{"input":["123"],"output":123},{"input":["-123"],"output":-123},{"input":["+-2"],"output":0},{"input":["010"],"output":10}]}, +{"id":"validate-bst","title":"BST Validation","description":"Given a binary tree, write a method `validateBST` to determine if it is a Binary Search Tree.\r\n\r\n### Example\r\n\r\n ``` \r\n 20 \r\n / \\ \r\n 15 30 \r\n / \\ \r\n14 18 \r\n \r\noutput ==> true\r\n\r\n 20\r\n / \\ \r\n 30 15 \r\n / \\ \r\n14 18 \r\n \r\noutput ==> false \r\n\r\n```","timeLimit":1,"level":2,"func":{"name":"validateBST","returnStatement":{"type":"java.lang.Boolean","comment":" Is a binary search tree"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":5,"left":{"data":3,"left":{"data":2},"right":{"data":4}},"right":{"data":8,"left":{"data":6},"right":{"data":9}}}],"output":true},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":10},"right":{"data":7}}}],"output":false},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":false},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":40}}}}],"output":false},{"input":[{"data":20,"left":{"data":15,"left":{"data":10},"right":{"data":30}},"right":{"data":40}}],"output":false},{"input":[{"data":20,"left":{"data":15,"left":{"data":10},"right":{"data":16}},"right":{"data":40}}],"output":true},{"input":[{"data":1}],"output":true},{"input":[null],"output":true}]}, +{"id":"palindrome-perm","title":"Palindrome Permutations","description":"Given a string, write a method `isPermutationOfPalindrome` to check if it is a permutation of a palindrome. \r\n\r\nThe palindrome does not need to be limited to just dictionary words (skip non-letter characters). Your solution should be case insensitive.\r\n\r\n### Examples\r\n\r\n* `\"Tact Coa\"` -> `true` (permutations: \"taco cat\", \"acto tca\", etc.)","timeLimit":1,"level":2,"func":{"name":"isPermutationOfPalindrome","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if string is a permutation of palindrome"},"parameters":[{"name":"phrase","type":"java.lang.String","comment":"string to be checked if any permutation is palindrome"}]},"testCases":[{"input":["abcabcd"],"output":true},{"input":["a"],"output":true},{"input":["Aa"],"output":true},{"input":[""],"output":false},{"input":["cxzwcxzwcxzwcxzwa"],"output":true},{"input":["cxzwcxzwcxzwcxzwab"],"output":false},{"input":["Tact Coa"],"output":true},{"input":["Tact Coa&"],"output":true}]}, +{"id":"delete-tail-node","title":"Delete List Tail Node","description":"Given a singly linked list, write a method `deleteAtTail` to delete its last node and return the head.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6` -> `1->2->3->4->5`","timeLimit":1,"level":1,"func":{"name":"deleteAtTail","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Initial linked list with removed tail"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":[1,2,3,4,5]},{"input":[[1]],"output":[]},{"input":[[]],"output":[]},{"input":[[5,3]],"output":[5]}]}, +{"id":"boggle-search","title":"Boggle Search","description":"You're given a 2D Boggle Board which contains an m x n matrix of chars - char[][] board, and a String - word. Write a method - `boggleSearch` that searches the Boggle Board for the presence of the input word. Words on the board can be constructed with sequentially adjacent letters, where adjacent letters are horizontal or vertical neighbors (not diagonal). Also, each letter on the Boggle Board must be used only once.\r\n\r\n### Examples\r\n\r\n``` \r\n\r\nInput Board : \r\n[ \r\n [A, O, L], \r\n [D, E, L], \r\n [G, H, I] \r\n] \r\nWord: \"HELLO\" \r\nOutput: true \r\n```","timeLimit":1,"level":3,"func":{"name":"boggleSearch","returnStatement":{"type":"java.lang.Boolean","comment":" Is the word present"},"parameters":[{"name":"board","type":"[[C","comment":"Boggle Board"},{"name":"word","type":"java.lang.String","comment":"Word to find"}]},"testCases":[{"input":[[["A","O","L"],["D","E","L"],["G","H","I"]],"HELLO"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"JACK"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"AXE"],"output":false},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"ROCKS"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"DFS"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"ROCK"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"FIRES"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"SEE"],"output":true},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"JACKET"],"output":false},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],"FIRECODE"],"output":true}]}, +{"id":"delete-head-node","title":"Delete List Head Node","description":"Given a singly linked list, write a method `deleteAtHead` to delete its head node and return the new head.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6` -> `2->3->4->5->6`","timeLimit":1,"level":1,"func":{"name":"deleteAtHead","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Initial linked list with removed head"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":[2,3,4,5,6]},{"input":[[1]],"output":[]},{"input":[[]],"output":[]},{"input":[[5,3]],"output":[3]}]}, +{"id":"count-paths","title":"Count Paths","description":"You're given a game board that has m x n squares on it, represented by an m x n array. Write a method `countPaths` that takes in m and n and returns the number of possible paths from the top left corner to the bottom right corner. Only down and right directions of movement are permitted.\r\n\r\n### Examples\r\n\r\n``` \r\n countPaths(m = 2, n = 2) => 2 \r\n \r\n as on the following 2x2 Board, the two paths are A->C->D and A->B->D \r\n \r\n A B \r\n C D \r\n```","timeLimit":1,"level":2,"func":{"name":"countPaths","returnStatement":{"type":"java.lang.Integer","comment":" Number of paths"},"parameters":[{"name":"m","type":"java.lang.Integer","comment":"Number of rows"},{"name":"n","type":"java.lang.Integer","comment":"Number of columns"}]},"testCases":[{"input":[1,1],"output":1},{"input":[7,15],"output":38760},{"input":[3,5],"output":15},{"input":[10,12],"output":167960},{"input":[15,16],"output":77558760},{"input":[5,3],"output":15},{"input":[4,1],"output":1},{"input":[2,2],"output":2},{"input":[18,17],"output":1166803110},{"input":[12,6],"output":4368},{"input":[8,10],"output":11440},{"input":[0,0],"output":0},{"input":[1,0],"output":0},{"input":[0,1],"output":0}]}, +{"id":"delete-at-middle","title":"Delete Node at Middle","description":"Given a singly linked list, write a method `deleteAtMiddle` to delete the node at a given position (starting from 1 as the head position) and return the head of the list. Do nothing if the input position is out of range.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6, 3` -> `1->2->4->5->6`","timeLimit":1,"level":2,"func":{"name":"deleteAtMiddle","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" New Linked List with removed node at given position"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"},{"name":"position","type":"java.lang.Integer","comment":"Position of node to be removed"}]},"testCases":[{"input":[[1,2,3,4,5,6],3],"output":[1,2,4,5,6]},{"input":[[1,2,3,4,5,6],1],"output":[2,3,4,5,6]},{"input":[[1,2,3,4,5,6],6],"output":[1,2,3,4,5]},{"input":[[1],3],"output":[1]},{"input":[[1],1],"output":null},{"input":[null,1],"output":null}]}, +{"id":"sum-binary-tree","title":"Sum of a binary tree","description":"Given a binary tree, write a method `sum` to find and return the sum of all elements. For an empty tree return 0.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> sum = 28\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":1,"func":{"name":"sum","returnStatement":{"type":"java.lang.Integer","comment":" Sum of all binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":28},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":-5}},"right":{"data":3,"left":{"data":6},"right":{"data":-7}}}],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":23},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, +{"id":"happy-numbers","title":"Happy Numbers","description":"Write a method `isHappyNumber` to determine whether a positive number is `Happy`. A number is Happy (Yes, it is a thing!) if it follows a sequence that ends in 1 after following the steps given below:\n\n\bBeginning with the number itself, replace it by the sum of the squares of its digits until either the number becomes 1 or loops endlessly in a cycle that does not include 1. For instance, 19 is a happy number. Sequence: \n * 1^2^ + 9^2^ = 82 \n* 8^2^ + 2^2^ = 68 \n* 6^2^ + 8^2^ = 100 \n* 1^2^ + 0^2^ + 0^2^ = 1. \n\n### Examples\n\n* `19` -> `true`","timeLimit":1,"level":2,"func":{"name":"isHappyNumber","returnStatement":{"type":"java.lang.Boolean","comment":" Is happy number"},"parameters":[{"name":"head","type":"java.lang.Integer","comment":"Input number"}]},"testCases":[{"input":[19],"output":true},{"input":[28],"output":true},{"input":[68],"output":true},{"input":[12],"output":false},{"input":[100],"output":true},{"input":[12352],"output":false},{"input":[0],"output":false}]}, +{"id":"first-non-repeated-char","title":"First Non Repeated Character","description":"Write a method `findFirstNonRepeatedChar` that finds the first non-duplicate character in a string. Return null if no unique character is found.\r\n\r\n### Example\r\n\r\n* `'asdsdakz` -> `'k'`","timeLimit":1,"level":1,"func":{"name":"findFirstNonRepeatedChar","returnStatement":{"type":"java.lang.String","comment":" First non-duplicate character or null if absent"},"parameters":[{"name":"str","type":"java.lang.String","comment":"Input string"}]},"testCases":[{"input":["asdsdakz"],"output":"k"},{"input":["asdsda"],"output":null},{"input":["asd"],"output":"a"},{"input":[""],"output":null},{"input":[null],"output":null}]}, +{"id":"inorder-traversal","title":"Inorder Traversal","description":"Given a binary tree, Write a method `inorderTraversal` to traverse the tree in the inorder manner. Return array of elements visited in inorder format.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> 4251637\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":1,"func":{"name":"inorderTraversal","returnStatement":{"type":"[I","comment":" Inordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[4,2,5,1,6,3,7]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}],"output":[4,2,1,3,7]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, +{"id":"preorder-traversal","title":"Preorder Traversal","description":"Given a binary tree, Write a method `preorderTraversal` to traverse the tree in the preorder manner. Return array of elements visited in preorder format.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> 1245367\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":1,"func":{"name":"preorderTraversal","returnStatement":{"type":"[I","comment":" Preordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[1,2,4,5,3,6,7]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}],"output":[1,2,4,3,7]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, +{"id":"sort-array","title":"Sort Array","description":"Write method `sort` to sort given array.\r\n\r\n**Note**: You cannot use `Arrays.sort` or any other framework method to do that - you have to implement it.\r\n\r\n### Example\r\n\r\n* `[44,2,22,7,11,15]` -> `[2,7,11,15,22,44]`","timeLimit":1,"level":1,"func":{"name":"sort","returnStatement":{"type":"[I","comment":" Sorted array"},"parameters":[{"name":"arr","type":"[I","comment":"An array to sort"}]},"testCases":[{"input":[[44,2,22,7,11,15]],"output":[2,7,11,15,22,44]},{"input":[[1]],"output":[1]},{"input":[[]],"output":[]},{"input":[null],"output":null},{"input":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,9,9,10,11,1001,2001,198,201,203,201,999,345,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,1,1,1,1,1,1,1,1,1,1,1,101,1,1,1,1,1,1,1,1]],"output":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,5,6,9,9,9,10,11,101,198,201,201,203,345,999,1001,2001]}]}, +{"id":"string-compress","title":"String Compression","description":"Implement a method `compress` to perform basic string compression using the counts of repeated characters. \r\n\r\nIf the **compressed** string would not become smaller than original string, your method should return original string. \r\n\r\n**Note**: You can assume the string has only uppercase and lowercase letters (a-z).\r\n\r\n### Examples\r\n\r\n* `\"aabcccccaaa\"` -> `\"a2b1c5a3\"`","timeLimit":1,"level":2,"func":{"name":"compress","returnStatement":{"type":"java.lang.String","comment":" Compressed string."},"parameters":[{"name":"str","type":"java.lang.String","comment":"String to compress"}]},"testCases":[{"input":["aabcccccaaa"],"output":"a2b1c5a3"},{"input":["Julia"],"output":"Julia"},{"input":[""],"output":""},{"input":[null],"output":null},{"input":["JjuuLLiiiiAaaaaAAaaaaa"],"output":"J1j1u2L2i4A1a4A2a5"},{"input":["JjuuLLiiiiAaaaaAAaBCDEFG"],"output":"JjuuLLiiiiAaaaaAAaBCDEFG"},{"input":["JJJJJJJJJJJ"],"output":"J11"}]}, +{"id":"sum-lists","title":"Sum Lists","description":"You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in reverse order, such that the 1's digit is at the head of the list. Write method `addLists` that adds the two numbers and returns the sum as a linked list.\r\n\r\n### Examples\r\n\r\n* `7->1->6, 5->9->2` -> `2->1->9` (617 + 295 = 912)","timeLimit":1,"level":2,"func":{"name":"addLists","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" linked list node containing result of sum"},"parameters":[{"name":"l1","type":"com.jalgoarena.type.ListNode","comment":"First Linked List to add"},{"name":"l2","type":"com.jalgoarena.type.ListNode","comment":"Second Linked List to add"}]},"testCases":[{"input":[[7,1,6],[5,9,2]],"output":[2,1,9]},{"input":[[7,6,5,4,1],[9,3,1]],"output":[6,0,7,4,1]},{"input":[[7,6,5,4,1],[]],"output":[7,6,5,4,1]},{"input":[[1],[9,3,1]],"output":[0,4,1]},{"input":[[9],[1]],"output":[0,1]},{"input":[[],[]],"output":[]}]}, +{"id":"find-middle-node","title":"Find Middle Node","description":"Given a singly linked list, write a method `findMiddleNode` to find and return the middle node of the list.\n\n### Examples\n\n* `1->2->3->4->5` => `3->4->5`\n* `1->2->3->4->5->6` => `3->4->5->6`","timeLimit":1,"level":1,"func":{"name":"findMiddleNode","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":" Middle node"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5]],"output":[3,4,5]},{"input":[[1]],"output":[1]},{"input":[[1,2]],"output":[1,2]},{"input":[[]],"output":null},{"input":[null],"output":null},{"input":[[5,3,2,1]],"output":[3,2,1]}]}, +{"id":"height-binary-tree","title":"Height of a Binary Tree","description":"Given a binary tree, write a method `findHeight` to find its height. An empty tree has a height of 0.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> height = 3\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":1,"func":{"name":"findHeight","returnStatement":{"type":"java.lang.Integer","comment":" Height of binary tree"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":3},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":4},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, +{"id":"find-max","title":"Find Max Element","description":"Given a binary tree, write a method `findMax` to return maximum element. Return 0 for empty tree.\r\n\r\n### Example\r\n\r\n ``` \r\n 20 \r\n / \\ \r\n 15 30 \r\n / \\ \r\n14 18 \r\n \r\noutput ==> 30\r\n\r\n```","timeLimit":1,"level":1,"func":{"name":"findMax","returnStatement":{"type":"java.lang.Integer","comment":" Max element of a binary tree"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":5,"left":{"data":3,"left":{"data":2},"right":{"data":4}},"right":{"data":8,"left":{"data":6},"right":{"data":9}}}],"output":9},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":10},"right":{"data":7}}}],"output":10},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":7},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":40}}}}],"output":40},{"input":[{"data":20,"left":{"data":15,"left":{"data":10},"right":{"data":30}},"right":{"data":40}}],"output":40},{"input":[{"data":50,"left":{"data":15,"left":{"data":10},"right":{"data":16}},"right":{"data":40}}],"output":50},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, +{"id":"is-cyclic","title":"Is List cyclic","description":"Given a singly linked list, write a method `isCyclic` to check if the list has cycles. The space complexity can be O(n). If there is a cycle, return true otherwise return false. Empty lists should be considered non-cyclic.\r\n\r\n### Examples\r\n\r\n* `1->2->3->4->5->6->1` -> `true`","timeLimit":1,"level":2,"func":{"name":"isCyclic","returnStatement":{"type":"java.lang.Boolean","comment":" Is List cyclic"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Input list"}]},"testCases":[{"input":[[1,2,3,4,5,6]],"output":false},{"input":[[1,2,3,4,5,6,6]],"output":true},{"input":[[1,2,3,4,5,6,1]],"output":true},{"input":[[1,2,3,4,5,3,6]],"output":true},{"input":[[1]],"output":false},{"input":[[1,2]],"output":false},{"input":[[2,2]],"output":true},{"input":[null],"output":false}]}, +{"id":"max-sum-path","title":"Maximum sum path","description":"Given a binary tree, write a method `maxSumPath` that returns the maximum sum of data values obtained by traversing nodes along a path between any 2 nodes of the tree. The path must originate and terminate at 2 different nodes of the tree, and the maximum sum is obtained by summing all the data values of the nodes traversed along this path..\r\n\r\n### Example\r\n\r\n ``` \r\n 1 \r\n / \\ \r\n 2 3 => 18 \r\n / \\ / \\ \r\n 4 5 6 7 \r\n \r\nPath: 5 -> 2 -> 1 -> 3 -> 7 \r\nMax Sum = 5+2+1+3+7 = 18 \r\n```","timeLimit":1,"level":2,"func":{"name":"maxSumPath","returnStatement":{"type":"java.lang.Integer","comment":" Sum of all elements in max path"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":18},{"input":[{"data":1,"left":{"data":2,"left":{"data":4,"left":{"data":8},"right":{"data":9}},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":26},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":-5}},"right":{"data":3,"left":{"data":6},"right":{"data":-7}}}],"output":16},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":23},{"input":[{"data":1}],"output":1},{"input":[null],"output":0}]}, +{"id":"chocolate-bars","title":"Chocolate Bars","description":"A rectangular chocolate bar is divided into squares by horizontal and vertical grooves, in the usual way. It is to be cut into individual squares. A cut is made by choosing a piece and cutting along one of it grooves. (Thus each cut splits one piece into at least two pieces). Additionally, your chocolate is already cut into two pieces. Write a method `countChocolateCuts` with a number answering question - what is the minimal number of cuts needed to completely cut the two parts of chocolate into all its squares?\n\n### Note\n* like in example below, the groove is calculated as 1 only when all the squares are connected. Every space between squares creates a new groove.\n\n### Examples\n\n``` \n [1] \n [1][1][1] \n [1]\n & ==> 9 \n[1][1][1] \n [1] \n[1][1][1]\n\nExplanation: \n [1] | |\n-----|---|---\n [1] |[1]|[1] => 4\n-----|---|---\n [1] | |\n & ==> 4 + 5 = 9\n[1]|[1]|[1] \n---|---|----\n |[1] => 5\n---|---|----\n[1]|[1]|[1]\n```","timeLimit":1,"level":3,"func":{"name":"countChocolateCuts","returnStatement":{"type":"java.lang.Integer","comment":" Number of cuts"},"parameters":[{"name":"chocolateBarPartOne","type":"[[I","comment":"Matrix representing first part of chocolate bar"},{"name":"chocolateBarPartTwo","type":"[[I","comment":"Matrix representing second part of chocolate bar"}]},"testCases":[{"input":[[[1],[1,1,1],[1]],[[1,1,1],[1],[1,1,1]]],"output":9},{"input":[[[1,1,1,1],[1],[1,1,1],[1,1]],[[1,1,1],[1],[1,1]]],"output":12},{"input":[[[]],[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]]],"output":15},{"input":[[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]],[[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1]]],"output":30},{"input":[[[1]],[[1]]],"output":0},{"input":[[[0,0],[0,0]],[[0,0],[0,0]]],"output":6},{"input":[[[]],[[]]],"output":0}]}, +{"id":"insert-stars","title":"Insert Stars","description":"Given a string, write a method `insertPairStar` to compute a new string where the identical adjacent characters in the original string are separated by a \"*\".\r\n\r\n### Example\r\n\r\n* `'sas` -> `'sas'`\r\n* `'kk` -> `'k*k'`","timeLimit":1,"level":1,"func":{"name":"insertPairStar","returnStatement":{"type":"java.lang.String","comment":" Computed string"},"parameters":[{"name":"str","type":"java.lang.String","comment":"Input string"}]},"testCases":[{"input":["asdsdakz"],"output":"asdsdakz"},{"input":["aaaaa"],"output":"a*a*a*a*a"},{"input":["kk"],"output":"k*k"},{"input":["kkcckkcc"],"output":"k*kc*ck*kc*c"},{"input":[""],"output":""},{"input":[null],"output":null}]}, +{"id":"decompress-tree","title":"Tree Decompression","description":"Given a binary tree, write a method `decompressTree` that decompresses that tree (reconstructs the tree) and returns the root TreeNode. The compression algorithm included traversing the tree level by level, from the left to the right. The TreeNode's data values were appended to the String, delimited by commas. Also, null TreeNodes were denoted by appending an asterisk - *. The input String denotes the structure of a Full Binary Tree - i.e. a tree that is structurally balanced. However, the reconstructed tree may not be a full tree as the String included * characters, which represent null TreeNodes\r\n\r\n###Note\r\n\r\n You can assume that if a Binary Tree contains k levels, the compressed String will contain 2^k^-1 elements - either numbers or *.\r\n\r\n### Example\r\n\r\n ```\r\n 1\r\n / \\\r\n 2 3 ==> Compressed String = '1,2,3,4,5,6,7'\r\n / \\ / \\\r\n 4 5 6 7 \r\n```","timeLimit":1,"level":3,"func":{"name":"decompressTree","returnStatement":{"type":"com.jalgoarena.type.TreeNode","comment":" Decompressed binary tree"},"parameters":[{"name":"root","type":"java.lang.String","comment":"Compressed Tree"}]},"testCases":[{"input":["1,2,3,4,5,6,7"],"output":{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}},{"input":["1,2,3,4,*,*,7"],"output":{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7}}}},{"input":["1"],"output":{"data":1}},{"input":["1,*,2,*,*,*,3"],"output":{"data":1,"right":{"data":2,"right":{"data":3}}}},{"input":[null],"output":null},{"input":["*"],"output":null},{"input":[""],"output":null}]}, +{"id":"check-perm","title":"Check Permutations","description":"Given two strings, write a method `permutation` to decide if one is a permutation of other.\r\n\r\n### Examples\r\n\r\n* `\"abc\", \"cba\"` -> `true`\r\n* `\"abc\", \"cb\"` -> `false`","timeLimit":1,"level":1,"func":{"name":"permutation","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if one string is a permutation of another"},"parameters":[{"name":"str1","type":"java.lang.String","comment":"first string to be checked for permutation match"},{"name":"str2","type":"java.lang.String","comment":"second string to be checked for permutation match"}]},"testCases":[{"input":["abc","cba"],"output":true},{"input":["abc","cbacba"],"output":false},{"input":["abccba","cbaccb"],"output":false},{"input":["abc","cbad"],"output":false},{"input":["AdSda","dAdaS"],"output":true},{"input":["AbcdefgHA",""],"output":false},{"input":["",""],"output":true},{"input":[" "," "],"output":false},{"input":["A","A"],"output":true},{"input":["A","a"],"output":false},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~","0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ !\"#$%&'()*+,-./"],"output":true},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~a","0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"],"output":false}]}, +{"id":"max-profit","title":"Stock Market Oracle","description":"You've recently acquired market prediction superpowers that let you predict the closing stock price of a Acme Inc.'s stock a month into the future! To get the most out of this superpower, you need to write a method called `maxProfit` that takes in an array of integers representing the close out stock price on a given day. This method should return the maximum profit you can make out of trading Acme Inc.'s stock. There are a few limitations however :\r\n\r\n1) You must sell your current holding before buying another - i.e. You may not buy and then buy again. It needs to be a buy - sell - buy - sell ... pattern.\r\n\r\n2) You may complete as many transactions as you like. You're using an awesome service like Robinhood, and so there are no transaction costs!\r\n\r\n3) If you're enormously unlucky (or karma takes over) and no profit can be made, return 0.\r\n\r\n### Examples\r\n\r\n```\r\n[50,100,20,80,20]\r\n->\r\n110\r\n```","timeLimit":1,"level":2,"func":{"name":"maxProfit","returnStatement":{"type":"java.lang.Integer","comment":"Max profit"},"parameters":[{"name":"prices","type":"[I","comment":"Prices"}]},"testCases":[{"input":[[50,100,20,80,20]],"output":110},{"input":[[50,100]],"output":50},{"input":[[150,100]],"output":0},{"input":[[50,100,50,100,50]],"output":100},{"input":[[100,40,20,10]],"output":0},{"input":[[0,50,10,100,30]],"output":140},{"input":[[0,100,0,100,0,100]],"output":300},{"input":[[1,2,3,4,3,2,4,5,1,2,3,4,5]],"output":10},{"input":[[1]],"output":0},{"input":[[]],"output":0},{"input":[null],"output":0},{"input":[[1,1]],"output":0}]}, +{"id":"is-string-unique","title":"Is String Unique","description":"Implement method `isUniqueChars` with an algorithm to determine if a ASCII string has all unique characters. \r\n\r\nWhat if you cannot use additional data structures?\r\n\r\n### Examples\r\n\r\n* `\"AdSda\"` -> `false`","timeLimit":1,"level":1,"func":{"name":"isUniqueChars","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if string contains only unique chars"},"parameters":[{"name":"str","type":"java.lang.String","comment":"input string to be checked (ASCII)"}]},"testCases":[{"input":[""],"output":true},{"input":[null],"output":true},{"input":["abc"],"output":true},{"input":["AdSda"],"output":false},{"input":["AbcdefgHA"],"output":false},{"input":["edcvfrtyy"],"output":false},{"input":["AA"],"output":false},{"input":["AdSa"],"output":true},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"],"output":true},{"input":[" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~a"],"output":false}]}, +{"id":"zero-matrix","title":"Zero Matrix","description":"Write a method `zeroMatrix` with an algorithm such that if an element in a MxN matrix is 0, its entire row and column are set to 0. Matrix should be changed in place.\r\n\r\n### Examples\r\n\r\n```\r\n[[1, 2, 3, 4],\r\n [5, 6, 7, 8],\r\n [9, 0, 1, 2],\r\n [3, 4, 5, 0]]\r\n->\r\n[[1, 0, 3, 0],\r\n [5, 0, 7, 0],\r\n [0, 0, 0, 0],\r\n [0, 0, 0, 0]]\r\n```","timeLimit":1,"level":2,"func":{"name":"zeroMatrix","returnStatement":{"type":"void","comment":" Operation in place"},"parameters":[{"name":"matrix","type":"[[I","comment":"Matrix to set zeros"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":[[1,0,3,0],[5,0,7,0],[0,0,0,0],[0,0,0,0]]},{"input":[[[0,2,3,4],[5,6,0,8],[9,0,1,2],[3,4,5,0]]],"output":[[0,0,0,0],[0,0,0,0],[0,0,0,0],[0,0,0,0]]},{"input":[[[0]]],"output":[[0]]},{"input":[[[1]]],"output":[[1]]}]}, +{"id":"check-balanced-parentheses","title":"Check Balanced Parentheses","description":"Implement method `isBalanced` to check whether an equation has a balanced number of left and right parentheses and brackets (including `(,),[,],{,}`).\n\n\n### Examples\n\n* `() [] ()` -> `true`\n* `([)]` -> `false`","timeLimit":1,"level":2,"func":{"name":"isBalanced","returnStatement":{"type":"java.lang.Boolean","comment":" Indicate if parentheses are balanced"},"parameters":[{"name":"input","type":"java.lang.String","comment":"input string with parentheses to be checked"}]},"testCases":[{"input":[""],"output":true},{"input":[null],"output":true},{"input":["() [] ()"],"output":true},{"input":["([)]"],"output":false},{"input":["()))[]"],"output":false},{"input":["[](){}"],"output":true},{"input":["(())"],"output":true},{"input":["{"],"output":false},{"input":[" ( ( { ( ( [ ]))}))()[()]"],"output":true},{"input":[" ( ( { ( ( [ ]))}))()[()] ( ( { ( ( [ ]))}))()[()] ( ( { ( ( [ ]))}))()[()] ( ( { ( ( [ ]))}))()[()]"],"output":true},{"input":[" ( ( { ( ( [ ]))}))()[()])"],"output":false}]}, +{"id":"matrix-max-sum-path","title":"Matrix Max Sum Path","description":"You are given an `m x n` matrix filed with non-negative integers. Write method `matrixMaxSum` to find the maximum sum along a path from the top-left of the grid to the bottom-right. Return this maximum sum.\n\nThe direction of movement is limited to right and down.\n\n### Examples\n\n```\n 1 2 3\n 4 5 6\n 7 8 9\n\n=> 1 + 4 + 7 + 8 + 9 = 29\n```","timeLimit":1,"level":2,"func":{"name":"matrixMaxSum","returnStatement":{"type":"java.lang.Integer","comment":"Max sum"},"parameters":[{"name":"matrix","type":"[[I","comment":"Matrix to check"}]},"testCases":[{"input":[[[1,2,3,4],[5,6,7,8],[9,0,1,2],[3,4,5,0]]],"output":29},{"input":[[[1,2,3],[4,5,6],[7,8,9]]],"output":29},{"input":[[[1,1,1],[1,1,1],[1,1,1]]],"output":5},{"input":[[[1]]],"output":1},{"input":[[[1,2],[3,4]]],"output":8},{"input":[[[1,2,3],[4,5,6]]],"output":16}]}, +{"id":"merge-k-sorted-linked-lists","title":"Merge k Sorted Linked Lists","description":"Write a method `mergeKLists` to merge k **Sorted** `LinkedList`. \n\nWhy would you ever want to do that? Well, if you're dealing with a list of over 200 Million `Integers` that needs to be sorted, an efficient approach might involve splitting up the massive list into `k` smaller lists, sorting each list in memory and then combining the sorted lists to re-create the original list, albeit sorted.\n\n### Example\n```\n* 1->2->13->20\n* 1->20->35->40\n* 5->6->12->18\n\n=> 1->1->2->5->6->12->13->18->20->20->35->40\n```","timeLimit":1,"level":2,"func":{"name":"mergeKLists","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":"Merged Linked List"},"parameters":[{"name":"lists","type":"java.util.ArrayList","comment":"List of Sorted Linked Lists","generic":"ListNode"}]},"testCases":[{"input":[[[1,2,13,20],[1,20,35,40],[5,6,12,18]]],"output":[1,1,2,5,6,12,13,18,20,20,35,40]},{"input":[[[1,2,3,4,5],[1,2,3,4],[8]]],"output":[1,1,2,2,3,3,4,4,5,8]},{"input":[[[2,4,13,40],[1,5,12,14],[8],[6,7,9]]],"output":[1,2,4,5,6,7,8,9,12,13,14,40]},{"input":[[[2,4,13,45],[1,5,12,14],[8],[60,70,82,89,90],[46,65]]],"output":[1,2,4,5,8,12,13,14,45,46,60,65,70,82,89,90]},{"input":[[[1],[1],[1],[1],[1]]],"output":[1,1,1,1,1]},{"input":[[[1,2]]],"output":[1,2]}]}, +{"id":"find-max-sum-level","title":"Find Max Sum Level","description":"Given a binary tree, Write a method `findMaxSumLevel` to return the level that has the maximum sum. In case the tree is empty return -1.\n\n### Example\n\n ```\n0 1\n / \\\n1 2 3 ==> 2\n / \\ / \\\n2 4 5 6 7 \n```","timeLimit":1,"level":2,"func":{"name":"findMaxSumLevel","returnStatement":{"type":"java.lang.Integer","comment":"Level that has the Maximum Sum"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":2},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":2},{"input":[{"data":21,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":0},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6,"left":{"data":7},"right":{"data":8}}}}}],"output":4},{"input":[{"data":1}],"output":0},{"input":[null],"output":-1}]}, +{"id":"rev-level-order-traversal","title":"Reverse Level Order Traversal","description":"Given a binary tree, Write a method `levelorderRev ` to traverse the tree in the reversed level order manner. Return array of elements visited in reversed level order format.\n\n### Example\n\n ```\n 1\n / \\\n 2 3 ==> 4567231\n / \\ / \\\n 4 5 6 7 \n```","timeLimit":1,"level":2,"func":{"name":"levelorderRev","returnStatement":{"type":"[I","comment":"Reverse level ordered array of binary tree elements"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}}],"output":[4,5,6,7,2,3,1]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}}],"output":[6,4,7,2,3,1]},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6,"left":{"data":7},"right":{"data":8}}}}}],"output":[7,8,6,4,7,2,3,1]},{"input":[{"data":1}],"output":[1]},{"input":[null],"output":[]}]}, +{"id":"word-similarity","title":"Word Similarity - Edit Distance","description":"Edit distance is a classic algorithm that is used in many applications, including Spell Correction, DNA Sequencing and Natural Language Processing. Given two strings `a` and `b`, write a method - `editDistance` that returns the **minimum number of operations** needed to transform `a` into `b`. The following character operations are allowed:\n* Replace character\n* Insert character\n* Delete character\n\n### Examples\n\n```\n\"sale\", \"sales\" => 1\n\n1) Insert \"s\"\n```\n\n```\n\"sale\", \"sold\" => 2\n\n1) Replace \"a\" with \"o\"\n2) Replace \"e\" with \"d\"\n```\n\n```\n\"sa\", \"s\" => 1\n\n1) Delete \"a\"\n```","timeLimit":1,"level":2,"func":{"name":"editDistance","returnStatement":{"type":"java.lang.Integer","comment":"Minimum number of operations"},"parameters":[{"name":"a","type":"java.lang.String","comment":"input string to be transformed"},{"name":"b","type":"java.lang.String","comment":"destination string"}]},"testCases":[{"input":["","a"],"output":1},{"input":[null,""],"output":0},{"input":["",null],"output":0},{"input":["",""],"output":0},{"input":[null,null],"output":0},{"input":["css","dll"],"output":3},{"input":["sale","sales"],"output":1},{"input":["sale","sold"],"output":2},{"input":["sa","s"],"output":1},{"input":["confusion","confusing"],"output":2},{"input":["abc","adef"],"output":3},{"input":["coding","code"],"output":3},{"input":["ATGCATGGCCAATTGCCAAT","ATCGATCGATCG"],"output":12},{"input":["ATGCATGGCCAAAATTTTAAAAATAGAGAGATTTCCCAATTGCCAAT","ATCGATCGATCGAATTA"],"output":32},{"input":["interview","intuition"],"output":5},{"input":["saturday","sunday"],"output":3}]}, +{"id":"subset-summation","title":"Subset Summation","description":"Given an array of integers and a target number, determine if it is possible to choose a group of integers from the array, such that the numbers in the group sum to the given target.\n\n### Example\n\n* `[1,2,3,6,5], 10` -> `true`\n* `[1,2,3,6,5], 18` -> `false`","timeLimit":1,"level":2,"func":{"name":"groupSum","returnStatement":{"type":"java.lang.Boolean","comment":"Is possible to find sum"},"parameters":[{"name":"numbers","type":"[I","comment":"An array of numbers","generic":null},{"name":"target","type":"java.lang.Integer","comment":"Target sum number","generic":null}]},"testCases":[{"input":[[2,7,11,15],9],"output":true},{"input":[[1,2,3,6,5],10],"output":true},{"input":[[1,2,3,6,5],18],"output":false},{"input":[[1,0,-1],2],"output":false},{"input":[[1,-3,-4],-2],"output":true},{"input":[[],1],"output":false},{"input":[[1,2,5,6,7,3,5,8,-33,-5,-72,12,-34,100,99],-64],"output":true},{"input":[[1,2,33,23,2423,33,23,1,7,6,8787,5,33,2,3,-23,-54,-67,100,400],390],"output":true},{"input":[[-1,-2,-3,-4,-5,-6,-100,-98,-111,-11],-70],"output":false}]}, +{"id":"longest-nr-substring-len","title":"Longest Non-Repeating Substring","description":"Given a `String` input, write a method `longestNRSubstringLen` to find the length of the longest `substring` that is made up of non-repeating characters.\n\n### Examples\n\n* `\"BCEFGHBCFG\"` -> `6` (\"CEFGHB\" or \"EFGHBC\")\n* `\"FFFFF\"` -> `1` (\"F\")\n* `\"aaabbbabcde\"` -> `5`","timeLimit":1,"level":2,"func":{"name":"longestNRSubstringLen","returnStatement":{"type":"java.lang.Integer","comment":"Length of longest non-repeating substring"},"parameters":[{"name":"input","type":"java.lang.String","comment":"input string"}]},"testCases":[{"input":[""],"output":0},{"input":[null],"output":0},{"input":["abc"],"output":3},{"input":["adSda"],"output":3},{"input":["BCEFGHBCFG"],"output":6},{"input":["FFFFF"],"output":1},{"input":["aaaabcdnha"],"output":6},{"input":["ABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./0123456789:;<=>?@[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz{|}~"],"output":94}]}, +{"id":"insert-range","title":"Range Module - Inserting Ranges","description":"A Range Module is a module that tracks ranges of numbers. Range modules are used extensively when designing scalable online game maps with millions of players. \n\nYour task is to write a method - `insertRange` that takes in an `ArrayList` of sorted, non-overlapping integer `Interval's` (aka ranges) and a new `Interval` - insert, and returns an `ArrayList` of sorted `Interval's` where insert has been added to the `ArrayList` in the correct spot and the required overlapping ranges have been merged. Target a time complexity of O(n).\n\nNote: \n* [1,3] represents an interval that includes 1, 2 and 3.\n* Intervals should be sorted based on the value of start\n* The words Range and Interval are used interchangeably\n\n### Examples\n\n* ` [ [1,3], [7,10] ] & [2,6]` -> `[ [1,6], [7,10] ]`\n","timeLimit":1,"level":3,"func":{"name":"insertRange","returnStatement":{"type":"java.util.ArrayList","comment":"Array with inserted ranges","generic":"Interval"},"parameters":[{"name":"intervalsList","type":"java.util.ArrayList","comment":"sorted, non-overlapping list of Intervals","generic":"Interval"},{"name":"insert","type":"com.jalgoarena.type.Interval","comment":"interval to insert"}]},"testCases":[{"input":[[{"start":1,"end":3},{"start":7,"end":10}],{"start":2,"end":6}],"output":[{"start":1,"end":6},{"start":7,"end":10}]},{"input":[[{"start":-10,"end":-5},{"start":0,"end":10}],{"start":-2,"end":-1}],"output":[{"start":-10,"end":-5},{"start":-2,"end":-1},{"start":0,"end":10}]},{"input":[[{"start":-10,"end":-5},{"start":0,"end":10}],{"start":-5,"end":0}],"output":[{"start":-10,"end":10}]},{"input":[[{"start":0,"end":1},{"start":3,"end":4}],{"start":2,"end":10}],"output":[{"start":0,"end":1},{"start":2,"end":10}]},{"input":[[{"start":1,"end":2},{"start":3,"end":5},{"start":6,"end":7},{"start":8,"end":10},{"start":12,"end":14}],{"start":5,"end":9}],"output":[{"start":1,"end":2},{"start":3,"end":10},{"start":12,"end":14}]},{"input":[[{"start":0,"end":5}],{"start":1,"end":2}],"output":[{"start":0,"end":5}]},{"input":[[],{"start":1,"end":2}],"output":[{"start":1,"end":2}]},{"input":[[{"start":0,"end":1},{"start":4,"end":5}],{"start":2,"end":3}],"output":[{"start":0,"end":1},{"start":2,"end":3},{"start":4,"end":5}]}]}, +{"id":"min-triangle-depth","title":"Minimum Triangle Depth","description":"Given a 'triangle' as an `ArrayList` of `ArrayList`'s of integers, with each list representing a level of the triangle, find the **minimum sum** achieved by following a top-down path and adding the integer at each level along the path. \n\nMovement is restricted to adjacent numbers from the top to the bottom.\n\nNotes:\n* you can traverse through adjacent nodes while moving up or down the triangle.\n* An adjacent node is defined as a node that is reached by moving down and left or down and right from a level. For example, in the triangle shown below, if you are at the digit 3 in the second row, its adjacent nodes are 5 and 6\n\n### Examples\n\n```\n[ [1],\n [2,3],\n [4,5,6],\n [7,8,9,10]\n]\n\n=> 14 (1->2->4->7)\n```","timeLimit":1,"level":2,"func":{"name":"minTriangleDepth","returnStatement":{"type":"java.lang.Integer","comment":"Minimum sum"},"parameters":[{"name":"input","type":"java.util.ArrayList","comment":"input triangle","generic":"ArrayList"}]},"testCases":[{"input":[[[1],[2,3],[4,5,6],[7,8,9,10]]],"output":14},{"input":[[[1]]],"output":1},{"input":[[[]]],"output":0},{"input":[[[1],[1,0],[1,2,3],[7,2,3,1]]],"output":5},{"input":[[[1],[1,0],[1,2,3],[7,2,3,1],[5,6,7,3,2]]],"output":7},{"input":[[[1],[2,3],[4,5,6]]],"output":7},{"input":[[[1],[2,3]]],"output":3}]}, +{"id":"distance-binary-tree","title":"Distance in a Binary Tree","description":"Given a binary tree and 2 integers that represents the `data` values of any two `TreeNode` present in the tree, write a method `getNodeDistance` that returns distance between the nodes. \n\nIf any of key does not exist in the tree, return -1. The **distance** between two nodes is defined as the minimum number of **edges** that must be traversed to travel between the two nodes.\n\n### Example\n\n ```\n 1\n / \\\n 2 3 ==> getNodeDistance(2,7) => 3\n / \\ / \\\n 4 5 6 7 \n```","timeLimit":1,"level":2,"func":{"name":"getNodeDistance","returnStatement":{"type":"java.lang.Integer","comment":"Distance between the nodes"},"parameters":[{"name":"root","type":"com.jalgoarena.type.TreeNode","comment":"Root of binary tree"},{"name":"n1","type":"java.lang.Integer","comment":"first node data"},{"name":"n2","type":"java.lang.Integer","comment":"second node data"}]},"testCases":[{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}},2,7],"output":3},{"input":[{"data":1,"left":{"data":2,"left":{"data":4},"right":{"data":5}},"right":{"data":3,"left":{"data":6},"right":{"data":7}}},4,6],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}},2,6],"output":4},{"input":[{"data":1,"left":{"data":2,"left":{"data":4}},"right":{"data":3,"right":{"data":7,"left":{"data":6}}}},2,5],"output":-1},{"input":[{"data":1},1,2],"output":-1},{"input":[null,1,2],"output":-1}]}, +{"id":"bit-conversion","title":"Bit Conversion","description":"Given two input integers `a` and `b`, write a method `bitSwapRequired` to determine the number of bits required to be swapped to convert `a` to `b`.\n\n**Note**: using java framework to solve it is forbidden - you have to code it by yourself.\n\n### Example\n\n`21, 31` => `2`\n* `21 = 10101`\n* `31 = 11111`","timeLimit":1,"level":2,"func":{"name":"bitSwapRequired","returnStatement":{"type":"java.lang.Integer","comment":"Number of swaps"},"parameters":[{"name":"a","type":"java.lang.Integer","comment":"first number"},{"name":"b","type":"java.lang.Integer","comment":"second number"}]},"testCases":[{"input":[21,31],"output":2},{"input":[19,29],"output":3},{"input":[121,200],"output":4},{"input":[21,29],"output":1},{"input":[0,0],"output":0},{"input":[2344,8274],"output":8}]}, +{"id":"reverse-in-pairs","title":"Reverse a Linked List in Pairs","description":"Given a **singly linked list**, write a method `reverseInPairs` to reverse the list in pairs.\n\n### Example\n\n* `1->2->3->4` -> `2->1->4->3`","timeLimit":1,"level":2,"func":{"name":"reverseInPairs","returnStatement":{"type":"com.jalgoarena.type.ListNode","comment":"Reversed list in pairs"},"parameters":[{"name":"head","type":"com.jalgoarena.type.ListNode","comment":"Linked List head"}]},"testCases":[{"input":[[1,2,3,4,5]],"output":[2,1,4,3,5]},{"input":[[1]],"output":[1]},{"input":[[]],"output":[]},{"input":[[5,3,1]],"output":[3,5,1]},{"input":[[1,2,3,4]],"output":[2,1,4,3]},{"input":[null],"output":null}]}, +{"id":"merge-ranges","title":"Range Module - Merging Ranges","description":"A Range Module is a module that tracks ranges of numbers. Range modules are used extensively when designing scalable online game maps with millions of players. \n\nYour task is to write a method - `mergeIntervals` that takes in an `ArrayList` of integer `Interval`s (aka ranges), and returns an `ArrayList` of **sorted** `Interval`s where all overlapping intervals have been merged.\n\nNote: \n* [1,3] represents an interval that includes 1, 2 and 3.\n* Intervals should be sorted based on the value of start\n* The words Range and Interval are used interchangeably\n\n### Examples\n\n* ` [[1,3],[2,5]]` => `[[1,5]]`\n* `[[3,5],[1,2]]` => `[[1,2],[3,5]]`","timeLimit":1,"level":2,"func":{"name":"mergeIntervals","returnStatement":{"type":"java.util.ArrayList","comment":"Array with merged ranges","generic":"Interval"},"parameters":[{"name":"intervalsList","type":"java.util.ArrayList","comment":"list of Intervals","generic":"Interval"}]},"testCases":[{"input":[[{"start":1,"end":3},{"start":2,"end":5}]],"output":[{"start":1,"end":5}]},{"input":[[{"start":3,"end":5},{"start":1,"end":2}]],"output":[{"start":1,"end":2},{"start":3,"end":5}]},{"input":[[]],"output":[]},{"input":[[{"start":-1,"end":3},{"start":2,"end":4},{"start":1,"end":2}]],"output":[{"start":-1,"end":4}]},{"input":[[{"start":0,"end":1}]],"output":[{"start":0,"end":1}]},{"input":[[{"start":1,"end":2},{"start":3,"end":4},{"start":2,"end":3},{"start":4,"end":5}]],"output":[{"start":1,"end":5}]},{"input":[[{"start":1,"end":3},{"start":2,"end":9}]],"output":[{"start":1,"end":9}]},{"input":[[{"start":1,"end":3},{"start":2,"end":6},{"start":15,"end":18},{"start":8,"end":10}]],"output":[{"start":1,"end":6},{"start":8,"end":10},{"start":15,"end":18}]},{"input":[[{"start":0,"end":1},{"start":0,"end":1},{"start":0,"end":1},{"start":0,"end":0}]],"output":[{"start":0,"end":1}]},{"input":[[{"start":-5,"end":-3},{"start":0,"end":10},{"start":-4,"end":-2}]],"output":[{"start":-5,"end":-2},{"start":0,"end":10}]}]}, +{"id":"boggle-paper-dictionary","title":"Boggle with Paper Dictionary","description":"You're given a 2D **Boggle Board** which constrains an `m x n` matrix of chars - `char[][] board`, and a rudimentary, paper Dictionary in the form of an `ArrayList` of more than 19,000 words.\n\nWrite a method - `boggleByot` that searches the Boggle Board for words in the dictionary. Your method should return an **alphabetically sorted** `ArrayList` of words that are present on the board as well as in the dictionary.\n\nWords on the board can be constructed with **sequential adjacent** letters, where adjacent letters are horizontal or vertical neighbours (not diagonal). Also, each letter on the Boggle Board must be used only once.\n\nNote: \n* Your program should run in a reasonable amount of time - about a few milliseconds for each test case.\n\n### Examples\n\n```\nExample:\n\nInput Board : \n{\n {A, O, L},\n {D, E, L},\n {G, H, I},\n}\nDictionary : Boggle dictionary of more than 19,000 english words\nOutput: [HELLO]\n```","timeLimit":1,"level":3,"func":{"name":"boggleByot","returnStatement":{"type":"java.util.ArrayList","comment":"List of words","generic":"String"},"parameters":[{"name":"board","type":"[[C","comment":"Boggle Board"},{"name":"dictionary","type":"java.util.ArrayList","comment":"Boggle dictionary of more than 19,000 english words","generic":"String"}]},"testCases":[{"input":[[["A","O","L"],["D","E","L"],["G","H","I"]],""],"output":["DELL","ELL","HELL","HELLO","HILL","ILL","LED","LOAD"]},{"input":[[["A","G","A","J"],["G","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["AGE","COD","CODE","CORE","FEE","FEED","GAG","GAGE","GIG","IRE","JACK","JAG","ODE","ORE","OVA","RIG","ROCK","ROE","SEE"]},{"input":[[["A","P","A","J"],["S","R","V","A"],["P","E","O","C"],["P","X","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["FEE","FEED","JACK","ODE","OVA","PER","POD","PREP","REP","SAP","SEE"]},{"input":[[["A","O","A","J"],["S","K","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","O"],["D","E","E","R"]],""],"output":["ASK","COD","CODE","CORE","CORK","DEER","FEE","FEED","FOR","FORE","JACK","ODE","ORE","OVA","REED","ROCK","ROE","SEC"]},{"input":[[["A","T","A","J"],["S","O","V","A"],["E","O","O","C"],["C","L","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["COD","CODE","COO","COOL","FEE","FEED","JACK","LOOSE","LOOT","ODE","OLD","OVA","SAT","SEC","SEE","TOO","TOOL","VAT"]},{"input":[[["A","F","G","N"],["N","I","D","I"],["T","E","R","V"],["C","G","E","I"],["O","N","F","E"],["D","I","E","W"]],""],"output":["ANI","ANT","ANTE","COD","CON","CONFER","DIE","DIET","DIN","DING","DINT","DON","DREG","ERE","ETC","EWE","FAN","FEW","FIN","GET","INFER","INTEGER","INTER","NOD","REIN","RET","VIE","VIEW"]},{"input":[[["A","F","A","J"],["S","I","V","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","T"],["D","E","E","H"]],""],"output":["AFIRE","COD","CODE","CORE","EFT","FEE","FEED","FIR","FIRE","HEED","HEFT","IRE","JACK","ODE","ORE","OVA","RISE","ROCK","ROE","SEC","SERIF","SIR","SIRE","SIVA","THE","THEE","VIS","VISA","VISE"]},{"input":[[["S","E","B","J"],["T","L","U","A"],["E","R","O","C"],["C","X","E","K"],["O","D","F","S"],["D","E","E","E"]],""],"output":["BEL","BELT","BEST","COD","CODE","CORE","ESTER","FEE","FEED","JACK","LEST","ODE","ORE","RET","ROCK","ROE","SEE"]}]}, +{"id":"largest-square","title":"Largest Square","description":"Given a two dimensional matrix made up of **0**'s and **1**'s, write a method `largestSquare` to find the largest square containing all 1's and return its `area`. \n\nThe `area` is simply the sum of all integers enclosed in the square.\n\n### Example\n\n```\nInput Matrix : \n \n 1101 xxxx 11xx\n 1101 => 11xx or 11xx\n 1111 11xx xxxx\n\nOutput : 4\n```","timeLimit":1,"level":3,"func":{"name":"largestSquare","returnStatement":{"type":"java.lang.Integer","comment":"Area of the largest square"},"parameters":[{"name":"matrix","type":"[[C","comment":"2D matrix of 0s and 1s"}]},"testCases":[{"input":[[["1","1","0","1"],["1","1","0","1"],["1","1","1","1"]]],"output":4},{"input":[[["1","1"],["1","1"]]],"output":4},{"input":[[["1","1","1"],["1","1","1"],["1","1","1"]]],"output":9},{"input":[[["1","0"],["0","1"]]],"output":1},{"input":[[["1","1","0","1","0"],["1","1","0","1","1"],["0","1","1","1","0"],["1","1","1","1","1"],["1","1","1","1","0"]]],"output":9},{"input":[[["0","0"],["0","0"]]],"output":0}]}, +{"id":"longest-palindromic-substring","title":"Longest Palindromic Substring","description":"Given a `String`, write the method `longestPalSubstr` that finds and returns the longest substring which is also a `Palindrome`. \n\nTry and accomplish this in at most **O(n^2^)** runtime.\n\n### Examples\n\n* `\"bccb\"` => `\"bccb\"`\n* `\"bccd\"` => `\"cc\"`\n* `\"bccc\"` => `\"ccc\"`","timeLimit":1,"level":3,"func":{"name":"longestPalSubstr","returnStatement":{"type":"java.lang.String","comment":"Longest substring which is also a Palindrome"},"parameters":[{"name":"str","type":"java.lang.String","comment":"input"}]},"testCases":[{"input":["bccb"],"output":"bccb"},{"input":["bccd"],"output":"cc"},{"input":["bccc"],"output":"ccc"},{"input":["AAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBAAAAAAAAAAAAAAACCCCCCCDDDAAAAAAAAAAAAAAAA"],"output":"AAAAAAAAAAAAAAABBBBBBBBBBBBBBAAAAAAAAAAAAAAA"},{"input":["A"],"output":"A"},{"input":["ABCD"],"output":"A"},{"input":["ABCDEFGHHGFEBA"],"output":"EFGHHGFE"}]}, +{"id":"1-800-problem","title":"1-800-Problem","description":"Given a `String` that represents the digits pressed on a classic cell phone keypad - return all possible letter `combinations` that the numbers could represent in an `ArrayList` of `String`s.\n\nCheck out the keypad mapping below for reference.\n\n**Note:**\n* You can assume that the input String contains only numbers between 2 and 9\n* The `combinations` should be return in alphabetical order\n\nMapping:\n* 2 -> \"abc\"\n* 3 -> \"def\"\n* 4 -> \"ghi\"\n* 5 -> \"jkl\"\n* 6 -> \"mno\"\n* 7 -> \"pqrs\"\n* 8 -> \"tuv\"\n* 9 -> \"wxyz\"\n\n### Examples\n\n* `34` -> `[dg, dh, di, eg, eh, ei, fg, fh, fi]`","timeLimit":1,"level":2,"func":{"name":"getStringsFromNums","returnStatement":{"type":"java.util.ArrayList","comment":"Combinations","generic":"String"},"parameters":[{"name":"digits","type":"java.lang.String","comment":"digits pressed on a classic cell phone keypad"}]},"testCases":[{"input":["34"],"output":["dg","dh","di","eg","eh","ei","fg","fh","fi"]},{"input":["23"],"output":["ad","ae","af","bd","be","bf","cd","ce","cf"]},{"input":["232"],"output":["ada","adb","adc","aea","aeb","aec","afa","afb","afc","bda","bdb","bdc","bea","beb","bec","bfa","bfb","bfc","cda","cdb","cdc","cea","ceb","cec","cfa","cfb","cfc"]},{"input":["6"],"output":["m","n","o"]},{"input":["8"],"output":["t","u","v"]}]}, +{"id":"max-cont-sequence","title":"Maximum Contiguous Subsequence","description":"Given an array of integers consisting of both positive and negative numbers, write a method `maxContSequence` to find the contiguous subsequence that has the **maximum sum** among all `subsequences` in the array.\n\nYour method should return `res` array containing 3 integers in the following format:\n```\nres[0] = max sum\nres[1] = starting index of the subsequence\nres[2] = ending index of the subsequence\n```\n\n**Note**\n* In mathematics, a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements. For example, the sequence `` is a subsequence of ``. They should not be confused with substring which is a refinement of subsequence.\n* you can check wikipedia for more details\n* for empty input, return `[0,0,-1]`\n\n### Examples\n\n* `[-1,-2,3,4,5]` -> `[12,2,4]`\n* `[1,2,3,-2,5]` -> `[9,0,4]`","timeLimit":1,"level":3,"func":{"name":"maxContSequence","returnStatement":{"type":"[I","comment":"Result containing 3 integers, max sum, starting and ending index of the subsequence"},"parameters":[{"name":"arr","type":"[I","comment":"array of integers"}]},"testCases":[{"input":[[-1,-2,3,4,5]],"output":[12,2,4]},{"input":[[1,2,3,-2,5]],"output":[9,0,4]},{"input":[[]],"output":[0,0,-1]},{"input":[[-1,30,-4,20,20,-11]],"output":[66,1,4]},{"input":[[1,2,3,4,5,6]],"output":[21,0,5]},{"input":[[-1,-2,-3,-4,-5,-6]],"output":[-1,0,0]}]}, +{"id":"factorial","title":"Factorial","description":"Write the `factorial` method to return unity digit of the factorial of n (`n!`).\n\n### Notes\n* for `n <= 1` we have `n! = 1`\n\n### Examples\n\n* `4` -> `4`","timeLimit":1,"level":1,"func":{"name":"factorial","returnStatement":{"type":"java.lang.Integer","comment":"Unity digit of the factorial"},"parameters":[{"name":"n","type":"java.lang.Integer","comment":"Input number for factorial"}]},"testCases":[{"input":[4],"output":4},{"input":[0],"output":1},{"input":[1],"output":1},{"input":[3],"output":6},{"input":[4],"output":4},{"input":[5],"output":0},{"input":[6],"output":0},{"input":[7],"output":0},{"input":[21351],"output":0},{"input":[29999],"output":0}]}, +{"id":"country-postman","title":"Country postman","description":"Country postman has to delivery the mail all the inhabitants of the area, who live in the villages and next to the roads linking villages.\n\nYou need to help pave the postman route - find a path that will allow him to ride along every road and visit every village in the area at least once. That's fortunate that in the considered examples of such a route is always there. However, the marked routes may differ quality, ie. the postman can receive different payment for his work depending on the chosen route (as we will see, it does not gain the postman is the most important, but the profit of his company, the post office).\n\nThe inhabitants of each village would like to postman reached them as soon as possible. Each village has concluded with the post office the following agreement: if `i'th` village is visited by the postman as `k'th` in order (means the postman visited already `k - 1` other villages before he reached `i'th` village) and `k <= w(i)`, then village pays the post office `w(i) - k`CHF. Although, if `k > w(i)`, then the post office pays village `k - w(i)`CHF. \n\nMoreover, the post office pays to country postman one CHF for each passage between two successive villages along his route.\n\n### Notes\n* We mark villages with `id` - which is number between `1..n`, `n` is number of villages.\n* The post office is located in the village identified by a number `1` and thus the postman route must begin in this village.\n* In each village coincides 2, 4 or 8 roads.\n* Between the two villages there may be several different ways; the road may also return to the same village, from which it emerged.\n\nWrite method `findPath` to find the route that runs through every village and along every road, and which achieves the post maximum profit (or suffer minimal loss).\n\nIf there is more than one solution, your program should calculate one of them.\n\n### Input\n* `villages` - id of village is `i = index + 1`, the values in array represents `w(i)`, where `1<=w(i) <= 1000`, that is the initial amount paid by the village to the post office number `i` (this amount is obviously modified as described at the beginning of the task the way).\n* `roads` - array of paths, every path contains two village ids which it connects\n\n### Examples\n\n* `[1,7,4,10,20,5], [[2,4],[1,5],[2,1],[4,5],[3,6],[1,6],[1,3]]` -> `[1,5,4,2,1,6,3,1]`\n","timeLimit":1,"level":3,"func":{"name":"findPath","returnStatement":{"type":"[I","comment":"Array of village ids as the most optimal path for country postman"},"parameters":[{"name":"villages","type":"[I","comment":"array of village ids"},{"name":"roads","type":"[[I","comment":"paths joining different villages"}]},"testCases":[{"input":[[1,7,4,10,20,5],[[2,4],[1,5],[2,1],[4,5],[3,6],[1,6],[1,3]]],"output":[1,5,4,2,1,6,3,1]},{"input":[[1,2,5,1,12,2,3],[[1,2],[7,7],[2,5],[3,7],[4,3],[1,4],[5,2],[2,3],[3,6],[6,6],[6,7]]],"output":[1,2,5,2,3,7,7,6,6,3,4,1]},{"input":[[1,1,1,1,1,1,1,1,1,1],[[7,7],[4,10],[2,7],[1,3],[5,4],[10,4],[3,1],[3,8],[8,7],[4,5],[7,8],[4,3],[5,1],[5,2],[6,7],[7,4],[9,9],[8,9],[8,8],[4,4],[8,3],[7,6],[6,1],[2,2],[3,2],[5,2],[9,6],[1,1],[2,5],[3,10],[10,8],[1,5],[1,5],[2,3]]],"output":[1,3,1,5,4,10,4,5,2,2,7,7,8,3,4,4,7,6,7,8,8,3,2,5,2,3,10,8,9,9,6,1,1,5,1]},{"input":[[32,32,25,15,64,49,87,28,72,85,75,79,56,85,97,37,86,31,81,80],[[5,7],[9,10],[15,17],[1,10],[10,9],[20,19],[6,5],[14,16],[19,20],[2,1],[13,15],[6,8],[11,13],[16,15],[12,11],[13,14],[4,3],[20,10],[10,12],[7,8],[15,16],[18,20],[2,4],[16,18],[1,2],[4,6],[8,7],[9,11],[7,9],[17,18],[11,12],[18,17],[2,1],[5,6],[1,1],[14,13],[3,5],[8,10],[3,4],[1,20],[20,19],[20,20],[17,19],[1,3],[10,10],[12,14]]],"output":[1,2,1,1,10,9,10,12,11,13,15,16,14,13,14,12,11,9,7,5,6,8,7,8,10,10,20,19,20,18,16,15,17,18,17,19,20,20,1,2,4,3,5,6,4,3,1]},{"input":[[35,95,25,8,10,98,52,45,25,6,55,46,46,52,61,7,9,43,92,79,84,28,52,75,12,100,58,56,83,64,22,47,94,78,40,22,10,63,34,46],[[2,19],[20,20],[8,9],[8,3],[39,40],[35,13],[25,26],[9,13],[37,21],[2,21],[34,2],[22,38],[36,12],[27,28],[40,1],[32,40],[9,3],[6,6],[10,19],[30,28],[20,39],[12,13],[25,3],[29,9],[11,3],[18,6],[22,15],[17,18],[23,24],[4,5],[10,10],[29,30],[31,13],[18,19],[15,15],[35,40],[16,17],[9,20],[3,4],[8,4],[13,14],[21,25],[28,11],[8,8],[33,24],[31,19],[21,16],[31,34],[4,27],[36,35],[30,31],[9,10],[5,38],[17,16],[18,18],[21,22],[37,38],[36,37],[9,9],[21,19],[3,14],[10,11],[2,3],[27,26],[32,33],[11,25],[32,2],[38,38],[34,35],[4,4],[31,32],[25,18],[13,29],[36,18],[31,40],[22,24],[33,34],[4,36],[20,34],[35,14],[32,35],[17,11],[15,13],[11,23],[16,13],[26,27],[36,36],[1,2],[6,7],[28,29],[11,2],[30,1],[12,25],[32,10],[14,15],[28,26],[8,6],[19,37],[38,30],[23,23],[30,19],[35,28],[20,21],[7,8],[8,30],[15,16],[10,40],[22,23],[23,22],[14,14],[24,25],[34,32],[15,16],[22,28],[15,10],[16,16],[35,36],[11,12],[33,4],[40,38],[23,32],[1,5],[14,22],[30,31],[28,39],[25,18],[38,39],[3,6],[5,6],[19,20],[23,2],[20,21],[34,34],[14,6],[40,31]]],"output":[1,40,39,20,20,9,8,8,3,9,29,30,28,11,3,25,21,2,19,10,10,9,9,13,35,36,12,13,31,34,35,40,32,33,34,2,32,31,19,18,18,17,16,17,11,25,18,6,6,8,4,3,14,13,29,28,27,4,4,5,38,22,15,15,13,16,21,37,36,36,4,33,24,23,23,11,10,32,35,14,14,15,16,16,15,10,40,31,30,1,2,11,12,25,26,27,26,28,35,36,18,25,24,22,23,22,21,19,37,38,38,30,19,20,21,20,34,34,32,23,2,3,6,7,8,30,31,40,38,39,28,22,14,6,5,1]},{"input":[[12,266,129,692,640,907,337,828,382,413,559,495,342,717,291,798,855,855,41,651,813,570,673,892,385,815,813,94,775,896,851,555,364,519,488,189,517,652,663,654,721,586,238,392,505,663,288,82,901,8,169,179,251,109,993,110,668,638,876,244,868,553,203,267,404,981,779,451,777,111,201,960,212,935,175,749,385,580,100,74,372,963,293,241,932,884,682,201,308,270,984,986,65,106,970,83,775,615,232,109],[[19,12],[88,15],[63,38],[50,2],[1,50],[30,3],[37,100],[21,21],[70,72],[22,95],[23,79],[28,58],[33,98],[14,42],[28,19],[2,71],[36,83],[32,42],[24,69],[72,8],[84,97],[44,83],[75,49],[79,63],[35,11],[16,69],[74,50],[23,31],[92,1],[99,32],[83,66],[78,43],[88,88],[36,83],[47,6],[12,4],[70,92],[64,11],[70,39],[77,42],[68,58],[3,50],[59,59],[76,47],[6,47],[85,27],[84,84],[60,66],[29,13],[17,26],[72,76],[16,39],[76,18],[34,89],[74,81],[100,47],[31,23],[86,36],[48,19],[79,85],[41,41],[93,40],[96,31],[59,41],[46,60],[58,68],[15,65],[91,34],[84,42],[90,72],[77,52],[19,95],[82,21],[96,80],[51,28],[8,72],[86,66],[87,25],[73,73],[63,34],[9,21],[74,8],[58,81],[55,14],[14,55],[8,74],[6,53],[55,44],[61,56],[52,77],[22,10],[4,54],[89,77],[47,76],[12,44],[22,86],[86,22],[55,99],[61,15],[40,73],[94,54],[85,79],[95,57],[27,24],[65,8],[67,44],[71,35],[50,2],[95,19],[97,98],[17,78],[12,24],[33,38],[73,27],[65,61],[66,60],[82,78],[19,19],[38,33],[83,36],[31,29],[21,5],[28,14],[21,82],[42,75],[99,55],[20,61],[17,48],[10,87],[48,11],[36,36],[64,87],[45,79],[5,17],[50,74],[23,12],[90,10],[87,55],[16,31],[7,94],[75,6],[94,89],[92,66],[49,79],[81,63],[8,65],[31,16],[24,2],[71,88],[42,14],[61,64],[4,73],[41,6],[44,12],[29,35],[19,28],[75,53],[10,22],[15,41],[72,70],[39,67],[23,71],[82,30],[25,65],[10,5],[28,51],[70,99],[62,69],[89,94],[76,100],[44,84],[3,28],[52,85],[95,96],[26,62],[81,45],[44,67],[92,84],[68,8],[43,9],[1,24],[16,16],[4,39],[2,24],[48,48],[41,15],[80,96],[27,73],[61,65],[9,9],[100,37],[76,32],[48,17],[66,92],[54,99],[94,81],[100,76],[10,100],[58,54],[90,90],[51,94],[5,86],[46,78],[3,3],[49,55],[42,77],[39,27],[14,28],[18,56],[57,82],[52,34],[11,48],[69,32],[33,33],[65,90],[6,75],[69,62],[12,23],[9,67],[89,89],[68,59],[47,67],[15,7],[57,95],[50,3],[24,12],[63,81],[57,31],[38,35],[72,90],[99,99],[5,21],[59,68],[78,46],[46,88],[39,4],[29,100],[52,89],[65,15],[34,63],[77,77],[64,4],[85,52],[66,6],[32,69],[54,58],[34,48],[90,54],[27,29],[13,68],[35,71],[96,59],[88,46],[3,62],[62,14],[25,87],[24,1],[67,47],[45,85],[64,61],[85,58],[25,26],[78,17],[37,22],[87,87],[11,11],[8,74],[71,93],[80,80],[94,7],[58,85],[80,16],[27,39],[75,97],[55,49],[15,88],[33,35],[40,82],[26,25],[69,51],[17,36],[63,63],[36,17],[79,49],[60,70],[32,32],[59,96],[83,44],[2,80],[49,49],[87,10],[100,29],[95,97],[13,23],[71,23],[32,76],[62,9],[46,46],[67,9],[83,83],[14,52],[96,96],[53,59],[78,82],[54,4],[35,33],[91,92],[68,13],[67,64],[11,33],[54,90],[98,97],[97,95],[92,91],[79,45],[57,37],[62,3],[99,70],[42,84],[47,80],[77,20],[84,92],[66,86],[86,5],[7,86],[69,16],[11,64],[25,22],[73,40],[31,57],[4,64],[53,75],[81,94],[34,52],[2,50],[21,46],[97,75],[49,57],[41,78],[93,71],[56,61],[89,34],[98,25],[73,93],[97,72],[56,5],[22,25],[39,70],[5,10],[81,74],[6,41],[29,27],[82,57],[35,29],[80,2],[9,62],[74,91],[88,68]]],"output":[1,50,74,81,58,68,58,28,19,48,48,17,78,43,9,9,21,21,82,30,3,50,2,71,35,11,64,87,10,22,95,19,19,95,57,82,78,46,60,66,86,22,10,90,90,72,8,74,8,72,70,92,66,83,36,83,44,55,14,42,77,52,77,77,89,34,63,38,33,98,97,84,84,42,32,99,55,14,28,51,28,19,12,4,54,94,89,89,94,81,63,79,23,31,23,12,44,67,39,16,69,24,27,73,73,4,39,70,72,76,47,6,47,100,37,100,76,18,56,61,15,65,8,68,59,59,41,41,15,88,88,46,46,78,82,21,5,17,26,62,69,32,76,47,67,44,12,24,2,50,74,8,65,61,64,4,39,27,85,79,85,52,34,63,63,81,45,79,49,75,6,53,75,42,14,28,3,3,62,69,51,94,7,15,41,6,75,97,95,96,80,80,96,31,16,16,31,29,13,68,59,96,96,59,53,75,97,95,57,31,57,37,22,86,36,36,83,83,44,84,92,66,6,41,78,17,36,17,48,11,11,48,34,91,92,1,24,2,80,47,67,9,62,3,50,2,80,16,69,32,32,76,100,10,5,86,66,60,70,99,99,55,49,55,87,25,26,25,65,61,20,77,42,84,92,91,74,81,94,7,86,5,21,46,88,71,35,38,33,33,35,29,100,29,27,73,40,93,71,23,13,68,88,15,65,90,72,97,98,25,22,25,87,87,10,5,56,61,64,11,33,35,29,27,39,70,99,54,58,54,90,54,4,64,67,9,62,14,52,89,34,52,85,58,85,45,79,49,49,57,82,40,73,93,71,23,12,24,1]}]}, +{"id":"power","title":"Power","description":"Write the `pow` method to return unity digit (last digit of integer) of the number 2^n^. \n\n### Notes\n* 0 <= n <= 10^40^ \n\n### Examples\n\n* `\"10\"` -> `4`","timeLimit":1,"level":2,"func":{"name":"pow","returnStatement":{"type":"java.lang.Integer","comment":"Unity digit of the calculation result"},"parameters":[{"name":"n","type":"java.lang.String","comment":"Power value"}]},"testCases":[{"input":["10"],"output":4},{"input":["0"],"output":1},{"input":["1"],"output":2},{"input":["98"],"output":4},{"input":["1231231232"],"output":6},{"input":["100000000000000000000017"],"output":2},{"input":["999999999999999999999999999999999999999"],"output":8},{"input":["189027346918234689012375018"],"output":4},{"input":["1000000000000000000000000000000000000000"],"output":6},{"input":["31137"],"output":2},{"input":["13858949068651216783729893211"],"output":8}]}, +{"id":"binary-weighing-scale","title":"Binary Weighing Scale","description":"The binary weighing scale is a specific device that can perform measurements of any size within a specified range `(0, 1)` with a fixed accuracy. \n\nAccuracy of the balance is set using a knob that can be set in position `1` or `2` or `3`, or `...`, or `10`. When the accuracy is set to `m`, the weighing scale measures weight with an accuracy of ==1 / (2^m^)==.\n\nThe weighing results are stored in the form of pair `[l, m]`. Such a pair indicates that the accuracy of the weighing scale is set to `m` and weighing scale result is `l`. That is, the weight of the weighted object is ==(l / (2 ^m^))== (`l` is a natural number, and of course ==0 < L < 2^m^==, as mentioned above, the weighing scale indicates the size of the range of `(0, 1)`).\n\nWrite a method `sort` which will return the weighing scale results in ascending order of their real value. The results are given as array of pairs (another array), `[l, m]`. Different pairs can have same real value (e.g. `[1, 2]`, `[2, 3]`) - then you need to sort them by first item - `l`, again in ascending order.\n\n### Examples\n\n```\nInput:\n[[1000, 10],\n [3, 10],\n [5, 3],\n [250, 8]]\n\nOutput:\n[[3, 10],\n [5, 3],\n [250, 8],\n [1000, 10]]\n```","timeLimit":1,"level":3,"func":{"name":"sort","returnStatement":{"type":"[[I","comment":"Sorted weighing scale results"},"parameters":[{"name":"results","type":"[[I","comment":"Unsorted weighing scale results"}]},"testCases":[{"input":[[[1000,10],[3,10],[5,3],[250,8]]],"output":[[3,10],[5,3],[250,8],[1000,10]]},{"input":[[[100,10],[50,7],[7,3]]],"output":[[100,10],[50,7],[7,3]]},{"input":[[[100,10],[2,7],[1,4]]],"output":[[2,7],[1,4],[100,10]]},{"input":[[[100,10],[2,5],[1,4]]],"output":[[1,4],[2,5],[100,10]]},{"input":[[[730,10],[523,10],[66,10],[802,10],[390,10],[131,10],[980,10],[777,10],[844,10],[604,10],[779,10],[490,10],[697,10],[155,10],[365,10],[344,10],[656,10],[102,10],[509,10],[1003,10],[595,10],[70,10],[939,10],[961,10],[425,10],[187,10],[499,10],[961,10],[373,10],[236,10],[832,10],[121,10],[523,10],[225,10],[178,10],[169,10],[304,10],[742,10],[722,10],[248,10],[387,10],[565,10],[450,10],[350,10],[499,10],[1005,10],[622,10],[514,10],[870,10],[22,10],[406,10],[501,10],[921,10],[295,10],[564,10],[387,10],[82,10],[1022,10],[838,10],[478,10],[447,10],[25,10],[786,10],[638,10],[732,10],[822,10],[908,10],[3,10],[947,10],[199,10],[210,10],[850,10],[190,10],[939,10],[890,10],[674,10],[830,10],[455,10],[528,10],[904,10],[1008,10],[660,10],[398,10],[282,10],[420,10],[116,10],[974,10],[465,10],[565,10],[999,10],[108,10],[340,10],[301,10],[59,10],[884,10],[966,10],[871,10],[1,10],[266,10],[391,10],[512,10],[525,10],[1004,10],[125,10],[844,10],[785,10],[752,10],[136,10],[327,10],[777,10],[445,10],[583,10],[805,10],[239,10],[689,10],[353,10],[847,10],[669,10],[227,10],[644,10],[460,10],[953,10],[221,10],[241,10],[143,10],[937,10],[79,10],[408,10],[201,10],[964,10],[783,10],[493,10],[10,10],[811,10],[19,10],[669,10],[719,10],[759,10],[27,10],[387,10],[207,10],[240,10],[416,10],[678,10],[427,10],[413,10],[612,10],[505,10],[784,10],[414,10],[157,10],[503,10],[753,10],[901,10],[710,10],[625,10],[162,10],[410,10],[637,10],[271,10],[648,10],[707,10],[265,10],[352,10],[794,10],[889,10],[225,10],[457,10],[77,10],[101,10],[38,10],[174,10],[21,10],[837,10],[321,10],[11,10],[484,10],[56,10],[392,10],[782,10],[887,10],[459,10],[488,10],[62,10],[306,10],[454,10],[10,10],[851,10],[829,10],[43,10],[10,10],[139,10],[763,10],[469,10],[864,10],[3,10],[852,10],[513,10],[117,10],[127,10],[173,10],[418,10],[455,10],[364,10],[585,10],[859,10],[440,10],[31,10],[31,10],[152,10],[869,10],[596,10],[972,10],[464,10],[45,10],[265,10],[972,10],[624,10],[1002,10],[693,10],[196,10],[960,10],[226,10],[387,10],[864,10],[888,10],[337,10],[368,10],[465,10],[298,10],[748,10],[1001,10],[575,10],[855,10],[968,10],[601,10],[579,10],[23,10],[700,10],[645,10],[338,10],[486,10],[609,10],[959,10],[916,10],[990,10],[599,10],[722,10],[88,10],[385,10],[319,10],[483,10],[926,10],[350,10],[466,10],[263,10],[1017,10],[209,10],[206,10],[189,10],[662,10],[289,10],[309,10],[52,10],[587,10],[255,10],[91,10],[640,10],[80,10],[698,10],[748,10],[871,10],[993,10],[630,10],[730,10],[710,10],[583,10],[283,10],[630,10],[277,10],[144,10],[949,10],[429,10],[626,10],[829,10],[245,10],[208,10],[912,10],[792,10],[749,10],[453,10],[864,10],[726,10],[819,10],[863,10],[731,10],[84,10],[154,10],[337,10],[248,10],[338,10],[525,10],[306,10],[588,10],[45,10],[195,10],[560,10],[1006,10],[916,10],[326,10],[780,10],[92,10],[1000,10],[305,10],[87,10],[660,10],[480,10],[982,10],[497,10],[213,10],[723,10],[201,10],[245,10],[765,10],[175,10],[281,10],[396,10],[665,10],[772,10],[312,10],[147,10],[108,10],[362,10],[620,10],[513,10],[498,10],[934,10],[295,10],[129,10],[882,10],[124,10],[510,10],[25,10],[1011,10],[174,10],[424,10],[766,10],[263,10],[160,10],[830,10],[664,10],[352,10],[150,10],[866,10],[206,10],[737,10],[851,10],[29,10],[670,10],[67,10],[721,10],[293,10],[8,10],[566,10],[712,10],[914,10],[720,10],[777,10],[462,10],[225,10],[828,10],[7,10],[293,10],[480,10],[92,10],[749,10],[338,10],[42,10],[80,10],[220,10],[1023,10],[306,10],[904,10],[31,10],[45,10],[443,10],[672,10],[856,10],[1003,10],[845,10],[772,10],[370,10],[116,10],[58,10],[970,10],[942,10],[934,10],[59,10],[73,10],[795,10],[687,10],[592,10],[758,10],[901,10],[241,10],[991,10],[645,10],[84,10],[858,10],[299,10],[402,10],[106,10],[511,10],[940,10],[909,10],[717,10],[285,10],[880,10],[110,10],[299,10],[993,10],[621,10],[766,10],[849,10],[504,10],[290,10],[291,10],[337,10],[431,10],[490,10],[687,10],[438,10],[940,10],[2,10],[792,10],[19,10],[15,10],[865,10],[283,10],[508,10],[933,10],[720,10],[114,10],[403,10],[648,10],[800,10],[61,10],[170,10],[229,10],[559,10],[504,10],[461,10],[93,10],[529,10],[872,10],[859,10],[522,10],[153,10],[117,10],[252,10],[752,10],[128,10],[404,10],[910,10],[565,10],[547,10],[302,10],[624,10],[66,10],[837,10],[2,10],[808,10],[406,10],[846,10],[887,10],[187,10],[681,10],[619,10],[256,10],[980,10],[362,10],[921,10],[395,10],[533,10],[843,10],[373,10],[234,10],[72,10],[1006,10],[323,10],[447,10],[621,10],[268,10],[52,10],[165,10],[758,10],[950,10],[1009,10],[633,10],[904,10],[776,10],[273,10],[63,10],[260,10],[750,10],[171,10],[47,10],[425,10],[592,10],[888,10],[215,10],[511,10],[368,10],[105,10],[525,10],[128,10],[1017,10],[954,10],[305,10],[601,10],[360,10],[798,10],[628,10],[500,10],[709,10],[705,10],[520,10],[758,10],[880,10],[72,10],[409,10],[730,10],[62,10],[274,10],[684,10],[985,10],[909,10],[516,10],[53,10],[68,10],[121,10],[125,10],[863,10],[526,10],[733,10],[99,10],[756,10],[284,10],[768,10],[46,10],[907,10],[464,10],[125,10],[359,10],[215,10],[172,10],[949,10],[773,10],[114,10],[910,10],[191,10],[606,10],[299,10],[696,10],[990,10],[524,10],[935,10],[849,10],[184,10],[859,10],[840,10],[854,10],[322,10],[691,10],[699,10],[894,10],[388,10],[244,10],[542,10],[442,10],[400,10],[613,10],[565,10],[1011,10],[837,10],[572,10],[637,10],[488,10],[547,10],[121,10],[122,10],[588,10],[752,10],[663,10],[448,10],[619,10],[976,10],[318,10],[356,10],[758,10],[911,10],[67,10],[833,10],[313,10],[790,10],[249,10],[547,10],[270,10],[13,10],[850,10],[603,10],[767,10],[719,10],[11,10],[163,10],[182,10],[785,10],[19,10],[798,10],[714,10],[557,10],[836,10],[379,10],[580,10],[618,10],[907,10],[557,10],[411,10],[130,10],[519,10],[258,10],[703,10],[984,10],[767,10],[171,10],[313,10],[186,10],[455,10],[67,10],[283,10],[847,10],[31,10],[575,10],[754,10],[882,10],[352,10],[586,10],[228,10],[866,10],[953,10],[86,10],[795,10],[368,10],[717,10],[893,10],[611,10],[161,10],[552,10],[514,10],[297,10],[203,10],[419,10],[917,10],[235,10],[631,10],[159,10],[25,10],[277,10],[42,10],[315,10],[847,10],[106,10],[188,10],[620,10],[43,10],[195,10],[841,10],[887,10],[1010,10],[872,10],[937,10],[529,10],[339,10],[933,10],[578,10],[923,10],[379,10],[558,10],[670,10],[77,10],[643,10],[126,10],[604,10],[85,10],[877,10],[388,10],[606,10],[645,10],[473,10],[463,10],[50,10],[101,10],[485,10],[1019,10],[574,10],[140,10],[2,10],[158,10],[716,10],[503,10],[834,10],[90,10],[63,10],[163,10],[22,10],[265,10],[76,10],[632,10],[660,10],[242,10],[453,10],[163,10],[438,10],[984,10],[308,10],[131,10],[944,10],[107,10],[1006,10],[318,10],[509,10],[157,10],[20,10],[1,10],[11,10],[294,10],[268,10],[888,10],[787,10],[873,10],[228,10],[120,10],[977,10],[186,10],[494,10],[575,10],[610,10],[925,10],[469,10],[401,10],[891,10],[250,10],[39,10],[505,10],[742,10],[1020,10],[925,10],[543,10],[739,10],[596,10],[697,10],[376,10],[141,10],[481,10],[488,10],[806,10],[813,10],[318,10],[659,10],[632,10],[590,10],[609,10],[469,10],[30,10],[281,10],[78,10],[18,10],[959,10],[155,10],[666,10],[17,10],[972,10],[734,10],[978,10],[79,10],[30,10],[63,10],[738,10],[829,10],[441,10],[723,10],[782,10],[281,10],[851,10],[131,10],[663,10],[44,10],[707,10],[666,10],[406,10],[472,10],[852,10],[150,10],[434,10],[645,10],[190,10],[605,10],[9,10],[33,10],[661,10],[9,10],[314,10],[334,10],[18,10],[691,10],[825,10],[133,10],[525,10],[897,10],[783,10],[603,10],[327,10],[266,10],[472,10],[820,10],[544,10],[849,10],[62,10],[659,10],[896,10],[456,10],[923,10],[940,10],[809,10],[485,10],[868,10],[79,10],[236,10],[609,10],[427,10],[261,10],[124,10],[264,10],[448,10],[503,10],[114,10],[614,10],[74,10],[435,10],[115,10],[356,10],[919,10],[1011,10],[949,10],[303,10],[532,10],[598,10],[365,10],[422,10],[488,10],[324,10],[668,10],[924,10],[372,10],[975,10],[777,10],[407,10],[807,10],[808,10],[576,10],[465,10],[1016,10],[755,10],[317,10],[516,10],[369,10],[970,10],[664,10],[540,10],[494,10],[554,10],[96,10],[63,10],[872,10],[265,10],[674,10],[262,10],[302,10],[572,10],[649,10],[167,10],[513,10],[74,10],[998,10],[116,10],[734,10],[763,10],[747,10],[769,10],[518,10],[381,10],[136,10],[647,10],[22,10],[620,10],[988,10],[170,10],[71,10],[97,10],[671,10],[495,10],[6,10],[64,10],[635,10],[606,10],[42,10],[730,10],[828,10],[505,10],[199,10],[790,10],[516,10],[442,10],[679,10],[377,10],[921,10],[127,10],[916,10],[997,10],[681,10],[624,10],[342,10],[485,10],[86,10],[278,10],[138,10],[1015,10],[489,10],[357,10],[826,10],[931,10],[334,10],[317,10],[942,10],[716,10],[412,10],[794,10],[995,10],[141,10],[846,10],[6,10],[841,10],[991,10],[151,10],[680,10],[115,10],[111,10],[733,10],[198,10],[150,10],[733,10],[58,10],[397,10],[642,10],[598,10],[884,10],[514,10],[667,10],[837,10],[79,10],[155,10],[307,10],[593,10],[935,10],[607,10],[398,10],[60,10],[367,10],[653,10],[663,10],[298,10],[15,10],[789,10],[499,10],[845,10],[524,10],[663,10],[567,10],[626,10],[955,10],[35,10],[190,10],[689,10],[143,10],[909,10],[352,10],[203,10],[19,10],[698,10],[97,10],[654,10],[1019,10],[935,10],[532,10],[945,10],[953,10],[831,10],[581,10],[913,10],[854,10],[214,10],[597,10],[67,10],[164,10],[354,10],[221,10],[861,10],[659,10],[986,10],[266,10],[106,10],[1001,10],[504,10],[922,10],[103,10],[774,10],[141,10],[880,10],[932,10],[814,10],[445,10],[78,10],[700,10],[751,10],[292,10],[891,10],[648,10],[949,10],[992,10],[431,10],[599,10],[205,10],[870,10],[498,10],[472,10],[998,10],[346,10],[181,10],[883,10],[880,10],[365,10],[810,10],[214,10],[362,10],[219,10],[333,10],[82,10],[357,10],[502,10],[945,10],[125,10],[801,10],[32,10],[415,10],[452,10],[1011,10],[328,10],[979,10],[665,10],[192,10],[408,10],[706,10],[793,10],[71,10],[811,10],[848,10],[363,10],[107,10],[399,10],[440,10],[978,10],[276,10],[842,10],[928,10],[926,10],[515,10],[711,10],[385,10],[704,10],[47,10],[981,10],[851,10],[905,10],[790,10],[508,10],[696,10],[636,10],[124,10],[233,10],[652,10],[518,10],[840,10],[919,10],[906,10],[562,10],[303,10],[176,10],[358,10],[507,10],[27,10],[547,10],[116,10],[940,10],[126,10],[323,10],[148,10],[883,10],[487,10],[836,10],[683,10],[230,10],[372,10],[570,10],[920,10],[811,10],[615,10],[352,10],[686,10],[838,10],[912,10],[473,10],[397,10],[439,10],[842,10],[624,10],[311,10],[648,10],[790,10],[671,10],[399,10],[457,10],[899,10],[196,10],[884,10],[321,10],[796,10],[310,10],[991,10],[628,10],[254,10],[97,10],[451,10],[924,10],[15,10],[367,10],[983,10],[224,10],[501,10],[476,10],[657,10],[227,10],[435,10],[630,10],[343,10],[643,10],[358,10],[856,10],[11,10],[949,10],[874,10],[775,10],[651,10],[714,10],[189,10],[857,10],[486,10],[562,10],[29,10],[2,10],[426,10],[701,10],[825,10],[728,10],[997,10],[451,10],[778,10],[36,10],[722,10],[33,10],[180,10],[140,10],[835,10],[72,10],[133,10],[179,10],[537,10],[468,10],[646,10],[28,10],[909,10],[522,10],[151,10],[317,10],[111,10],[668,10],[927,10],[880,10],[203,10],[372,10],[368,10],[269,10],[419,10],[369,10],[399,10],[108,10],[220,10],[791,10],[224,10],[397,10],[67,10],[195,10],[807,10],[42,10],[449,10],[515,10],[624,10],[270,10],[691,10],[884,10],[62,10],[985,10],[182,10],[119,10],[913,10],[786,10],[755,10],[433,10],[808,10],[628,10],[74,10],[287,10],[54,10],[727,10],[910,10],[270,10],[142,10],[503,10],[188,10],[213,10],[229,10],[490,10],[283,10],[744,10],[47,10],[259,10],[878,10],[867,10],[840,10],[889,10],[578,10],[228,10],[461,10],[616,10],[740,10],[829,10],[479,10],[44,10],[748,10],[542,10],[576,10],[922,10],[457,10],[968,10],[329,10],[265,10],[935,10],[227,10],[493,10],[86,10],[1020,10],[256,10],[529,10],[885,10],[421,10],[512,10],[114,10],[612,10],[341,10],[266,10],[200,10],[39,10],[292,10],[845,10],[635,10],[821,10],[170,10],[154,10],[3,10],[674,10],[366,10],[57,10],[144,10],[63,10],[62,10],[228,10],[892,10],[889,10],[201,10],[271,10],[564,10],[705,10],[582,10],[581,10],[146,10],[511,10],[254,10],[55,10],[215,10],[931,10],[541,10],[169,10],[72,10],[165,10],[119,10],[593,10],[610,10],[635,10],[899,10],[3,10],[918,10],[137,10],[367,10],[324,10],[51,10],[35,10],[1020,10],[674,10],[625,10],[285,10],[580,10],[584,10],[960,10],[228,10],[13,10],[970,10],[816,10],[384,10],[949,10],[234,10],[657,10],[981,10],[696,10],[563,10],[379,10],[625,10],[648,10],[789,10],[896,10],[967,10],[444,10],[546,10],[567,10],[645,10],[411,10],[376,10],[121,10],[831,10],[230,10],[445,10],[441,10],[542,10],[927,10],[410,10],[668,10],[844,10],[376,10],[809,10],[680,10],[426,10],[477,10],[857,10],[644,10],[341,10],[944,10],[656,10],[234,10],[933,10],[820,10],[278,10],[62,10],[143,10],[328,10],[942,10],[520,10],[742,10],[466,10],[352,10],[577,10],[841,10],[431,10],[137,10],[521,10],[208,10],[661,10],[426,10],[193,10],[191,10],[886,10],[868,10],[986,10],[369,10],[945,10],[1006,10],[840,10],[901,10],[315,10],[71,10],[938,10],[605,10],[242,10],[803,10],[265,10],[206,10],[1016,10],[595,10],[107,10],[16,10],[405,10],[667,10],[464,10],[889,10],[807,10],[850,10],[272,10],[113,10],[460,10],[823,10],[522,10],[748,10],[567,10],[528,10],[569,10],[31,10],[473,10],[782,10],[481,10],[66,10],[40,10],[945,10],[814,10],[203,10],[488,10],[431,10],[999,10],[726,10],[1011,10],[201,10],[776,10],[69,10],[399,10],[998,10],[843,10],[219,10],[337,10],[257,10],[681,10],[66,10],[746,10],[1008,10],[330,10],[223,10],[71,10],[272,10],[262,10],[667,10],[161,10],[779,10],[430,10],[982,10],[256,10],[221,10],[590,10],[259,10],[633,10],[581,10],[774,10],[436,10],[234,10],[482,10],[64,10],[390,10],[31,10],[650,10],[72,10],[23,10],[314,10],[53,10],[44,10],[198,10],[10,10],[681,10],[401,10],[435,10],[433,10],[1014,10],[569,10],[480,10],[791,10],[950,10],[953,10],[10,10],[616,10],[341,10],[626,10],[176,10],[590,10],[823,10],[925,10],[782,10],[35,10],[392,10],[255,10],[542,10],[25,10],[801,10],[168,10],[865,10],[194,10],[889,10],[202,10],[931,10],[622,10],[330,10],[247,10],[457,10],[419,10],[45,10],[91,10],[801,10],[505,10],[162,10],[620,10],[941,10],[443,10],[1000,10],[702,10],[911,10],[26,10],[724,10],[599,10],[833,10],[911,10],[562,10],[535,10],[893,10],[511,10],[860,10],[864,10],[671,10],[923,10],[743,10],[574,10],[506,10],[359,10],[770,10],[338,10],[395,10],[4,10],[462,10],[946,10],[732,10],[409,10],[706,10],[177,10],[36,10],[556,10],[109,10],[587,10],[33,10],[745,10],[442,10],[978,10],[454,10],[200,10],[500,10],[306,10],[275,10],[878,10],[420,10],[268,10],[476,10],[396,10],[827,10],[93,10],[896,10],[240,10],[917,10],[337,10],[725,10],[516,10],[654,10],[494,10],[926,10],[686,10],[681,10],[654,10],[453,10],[812,10],[668,10],[351,10],[761,10],[487,10],[654,10],[919,10],[140,10],[278,10],[816,10],[416,10],[743,10],[734,10],[819,10],[815,10],[296,10],[246,10],[702,10],[88,10],[826,10],[12,10],[354,10],[751,10],[153,10],[408,10],[717,10],[370,10],[628,10],[820,10],[174,10],[848,10],[857,10],[681,10],[548,10],[253,10],[782,10],[611,10],[200,10],[93,10],[648,10],[456,10],[245,10],[575,10],[1023,10],[522,10],[580,10],[647,10],[722,10],[665,10],[784,10],[743,10],[201,10],[906,10],[501,10],[993,10],[226,10],[98,10],[404,10],[465,10],[317,10],[520,10],[350,10],[709,10],[123,10],[229,10],[821,10],[849,10],[838,10],[859,10],[770,10],[269,10],[411,10],[102,10],[399,10],[620,10],[1014,10],[919,10],[42,10],[343,10],[851,10],[503,10],[499,10],[566,10],[773,10],[593,10],[621,10],[751,10],[239,10],[271,10],[594,10],[260,10],[144,10],[326,10],[469,10],[405,10],[763,10],[480,10],[366,10],[645,10],[391,10],[729,10],[239,10],[427,10],[161,10],[169,10],[211,10],[814,10],[215,10],[937,10],[15,10],[250,10],[885,10],[816,10],[580,10],[648,10],[673,10],[506,10],[574,10],[277,10],[387,10],[58,10],[718,10],[1017,10],[664,10],[951,10],[614,10],[945,10],[892,10],[818,10],[838,10],[11,10],[22,10],[10,10],[575,10],[744,10],[175,10],[366,10],[127,10],[557,10],[902,10],[354,10],[1003,10],[423,10],[210,10],[533,10],[509,10],[746,10],[233,10],[612,10],[694,10],[596,10],[697,10],[695,10],[872,10],[241,10],[356,10],[489,10],[519,10],[706,10],[892,10],[540,10],[468,10],[557,10],[263,10],[83,10],[616,10],[192,10],[174,10],[69,10],[953,10],[491,10],[638,10],[414,10],[185,10],[331,10],[281,10],[678,10],[616,10],[606,10],[37,10],[537,10],[107,10],[435,10],[832,10],[143,10],[97,10],[962,10],[33,10],[619,10],[297,10],[138,10],[329,10],[625,10],[368,10],[506,10],[551,10],[60,10],[990,10],[168,10],[1003,10],[1002,10],[700,10],[146,10],[779,10],[637,10],[621,10],[124,10],[295,10],[299,10],[573,10],[775,10],[274,10],[818,10],[823,10],[362,10],[911,10],[337,10],[253,10],[473,10],[877,10],[4,10],[288,10],[592,10],[752,10],[348,10],[48,10],[350,10],[385,10],[302,10],[307,10],[188,10],[840,10],[63,10],[903,10],[401,10],[170,10],[174,10],[876,10],[224,10],[619,10],[201,10],[255,10],[787,10],[854,10],[403,10],[682,10],[545,10],[646,10],[296,10],[766,10],[763,10],[16,10],[158,10],[687,10],[722,10],[475,10],[949,10],[18,10],[662,10],[923,10],[910,10],[769,10],[8,10],[282,10],[613,10],[130,10],[795,10],[356,10],[83,10],[926,10],[297,10],[341,10],[899,10],[873,10],[704,10],[684,10],[580,10],[848,10],[910,10],[752,10],[269,10],[526,10],[857,10],[195,10],[483,10],[514,10],[334,10],[670,10],[848,10],[609,10],[117,10],[155,10],[37,10],[384,10],[259,10],[644,10],[978,10],[161,10],[569,10],[572,10],[99,10],[85,10],[964,10],[766,10],[179,10],[632,10],[971,10],[45,10],[296,10],[744,10],[40,10],[85,10],[24,10],[154,10],[617,10],[287,10],[742,10],[864,10],[893,10],[650,10],[100,10],[559,10],[221,10],[298,10],[197,10],[276,10],[765,10],[559,10],[344,10],[11,10],[626,10],[436,10],[857,10],[319,10],[526,10],[775,10],[952,10],[776,10],[797,10],[108,10],[248,10],[891,10],[389,10],[220,10],[194,10],[161,10],[301,10],[662,10],[490,10],[767,10],[388,10],[253,10],[517,10],[255,10],[985,10],[612,10],[660,10],[328,10],[879,10],[405,10],[820,10],[422,10],[907,10],[22,10],[6,10],[103,10],[522,10],[309,10],[652,10],[403,10],[101,10],[135,10],[341,10],[390,10],[613,10],[222,10],[172,10],[758,10],[1012,10],[127,10],[1004,10],[964,10],[422,10],[163,10],[771,10],[802,10],[791,10],[498,10],[456,10],[797,10],[69,10],[321,10],[768,10],[481,10],[771,10],[956,10],[590,10],[591,10],[765,10],[755,10],[410,10],[3,10],[850,10],[326,10],[539,10],[530,10],[499,10],[169,10],[637,10],[557,10],[182,10],[397,10],[323,10],[97,10],[360,10],[57,10],[487,10],[182,10],[330,10],[220,10],[21,10],[934,10],[965,10],[428,10],[511,10],[263,10],[494,10],[413,10],[20,10],[447,10],[805,10],[675,10],[307,10],[86,10],[397,10],[722,10],[348,10],[207,10],[857,10],[541,10],[157,10],[107,10],[61,10],[83,10],[113,10],[521,10],[212,10],[120,10],[968,10],[431,10],[252,10],[793,10],[192,10],[400,10],[74,10],[257,10],[685,10],[619,10],[324,10],[325,10],[577,10],[129,10],[948,10],[501,10],[40,10],[929,10],[262,10],[820,10],[303,10],[59,10],[660,10],[625,10],[850,10],[468,10],[338,10],[279,10],[894,10],[3,10],[640,10],[629,10],[406,10],[102,10],[332,10],[734,10],[406,10],[669,10],[190,10],[942,10],[934,10],[1001,10],[853,10],[153,10],[542,10],[125,10],[578,10],[717,10],[164,10],[697,10],[618,10],[105,10],[229,10],[647,10],[973,10],[65,10],[708,10],[298,10],[229,10],[531,10],[168,10],[846,10],[412,10],[297,10],[179,10],[344,10],[841,10],[724,10],[960,10],[969,10],[426,10],[170,10],[282,10],[104,10],[822,10],[1007,10],[483,10],[52,10],[147,10],[910,10],[70,10],[704,10],[975,10],[722,10],[131,10],[503,10],[233,10],[905,10],[746,10],[535,10],[714,10],[442,10],[301,10],[431,10],[176,10],[103,10],[114,10],[549,10],[193,10],[386,10],[85,10],[844,10],[423,10],[288,10],[62,10],[882,10],[436,10],[948,10],[383,10],[23,10],[957,10],[997,10],[481,10],[782,10],[256,10],[670,10],[170,10],[421,10],[237,10],[736,10],[706,10],[675,10],[871,10],[423,10],[556,10],[308,10],[490,10],[764,10],[7,10],[452,10],[1011,10],[418,10],[541,10],[1014,10],[153,10],[909,10],[430,10],[171,10],[197,10],[843,10],[406,10],[843,10],[239,10],[832,10],[156,10],[348,10],[877,10],[269,10],[457,10],[262,10],[944,10],[238,10],[889,10],[141,10],[28,10],[164,10],[46,10],[683,10],[319,10],[558,10],[421,10],[18,10],[761,10],[917,10],[673,10],[728,10],[988,10],[349,10],[215,10],[368,10],[738,10],[929,10],[838,10],[686,10],[41,10],[238,10],[360,10],[929,10],[56,10],[87,10],[393,10],[115,10],[568,10],[446,10],[1007,10],[540,10],[884,10],[15,10],[659,10],[477,10],[408,10],[355,10],[232,10],[604,10],[118,10],[212,10],[948,10],[667,10],[621,10],[68,10],[29,10],[903,10],[618,10],[751,10],[684,10],[173,10],[563,10],[599,10],[899,10],[970,10],[994,10],[155,10],[699,10],[397,10],[292,10],[456,10],[483,10],[94,10],[355,10],[264,10],[573,10],[52,10],[822,10],[723,10],[228,10],[990,10],[912,10],[564,10],[846,10],[1014,10],[161,10],[926,10],[294,10],[980,10],[363,10],[112,10],[985,10],[158,10],[656,10],[484,10],[450,10],[529,10],[712,10],[645,10],[1006,10],[990,10],[209,10],[266,10],[373,10],[803,10],[406,10],[256,10],[197,10],[555,10],[612,10],[358,10],[805,10],[572,10],[875,10],[304,10],[597,10],[455,10],[232,10],[989,10],[716,10],[97,10],[621,10],[894,10],[122,10],[277,10],[153,10],[542,10],[540,10],[259,10],[828,10],[87,10],[144,10],[892,10],[673,10],[52,10],[130,10],[232,10],[74,10],[388,10],[27,10],[147,10],[697,10],[899,10],[387,10],[716,10],[439,10],[382,10],[289,10],[388,10],[467,10],[337,10],[428,10],[526,10],[783,10],[990,10],[646,10],[937,10],[100,10],[897,10],[390,10],[1023,10],[260,10],[866,10],[985,10],[411,10],[785,10],[943,10],[792,10],[156,10],[436,10],[869,10],[361,10],[581,10],[817,10],[1006,10],[895,10],[940,10],[419,10],[141,10],[935,10],[114,10],[407,10],[166,10],[436,10],[564,10],[84,10],[50,10],[499,10],[319,10],[670,10],[672,10],[284,10],[979,10],[912,10],[316,10],[227,10],[1004,10],[927,10],[210,10],[971,10],[551,10],[928,10],[111,10],[561,10],[428,10],[542,10],[151,10],[933,10],[3,10],[319,10],[223,10],[994,10],[690,10],[860,10],[367,10],[162,10],[781,10],[1018,10],[363,10],[236,10],[292,10],[990,10],[462,10],[288,10],[972,10],[397,10],[361,10],[979,10],[151,10],[674,10],[780,10],[204,10],[212,10],[500,10],[191,10],[607,10],[151,10],[484,10],[179,10],[993,10],[234,10],[495,10],[979,10],[116,10],[925,10],[600,10],[977,10],[886,10],[551,10],[826,10],[489,10],[65,10],[883,10],[888,10],[442,10],[812,10],[321,10],[78,10],[801,10],[750,10],[545,10],[426,10],[224,10],[486,10],[266,10],[205,10],[154,10],[501,10],[580,10],[190,10],[772,10],[174,10],[170,10],[157,10],[607,10],[162,10],[754,10],[192,10],[58,10],[682,10],[85,10],[690,10],[1001,10],[71,10],[889,10],[307,10],[751,10],[349,10],[966,10],[987,10],[965,10],[62,10],[878,10],[636,10],[7,10],[12,10],[664,10],[703,10],[540,10],[210,10],[671,10],[496,10],[759,10],[397,10],[130,10],[637,10],[254,10],[145,10],[298,10],[1022,10],[647,10],[338,10],[512,10],[125,10],[216,10],[657,10],[965,10],[823,10],[463,10],[339,10],[396,10],[876,10],[18,10],[630,10],[590,10],[467,10],[638,10],[769,10],[367,10],[512,10],[957,10],[211,10],[453,10],[544,10],[133,10],[291,10],[809,10],[701,10],[319,10],[857,10],[874,10],[107,10],[942,10],[950,10],[577,10],[902,10],[1023,10],[962,10],[673,10],[51,10],[52,10],[532,10],[390,10],[46,10],[337,10],[589,10],[674,10],[1019,10],[288,10],[28,10],[293,10],[881,10],[64,10],[743,10],[548,10],[48,10],[772,10],[317,10],[968,10],[585,10],[601,10],[496,10],[376,10],[101,10],[940,10],[252,10],[125,10],[634,10],[243,10],[763,10],[343,10],[402,10],[185,10],[440,10],[294,10],[833,10],[891,10],[110,10],[237,10],[360,10],[466,10],[711,10],[359,10],[892,10],[828,10],[849,10],[357,10],[346,10],[611,10],[390,10],[394,10],[420,10],[289,10],[594,10],[985,10],[925,10],[940,10],[203,10],[449,10],[804,10],[20,10],[694,10],[369,10],[384,10],[926,10],[498,10],[36,10],[687,10],[859,10],[628,10],[244,10],[745,10],[119,10],[727,10],[140,10],[545,10],[256,10],[319,10],[687,10],[522,10],[703,10],[622,10],[208,10],[271,10],[580,10],[837,10],[405,10],[143,10],[660,10],[977,10],[679,10],[1018,10],[305,10],[313,10],[416,10],[152,10],[1007,10],[922,10],[92,10],[721,10],[386,10],[741,10],[625,10],[387,10],[51,10],[860,10],[910,10],[544,10],[785,10],[900,10],[109,10],[71,10],[781,10],[588,10],[489,10],[605,10],[872,10],[462,10],[124,10],[669,10],[603,10],[13,10],[485,10],[710,10],[425,10],[482,10],[37,10],[78,10],[704,10],[766,10],[815,10],[681,10],[491,10],[263,10],[434,10],[586,10],[397,10],[456,10],[646,10],[803,10],[722,10],[363,10],[657,10],[673,10],[203,10],[891,10],[484,10],[615,10],[626,10],[637,10],[751,10],[299,10],[513,10],[252,10],[376,10],[400,10],[183,10],[80,10],[367,10],[45,10],[506,10],[813,10],[152,10],[357,10],[645,10],[664,10],[834,10],[980,10],[815,10],[950,10],[31,10],[338,10],[953,10],[522,10],[809,10],[958,10],[897,10],[655,10],[956,10],[551,10],[472,10],[819,10],[420,10],[990,10],[898,10],[544,10],[22,10],[823,10],[54,10],[56,10],[726,10],[435,10],[541,10],[288,10],[1006,10],[397,10],[546,10],[204,10],[529,10],[228,10],[557,10],[335,10],[232,10],[609,10],[364,10],[643,10],[797,10],[333,10],[349,10],[210,10],[79,10],[266,10],[434,10],[800,10],[819,10],[621,10],[488,10],[552,10],[834,10],[215,10],[88,10],[548,10],[504,10],[87,10],[819,10],[984,10],[308,10],[777,10],[927,10],[858,10],[996,10],[146,10],[560,10],[285,10],[809,10],[486,10],[938,10],[785,10],[151,10],[820,10],[128,10],[267,10],[108,10],[552,10],[530,10],[213,10],[733,10],[573,10],[445,10],[56,10],[986,10],[486,10],[346,10],[89,10],[479,10],[98,10],[829,10],[938,10],[325,10],[910,10],[371,10],[479,10],[388,10],[714,10],[679,10],[450,10],[556,10],[904,10],[760,10],[46,10],[701,10],[616,10],[414,10],[177,10],[640,10],[564,10],[570,10],[34,10],[30,10],[784,10],[993,10],[507,10],[325,10],[325,10],[492,10],[786,10],[708,10],[177,10],[309,10],[475,10],[662,10],[881,10],[180,10],[949,10],[561,10],[646,10],[522,10],[801,10],[553,10],[22,10],[881,10],[133,10],[62,10],[219,10],[312,10],[678,10],[475,10],[332,10],[162,10],[139,10],[194,10],[591,10],[556,10],[654,10],[78,10],[784,10],[354,10],[783,10],[465,10],[193,10],[915,10],[259,10],[350,10],[885,10],[242,10],[216,10],[265,10],[715,10],[761,10],[26,10],[585,10],[394,10],[976,10],[738,10],[401,10],[132,10],[572,10],[869,10],[466,10],[621,10],[314,10],[285,10],[805,10],[133,10],[637,10],[473,10],[29,10],[240,10],[399,10],[257,10],[834,10],[504,10],[54,10],[268,10],[645,10],[891,10],[898,10],[584,10],[214,10],[595,10],[647,10],[191,10],[562,10],[974,10],[148,10],[374,10],[759,10],[411,10],[969,10],[188,10],[861,10],[862,10],[113,10],[416,10],[681,10],[329,10],[179,10],[589,10],[600,10],[313,10],[810,10],[842,10],[299,10],[812,10],[23,10],[774,10],[846,10],[211,10],[320,10],[694,10],[916,10],[558,10],[151,10],[634,10],[544,10],[593,10],[698,10],[250,10],[873,10],[745,10],[54,10],[716,10],[616,10],[226,10],[784,10],[976,10],[381,10],[384,10],[351,10],[621,10],[554,10],[615,10],[365,10],[507,10],[317,10],[918,10],[674,10],[63,10],[134,10],[714,10],[598,10],[491,10],[823,10],[498,10],[368,10],[225,10],[757,10],[466,10],[832,10],[903,10],[537,10],[258,10],[933,10],[289,10],[364,10],[11,10],[10,10],[30,10],[89,10],[475,10],[133,10],[352,10],[1022,10],[712,10],[213,10],[374,10],[600,10],[644,10],[980,10],[746,10],[796,10],[37,10],[1003,10],[45,10],[1021,10],[286,10],[567,10],[473,10],[880,10],[990,10],[778,10],[414,10],[428,10],[818,10],[841,10],[476,10],[701,10],[423,10],[212,10],[760,10],[750,10],[935,10],[111,10],[554,10],[1020,10],[533,10],[171,10],[218,10],[154,10],[857,10],[121,10],[786,10],[988,10],[322,10],[971,10],[637,10],[20,10],[88,10],[321,10],[364,10],[414,10],[940,10],[3,10],[708,10],[1021,10],[309,10],[907,10],[112,10],[115,10],[470,10],[617,10],[931,10],[989,10],[1,10],[321,10],[754,10],[244,10],[700,10],[797,10],[350,10],[19,10],[581,10],[370,10],[738,10],[878,10],[505,10],[539,10],[70,10],[845,10],[427,10],[646,10],[702,10],[902,10],[230,10],[991,10],[163,10],[210,10],[888,10],[490,10],[183,10],[624,10],[775,10],[197,10],[512,10],[616,10],[229,10],[246,10],[832,10],[827,10],[174,10],[617,10],[636,10],[689,10],[1017,10],[441,10],[581,10],[216,10],[25,10],[716,10],[516,10],[428,10],[876,10],[799,10],[788,10],[788,10],[910,10],[479,10],[365,10],[778,10],[114,10],[592,10],[693,10],[631,10],[854,10],[699,10],[34,10],[789,10],[140,10],[596,10],[563,10],[347,10],[201,10],[677,10],[523,10],[904,10],[272,10],[231,10],[944,10],[172,10],[769,10],[185,10],[286,10],[777,10],[29,10],[39,10],[559,10],[197,10],[348,10],[875,10],[69,10],[937,10],[643,10],[63,10],[1019,10],[461,10],[59,10],[916,10],[1010,10],[187,10],[718,10],[466,10],[515,10],[170,10],[972,10],[417,10],[196,10],[290,10],[524,10],[590,10],[708,10],[162,10],[516,10],[174,10],[412,10],[712,10],[5,10],[603,10],[718,10],[75,10],[1006,10],[433,10],[447,10],[544,10],[479,10],[259,10],[588,10],[628,10],[891,10],[968,10],[265,10],[721,10],[926,10],[162,10],[551,10],[725,10],[187,10],[654,10],[866,10],[907,10],[567,10],[718,10],[510,10],[195,10],[645,10],[253,10],[525,10],[764,10],[297,10],[405,10],[57,10],[892,10],[251,10],[520,10],[427,10],[248,10],[778,10],[57,10],[129,10],[879,10],[341,10],[14,10],[963,10],[254,10],[719,10],[636,10],[460,10],[959,10],[4,10],[285,10],[837,10],[855,10],[526,10],[299,10],[951,10],[521,10],[372,10],[117,10],[378,10],[46,10],[485,10],[403,10],[925,10],[87,10],[76,10],[185,10],[367,10],[822,10],[121,10],[677,10],[491,10],[431,10],[93,10],[1000,10],[381,10],[499,10],[908,10],[535,10],[137,10],[956,10],[823,10],[147,10],[438,10],[1002,10],[860,10],[1,10],[780,10],[211,10],[1022,10],[823,10],[22,10],[1,10],[110,10],[884,10],[1016,10],[170,10],[888,10],[1016,10],[862,10],[652,10],[487,10],[570,10],[560,10],[291,10],[44,10],[557,10],[272,10],[390,10],[212,10],[693,10],[135,10],[939,10],[819,10],[697,10],[769,10],[447,10],[114,10],[974,10],[801,10],[391,10],[745,10],[164,10],[293,10],[316,10],[913,10],[10,10],[610,10],[579,10],[411,10],[418,10],[16,10],[458,10],[100,10],[6,10],[8,10],[856,10],[951,10],[124,10],[272,10],[436,10],[124,10],[729,10],[776,10],[774,10],[300,10],[343,10],[767,10],[84,10],[143,10],[600,10],[835,10],[71,10],[550,10],[134,10],[587,10],[99,10],[719,10],[561,10],[308,10],[149,10],[149,10],[686,10],[132,10],[38,10],[32,10],[403,10],[121,10],[800,10],[617,10],[630,10],[495,10],[924,10],[909,10],[233,10],[166,10],[327,10],[576,10],[886,10],[168,10],[556,10],[334,10],[958,10],[163,10],[379,10],[741,10],[212,10],[660,10],[939,10],[718,10],[72,10],[320,10],[525,10],[969,10],[563,10],[278,10],[449,10],[808,10],[559,10],[423,10],[531,10],[84,10],[71,10],[580,10],[984,10],[693,10],[679,10],[273,10],[265,10],[449,10],[207,10],[891,10],[426,10],[893,10],[449,10],[809,10],[1004,10],[726,10],[194,10],[456,10],[332,10],[399,10],[109,10],[492,10],[573,10],[695,10],[497,10],[600,10],[859,10],[474,10],[206,10],[597,10],[219,10],[293,10],[970,10],[371,10],[541,10],[887,10],[827,10],[737,10],[18,10],[62,10],[723,10],[996,10],[688,10],[506,10],[942,10],[593,10],[211,10],[618,10],[287,10],[351,10],[291,10],[380,10],[516,10],[105,10],[676,10],[675,10],[776,10],[189,10],[416,10],[521,10],[700,10],[570,10],[1008,10],[951,10],[11,10],[147,10],[294,10],[617,10],[857,10],[625,10],[321,10],[542,10],[868,10],[370,10],[319,10],[901,10],[64,10],[775,10],[232,10],[131,10],[306,10],[769,10],[319,10],[263,10],[229,10],[607,10],[554,10],[1013,10],[124,10],[252,10],[46,10],[516,10],[1020,10],[974,10],[342,10],[921,10],[540,10],[596,10],[244,10],[26,10],[486,10],[696,10],[720,10],[401,10],[1012,10],[181,10],[780,10],[574,10],[361,10],[403,10],[904,10],[401,10],[343,10],[18,10],[955,10],[135,10],[921,10],[168,10],[917,10],[373,10],[188,10],[35,10],[808,10],[362,10],[274,10],[220,10],[635,10],[860,10],[363,10],[538,10],[708,10],[1013,10],[414,10],[547,10],[159,10],[711,10],[39,10],[182,10],[237,10],[47,10],[32,10],[517,10],[329,10],[716,10],[590,10],[407,10],[671,10],[533,10],[665,10],[44,10],[160,10],[277,10],[959,10],[232,10],[488,10],[343,10],[21,10],[520,10],[728,10],[391,10],[746,10],[686,10],[848,10],[10,10],[545,10],[664,10],[762,10],[179,10],[923,10],[932,10],[125,10],[163,10],[948,10],[1004,10],[900,10],[94,10],[438,10],[92,10],[761,10],[919,10],[707,10],[924,10],[722,10],[711,10],[148,10],[344,10],[579,10],[277,10],[765,10],[136,10],[515,10],[495,10],[6,10],[701,10],[23,10],[500,10],[82,10],[569,10],[414,10],[562,10],[87,10],[654,10],[531,10],[338,10],[434,10],[287,10],[231,10],[879,10],[577,10],[155,10],[170,10],[231,10],[5,10],[245,10],[67,10],[489,10],[883,10],[565,10],[406,10],[331,10],[887,10],[438,10],[101,10],[153,10],[896,10],[856,10],[983,10],[515,10],[972,10],[836,10],[836,10],[878,10],[689,10],[1021,10],[332,10],[826,10],[588,10],[904,10],[94,10],[922,10],[739,10],[571,10],[458,10],[875,10],[38,10],[705,10],[350,10],[744,10],[142,10],[16,10],[755,10],[445,10],[304,10],[775,10],[974,10],[567,10],[830,10],[266,10],[935,10],[247,10],[555,10],[989,10],[522,10],[295,10],[834,10],[323,10],[918,10],[241,10],[934,10],[947,10],[694,10],[3,10],[762,10],[596,10],[600,10],[536,10],[74,10],[166,10],[248,10],[930,10],[953,10],[684,10],[436,10],[575,10],[561,10],[570,10],[419,10],[984,10],[217,10],[745,10],[777,10],[11,10],[928,10],[832,10],[397,10],[212,10],[613,10],[655,10],[273,10],[953,10],[880,10],[614,10],[775,10],[292,10],[1000,10],[845,10],[655,10],[948,10],[590,10],[730,10],[645,10],[279,10],[40,10],[225,10],[452,10],[134,10],[29,10],[228,10],[345,10],[502,10],[865,10],[190,10],[965,10],[315,10],[607,10],[266,10],[241,10],[882,10],[987,10],[113,10],[942,10],[28,10],[600,10],[676,10],[515,10],[377,10],[306,10],[564,10],[687,10],[943,10],[294,10],[760,10],[967,10],[223,10],[748,10],[733,10],[724,10],[555,10],[157,10],[371,10],[906,10],[5,10],[543,10],[130,10],[406,10],[302,10],[559,10],[244,10],[234,10],[905,10],[538,10],[725,10],[14,10],[470,10],[125,10],[456,10],[704,10],[70,10],[506,10],[705,10],[148,10],[596,10],[198,10],[263,10],[208,10],[887,10],[408,10],[259,10],[703,10],[988,10],[718,10],[1011,10],[352,10],[93,10],[13,10],[1014,10],[706,10],[687,10],[394,10],[966,10],[447,10],[201,10],[43,10],[849,10],[538,10],[958,10],[325,10],[793,10],[398,10],[301,10],[475,10],[783,10],[313,10],[427,10],[970,10],[270,10],[472,10],[830,10],[594,10],[899,10],[838,10],[814,10],[281,10],[839,10],[397,10],[35,10],[593,10],[806,10],[238,10],[789,10],[270,10],[397,10],[795,10],[324,10],[42,10],[290,10],[355,10],[62,10],[865,10],[554,10],[720,10],[446,10],[101,10],[482,10],[324,10],[699,10],[535,10],[874,10],[380,10],[482,10],[809,10],[310,10],[191,10],[181,10],[410,10],[1013,10],[52,10],[820,10],[11,10],[125,10],[502,10],[742,10],[725,10],[644,10],[849,10],[76,10],[485,10],[318,10],[705,10],[330,10],[399,10],[40,10],[382,10],[414,10],[12,10],[707,10],[427,10],[964,10],[208,10],[179,10],[955,10],[892,10],[157,10],[138,10],[554,10],[87,10],[893,10],[918,10],[521,10],[54,10],[415,10],[142,10],[66,10],[602,10],[90,10],[503,10],[624,10],[525,10],[590,10],[507,10],[972,10],[415,10],[397,10],[810,10],[245,10],[990,10],[431,10],[576,10],[584,10],[179,10],[774,10],[707,10],[111,10],[644,10],[233,10],[684,10],[847,10],[43,10],[382,10],[910,10],[697,10],[796,10],[417,10],[796,10],[349,10],[404,10],[310,10],[750,10],[646,10],[333,10],[463,10],[357,10],[143,10],[433,10],[971,10],[932,10],[878,10],[201,10],[314,10],[384,10],[362,10],[304,10],[506,10],[796,10],[314,10],[760,10],[272,10],[480,10],[820,10],[505,10],[665,10],[687,10],[234,10],[848,10],[241,10],[929,10],[446,10],[788,10],[525,10],[296,10],[661,10],[926,10],[987,10],[677,10],[857,10],[623,10],[144,10],[292,10],[764,10],[131,10],[834,10],[788,10],[146,10],[19,10],[215,10],[382,10],[677,10],[800,10],[946,10],[780,10],[211,10],[15,10],[330,10],[531,10],[241,10],[105,10],[878,10],[227,10],[416,10],[850,10],[353,10],[388,10],[449,10],[687,10],[837,10],[801,10],[815,10],[694,10],[3,10],[755,10],[955,10],[664,10],[303,10],[280,10],[945,10],[843,10],[681,10],[470,10],[54,10],[417,10],[863,10],[581,10],[413,10],[186,10],[258,10],[1002,10],[157,10],[992,10],[837,10],[331,10],[797,10],[660,10],[133,10],[276,10],[104,10],[548,10],[619,10],[776,10],[73,10],[442,10],[549,10],[744,10],[753,10],[921,10],[208,10],[247,10],[403,10],[277,10],[887,10],[30,10],[309,10],[105,10],[633,10],[234,10],[93,10],[587,10],[96,10],[666,10],[831,10],[584,10],[417,10],[912,10],[119,10],[407,10],[759,10],[971,10],[389,10],[250,10],[146,10],[562,10],[588,10],[211,10],[622,10],[930,10],[575,10],[860,10],[417,10],[884,10],[30,10],[720,10],[729,10],[42,10],[584,10],[286,10],[81,10],[889,10],[987,10],[683,10],[868,10],[345,10],[938,10],[964,10],[556,10],[343,10],[408,10],[453,10],[917,10],[137,10],[856,10],[171,10],[360,10],[841,10],[968,10],[38,10],[703,10],[767,10],[350,10],[971,10],[93,10],[970,10],[975,10],[46,10],[4,10],[430,10],[758,10],[263,10],[216,10],[839,10],[143,10],[118,10],[43,10],[313,10],[243,10],[259,10],[276,10],[371,10],[75,10],[587,10],[603,10],[339,10],[592,10],[735,10],[783,10],[281,10],[153,10],[953,10],[491,10],[849,10],[629,10],[128,10],[741,10],[248,10],[868,10],[56,10],[775,10],[414,10],[439,10],[194,10],[170,10],[138,10],[593,10],[558,10],[765,10],[705,10],[711,10],[143,10],[538,10],[456,10],[143,10],[958,10],[934,10],[527,10],[521,10],[783,10],[899,10],[188,10],[829,10],[800,10],[581,10],[858,10],[105,10],[553,10],[625,10],[984,10],[46,10],[387,10],[616,10],[80,10],[202,10],[734,10],[723,10],[255,10],[439,10],[98,10],[328,10],[719,10],[634,10],[389,10],[273,10],[206,10],[609,10],[805,10],[28,10],[339,10],[335,10],[973,10],[319,10],[803,10],[167,10],[175,10],[730,10],[232,10],[695,10],[244,10],[651,10],[686,10],[161,10],[283,10],[48,10],[998,10],[20,10],[759,10],[146,10],[73,10],[2,10],[941,10],[79,10],[532,10],[125,10],[980,10],[910,10],[368,10],[903,10],[310,10],[315,10],[257,10],[1013,10],[562,10],[321,10],[300,10],[2,10],[317,10],[530,10],[74,10],[539,10],[715,10],[515,10],[688,10],[369,10],[920,10],[430,10],[225,10],[296,10],[808,10],[950,10],[844,10],[103,10],[37,10],[743,10],[680,10],[996,10],[156,10],[688,10],[295,10],[834,10],[206,10],[765,10],[237,10],[714,10],[464,10],[785,10],[712,10],[150,10],[503,10],[485,10],[93,10],[820,10],[80,10],[150,10],[603,10],[424,10],[20,10],[523,10],[65,10],[464,10],[1000,10],[415,10],[204,10],[152,10],[706,10],[369,10],[216,10],[311,10],[813,10],[144,10],[207,10],[83,10],[903,10],[248,10],[587,10],[960,10],[21,10],[476,10],[704,10],[629,10],[688,10],[572,10],[689,10],[93,10],[164,10],[925,10],[90,10],[720,10],[856,10],[769,10],[647,10],[448,10],[117,10],[43,10],[130,10],[818,10],[506,10],[232,10],[404,10],[797,10],[158,10],[252,10],[37,10],[872,10],[4,10],[843,10],[815,10],[66,10],[456,10],[524,10],[864,10],[695,10],[387,10],[821,10],[270,10],[156,10],[870,10],[741,10],[168,10],[83,10],[287,10],[651,10],[751,10],[132,10],[548,10],[673,10],[111,10],[747,10],[175,10],[238,10],[750,10],[156,10],[159,10],[959,10],[792,10],[793,10],[1015,10],[383,10],[589,10],[122,10],[89,10],[1012,10],[144,10],[886,10],[911,10],[618,10],[1007,10],[407,10],[519,10],[455,10],[496,10],[886,10],[546,10],[70,10],[667,10],[909,10],[482,10],[113,10],[548,10],[561,10],[573,10],[750,10],[493,10],[515,10],[308,10],[941,10],[721,10],[634,10],[38,10],[282,10],[562,10],[775,10],[884,10],[372,10],[703,10],[861,10],[467,10],[539,10],[98,10],[486,10],[491,10],[504,10],[136,10],[283,10],[300,10],[639,10],[968,10],[397,10],[300,10],[200,10],[327,10],[928,10],[1,10],[367,10],[563,10],[350,10],[665,10],[29,10],[736,10],[312,10],[134,10],[846,10],[176,10],[382,10],[5,10],[959,10],[590,10],[516,10],[919,10],[726,10],[245,10],[296,10],[117,10],[689,10],[487,10],[871,10],[632,10],[261,10],[998,10],[194,10],[383,10],[314,10],[636,10],[515,10],[972,10],[61,10],[493,10],[700,10],[190,10],[828,10],[430,10],[404,10],[286,10],[654,10],[861,10],[100,10],[949,10],[641,10],[462,10],[609,10],[231,10],[748,10],[440,10],[666,10],[264,10],[614,10],[338,10],[934,10],[493,10],[234,10],[85,10],[254,10],[227,10],[167,10],[966,10],[879,10],[497,10],[454,10],[733,10],[268,10],[961,10],[552,10],[534,10],[650,10],[404,10],[810,10],[330,10],[858,10],[98,10],[52,10],[71,10],[990,10],[597,10],[420,10],[311,10],[89,10],[723,10],[691,10],[46,10],[769,10],[609,10],[448,10],[664,10],[718,10],[193,10],[332,10],[920,10],[790,10],[497,10],[726,10],[691,10],[667,10],[279,10],[820,10],[673,10],[32,10],[665,10],[687,10],[157,10],[793,10],[173,10],[315,10],[552,10],[592,10],[867,10],[153,10],[420,10],[412,10],[789,10],[476,10],[950,10],[565,10],[811,10],[338,10],[921,10],[417,10],[1023,10],[444,10],[15,10],[718,10],[845,10],[452,10],[999,10],[359,10],[835,10],[802,10],[493,10],[679,10],[201,10],[117,10],[368,10],[93,10],[671,10],[866,10],[659,10],[165,10],[622,10],[985,10],[370,10],[1007,10],[611,10],[402,10],[847,10],[255,10],[606,10],[702,10],[36,10],[299,10],[653,10],[118,10],[522,10],[119,10],[681,10],[508,10],[449,10],[336,10],[982,10],[746,10],[654,10],[66,10],[107,10],[720,10],[126,10],[267,10],[867,10],[906,10],[112,10],[643,10],[831,10],[395,10],[373,10],[668,10],[61,10],[453,10],[255,10],[670,10],[694,10],[13,10],[982,10],[742,10],[602,10],[865,10],[193,10],[1000,10],[624,10],[639,10],[523,10],[379,10],[159,10],[769,10],[476,10],[780,10],[450,10],[852,10],[678,10],[23,10],[936,10],[161,10],[750,10],[499,10],[399,10],[623,10],[232,10],[344,10],[896,10],[721,10],[290,10],[956,10],[844,10],[1002,10],[348,10],[201,10],[337,10],[28,10],[115,10],[972,10],[1005,10],[954,10],[934,10],[730,10],[123,10],[444,10],[912,10],[880,10],[604,10],[432,10],[269,10],[659,10],[93,10],[717,10],[368,10],[85,10],[918,10],[673,10],[470,10],[944,10],[763,10],[597,10],[240,10],[917,10],[82,10],[349,10],[894,10],[112,10],[373,10],[409,10],[981,10],[116,10],[985,10],[161,10],[753,10],[710,10],[834,10],[679,10],[4,10],[221,10],[788,10],[912,10],[32,10],[429,10],[400,10],[502,10],[919,10],[427,10],[874,10],[80,10],[27,10],[746,10],[871,10],[999,10],[797,10],[834,10],[20,10],[131,10],[244,10],[509,10],[194,10],[953,10],[63,10],[598,10],[764,10],[10,10],[619,10],[493,10],[684,10],[653,10],[713,10],[9,10],[423,10],[244,10],[353,10],[634,10],[200,10],[454,10],[344,10],[802,10],[725,10],[53,10],[202,10],[136,10],[801,10],[44,10],[409,10],[792,10],[572,10],[842,10],[753,10],[56,10],[883,10],[582,10],[251,10],[387,10],[23,10],[668,10],[520,10],[477,10],[813,10],[1008,10],[123,10],[135,10],[300,10],[740,10],[1022,10],[596,10],[406,10],[526,10],[343,10],[225,10],[833,10],[52,10],[20,10],[471,10],[851,10],[783,10],[677,10],[467,10],[150,10],[215,10],[1014,10],[15,10],[646,10],[350,10],[61,10],[707,10],[895,10],[728,10],[402,10],[924,10],[903,10],[1,10],[503,10],[480,10],[646,10],[806,10],[137,10],[405,10],[550,10],[257,10],[591,10],[245,10],[846,10],[685,10],[652,10],[887,10],[958,10],[230,10],[668,10],[267,10],[535,10],[152,10],[577,10],[1019,10],[599,10],[509,10],[97,10],[656,10],[433,10],[608,10],[234,10],[320,10],[582,10],[717,10],[407,10],[970,10],[17,10],[402,10],[797,10],[342,10],[217,10],[696,10],[1011,10],[439,10],[126,10],[259,10],[594,10],[668,10],[737,10],[119,10],[283,10],[143,10],[522,10],[77,10],[1004,10],[425,10],[827,10],[838,10],[978,10],[125,10],[753,10],[1018,10],[327,10],[335,10],[149,10],[558,10],[196,10],[341,10],[831,10],[404,10],[360,10],[534,10],[852,10],[805,10],[744,10],[78,10],[1004,10],[467,10],[126,10],[292,10],[180,10],[562,10],[554,10],[39,10],[773,10],[766,10],[962,10],[1005,10],[479,10],[421,10],[799,10],[164,10],[304,10],[596,10],[851,10],[345,10],[385,10],[735,10],[965,10],[80,10],[777,10],[149,10],[807,10],[573,10],[192,10],[157,10],[249,10],[517,10],[879,10],[875,10],[719,10],[274,10],[392,10],[316,10],[550,10],[100,10],[456,10],[887,10],[93,10],[410,10],[632,10],[60,10],[600,10],[538,10],[233,10],[106,10],[160,10],[401,10],[683,10],[996,10],[378,10],[343,10],[1009,10],[949,10],[71,10],[821,10],[642,10],[773,10],[435,10],[660,10],[803,10],[367,10],[396,10],[437,10],[760,10],[165,10],[225,10],[419,10],[544,10],[53,10],[564,10],[946,10],[569,10],[286,10],[324,10],[281,10],[517,10],[72,10],[198,10],[540,10],[90,10],[67,10],[955,10],[72,10],[891,10],[629,10],[212,10],[613,10],[287,10],[763,10],[288,10],[409,10],[353,10],[491,10],[225,10],[125,10],[186,10],[434,10],[839,10],[295,10],[125,10],[885,10],[305,10],[491,10],[818,10],[521,10],[60,10],[85,10],[582,10],[127,10],[570,10],[585,10],[370,10],[705,10],[808,10],[233,10],[405,10],[817,10],[517,10],[212,10],[168,10],[423,10],[315,10],[812,10],[519,10],[181,10],[164,10],[782,10],[749,10],[479,10],[447,10],[522,10],[384,10],[905,10],[824,10],[108,10],[199,10],[649,10],[65,10],[78,10],[467,10],[563,10],[459,10],[295,10],[65,10],[340,10],[193,10],[795,10],[131,10],[512,10],[879,10],[731,10],[140,10],[704,10],[850,10],[830,10],[89,10],[571,10],[123,10],[687,10],[991,10],[553,10],[199,10],[771,10],[259,10],[931,10],[915,10],[925,10],[962,10],[592,10],[36,10],[510,10],[289,10],[957,10],[299,10],[660,10],[204,10],[631,10],[435,10],[618,10],[780,10],[412,10],[613,10],[289,10],[690,10],[1023,10],[963,10],[221,10],[508,10],[33,10],[951,10],[431,10],[810,10],[587,10],[116,10],[572,10],[341,10],[339,10],[406,10],[13,10],[210,10],[634,10],[829,10],[245,10],[391,10],[382,10],[268,10],[562,10],[857,10],[747,10],[380,10],[882,10],[421,10],[403,10],[73,10],[698,10],[422,10],[816,10],[840,10],[745,10],[360,10],[84,10],[116,10],[236,10],[665,10],[465,10],[591,10],[358,10],[533,10],[769,10],[838,10],[928,10],[182,10],[321,10],[1007,10],[229,10],[209,10],[242,10],[75,10],[770,10],[470,10],[919,10],[158,10],[863,10],[569,10],[985,10],[911,10],[634,10],[13,10],[193,10],[89,10],[539,10],[768,10],[606,10],[467,10],[691,10],[920,10],[258,10],[228,10],[223,10],[362,10],[844,10],[63,10],[222,10],[720,10],[741,10],[176,10],[737,10],[416,10],[457,10],[185,10],[109,10],[65,10],[763,10],[329,10],[961,10],[919,10],[931,10],[355,10],[482,10],[112,10],[879,10],[304,10],[253,10],[236,10],[53,10],[46,10],[955,10],[247,10],[385,10],[93,10],[766,10],[150,10],[363,10],[13,10],[927,10],[389,10],[628,10],[26,10],[516,10],[176,10],[313,10],[770,10],[665,10],[345,10],[791,10],[513,10],[340,10],[144,10],[739,10],[227,10],[547,10],[147,10],[519,10],[367,10],[641,10],[435,10],[20,10],[874,10],[58,10],[734,10],[584,10],[675,10],[344,10],[914,10],[913,10],[948,10],[654,10],[841,10],[432,10],[258,10],[698,10],[98,10],[176,10],[727,10],[581,10],[1022,10],[692,10],[279,10],[722,10],[1006,10],[628,10],[994,10],[560,10],[536,10],[42,10],[968,10],[973,10],[952,10],[412,10],[368,10],[833,10],[834,10],[294,10],[327,10],[85,10],[477,10],[712,10],[853,10],[656,10],[797,10],[446,10],[995,10],[885,10],[201,10],[893,10],[640,10],[632,10],[580,10],[824,10],[305,10],[862,10],[317,10],[679,10],[778,10],[166,10],[51,10],[131,10],[553,10],[254,10],[549,10],[297,10],[121,10],[187,10],[265,10],[69,10],[762,10],[620,10],[831,10],[425,10],[260,10],[485,10],[856,10],[309,10],[660,10],[344,10],[61,10],[553,10],[493,10],[312,10],[508,10],[846,10],[68,10],[800,10],[904,10],[565,10],[804,10],[713,10],[977,10],[660,10],[487,10],[245,10],[191,10],[294,10],[515,10],[956,10],[634,10],[495,10],[216,10],[1,10],[271,10],[492,10],[197,10],[833,10],[742,10],[92,10],[620,10],[31,10],[109,10],[338,10],[6,10],[509,10],[371,10],[57,10],[94,10],[840,10],[1003,10],[593,10],[367,10],[49,10],[499,10],[260,10],[574,10],[22,10],[345,10],[309,10],[571,10],[16,10],[793,10],[406,10],[524,10],[297,10],[330,10],[53,10],[227,10],[859,10],[610,10],[175,10],[701,10],[982,10],[958,10],[738,10],[959,10],[441,10],[418,10],[924,10],[401,10],[672,10],[375,10],[612,10],[317,10],[229,10],[852,10],[914,10],[918,10],[818,10],[374,10],[735,10],[97,10],[134,10],[607,10],[240,10],[257,10],[653,10],[942,10],[324,10],[615,10],[227,10],[1013,10],[214,10],[420,10],[945,10],[957,10],[304,10],[835,10],[1019,10],[259,10],[885,10],[136,10],[280,10],[771,10],[452,10],[601,10],[364,10],[937,10],[816,10],[1020,10],[769,10],[492,10],[428,10],[311,10],[526,10],[958,10],[502,10],[660,10],[728,10],[163,10],[550,10],[597,10],[48,10],[674,10],[122,10],[373,10],[67,10],[137,10],[61,10],[387,10],[59,10],[250,10],[152,10],[744,10],[962,10],[756,10],[937,10],[634,10],[796,10],[409,10],[371,10],[797,10],[510,10],[974,10],[57,10],[144,10],[102,10],[656,10],[1004,10],[562,10],[321,10],[284,10],[181,10],[123,10],[603,10],[900,10],[422,10],[221,10],[958,10],[525,10],[874,10],[898,10],[501,10],[49,10],[81,10],[16,10],[781,10],[904,10],[807,10],[388,10],[601,10],[712,10],[553,10],[82,10],[588,10],[1011,10],[226,10],[286,10],[803,10],[145,10],[606,10],[395,10],[222,10],[168,10],[53,10],[843,10],[74,10],[291,10],[768,10],[687,10],[887,10],[399,10],[4,10],[272,10],[374,10],[4,10],[937,10],[726,10],[844,10],[87,10],[218,10],[741,10],[694,10],[267,10],[584,10],[927,10],[461,10],[879,10],[537,10],[485,10],[291,10],[203,10],[11,10],[358,10],[513,10],[827,10],[234,10],[668,10],[220,10],[979,10],[501,10],[205,10],[998,10],[623,10],[262,10],[630,10],[967,10],[557,10],[758,10],[21,10],[647,10],[742,10],[920,10],[36,10],[589,10],[483,10],[353,10],[897,10],[939,10],[840,10],[528,10],[397,10],[976,10],[10,10],[529,10],[473,10],[711,10],[354,10],[270,10],[945,10],[464,10],[848,10],[621,10],[781,10],[912,10],[521,10],[486,10],[737,10],[89,10],[579,10],[527,10],[87,10],[874,10],[335,10],[572,10],[181,10],[620,10],[524,10],[495,10],[596,10],[778,10],[989,10],[563,10],[102,10],[176,10],[481,10],[337,10],[385,10],[1008,10],[213,10],[135,10],[813,10],[44,10],[335,10],[509,10],[689,10],[611,10],[651,10],[736,10],[946,10],[604,10],[160,10],[707,10],[982,10],[392,10],[119,10],[240,10],[1001,10],[345,10],[614,10],[140,10],[826,10],[33,10],[381,10],[480,10],[271,10],[711,10],[487,10],[210,10],[831,10],[731,10],[549,10],[212,10],[113,10],[31,10],[730,10],[799,10],[526,10],[41,10],[115,10],[1004,10],[69,10],[435,10],[697,10],[727,10],[878,10],[938,10],[137,10],[943,10],[381,10],[291,10],[721,10],[912,10],[484,10],[813,10],[139,10],[595,10],[257,10],[527,10],[671,10],[552,10],[445,10],[797,10],[588,10],[500,10],[475,10],[951,10],[388,10],[417,10],[806,10],[865,10],[69,10],[882,10],[718,10],[989,10],[451,10],[70,10],[1011,10],[300,10],[509,10],[586,10],[430,10],[639,10],[923,10],[75,10],[697,10],[830,10],[101,10],[817,10],[699,10],[377,10],[751,10],[675,10],[752,10],[253,10],[224,10],[944,10],[292,10],[898,10],[190,10],[42,10],[858,10],[346,10],[432,10],[438,10],[518,10],[154,10],[886,10],[596,10],[179,10],[890,10],[579,10],[912,10],[410,10],[568,10],[956,10],[850,10],[650,10],[240,10],[750,10],[590,10],[700,10],[492,10],[738,10],[532,10],[465,10],[76,10],[544,10],[708,10],[820,10],[979,10],[319,10],[929,10],[977,10],[198,10],[908,10],[534,10],[70,10],[21,10],[704,10],[738,10],[683,10],[200,10],[866,10],[121,10],[423,10],[921,10],[722,10],[276,10],[911,10],[426,10],[737,10],[481,10],[361,10],[954,10],[708,10],[387,10],[947,10],[155,10],[479,10],[585,10],[436,10],[793,10],[1,10],[781,10],[296,10],[169,10],[490,10],[889,10],[43,10],[262,10],[984,10],[586,10],[763,10],[648,10],[468,10],[772,10],[898,10],[913,10],[884,10],[588,10],[391,10],[120,10],[946,10],[279,10],[996,10],[611,10],[39,10],[360,10],[499,10],[190,10],[955,10],[741,10],[713,10],[892,10],[186,10],[311,10],[469,10],[500,10],[312,10],[987,10],[289,10],[788,10],[735,10],[821,10],[481,10],[1005,10],[860,10],[340,10],[224,10],[722,10],[986,10],[318,10],[565,10],[620,10],[729,10],[754,10],[681,10],[1003,10],[371,10],[556,10],[109,10],[481,10],[767,10],[343,10],[993,10],[132,10],[684,10],[20,10],[172,10],[617,10],[227,10],[529,10],[848,10],[260,10],[765,10],[789,10],[683,10],[810,10],[394,10],[454,10],[890,10],[575,10],[424,10],[196,10],[966,10],[468,10],[806,10],[760,10],[580,10],[282,10],[354,10],[285,10],[202,10],[658,10],[974,10],[167,10],[555,10],[267,10],[169,10],[1018,10],[226,10],[77,10],[999,10],[628,10],[686,10],[759,10],[994,10],[595,10],[960,10],[868,10],[608,10],[149,10],[949,10],[433,10],[998,10],[831,10],[776,10],[597,10],[668,10],[217,10],[534,10],[260,10],[118,10],[281,10],[869,10],[491,10],[632,10],[980,10],[576,10],[824,10],[46,10],[316,10],[947,10],[244,10],[403,10],[332,10],[277,10],[932,10],[990,10],[1022,10],[809,10],[641,10],[554,10],[563,10],[964,10],[695,10],[878,10],[84,10],[855,10],[620,10],[961,10],[561,10],[243,10],[329,10],[153,10],[10,10],[26,10],[841,10],[875,10],[459,10],[802,10],[514,10],[846,10],[99,10],[22,10],[297,10],[140,10],[94,10],[923,10],[837,10],[779,10],[307,10],[1002,10],[45,10],[727,10],[939,10],[489,10],[887,10],[366,10],[675,10],[873,10],[19,10],[843,10],[245,10],[48,10],[615,10],[826,10],[647,10],[662,10],[293,10],[758,10],[9,10],[760,10],[132,10],[42,10],[967,10],[692,10],[358,10],[25,10],[36,10],[882,10],[143,10],[968,10],[827,10],[16,10],[272,10],[768,10],[676,10],[918,10],[616,10],[68,10],[480,10],[368,10],[826,10],[45,10],[500,10],[134,10],[58,10],[463,10],[587,10],[139,10],[528,10],[540,10],[649,10],[940,10],[537,10],[421,10],[551,10],[606,10],[118,10],[209,10],[203,10],[573,10],[716,10],[239,10],[261,10],[343,10],[148,10],[486,10],[374,10],[895,10],[746,10],[548,10],[853,10],[68,10],[911,10],[470,10],[538,10],[392,10],[789,10],[23,10],[322,10],[607,10],[547,10],[94,10],[222,10],[949,10],[444,10],[254,10],[778,10],[471,10],[26,10],[810,10],[216,10],[743,10],[537,10],[799,10],[850,10],[83,10],[570,10],[93,10],[525,10],[516,10],[75,10],[241,10],[752,10],[140,10],[391,10],[327,10],[997,10],[940,10],[380,10],[183,10],[360,10],[152,10],[178,10],[983,10],[259,10],[632,10],[487,10],[611,10],[909,10],[651,10],[871,10],[491,10],[968,10],[622,10],[973,10],[113,10],[192,10],[261,10],[571,10],[598,10],[277,10],[824,10],[124,10],[658,10],[279,10],[404,10],[3,10],[553,10],[444,10],[410,10],[996,10],[263,10],[534,10],[824,10],[738,10],[313,10],[419,10],[714,10],[870,10],[51,10],[195,10],[926,10],[793,10],[791,10],[159,10],[219,10],[798,10],[150,10],[260,10],[862,10],[379,10],[402,10],[362,10],[943,10],[495,10],[30,10],[718,10],[315,10],[1009,10],[907,10],[364,10],[160,10],[224,10],[576,10],[297,10],[468,10],[932,10],[68,10],[779,10],[1004,10],[128,10],[1006,10],[927,10],[629,10],[6,10],[989,10],[987,10],[850,10],[822,10],[226,10],[41,10],[141,10],[409,10],[937,10],[89,10],[647,10],[448,10],[273,10],[454,10],[160,10],[881,10],[694,10],[244,10],[810,10],[170,10],[58,10],[271,10],[398,10],[436,10],[815,10],[936,10],[405,10],[107,10],[133,10],[557,10],[933,10],[597,10],[850,10],[463,10],[462,10],[959,10],[545,10],[219,10],[440,10],[286,10],[769,10],[765,10],[513,10],[147,10],[914,10],[604,10],[715,10],[2,10],[807,10],[708,10],[422,10],[784,10],[516,10],[425,10],[927,10],[917,10],[854,10],[931,10],[208,10],[668,10],[752,10],[296,10],[657,10],[488,10],[250,10],[236,10],[21,10],[4,10],[649,10],[106,10],[844,10],[1001,10],[732,10],[46,10],[175,10],[1,10],[103,10],[539,10],[311,10],[136,10],[733,10],[851,10],[527,10],[217,10],[695,10],[905,10],[180,10],[109,10],[21,10],[146,10],[804,10],[263,10],[785,10],[587,10],[975,10],[147,10],[173,10],[303,10],[931,10],[864,10],[482,10],[399,10],[569,10],[716,10],[242,10],[609,10],[730,10],[196,10],[899,10],[895,10],[103,10],[966,10],[944,10],[978,10],[610,10],[725,10],[664,10],[832,10],[472,10],[26,10],[299,10],[829,10],[985,10],[634,10],[799,10],[206,10],[680,10],[791,10],[135,10],[147,10],[360,10],[264,10],[818,10],[386,10],[670,10],[122,10],[215,10],[916,10],[534,10],[651,10],[885,10],[96,10],[632,10],[902,10],[874,10],[727,10],[947,10],[903,10],[469,10],[845,10],[351,10],[839,10],[723,10],[411,10],[678,10],[521,10],[68,10],[214,10],[480,10],[24,10],[856,10],[348,10],[121,10],[704,10],[160,10],[865,10],[868,10],[377,10],[423,10],[688,10],[260,10],[791,10],[28,10],[811,10],[80,10],[964,10],[1017,10],[391,10],[284,10],[822,10],[48,10],[437,10],[431,10],[87,10],[282,10],[203,10],[303,10],[974,10],[41,10],[479,10],[105,10],[215,10],[533,10],[104,10],[536,10],[79,10],[854,10],[888,10],[946,10],[372,10],[853,10],[727,10],[1003,10],[918,10],[923,10],[755,10],[558,10],[738,10],[167,10],[1004,10],[648,10],[840,10],[711,10],[926,10],[852,10],[458,10],[927,10],[832,10],[102,10],[82,10],[79,10],[22,10],[720,10],[50,10],[89,10],[679,10],[834,10],[1010,10],[809,10],[284,10],[106,10],[782,10],[402,10],[398,10],[612,10],[112,10],[413,10],[803,10],[512,10],[987,10],[845,10],[782,10],[452,10],[363,10],[713,10],[356,10],[948,10],[519,10],[756,10],[47,10],[449,10],[820,10],[288,10],[959,10],[951,10],[302,10],[113,10],[937,10],[447,10],[673,10],[880,10],[939,10],[906,10],[714,10],[812,10],[853,10],[24,10],[658,10],[799,10],[66,10],[686,10],[40,10],[419,10],[585,10],[372,10],[242,10],[273,10],[873,10],[424,10],[459,10],[994,10],[212,10],[763,10],[80,10],[241,10],[280,10],[494,10],[140,10],[587,10],[551,10],[571,10],[152,10],[705,10],[605,10],[330,10],[433,10],[773,10],[346,10],[656,10],[728,10],[173,10],[180,10],[874,10],[168,10],[457,10],[989,10],[815,10],[269,10],[549,10],[433,10],[859,10],[645,10],[928,10],[603,10],[245,10],[946,10],[51,10],[938,10],[632,10],[422,10],[745,10],[575,10],[993,10],[86,10],[946,10],[150,10],[910,10],[989,10],[2,10],[309,10],[538,10],[323,10],[272,10],[595,10],[919,10],[364,10],[621,10],[869,10],[133,10],[585,10],[484,10],[916,10],[383,10],[779,10],[67,10],[866,10],[365,10],[548,10],[571,10],[435,10],[872,10],[164,10],[829,10],[60,10],[288,10],[136,10],[113,10],[689,10],[527,10],[140,10],[904,10],[301,10],[339,10],[789,10],[513,10],[626,10],[493,10],[435,10],[937,10],[90,10],[242,10],[180,10],[383,10],[951,10],[254,10],[245,10],[755,10],[158,10],[42,10],[451,10],[722,10],[382,10],[744,10],[425,10],[39,10],[698,10],[866,10],[809,10],[57,10],[23,10],[968,10],[900,10],[449,10],[719,10],[109,10],[777,10],[963,10],[267,10],[142,10],[845,10],[470,10],[340,10],[701,10],[227,10],[305,10],[273,10],[54,10],[863,10],[113,10],[587,10],[191,10],[930,10],[821,10],[654,10],[231,10],[186,10],[64,10],[109,10],[518,10],[112,10],[584,10],[254,10],[579,10],[422,10],[900,10],[845,10],[41,10],[435,10],[351,10],[122,10],[608,10],[666,10],[959,10],[803,10],[863,10],[574,10],[760,10],[724,10],[737,10],[702,10],[575,10],[1015,10],[982,10],[342,10],[418,10],[1015,10],[734,10],[781,10],[662,10],[816,10],[845,10],[341,10],[296,10],[667,10],[914,10],[98,10],[1020,10],[803,10],[1015,10],[715,10],[390,10],[409,10],[743,10],[536,10],[682,10],[381,10],[851,10],[15,10],[420,10],[115,10],[310,10],[790,10],[64,10],[969,10],[613,10],[313,10],[614,10],[704,10],[969,10],[611,10],[41,10],[33,10],[312,10],[22,10],[158,10],[456,10],[456,10],[121,10],[380,10],[760,10],[495,10],[685,10],[462,10],[365,10],[942,10],[824,10],[316,10],[496,10],[302,10],[160,10],[137,10],[1007,10],[593,10],[158,10],[104,10],[772,10],[860,10],[458,10],[431,10],[520,10],[602,10],[779,10],[115,10],[220,10],[960,10],[85,10],[202,10],[314,10],[602,10],[910,10],[751,10],[890,10],[691,10],[970,10],[822,10],[564,10],[625,10],[189,10],[851,10],[815,10],[656,10],[635,10],[346,10],[416,10],[682,10],[35,10],[598,10],[371,10],[964,10],[746,10],[600,10],[396,10],[689,10],[730,10],[376,10],[744,10],[958,10],[457,10],[881,10],[374,10],[331,10],[719,10],[513,10],[242,10],[938,10],[630,10],[97,10],[315,10],[895,10],[596,10],[486,10],[483,10],[467,10],[808,10],[286,10],[309,10],[922,10],[504,10],[296,10],[593,10],[372,10],[114,10],[245,10],[150,10],[616,10],[766,10],[25,10],[128,10],[599,10],[875,10],[219,10],[1017,10],[886,10],[192,10],[307,10],[995,10],[611,10],[318,10],[407,10],[734,10],[500,10],[253,10],[317,10],[654,10],[895,10],[609,10],[58,10],[23,10],[822,10],[880,10],[665,10],[429,10],[931,10],[98,10],[830,10],[464,10],[27,10],[274,10],[248,10],[443,10],[569,10],[737,10],[769,10],[729,10],[911,10],[913,10],[278,10],[116,10],[279,10],[836,10],[561,10],[625,10],[363,10],[929,10],[386,10],[155,10],[337,10],[285,10],[899,10],[177,10],[9,10],[413,10],[153,10],[761,10],[901,10],[796,10],[896,10],[257,10],[514,10],[634,10],[234,10],[352,10],[816,10],[963,10],[740,10],[195,10],[348,10],[948,10],[4,10],[748,10],[506,10],[397,10],[679,10],[286,10],[369,10],[445,10],[523,10],[352,10],[729,10],[887,10],[602,10],[773,10],[447,10],[629,10],[942,10],[539,10],[215,10],[250,10],[272,10],[85,10],[991,10],[21,10],[196,10],[538,10],[410,10],[356,10],[868,10],[940,10],[771,10],[276,10],[784,10],[72,10],[804,10],[946,10],[88,10],[178,10],[515,10],[860,10],[170,10],[552,10],[602,10],[107,10],[464,10],[580,10],[446,10],[678,10],[524,10],[21,10],[322,10],[720,10],[401,10],[202,10],[592,10],[363,10],[553,10],[296,10],[187,10],[631,10],[968,10],[124,10],[653,10],[450,10],[696,10],[1021,10],[566,10],[961,10],[709,10],[766,10],[406,10],[687,10],[1006,10],[263,10],[811,10],[665,10],[978,10],[465,10],[643,10],[609,10],[950,10],[547,10],[1019,10],[776,10],[739,10],[797,10],[40,10],[40,10],[229,10],[880,10],[318,10],[837,10],[725,10],[184,10],[427,10],[1006,10],[136,10],[923,10],[932,10],[194,10],[696,10],[554,10],[230,10],[887,10],[155,10],[846,10],[539,10],[170,10],[188,10],[421,10],[69,10],[494,10],[415,10],[624,10],[52,10],[459,10],[466,10],[1014,10],[484,10],[859,10],[256,10],[638,10],[852,10],[86,10],[97,10],[638,10],[281,10],[247,10],[700,10],[696,10],[519,10],[433,10],[273,10],[971,10],[844,10],[365,10],[162,10],[234,10],[204,10],[936,10],[468,10],[250,10],[629,10],[940,10],[296,10],[797,10],[723,10],[618,10],[219,10],[88,10],[701,10],[620,10],[601,10],[48,10],[142,10],[392,10],[471,10],[226,10],[440,10],[878,10],[657,10],[179,10],[761,10],[799,10],[927,10],[588,10],[404,10],[994,10],[865,10],[937,10],[483,10],[691,10],[92,10],[225,10],[491,10],[577,10],[774,10],[930,10],[771,10],[28,10],[1006,10],[753,10],[978,10],[655,10],[443,10],[950,10],[781,10],[264,10],[292,10],[1006,10],[266,10],[641,10],[736,10],[592,10],[893,10],[315,10],[37,10],[30,10],[86,10],[374,10],[307,10],[781,10],[862,10],[536,10],[677,10],[699,10],[556,10],[925,10],[70,10],[296,10],[790,10],[238,10],[396,10],[993,10],[413,10],[487,10],[743,10],[870,10],[660,10],[833,10],[828,10],[493,10],[185,10],[621,10],[897,10],[534,10],[27,10],[64,10],[975,10],[563,10],[627,10],[45,10],[419,10],[288,10],[17,10],[881,10],[144,10],[585,10],[789,10],[844,10],[579,10],[687,10],[836,10],[1003,10],[197,10],[79,10],[629,10],[546,10],[974,10],[790,10],[840,10],[337,10],[477,10],[628,10],[39,10],[716,10],[541,10],[926,10],[928,10],[938,10],[881,10],[435,10],[709,10],[676,10],[665,10],[139,10],[790,10],[73,10],[891,10],[5,10],[847,10],[60,10],[890,10],[168,10],[290,10],[715,10],[27,10],[571,10],[891,10],[932,10],[186,10],[647,10],[595,10],[985,10],[713,10],[772,10],[1005,10],[815,10],[576,10],[70,10],[16,10],[654,10],[749,10],[372,10],[197,10],[288,10],[11,10],[440,10],[926,10],[526,10],[338,10],[600,10],[113,10],[528,10],[643,10],[904,10],[502,10],[105,10],[419,10],[212,10],[758,10],[406,10],[665,10],[414,10],[879,10],[611,10],[151,10],[848,10],[370,10],[90,10],[426,10],[298,10],[687,10],[461,10],[800,10],[944,10],[146,10],[519,10],[378,10],[312,10],[340,10],[45,10],[120,10],[608,10],[741,10],[1014,10],[575,10],[932,10],[401,10],[73,10],[25,10],[496,10],[486,10],[18,10],[863,10],[566,10],[496,10],[188,10],[655,10],[273,10],[724,10],[16,10],[683,10],[890,10],[912,10],[331,10],[525,10],[206,10],[906,10],[398,10],[726,10],[753,10],[281,10],[184,10],[160,10],[932,10],[830,10],[534,10],[380,10],[144,10],[730,10],[799,10],[864,10],[277,10],[865,10],[569,10],[45,10],[974,10],[567,10],[424,10],[474,10],[125,10],[184,10],[769,10],[208,10],[520,10],[1013,10],[895,10],[381,10],[892,10],[739,10],[424,10],[135,10],[156,10],[219,10],[888,10],[184,10],[159,10],[140,10],[771,10],[789,10],[790,10],[101,10],[128,10],[185,10],[689,10],[717,10],[772,10],[133,10],[106,10],[907,10],[87,10],[306,10],[143,10],[285,10],[165,10],[586,10],[895,10],[116,10],[71,10],[76,10],[662,10],[373,10],[888,10],[804,10],[790,10],[345,10],[819,10],[902,10],[289,10],[27,10],[98,10],[926,10],[15,10],[824,10],[656,10],[978,10],[167,10],[531,10],[398,10],[277,10],[557,10],[397,10],[662,10],[941,10],[236,10],[834,10],[834,10],[702,10],[547,10],[423,10],[139,10],[103,10],[686,10],[935,10],[60,10],[576,10],[250,10],[726,10],[972,10],[539,10],[235,10],[429,10],[476,10],[397,10],[19,10],[628,10],[675,10],[229,10],[252,10],[839,10],[128,10],[824,10],[151,10],[756,10],[108,10],[722,10],[151,10],[264,10],[156,10],[416,10],[416,10],[803,10],[175,10],[638,10],[761,10],[465,10],[88,10],[259,10],[965,10],[903,10],[282,10],[170,10],[437,10],[26,10],[173,10],[603,10],[429,10],[1005,10],[694,10],[998,10],[573,10],[427,10],[925,10],[957,10],[400,10],[795,10],[332,10],[34,10],[75,10],[809,10],[750,10],[311,10],[869,10],[877,10],[429,10],[37,10],[338,10],[975,10],[849,10],[782,10],[333,10],[384,10],[770,10],[189,10],[754,10],[557,10],[893,10],[584,10],[979,10],[210,10],[290,10],[996,10],[324,10],[901,10],[534,10],[885,10],[545,10],[463,10],[723,10],[882,10],[576,10],[103,10],[147,10],[945,10],[254,10],[681,10],[49,10],[930,10],[224,10],[919,10],[299,10],[738,10],[585,10],[777,10],[957,10],[253,10],[610,10],[756,10],[511,10],[428,10],[546,10],[101,10],[670,10],[932,10],[763,10],[792,10],[600,10],[770,10],[387,10],[1016,10],[330,10],[700,10],[257,10],[373,10],[852,10],[527,10],[562,10],[677,10],[518,10],[328,10],[343,10],[1006,10],[134,10],[121,10],[835,10],[511,10],[299,10],[160,10],[15,10],[680,10],[116,10],[765,10],[421,10],[216,10],[66,10],[851,10],[1010,10],[329,10],[349,10],[1021,10],[954,10],[350,10],[143,10],[209,10],[397,10],[835,10],[616,10],[329,10],[77,10],[1010,10],[26,10],[422,10],[28,10],[628,10],[856,10],[630,10],[458,10],[901,10],[991,10],[774,10],[350,10],[959,10],[887,10],[272,10],[768,10],[803,10],[273,10],[771,10],[940,10],[486,10],[469,10],[298,10],[292,10],[1023,10],[958,10],[244,10],[66,10],[531,10],[390,10],[924,10],[52,10],[333,10],[898,10],[89,10],[455,10],[525,10],[826,10],[782,10],[789,10],[190,10],[551,10],[549,10],[126,10],[760,10],[12,10],[693,10],[529,10],[379,10],[551,10],[994,10],[729,10],[510,10],[87,10],[434,10],[970,10],[973,10],[837,10],[56,10],[176,10],[564,10],[520,10],[408,10],[232,10],[300,10],[39,10],[960,10],[709,10],[427,10],[38,10],[182,10],[742,10],[909,10],[618,10],[440,10],[967,10],[928,10],[365,10],[142,10],[387,10],[928,10],[474,10],[104,10],[716,10],[401,10],[703,10],[676,10],[238,10],[247,10],[584,10],[171,10],[600,10],[1011,10],[1015,10],[649,10],[472,10],[69,10],[881,10],[226,10],[267,10],[495,10],[330,10],[714,10],[866,10],[366,10],[421,10],[602,10],[901,10],[739,10],[923,10],[241,10],[207,10],[135,10],[893,10],[963,10],[142,10],[32,10],[252,10],[333,10],[466,10],[662,10],[159,10],[559,10],[399,10],[301,10],[268,10],[957,10],[634,10],[796,10],[1019,10],[178,10],[229,10],[133,10],[813,10],[949,10],[425,10],[855,10],[69,10],[517,10],[763,10],[24,10],[244,10],[127,10],[149,10],[386,10],[561,10],[749,10],[347,10],[655,10],[818,10],[399,10],[771,10],[322,10],[496,10],[329,10],[479,10],[949,10],[211,10],[1015,10],[205,10],[213,10],[285,10],[776,10],[191,10],[810,10],[252,10],[57,10],[325,10],[197,10],[607,10],[757,10],[258,10],[286,10],[548,10],[919,10],[704,10],[461,10],[756,10],[619,10],[164,10],[795,10],[377,10],[70,10],[229,10],[635,10],[57,10],[913,10],[94,10],[339,10],[940,10],[438,10],[954,10],[309,10],[483,10],[87,10],[63,10],[814,10],[645,10],[948,10],[750,10],[1,10],[705,10],[48,10],[336,10],[243,10],[730,10],[647,10],[996,10],[751,10],[927,10],[532,10],[757,10],[95,10],[402,10],[350,10],[256,10],[492,10],[289,10],[477,10],[827,10],[317,10],[278,10],[538,10],[902,10],[465,10],[481,10],[60,10],[16,10],[177,10],[24,10],[796,10],[288,10],[620,10],[258,10],[584,10],[829,10],[585,10],[142,10],[907,10],[140,10],[151,10],[481,10],[194,10],[951,10],[339,10],[663,10],[456,10],[1015,10],[590,10],[609,10],[455,10],[743,10],[391,10],[522,10],[668,10],[642,10],[66,10],[52,10],[682,10],[625,10],[246,10],[576,10],[861,10],[945,10],[136,10],[275,10],[425,10],[544,10],[690,10],[123,10],[648,10],[467,10],[48,10],[813,10],[825,10],[265,10],[560,10],[55,10],[643,10],[437,10],[198,10],[188,10],[483,10],[813,10],[596,10],[813,10],[274,10],[42,10],[586,10],[684,10],[947,10],[168,10],[433,10],[803,10],[150,10],[988,10],[344,10],[545,10],[962,10],[47,10],[214,10],[529,10],[442,10],[864,10],[298,10],[405,10],[8,10],[295,10],[767,10],[427,10],[658,10],[514,10],[40,10],[267,10],[768,10],[470,10],[946,10],[476,10],[751,10],[107,10],[968,10],[341,10],[430,10],[344,10],[357,10],[143,10],[633,10],[803,10],[349,10],[217,10],[214,10],[27,10],[17,10],[111,10],[970,10],[537,10],[138,10],[154,10],[894,10],[311,10],[402,10],[916,10],[1013,10],[718,10],[804,10],[670,10],[592,10],[213,10],[438,10],[965,10],[803,10],[790,10],[198,10],[688,10],[416,10],[266,10],[940,10],[178,10],[950,10],[131,10],[153,10],[109,10],[454,10],[443,10],[242,10],[492,10],[593,10],[78,10],[387,10],[281,10],[326,10],[888,10],[581,10],[885,10],[295,10],[27,10],[206,10],[339,10],[643,10],[871,10],[906,10],[669,10],[369,10],[733,10],[661,10],[984,10],[607,10],[978,10],[1005,10],[919,10],[927,10],[272,10],[300,10],[583,10],[227,10],[716,10],[325,10],[543,10],[491,10],[339,10],[173,10],[459,10],[464,10],[569,10],[761,10],[475,10],[611,10],[695,10],[576,10],[36,10],[516,10],[730,10],[865,10],[893,10],[220,10],[997,10],[316,10],[86,10],[838,10],[280,10],[852,10],[211,10],[852,10],[977,10],[909,10],[568,10],[332,10],[416,10],[112,10],[825,10],[838,10],[610,10],[308,10],[751,10],[580,10],[832,10],[816,10],[75,10],[28,10],[234,10],[629,10],[705,10],[587,10],[950,10],[43,10],[153,10],[882,10],[763,10],[375,10],[99,10],[647,10],[750,10],[467,10],[643,10],[722,10],[56,10],[76,10],[565,10],[902,10],[427,10],[914,10],[695,10],[243,10],[234,10],[511,10],[688,10],[782,10],[417,10],[730,10],[63,10],[475,10],[789,10],[544,10],[664,10],[525,10],[615,10],[557,10],[181,10],[614,10],[991,10],[147,10],[690,10],[1005,10],[913,10],[346,10],[439,10],[235,10],[334,10],[58,10],[427,10],[501,10],[575,10],[697,10],[630,10],[748,10],[93,10],[1007,10],[656,10],[512,10],[677,10],[868,10],[396,10],[720,10],[32,10],[93,10],[746,10],[712,10],[520,10],[310,10],[736,10],[958,10],[187,10],[297,10],[86,10],[695,10],[184,10],[643,10],[720,10],[316,10],[915,10],[89,10],[430,10],[836,10],[824,10],[704,10],[333,10],[1004,10],[951,10],[741,10],[632,10],[760,10],[704,10],[336,10],[416,10],[49,10],[484,10],[192,10],[57,10],[515,10],[852,10],[237,10],[657,10],[529,10],[1012,10],[598,10],[720,10],[158,10],[891,10],[844,10],[862,10],[206,10],[380,10],[865,10],[839,10],[925,10],[210,10],[654,10],[337,10],[706,10],[634,10],[860,10],[508,10],[78,10],[243,10],[230,10],[135,10],[662,10],[439,10],[257,10],[959,10],[328,10],[864,10],[393,10],[133,10],[649,10],[565,10],[671,10],[20,10],[312,10],[80,10],[30,10],[272,10],[672,10],[334,10],[123,10],[357,10],[942,10],[393,10],[320,10],[194,10],[317,10],[622,10],[34,10],[559,10],[252,10],[906,10],[354,10],[664,10],[240,10],[977,10],[899,10],[997,10],[284,10],[935,10],[840,10],[819,10],[960,10],[364,10],[479,10],[687,10],[793,10],[329,10],[542,10],[218,10],[532,10],[50,10],[303,10],[20,10],[94,10],[130,10],[535,10],[48,10],[55,10],[938,10],[287,10],[853,10],[612,10],[699,10],[441,10],[856,10],[786,10],[915,10],[589,10],[369,10],[68,10],[523,10],[743,10],[34,10],[948,10],[829,10],[1014,10],[40,10],[433,10],[190,10],[170,10],[268,10],[136,10],[262,10],[196,10],[840,10],[951,10],[348,10],[524,10],[291,10],[416,10],[889,10],[1004,10],[834,10],[37,10],[442,10],[619,10],[855,10],[674,10],[838,10],[749,10],[618,10],[39,10],[86,10],[626,10],[866,10],[540,10],[204,10],[463,10],[540,10],[966,10],[932,10],[344,10],[486,10],[994,10],[82,10],[169,10],[792,10],[454,10],[86,10],[440,10],[268,10],[787,10],[827,10],[814,10],[184,10],[459,10],[947,10],[804,10],[818,10],[879,10],[756,10],[571,10],[736,10],[643,10],[736,10],[780,10],[326,10],[451,10],[467,10],[264,10],[492,10],[380,10],[537,10],[941,10],[881,10],[20,10],[408,10],[200,10],[220,10],[592,10],[269,10],[561,10],[677,10],[814,10],[615,10],[735,10],[174,10],[734,10],[935,10],[873,10],[425,10],[412,10],[159,10],[490,10],[476,10],[254,10],[680,10],[1016,10],[961,10],[222,10],[208,10],[71,10],[320,10],[583,10],[451,10],[992,10],[899,10],[477,10],[64,10],[476,10],[906,10],[367,10],[341,10],[63,10],[944,10],[332,10],[287,10],[508,10],[738,10],[42,10],[229,10],[228,10],[550,10],[954,10],[647,10],[422,10],[699,10],[707,10],[415,10],[846,10],[274,10],[57,10],[336,10],[166,10],[785,10],[489,10],[601,10],[373,10],[932,10],[13,10],[475,10],[156,10],[591,10],[317,10],[784,10],[89,10],[226,10],[525,10],[834,10],[588,10],[951,10],[961,10],[596,10],[504,10],[308,10],[996,10],[193,10],[41,10],[916,10],[1009,10],[392,10],[515,10],[81,10],[46,10],[204,10],[926,10],[678,10],[91,10],[827,10],[777,10],[701,10],[905,10],[315,10],[874,10],[636,10],[179,10],[470,10],[218,10],[131,10],[282,10],[591,10],[752,10],[266,10],[269,10],[666,10],[970,10],[783,10],[252,10],[734,10],[133,10],[121,10],[139,10],[825,10],[346,10],[251,10],[758,10],[966,10],[743,10],[656,10],[377,10],[217,10],[238,10],[575,10],[342,10],[1017,10],[791,10],[277,10],[718,10],[369,10],[230,10],[918,10],[98,10],[432,10],[322,10],[868,10],[299,10],[785,10],[899,10],[539,10],[681,10],[13,10],[101,10],[570,10],[457,10],[216,10],[602,10],[231,10],[793,10],[3,10],[941,10],[61,10],[369,10],[415,10],[13,10],[539,10],[380,10],[929,10],[945,10],[759,10],[529,10],[52,10],[747,10],[631,10],[214,10],[125,10],[786,10],[233,10],[355,10],[920,10],[331,10],[240,10],[528,10],[679,10],[807,10],[313,10],[369,10],[1012,10],[817,10],[607,10],[12,10],[726,10],[233,10],[628,10],[456,10],[213,10],[201,10],[688,10],[41,10],[749,10],[359,10],[476,10],[688,10],[724,10],[925,10],[42,10],[138,10],[51,10],[273,10],[660,10],[629,10],[1007,10],[403,10],[131,10],[640,10],[899,10],[158,10],[654,10],[368,10],[248,10],[351,10],[1020,10],[29,10],[102,10],[65,10],[962,10],[427,10],[752,10],[990,10],[82,10],[657,10],[944,10],[697,10],[802,10],[600,10],[996,10],[513,10],[371,10],[684,10],[706,10],[659,10],[768,10],[255,10],[962,10],[319,10],[429,10],[867,10],[175,10],[475,10],[266,10],[215,10],[720,10],[580,10],[140,10],[954,10],[127,10],[450,10],[654,10],[301,10],[811,10],[314,10],[447,10],[916,10],[479,10],[917,10],[1004,10],[380,10],[249,10],[548,10],[838,10],[509,10],[861,10],[694,10],[970,10],[705,10],[409,10],[397,10],[996,10],[436,10],[53,10],[546,10],[271,10],[966,10],[899,10],[43,10],[104,10],[577,10],[866,10],[687,10],[190,10],[270,10],[116,10],[165,10],[547,10],[558,10],[386,10],[178,10],[155,10],[470,10],[290,10],[700,10],[118,10],[567,10],[937,10],[596,10],[408,10],[974,10],[511,10],[930,10],[343,10],[246,10],[794,10],[937,10],[277,10],[1020,10],[306,10],[70,10],[212,10],[870,10],[912,10],[519,10],[737,10],[865,10],[100,10],[19,10],[882,10],[992,10],[895,10],[665,10],[792,10],[34,10],[146,10],[586,10],[837,10],[196,10],[113,10],[808,10],[725,10],[317,10],[661,10],[338,10],[454,10],[950,10],[64,10],[596,10],[221,10],[403,10],[284,10],[789,10],[350,10],[87,10],[737,10],[956,10],[955,10],[1019,10],[405,10],[763,10],[506,10],[429,10],[680,10],[112,10],[267,10],[813,10],[278,10],[478,10],[923,10],[831,10],[618,10],[272,10],[571,10],[1,10],[17,10],[77,10],[444,10],[574,10],[729,10],[574,10],[19,10],[170,10],[646,10],[878,10],[459,10],[631,10],[320,10],[28,10],[473,10],[8,10],[305,10],[32,10],[251,10],[231,10],[179,10],[330,10],[378,10],[192,10],[4,10],[269,10],[656,10],[242,10],[509,10],[932,10],[365,10],[632,10],[99,10],[622,10],[886,10],[702,10],[203,10],[222,10],[909,10],[393,10],[432,10],[155,10],[280,10],[200,10],[818,10],[329,10],[848,10],[638,10],[181,10],[630,10],[501,10],[872,10],[823,10],[289,10],[789,10],[668,10],[232,10],[610,10],[491,10],[686,10],[203,10],[236,10],[725,10],[408,10],[889,10],[379,10],[906,10],[431,10],[717,10],[23,10],[30,10],[27,10],[393,10],[442,10],[441,10],[678,10],[840,10],[1001,10],[12,10],[437,10],[1011,10],[209,10],[81,10],[313,10],[578,10],[624,10],[705,10],[88,10],[992,10],[469,10],[315,10],[588,10],[159,10],[131,10],[981,10],[471,10],[594,10],[24,10],[801,10],[865,10],[351,10],[383,10],[975,10],[392,10],[57,10],[135,10],[46,10],[890,10],[558,10],[1006,10],[564,10],[92,10],[863,10],[822,10],[667,10],[49,10],[635,10],[24,10],[488,10],[366,10],[649,10],[964,10],[85,10],[666,10],[942,10],[997,10],[994,10],[201,10],[138,10],[288,10],[402,10],[714,10],[106,10],[752,10],[591,10],[604,10],[354,10],[209,10],[704,10],[13,10],[978,10],[153,10],[961,10],[1021,10],[356,10],[528,10],[74,10],[1006,10],[321,10],[579,10],[897,10],[97,10],[975,10],[509,10],[1014,10],[611,10],[340,10],[558,10],[57,10],[26,10],[889,10],[391,10],[439,10],[234,10],[351,10],[147,10],[263,10],[19,10],[360,10],[993,10],[133,10],[553,10],[163,10],[100,10],[968,10],[880,10],[688,10],[420,10],[370,10],[264,10],[577,10],[234,10],[96,10],[19,10],[673,10],[389,10],[992,10],[532,10],[663,10],[300,10],[874,10],[269,10],[209,10],[18,10],[756,10],[537,10],[497,10],[936,10],[980,10],[298,10],[254,10],[173,10],[991,10],[562,10],[644,10],[715,10],[807,10],[35,10],[818,10],[744,10],[261,10],[735,10],[134,10],[482,10],[392,10],[793,10],[460,10],[610,10],[136,10],[389,10],[914,10],[13,10],[364,10],[286,10],[727,10],[109,10],[438,10],[409,10],[890,10],[217,10],[1009,10],[510,10],[631,10],[785,10],[796,10],[478,10],[588,10],[714,10],[585,10],[791,10],[542,10],[900,10],[612,10],[853,10],[328,10],[942,10],[102,10],[37,10],[842,10],[594,10],[845,10],[41,10],[253,10],[148,10],[22,10],[231,10],[71,10],[286,10],[620,10],[861,10],[652,10],[471,10],[865,10],[311,10],[832,10],[413,10],[658,10],[872,10],[78,10],[1,10],[586,10],[397,10],[840,10],[657,10],[590,10],[163,10],[744,10],[717,10],[507,10],[493,10],[968,10],[515,10],[318,10],[387,10],[398,10],[317,10],[560,10],[724,10],[179,10],[23,10],[1021,10],[386,10],[30,10],[813,10],[918,10],[460,10],[259,10],[822,10],[357,10],[118,10],[955,10],[958,10],[700,10],[111,10],[248,10],[549,10],[461,10],[1011,10],[7,10],[87,10],[418,10],[288,10],[618,10],[20,10],[296,10],[483,10],[386,10],[141,10],[753,10],[477,10],[550,10],[482,10],[918,10],[713,10],[724,10],[765,10],[945,10],[946,10],[993,10],[35,10],[416,10],[533,10],[416,10],[99,10],[255,10],[423,10],[128,10],[734,10],[904,10],[314,10],[727,10],[34,10],[587,10],[1023,10],[518,10],[581,10],[624,10],[237,10],[302,10],[877,10],[732,10],[858,10],[643,10],[36,10],[535,10],[763,10],[316,10],[159,10],[15,10],[673,10],[435,10],[519,10],[546,10],[853,10],[584,10],[590,10],[155,10],[322,10],[200,10],[259,10],[69,10],[603,10],[426,10],[552,10],[854,10],[487,10],[861,10],[472,10],[783,10],[490,10],[554,10],[994,10],[360,10],[585,10],[243,10],[390,10],[231,10],[225,10],[62,10],[633,10],[330,10],[729,10],[643,10],[909,10],[155,10],[294,10],[10,10],[609,10],[704,10],[291,10],[971,10],[118,10],[968,10],[174,10],[311,10],[17,10],[621,10],[666,10],[828,10],[568,10],[632,10],[916,10],[989,10],[761,10],[510,10],[47,10],[203,10],[212,10],[401,10],[795,10],[678,10],[253,10],[885,10],[317,10],[795,10],[701,10],[232,10],[146,10],[760,10],[286,10],[857,10],[664,10],[333,10],[526,10],[19,10],[596,10],[457,10],[292,10],[971,10],[9,10],[485,10],[357,10],[373,10],[338,10],[898,10],[279,10],[811,10],[500,10],[499,10],[376,10],[891,10],[991,10],[749,10],[293,10],[131,10],[274,10],[1010,10],[982,10],[214,10],[382,10],[515,10],[667,10],[783,10],[186,10],[894,10],[662,10],[465,10],[731,10],[129,10],[1023,10],[180,10],[262,10],[853,10],[803,10],[357,10],[227,10],[698,10],[932,10],[480,10],[496,10],[453,10],[61,10],[728,10],[327,10],[338,10],[144,10],[621,10],[478,10],[368,10],[507,10],[818,10],[820,10],[980,10],[770,10],[195,10],[976,10],[905,10],[391,10],[70,10],[68,10],[161,10],[158,10],[648,10],[784,10],[245,10],[1008,10],[686,10],[396,10],[507,10],[653,10],[304,10],[413,10],[461,10],[666,10],[1014,10],[531,10],[818,10],[16,10],[652,10],[484,10],[899,10],[695,10],[57,10],[260,10],[505,10],[273,10],[179,10],[34,10],[23,10],[244,10],[272,10],[299,10],[856,10],[484,10],[82,10],[289,10],[836,10],[348,10],[235,10],[707,10],[913,10],[226,10],[358,10],[786,10],[752,10],[349,10],[154,10],[524,10],[518,10],[243,10],[835,10],[545,10],[520,10],[555,10],[465,10],[706,10],[74,10],[939,10],[82,10],[127,10],[292,10],[267,10],[76,10],[907,10],[211,10],[502,10],[99,10],[15,10],[581,10],[750,10],[700,10],[740,10],[945,10],[645,10],[889,10],[697,10],[611,10],[451,10],[459,10],[338,10],[1015,10],[1013,10],[723,10],[917,10],[782,10],[236,10],[182,10],[10,10],[186,10],[240,10],[999,10],[473,10],[818,10],[169,10],[130,10],[286,10],[763,10],[104,10],[937,10],[754,10],[712,10],[876,10],[257,10],[79,10],[73,10],[25,10],[45,10],[23,10],[931,10],[55,10],[680,10],[242,10],[400,10],[558,10],[852,10],[110,10],[748,10],[111,10],[216,10],[199,10],[29,10],[475,10],[222,10],[614,10],[415,10],[701,10],[771,10],[776,10],[601,10],[95,10],[350,10],[276,10],[175,10],[1002,10],[412,10],[184,10],[144,10],[974,10],[329,10],[940,10],[275,10],[607,10],[357,10],[895,10],[490,10],[651,10],[350,10],[704,10],[465,10],[484,10],[977,10],[340,10],[282,10],[234,10],[28,10],[312,10],[641,10],[495,10],[16,10],[750,10],[526,10],[524,10],[329,10],[568,10],[283,10],[195,10],[126,10],[834,10],[640,10],[286,10],[947,10],[315,10],[697,10],[603,10],[411,10],[423,10],[442,10],[508,10],[900,10],[711,10],[886,10],[767,10],[352,10],[332,10],[485,10],[209,10],[688,10],[457,10],[461,10],[740,10],[456,10],[134,10],[794,10],[748,10],[608,10],[438,10],[216,10],[559,10],[206,10],[670,10],[988,10],[292,10],[784,10],[842,10],[187,10],[563,10],[652,10],[511,10],[818,10],[997,10],[46,10],[931,10],[2,10],[45,10],[162,10],[291,10],[269,10],[48,10],[269,10],[455,10],[477,10],[154,10],[998,10],[268,10],[378,10],[625,10],[356,10],[284,10],[924,10],[240,10],[310,10],[335,10],[912,10],[947,10],[961,10],[370,10],[53,10],[1012,10],[847,10],[497,10],[197,10],[395,10],[544,10],[42,10],[1012,10],[160,10],[670,10],[170,10],[10,10],[852,10],[78,10],[192,10],[232,10],[358,10],[639,10],[553,10],[137,10],[465,10],[869,10],[810,10],[354,10],[691,10],[426,10],[518,10],[711,10],[707,10],[951,10],[283,10],[75,10],[727,10],[506,10],[822,10],[552,10],[328,10],[119,10],[522,10],[492,10],[350,10],[743,10],[247,10],[387,10],[929,10],[660,10],[507,10],[59,10],[793,10],[231,10],[454,10],[466,10],[809,10],[497,10],[743,10],[429,10],[246,10],[111,10],[314,10],[253,10],[262,10],[110,10],[767,10],[724,10],[122,10],[602,10],[625,10],[128,10],[379,10],[525,10],[213,10],[163,10],[969,10],[75,10],[792,10],[841,10],[848,10],[87,10],[781,10],[52,10],[584,10],[150,10],[438,10],[31,10],[792,10],[779,10],[288,10],[237,10],[481,10],[290,10],[126,10],[1023,10],[4,10],[40,10],[668,10],[848,10],[393,10],[291,10],[957,10],[154,10],[166,10],[649,10],[348,10],[104,10],[893,10],[967,10],[373,10],[729,10],[213,10],[771,10],[635,10],[476,10],[743,10],[964,10],[430,10],[642,10],[510,10],[672,10],[704,10],[819,10],[357,10],[281,10],[894,10],[728,10],[138,10],[485,10],[798,10],[412,10],[818,10],[355,10],[185,10],[806,10],[755,10],[666,10],[143,10],[728,10],[896,10],[1012,10],[725,10],[279,10],[790,10],[654,10],[876,10],[605,10],[645,10],[173,10],[476,10],[221,10],[678,10],[163,10],[142,10],[648,10],[478,10],[105,10],[948,10],[944,10],[816,10],[275,10],[936,10],[715,10],[747,10],[304,10],[791,10],[473,10],[147,10],[969,10],[163,10],[539,10],[906,10],[830,10],[908,10],[773,10],[397,10],[1009,10],[286,10],[112,10],[143,10],[204,10],[264,10],[528,10],[608,10],[53,10],[787,10],[169,10],[95,10],[468,10],[91,10],[53,10],[688,10],[82,10],[76,10],[884,10],[261,10],[764,10],[996,10],[565,10],[583,10],[949,10],[227,10],[767,10],[1018,10],[947,10],[388,10],[202,10],[365,10],[56,10],[131,10],[1008,10],[465,10],[541,10],[114,10],[660,10],[309,10],[108,10],[335,10],[926,10],[754,10],[26,10],[831,10],[376,10],[834,10],[102,10],[535,10],[887,10],[466,10],[35,10],[380,10],[743,10],[648,10],[265,10],[778,10],[35,10],[332,10],[728,10],[60,10],[922,10],[868,10],[307,10],[621,10],[682,10],[417,10],[279,10],[128,10],[286,10],[146,10],[973,10],[882,10],[838,10],[429,10],[849,10],[470,10],[165,10],[434,10],[821,10],[16,10],[824,10],[264,10],[138,10],[65,10],[436,10],[278,10],[423,10],[704,10],[235,10],[207,10],[619,10],[897,10],[340,10],[837,10],[702,10],[890,10],[111,10],[1,10],[566,10],[459,10],[831,10],[536,10],[183,10],[876,10],[844,10],[673,10],[170,10],[13,10],[515,10],[1001,10],[1021,10],[954,10],[713,10],[716,10],[581,10],[31,10],[672,10],[591,10],[494,10],[598,10],[795,10],[149,10],[316,10],[600,10],[921,10],[260,10],[92,10],[462,10],[151,10],[264,10],[399,10],[362,10],[797,10],[616,10],[262,10],[407,10],[993,10],[9,10],[683,10],[305,10],[108,10],[499,10],[220,10],[214,10],[264,10],[223,10],[568,10],[20,10],[298,10],[139,10],[769,10],[930,10],[14,10],[129,10],[301,10],[643,10],[595,10],[581,10],[270,10],[2,10],[657,10],[677,10],[135,10],[632,10],[94,10],[722,10],[9,10],[602,10],[926,10],[614,10],[134,10],[886,10],[844,10],[333,10],[133,10],[539,10],[664,10],[132,10],[413,10],[282,10],[547,10],[351,10],[644,10],[528,10],[446,10],[400,10],[38,10],[237,10],[140,10],[148,10],[277,10],[1013,10],[867,10],[132,10],[1004,10],[548,10],[69,10],[22,10],[111,10],[107,10],[386,10],[644,10],[132,10],[49,10],[651,10],[63,10],[797,10],[116,10],[703,10],[368,10],[635,10],[819,10],[17,10],[149,10],[433,10],[441,10],[529,10],[320,10],[974,10],[642,10],[380,10],[197,10],[671,10],[747,10],[858,10],[544,10],[373,10],[72,10],[715,10],[640,10],[355,10],[629,10],[813,10],[746,10],[697,10],[979,10],[552,10],[270,10],[766,10],[933,10],[214,10],[13,10],[938,10],[895,10],[639,10],[729,10],[802,10],[569,10],[968,10],[809,10],[159,10],[403,10],[554,10],[604,10],[931,10],[379,10],[539,10],[616,10],[394,10],[719,10],[274,10],[679,10],[194,10],[331,10],[897,10],[926,10],[576,10],[232,10],[162,10],[855,10],[534,10],[648,10],[104,10],[333,10],[329,10],[714,10],[285,10],[223,10],[675,10],[1017,10],[352,10],[569,10],[512,10],[616,10],[620,10],[235,10],[934,10],[569,10],[738,10],[126,10],[970,10],[897,10],[81,10],[666,10],[804,10],[181,10],[260,10],[283,10],[939,10],[69,10],[598,10],[766,10],[431,10],[846,10],[231,10],[933,10],[44,10],[382,10],[57,10],[589,10],[281,10],[237,10],[98,10],[393,10],[192,10],[146,10],[200,10],[883,10],[452,10],[90,10],[169,10],[462,10],[131,10],[290,10],[405,10],[734,10],[588,10],[958,10],[45,10],[792,10],[661,10],[990,10],[819,10],[930,10],[924,10],[353,10],[713,10],[518,10],[538,10],[637,10],[197,10],[112,10],[800,10],[872,10],[299,10],[518,10],[296,10],[941,10],[22,10],[863,10],[812,10],[867,10],[408,10],[345,10],[156,10],[764,10],[928,10],[535,10],[549,10],[685,10],[960,10],[415,10],[1007,10],[395,10],[780,10],[407,10],[794,10],[413,10],[598,10],[330,10],[872,10],[780,10],[39,10],[965,10],[293,10],[422,10],[880,10],[308,10],[208,10],[567,10],[525,10],[531,10],[207,10],[704,10],[756,10],[726,10],[58,10],[436,10],[396,10],[571,10],[464,10],[538,10],[561,10],[276,10],[56,10],[121,10],[369,10],[173,10],[205,10],[966,10],[492,10],[477,10],[709,10],[930,10],[508,10],[674,10],[138,10],[688,10],[728,10],[149,10],[880,10],[579,10],[1018,10],[92,10],[425,10],[836,10],[994,10],[47,10],[905,10],[790,10],[1011,10],[349,10],[291,10],[611,10],[644,10],[209,10],[699,10],[117,10],[98,10],[26,10],[861,10],[270,10],[132,10],[462,10],[598,10],[311,10],[120,10],[60,10],[861,10],[175,10],[281,10],[573,10],[635,10],[856,10],[603,10],[883,10],[572,10],[1008,10],[349,10],[274,10],[374,10],[837,10],[988,10],[829,10],[83,10],[543,10],[800,10],[920,10],[74,10],[50,10],[15,10],[466,10],[793,10],[83,10],[982,10],[803,10],[299,10],[611,10],[591,10],[945,10],[97,10],[105,10],[938,10],[718,10],[5,10],[553,10],[1008,10],[662,10],[164,10],[482,10],[643,10],[697,10],[580,10],[612,10],[738,10],[41,10],[715,10],[391,10],[151,10],[263,10],[371,10],[202,10],[679,10],[946,10],[282,10],[938,10],[388,10],[206,10],[766,10],[262,10],[260,10],[322,10],[806,10],[801,10],[662,10],[142,10],[36,10],[16,10],[966,10],[430,10],[759,10],[597,10],[428,10],[530,10],[159,10],[534,10],[936,10],[320,10],[15,10],[809,10],[617,10],[699,10],[372,10],[700,10],[816,10],[720,10],[457,10],[134,10],[548,10],[330,10],[746,10],[928,10],[817,10],[958,10],[809,10],[374,10],[549,10],[169,10],[405,10],[999,10],[396,10],[531,10],[21,10],[407,10],[859,10],[428,10],[435,10],[547,10],[912,10],[506,10],[1018,10],[266,10],[950,10],[439,10],[663,10],[690,10],[618,10],[640,10],[664,10],[1005,10],[423,10],[838,10],[242,10],[350,10],[849,10],[556,10],[583,10],[305,10],[904,10],[980,10],[808,10],[86,10],[893,10],[773,10],[974,10],[632,10],[167,10],[887,10],[394,10],[223,10],[891,10],[623,10],[869,10],[589,10],[145,10],[103,10],[93,10],[705,10],[2,10],[105,10],[145,10],[938,10],[843,10],[820,10],[682,10],[140,10],[481,10],[317,10],[306,10],[768,10],[260,10],[635,10],[33,10],[996,10],[998,10],[139,10],[22,10],[240,10],[859,10],[362,10],[29,10],[774,10],[161,10],[263,10],[319,10],[523,10],[490,10],[52,10],[776,10],[816,10],[581,10],[879,10],[822,10],[651,10],[414,10],[468,10],[569,10],[647,10],[76,10],[350,10],[278,10],[627,10],[477,10],[704,10],[654,10],[292,10],[298,10],[663,10],[334,10],[613,10],[190,10],[906,10],[521,10],[509,10],[516,10],[33,10],[648,10],[95,10],[580,10],[411,10],[752,10],[835,10],[440,10],[441,10],[861,10],[643,10],[892,10],[588,10],[238,10],[890,10],[739,10],[1003,10],[42,10],[216,10],[769,10],[147,10],[602,10],[179,10],[758,10],[94,10],[813,10],[76,10],[861,10],[733,10],[533,10],[170,10],[341,10],[787,10],[570,10],[314,10],[902,10],[783,10],[90,10],[944,10],[530,10],[969,10],[236,10],[928,10],[481,10],[91,10],[230,10],[1000,10],[587,10],[791,10],[375,10],[747,10],[70,10],[435,10],[94,10],[856,10],[274,10],[856,10],[1009,10],[1008,10],[557,10],[494,10],[656,10],[885,10],[963,10],[745,10],[806,10],[239,10],[1011,10],[200,10],[398,10],[379,10],[512,10],[181,10],[176,10],[708,10],[530,10],[447,10],[625,10],[923,10],[501,10],[131,10],[696,10],[523,10],[765,10],[486,10],[633,10],[258,10],[435,10],[710,10],[908,10],[6,10],[82,10],[630,10],[411,10],[692,10],[199,10],[210,10],[293,10],[348,10],[754,10],[918,10],[359,10],[997,10],[657,10],[933,10],[526,10],[213,10],[858,10],[609,10],[921,10],[752,10],[63,10],[557,10],[437,10],[83,10],[435,10],[732,10],[648,10],[383,10],[10,10],[541,10],[950,10],[600,10],[531,10],[530,10],[126,10],[728,10],[913,10],[311,10],[427,10],[495,10],[537,10],[490,10],[904,10],[822,10],[247,10],[376,10],[125,10],[741,10],[294,10],[8,10],[72,10],[237,10],[963,10],[809,10],[944,10],[697,10],[388,10],[458,10],[149,10],[960,10],[359,10],[456,10],[271,10],[393,10],[307,10],[199,10],[747,10],[566,10],[513,10],[560,10],[341,10],[1000,10],[888,10],[173,10],[451,10],[483,10],[195,10],[649,10],[7,10],[155,10],[361,10],[422,10],[631,10],[771,10],[746,10],[773,10],[910,10],[128,10],[858,10],[435,10],[746,10],[863,10],[789,10],[114,10],[44,10],[441,10],[457,10],[916,10],[933,10],[835,10],[849,10],[1002,10],[274,10],[841,10],[570,10],[530,10],[365,10],[501,10],[288,10],[740,10],[112,10],[751,10],[212,10],[549,10],[65,10],[681,10],[778,10],[266,10],[637,10],[263,10],[426,10],[986,10],[377,10],[999,10],[248,10],[549,10],[945,10],[135,10],[555,10],[372,10],[56,10],[707,10],[497,10],[542,10],[200,10],[493,10],[198,10],[441,10],[388,10],[585,10],[796,10],[488,10],[859,10],[773,10],[947,10],[1006,10],[962,10],[902,10],[718,10],[405,10],[566,10],[361,10],[338,10],[747,10],[706,10],[388,10],[88,10],[705,10],[622,10],[972,10],[960,10],[854,10],[228,10],[69,10],[452,10],[898,10],[475,10],[666,10],[144,10],[917,10],[102,10],[409,10],[490,10],[197,10],[669,10],[95,10],[107,10],[14,10],[786,10],[227,10],[558,10],[574,10],[306,10],[729,10],[755,10],[531,10],[81,10],[360,10],[155,10],[39,10],[47,10],[78,10],[497,10],[775,10],[263,10],[883,10],[39,10],[803,10],[1011,10],[708,10],[641,10],[806,10],[940,10],[99,10],[899,10],[630,10],[545,10],[21,10],[253,10],[233,10],[403,10],[703,10],[928,10],[940,10],[49,10],[874,10],[465,10],[290,10],[109,10],[599,10],[375,10],[305,10],[484,10],[575,10],[916,10],[738,10],[1010,10],[297,10],[92,10],[1019,10],[315,10],[441,10],[223,10],[810,10],[853,10],[756,10],[462,10],[843,10],[996,10],[929,10],[555,10],[114,10],[688,10],[222,10],[855,10],[877,10],[57,10],[635,10],[350,10],[229,10],[480,10],[869,10],[479,10],[215,10],[941,10],[989,10],[157,10],[437,10],[955,10],[635,10],[118,10],[318,10],[237,10],[880,10],[687,10],[1009,10],[404,10],[596,10],[608,10],[1008,10],[997,10],[860,10],[701,10],[58,10],[473,10],[871,10],[548,10],[971,10],[607,10],[146,10],[941,10],[25,10],[951,10],[617,10],[202,10],[62,10],[788,10],[2,10],[457,10],[698,10],[365,10],[426,10],[771,10],[59,10],[65,10],[530,10],[279,10],[319,10],[407,10],[265,10],[701,10],[240,10],[606,10],[535,10],[449,10],[846,10],[111,10],[274,10],[875,10],[882,10],[661,10],[128,10],[239,10],[718,10],[703,10],[21,10],[676,10],[778,10],[548,10],[178,10],[644,10],[557,10],[352,10],[140,10],[497,10],[676,10],[452,10],[513,10],[543,10],[210,10],[1006,10],[375,10],[6,10],[881,10],[116,10],[404,10],[580,10],[931,10],[877,10],[806,10],[712,10],[896,10],[326,10],[577,10],[361,10],[396,10],[608,10],[533,10],[249,10],[902,10],[373,10],[237,10],[469,10],[586,10],[4,10],[748,10],[86,10],[517,10],[351,10],[921,10],[463,10],[486,10],[136,10],[329,10],[262,10],[716,10],[340,10],[619,10],[919,10],[465,10],[116,10],[74,10],[739,10],[14,10],[357,10],[59,10],[379,10],[230,10],[95,10],[325,10],[974,10],[287,10],[191,10],[971,10],[444,10],[874,10],[380,10],[314,10],[464,10],[194,10],[206,10],[636,10],[184,10],[79,10],[703,10],[253,10],[986,10],[974,10],[100,10],[674,10],[18,10],[394,10],[265,10],[310,10],[993,10],[103,10],[672,10],[613,10],[184,10],[509,10],[534,10],[497,10],[685,10],[205,10],[926,10],[464,10],[6,10],[711,10],[735,10],[598,10],[1019,10],[647,10],[558,10],[726,10],[958,10],[199,10],[614,10],[904,10],[936,10],[653,10],[156,10],[753,10],[920,10],[509,10],[796,10],[428,10],[88,10],[38,10],[377,10],[186,10],[62,10],[987,10],[544,10],[29,10],[381,10],[433,10],[481,10],[955,10],[14,10],[579,10],[1011,10],[499,10],[734,10],[386,10],[400,10],[652,10],[867,10],[190,10],[894,10],[57,10],[339,10],[982,10],[193,10],[430,10],[379,10],[432,10],[295,10],[774,10],[452,10],[74,10],[469,10],[331,10],[159,10],[405,10],[442,10],[54,10],[301,10],[558,10],[136,10],[92,10],[297,10],[512,10],[683,10],[1003,10],[20,10],[97,10],[14,10],[859,10],[138,10],[867,10],[212,10],[403,10],[705,10],[124,10],[451,10],[904,10],[369,10],[295,10],[655,10],[686,10],[44,10],[903,10],[147,10],[147,10],[759,10],[201,10],[741,10],[572,10],[425,10],[106,10],[96,10],[243,10],[670,10],[882,10],[654,10],[735,10],[656,10],[854,10],[491,10],[961,10],[894,10],[203,10],[39,10],[402,10],[735,10],[872,10],[64,10],[444,10],[423,10],[802,10],[193,10],[11,10],[11,10],[749,10],[490,10],[104,10],[5,10],[431,10],[397,10],[354,10],[806,10],[236,10],[315,10],[296,10],[840,10],[922,10],[256,10],[979,10],[9,10],[197,10],[391,10],[380,10],[874,10],[453,10],[1004,10],[1007,10],[238,10],[741,10],[775,10],[367,10],[492,10],[598,10],[655,10],[616,10],[213,10],[564,10],[624,10],[498,10],[292,10],[925,10],[223,10],[869,10],[868,10],[193,10],[683,10],[871,10],[368,10],[823,10],[538,10],[841,10],[421,10],[994,10],[351,10],[984,10],[406,10],[820,10],[778,10],[420,10],[107,10],[454,10],[629,10],[209,10],[926,10],[169,10],[472,10],[945,10],[687,10],[446,10],[120,10],[894,10],[722,10],[245,10],[174,10],[241,10],[212,10],[616,10],[452,10],[996,10],[603,10],[818,10],[586,10],[618,10],[54,10],[964,10],[368,10],[497,10],[487,10],[481,10],[88,10],[30,10],[534,10],[244,10],[745,10],[818,10],[476,10],[797,10],[962,10],[454,10],[603,10],[350,10],[538,10],[453,10],[424,10],[702,10],[392,10],[82,10],[730,10],[546,10],[774,10],[750,10],[381,10],[734,10],[609,10],[658,10],[616,10],[847,10],[267,10],[751,10],[659,10],[547,10],[948,10],[326,10],[173,10],[675,10],[133,10],[384,10],[642,10],[592,10],[532,10],[214,10],[118,10],[630,10],[81,10],[498,10],[332,10],[123,10],[183,10],[208,10],[567,10],[967,10],[500,10],[136,10],[39,10],[415,10],[209,10],[317,10],[208,10],[710,10],[813,10],[625,10],[794,10],[409,10],[995,10],[473,10],[913,10],[714,10],[617,10],[887,10],[1016,10],[457,10],[481,10],[70,10],[543,10],[509,10],[861,10],[505,10],[904,10],[559,10],[681,10],[594,10],[588,10],[800,10],[684,10],[417,10],[762,10],[24,10],[732,10],[188,10],[464,10],[675,10],[197,10],[52,10],[674,10],[900,10],[214,10],[822,10],[528,10],[933,10],[434,10],[398,10],[73,10],[848,10],[284,10],[920,10],[683,10],[386,10],[354,10],[234,10],[954,10],[750,10],[945,10],[543,10],[137,10],[307,10],[124,10],[510,10],[153,10],[622,10],[870,10],[431,10],[430,10],[964,10],[170,10],[391,10],[854,10],[953,10],[64,10],[746,10],[263,10],[239,10],[691,10],[154,10],[28,10],[872,10],[777,10],[47,10],[419,10],[952,10],[430,10],[161,10],[711,10],[4,10],[517,10],[322,10],[918,10],[481,10],[611,10],[378,10],[386,10],[397,10],[592,10],[741,10],[190,10],[255,10],[25,10],[429,10],[488,10],[689,10],[311,10],[301,10],[430,10],[861,10],[541,10],[793,10],[558,10],[826,10],[575,10],[404,10],[955,10],[373,10],[740,10],[311,10],[351,10],[696,10],[424,10],[333,10],[599,10],[473,10],[664,10],[662,10],[393,10],[405,10],[408,10],[676,10],[584,10],[338,10],[825,10],[961,10],[1010,10],[901,10],[169,10],[156,10],[756,10],[425,10],[456,10],[255,10],[153,10],[816,10],[171,10],[389,10],[594,10],[777,10],[504,10],[968,10],[539,10],[1021,10],[852,10],[319,10],[338,10],[1023,10],[873,10],[848,10],[645,10],[863,10],[264,10],[45,10],[304,10],[201,10],[86,10],[885,10],[520,10],[976,10],[508,10],[751,10],[1005,10],[449,10],[191,10],[879,10],[912,10],[1002,10],[746,10],[603,10],[875,10],[103,10],[71,10],[459,10],[246,10],[995,10],[621,10],[1005,10],[294,10],[491,10],[858,10],[755,10],[909,10],[825,10],[977,10],[624,10],[575,10],[941,10],[533,10],[279,10],[752,10],[547,10],[56,10],[859,10],[182,10],[976,10],[80,10],[916,10],[806,10],[549,10],[726,10],[513,10],[113,10],[882,10],[1017,10],[362,10],[961,10],[582,10],[404,10],[325,10],[778,10],[49,10],[89,10],[787,10],[559,10],[484,10],[855,10],[779,10],[222,10],[205,10],[856,10],[599,10],[593,10],[639,10],[754,10],[24,10],[192,10],[474,10],[27,10],[54,10],[271,10],[681,10],[871,10],[333,10],[138,10],[490,10],[569,10],[96,10],[899,10],[792,10],[676,10],[468,10],[43,10],[600,10],[214,10],[214,10],[395,10],[579,10],[603,10],[766,10],[122,10],[245,10],[649,10],[726,10],[926,10],[821,10],[192,10],[935,10],[514,10],[389,10],[945,10],[968,10],[35,10],[74,10],[767,10],[543,10],[812,10],[720,10],[342,10],[163,10],[726,10],[214,10],[917,10],[562,10],[102,10],[667,10],[485,10],[422,10],[77,10],[275,10],[427,10],[312,10],[110,10],[405,10],[473,10],[17,10],[126,10],[204,10],[205,10],[857,10],[566,10],[511,10],[205,10],[251,10],[843,10],[8,10],[629,10],[895,10],[1004,10],[116,10],[887,10],[934,10],[723,10],[394,10],[840,10],[361,10],[301,10],[780,10],[813,10],[439,10],[798,10],[819,10],[146,10],[388,10],[804,10],[158,10],[381,10],[894,10],[72,10],[893,10],[304,10],[589,10],[533,10],[722,10],[135,10],[585,10],[665,10],[993,10],[957,10],[1020,10],[25,10],[811,10],[110,10],[816,10],[536,10],[961,10],[475,10],[772,10],[616,10],[356,10],[888,10],[893,10],[175,10],[167,10],[153,10],[128,10],[865,10],[407,10],[805,10],[583,10],[38,10],[967,10],[331,10],[864,10],[901,10],[505,10],[778,10],[157,10],[682,10],[475,10],[621,10],[48,10],[89,10],[105,10],[139,10],[984,10],[965,10],[775,10],[579,10],[164,10],[509,10],[133,10],[806,10],[40,10],[253,10],[890,10],[608,10],[393,10],[27,10],[79,10],[815,10],[934,10],[953,10],[891,10],[1003,10],[1021,10],[454,10],[692,10],[855,10],[1009,10],[879,10],[704,10],[850,10],[706,10],[865,10],[663,10],[942,10],[291,10],[684,10],[465,10],[992,10],[84,10],[975,10],[397,10],[270,10],[363,10],[566,10],[561,10],[597,10],[939,10],[159,10],[223,10],[849,10],[902,10],[895,10],[629,10],[754,10],[147,10],[151,10],[223,10],[660,10],[498,10],[131,10],[309,10],[546,10],[340,10],[373,10],[432,10],[644,10],[173,10],[806,10],[53,10],[173,10],[516,10],[144,10],[148,10],[666,10],[856,10],[266,10],[411,10],[450,10],[195,10],[20,10],[954,10],[882,10],[59,10],[347,10],[962,10],[116,10],[66,10],[309,10],[453,10],[320,10],[638,10],[1010,10],[1017,10],[194,10],[130,10],[474,10],[486,10],[536,10],[149,10],[808,10],[778,10],[502,10],[59,10],[494,10],[992,10],[193,10],[191,10],[115,10],[4,10],[683,10],[751,10],[515,10],[194,10],[360,10],[782,10],[639,10],[684,10],[652,10],[282,10],[970,10],[180,10],[40,10],[500,10],[513,10],[140,10],[653,10],[614,10],[663,10],[218,10],[150,10],[811,10],[555,10],[186,10],[52,10],[773,10],[818,10],[655,10],[365,10],[666,10],[936,10],[498,10],[257,10],[954,10],[981,10],[584,10],[464,10],[200,10],[697,10],[338,10],[224,10],[121,10],[540,10],[568,10],[120,10],[419,10],[422,10],[849,10],[288,10],[577,10],[676,10],[587,10],[591,10],[1015,10],[879,10],[1023,10],[535,10],[1007,10],[792,10],[953,10],[926,10],[397,10],[659,10],[452,10],[200,10],[584,10],[236,10],[364,10],[658,10],[998,10],[569,10],[371,10],[295,10],[550,10],[872,10],[955,10],[587,10],[800,10],[460,10],[352,10],[831,10],[945,10],[994,10],[696,10],[805,10],[663,10],[280,10],[549,10],[159,10],[495,10],[830,10],[535,10],[909,10],[798,10],[939,10],[162,10],[586,10],[858,10],[211,10],[610,10],[144,10],[183,10],[480,10],[124,10],[350,10],[831,10],[620,10],[829,10],[150,10],[689,10],[947,10],[471,10],[844,10],[744,10],[708,10],[828,10],[350,10],[685,10],[783,10],[674,10],[567,10],[334,10],[375,10],[414,10],[40,10],[852,10],[327,10],[331,10],[633,10],[822,10],[165,10],[927,10],[214,10],[40,10],[940,10],[733,10],[330,10],[546,10],[142,10],[941,10],[829,10],[680,10],[302,10],[196,10],[791,10],[434,10],[246,10],[596,10],[293,10],[269,10],[699,10],[513,10],[859,10],[160,10],[652,10],[750,10],[413,10],[70,10],[994,10],[151,10],[872,10],[406,10],[96,10],[700,10],[816,10],[363,10],[546,10],[673,10],[499,10],[894,10],[753,10],[701,10],[957,10],[615,10],[361,10],[972,10],[313,10],[718,10],[142,10],[547,10],[603,10],[57,10],[407,10],[103,10],[602,10],[737,10],[49,10],[157,10],[914,10],[65,10],[412,10],[643,10],[933,10],[713,10],[877,10],[476,10],[137,10],[696,10],[501,10],[118,10],[664,10],[453,10],[200,10],[178,10],[130,10],[586,10],[99,10],[512,10],[922,10],[342,10],[633,10],[261,10],[412,10],[618,10],[339,10],[388,10],[503,10],[281,10],[414,10],[176,10],[110,10],[941,10],[570,10],[683,10],[489,10],[702,10],[729,10],[738,10],[277,10],[390,10],[703,10],[978,10],[564,10],[103,10],[965,10],[920,10],[352,10],[225,10],[913,10],[28,10],[458,10],[448,10],[479,10],[147,10],[393,10],[809,10],[505,10],[1022,10],[208,10],[762,10],[183,10],[743,10],[998,10],[1002,10],[28,10],[519,10],[136,10],[771,10],[225,10],[498,10],[342,10],[208,10],[334,10],[112,10],[1022,10],[860,10],[471,10],[411,10],[673,10],[575,10],[138,10],[710,10],[548,10],[189,10],[602,10],[222,10],[214,10],[623,10],[986,10],[203,10],[338,10],[115,10],[470,10],[474,10],[234,10],[410,10],[181,10],[689,10],[850,10],[362,10],[971,10],[124,10],[594,10],[183,10],[472,10],[831,10],[337,10],[15,10],[236,10],[959,10],[485,10],[785,10],[679,10],[611,10],[371,10],[531,10],[386,10],[895,10],[517,10],[354,10],[317,10],[383,10],[949,10],[594,10],[471,10],[840,10],[540,10],[138,10],[786,10],[418,10],[103,10],[692,10],[571,10],[894,10],[63,10],[779,10],[445,10],[348,10],[315,10],[835,10],[51,10],[656,10],[786,10],[914,10],[418,10],[151,10],[577,10],[955,10],[109,10],[421,10],[540,10],[620,10],[861,10],[465,10],[279,10],[216,10],[686,10],[688,10],[481,10],[1021,10],[981,10],[414,10],[743,10],[348,10],[165,10],[544,10],[448,10],[413,10],[743,10],[676,10],[136,10],[804,10],[504,10],[126,10],[709,10],[260,10],[237,10],[214,10],[37,10],[367,10],[801,10],[890,10],[647,10],[831,10],[745,10],[588,10],[13,10],[543,10],[965,10],[130,10],[827,10],[416,10],[912,10],[87,10],[92,10],[566,10],[124,10],[458,10],[940,10],[216,10],[137,10],[603,10],[731,10],[986,10],[596,10],[104,10],[647,10],[1017,10],[283,10],[289,10],[22,10],[685,10],[48,10],[908,10],[646,10],[590,10],[967,10],[59,10],[141,10],[285,10],[962,10],[975,10],[274,10],[243,10],[907,10],[316,10],[568,10],[563,10],[458,10],[220,10],[765,10],[530,10],[142,10],[589,10],[644,10],[725,10],[509,10],[951,10],[895,10],[885,10],[678,10],[369,10],[883,10],[516,10],[498,10],[181,10],[402,10],[153,10],[839,10],[938,10],[347,10],[347,10],[1016,10],[34,10],[703,10],[957,10],[5,10],[802,10],[962,10],[148,10],[19,10],[392,10],[885,10],[319,10],[636,10],[777,10],[535,10],[751,10],[366,10],[916,10],[228,10],[10,10],[779,10],[467,10],[296,10],[210,10],[951,10],[447,10],[695,10],[679,10],[322,10],[37,10],[250,10],[10,10],[678,10],[106,10],[829,10],[138,10],[171,10],[98,10],[950,10],[879,10],[601,10],[88,10],[402,10],[841,10],[100,10],[397,10],[441,10],[830,10],[471,10],[729,10],[1001,10],[49,10],[317,10],[594,10],[53,10],[754,10],[485,10],[214,10],[720,10],[1018,10],[245,10],[232,10],[741,10],[1007,10],[115,10],[61,10],[382,10],[192,10],[916,10],[210,10],[992,10],[389,10],[307,10],[479,10],[481,10],[727,10],[236,10],[425,10],[580,10],[386,10],[545,10],[203,10],[1021,10],[558,10],[875,10],[394,10],[196,10],[604,10],[749,10],[510,10],[595,10],[710,10],[299,10],[325,10],[258,10],[501,10],[593,10],[358,10],[632,10],[655,10],[862,10],[53,10],[413,10],[104,10],[856,10],[47,10],[777,10],[624,10],[954,10],[45,10],[846,10],[100,10],[1001,10],[821,10],[343,10],[358,10],[763,10],[781,10],[794,10],[965,10],[34,10],[420,10],[64,10],[725,10],[112,10],[824,10],[621,10],[7,10],[272,10],[310,10],[524,10],[259,10],[790,10],[505,10],[371,10],[809,10],[536,10],[379,10],[505,10],[606,10],[428,10],[98,10],[740,10],[157,10],[385,10],[123,10],[222,10],[392,10],[547,10],[60,10],[354,10],[860,10],[317,10],[669,10],[885,10],[429,10],[422,10],[555,10],[364,10],[529,10],[757,10],[210,10],[189,10],[6,10],[150,10],[228,10],[826,10],[311,10],[191,10],[318,10],[209,10],[424,10],[159,10],[278,10],[317,10],[85,10],[110,10],[856,10],[826,10],[902,10],[526,10],[437,10],[571,10],[905,10],[425,10],[824,10],[913,10],[443,10],[382,10],[216,10],[610,10],[953,10],[605,10],[671,10],[119,10],[14,10],[242,10],[985,10],[930,10],[773,10],[649,10],[508,10],[982,10],[504,10],[954,10],[113,10],[117,10],[129,10],[914,10],[190,10],[741,10],[472,10],[480,10],[646,10],[133,10],[227,10],[229,10],[429,10],[130,10],[388,10],[176,10],[892,10],[43,10],[441,10],[770,10],[333,10],[837,10],[9,10],[537,10],[62,10],[305,10],[354,10],[58,10],[419,10],[37,10],[211,10],[811,10],[63,10],[977,10],[747,10],[806,10],[776,10],[147,10],[443,10],[235,10],[833,10],[746,10],[683,10],[270,10],[48,10],[662,10],[299,10],[26,10],[981,10],[877,10],[304,10],[103,10],[544,10],[852,10],[670,10],[419,10],[742,10],[658,10],[655,10],[266,10],[440,10],[687,10],[313,10],[347,10],[881,10],[727,10],[923,10],[650,10],[169,10],[541,10],[516,10],[871,10],[454,10],[524,10],[739,10],[465,10],[586,10],[797,10],[82,10],[223,10],[35,10],[214,10],[367,10],[552,10],[543,10],[760,10],[86,10],[918,10],[220,10],[821,10],[122,10],[129,10],[151,10],[139,10],[860,10],[231,10],[1010,10],[536,10],[63,10],[980,10],[770,10],[230,10],[968,10],[891,10],[361,10],[121,10],[720,10],[280,10],[598,10],[22,10],[871,10],[730,10],[2,10],[911,10],[803,10],[240,10],[773,10],[97,10],[173,10],[514,10],[895,10],[714,10],[72,10],[608,10],[147,10],[641,10],[698,10],[974,10],[963,10],[253,10],[300,10],[990,10],[344,10],[385,10],[422,10],[304,10],[457,10],[877,10],[900,10],[466,10],[133,10],[354,10],[612,10],[922,10],[9,10],[806,10],[89,10],[84,10],[804,10],[995,10],[704,10],[560,10],[180,10],[338,10],[34,10],[1006,10],[289,10],[597,10],[925,10],[852,10],[266,10],[739,10],[244,10],[954,10],[500,10],[110,10],[514,10],[466,10],[288,10],[692,10],[480,10],[603,10],[603,10],[208,10],[798,10],[735,10],[514,10],[892,10],[381,10],[593,10],[270,10],[844,10],[994,10],[658,10],[520,10],[542,10],[467,10],[411,10],[935,10],[25,10],[445,10],[8,10],[25,10],[437,10],[500,10],[315,10],[965,10],[14,10],[682,10],[241,10],[24,10],[8,10],[932,10],[446,10],[163,10],[144,10],[997,10],[724,10],[704,10],[284,10],[863,10],[3,10],[657,10],[701,10],[131,10],[708,10],[219,10],[653,10],[300,10],[684,10],[922,10],[546,10],[842,10],[642,10],[402,10],[415,10],[763,10],[206,10],[83,10],[242,10],[925,10],[549,10],[141,10],[750,10],[817,10],[739,10],[953,10],[247,10],[326,10],[634,10],[272,10],[898,10],[140,10],[55,10],[846,10],[496,10],[257,10],[983,10],[505,10],[326,10],[19,10],[789,10],[361,10],[547,10],[969,10],[913,10],[516,10],[829,10],[247,10],[234,10],[449,10],[52,10],[975,10],[323,10],[179,10],[33,10],[744,10],[504,10],[261,10],[962,10],[850,10],[134,10],[325,10],[645,10],[225,10],[930,10],[762,10],[419,10],[766,10],[875,10],[674,10],[693,10],[494,10],[335,10],[374,10],[206,10],[344,10],[268,10],[763,10],[941,10],[911,10],[792,10],[700,10],[442,10],[729,10],[38,10],[455,10],[140,10],[876,10],[139,10],[748,10],[708,10],[299,10],[108,10],[616,10],[727,10],[170,10],[80,10],[635,10],[1008,10],[356,10],[523,10],[240,10],[921,10],[771,10],[622,10],[679,10],[148,10],[948,10],[735,10],[278,10],[283,10],[684,10],[289,10],[115,10],[966,10],[517,10],[649,10],[249,10],[18,10],[163,10],[256,10],[440,10],[231,10],[719,10],[136,10],[1,10],[592,10],[400,10],[40,10],[869,10],[246,10],[639,10],[298,10],[540,10],[388,10],[599,10],[997,10],[399,10],[661,10],[505,10],[604,10],[1013,10],[390,10],[310,10],[902,10],[87,10],[112,10],[846,10],[865,10],[163,10],[138,10],[281,10],[116,10],[499,10],[353,10],[258,10],[121,10],[74,10],[408,10],[383,10],[117,10],[920,10],[835,10],[358,10],[946,10],[924,10],[695,10],[575,10],[855,10],[959,10],[66,10],[472,10],[409,10],[168,10],[505,10],[436,10],[320,10],[816,10],[174,10],[366,10],[690,10],[435,10],[136,10],[135,10],[392,10],[495,10],[373,10],[593,10],[598,10],[286,10],[403,10],[838,10],[504,10],[234,10],[958,10],[959,10],[841,10],[883,10],[731,10],[216,10],[204,10],[800,10],[88,10],[215,10],[58,10],[491,10],[773,10],[301,10],[968,10],[902,10],[835,10],[754,10],[356,10],[846,10],[518,10],[751,10],[339,10],[938,10],[196,10],[12,10],[756,10],[504,10],[227,10],[873,10],[176,10],[876,10],[209,10],[205,10],[177,10],[754,10],[334,10],[384,10],[924,10],[738,10],[568,10],[641,10],[985,10],[504,10],[152,10],[138,10],[286,10],[680,10],[718,10],[359,10],[1016,10],[122,10],[851,10],[727,10],[900,10],[352,10],[821,10],[779,10],[416,10],[53,10],[688,10],[526,10],[611,10],[662,10],[916,10],[851,10],[100,10],[396,10],[146,10],[485,10],[504,10],[178,10],[530,10],[764,10],[403,10],[864,10],[784,10],[407,10],[664,10],[874,10],[865,10],[537,10],[641,10],[930,10],[575,10],[254,10],[221,10],[110,10],[786,10],[914,10],[986,10],[371,10],[854,10],[990,10],[340,10],[861,10],[915,10],[153,10],[661,10],[578,10],[86,10],[60,10],[765,10],[562,10],[264,10],[20,10],[556,10],[999,10],[170,10],[23,10],[818,10],[374,10],[525,10],[934,10],[429,10],[118,10],[670,10],[707,10],[672,10],[909,10],[207,10],[80,10],[46,10],[600,10],[571,10],[737,10],[295,10],[705,10],[182,10],[1002,10],[933,10],[32,10],[88,10],[544,10],[164,10],[700,10],[366,10],[658,10],[802,10],[863,10],[845,10],[878,10],[32,10],[391,10],[229,10],[877,10],[430,10],[18,10],[223,10],[249,10],[200,10],[880,10],[639,10],[525,10],[928,10],[637,10],[732,10],[119,10],[646,10],[1,10],[667,10],[785,10],[817,10],[67,10],[665,10],[936,10],[651,10],[569,10],[335,10],[392,10],[73,10],[613,10],[481,10],[249,10],[951,10],[887,10],[650,10],[109,10],[125,10],[895,10],[525,10],[762,10],[862,10],[640,10],[249,10],[688,10],[746,10],[775,10],[530,10],[747,10],[1005,10],[960,10],[109,10],[747,10],[842,10],[281,10],[99,10],[482,10],[669,10],[266,10],[711,10],[105,10],[55,10],[1010,10],[437,10],[648,10],[489,10],[573,10],[575,10],[694,10],[51,10],[763,10],[399,10],[300,10],[496,10],[308,10],[252,10],[586,10],[801,10],[892,10],[332,10],[274,10],[73,10],[793,10],[774,10],[276,10],[155,10],[166,10],[966,10],[327,10],[146,10],[646,10],[160,10],[67,10],[345,10],[897,10],[681,10],[692,10],[680,10],[561,10],[384,10],[708,10],[655,10],[928,10],[783,10],[829,10],[1008,10],[422,10],[567,10],[873,10],[377,10],[846,10],[709,10],[468,10],[220,10],[669,10],[1021,10],[852,10],[871,10],[354,10],[907,10],[411,10],[964,10],[910,10],[467,10],[339,10],[855,10],[130,10],[502,10],[815,10],[306,10],[778,10],[732,10],[23,10],[696,10],[730,10],[127,10],[436,10],[870,10],[889,10],[48,10],[344,10],[221,10],[395,10],[601,10],[117,10],[641,10],[1019,10],[918,10],[862,10],[828,10],[797,10],[474,10],[155,10],[539,10],[606,10],[1007,10],[270,10],[183,10],[3,10],[393,10],[158,10],[27,10],[262,10],[605,10],[835,10],[63,10],[391,10],[853,10],[607,10],[505,10],[611,10],[315,10],[502,10],[372,10],[586,10],[304,10],[242,10],[114,10],[778,10],[969,10],[546,10],[778,10],[977,10],[435,10],[122,10],[575,10],[964,10],[421,10],[568,10],[662,10],[198,10],[658,10],[883,10],[466,10],[508,10],[39,10],[276,10],[85,10],[176,10],[405,10],[461,10],[325,10],[229,10],[147,10],[290,10],[548,10],[558,10],[365,10],[7,10],[591,10],[7,10],[53,10],[838,10],[799,10],[595,10],[36,10],[404,10],[484,10],[716,10],[363,10],[899,10],[721,10],[203,10],[373,10],[453,10],[467,10],[578,10],[46,10],[363,10],[192,10],[980,10],[240,10],[768,10],[677,10],[49,10],[27,10],[27,10],[212,10],[256,10],[167,10],[738,10],[971,10],[119,10],[1010,10],[416,10],[4,10],[624,10],[332,10],[361,10],[286,10],[865,10],[623,10],[1019,10],[602,10],[807,10],[936,10],[490,10],[181,10],[133,10],[854,10],[51,10],[819,10],[689,10],[432,10],[883,10],[785,10],[985,10],[935,10],[136,10],[590,10],[517,10],[45,10],[31,10],[712,10],[885,10],[730,10],[582,10],[1005,10],[520,10],[805,10],[748,10],[986,10],[766,10],[400,10],[563,10],[582,10],[823,10],[511,10],[630,10],[317,10],[417,10],[94,10],[1007,10],[70,10],[675,10],[33,10],[624,10],[557,10],[584,10],[337,10],[513,10],[788,10],[680,10],[105,10],[124,10],[769,10],[748,10],[142,10],[288,10],[212,10],[463,10],[408,10],[914,10],[31,10],[982,10],[355,10],[496,10],[238,10],[498,10],[645,10],[303,10],[544,10],[873,10],[283,10],[260,10],[259,10],[484,10],[897,10],[887,10],[991,10],[308,10],[801,10],[1022,10],[180,10],[842,10],[981,10],[367,10],[640,10],[726,10],[688,10],[960,10],[440,10],[910,10],[36,10],[813,10],[56,10],[205,10],[998,10],[548,10],[893,10],[526,10],[158,10],[764,10],[80,10],[65,10],[491,10],[200,10],[615,10],[418,10],[143,10],[751,10],[972,10],[529,10],[494,10],[273,10],[208,10],[346,10],[653,10],[299,10],[778,10],[306,10],[662,10],[570,10],[164,10],[188,10],[488,10],[865,10],[424,10],[873,10],[31,10],[234,10],[706,10],[111,10],[653,10],[821,10],[837,10],[728,10],[502,10],[360,10],[891,10],[210,10],[682,10],[161,10],[150,10],[787,10],[754,10],[252,10],[528,10],[560,10],[42,10],[482,10],[109,10],[995,10],[1019,10],[2,10],[308,10],[648,10],[604,10],[566,10],[469,10],[480,10],[524,10],[984,10],[382,10],[508,10],[177,10],[996,10],[19,10],[937,10],[318,10],[495,10],[586,10],[710,10],[342,10],[254,10],[433,10],[322,10],[88,10],[115,10],[170,10],[623,10],[791,10],[67,10],[547,10],[401,10],[21,10],[121,10],[146,10],[77,10],[79,10],[211,10],[30,10],[437,10],[599,10],[660,10],[718,10],[461,10],[20,10],[449,10],[183,10],[712,10],[435,10],[752,10],[962,10],[888,10],[777,10],[770,10],[37,10],[796,10],[316,10],[693,10],[361,10],[804,10],[9,10],[672,10],[414,10],[382,10],[456,10],[129,10],[479,10],[653,10],[1022,10],[505,10],[795,10],[834,10],[31,10],[468,10],[959,10],[698,10],[445,10],[647,10],[143,10],[323,10],[179,10],[936,10],[361,10],[781,10],[844,10],[343,10],[786,10],[266,10],[660,10],[627,10],[1003,10],[109,10],[68,10],[605,10],[803,10],[312,10],[686,10],[103,10],[569,10],[88,10],[65,10],[664,10],[486,10],[434,10],[228,10],[336,10],[318,10],[165,10],[933,10],[790,10],[537,10],[900,10],[584,10],[691,10],[683,10],[93,10],[338,10],[588,10],[28,10],[642,10],[877,10],[791,10],[338,10],[306,10],[927,10],[29,10],[928,10],[881,10],[780,10],[124,10],[990,10],[634,10],[195,10],[652,10],[339,10],[414,10],[166,10],[517,10],[822,10],[739,10],[414,10],[178,10],[765,10],[1,10],[846,10],[780,10],[241,10],[689,10],[60,10],[705,10],[116,10],[624,10],[573,10],[444,10],[865,10],[240,10],[602,10],[89,10],[747,10],[739,10],[45,10],[972,10],[556,10],[111,10],[550,10],[858,10],[63,10],[11,10],[650,10],[297,10],[154,10],[179,10],[938,10],[399,10],[232,10],[524,10],[362,10],[640,10],[558,10],[168,10],[684,10],[834,10],[477,10],[303,10],[161,10],[568,10],[110,10],[793,10],[310,10],[189,10],[604,10],[633,10],[557,10],[17,10],[470,10],[21,10],[492,10],[555,10],[828,10],[254,10],[780,10],[457,10],[1016,10],[997,10],[61,10],[571,10],[297,10],[578,10],[775,10],[630,10],[483,10],[623,10],[965,10],[983,10],[967,10],[460,10],[447,10],[599,10],[360,10],[548,10],[975,10],[697,10],[993,10],[18,10],[881,10],[295,10],[864,10],[296,10],[510,10],[200,10],[541,10],[269,10],[1012,10],[438,10],[889,10],[148,10],[319,10],[632,10],[103,10],[822,10],[156,10],[974,10],[727,10],[811,10],[136,10],[719,10],[805,10],[482,10],[526,10],[976,10],[18,10],[111,10],[858,10],[200,10],[351,10],[69,10],[69,10],[249,10],[22,10],[484,10],[860,10],[740,10],[230,10],[713,10],[578,10],[609,10],[498,10],[60,10],[80,10],[76,10],[754,10],[842,10],[497,10],[127,10],[189,10],[968,10],[151,10],[558,10],[923,10],[101,10],[242,10],[266,10],[538,10],[444,10],[687,10],[33,10],[350,10],[839,10],[764,10],[128,10],[192,10],[101,10],[778,10],[601,10],[705,10],[562,10],[787,10],[136,10],[631,10],[738,10],[910,10],[674,10],[248,10],[21,10],[93,10],[13,10],[69,10],[287,10],[1000,10],[407,10],[131,10],[490,10],[861,10],[799,10],[101,10],[247,10],[569,10],[602,10],[457,10],[832,10],[112,10],[317,10],[882,10],[653,10],[547,10],[450,10],[465,10],[76,10],[63,10],[36,10],[143,10],[708,10],[882,10],[56,10],[256,10],[376,10],[846,10],[967,10],[895,10],[9,10],[7,10],[531,10],[909,10],[632,10],[532,10],[461,10],[601,10],[207,10],[233,10],[994,10],[358,10],[955,10],[356,10],[28,10],[235,10],[123,10],[596,10],[468,10],[132,10],[91,10],[813,10],[422,10],[530,10],[451,10],[413,10],[409,10],[416,10],[539,10],[923,10],[618,10],[395,10],[859,10],[287,10],[847,10],[725,10],[1016,10],[567,10],[375,10],[813,10],[272,10],[841,10],[548,10],[1005,10],[136,10],[719,10],[465,10],[998,10],[863,10],[624,10],[625,10],[33,10],[475,10],[348,10],[121,10],[1011,10],[29,10],[358,10],[241,10],[841,10],[980,10],[755,10],[944,10],[651,10],[503,10],[49,10],[847,10],[520,10],[436,10],[758,10],[189,10],[971,10],[909,10],[111,10],[198,10],[453,10],[986,10],[233,10],[763,10],[109,10],[967,10],[614,10],[519,10],[572,10],[1011,10],[46,10],[664,10],[308,10],[748,10],[374,10],[178,10],[812,10],[443,10],[125,10],[682,10],[893,10],[18,10],[775,10],[734,10],[679,10],[387,10],[861,10],[725,10],[435,10],[917,10],[443,10],[781,10],[863,10],[7,10],[278,10],[651,10],[394,10],[875,10],[543,10],[697,10],[177,10],[175,10],[899,10],[358,10],[182,10],[836,10],[269,10],[764,10],[913,10],[761,10],[321,10],[571,10],[707,10],[834,10],[901,10],[510,10],[201,10],[242,10],[963,10],[22,10],[869,10],[159,10],[406,10],[808,10],[918,10],[136,10],[134,10],[798,10],[866,10],[336,10],[1017,10],[842,10],[662,10],[322,10],[436,10],[248,10],[504,10],[452,10],[766,10],[287,10],[297,10],[165,10],[634,10],[478,10],[559,10],[845,10],[309,10],[81,10],[931,10],[825,10],[712,10],[960,10],[508,10],[483,10],[676,10],[172,10],[757,10],[987,10],[411,10],[527,10],[209,10],[611,10],[640,10],[232,10],[668,10],[478,10],[57,10],[696,10],[204,10],[826,10],[253,10],[618,10],[186,10],[373,10],[703,10],[857,10],[246,10],[682,10],[763,10],[146,10],[185,10],[875,10],[370,10],[747,10],[184,10],[886,10],[45,10],[499,10],[823,10],[478,10],[139,10],[368,10],[1011,10],[137,10],[1009,10],[200,10],[204,10],[982,10],[569,10],[335,10],[443,10],[37,10],[902,10],[134,10],[597,10],[1013,10],[982,10],[673,10],[720,10],[297,10],[79,10],[580,10],[372,10],[673,10],[7,10],[909,10],[260,10],[210,10],[152,10],[362,10],[727,10],[93,10],[240,10],[166,10],[70,10],[574,10],[496,10],[145,10],[25,10],[96,10],[118,10],[936,10],[437,10],[314,10],[257,10],[201,10],[987,10],[72,10],[169,10],[1013,10],[318,10],[542,10],[683,10],[21,10],[201,10],[578,10],[803,10],[841,10],[117,10],[705,10],[609,10],[773,10],[710,10],[12,10],[911,10],[232,10],[134,10],[687,10],[921,10],[275,10],[375,10],[163,10],[689,10],[446,10],[68,10],[441,10],[867,10],[349,10],[516,10],[630,10],[905,10],[759,10],[28,10],[773,10],[482,10],[167,10],[486,10],[177,10],[981,10],[729,10],[516,10],[479,10],[142,10],[817,10],[942,10],[838,10],[499,10],[230,10],[378,10],[638,10],[758,10],[733,10],[129,10],[271,10],[708,10],[934,10],[313,10],[727,10],[860,10],[749,10],[698,10],[341,10],[275,10],[930,10],[72,10],[182,10],[649,10],[829,10],[422,10],[130,10],[779,10],[85,10],[871,10],[59,10],[863,10],[755,10],[113,10],[184,10],[495,10],[782,10],[634,10],[855,10],[275,10],[684,10],[235,10],[597,10],[102,10],[622,10],[572,10],[735,10],[455,10],[162,10],[90,10],[893,10],[133,10],[932,10],[35,10],[303,10],[220,10],[489,10],[943,10],[780,10],[921,10],[87,10],[138,10],[447,10],[516,10],[859,10],[32,10],[795,10],[316,10],[709,10],[484,10],[529,10],[501,10],[45,10],[423,10],[493,10],[168,10],[691,10],[347,10],[172,10],[694,10],[232,10],[772,10],[419,10],[14,10],[200,10],[551,10],[193,10],[762,10],[576,10],[885,10],[53,10],[154,10],[554,10],[580,10],[926,10],[904,10],[447,10],[365,10],[720,10],[227,10],[155,10],[547,10],[258,10],[411,10],[615,10],[438,10],[735,10],[955,10],[757,10],[237,10],[398,10],[639,10],[112,10],[838,10],[150,10],[548,10],[472,10],[561,10],[417,10],[883,10],[985,10],[436,10],[752,10],[500,10],[759,10],[170,10],[118,10],[522,10],[527,10],[765,10],[390,10],[402,10],[317,10],[321,10],[338,10],[956,10],[64,10],[410,10],[975,10],[428,10],[269,10],[65,10],[294,10],[982,10],[211,10],[735,10],[805,10],[377,10],[239,10],[443,10],[269,10],[838,10],[628,10],[150,10],[604,10],[28,10],[34,10],[602,10],[506,10],[89,10],[20,10],[623,10],[357,10],[802,10],[938,10],[759,10],[577,10],[131,10],[641,10],[658,10],[364,10],[953,10],[478,10],[660,10],[885,10],[266,10],[823,10],[628,10],[762,10],[61,10],[16,10],[705,10],[465,10],[509,10],[190,10],[567,10],[142,10],[282,10],[148,10],[950,10],[930,10],[281,10],[576,10],[441,10],[685,10],[837,10],[88,10],[322,10],[490,10],[777,10],[309,10],[220,10],[98,10],[354,10],[220,10],[1016,10],[337,10],[631,10],[965,10],[269,10],[358,10],[820,10],[49,10],[373,10],[532,10],[227,10],[497,10],[797,10],[72,10],[901,10],[965,10],[15,10],[490,10],[70,10],[836,10],[176,10],[926,10],[978,10],[627,10],[738,10],[232,10],[261,10],[192,10],[265,10],[905,10],[636,10],[291,10],[805,10],[1,10],[267,10],[949,10],[785,10],[804,10],[90,10],[834,10],[66,10],[714,10],[807,10],[72,10],[646,10],[477,10],[575,10],[788,10],[749,10],[943,10],[847,10],[82,10],[754,10],[604,10],[748,10],[705,10],[254,10],[482,10],[1002,10],[31,10],[10,10],[637,10],[337,10],[753,10],[522,10],[128,10],[578,10],[571,10],[93,10],[786,10],[247,10],[730,10],[184,10],[198,10],[166,10],[270,10],[802,10],[335,10],[405,10],[490,10],[1009,10],[97,10],[336,10],[298,10],[6,10],[405,10],[924,10],[548,10],[462,10],[978,10],[136,10],[729,10],[271,10],[287,10],[293,10],[159,10],[553,10],[859,10],[485,10],[256,10],[442,10],[626,10],[337,10],[435,10],[477,10],[642,10],[176,10],[401,10],[779,10],[187,10],[923,10],[193,10],[948,10],[483,10],[657,10],[415,10],[417,10],[826,10],[774,10],[593,10],[588,10],[81,10],[344,10],[757,10],[144,10],[865,10],[197,10],[627,10],[844,10],[920,10],[18,10],[791,10],[657,10],[162,10],[266,10],[682,10],[456,10],[764,10],[242,10],[968,10],[960,10],[300,10],[556,10],[367,10],[652,10],[653,10],[523,10],[578,10],[95,10],[562,10],[736,10],[435,10],[560,10],[901,10],[529,10],[101,10],[856,10],[633,10],[838,10],[387,10],[273,10],[619,10],[199,10],[309,10],[432,10],[214,10],[360,10],[420,10],[579,10],[996,10],[244,10],[128,10],[431,10],[606,10],[166,10],[588,10],[189,10],[291,10],[344,10],[519,10],[247,10],[622,10],[371,10],[692,10],[174,10],[647,10],[46,10],[635,10],[322,10],[640,10],[570,10],[347,10],[257,10],[464,10],[1002,10],[159,10],[692,10],[42,10],[591,10],[500,10],[657,10],[384,10],[42,10],[58,10],[887,10],[741,10],[617,10],[158,10],[913,10],[136,10],[959,10],[842,10],[263,10],[184,10],[488,10],[235,10],[971,10],[98,10],[878,10],[118,10],[273,10],[744,10],[824,10],[454,10],[653,10],[535,10],[69,10],[664,10],[884,10],[684,10],[913,10],[744,10],[40,10],[692,10],[444,10],[543,10],[456,10],[156,10],[398,10],[832,10],[431,10],[650,10],[136,10],[411,10],[372,10],[329,10],[538,10],[528,10],[897,10],[472,10],[688,10],[962,10],[644,10],[746,10],[98,10],[858,10],[675,10],[325,10],[642,10],[106,10],[96,10],[319,10],[422,10],[877,10],[710,10],[960,10],[1023,10],[790,10],[946,10],[866,10],[865,10],[958,10],[964,10],[606,10],[513,10],[181,10],[387,10],[894,10],[755,10],[455,10],[790,10],[677,10],[964,10],[738,10],[310,10],[649,10],[905,10],[900,10],[514,10],[853,10],[282,10],[478,10],[684,10],[478,10],[783,10],[871,10],[613,10],[786,10],[981,10],[727,10],[6,10],[683,10],[413,10],[216,10],[882,10],[867,10],[952,10],[614,10],[829,10],[346,10],[578,10],[461,10],[316,10],[525,10],[295,10],[159,10],[987,10],[335,10],[162,10],[220,10],[934,10],[506,10],[929,10],[456,10],[59,10],[986,10],[486,10],[191,10],[368,10],[89,10],[166,10],[705,10],[183,10],[35,10],[764,10],[125,10],[44,10],[103,10],[272,10],[338,10],[202,10],[1,10],[296,10],[911,10],[984,10],[642,10],[536,10],[846,10],[678,10],[153,10],[548,10],[750,10],[583,10],[510,10],[647,10],[82,10],[384,10],[911,10],[840,10],[775,10],[908,10],[183,10],[931,10],[432,10],[1023,10],[806,10],[244,10],[9,10],[248,10],[908,10],[891,10],[497,10],[72,10],[714,10],[659,10],[117,10],[663,10],[740,10],[390,10],[480,10],[302,10],[275,10],[89,10],[635,10],[90,10],[165,10],[960,10],[265,10],[54,10],[729,10],[90,10],[907,10],[65,10],[110,10],[358,10],[352,10],[105,10],[621,10],[835,10],[511,10],[170,10],[617,10],[311,10],[446,10],[32,10],[191,10],[614,10],[795,10],[941,10],[968,10],[480,10],[799,10],[884,10],[819,10],[226,10],[816,10],[256,10],[232,10],[335,10],[700,10],[448,10],[613,10],[578,10],[616,10],[714,10],[289,10],[495,10],[999,10],[216,10],[1001,10],[790,10],[947,10],[499,10],[718,10],[353,10],[131,10],[758,10],[787,10],[704,10],[941,10],[335,10],[609,10],[397,10],[320,10],[121,10],[622,10],[416,10],[142,10],[799,10],[669,10],[113,10],[451,10],[276,10],[689,10],[764,10],[126,10],[237,10],[175,10],[532,10],[196,10],[759,10],[795,10],[796,10],[546,10],[845,10],[389,10],[480,10],[408,10],[480,10],[202,10],[1014,10],[740,10],[52,10],[217,10],[260,10],[323,10],[568,10],[49,10],[945,10],[493,10],[476,10],[136,10],[909,10],[912,10],[392,10],[181,10],[654,10],[410,10],[340,10],[988,10],[802,10],[163,10],[904,10],[855,10],[982,10],[362,10],[665,10],[305,10],[288,10],[474,10],[28,10],[1007,10],[692,10],[924,10],[807,10],[32,10],[598,10],[997,10],[687,10],[734,10],[328,10],[259,10],[910,10],[940,10],[670,10],[197,10],[660,10],[953,10],[670,10],[671,10],[191,10],[124,10],[497,10],[64,10],[906,10],[529,10],[279,10],[132,10],[978,10],[418,10],[256,10],[54,10],[751,10],[653,10],[646,10],[855,10],[843,10],[592,10],[864,10],[809,10],[388,10],[218,10],[60,10],[45,10],[208,10],[529,10],[153,10],[488,10],[423,10],[312,10],[735,10],[641,10],[427,10],[854,10],[658,10],[273,10],[374,10],[814,10],[174,10],[262,10],[771,10],[128,10],[763,10],[921,10],[577,10],[993,10],[930,10],[932,10],[46,10],[816,10],[899,10],[862,10],[706,10],[342,10],[823,10],[860,10],[609,10],[814,10],[511,10],[116,10],[201,10],[472,10],[551,10],[821,10],[314,10],[722,10],[908,10],[461,10],[107,10],[329,10],[36,10],[918,10],[37,10],[921,10],[639,10],[941,10],[275,10],[76,10],[743,10],[129,10],[284,10],[108,10],[229,10],[869,10],[230,10],[159,10],[125,10],[760,10],[951,10],[257,10],[750,10],[232,10],[712,10],[308,10],[752,10],[1013,10],[706,10],[361,10],[601,10],[214,10],[629,10],[662,10],[598,10],[691,10],[479,10],[728,10],[282,10],[196,10],[494,10],[626,10],[417,10],[255,10],[294,10],[905,10],[663,10],[900,10],[756,10],[961,10],[257,10],[394,10],[526,10],[633,10],[738,10],[299,10],[227,10],[787,10],[372,10],[321,10],[917,10],[745,10],[795,10],[541,10],[943,10],[489,10],[913,10],[788,10],[736,10],[474,10],[376,10],[467,10],[358,10],[796,10],[779,10],[275,10],[15,10],[785,10],[999,10],[9,10],[102,10],[89,10],[94,10],[905,10],[478,10],[728,10],[753,10],[530,10],[576,10],[633,10],[235,10],[125,10],[105,10],[650,10],[465,10],[979,10],[202,10],[611,10],[225,10],[287,10],[122,10],[555,10],[297,10],[43,10],[608,10],[793,10],[257,10],[614,10],[684,10],[142,10],[173,10],[18,10],[122,10],[375,10],[111,10],[36,10],[348,10],[701,10],[48,10],[325,10],[623,10],[540,10],[445,10],[138,10],[903,10],[491,10],[282,10],[272,10],[632,10],[381,10],[289,10],[259,10],[623,10],[839,10],[695,10],[53,10],[556,10],[441,10],[864,10],[797,10],[12,10],[102,10],[339,10],[263,10],[69,10],[204,10],[763,10],[797,10],[129,10],[991,10],[697,10],[177,10],[548,10],[623,10],[304,10],[947,10],[811,10],[572,10],[252,10],[526,10],[501,10],[183,10],[31,10],[486,10],[729,10],[792,10],[526,10],[891,10],[628,10],[785,10],[290,10],[518,10],[144,10],[257,10],[506,10],[599,10],[700,10],[158,10],[367,10],[136,10],[735,10],[613,10],[190,10],[213,10],[178,10],[299,10],[183,10],[844,10],[74,10],[467,10],[630,10],[360,10],[595,10],[259,10],[960,10],[551,10],[280,10],[178,10],[420,10],[408,10],[63,10],[932,10],[45,10],[816,10],[656,10],[149,10],[727,10],[408,10],[614,10],[765,10],[489,10],[526,10],[549,10],[665,10],[696,10],[798,10],[11,10],[574,10],[586,10],[349,10],[728,10],[984,10],[362,10],[143,10],[679,10],[695,10],[401,10],[173,10],[362,10],[656,10],[808,10],[259,10],[320,10],[671,10],[77,10],[795,10],[538,10],[256,10],[315,10],[610,10],[468,10],[301,10],[257,10],[991,10],[767,10],[90,10],[68,10],[26,10],[82,10],[491,10],[971,10],[21,10],[38,10],[502,10],[409,10],[74,10],[918,10],[471,10],[1002,10],[766,10],[833,10],[826,10],[864,10],[351,10],[307,10],[309,10],[264,10],[1010,10],[355,10],[487,10],[139,10],[155,10],[726,10],[944,10],[94,10],[925,10],[569,10],[445,10],[502,10],[548,10],[246,10],[890,10],[988,10],[7,10],[555,10],[943,10],[666,10],[281,10],[521,10],[106,10],[14,10],[591,10],[966,10],[437,10],[288,10],[460,10],[794,10],[872,10],[287,10],[930,10],[302,10],[679,10],[926,10],[819,10],[179,10],[250,10],[916,10],[1,10],[1021,10],[673,10],[934,10],[899,10],[424,10],[668,10],[610,10],[8,10],[219,10],[618,10],[853,10],[350,10],[82,10],[484,10],[74,10],[607,10],[940,10],[92,10],[512,10],[801,10],[995,10],[648,10],[984,10],[222,10],[398,10],[744,10],[581,10],[429,10],[292,10],[788,10],[547,10],[600,10],[962,10],[11,10],[710,10],[59,10],[167,10],[91,10],[269,10],[12,10],[744,10],[837,10],[396,10],[573,10],[538,10],[810,10],[944,10],[676,10],[392,10],[445,10],[554,10],[938,10],[292,10],[627,10],[21,10],[397,10],[112,10],[43,10],[452,10],[580,10],[820,10],[504,10],[461,10],[312,10],[55,10],[572,10],[89,10],[760,10],[756,10],[875,10],[93,10],[866,10],[120,10],[836,10],[401,10],[331,10],[186,10],[633,10],[791,10],[237,10],[365,10],[906,10],[810,10],[488,10],[825,10],[654,10],[802,10],[398,10],[489,10],[95,10],[744,10],[666,10],[804,10],[240,10],[1023,10],[472,10],[737,10],[836,10],[247,10],[182,10],[352,10],[468,10],[661,10],[578,10],[162,10],[928,10],[975,10],[718,10],[24,10],[223,10],[510,10],[28,10],[501,10],[61,10],[503,10],[904,10],[13,10],[831,10],[847,10],[453,10],[573,10],[719,10],[742,10],[588,10],[843,10],[383,10],[355,10],[233,10],[1002,10],[872,10],[327,10],[912,10],[240,10],[901,10],[556,10],[660,10],[553,10],[82,10],[449,10],[210,10],[895,10],[961,10],[16,10],[1011,10],[432,10],[594,10],[696,10],[99,10],[631,10],[95,10],[238,10],[718,10],[59,10],[466,10],[304,10],[976,10],[463,10],[737,10],[867,10],[686,10],[447,10],[351,10],[441,10],[963,10],[371,10],[212,10],[553,10],[358,10],[213,10],[452,10],[824,10],[359,10],[361,10],[321,10],[93,10],[400,10],[972,10],[698,10],[942,10],[983,10],[354,10],[341,10],[386,10],[353,10],[610,10],[611,10],[690,10],[342,10],[456,10],[355,10],[183,10],[959,10],[1000,10],[946,10],[785,10],[460,10],[709,10],[222,10],[356,10],[596,10],[198,10],[144,10],[848,10],[729,10],[330,10],[635,10],[972,10],[143,10],[659,10],[115,10],[954,10],[724,10],[275,10],[166,10],[439,10],[815,10],[425,10],[614,10],[281,10],[183,10],[882,10],[718,10],[698,10],[812,10],[105,10],[366,10],[211,10],[69,10],[930,10],[167,10],[966,10],[527,10],[467,10],[909,10],[332,10],[849,10],[503,10],[882,10],[50,10],[737,10],[558,10],[131,10],[8,10],[153,10],[466,10],[136,10],[477,10],[22,10],[457,10],[417,10],[791,10],[724,10],[811,10],[211,10],[454,10],[279,10],[614,10],[272,10],[182,10],[396,10],[712,10],[566,10],[860,10],[88,10],[335,10],[847,10],[72,10],[921,10],[824,10],[571,10],[356,10],[84,10],[28,10],[150,10],[544,10],[426,10],[996,10],[642,10],[518,10],[524,10],[997,10],[322,10],[56,10],[93,10],[824,10],[136,10],[789,10],[248,10],[419,10],[366,10],[152,10],[913,10],[363,10],[535,10],[943,10],[841,10],[771,10],[272,10],[338,10],[11,10],[585,10],[776,10],[278,10],[173,10],[736,10],[503,10],[431,10],[341,10],[38,10],[751,10],[434,10],[720,10],[991,10],[485,10],[116,10],[563,10],[317,10],[625,10],[646,10],[27,10],[182,10],[277,10],[465,10],[990,10],[452,10],[716,10],[952,10],[701,10],[933,10],[332,10],[1000,10],[6,10],[446,10],[492,10],[183,10],[833,10],[577,10],[704,10],[398,10],[443,10],[526,10],[74,10],[136,10],[697,10],[196,10],[725,10],[809,10],[985,10],[408,10],[221,10],[148,10],[242,10],[373,10],[53,10],[799,10],[666,10],[685,10],[706,10],[947,10],[95,10],[62,10],[737,10],[602,10],[687,10],[989,10],[522,10],[690,10],[512,10],[909,10],[39,10],[720,10],[30,10],[667,10],[464,10],[943,10],[34,10],[906,10],[257,10],[380,10],[96,10],[586,10],[1021,10],[330,10],[881,10],[32,10],[807,10],[1006,10],[611,10],[1009,10],[687,10],[495,10],[80,10],[48,10],[335,10],[834,10],[607,10],[73,10],[657,10],[972,10],[1019,10],[271,10],[385,10],[182,10],[645,10],[692,10],[790,10],[307,10],[907,10],[931,10],[292,10],[899,10],[837,10],[37,10],[354,10],[423,10],[354,10],[297,10],[515,10],[427,10],[252,10],[9,10],[233,10],[549,10],[357,10],[644,10],[669,10],[547,10],[639,10],[510,10],[1022,10],[560,10],[142,10],[240,10],[188,10],[229,10],[1007,10],[921,10],[964,10],[825,10],[225,10],[458,10],[642,10],[503,10],[673,10],[369,10],[152,10],[843,10],[425,10],[396,10],[677,10],[502,10],[998,10],[998,10],[995,10],[761,10],[431,10],[880,10],[668,10],[711,10],[275,10],[867,10],[589,10],[978,10],[506,10],[63,10],[14,10],[736,10],[81,10],[930,10],[286,10],[766,10],[137,10],[965,10],[830,10],[362,10],[482,10],[948,10],[244,10],[871,10],[204,10],[365,10],[688,10],[798,10],[962,10],[774,10],[663,10],[985,10],[123,10],[475,10],[631,10],[318,10],[751,10],[470,10],[830,10],[759,10],[788,10],[238,10],[66,10],[217,10],[665,10],[546,10],[716,10],[937,10],[976,10],[656,10],[333,10],[444,10],[788,10],[505,10],[857,10],[55,10],[385,10],[185,10],[121,10],[1021,10],[196,10],[633,10],[362,10],[54,10],[879,10],[151,10],[785,10],[754,10],[1005,10],[930,10],[212,10],[852,10],[884,10],[598,10],[840,10],[287,10],[72,10],[134,10],[612,10],[695,10],[733,10],[51,10],[152,10],[678,10],[703,10],[578,10],[629,10],[273,10],[583,10],[216,10],[195,10],[201,10],[708,10],[598,10],[781,10],[331,10],[124,10],[210,10],[443,10],[428,10],[102,10],[50,10],[548,10],[917,10],[302,10],[245,10],[248,10],[105,10],[27,10],[12,10],[753,10],[1004,10],[278,10],[376,10],[272,10],[851,10],[652,10],[268,10],[237,10],[770,10],[704,10],[39,10],[25,10],[626,10],[784,10],[521,10],[817,10],[420,10],[364,10],[326,10],[518,10],[186,10],[897,10],[128,10],[968,10],[716,10],[740,10],[644,10],[387,10],[260,10],[346,10],[27,10],[879,10],[173,10],[815,10],[282,10],[937,10],[25,10],[578,10],[344,10],[367,10],[1009,10],[676,10],[734,10],[932,10],[939,10],[563,10],[923,10],[478,10],[925,10],[178,10],[981,10],[260,10],[710,10],[985,10],[761,10],[9,10],[422,10],[961,10],[809,10],[998,10],[142,10],[192,10],[454,10],[397,10],[90,10],[511,10],[107,10],[844,10],[501,10],[975,10],[761,10],[357,10],[719,10],[430,10],[294,10],[689,10],[919,10],[901,10],[463,10],[484,10],[165,10],[692,10],[512,10],[840,10],[590,10],[307,10],[961,10],[720,10],[566,10],[955,10],[346,10],[302,10],[218,10],[771,10],[720,10],[105,10],[916,10],[346,10],[420,10],[12,10],[461,10],[873,10],[322,10],[918,10],[462,10],[672,10],[85,10],[861,10],[234,10],[941,10],[304,10],[705,10],[572,10],[1001,10],[545,10],[960,10],[240,10],[335,10],[826,10],[931,10],[191,10],[534,10],[975,10],[638,10],[649,10],[416,10],[907,10],[347,10],[748,10],[759,10],[171,10],[103,10],[633,10],[330,10],[582,10],[284,10],[391,10],[847,10],[476,10],[992,10],[79,10],[399,10],[237,10],[196,10],[281,10],[769,10],[278,10],[673,10],[618,10],[332,10],[296,10],[674,10],[842,10],[798,10],[233,10],[187,10],[441,10],[103,10],[948,10],[113,10],[405,10],[199,10],[432,10],[934,10],[147,10],[961,10],[560,10],[619,10],[909,10],[967,10],[44,10],[427,10],[367,10],[272,10],[325,10],[599,10],[620,10],[146,10],[883,10],[419,10],[367,10],[38,10],[26,10],[842,10],[685,10],[750,10],[793,10],[169,10],[188,10],[785,10],[432,10],[898,10],[850,10],[477,10],[81,10],[931,10],[321,10],[210,10],[946,10],[153,10],[196,10],[418,10],[53,10],[653,10],[197,10],[902,10],[640,10],[9,10],[49,10],[436,10],[258,10],[357,10],[155,10],[272,10],[539,10],[940,10],[841,10],[802,10],[967,10],[750,10],[524,10],[613,10],[25,10],[393,10],[587,10],[222,10],[685,10],[93,10],[958,10],[925,10],[731,10],[751,10],[885,10],[588,10],[951,10],[238,10],[620,10],[412,10],[133,10],[892,10],[359,10],[975,10],[486,10],[440,10],[696,10],[393,10],[599,10],[521,10],[466,10],[538,10],[458,10],[490,10],[249,10],[495,10],[180,10],[12,10],[898,10],[934,10],[847,10],[815,10],[834,10],[380,10],[42,10],[807,10],[400,10],[115,10],[24,10],[923,10],[37,10],[208,10],[164,10],[4,10],[563,10],[994,10],[716,10],[149,10],[236,10],[561,10],[856,10],[429,10],[894,10],[679,10],[279,10],[664,10],[603,10],[735,10],[515,10],[272,10],[643,10],[327,10],[909,10],[187,10],[475,10],[63,10],[825,10],[336,10],[204,10],[910,10],[379,10],[267,10],[746,10],[604,10],[162,10],[862,10],[185,10],[931,10],[929,10],[208,10],[187,10],[426,10],[534,10],[937,10],[30,10],[219,10],[612,10],[566,10],[984,10],[243,10],[94,10],[560,10],[1013,10],[695,10],[290,10],[626,10],[205,10],[535,10],[148,10],[1005,10],[648,10],[436,10],[817,10],[69,10],[624,10],[302,10],[950,10],[179,10],[56,10],[73,10],[598,10],[836,10],[383,10],[871,10],[209,10],[1007,10],[527,10],[96,10],[496,10],[865,10],[689,10],[946,10],[676,10],[926,10],[192,10],[393,10],[647,10],[620,10],[552,10],[282,10],[218,10],[611,10],[841,10],[968,10],[332,10],[938,10],[649,10],[274,10],[670,10],[272,10],[982,10],[1007,10],[882,10],[412,10],[286,10],[871,10],[987,10],[910,10],[276,10],[548,10],[568,10],[513,10],[44,10],[27,10],[562,10],[190,10],[345,10],[785,10],[1022,10],[838,10],[693,10],[26,10],[320,10],[835,10],[312,10],[933,10],[340,10],[707,10],[442,10],[50,10],[212,10],[882,10],[54,10],[585,10],[769,10],[435,10],[326,10],[411,10],[634,10],[507,10],[706,10],[425,10],[277,10],[354,10],[805,10],[610,10],[338,10],[247,10],[383,10],[554,10],[422,10],[701,10],[181,10],[767,10],[755,10],[551,10],[805,10],[906,10],[769,10],[828,10],[741,10],[756,10],[523,10],[429,10],[851,10],[1004,10],[679,10],[103,10],[419,10],[18,10],[896,10],[829,10],[309,10],[517,10],[778,10],[685,10],[114,10],[159,10],[906,10],[850,10],[904,10],[562,10],[519,10],[773,10],[113,10],[862,10],[866,10],[270,10],[450,10],[866,10],[687,10],[1016,10],[514,10],[427,10],[553,10],[687,10],[808,10],[338,10],[128,10],[77,10],[584,10],[229,10],[298,10],[182,10],[417,10],[416,10],[420,10],[948,10],[399,10],[388,10],[613,10],[595,10],[653,10],[95,10],[409,10],[681,10],[472,10],[696,10],[187,10],[920,10],[1008,10],[293,10],[951,10],[178,10],[633,10],[898,10],[174,10],[825,10],[287,10],[477,10],[44,10],[74,10],[701,10],[113,10],[741,10],[850,10],[332,10],[792,10],[656,10],[293,10],[848,10],[153,10],[711,10],[459,10],[919,10],[454,10],[15,10],[24,10],[276,10],[888,10],[707,10],[293,10],[595,10],[964,10],[358,10],[377,10],[808,10],[249,10],[1014,10],[348,10],[165,10],[590,10],[167,10],[600,10],[882,10],[368,10],[510,10],[1004,10],[553,10],[65,10],[212,10],[30,10],[873,10],[506,10],[736,10],[709,10],[814,10],[176,10],[428,10],[554,10],[929,10],[872,10],[63,10],[457,10],[450,10],[25,10],[579,10],[2,10],[682,10],[203,10],[245,10],[461,10],[306,10],[264,10],[973,10],[715,10],[364,10],[134,10],[297,10],[924,10],[8,10],[213,10],[472,10],[386,10],[114,10],[225,10],[996,10],[909,10],[462,10],[866,10],[320,10],[50,10],[15,10],[191,10],[392,10],[62,10],[882,10],[451,10],[330,10],[590,10],[710,10],[757,10],[946,10],[114,10],[292,10],[630,10],[587,10],[291,10],[518,10],[809,10],[57,10],[523,10],[675,10],[152,10],[853,10],[443,10],[711,10],[295,10],[575,10],[379,10],[90,10],[532,10],[981,10],[597,10],[287,10],[1021,10],[744,10],[328,10],[833,10],[906,10],[763,10],[167,10],[475,10],[676,10],[992,10],[38,10],[384,10],[410,10],[180,10],[691,10],[705,10],[311,10],[119,10],[972,10],[302,10],[65,10],[651,10],[38,10],[520,10],[463,10],[789,10],[769,10],[23,10],[799,10],[803,10],[625,10],[450,10],[412,10],[221,10],[860,10],[22,10],[838,10],[838,10],[573,10],[286,10],[597,10],[200,10],[505,10],[694,10],[555,10],[450,10],[240,10],[582,10],[641,10],[384,10],[390,10],[730,10],[518,10],[491,10],[820,10],[765,10],[505,10],[542,10],[464,10],[370,10],[55,10],[274,10],[165,10],[96,10],[767,10],[612,10],[531,10],[104,10],[996,10],[561,10],[910,10],[996,10],[406,10],[981,10],[886,10],[477,10],[759,10],[235,10],[126,10],[57,10],[12,10],[304,10],[836,10],[497,10],[405,10],[728,10],[500,10],[712,10],[926,10],[361,10],[932,10],[376,10],[1002,10],[520,10],[276,10],[846,10],[550,10],[293,10],[992,10],[923,10],[821,10],[264,10],[519,10],[747,10],[418,10],[750,10],[820,10],[541,10],[1008,10],[619,10],[267,10],[363,10],[605,10],[580,10],[237,10],[431,10],[176,10],[125,10],[270,10],[48,10],[739,10],[762,10],[565,10],[689,10],[809,10],[717,10],[652,10],[748,10],[999,10],[305,10],[779,10],[169,10],[447,10],[229,10],[454,10],[482,10],[1022,10],[83,10],[657,10],[806,10],[573,10],[117,10],[211,10],[274,10],[35,10],[599,10],[876,10],[904,10],[256,10],[517,10],[579,10],[200,10],[15,10],[309,10],[671,10],[222,10],[116,10],[640,10],[692,10],[792,10],[772,10],[716,10],[115,10],[83,10],[705,10],[772,10],[553,10],[330,10],[857,10],[268,10],[806,10],[357,10],[93,10],[563,10],[431,10],[944,10],[576,10],[163,10],[100,10],[344,10],[341,10],[106,10],[893,10],[905,10],[865,10],[451,10],[106,10],[683,10],[730,10],[114,10],[662,10],[737,10],[387,10],[10,10],[186,10],[511,10],[603,10],[657,10],[113,10],[951,10],[236,10],[82,10],[746,10],[398,10],[441,10],[131,10],[269,10],[572,10],[743,10],[487,10],[155,10],[782,10],[568,10],[557,10],[809,10],[275,10],[850,10],[129,10],[457,10],[509,10],[233,10],[386,10],[511,10],[175,10],[659,10],[108,10],[335,10],[173,10],[379,10],[824,10],[792,10],[622,10],[918,10],[699,10],[131,10],[1006,10],[490,10],[84,10],[220,10],[135,10],[760,10],[16,10],[353,10],[769,10],[5,10],[876,10],[899,10],[680,10],[475,10],[423,10],[571,10],[686,10],[827,10],[420,10],[107,10],[986,10],[1000,10],[365,10],[770,10],[605,10],[819,10],[538,10],[705,10],[878,10],[284,10],[198,10],[597,10],[20,10],[738,10],[260,10],[423,10],[429,10],[878,10],[605,10],[866,10],[241,10],[61,10],[734,10],[287,10],[784,10],[329,10],[618,10],[579,10],[665,10],[495,10],[262,10],[731,10],[144,10],[192,10],[19,10],[91,10],[482,10],[633,10],[393,10],[57,10],[491,10],[338,10],[527,10],[461,10],[185,10],[451,10],[612,10],[254,10],[516,10],[845,10],[555,10],[767,10],[1015,10],[199,10],[482,10],[600,10],[433,10],[783,10],[628,10],[224,10],[170,10],[794,10],[292,10],[773,10],[923,10],[415,10],[423,10],[278,10],[724,10],[949,10],[358,10],[109,10],[420,10],[775,10],[7,10],[535,10],[479,10],[256,10],[20,10],[580,10],[579,10],[151,10],[89,10],[581,10],[114,10],[435,10],[423,10],[740,10],[595,10],[684,10],[259,10],[61,10],[356,10],[704,10],[234,10],[334,10],[30,10],[563,10],[902,10],[14,10],[635,10],[772,10],[574,10],[537,10],[341,10],[942,10],[395,10],[765,10],[567,10],[450,10],[289,10],[983,10],[94,10],[761,10],[641,10],[263,10],[848,10],[654,10],[163,10],[188,10],[642,10],[638,10],[653,10],[570,10],[78,10],[787,10],[33,10],[195,10],[329,10],[844,10],[392,10],[356,10],[796,10],[434,10],[677,10],[389,10],[81,10],[238,10],[332,10],[563,10],[184,10],[238,10],[831,10],[836,10],[794,10],[339,10],[206,10],[417,10],[470,10],[214,10],[139,10],[333,10],[882,10],[845,10],[808,10],[667,10],[148,10],[12,10],[621,10],[130,10],[225,10],[735,10],[784,10],[959,10],[898,10],[484,10],[515,10],[976,10],[826,10],[272,10],[547,10],[734,10],[793,10],[638,10],[570,10],[207,10],[116,10],[987,10],[777,10],[82,10],[831,10],[914,10],[268,10],[429,10],[536,10],[330,10],[332,10],[390,10],[570,10],[229,10],[810,10],[804,10],[752,10],[500,10],[698,10],[102,10],[416,10],[618,10],[360,10],[832,10],[571,10],[166,10],[783,10],[375,10],[560,10],[296,10],[466,10],[295,10],[653,10],[263,10],[341,10],[503,10],[351,10],[118,10],[583,10],[388,10],[971,10],[87,10],[616,10],[590,10],[989,10],[599,10],[52,10],[496,10],[34,10],[726,10],[630,10],[338,10],[169,10],[212,10],[706,10],[297,10],[748,10],[335,10],[162,10],[560,10],[115,10],[937,10],[661,10],[941,10],[1004,10],[568,10],[738,10],[725,10],[940,10],[835,10],[395,10],[569,10],[355,10],[619,10],[317,10],[1019,10],[457,10],[865,10],[840,10],[624,10],[919,10],[409,10],[497,10],[462,10],[870,10],[661,10],[998,10],[365,10],[138,10],[643,10],[912,10],[658,10],[634,10],[950,10],[187,10],[331,10],[217,10],[693,10],[726,10],[503,10],[70,10],[534,10],[342,10],[47,10],[313,10],[444,10],[811,10],[548,10],[894,10],[673,10],[376,10],[934,10],[207,10],[928,10],[928,10],[749,10],[906,10],[606,10],[613,10],[980,10],[789,10],[1022,10],[546,10],[695,10],[637,10],[207,10],[666,10],[985,10],[766,10],[94,10],[656,10],[245,10],[148,10],[744,10],[684,10],[150,10],[311,10],[565,10],[936,10],[669,10],[122,10],[281,10],[968,10],[102,10],[648,10],[869,10],[990,10],[20,10],[550,10],[737,10],[814,10],[18,10],[351,10],[451,10],[494,10],[139,10],[999,10],[248,10],[398,10],[292,10],[717,10],[26,10],[682,10],[21,10],[692,10],[309,10],[881,10],[223,10],[496,10],[209,10],[1012,10],[957,10],[821,10],[409,10],[380,10],[312,10],[413,10],[62,10],[891,10],[878,10],[779,10],[320,10],[407,10],[44,10],[272,10],[806,10],[475,10],[730,10],[148,10],[965,10],[662,10],[151,10],[115,10],[883,10],[439,10],[125,10],[885,10],[639,10],[78,10],[379,10],[751,10],[184,10],[571,10],[129,10],[717,10],[462,10],[705,10],[299,10],[955,10],[532,10],[941,10],[368,10],[850,10],[211,10],[542,10],[449,10],[752,10],[501,10],[423,10],[307,10],[316,10],[145,10],[327,10],[480,10],[881,10],[809,10],[68,10],[879,10],[667,10],[118,10],[472,10],[504,10],[869,10],[637,10],[81,10],[908,10],[378,10],[133,10],[42,10],[779,10],[959,10],[829,10],[348,10],[157,10],[540,10],[54,10],[603,10],[60,10],[678,10],[443,10],[372,10],[782,10],[924,10],[795,10],[207,10],[143,10],[213,10],[514,10],[835,10],[655,10],[866,10],[516,10],[430,10],[459,10],[556,10],[168,10],[687,10],[543,10],[808,10],[276,10],[802,10],[132,10],[833,10],[472,10],[821,10],[906,10],[765,10],[15,10],[249,10],[568,10],[865,10],[729,10],[773,10],[619,10],[18,10],[133,10],[567,10],[345,10],[283,10],[67,10],[303,10],[348,10],[730,10],[262,10],[246,10],[813,10],[318,10],[444,10],[915,10],[805,10],[935,10],[500,10],[553,10],[903,10],[865,10],[70,10],[283,10],[859,10],[822,10],[489,10],[1019,10],[705,10],[25,10],[827,10],[811,10],[859,10],[815,10],[422,10],[735,10],[824,10],[996,10],[160,10],[88,10],[31,10],[154,10],[183,10],[215,10],[121,10],[923,10],[944,10],[725,10],[20,10],[501,10],[673,10],[662,10],[22,10],[693,10],[70,10],[928,10],[464,10],[814,10],[535,10],[941,10],[206,10],[412,10],[370,10],[486,10],[604,10],[535,10],[679,10],[509,10],[3,10],[469,10],[960,10],[32,10],[124,10],[595,10],[766,10],[748,10],[801,10],[431,10],[490,10],[580,10],[261,10],[341,10],[364,10],[502,10],[14,10],[132,10],[391,10],[777,10],[359,10],[34,10],[391,10],[1006,10],[241,10],[649,10],[94,10],[491,10],[748,10],[66,10],[523,10],[921,10],[511,10],[1008,10],[599,10],[678,10],[418,10],[862,10],[315,10],[790,10],[503,10],[994,10],[230,10],[201,10],[365,10],[556,10],[272,10],[423,10],[579,10],[952,10],[995,10],[900,10],[578,10],[1010,10],[882,10],[276,10],[256,10],[781,10],[331,10],[346,10],[55,10],[124,10],[669,10],[259,10],[703,10],[746,10],[920,10],[236,10],[778,10],[939,10],[766,10],[50,10],[407,10],[460,10],[88,10],[282,10],[556,10],[151,10],[947,10],[28,10],[322,10],[767,10],[850,10],[115,10],[875,10],[413,10],[841,10],[66,10],[889,10],[1020,10],[211,10],[711,10],[394,10],[790,10],[205,10],[777,10],[978,10],[794,10],[629,10],[733,10],[980,10],[280,10],[266,10],[94,10],[975,10],[708,10],[606,10],[875,10],[70,10],[244,10],[502,10],[392,10],[988,10],[261,10],[416,10],[427,10],[678,10],[724,10],[66,10],[342,10],[854,10],[645,10],[20,10],[263,10],[569,10],[493,10],[989,10],[511,10],[847,10],[364,10],[983,10],[549,10],[976,10],[667,10],[357,10],[607,10],[99,10],[585,10],[484,10],[514,10],[807,10],[799,10],[485,10],[834,10],[490,10],[447,10],[841,10],[745,10],[862,10],[536,10],[913,10],[260,10],[977,10],[279,10],[584,10],[25,10],[623,10],[162,10],[772,10],[921,10],[477,10],[283,10],[289,10],[880,10],[999,10],[699,10],[78,10],[295,10],[269,10],[541,10],[21,10],[227,10],[856,10],[263,10],[973,10],[32,10],[29,10],[805,10],[744,10],[828,10],[1002,10],[968,10],[564,10],[1020,10],[488,10],[323,10],[979,10],[325,10],[645,10],[45,10],[436,10],[332,10],[394,10],[213,10],[715,10],[135,10],[55,10],[96,10],[356,10],[803,10],[541,10],[104,10],[800,10],[68,10],[977,10],[876,10],[937,10],[107,10],[742,10],[271,10],[354,10],[25,10],[105,10],[374,10],[134,10],[26,10],[440,10],[929,10],[351,10],[921,10],[558,10],[20,10],[342,10],[319,10],[454,10],[728,10],[386,10],[383,10],[180,10],[861,10],[799,10],[342,10],[401,10],[962,10],[526,10],[134,10],[732,10],[533,10],[895,10],[295,10],[443,10],[126,10],[81,10],[279,10],[346,10],[15,10],[678,10],[42,10],[925,10],[274,10],[218,10],[682,10],[110,10],[774,10],[205,10],[337,10],[616,10],[424,10],[619,10],[707,10],[292,10],[667,10],[854,10],[547,10],[312,10],[13,10],[707,10],[215,10],[255,10],[827,10],[396,10],[767,10],[837,10],[269,10],[815,10],[952,10],[24,10],[552,10],[830,10],[450,10],[395,10],[476,10],[313,10],[234,10],[594,10],[503,10],[609,10],[382,10],[839,10],[286,10],[991,10],[610,10],[597,10],[572,10],[759,10],[369,10],[161,10],[574,10],[459,10],[187,10],[651,10],[678,10],[357,10],[29,10],[108,10],[588,10],[283,10],[393,10],[181,10],[955,10],[22,10],[159,10],[906,10],[415,10],[178,10],[465,10],[628,10],[234,10],[303,10],[474,10],[692,10],[707,10],[651,10],[163,10],[485,10],[924,10],[384,10],[650,10],[376,10],[120,10],[1014,10],[150,10],[277,10],[941,10],[135,10],[152,10],[911,10],[935,10],[924,10],[152,10],[57,10],[107,10],[133,10],[943,10],[991,10],[987,10],[145,10],[996,10],[878,10],[427,10],[672,10],[149,10],[715,10],[689,10],[834,10],[912,10],[361,10],[242,10],[965,10],[271,10],[107,10],[609,10],[35,10],[608,10],[999,10],[368,10],[12,10],[243,10],[145,10],[398,10],[16,10],[189,10],[384,10],[577,10],[487,10],[488,10],[351,10],[668,10],[228,10],[938,10],[590,10],[602,10],[700,10],[733,10],[867,10],[953,10],[771,10],[687,10],[606,10],[432,10],[640,10],[216,10],[1005,10],[347,10],[318,10],[158,10],[84,10],[136,10],[255,10],[192,10],[887,10],[825,10],[256,10],[268,10],[627,10],[413,10],[736,10],[934,10],[433,10],[746,10],[646,10],[440,10],[926,10],[680,10],[292,10],[498,10],[485,10],[929,10],[165,10],[557,10],[975,10],[961,10],[30,10],[16,10],[144,10],[177,10],[674,10],[64,10],[280,10],[348,10],[638,10],[515,10],[1010,10],[618,10],[742,10],[83,10],[392,10],[722,10],[4,10],[353,10],[147,10],[803,10],[177,10],[398,10],[189,10],[276,10],[812,10],[903,10],[905,10],[871,10],[714,10],[952,10],[409,10],[870,10],[693,10],[871,10],[199,10],[474,10],[207,10],[593,10],[324,10],[831,10],[79,10],[919,10],[899,10],[603,10],[779,10],[899,10],[286,10],[74,10],[904,10],[708,10],[164,10],[590,10],[510,10],[295,10],[389,10],[414,10],[842,10],[324,10],[926,10],[911,10],[187,10],[481,10],[387,10],[907,10],[515,10],[850,10],[100,10],[17,10],[480,10],[117,10],[226,10],[432,10],[270,10],[751,10],[785,10],[464,10],[965,10],[236,10],[546,10],[148,10],[324,10],[275,10],[752,10],[667,10],[489,10],[899,10],[516,10],[510,10],[570,10],[125,10],[960,10],[751,10],[281,10],[537,10],[136,10],[844,10],[934,10],[722,10],[710,10],[778,10],[823,10],[615,10],[740,10],[397,10],[861,10],[870,10],[587,10],[999,10],[598,10],[524,10],[942,10],[324,10],[115,10],[601,10],[390,10],[39,10],[606,10],[1015,10],[60,10],[819,10],[262,10],[219,10],[870,10],[655,10],[718,10],[785,10],[103,10],[761,10],[4,10],[106,10],[753,10],[106,10],[510,10],[904,10],[984,10],[955,10],[66,10],[778,10],[460,10],[588,10],[745,10],[662,10],[561,10],[318,10],[550,10],[334,10],[830,10],[749,10],[214,10],[253,10],[803,10],[463,10],[446,10],[402,10],[496,10],[355,10],[382,10],[222,10],[286,10],[756,10],[998,10],[151,10],[537,10],[733,10],[770,10],[765,10],[961,10],[242,10],[661,10],[725,10],[378,10],[902,10],[561,10],[846,10],[73,10],[345,10],[723,10],[188,10],[107,10],[257,10],[529,10],[722,10],[790,10],[47,10],[2,10],[244,10],[69,10],[5,10],[780,10],[212,10],[72,10],[54,10],[935,10],[511,10],[986,10],[951,10],[550,10],[366,10],[1004,10],[568,10],[896,10],[168,10],[624,10],[272,10],[742,10],[542,10],[667,10],[516,10],[9,10],[685,10],[397,10],[421,10],[607,10],[888,10],[36,10],[940,10],[75,10],[91,10],[296,10],[581,10],[290,10],[940,10],[34,10],[702,10],[920,10],[325,10],[666,10],[802,10],[1017,10],[90,10],[317,10],[330,10],[280,10],[691,10],[966,10],[821,10],[879,10],[1021,10],[199,10],[495,10],[543,10],[207,10],[405,10],[591,10],[73,10],[563,10],[22,10],[402,10],[888,10],[715,10],[831,10],[941,10],[835,10],[171,10],[882,10],[705,10],[341,10],[125,10],[628,10],[481,10],[813,10],[85,10],[559,10],[771,10],[700,10],[150,10],[265,10],[78,10],[199,10],[894,10],[355,10],[624,10],[376,10],[868,10],[84,10],[248,10],[641,10],[910,10],[961,10],[578,10],[247,10],[819,10],[426,10],[970,10],[498,10],[173,10],[890,10],[271,10],[529,10],[537,10],[796,10],[341,10],[830,10],[489,10],[382,10],[830,10],[924,10],[812,10],[140,10],[916,10],[127,10],[494,10],[668,10],[733,10],[981,10],[196,10],[68,10],[583,10],[20,10],[125,10],[891,10],[978,10],[664,10],[1000,10],[29,10],[46,10],[612,10],[525,10],[898,10],[706,10],[334,10],[754,10],[249,10],[270,10],[536,10],[869,10],[763,10],[215,10],[154,10],[257,10],[48,10],[32,10],[101,10],[980,10],[222,10],[573,10],[216,10],[688,10],[172,10],[153,10],[1019,10],[878,10],[635,10],[255,10],[204,10],[1014,10],[99,10],[419,10],[534,10],[66,10],[232,10],[311,10],[975,10],[116,10],[138,10],[197,10],[281,10],[340,10],[326,10],[164,10],[286,10],[651,10],[77,10],[640,10],[735,10],[155,10],[718,10],[413,10],[37,10],[170,10],[801,10],[303,10],[368,10],[601,10],[397,10],[438,10],[28,10],[670,10],[412,10],[76,10],[801,10],[764,10],[360,10],[893,10],[187,10],[549,10],[490,10],[752,10],[658,10],[456,10],[545,10],[544,10],[950,10],[280,10],[813,10],[517,10],[422,10],[259,10],[235,10],[775,10],[142,10],[468,10],[572,10],[559,10],[948,10],[564,10],[477,10],[515,10],[748,10],[880,10],[42,10],[339,10],[811,10],[748,10],[891,10],[493,10],[768,10],[400,10],[920,10],[315,10],[490,10],[975,10],[311,10],[1013,10],[971,10],[104,10],[81,10],[381,10],[186,10],[982,10],[12,10],[945,10],[188,10],[950,10],[727,10],[964,10],[1011,10],[750,10],[77,10],[403,10],[726,10],[161,10],[480,10],[632,10],[536,10],[854,10],[955,10],[306,10],[386,10],[1002,10],[517,10],[74,10],[478,10],[646,10],[751,10],[33,10],[709,10],[923,10],[465,10],[184,10],[634,10],[784,10],[362,10],[965,10],[781,10],[809,10],[178,10],[355,10],[238,10],[815,10],[417,10],[982,10],[391,10],[534,10],[66,10],[736,10],[550,10],[932,10],[175,10],[222,10],[282,10],[742,10],[303,10],[540,10],[199,10],[622,10],[292,10],[270,10],[567,10],[938,10],[916,10],[492,10],[229,10],[45,10],[635,10],[58,10],[225,10],[135,10],[626,10],[894,10],[56,10],[871,10],[579,10],[583,10],[637,10],[802,10],[477,10],[751,10],[898,10],[502,10],[610,10],[335,10],[786,10],[583,10],[54,10],[1000,10],[877,10],[5,10],[714,10],[433,10],[531,10],[700,10],[1014,10],[947,10],[920,10],[338,10],[239,10],[851,10],[157,10],[68,10],[716,10],[791,10],[244,10],[386,10],[599,10],[212,10],[842,10],[396,10],[683,10],[387,10],[183,10],[656,10],[81,10],[20,10],[370,10],[312,10],[74,10],[58,10],[286,10],[762,10],[742,10],[360,10],[674,10],[520,10],[880,10],[597,10],[218,10],[717,10],[909,10],[58,10],[36,10],[496,10],[573,10],[193,10],[177,10],[74,10],[485,10],[809,10],[64,10],[941,10],[159,10],[75,10],[445,10],[113,10],[730,10],[649,10],[829,10],[970,10],[844,10],[834,10],[710,10],[918,10],[884,10],[62,10],[256,10],[682,10],[662,10],[877,10],[658,10],[462,10],[940,10],[653,10],[773,10],[675,10],[391,10],[709,10],[805,10],[830,10],[612,10],[359,10],[760,10],[964,10],[334,10],[575,10],[962,10],[39,10],[847,10],[532,10],[271,10],[695,10],[623,10],[628,10],[145,10],[390,10],[379,10],[532,10],[245,10],[73,10],[603,10],[287,10],[938,10],[567,10],[891,10],[392,10],[104,10],[594,10],[1014,10],[82,10],[473,10],[847,10],[48,10],[377,10],[122,10],[532,10],[529,10],[448,10],[537,10],[932,10],[967,10],[524,10],[462,10],[773,10],[357,10],[251,10],[161,10],[629,10],[679,10],[656,10],[918,10],[471,10],[602,10],[221,10],[890,10],[482,10],[371,10],[37,10],[885,10],[280,10],[15,10],[969,10],[467,10],[865,10],[618,10],[503,10],[43,10],[97,10],[804,10],[656,10],[21,10],[654,10],[169,10],[209,10],[205,10],[560,10],[706,10],[124,10],[675,10],[430,10],[493,10],[212,10],[786,10],[342,10],[851,10],[870,10],[374,10],[156,10],[298,10],[922,10],[11,10],[560,10],[1003,10],[552,10],[919,10],[1023,10],[856,10],[79,10],[431,10],[696,10],[533,10],[294,10],[974,10],[435,10],[368,10],[156,10],[687,10],[278,10],[552,10],[514,10],[123,10],[489,10],[382,10],[344,10],[482,10],[90,10],[759,10],[820,10],[496,10],[652,10],[230,10],[70,10],[468,10],[978,10],[783,10],[247,10],[126,10],[489,10],[966,10],[417,10],[246,10],[63,10],[8,10],[501,10],[920,10],[688,10],[967,10],[837,10],[621,10],[166,10],[289,10],[986,10],[728,10],[957,10],[573,10],[778,10],[908,10],[784,10],[599,10],[219,10],[326,10],[4,10],[183,10],[718,10],[875,10],[145,10],[616,10],[476,10],[353,10],[1017,10],[541,10],[179,10],[599,10],[877,10],[477,10],[284,10],[670,10],[174,10],[290,10],[518,10],[549,10],[376,10],[1014,10],[235,10],[944,10],[919,10],[97,10],[970,10],[514,10],[445,10],[640,10],[554,10],[717,10],[848,10],[990,10],[759,10],[545,10],[50,10],[918,10],[390,10],[1012,10],[519,10],[517,10],[68,10],[1001,10],[186,10],[882,10],[635,10],[472,10],[742,10],[985,10],[108,10],[464,10],[245,10],[402,10],[641,10],[681,10],[53,10],[217,10],[530,10],[761,10],[966,10],[46,10],[520,10],[855,10],[309,10],[861,10],[1018,10],[999,10],[53,10],[750,10],[502,10],[851,10],[707,10],[76,10],[359,10],[432,10],[907,10],[324,10],[812,10],[885,10],[149,10],[315,10],[574,10],[508,10],[160,10],[954,10],[841,10],[432,10],[603,10],[279,10],[420,10],[110,10],[548,10],[8,10],[219,10],[138,10],[512,10],[131,10],[642,10],[486,10],[959,10],[79,10],[940,10],[728,10],[710,10],[674,10],[767,10],[470,10],[911,10],[751,10],[882,10],[692,10],[478,10],[989,10],[928,10],[185,10],[715,10],[897,10],[822,10],[118,10],[880,10],[507,10],[494,10],[561,10],[675,10],[785,10],[778,10],[423,10],[732,10],[292,10],[109,10],[591,10],[257,10],[405,10],[61,10],[554,10],[47,10],[486,10],[877,10],[900,10],[921,10],[492,10],[819,10],[182,10],[617,10],[622,10],[975,10],[329,10],[332,10],[630,10],[834,10],[579,10],[327,10],[62,10],[129,10],[981,10],[980,10],[49,10],[311,10],[148,10],[93,10],[548,10],[596,10],[479,10],[470,10],[681,10],[81,10],[184,10],[52,10],[741,10],[776,10],[860,10],[415,10],[695,10],[897,10],[713,10],[351,10],[350,10],[718,10],[741,10],[465,10],[732,10],[31,10],[681,10],[400,10],[46,10],[574,10],[489,10],[181,10],[57,10],[718,10],[483,10],[821,10],[903,10],[313,10],[631,10],[305,10],[900,10],[794,10],[961,10],[303,10],[210,10],[241,10],[171,10],[617,10],[655,10],[152,10],[619,10],[894,10],[988,10],[266,10],[63,10],[421,10],[300,10],[561,10],[257,10],[1021,10],[862,10],[826,10],[760,10],[556,10],[1014,10],[859,10],[282,10],[949,10],[446,10],[980,10],[976,10],[951,10],[79,10],[233,10],[690,10],[113,10],[602,10],[504,10],[990,10],[308,10],[998,10],[153,10],[196,10],[579,10],[545,10],[769,10],[83,10],[960,10],[511,10],[550,10],[655,10],[535,10],[792,10],[218,10],[996,10],[838,10],[582,10],[707,10],[512,10],[456,10],[63,10],[271,10],[695,10],[439,10],[192,10],[973,10],[429,10],[811,10],[20,10],[115,10],[653,10],[679,10],[653,10],[392,10],[376,10],[442,10],[991,10],[506,10],[31,10],[239,10],[46,10],[402,10],[262,10],[86,10],[272,10],[304,10],[409,10],[718,10],[602,10],[34,10],[189,10],[529,10],[83,10],[590,10],[560,10],[533,10],[72,10],[564,10],[773,10],[835,10],[223,10],[358,10],[848,10],[739,10],[1013,10],[271,10],[821,10],[410,10],[32,10],[540,10],[186,10],[385,10],[517,10],[943,10],[1003,10],[1006,10],[403,10],[972,10],[41,10],[269,10],[505,10],[743,10],[660,10],[717,10],[624,10],[878,10],[12,10],[271,10],[745,10],[802,10],[701,10],[899,10],[527,10],[676,10],[269,10],[214,10],[495,10],[467,10],[745,10],[236,10],[359,10],[901,10],[646,10],[748,10],[12,10],[76,10],[134,10],[452,10],[733,10],[90,10],[214,10],[30,10],[162,10],[907,10],[670,10],[948,10],[279,10],[439,10],[867,10],[271,10],[689,10],[289,10],[182,10],[550,10],[665,10],[897,10],[278,10],[847,10],[399,10],[1014,10],[535,10],[304,10],[669,10],[867,10],[221,10],[417,10],[364,10],[821,10],[805,10],[284,10],[723,10],[994,10],[607,10],[102,10],[485,10],[30,10],[243,10],[687,10],[158,10],[413,10],[422,10],[124,10],[712,10],[219,10],[601,10],[805,10],[26,10],[955,10],[978,10],[333,10],[452,10],[139,10],[998,10],[529,10],[401,10],[680,10],[301,10],[82,10],[228,10],[122,10],[841,10],[919,10],[226,10],[696,10],[262,10],[742,10],[915,10],[452,10],[122,10],[662,10],[579,10],[546,10],[532,10],[49,10],[117,10],[272,10],[1005,10],[935,10],[987,10],[595,10],[962,10],[518,10],[609,10],[245,10],[906,10],[898,10],[184,10],[558,10],[59,10],[139,10],[305,10],[475,10],[918,10],[178,10],[974,10],[511,10],[911,10],[759,10],[688,10],[535,10],[300,10],[359,10],[563,10],[500,10],[415,10],[706,10],[5,10],[761,10],[206,10],[923,10],[844,10],[64,10],[236,10],[100,10],[1018,10],[65,10],[711,10],[228,10],[641,10],[547,10],[560,10],[157,10],[810,10],[553,10],[804,10],[244,10],[745,10],[928,10],[606,10],[583,10],[451,10],[239,10],[397,10],[816,10],[821,10],[671,10],[328,10],[49,10],[549,10],[940,10],[559,10],[994,10],[523,10],[966,10],[853,10],[123,10],[566,10],[17,10],[740,10],[17,10],[175,10],[146,10],[252,10],[629,10],[188,10],[832,10],[586,10],[987,10],[349,10],[576,10],[285,10],[864,10],[829,10],[702,10],[445,10],[7,10],[731,10],[833,10],[984,10],[858,10],[114,10],[781,10],[190,10],[647,10],[592,10],[436,10],[527,10],[433,10],[670,10],[672,10],[830,10],[329,10],[413,10],[806,10],[902,10],[862,10],[480,10],[333,10],[798,10],[114,10],[159,10],[1005,10],[896,10],[880,10],[334,10],[651,10],[536,10],[717,10],[520,10],[362,10],[92,10],[58,10],[692,10],[458,10],[870,10],[404,10],[990,10],[648,10],[147,10],[858,10],[434,10],[366,10],[878,10],[147,10],[376,10],[409,10],[1014,10],[758,10],[470,10],[955,10],[468,10],[71,10],[607,10],[623,10],[186,10],[282,10],[309,10],[630,10],[500,10],[876,10],[348,10],[101,10],[5,10],[836,10],[420,10],[610,10],[465,10],[1019,10],[562,10],[932,10],[1003,10],[544,10],[303,10],[682,10],[231,10],[843,10],[992,10],[646,10],[394,10],[758,10],[676,10],[643,10],[741,10],[890,10],[72,10],[1011,10],[657,10],[932,10],[954,10],[37,10],[594,10],[460,10],[246,10],[523,10],[187,10],[73,10],[882,10],[433,10],[889,10],[577,10],[987,10],[825,10],[517,10],[574,10],[257,10],[111,10],[876,10],[419,10],[79,10],[575,10],[817,10],[294,10],[936,10],[95,10],[357,10],[926,10],[242,10],[595,10],[143,10],[976,10],[120,10],[264,10],[755,10],[679,10],[888,10],[655,10],[43,10],[83,10],[527,10],[397,10],[719,10],[895,10],[573,10],[38,10],[128,10],[475,10],[293,10],[1009,10],[673,10],[606,10],[223,10],[388,10],[112,10],[155,10],[388,10],[249,10],[539,10],[863,10],[295,10],[132,10],[281,10],[385,10],[1016,10],[454,10],[609,10],[205,10],[535,10],[310,10],[332,10],[691,10],[834,10],[181,10],[243,10],[754,10],[818,10],[907,10],[247,10],[612,10],[742,10],[849,10],[251,10],[4,10],[631,10],[960,10],[331,10],[695,10],[89,10],[862,10],[1003,10],[833,10],[914,10],[386,10],[914,10],[71,10],[975,10],[915,10],[749,10],[518,10],[648,10],[96,10],[844,10],[962,10],[952,10],[280,10],[401,10],[384,10],[748,10],[809,10],[484,10],[118,10],[658,10],[323,10],[931,10],[787,10],[898,10],[155,10],[99,10],[761,10],[623,10],[500,10],[655,10],[44,10],[120,10],[347,10],[430,10],[789,10],[418,10],[491,10],[717,10],[939,10],[136,10],[763,10],[322,10],[619,10],[322,10],[645,10],[686,10],[88,10],[326,10],[37,10],[652,10],[476,10],[8,10],[90,10],[932,10],[29,10],[6,10],[249,10],[391,10],[177,10],[665,10],[495,10],[335,10],[808,10],[955,10],[720,10],[746,10],[491,10],[50,10],[634,10],[848,10],[650,10],[824,10],[882,10],[540,10],[317,10],[865,10],[95,10],[683,10],[590,10],[755,10],[247,10],[995,10],[662,10],[726,10],[600,10],[787,10],[211,10],[419,10],[874,10],[799,10],[821,10],[369,10],[744,10],[693,10],[985,10],[650,10],[532,10],[211,10],[944,10],[614,10],[400,10],[885,10],[515,10],[658,10],[63,10],[820,10],[601,10],[618,10],[6,10],[577,10],[767,10],[761,10],[462,10],[288,10],[854,10],[531,10],[513,10],[971,10],[53,10],[977,10],[886,10],[636,10],[224,10],[279,10],[470,10],[649,10],[784,10],[6,10],[743,10],[925,10],[206,10],[224,10],[498,10],[710,10],[383,10],[118,10],[763,10],[864,10],[635,10],[875,10],[958,10],[147,10],[644,10],[308,10],[352,10],[888,10],[394,10],[399,10],[798,10],[228,10],[675,10],[681,10],[226,10],[558,10],[130,10],[581,10],[353,10],[874,10],[913,10],[398,10],[882,10],[976,10],[442,10],[185,10],[1001,10],[391,10],[469,10],[498,10],[619,10],[404,10],[325,10],[980,10],[294,10],[274,10],[198,10],[1012,10],[916,10],[283,10],[661,10],[613,10],[766,10],[653,10],[453,10],[600,10],[24,10],[101,10],[393,10],[129,10],[343,10],[208,10],[439,10],[721,10],[365,10],[882,10],[238,10],[614,10],[769,10],[251,10],[505,10],[980,10],[748,10],[486,10],[881,10],[518,10],[340,10],[991,10],[9,10],[605,10],[1016,10],[307,10],[429,10],[799,10],[570,10],[74,10],[192,10],[348,10],[374,10],[344,10],[485,10],[572,10],[722,10],[387,10],[68,10],[817,10],[552,10],[12,10],[514,10],[711,10],[708,10],[242,10],[296,10],[721,10],[465,10],[932,10],[814,10],[614,10],[419,10],[97,10],[50,10],[15,10],[545,10],[974,10],[427,10],[34,10],[785,10],[264,10],[66,10],[551,10],[602,10],[249,10],[197,10],[399,10],[668,10],[455,10],[897,10],[97,10],[573,10],[781,10],[468,10],[627,10],[123,10],[989,10],[98,10],[438,10],[602,10],[828,10],[833,10],[253,10],[390,10],[388,10],[239,10],[914,10],[682,10],[399,10],[52,10],[728,10],[740,10],[589,10],[923,10],[746,10],[964,10],[991,10],[363,10],[804,10],[235,10],[935,10],[255,10],[141,10],[814,10],[220,10],[267,10],[880,10],[917,10],[491,10],[66,10],[604,10],[1,10],[308,10],[820,10],[262,10],[208,10],[274,10],[80,10],[204,10],[472,10],[679,10],[671,10],[640,10],[992,10],[426,10],[709,10],[295,10],[98,10],[516,10],[486,10],[810,10],[223,10],[899,10],[50,10],[681,10],[622,10],[124,10],[146,10],[174,10],[85,10],[759,10],[655,10],[831,10],[524,10],[701,10],[959,10],[348,10],[915,10],[687,10],[661,10],[711,10],[848,10],[270,10],[521,10],[505,10],[805,10],[373,10],[491,10],[185,10],[145,10],[251,10],[233,10],[167,10],[269,10],[805,10],[928,10],[552,10],[265,10],[869,10],[797,10],[593,10],[617,10],[351,10],[306,10],[876,10],[607,10],[662,10],[64,10],[482,10],[48,10],[83,10],[284,10],[538,10],[647,10],[281,10],[525,10],[318,10],[329,10],[833,10],[735,10],[899,10],[643,10],[355,10],[250,10],[249,10],[410,10],[917,10],[1022,10],[406,10],[263,10],[91,10],[414,10],[544,10],[147,10],[944,10],[89,10],[354,10],[320,10],[587,10],[951,10],[337,10],[576,10],[805,10],[748,10],[829,10],[870,10],[34,10],[474,10],[682,10],[478,10],[767,10],[8,10],[516,10],[435,10],[184,10],[65,10],[694,10],[602,10],[888,10],[737,10],[972,10],[978,10],[286,10],[35,10],[297,10],[351,10],[909,10],[55,10],[279,10],[619,10],[819,10],[262,10],[889,10],[588,10],[697,10],[249,10],[219,10],[407,10],[410,10],[721,10],[675,10],[645,10],[3,10],[736,10],[410,10],[53,10],[760,10],[977,10],[743,10],[514,10],[871,10],[954,10],[939,10],[304,10],[136,10],[340,10],[585,10],[550,10],[986,10],[222,10],[630,10],[641,10],[162,10],[607,10],[965,10],[809,10],[200,10],[174,10],[793,10],[762,10],[1018,10],[371,10],[171,10],[424,10],[248,10],[186,10],[252,10],[345,10],[99,10],[778,10],[60,10],[1009,10],[739,10],[924,10],[1021,10],[393,10],[225,10],[980,10],[443,10],[139,10],[387,10],[566,10],[813,10],[615,10],[393,10],[400,10],[267,10],[261,10],[208,10],[68,10],[475,10],[776,10],[661,10],[505,10],[467,10],[109,10],[847,10],[236,10],[776,10],[649,10],[808,10],[940,10],[338,10],[850,10],[773,10],[16,10],[526,10],[826,10],[312,10],[543,10],[684,10],[371,10],[426,10],[905,10],[70,10],[282,10],[703,10],[491,10],[778,10],[198,10],[119,10],[907,10],[433,10],[870,10],[514,10],[41,10],[290,10],[431,10],[707,10],[827,10],[34,10],[62,10],[101,10],[264,10],[469,10],[451,10],[824,10],[358,10],[396,10],[940,10],[69,10],[829,10],[486,10],[75,10],[356,10],[496,10],[771,10],[720,10],[574,10],[449,10],[121,10],[952,10],[391,10],[953,10],[216,10],[85,10],[802,10],[604,10],[981,10],[400,10],[848,10],[307,10],[105,10],[209,10],[218,10],[586,10],[761,10],[329,10],[662,10],[475,10],[434,10],[218,10],[174,10],[558,10],[107,10],[572,10],[54,10],[152,10],[529,10],[989,10],[375,10],[42,10],[803,10],[983,10],[378,10],[832,10],[331,10],[24,10],[275,10],[980,10],[734,10],[568,10],[612,10],[524,10],[734,10],[16,10],[825,10],[877,10],[67,10],[140,10],[856,10],[522,10],[273,10],[817,10],[400,10],[708,10],[636,10],[722,10],[1022,10],[699,10],[247,10],[267,10],[438,10],[225,10],[436,10],[138,10],[157,10],[112,10],[839,10],[885,10],[223,10],[437,10],[193,10],[811,10],[582,10],[944,10],[442,10],[664,10],[752,10],[507,10],[718,10],[758,10],[715,10],[294,10],[1014,10],[872,10],[944,10],[605,10],[598,10],[83,10],[335,10],[762,10],[752,10],[70,10],[864,10],[565,10],[74,10],[533,10],[306,10],[149,10],[418,10],[954,10],[357,10],[264,10],[606,10],[205,10],[597,10],[197,10],[929,10],[798,10],[595,10],[655,10],[980,10],[750,10],[1012,10],[665,10],[647,10],[359,10],[873,10],[924,10],[260,10],[754,10],[193,10],[706,10],[177,10],[357,10],[38,10],[629,10],[401,10],[176,10],[51,10],[894,10],[807,10],[709,10],[212,10],[97,10],[26,10],[264,10],[415,10],[603,10],[32,10],[220,10],[702,10],[149,10],[367,10],[145,10],[572,10],[381,10],[450,10],[403,10],[628,10],[316,10],[968,10],[953,10],[690,10],[808,10],[484,10],[378,10],[342,10],[683,10],[962,10],[630,10],[498,10],[335,10],[374,10],[336,10],[960,10],[321,10],[396,10],[795,10],[737,10],[549,10],[1022,10],[938,10],[211,10],[986,10],[968,10],[49,10],[560,10],[19,10],[1006,10],[786,10],[110,10],[358,10],[619,10],[422,10],[982,10],[870,10],[664,10],[109,10],[436,10],[38,10],[656,10],[845,10],[728,10],[384,10],[19,10],[292,10],[397,10],[95,10],[13,10],[1012,10],[651,10],[473,10],[210,10],[777,10],[87,10],[910,10],[475,10],[341,10],[736,10],[760,10],[782,10],[464,10],[646,10],[257,10],[811,10],[373,10],[599,10],[850,10],[183,10],[664,10],[539,10],[40,10],[631,10],[884,10],[797,10],[843,10],[647,10],[837,10],[430,10],[965,10],[924,10],[129,10],[342,10],[935,10],[291,10],[764,10],[440,10],[640,10],[592,10],[279,10],[760,10],[695,10],[735,10],[527,10],[290,10],[73,10],[692,10],[1011,10],[355,10],[921,10],[8,10],[257,10],[687,10],[728,10],[969,10],[721,10],[496,10],[604,10],[988,10],[930,10],[161,10],[155,10],[413,10],[7,10],[374,10],[682,10],[281,10],[863,10],[468,10],[62,10],[434,10],[301,10],[412,10],[602,10],[940,10],[175,10],[926,10],[168,10],[125,10],[969,10],[338,10],[1002,10],[561,10],[151,10],[610,10],[796,10],[501,10],[530,10],[999,10],[121,10],[9,10],[950,10],[241,10],[369,10],[653,10],[530,10],[540,10],[627,10],[548,10],[738,10],[242,10],[154,10],[204,10],[835,10],[47,10],[826,10],[555,10],[980,10],[446,10],[272,10],[609,10],[400,10],[458,10],[354,10],[61,10],[167,10],[781,10],[82,10],[974,10],[882,10],[297,10],[249,10],[979,10],[936,10],[177,10],[689,10],[44,10],[421,10],[649,10],[486,10],[888,10],[206,10],[99,10],[109,10],[557,10],[281,10],[373,10],[643,10],[623,10],[156,10],[921,10],[977,10],[592,10],[168,10],[620,10],[137,10],[776,10],[802,10],[140,10],[951,10],[87,10],[348,10],[194,10],[501,10],[901,10],[950,10],[685,10],[694,10],[79,10],[68,10],[487,10],[803,10],[645,10],[431,10],[201,10],[386,10],[576,10],[658,10],[436,10],[309,10],[505,10],[685,10],[274,10],[232,10],[947,10],[390,10],[612,10],[626,10],[692,10],[503,10],[999,10],[543,10],[244,10],[934,10],[40,10],[973,10],[332,10],[799,10],[767,10],[250,10],[627,10],[876,10],[20,10],[459,10],[880,10],[255,10],[366,10],[561,10],[18,10],[990,10],[962,10],[520,10],[459,10],[873,10],[254,10],[605,10],[659,10],[154,10],[961,10],[306,10],[826,10],[275,10],[159,10],[121,10],[972,10],[167,10],[163,10],[376,10],[962,10],[498,10],[434,10],[54,10],[164,10],[793,10],[318,10],[807,10],[907,10],[306,10],[81,10],[3,10],[421,10],[94,10],[668,10],[477,10],[519,10],[200,10],[531,10],[832,10],[705,10],[187,10],[221,10],[921,10],[649,10],[558,10],[800,10],[979,10],[668,10],[997,10],[69,10],[972,10],[444,10],[602,10],[401,10],[374,10],[410,10],[259,10],[852,10],[21,10],[438,10],[197,10],[759,10],[454,10],[472,10],[899,10],[403,10],[332,10],[542,10],[227,10],[480,10],[233,10],[772,10],[554,10],[577,10],[561,10],[470,10],[888,10],[191,10],[161,10],[715,10],[539,10],[848,10],[939,10],[719,10],[348,10],[690,10],[393,10],[481,10],[383,10],[398,10],[441,10],[630,10],[918,10],[644,10],[742,10],[785,10],[121,10],[30,10],[207,10],[267,10],[436,10],[327,10],[371,10],[777,10],[857,10],[128,10],[101,10],[363,10],[135,10],[257,10],[15,10],[47,10],[968,10],[43,10],[636,10],[760,10],[188,10],[605,10],[254,10],[882,10],[15,10],[300,10],[663,10],[94,10],[172,10],[118,10],[229,10],[903,10],[55,10],[120,10],[340,10],[403,10],[690,10],[825,10],[607,10],[21,10],[531,10],[899,10],[215,10],[758,10],[333,10],[881,10],[489,10],[42,10],[542,10],[394,10],[799,10],[828,10],[747,10],[366,10],[771,10],[836,10],[179,10],[872,10],[143,10],[151,10],[315,10],[170,10],[867,10],[40,10],[969,10],[877,10],[236,10],[401,10],[941,10],[899,10],[908,10],[515,10],[638,10],[483,10],[564,10],[316,10],[62,10],[171,10],[350,10],[333,10],[693,10],[628,10],[428,10],[240,10],[407,10],[831,10],[695,10],[711,10],[641,10],[485,10],[842,10],[329,10],[560,10],[65,10],[963,10],[59,10],[182,10],[927,10],[511,10],[632,10],[642,10],[938,10],[443,10],[540,10],[195,10],[451,10],[120,10],[870,10],[404,10],[470,10],[148,10],[693,10],[964,10],[222,10],[294,10],[704,10],[604,10],[513,10],[167,10],[675,10],[306,10],[731,10],[987,10],[944,10],[140,10],[85,10],[809,10],[443,10],[523,10],[903,10],[787,10],[424,10],[520,10],[487,10],[604,10],[20,10],[727,10],[800,10],[656,10],[594,10],[971,10],[148,10],[490,10],[278,10],[792,10],[803,10],[900,10],[162,10],[94,10],[139,10],[717,10],[798,10],[152,10],[429,10],[581,10],[551,10],[999,10],[901,10],[590,10],[896,10],[800,10],[409,10],[423,10],[892,10],[933,10],[51,10],[685,10],[816,10],[567,10],[359,10],[44,10],[884,10],[70,10],[317,10],[345,10],[731,10],[946,10],[449,10],[460,10],[203,10],[825,10],[784,10],[321,10],[636,10],[854,10],[808,10],[826,10],[299,10],[345,10],[244,10],[896,10],[766,10],[951,10],[451,10],[908,10],[882,10],[492,10],[897,10],[516,10],[379,10],[1,10],[118,10],[379,10],[327,10],[321,10],[611,10],[605,10],[374,10],[1008,10],[683,10],[374,10],[605,10],[108,10],[874,10],[87,10],[489,10],[593,10],[764,10],[501,10],[866,10],[375,10],[606,10],[966,10],[276,10],[225,10],[786,10],[402,10],[1012,10],[783,10],[929,10],[249,10],[960,10],[309,10],[990,10],[628,10],[719,10],[303,10],[88,10],[502,10],[539,10],[462,10],[976,10],[733,10],[156,10],[827,10],[541,10],[622,10],[574,10],[929,10],[744,10],[724,10],[688,10],[839,10],[523,10],[407,10],[681,10],[711,10],[95,10],[267,10],[172,10],[83,10],[577,10],[125,10],[251,10],[772,10],[217,10],[277,10],[852,10],[987,10],[593,10],[1006,10],[868,10],[181,10],[85,10],[612,10],[17,10],[652,10],[736,10],[942,10],[250,10],[537,10],[460,10],[1014,10],[615,10],[954,10],[921,10],[222,10],[1004,10],[495,10],[35,10],[177,10],[776,10],[951,10],[74,10],[909,10],[522,10],[385,10],[103,10],[354,10],[385,10],[172,10],[483,10],[983,10],[827,10],[663,10],[211,10],[281,10],[603,10],[267,10],[913,10],[994,10],[878,10],[101,10],[803,10],[667,10],[469,10],[772,10],[449,10],[73,10],[375,10],[6,10],[150,10],[752,10],[425,10],[981,10],[444,10],[802,10],[378,10],[394,10],[950,10],[134,10],[473,10],[495,10],[498,10],[179,10],[263,10],[76,10],[544,10],[120,10],[926,10],[165,10],[560,10],[621,10],[981,10],[791,10],[1015,10],[465,10],[811,10],[746,10],[192,10],[341,10],[519,10],[222,10],[145,10],[209,10],[83,10],[223,10],[659,10],[860,10],[201,10],[614,10],[377,10],[128,10],[1010,10],[554,10],[923,10],[474,10],[394,10],[944,10],[654,10],[665,10],[434,10],[340,10],[542,10],[112,10],[120,10],[136,10],[865,10],[409,10],[838,10],[439,10],[733,10],[821,10],[392,10],[239,10],[947,10],[649,10],[353,10],[126,10],[945,10],[314,10],[968,10],[35,10],[172,10],[964,10],[3,10],[863,10],[672,10],[895,10],[1019,10],[24,10],[43,10],[464,10],[375,10],[574,10],[643,10],[824,10],[296,10],[284,10],[10,10],[218,10],[176,10],[132,10],[465,10],[574,10],[188,10],[325,10],[896,10],[369,10],[780,10],[735,10],[878,10],[533,10],[867,10],[551,10],[228,10],[779,10],[785,10],[540,10],[627,10],[499,10],[124,10],[492,10],[41,10],[717,10],[96,10],[623,10],[677,10],[569,10],[169,10],[401,10],[609,10],[501,10],[648,10],[2,10],[452,10],[985,10],[165,10],[341,10],[455,10],[100,10],[918,10],[832,10],[90,10],[551,10],[823,10],[905,10],[820,10],[847,10],[117,10],[123,10],[478,10],[61,10],[951,10],[59,10],[611,10],[219,10],[933,10],[144,10],[547,10],[702,10],[334,10],[222,10],[780,10],[925,10],[889,10],[807,10],[95,10],[94,10],[165,10],[890,10],[628,10],[355,10],[407,10],[235,10],[147,10],[676,10],[759,10],[43,10],[597,10],[739,10],[746,10],[406,10],[693,10],[165,10],[526,10],[494,10],[76,10],[418,10],[308,10],[660,10],[475,10],[71,10],[496,10],[653,10],[327,10],[634,10],[471,10],[648,10],[485,10],[13,10],[211,10],[202,10],[834,10],[587,10],[687,10],[425,10],[115,10],[312,10],[291,10],[415,10],[776,10],[96,10],[175,10],[774,10],[567,10],[702,10],[61,10],[785,10],[591,10],[750,10],[12,10],[509,10],[368,10],[130,10],[878,10],[13,10],[435,10],[42,10],[953,10],[500,10],[495,10],[519,10],[868,10],[228,10],[623,10],[314,10],[105,10],[984,10],[246,10],[997,10],[284,10],[542,10],[571,10],[832,10],[315,10],[16,10],[767,10],[649,10],[181,10],[425,10],[992,10],[737,10],[173,10],[772,10],[21,10],[300,10],[175,10],[755,10],[370,10],[18,10],[991,10],[83,10],[687,10],[417,10],[922,10],[319,10],[599,10],[491,10],[609,10],[307,10],[874,10],[970,10],[993,10],[197,10],[481,10],[383,10],[250,10],[37,10],[422,10],[20,10],[259,10],[832,10],[785,10],[212,10],[860,10],[522,10],[105,10],[310,10],[171,10],[447,10],[484,10],[58,10],[495,10],[397,10],[510,10],[83,10],[273,10],[732,10],[424,10],[907,10],[96,10],[393,10],[581,10],[226,10],[50,10],[712,10],[581,10],[419,10],[221,10],[339,10],[722,10],[644,10],[869,10],[601,10],[639,10],[1002,10],[689,10],[923,10],[159,10],[855,10],[775,10],[133,10],[191,10],[923,10],[53,10],[318,10],[893,10],[286,10],[414,10],[306,10],[806,10],[248,10],[349,10],[1010,10],[806,10],[185,10],[607,10],[216,10],[636,10],[848,10],[877,10],[85,10],[940,10],[122,10],[629,10],[10,10],[316,10],[1016,10],[579,10]]],"output":[[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[1,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[2,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[3,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[4,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[6,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[8,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[9,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[10,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[11,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[12,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[13,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[14,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[15,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[16,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[17,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[18,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[19,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[20,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[21,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[22,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[23,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[24,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[25,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[26,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[27,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[28,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[29,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[30,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[31,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[32,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[33,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[34,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[35,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[36,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[37,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[38,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[40,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[41,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[42,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[43,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[44,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[45,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[46,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[47,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[48,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[49,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[50,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[51,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[52,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[53,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[54,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[55,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[56,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[57,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[58,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[59,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[60,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[61,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[62,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[63,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[64,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[65,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[66,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[67,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[69,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[70,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[71,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[72,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[73,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[74,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[75,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[76,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[77,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[78,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[79,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[80,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[81,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[82,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[83,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[85,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[86,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[87,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[89,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[90,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[91,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[92,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[93,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[94,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[95,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[96,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[97,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[98,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[99,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[100,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[101,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[102,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[103,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[104,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[105,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[106,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[107,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[108,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[109,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[110,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[111,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[112,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[113,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[114,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[115,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[116,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[117,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[118,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[119,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[120,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[121,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[122,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[123,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[124,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[125,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[126,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[127,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[128,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[129,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[130,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[131,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[132,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[133,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[134,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[135,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[136,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[137,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[138,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[139,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[140,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[141,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[142,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[143,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[144,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[145,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[146,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[147,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[148,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[149,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[150,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[151,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[152,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[153,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[154,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[155,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[156,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[158,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[159,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[160,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[161,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[162,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[163,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[164,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[165,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[166,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[167,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[168,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[169,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[170,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[171,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[172,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[173,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[174,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[175,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[176,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[177,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[178,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[179,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[180,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[181,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[182,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[183,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[184,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[185,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[186,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[187,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[188,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[189,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[190,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[191,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[192,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[193,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[194,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[195,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[196,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[197,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[198,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[199,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[200,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[201,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[202,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[203,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[204,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[205,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[206,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[207,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[208,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[209,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[210,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[211,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[212,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[213,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[214,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[215,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[216,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[217,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[218,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[219,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[220,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[221,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[222,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[223,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[224,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[225,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[226,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[227,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[228,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[229,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[230,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[231,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[232,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[233,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[234,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[235,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[236,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[237,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[238,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[239,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[240,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[241,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[242,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[243,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[244,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[245,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[246,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[247,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[248,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[249,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[250,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[251,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[252,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[253,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[254,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[255,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[256,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[257,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[258,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[259,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[260,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[261,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[262,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[263,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[264,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[265,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[266,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[267,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[268,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[269,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[270,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[271,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[272,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[273,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[274,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[275,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[276,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[277,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[278,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[279,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[280,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[281,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[282,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[283,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[284,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[285,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[286,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[287,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[288,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[289,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[290,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[291,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[292,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[293,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[294,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[295,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[296,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[297,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[298,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[299,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[301,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[302,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[303,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[304,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[305,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[306,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[307,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[308,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[309,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[310,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[311,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[312,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[313,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[314,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[315,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[316,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[317,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[318,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[319,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[320,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[321,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[322,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[323,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[324,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[325,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[326,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[327,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[328,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[329,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[330,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[331,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[332,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[333,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[334,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[335,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[336,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[337,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[338,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[339,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[340,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[341,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[342,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[343,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[344,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[345,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[346,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[347,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[348,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[349,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[350,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[351,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[352,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[353,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[354,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[355,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[356,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[357,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[358,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[359,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[360,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[361,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[362,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[363,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[364,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[365,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[366,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[367,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[368,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[369,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[370,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[371,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[372,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[373,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[374,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[375,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[376,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[377,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[378,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[379,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[380,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[381,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[382,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[383,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[384,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[385,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[386,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[387,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[388,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[389,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[390,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[391,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[392,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[393,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[394,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[395,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[396,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[397,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[398,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[399,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[400,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[401,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[402,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[403,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[404,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[405,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[406,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[407,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[408,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[409,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[410,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[411,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[412,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[413,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[414,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[415,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[416,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[417,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[418,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[419,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[420,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[421,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[422,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[423,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[424,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[425,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[426,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[427,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[428,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[429,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[430,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[431,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[432,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[433,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[434,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[435,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[436,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[437,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[438,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[439,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[440,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[441,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[442,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[443,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[444,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[445,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[446,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[447,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[448,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[449,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[450,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[451,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[452,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[453,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[454,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[455,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[456,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[457,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[458,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[459,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[460,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[461,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[462,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[463,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[464,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[465,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[466,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[467,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[468,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[469,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[470,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[471,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[472,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[473,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[474,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[475,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[476,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[477,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[478,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[479,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[480,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[481,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[482,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[483,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[484,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[485,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[486,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[487,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[488,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[489,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[490,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[491,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[492,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[493,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[494,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[495,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[496,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[497,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[498,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[499,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[500,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[501,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[503,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[504,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[505,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[506,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[507,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[508,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[509,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[510,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[511,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[512,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[513,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[514,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[515,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[516,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[517,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[518,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[519,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[520,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[521,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[522,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[523,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[524,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[525,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[526,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[527,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[528,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[529,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[530,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[531,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[532,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[533,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[534,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[535,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[536,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[537,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[538,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[539,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[540,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[541,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[542,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[543,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[544,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[545,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[546,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[547,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[548,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[549,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[550,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[551,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[552,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[553,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[554,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[555,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[556,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[557,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[558,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[559,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[560,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[561,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[562,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[563,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[564,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[565,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[566,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[567,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[568,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[569,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[570,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[571,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[572,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[574,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[575,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[576,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[577,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[578,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[579,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[580,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[581,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[582,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[583,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[584,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[585,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[586,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[587,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[588,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[589,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[590,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[591,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[592,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[593,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[594,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[595,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[596,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[597,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[598,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[599,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[600,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[601,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[602,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[603,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[604,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[605,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[606,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[607,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[608,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[609,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[610,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[611,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[612,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[613,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[614,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[615,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[616,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[617,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[618,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[619,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[620,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[621,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[622,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[623,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[624,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[625,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[626,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[627,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[628,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[629,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[630,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[631,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[632,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[633,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[634,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[635,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[636,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[637,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[638,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[639,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[640,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[641,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[642,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[643,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[644,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[645,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[646,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[647,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[648,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[649,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[650,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[651,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[652,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[653,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[654,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[655,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[656,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[657,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[658,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[659,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[660,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[661,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[662,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[663,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[664,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[665,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[666,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[667,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[668,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[669,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[670,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[671,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[673,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[674,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[675,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[676,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[677,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[678,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[679,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[680,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[681,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[682,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[683,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[684,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[685,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[686,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[687,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[688,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[689,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[690,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[691,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[692,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[693,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[694,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[695,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[696,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[697,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[698,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[699,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[700,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[701,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[702,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[703,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[704,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[705,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[706,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[707,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[708,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[709,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[710,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[711,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[712,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[713,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[714,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[715,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[716,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[717,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[718,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[719,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[720,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[721,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[722,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[723,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[724,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[725,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[726,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[727,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[728,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[729,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[730,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[731,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[732,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[733,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[734,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[735,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[736,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[737,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[738,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[739,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[740,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[741,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[742,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[743,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[744,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[745,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[746,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[747,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[748,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[749,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[750,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[751,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[752,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[753,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[754,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[755,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[757,10],[757,10],[757,10],[757,10],[757,10],[757,10],[757,10],[757,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[758,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[759,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[760,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[761,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[762,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[763,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[764,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[765,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[766,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[767,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[768,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[769,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[770,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[771,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[772,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[773,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[774,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[775,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[776,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[777,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[778,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[779,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[780,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[781,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[782,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[783,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[784,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[785,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[786,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[787,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[788,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[789,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[790,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[791,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[792,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[793,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[794,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[795,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[796,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[797,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[798,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[800,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[801,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[802,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[803,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[804,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[805,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[806,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[807,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[808,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[809,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[810,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[811,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[812,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[813,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[814,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[815,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[816,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[817,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[818,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[819,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[820,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[821,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[822,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[823,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[824,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[825,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[826,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[827,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[828,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[829,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[830,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[831,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[832,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[833,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[834,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[835,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[836,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[837,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[838,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[839,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[840,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[841,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[842,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[843,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[844,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[845,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[846,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[847,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[848,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[849,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[850,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[851,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[852,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[853,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[854,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[855,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[856,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[857,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[858,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[859,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[860,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[861,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[862,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[863,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[864,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[865,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[866,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[867,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[868,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[869,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[870,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[871,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[872,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[873,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[874,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[875,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[876,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[878,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[879,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[880,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[881,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[882,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[883,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[884,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[885,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[886,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[887,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[888,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[889,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[890,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[891,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[892,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[893,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[894,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[895,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[896,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[897,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[898,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[899,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[900,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[901,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[902,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[903,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[904,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[905,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[906,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[907,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[908,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[909,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[910,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[911,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[912,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[913,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[914,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[915,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[916,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[917,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[918,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[919,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[920,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[921,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[922,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[923,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[924,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[925,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[926,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[927,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[928,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[929,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[930,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[931,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[932,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[933,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[934,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[935,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[936,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[937,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[938,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[939,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[940,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[941,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[942,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[943,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[944,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[945,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[946,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[947,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[948,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[949,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[950,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[951,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[952,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[953,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[954,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[955,10],[956,10],[956,10],[956,10],[956,10],[956,10],[956,10],[956,10],[956,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[957,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[958,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[959,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[960,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[961,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[962,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[963,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[964,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[965,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[966,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[967,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[968,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[969,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[970,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[971,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[972,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[973,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[974,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[975,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[976,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[977,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[978,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[979,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[980,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[981,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[982,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[983,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[984,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[985,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[986,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[987,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[989,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[990,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[991,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[992,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[993,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[994,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[995,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[996,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[997,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[998,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[999,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1000,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1001,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1002,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1003,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1004,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1005,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1006,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1007,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1008,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1009,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1010,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1011,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1013,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1014,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1015,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1016,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1017,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1018,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1019,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1020,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1021,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1022,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10],[1023,10]]},{"input":[[[275,10],[113,7],[1,1],[3,3],[413,9],[1,1],[28,5],[3,3],[1,3],[44,10],[937,10],[299,9],[3,2],[127,9],[1,1],[1,3],[36,6],[1,1],[206,8],[20,6]]],"output":[[44,10],[1,3],[1,3],[127,9],[275,10],[20,6],[3,3],[3,3],[1,1],[1,1],[1,1],[1,1],[36,6],[299,9],[3,2],[206,8],[413,9],[28,5],[113,7],[937,10]]},{"input":[[[23,5],[188,8],[404,9],[4,4],[132,8],[8,5],[393,10],[1,5],[7,3],[1,1],[393,9],[1,1],[178,9],[10,4],[14,4],[15,10],[19,6],[2,6],[73,7],[3,2],[8,4],[1,1],[27,8],[25,9],[1,1],[1,1],[3,2],[26,6],[1,1],[1,1],[1,1],[46,6],[30,5],[59,7],[3,4],[2,3],[491,10],[71,7],[65,7],[2,3],[1,1],[476,9],[1,1],[329,9],[4,3],[244,9],[61,7],[440,9],[61,8],[2,2],[77,7],[4,3],[86,8],[93,8],[233,8],[34,6],[1,1],[188,9],[13,5],[2,2],[251,9],[31,7],[44,10],[405,9],[1,3],[1,1],[8,4],[55,9],[9,4],[7,3],[1,3],[139,10],[5,3],[311,9],[70,7],[146,8],[196,9],[1,1],[14,5],[73,8],[7,3],[103,7],[1,1],[1,1],[5,3],[5,7],[10,4],[165,8],[11,6],[1,2],[97,9],[236,8],[2,2],[675,10],[1,7],[7,3],[6,3],[2,4],[4,6],[9,5],[94,9],[133,10],[2,3],[307,9],[12,7],[4,4],[502,10],[2,4],[2,3],[1,1],[11,8],[72,7],[937,10],[11,4],[15,4],[448,10],[58,6],[60,8],[15,5],[3,2],[179,9],[1,1],[1,6],[4,4],[4,4],[7,4],[33,6],[1,1],[511,9],[68,8],[2,2],[174,8],[200,8],[493,9],[30,8],[31,5],[1,1],[10,6],[32,6],[3,4],[52,8],[8,4],[22,8],[1,5],[6,4],[146,9],[254,8],[54,7],[55,6],[15,4],[120,8],[26,6],[62,6],[29,6],[796,10],[1,1],[4,6],[3,5],[1,2],[7,4],[1,9],[3,2],[68,10],[10,4],[16,5],[326,9],[1,1],[7,4],[69,7],[223,8],[7,5],[1,2],[27,5],[187,10],[85,7],[3,2],[5,3],[58,7],[1,2],[178,9],[1,1],[12,6],[88,8],[81,8],[558,10],[10,5],[1,1],[390,9],[2,2],[8,4],[272,9],[685,10],[182,8],[44,7],[4,5],[7,3],[119,9],[663,10],[2,2],[5,5],[55,6],[1,3],[1,1],[85,7],[57,7],[15,4],[96,9],[946,10],[68,10],[49,7],[16,6],[434,10],[1,1],[9,7],[2,4],[57,7],[152,10],[3,4],[254,8],[93,7],[248,8],[98,7],[478,9],[3,2],[711,10],[44,6],[53,6],[44,7],[51,8],[78,7],[38,8],[573,10],[39,7],[1,1],[12,5],[199,9],[11,4],[100,9],[4,3],[9,4],[5,3],[16,5],[1,2],[188,9],[7,5],[228,8],[35,7],[8,4],[127,9],[1,2],[34,6],[67,9],[91,7],[207,9],[178,8],[464,9],[1,1],[11,4],[19,7],[5,4],[28,6],[755,10],[28,5],[1,1],[11,4],[105,8],[1,1],[107,7],[1,1],[15,5],[5,6],[138,8],[2,2],[1008,10],[65,9],[235,8],[1,1],[2,2],[11,5],[8,5],[4,4],[1,1],[141,9],[91,7],[1,1],[207,9],[280,9],[254,9],[173,8],[86,7],[28,7],[485,9],[10,7],[1,2],[603,10],[481,9],[2,2],[19,6],[6,3],[11,5],[16,5],[16,6],[43,6],[1,1],[1,1],[25,5],[1,1],[11,4],[9,10],[1,1],[409,9],[476,9],[264,9],[3,5],[15,4],[341,9],[395,10],[114,10],[1,2],[357,9],[278,9],[1,2],[491,9],[1,5],[484,9],[1,1],[6,5],[1,1],[24,5],[146,10],[10,4],[686,10],[414,9],[104,8],[20,5],[7,5],[13,4],[3,5],[225,9],[6,5],[29,5],[1,1],[2,2],[47,6],[37,8],[235,10],[964,10],[2,3],[187,8],[758,10],[1,1],[98,8],[10,4],[7,3],[375,9],[55,7],[83,7],[3,4],[4,3],[2,2],[59,6],[23,7],[12,7],[332,10],[39,6],[17,5],[9,4],[44,10],[1,1],[130,9],[5,4],[116,8],[1,1],[196,9],[559,10],[92,7],[30,6],[67,10],[6,3],[260,10],[246,10],[25,5],[31,5],[1,1],[109,8],[58,9],[81,8],[53,8],[101,7],[18,6],[63,6],[4,3],[673,10],[68,8],[6,3],[197,9],[122,7],[3,2],[6,3],[96,9],[59,6],[120,7],[5,3],[3,6],[14,4],[390,9],[14,4],[1,1],[11,5],[1,1],[2,2],[51,9],[7,3],[423,10],[3,2],[44,6],[1,1],[401,9],[12,5],[125,7],[22,5],[530,10],[1,1],[27,7],[5,3],[5,3],[70,7],[58,10],[2,2],[82,8],[6,5],[62,6],[12,8],[8,4],[7,3],[1,1],[29,5],[23,5],[225,8],[61,7],[3,2],[5,3],[13,6],[53,8],[143,10],[59,6],[8,4],[7,3],[13,4],[1,1],[37,7],[3,2],[72,7],[1,1],[40,6],[71,7],[466,9],[716,10],[4,3],[2,2],[558,10],[1,3],[30,7],[2,7],[55,6],[167,8],[8,5],[430,10],[1,2],[77,7],[63,6],[1,1],[28,6],[102,7],[57,6],[21,7],[120,7],[4,4],[5,3],[25,5],[964,10],[705,10],[990,10],[12,5],[1,1],[34,7],[2,2],[198,8],[877,10],[6,4],[15,7],[2,2],[25,5],[4,6],[3,2],[1,1],[21,5],[47,8],[2,3],[1,3],[2,4],[1,1],[81,8],[502,9],[1,1],[2,2],[44,9],[47,9],[14,7],[1,1],[7,4],[1,1],[10,5],[126,7],[430,9],[14,4],[303,10],[2,2],[112,7],[22,5],[7,9],[2,5],[407,9],[3,3],[213,8],[12,7],[429,10],[108,7],[6,5],[3,2],[95,9],[1,1],[3,4],[460,9],[1,1],[3,5],[26,7],[519,10],[3,3],[810,10],[1,1],[479,10],[90,7],[536,10],[1,1],[2,2],[215,8],[11,4],[2,5],[5,3],[15,5],[3,3],[59,7],[100,7],[744,10],[84,9],[4,5],[764,10],[1,1],[47,9],[8,5],[531,10],[397,10],[1,2],[177,10],[31,6],[6,3],[1,3],[4,3],[55,6],[29,7],[4,6],[8,4],[422,10],[12,5],[101,7],[1,1],[13,4],[198,9],[2,3],[13,6],[3,3],[736,10],[1,1],[173,9],[23,5],[15,6],[3,2],[8,5],[42,8],[160,10],[45,10],[79,8],[65,7],[2,4],[1,2],[6,5],[457,9],[183,9],[2,2],[1,2],[166,8],[1,3],[1,5],[1,5],[3,3],[1,1],[2,4],[1,1],[3,3],[1,1],[797,10],[119,7],[8,5],[113,7],[126,8],[237,8],[7,3],[1,2],[6,5],[2,2],[5,3],[902,10],[18,6],[1,4],[7,3],[88,7],[1,1],[346,9],[330,9],[3,2],[104,8],[2,2],[3,2],[1,1],[147,9],[3,2],[2,2],[47,6],[210,10],[1,2],[30,5],[8,6],[37,8],[71,7],[22,5],[370,9],[1,1],[19,5],[941,10],[3,2],[2,2],[408,9],[5,3],[3,2],[420,9],[11,4],[5,5],[758,10],[168,8],[318,9],[1,1],[796,10],[6,3],[52,10],[2,2],[675,10],[173,8],[1,1],[4,3],[15,5],[3,2],[1,1],[29,5],[242,9],[11,4],[6,3],[104,7],[22,5],[1,1],[10,6],[5,4],[434,10],[849,10],[1,1],[1,1],[6,3],[1,1],[2,5],[189,9],[1,1],[1,2],[25,5],[6,3],[2,2],[86,7],[7,4],[21,5],[5,5],[139,9],[33,8],[988,10],[2,2],[14,5],[26,6],[28,7],[12,6],[89,9],[10,4],[2,2],[40,7],[472,9],[36,6],[16,5],[25,6],[1,1],[3,5],[60,7],[30,6],[2,2],[3,2],[17,5],[210,8],[1,3],[27,5],[29,6],[1,6],[4,5],[62,7],[1,1],[5,3],[1,1],[194,9],[1,5],[287,9],[7,3],[306,10],[501,9],[434,9],[181,8],[226,8],[1,1],[3,2],[5,4],[2,2],[3,2],[1,2],[5,3],[13,5],[21,7],[296,10],[7,3],[1,2],[61,7],[1,8],[2,2],[28,6],[3,2],[27,5],[116,9],[1,1],[241,9],[16,5],[40,7],[99,7],[1,2],[1,3],[29,5],[132,10],[138,8],[1,5],[14,5],[30,5],[36,8],[467,9],[8,6],[1,1],[3,10],[2,2],[107,8],[455,9],[1,1],[1,1],[1,2],[4,6],[5,4],[25,6],[37,6],[91,9],[3,3],[56,6],[1,1],[178,9],[9,4],[111,8],[337,9],[684,10],[877,10],[133,8],[3,4],[97,7],[48,7],[6,3],[2,2],[39,6],[55,6],[6,3],[88,7],[539,10],[1,2],[13,4],[125,8],[832,10],[307,9],[1,2],[3,4],[14,4],[50,6],[1,2],[1,3],[791,10],[1,1],[1,2],[23,9],[645,10],[7,5],[304,9],[693,10],[496,9],[1,1],[236,10],[14,6],[48,9],[108,7],[64,7],[1,1],[9,4],[3,3],[12,4],[25,5],[1,1],[4,4],[9,6],[2,4],[2,2],[1,4],[112,8],[2,2],[1,4],[1,3],[47,7],[97,7],[1,2],[1,2],[2,2],[18,6],[4,5],[166,8],[470,9],[7,3],[54,7],[3,2],[31,6],[141,8],[46,7],[3,2],[14,5],[353,9],[16,5],[84,7],[3,3],[54,6],[745,10],[1,1],[12,5],[2,3],[20,5],[1,5],[58,7],[155,8],[38,6],[5,3],[11,4],[1,7],[24,5],[80,7],[2,3],[352,9],[3,2],[23,5],[316,9],[448,9],[182,8],[41,6],[6,3],[109,8],[21,5],[2,2],[5,5],[1,1],[28,5],[1,2],[1,2],[2,2],[1,1],[834,10],[6,7],[20,5],[19,9],[27,6],[10,4],[1,2],[27,6],[1003,10],[103,10],[18,5],[40,6],[15,4],[3,2],[169,9],[12,4],[23,5],[7,3],[7,5],[4,3],[47,6],[36,7],[29,6],[295,10],[901,10],[31,6],[80,7],[29,6],[195,8],[502,9],[45,9],[1,2],[7,4],[1,3],[7,3],[175,8],[1,1],[12,5],[2,3],[226,9],[50,7],[1,2],[41,6],[88,8],[6,3],[2,3],[497,10],[184,8],[3,3],[2,3],[5,3],[25,5],[107,8],[3,2],[828,10],[35,6],[15,4],[41,7],[7,3],[7,4],[13,4],[1,4],[130,8],[1,1],[44,6],[29,5],[124,7],[1,3],[205,8],[2,2],[1,2],[301,10],[1,6],[1,1],[2,2],[1,1],[2,2],[1,1],[3,2],[61,6],[168,10],[1,1],[155,8],[302,9],[36,6],[52,6],[1,1],[1,1],[27,5],[87,7],[41,7],[409,10],[1,2],[241,9],[313,10],[621,10],[51,6],[22,6],[35,6],[10,5],[26,7],[7,3],[126,7],[3,4],[15,4],[34,8],[873,10],[22,5],[18,5],[2,2],[1,1],[380,10],[1,2],[1,2],[10,6],[210,9],[61,10],[392,10],[124,7],[53,7],[12,4],[15,4],[1,1],[854,10],[215,8],[1,1],[71,7],[8,8],[1,1],[200,10],[16,8],[1,4],[179,8],[29,6],[38,6],[13,4],[44,8],[506,9],[378,9],[25,7],[2,2],[1,2],[1,1],[65,7],[6,4],[1,4],[3,3],[70,7],[810,10],[223,9],[38,8],[168,8],[11,4],[469,9],[1022,10],[3,2],[19,9],[27,5],[147,8],[51,6],[20,10],[331,10],[372,9],[561,10],[14,4],[12,4],[2,3],[7,8],[2,5],[79,7],[1,2],[255,10],[71,8],[44,7],[1,1],[2,3],[75,8],[82,9],[12,4],[5,4],[115,7],[1,1],[479,9],[10,5],[1,2],[146,10],[40,9],[4,4],[5,3],[58,6],[224,9],[204,8],[65,8],[28,6],[5,4],[183,8],[37,6],[304,10],[1,1],[35,6],[8,4],[1,1],[95,10],[3,2],[14,4],[111,8],[7,3],[24,5],[153,8],[10,6],[17,6],[1,1],[582,10],[99,8],[5,3],[1,2],[4,3],[4,4],[11,4],[52,9],[15,4],[1,3],[1,1],[29,5],[53,9],[11,5],[300,10],[11,4],[6,3],[3,2],[8,4],[233,9],[800,10],[70,8],[92,7],[622,10],[2,2],[5,5],[1,1],[23,5],[195,8],[12,4],[1,3],[12,5],[31,7],[18,7],[89,7],[8,4],[602,10],[405,10],[15,7],[1,2],[1,4],[1,3],[15,4],[9,6],[7,3],[1,3],[1,4],[87,8],[11,5],[2,3],[12,8],[85,7],[195,8],[125,8],[41,8],[10,6],[145,8],[9,4],[7,3],[6,3],[30,5],[3,3],[154,8],[206,10],[15,4],[1,1],[446,9],[44,8],[501,9],[143,10],[1,1],[81,7],[384,9],[1,8],[13,4],[1,2],[895,10],[19,5],[428,10],[3,2],[14,4],[1,4],[3,3],[74,9],[289,9],[2,3],[32,6],[10,4],[7,3],[44,6],[205,9],[5,4],[52,6],[14,5],[36,9],[3,5],[3,2],[182,10],[95,7],[1,1],[54,6],[1,1],[106,7],[295,10],[2,4],[70,8],[1,2],[2,2],[815,10],[189,8],[3,2],[89,8],[15,8],[15,4],[3,2],[690,10],[640,10],[502,9],[1,1],[913,10],[2,5],[27,5],[7,3],[2,5],[1,1],[20,5],[13,5],[63,7],[2,2],[787,10],[20,5],[508,9],[1,1],[66,7],[2,5],[981,10],[14,4],[54,6],[4,3],[5,4],[171,8],[1,1],[13,8],[40,7],[3,3],[376,9],[4,4],[1,1],[73,8],[16,5],[132,8],[2,3],[3,3],[1,1],[1,1],[2,2],[23,6],[1,1],[9,4],[1,1],[232,8],[3,2],[1,2],[93,7],[1,3],[7,4],[1,2],[14,5],[5,4],[1,3],[53,7],[1,2],[50,6],[48,6],[870,10],[1,1],[51,6],[18,5],[9,6],[68,8],[41,6],[40,6],[13,8],[134,8],[37,6],[1021,10],[89,9],[6,4],[15,4],[484,9],[194,8],[1,1],[488,9],[42,7],[238,9],[181,9],[6,3],[3,2],[5,3],[1,2],[49,7],[348,9],[9,8],[29,6],[165,9],[2,2],[1,2],[1,1],[171,8],[29,5],[127,10],[626,10],[8,5],[2,8],[10,4],[2,4],[1,1],[4,6],[51,6],[11,4],[84,7],[435,10],[3,2],[3,5],[8,4],[35,8],[1,1],[3,2],[7,4],[663,10],[31,6],[101,7],[1,1],[21,5],[1,1],[1,1],[22,5],[18,6],[77,9],[3,2],[107,7],[120,8],[43,6],[61,6],[104,8],[113,8],[228,8],[19,6],[2,3],[257,10],[4,5],[74,9],[10,4],[36,8],[2,3],[22,5],[1,1],[513,10],[247,8],[5,4],[1,1],[3,2],[2,2],[7,3],[445,10],[265,9],[196,8],[1,1],[11,4],[8,4],[11,6],[104,7],[9,6],[21,5],[183,8],[10,4],[11,4],[274,10],[3,3],[1,2],[26,7],[487,10],[53,6],[837,10],[42,6],[75,7],[93,8],[149,9],[5,3],[251,8],[79,7],[14,4],[7,3],[39,7],[11,5],[5,5],[51,9],[72,9],[1,1],[155,8],[40,7],[76,7],[205,8],[63,6],[60,6],[29,6],[258,10],[1,2],[2,2],[2,4],[2,3],[94,8],[289,9],[170,8],[4,4],[7,4],[12,4],[20,5],[233,9],[3,3],[82,7],[1,1],[1,1],[1,2],[1,1],[627,10],[5,6],[49,7],[177,8],[5,7],[19,7],[35,6],[474,9],[868,10],[50,6],[105,7],[13,4],[276,9],[27,5],[14,5],[2,2],[75,8],[104,7],[1,2],[2,2],[13,5],[997,10],[94,7],[9,4],[106,8],[14,5],[3,2],[76,8],[2,3],[57,6],[326,9],[1,1],[179,8],[1,4],[114,7],[1,2],[3,2],[7,3],[77,7],[1,2],[381,9],[231,10],[1,4],[8,4],[5,3],[122,9],[5,4],[712,10],[6,4],[24,5],[5,6],[99,8],[1,1],[31,5],[17,5],[31,6],[118,7],[89,9],[15,4],[31,6],[242,9],[106,8],[24,5],[32,6],[2,2],[98,8],[400,9],[6,5],[2,5],[436,9],[79,7],[24,5],[393,10],[31,5],[7,3],[3,2],[197,8],[195,8],[1,1],[11,4],[7,3],[15,4],[2,5],[1,1],[90,7],[11,4],[287,9],[56,6],[126,9],[1,1],[4,3],[7,5],[3,2],[68,9],[15,6],[49,6],[7,4],[94,8],[7,5],[127,8],[6,4],[124,8],[120,8],[64,7],[57,6],[8,4],[45,7],[119,8],[3,3],[2,6],[1,1],[64,7],[107,7],[178,8],[113,7],[1,1],[1,1],[15,6],[16,5],[3,4],[4,4],[29,7],[88,7],[396,9],[57,7],[661,10],[147,9],[89,7],[288,9],[6,4],[1,6],[94,7],[1,1],[1,1],[35,9],[3,5],[512,10],[43,6],[28,5],[45,9],[1,2],[51,7],[48,7],[3,2],[2,2],[13,5],[204,10],[40,9],[8,5],[34,6],[1012,10],[1,2],[421,9],[3,3],[5,7],[14,5],[26,6],[1,1],[34,6],[431,9],[14,6],[2,6],[1,1],[1,1],[33,6],[3,3],[108,7],[194,8],[726,10],[27,8],[1,1],[24,5],[24,5],[1,2],[1,1],[1,2],[6,3],[4,3],[271,9],[55,7],[4,4],[9,4],[97,7],[212,8],[24,8],[231,8],[72,8],[2,3],[145,8],[3,4],[1,4],[1,2],[6,8],[29,7],[23,7],[158,8],[1,2],[481,10],[1,4],[17,6],[85,9],[20,5],[17,5],[5,3],[2,2],[31,6],[1,1],[3,2],[58,6],[21,6],[12,4],[3,4],[411,10],[2,2],[2,3],[1,1],[3,2],[2,2],[5,4],[378,9],[10,5],[16,6],[956,10],[24,6],[1,1],[2,3],[1,4],[2,2],[2,2],[11,5],[159,9],[363,9],[1,1],[7,4],[5,3],[437,9],[350,9],[14,4],[3,2],[8,4],[264,9],[34,7],[97,9],[178,8],[2,5],[124,9],[6,3],[107,8],[1,8],[503,9],[26,5],[7,6],[1,2],[61,6],[4,3],[830,10],[66,9],[214,8],[361,9],[3,5],[1,1],[3,2],[5,3],[1,1],[63,6],[1,1],[31,5],[60,7],[1,1],[1,1],[11,4],[1,1],[27,5],[119,8],[11,5],[28,5],[1,2],[54,6],[157,9],[7,3],[38,9],[748,10],[42,6],[98,7],[198,8],[3,2],[562,10],[26,5],[834,10],[82,9],[41,6],[440,9],[8,4],[15,5],[13,4],[2,3],[101,7],[243,8],[15,4],[1,3],[83,7],[276,9],[2,5],[9,4],[21,7],[8,5],[6,3],[53,6],[459,9],[1,1],[48,9],[26,5],[2,2],[1,1],[58,6],[107,8],[1,1],[14,4],[48,7],[7,3],[325,10],[75,7],[14,4],[11,4],[594,10],[2,5],[119,7],[1,1],[3,2],[90,7],[43,6],[117,7],[6,4],[1,3],[4,5],[218,8],[29,9],[6,4],[6,4],[17,5],[9,4],[927,10],[1,1],[1,3],[1,1],[145,9],[14,4],[56,7],[11,4],[1,4],[246,8],[9,6],[56,6],[4,3],[104,7],[1,1],[82,8],[680,10],[801,10],[1,2],[3,2],[44,7],[20,5],[1,3],[152,9],[175,9],[1,1],[1,1],[6,5],[1,1],[55,8],[3,3],[219,8],[3,2],[26,5],[1,1],[3,9],[3,2],[871,10],[30,6],[3,3],[42,6],[220,8],[1,1],[16,5],[27,10],[25,7],[3,2],[462,9],[80,8],[613,10],[3,4],[16,6],[1,3],[83,7],[4,4],[81,7],[11,5],[7,3],[1,1],[79,7],[27,5],[129,8],[14,4],[2,2],[18,6],[1,2],[148,9],[13,5],[4,3],[62,6],[48,6],[4,3],[6,3],[21,7],[187,8],[1,1],[224,8],[4,3],[1,1],[146,8],[4,3],[11,4],[4,5],[2,3],[321,10],[725,10],[426,10],[242,10],[1,1],[2,2],[717,10],[2,4],[838,10],[129,8],[591,10],[288,9],[1,1],[132,8],[205,8],[27,7],[1,2],[24,7],[1,3],[128,9],[117,7],[1,3],[8,4],[14,4],[29,7],[37,6],[14,5],[5,3],[265,9],[27,6],[461,9],[32,6],[485,9],[5,3],[14,4],[1,1],[12,4],[2,5],[2,2],[1,1],[10,4],[69,7],[2,2],[1,1],[3,2],[5,5],[121,7],[28,5],[54,6],[2,2],[10,7],[70,7],[2,2],[3,2],[1,2],[1,1],[1,2],[13,4],[354,10],[785,10],[1,1],[1,7],[230,9],[23,5],[57,9],[58,6],[11,4],[1,1],[3,2],[3,3],[4,3],[13,6],[1,2],[114,7],[7,3],[302,9],[46,6],[32,8],[1,2],[23,5],[90,10],[9,8],[3,3],[12,5],[229,8],[51,6],[185,8],[12,5],[717,10],[31,5],[283,9],[1,1],[76,7],[9,4],[1,3],[1,1],[7,3],[1,1],[13,4],[65,8],[56,8],[201,8],[15,8],[2,4],[5,4],[15,4],[407,10],[1,1],[1,2],[447,9],[135,8],[23,8],[38,7],[550,10],[596,10],[63,6],[70,7],[199,9],[10,10],[1,2],[7,3],[842,10],[4,3],[1,2],[21,7],[1,4],[105,10],[1,1],[101,8],[7,4],[3,4],[478,9],[23,5],[5,4],[6,4],[252,9],[1,1],[3,2],[30,6],[7,3],[5,3],[96,7],[82,8],[1,1],[25,6],[554,10],[15,4],[216,8],[16,8],[9,4],[11,5],[15,6],[13,5],[46,7],[2,2],[183,10],[6,3],[7,4],[412,9],[191,8],[486,9],[7,3],[5,4],[4,4],[2,6],[1,1],[15,5],[7,5],[4,3],[9,4],[3,4],[58,6],[165,9],[200,8],[51,7],[8,6],[33,6],[509,9],[16,6],[18,5],[1,2],[147,8],[1,1],[322,9],[1,5],[11,8],[38,7],[171,9],[3,2],[40,6],[1,2],[24,5],[99,7],[55,6],[1,2],[953,10],[2,2],[1,1],[96,9],[10,4],[120,7],[5,3],[2,3],[28,6],[56,6],[5,6],[3,2],[29,5],[25,5],[175,8],[67,7],[11,7],[315,10],[30,5],[842,10],[123,7],[72,8],[43,7],[169,8],[2,2],[1,1],[19,5],[216,9],[18,5],[1,2],[1,1],[850,10],[9,4],[159,9],[1,5],[1,1],[5,3],[4,3],[1,4],[1,1],[690,10],[1,1],[460,9],[39,6],[184,9],[1,1],[39,7],[22,5],[1,1],[2,4],[5,3],[1,1],[1,5],[482,10],[20,6],[2,2],[194,9],[11,7],[5,6],[2,3],[51,6],[1,1],[79,7],[1,1],[3,3],[5,8],[2,2],[10,5],[1,2],[1,1],[1,1],[4,3],[55,7],[10,5],[76,7],[5,5],[5,3],[41,6],[6,3],[2,2],[5,3],[104,7],[7,6],[21,6],[1,3],[7,3],[85,7],[378,9],[4,4],[6,3],[122,7],[542,10],[503,9],[79,9],[11,7],[1,3],[45,7],[2,2],[10,4],[117,8],[2,4],[79,7],[59,7],[110,7],[1,1],[19,5],[23,8],[1,1],[1,1],[1,5],[2,2],[3,2],[249,8],[419,9],[137,8],[61,7],[7,3],[543,10],[14,4],[32,6],[15,8],[3,2],[1,2],[243,9],[5,3],[61,6],[20,7],[2,3],[1,2],[122,7],[363,9],[25,6],[174,9],[13,4],[340,9],[88,10],[44,6],[100,7],[92,8],[5,3],[49,6],[15,4],[555,10],[10,4],[19,5],[95,8],[1,1],[10,5],[223,10],[21,5],[65,7],[39,6],[707,10],[24,6],[10,4],[2,2],[149,8],[156,9],[2,3],[893,10],[377,10],[1,1],[38,6],[5,3],[13,6],[205,8],[54,7],[237,9],[477,9],[2,3],[418,9],[8,4],[45,8],[316,9],[11,5],[1,1],[14,4],[1,1],[15,6],[97,7],[6,3],[5,4],[1,1],[667,10],[1,4],[92,7],[16,7],[43,6],[179,8],[2,2],[1,1],[5,4],[12,4],[7,3],[8,4],[3,2],[2,2],[5,3],[13,4],[16,7],[1,1],[248,8],[435,10],[30,5],[138,8],[205,9],[3,3],[704,10],[1,1],[17,5],[1,1],[1,2],[27,5],[22,5],[26,5],[6,3],[30,6],[85,7],[1,1],[1,4],[28,6],[2,5],[1,1],[1,4],[1,1],[28,5],[870,10],[6,3],[10,5],[58,10],[891,10],[845,10],[2,2],[24,5],[99,7],[1,2],[2,2],[1,1],[36,9],[110,9],[5,3],[480,10],[43,8],[5,3],[363,9],[1,1],[28,5],[4,3],[358,9],[5,4],[33,6],[42,6],[222,8],[3,4],[3,3],[224,8],[259,10],[1,1],[39,7],[1,2],[141,10],[14,4],[1,1],[4,3],[8,4],[77,7],[11,6],[3,3],[117,7],[239,8],[3,2],[46,7],[168,10],[7,6],[1,1],[10,4],[197,9],[2,2],[2,4],[1,2],[2,4],[46,7],[1,1],[3,3],[6,4],[7,3],[306,9],[3,5],[24,5],[46,7],[432,10],[5,4],[20,5],[181,9],[91,8],[248,10],[8,5],[6,4],[1,1],[80,7],[970,10],[85,7],[40,7],[47,6],[7,3],[24,5],[120,7],[57,6],[1,1],[127,8],[145,8],[209,8],[680,10],[14,4],[1,1],[8,6],[1,1],[61,7],[15,4],[5,4],[369,9],[158,8],[5,5],[189,8],[1,1],[1,1],[2,3],[28,5],[941,10],[7,3],[21,5],[6,4],[453,9],[1,1],[209,9],[4,4],[426,10],[23,7],[341,10],[13,4],[39,6],[10,5],[29,5],[6,3],[15,4],[10,4],[1,2],[124,7],[9,7],[194,9],[14,5],[3,4],[1,2],[1,1],[94,8],[79,8],[1,4],[96,7],[114,9],[65,8],[25,5],[171,10],[30,5],[355,9],[108,8],[63,6],[5,4],[965,10],[363,10],[3,2],[42,8],[4,3],[3,4],[1,2],[1,5],[236,8],[3,7],[34,8],[49,9],[134,10],[30,5],[259,10],[111,7],[2,3],[967,10],[4,3],[85,9],[133,8],[6,5],[21,5],[1,1],[847,10],[20,5],[3,3],[265,9],[28,5],[799,10],[130,9],[31,5],[3,2],[60,6],[6,3],[17,5],[7,6],[40,7],[3,6],[108,8],[5,3],[75,7],[1,1],[4,5],[1,1],[2,2],[253,10],[58,8],[2,3],[12,4],[78,7],[62,8],[1,1],[44,10],[18,6],[243,9],[197,8],[61,7],[3,2],[45,6],[50,6],[243,8],[82,7],[3,4],[249,9],[57,10],[47,6],[6,4],[41,6],[205,8],[2,4],[183,8],[151,10],[204,9],[1,1],[126,7],[5,3],[274,9],[8,5],[3,3],[482,9],[397,9],[2,5],[1,1],[1,1],[1,1],[279,9],[2,3],[32,6],[1,2],[34,6],[3,2],[7,3],[1,1],[6,4],[2,3],[90,7],[96,7],[18,6],[127,7],[1,1],[183,8],[38,6],[21,5],[62,6],[3,4],[5,3],[111,9],[831,10],[457,9],[22,5],[59,6],[65,7],[3,3],[381,10],[115,7],[1,2],[63,6],[3,5],[17,7],[730,10],[1,1],[1,5],[2,5],[1,1],[1,3],[144,8],[120,7],[3,2],[2,5],[41,6],[146,8],[78,7],[11,4],[73,7],[7,3],[312,9],[1,1],[1,1],[52,6],[39,7],[1,1],[17,5],[344,9],[45,9],[10,5],[238,8],[3,2],[1,1],[5,4],[23,9],[85,7],[631,10],[25,5],[12,10],[17,7],[2,2],[269,9],[26,5],[5,4],[8,4],[3,2],[448,9],[49,7],[2,2],[1,2],[1,2],[503,9],[71,7],[81,7],[65,7],[15,5],[25,6],[15,4],[21,5],[462,9],[6,3],[70,9],[1,1],[2,2],[5,6],[505,9],[110,7],[206,9],[1,1],[910,10],[34,7],[10,4],[24,5],[77,7],[14,4],[148,10],[40,6],[108,8],[1,3],[13,4],[1,1],[77,7],[509,10],[5,3],[3,2],[18,8],[44,9],[64,9],[402,9],[2,5],[309,9],[1,1],[293,9],[280,9],[225,8],[4,4],[90,8],[155,10],[1,1],[2,2],[3,2],[6,4],[2,2],[7,5],[14,4],[1,1],[12,5],[1,1],[4,3],[154,8],[102,7],[7,3],[1,2],[1,1],[2,3],[191,8],[1,1],[18,5],[372,9],[61,7],[24,5],[17,5],[348,9],[2,2],[7,5],[24,5],[1,1],[2,4],[19,5],[2,2],[4,3],[2,3],[1,1],[60,6],[1,4],[4,4],[11,4],[1,1],[11,4],[24,5],[107,7],[1,1],[85,8],[12,4],[5,3],[30,5],[1,2],[81,8],[6,3],[1,2],[15,4],[9,4],[27,6],[22,5],[49,6],[1,3],[2,3],[395,9],[27,6],[26,5],[16,5],[120,8],[20,5],[445,9],[2,2],[5,3],[29,5],[140,8],[6,3],[5,3],[13,4],[211,10],[286,9],[3,3],[152,8],[31,7],[590,10],[20,9],[416,9],[1,1],[214,9],[242,8],[343,10],[12,6],[1,2],[1,1],[31,6],[177,8],[10,4],[5,5],[1,1],[18,5],[1,1],[6,5],[28,9],[662,10],[2,4],[2,3],[225,10],[59,7],[14,9],[23,7],[1,3],[1,1],[13,4],[11,4],[1,3],[30,5],[14,4],[3,2],[1,1],[1,1],[3,4],[324,10],[5,4],[22,6],[133,9],[498,9],[32,6],[66,7],[216,9],[3,2],[3,2],[186,9],[1,6],[3,3],[1,1],[126,7],[1,1],[22,7],[1,2],[368,10],[15,5],[4,4],[1,2],[13,6],[8,4],[975,10],[61,9],[1,4],[510,10],[4,3],[254,10],[4,3],[429,9],[28,6],[1,1],[3,2],[1,1],[23,6],[5,3],[1,2],[633,10],[1,1],[54,6],[1,1],[4,3],[51,6],[1,1],[99,7],[6,5],[49,7],[3,3],[1,1],[11,5],[276,9],[325,10],[518,10],[46,7],[12,4],[34,6],[149,8],[218,8],[2,6],[448,9],[60,8],[107,8],[108,7],[42,6],[1,6],[88,7],[67,8],[267,10],[13,5],[1,2],[30,6],[1,3],[9,4],[21,5],[33,7],[6,3],[19,10],[1,1],[1,1],[1,1],[118,7],[3,2],[139,8],[13,5],[1,1],[3,3],[8,4],[143,8],[2,3],[215,8],[3,5],[1,1],[883,10],[9,5],[6,3],[487,10],[81,7],[46,8],[6,4],[571,10],[2,2],[25,6],[197,9],[4,3],[3,4],[113,9],[3,4],[213,8],[206,8],[889,10],[45,8],[3,2],[3,2],[1,1],[42,6],[14,5],[30,5],[1,2],[2,2],[56,6],[887,10],[4,5],[3,2],[439,9],[2,2],[413,9],[3,2],[9,4],[22,6],[344,10],[2,2],[2,2],[124,8],[88,10],[681,10],[463,9],[90,7],[7,4],[9,5],[1,1],[3,2],[1,1],[1,2],[2,3],[1,4],[930,10],[427,9],[103,9],[66,7],[2,4],[179,8],[206,8],[3,9],[155,10],[6,4],[1,3],[1,1],[8,6],[85,8],[292,9],[3,2],[642,10],[1,1],[2,3],[7,3],[102,9],[6,3],[15,5],[4,4],[192,10],[7,3],[64,7],[153,8],[1,1],[3,2],[817,10],[4,4],[1,6],[195,9],[181,8],[6,6],[9,5],[3,6],[385,10],[114,7],[20,6],[6,4],[30,5],[62,6],[949,10],[23,5],[3,3],[372,9],[13,7],[130,9],[3,2],[6,6],[200,8],[96,7],[24,7],[1,1],[7,9],[7,6],[27,5],[263,9],[1,2],[37,7],[3,4],[58,6],[367,9],[6,3],[7,3],[26,5],[14,6],[659,10],[48,6],[22,5],[26,6],[5,3],[38,6],[1,6],[436,9],[84,10],[55,6],[22,10],[1,1],[6,3],[21,10],[68,8],[1,1],[264,9],[1,1],[3,4],[8,4],[1,2],[7,3],[2,2],[60,6],[55,6],[5,7],[1,2],[7,4],[1,1],[31,5],[6,4],[3,5],[1,1],[1,2],[75,7],[3,2],[18,7],[1,1],[3,2],[9,5],[32,6],[46,7],[20,5],[76,8],[23,5],[1,1],[548,10],[12,4],[16,5],[13,5],[44,6],[239,8],[3,2],[28,5],[118,9],[93,8],[105,7],[1,2],[5,3],[227,8],[209,8],[36,6],[749,10],[53,7],[723,10],[14,7],[134,8],[2,2],[24,5],[1,1],[6,3],[60,6],[16,8],[38,6],[1,3],[63,6],[18,5],[99,7],[1,1],[67,8],[2,2],[2,4],[43,6],[638,10],[6,3],[64,8],[16,7],[1,1],[3,3],[67,7],[6,4],[28,5],[1,1],[18,7],[4,3],[1,2],[1,2],[346,10],[130,8],[466,10],[7,3],[85,8],[98,7],[13,4],[2,2],[13,7],[6,6],[4,4],[31,6],[1,4],[793,10],[156,9],[2,2],[1,1],[6,3],[388,10],[188,10],[76,7],[23,6],[2,2],[115,9],[13,4],[355,10],[5,4],[33,6],[20,9],[3,2],[252,8],[81,8],[1,2],[1,1],[251,10],[12,4],[15,4],[1,2],[227,8],[1,1],[17,6],[55,6],[21,5],[756,10],[6,5],[1,1],[7,3],[84,9],[1,2],[254,8],[3,9],[25,6],[45,6],[1,1],[175,9],[473,10],[46,6],[14,5],[130,8],[109,9],[102,7],[1,3],[2,2],[24,5],[2,2],[67,7],[4,4],[1,2],[707,10],[3,2],[6,5],[196,8],[197,8],[40,6],[5,4],[45,6],[383,9],[1,4],[3,4],[82,9],[40,6],[793,10],[164,9],[15,6],[138,8],[1,3],[12,4],[128,10],[20,5],[2,10],[9,4],[19,5],[15,7],[1,2],[59,6],[107,7],[2,2],[121,8],[34,7],[120,8],[6,3],[1,1],[2,2],[3,2],[29,5],[846,10],[1,1],[48,6],[1,2],[613,10],[204,8],[106,8],[1,3],[6,3],[1,1],[6,4],[16,6],[546,10],[441,9],[204,8],[4,3],[29,6],[6,3],[72,7],[345,9],[212,9],[3,5],[75,7],[52,6],[53,6],[304,10],[5,5],[8,4],[1,1],[64,7],[11,5],[7,4],[14,4],[49,7],[1,2],[192,8],[17,8],[127,8],[3,5],[15,4],[28,5],[54,7],[14,6],[5,3],[30,5],[7,3],[6,3],[6,4],[216,8],[842,10],[301,9],[23,5],[541,10],[21,6],[6,3],[3,2],[12,4],[1,3],[63,7],[4,8],[367,9],[1,1],[509,9],[1,5],[37,7],[1,1],[507,10],[197,9],[1,1],[6,4],[18,5],[57,7],[196,9],[10,6],[15,5],[1,1],[219,10],[14,5],[208,8],[6,3],[1,2],[1,1],[97,8],[7,4],[7,5],[4,3],[20,7],[27,5],[56,7],[2,5],[196,8],[6,4],[27,5],[6,4],[330,9],[63,7],[1,1],[28,6],[11,5],[363,9],[6,3],[19,6],[7,3],[1,1],[36,6],[178,8],[47,6],[1,1],[397,9],[522,10],[48,9],[332,10],[1,4],[12,4],[233,10],[118,7],[4,6],[973,10],[5,3],[7,5],[820,10],[4,3],[7,3],[495,9],[85,7],[29,5],[396,9],[37,6],[12,4],[1,1],[1,1],[57,6],[8,5],[1,1],[94,8],[3,2],[3,2],[1,2],[1,1],[53,7],[799,10],[1,2],[24,5],[24,5],[1,1],[12,4],[24,6],[464,9],[78,8],[4,3],[384,9],[10,5],[25,10],[15,4],[3,3],[280,10],[351,9],[3,3],[1,2],[1,1],[10,10],[5,5],[4,4],[3,2],[2,2],[7,3],[45,9],[24,6],[1,1],[5,3],[1,1],[40,7],[2,4],[338,9],[14,6],[97,8],[25,5],[6,7],[36,7],[206,8],[1,4],[1,1],[73,7],[7,7],[2,2],[119,8],[112,7],[699,10],[2,4],[42,7],[218,8],[505,9],[8,5],[219,10],[361,10],[60,8],[66,8],[21,5],[244,8],[16,5],[23,6],[34,6],[113,7],[21,6],[30,10],[1,2],[1,2],[30,6],[1,1],[106,8],[16,5],[271,9],[4,5],[36,7],[71,8],[13,4],[57,6],[87,7],[43,7],[1,1],[10,4],[2,3],[41,9],[32,6],[18,8],[32,6],[62,8],[25,5],[1,1],[35,6],[1,1],[51,6],[48,6],[35,6],[105,7],[1,1],[1,1],[214,9],[170,8],[1,2],[1,5],[96,7],[1,2],[134,8],[472,9],[14,4],[37,7],[12,6],[8,5],[24,5],[9,5],[7,5],[17,9],[906,10],[1,1],[107,8],[8,4],[210,10],[123,9],[9,8],[3,2],[11,8],[861,10],[170,8],[175,10],[2,3],[52,7],[89,7],[15,4],[6,4],[1,1],[13,4],[112,7],[1,1],[19,5],[1,1],[1,1],[81,9],[1,1],[2,2],[1,1],[509,10],[1,1],[1,2],[338,9],[60,6],[14,4],[1,2],[80,7],[1,1],[90,7],[5,4],[10,4],[74,7],[145,9],[13,4],[6,5],[26,5],[374,9],[2,2],[3,2],[43,7],[887,10],[38,7],[1,1],[383,10],[44,6],[26,7],[12,4],[499,9],[5,5],[905,10],[1,1],[1,1],[1,1],[1,2],[88,9],[3,2],[1,1],[74,8],[5,3],[199,9],[7,4],[936,10],[41,6],[2,3],[1,2],[2,2],[1,4],[193,9],[1,1],[739,10],[25,5],[1,2],[7,3],[29,7],[5,4],[58,6],[34,7],[7,3],[11,5],[649,10],[51,6],[418,9],[340,9],[2,2],[153,9],[38,6],[1,2],[8,5],[82,7],[486,9],[312,9],[453,10],[72,7],[1,1],[3,3],[3,2],[6,3],[28,5],[7,3],[7,5],[138,9],[23,5],[1,4],[1,1],[38,8],[60,9],[28,6],[5,3],[167,9],[1,5],[29,9],[6,3],[5,4],[1,2],[53,6],[32,6],[1,1],[443,9],[75,8],[5,5],[6,4],[23,5],[1,3],[11,4],[46,7],[422,9],[7,6],[15,4],[62,6],[1,1],[182,9],[236,9],[1,1],[1,1],[24,7],[24,5],[113,8],[199,8],[3,4],[72,10],[50,6],[170,8],[2,5],[40,6],[2,2],[2,2],[178,9],[6,3],[454,10],[1,1],[1,1],[39,10],[6,3],[3,2],[11,5],[2,2],[201,8],[339,9],[452,10],[7,3],[13,5],[1,8],[57,6],[4,4],[9,4],[640,10],[116,7],[6,3],[7,4],[6,5],[1,1],[220,8],[78,9],[86,7],[1,3],[20,6],[8,4],[3,6],[115,8],[137,9],[49,6],[124,7],[422,10],[9,4],[1,2],[2,2],[27,8],[150,10],[7,4],[1,2],[1,1],[2,2],[397,9],[505,9],[13,7],[1,2],[1,1],[169,8],[75,7],[1,2],[2,5],[9,4],[35,6],[2,7],[15,6],[107,10],[260,9],[130,8],[14,4],[1,1],[467,9],[28,8],[93,8],[14,6],[45,6],[27,7],[228,9],[18,9],[1,2],[3,2],[841,10],[10,4],[7,4],[29,5],[347,10],[186,9],[176,9],[7,4],[1,1],[15,5],[3,3],[148,10],[1,1],[2,4],[84,7],[19,6],[42,6],[3,3],[111,7],[241,8],[7,3],[1,1],[6,6],[7,3],[30,6],[1,1],[2,3],[25,6],[5,3],[211,8],[647,10],[817,10],[7,4],[12,9],[475,9],[1,1],[1,2],[9,4],[3,2],[25,6],[41,10],[658,10],[3,2],[112,7],[3,4],[86,7],[1,3],[234,10],[1,1],[62,8],[1,3],[58,7],[11,7],[107,7],[2,3],[429,9],[3,6],[862,10],[1,1],[7,4],[365,9],[20,6],[3,2],[910,10],[755,10],[23,6],[9,5],[61,7],[458,10],[8,6],[190,8],[56,9],[7,5],[338,9],[115,8],[60,6],[554,10],[3,3],[25,5],[482,9],[1,1],[20,7],[752,10],[5,5],[3,2],[930,10],[3,6],[30,5],[1,3],[3,2],[210,8],[43,8],[18,7],[513,10],[15,4],[36,7],[9,7],[114,8],[2,2],[74,8],[845,10],[31,6],[893,10],[1,1],[78,10],[238,10],[14,5],[14,5],[4,3],[32,8],[30,5],[166,8],[12,5],[7,3],[23,8],[4,3],[6,5],[2,2],[10,5],[7,8],[54,6],[235,10],[424,9],[807,10],[178,8],[842,10],[36,8],[1,4],[469,9],[63,6],[3,3],[12,7],[1,2],[1,2],[7,6],[35,8],[36,7],[175,8],[1,1],[72,7],[971,10],[285,10],[3,2],[250,8],[41,6],[12,10],[5,3],[34,6],[2,3],[53,6],[154,10],[1,1],[2,2],[234,8],[437,9],[3,2],[1,1],[38,7],[3,3],[426,9],[932,10],[21,6],[823,10],[43,6],[1,4],[23,6],[1,6],[1,1],[3,5],[9,4],[115,7],[470,9],[9,4],[29,6],[1,3],[42,6],[1,1],[187,8],[206,8],[2,3],[5,3],[100,8],[288,9],[4,3],[73,8],[136,10],[1,1],[462,9],[1,1],[1,1],[130,10],[6,3],[80,8],[8,7],[1,5],[1,1],[329,10],[34,7],[3,3],[1,3],[820,10],[41,6],[2,4],[11,6],[1,3],[350,10],[1,2],[3,3],[3,2],[12,8],[25,6],[1,1],[25,7],[217,9],[6,4],[668,10],[7,7],[799,10],[25,6],[4,6],[14,5],[413,10],[2,2],[245,8],[1,3],[103,7],[288,9],[1,4],[1,1],[494,9],[1,1],[63,7],[14,4],[7,3],[53,6],[226,9],[113,7],[126,7],[7,6],[3,3],[2,2],[80,9],[1,1],[11,5],[10,4],[25,6],[1,2],[40,8],[194,8],[24,5],[14,4],[535,10],[8,4],[35,7],[13,6],[594,10],[143,9],[10,4],[1,1],[1,1],[24,5],[31,8],[7,4],[360,9],[392,9],[1,1],[633,10],[3,2],[97,7],[2,3],[111,7],[2,3],[357,9],[55,6],[3,4],[2,3],[47,6],[7,4],[198,8],[72,7],[229,8],[30,7],[1,3],[855,10],[19,7],[191,9],[510,9],[18,6],[127,7],[9,4],[1,1],[22,6],[84,7],[6,4],[1,4],[6,3],[3,2],[14,5],[2,3],[105,8],[1,1],[1,1],[5,3],[14,5],[6,3],[1,2],[11,4],[27,6],[3,3],[6,3],[623,10],[7,4],[6,8],[238,8],[45,6],[775,10],[46,7],[28,6],[1,1],[1,1],[1,1],[27,6],[8,5],[3,2],[935,10],[3,3],[862,10],[9,7],[125,8],[112,8],[411,10],[1,5],[1,1],[251,8],[19,5],[141,9],[3,2],[4,3],[173,9],[7,3],[266,9],[43,9],[18,5],[1,3],[3,4],[241,8],[457,9],[1,2],[1,3],[219,8],[2,3],[2,3],[7,3],[13,5],[2,3],[8,4],[17,6],[843,10],[6,3],[1,2],[29,5],[100,7],[75,7],[3,4],[28,8],[3,2],[387,10],[63,6],[1,1],[41,7],[26,7],[212,8],[31,5],[1,4],[91,7],[20,5],[82,7],[7,3],[584,10],[1,2],[1,2],[43,8],[1,2],[1,1],[3,2],[9,5],[1,1],[45,6],[7,5],[44,8],[49,6],[51,6],[12,4],[25,6],[1,2],[81,8],[8,5],[2,5],[2,3],[330,9],[36,7],[12,5],[143,10],[785,10],[3,5],[10,4],[266,9],[40,8],[1,1],[274,9],[41,8],[26,5],[1,1],[12,4],[23,6],[13,4],[7,6],[2,4],[126,7],[197,8],[1,1],[93,7],[33,6],[265,9],[1,1],[2,3],[2,8],[12,8],[524,10],[1,1],[85,7],[41,7],[3,3],[1,2],[520,10],[21,9],[1,1],[483,10],[53,7],[1,2],[277,10],[896,10],[1,1],[489,9],[1,2],[1,1],[1,2],[113,10],[5,3],[3,2],[10,4],[77,9],[1,2],[1,2],[48,8],[230,8],[1,1],[16,5],[10,4],[3,6],[376,9],[9,4],[15,4],[183,8],[24,5],[24,5],[1,1],[6,3],[41,6],[3,2],[88,8],[1,2],[1,3],[1,2],[1,2],[167,10],[5,4],[3,5],[1,2],[2,5],[101,7],[10,8],[1,1],[1,1],[2,2],[248,8],[437,9],[399,9],[377,9],[230,8],[250,9],[307,9],[22,5],[1,1],[42,8],[1,1],[26,6],[18,5],[78,9],[1,1],[2,3],[30,9],[6,8],[4,3],[30,5],[6,4],[8,5],[5,5],[10,5],[817,10],[5,3],[210,8],[84,7],[21,5],[171,8],[2,7],[141,8],[20,8],[1,1],[386,9],[243,8],[1,1],[423,10],[1,2],[1,5],[3,2],[108,8],[102,7],[27,6],[1,1],[249,10],[29,6],[17,6],[1,1],[157,8],[1,1],[69,7],[7,4],[14,4],[1,3],[27,5],[49,8],[1,3],[1,1],[1,1],[5,5],[1,1],[409,9],[10,4],[6,3],[459,9],[13,4],[18,7],[14,7],[5,3],[51,6],[1,1],[228,9],[51,6],[104,7],[15,5],[52,6],[4,3],[2,3],[251,9],[72,8],[4,3],[5,3],[137,9],[1,1],[1,1],[491,9],[2,2],[1,1],[346,9],[6,4],[16,8],[4,3],[6,6],[796,10],[3,2],[1,1],[7,3],[227,9],[15,6],[31,6],[3,4],[30,7],[46,7],[41,8],[81,8],[89,8],[47,7],[734,10],[94,9],[1,1],[15,5],[1,6],[1,2],[12,4],[2,4],[87,7],[116,7],[246,9],[8,4],[83,7],[2,2],[1,1],[4,3],[154,8],[188,9],[2,3],[92,7],[188,10],[27,6],[4,3],[102,8],[210,8],[2,3],[83,8],[451,9],[39,6],[612,10],[1,2],[18,8],[1,2],[3,2],[31,5],[78,9],[1,2],[2,2],[2,2],[107,10],[2,4],[252,8],[3,2],[15,5],[582,10],[35,7],[253,9],[205,8],[22,6],[12,8],[96,7],[159,9],[28,5],[1,4],[1,1],[1,1],[80,7],[112,7],[13,6],[406,10],[962,10],[1,1],[1,2],[6,4],[33,6],[4,3],[55,7],[2,3],[165,8],[232,8],[1,4],[52,7],[226,10],[1,2],[511,10],[3,2],[225,8],[18,7],[4,5],[30,5],[1,1],[11,5],[31,5],[153,8],[3,2],[9,4],[85,8],[165,8],[105,7],[368,9],[7,3],[41,6],[10,4],[228,9],[71,7],[31,5],[1,2],[474,9],[5,3],[518,10],[870,10],[101,7],[98,7],[22,7],[315,9],[704,10],[1,1],[2,4],[149,8],[59,6],[74,7],[1,2],[3,3],[281,9],[22,5],[74,7],[57,6],[79,7],[85,8],[30,8],[5,5],[4,3],[9,4],[1,1],[23,5],[193,9],[48,6],[1,2],[648,10],[404,10],[609,10],[13,4],[23,5],[21,5],[17,5],[51,7],[6,3],[4,3],[1,1],[28,6],[154,8],[211,8],[5,3],[13,4],[85,7],[2,3],[223,9],[69,8],[10,5],[3,3],[269,10],[26,5],[240,8],[15,4],[7,5],[1,1],[6,4],[153,9],[121,7],[25,5],[11,4],[25,7],[5,3],[7,4],[13,5],[308,10],[1,2],[3,4],[72,8],[1,1],[6,5],[63,8],[1012,10],[87,9],[9,4],[3,2],[354,10],[3,6],[5,4],[26,7],[97,8],[492,9],[1,1],[9,4],[166,8],[31,6],[42,8],[1,2],[158,8],[3,2],[174,9],[6,3],[1,1],[21,6],[2,2],[5,5],[1,1],[127,8],[3,2],[10,4],[193,10],[1,1],[188,9],[142,9],[1,1],[46,6],[16,5],[150,9],[13,4],[1,1],[502,10],[7,4],[5,4],[11,7],[1,3],[7,5],[1,1],[13,4],[1,1],[1,1],[859,10],[11,4],[154,9],[33,6],[2,3],[1,1],[90,10],[215,10],[1,1],[105,7],[24,5],[57,6],[161,9],[74,7],[1,2],[2,5],[1,1],[1,1],[197,9],[7,7],[1,3],[2,3],[1,1],[15,4],[264,9],[213,8],[120,7],[202,8],[15,6],[37,6],[8,5],[105,7],[1,1],[14,5],[1,2],[1,1],[3,2],[790,10],[2,2],[15,5],[1,2],[15,5],[295,9],[2,5],[7,4],[1,1],[143,10],[1,1],[23,5],[1,2],[91,8],[1,4],[107,8],[57,7],[672,10],[1,2],[243,8],[207,8],[241,9],[6,5],[1,2],[1,1],[152,8],[16,5],[24,6],[10,4],[56,7],[3,3],[45,7],[1,1],[1,2],[38,7],[1,1],[1,1],[583,10],[7,3],[1,1],[117,8],[22,5],[482,10],[15,5],[489,10],[157,9],[74,8],[8,5],[110,8],[3,2],[7,3],[41,7],[13,4],[3,2],[36,6],[233,9],[31,6],[6,3],[59,7],[38,6],[43,6],[2,5],[2,8],[55,7],[1,1],[13,6],[86,9],[6,4],[3,3],[28,7],[1,1],[127,8],[37,6],[90,8],[59,8],[3,3],[2,3],[402,9],[157,10],[4,6],[10,4],[249,9],[102,8],[2,3],[2,2],[30,7],[434,9],[58,7],[1,1],[1,3],[509,10],[25,5],[40,10],[60,6],[4,6],[2,2],[828,10],[107,9],[1,1],[10,8],[8,7],[44,7],[1,1],[7,3],[202,10],[31,5],[1,1],[1,1],[9,4],[1,3],[4,3],[5,3],[3,2],[42,7],[94,9],[656,10],[1,2],[4,4],[2,3],[940,10],[15,4],[43,6],[143,10],[35,7],[102,7],[2,2],[43,6],[9,4],[12,4],[913,10],[1,2],[429,9],[1,1],[265,10],[951,10],[42,6],[77,8],[101,7],[6,4],[6,3],[31,7],[118,9],[14,4],[1,1],[1,1],[54,6],[436,9],[471,9],[11,4],[9,4],[82,9],[1,3],[6,4],[133,8],[6,5],[378,10],[15,6],[40,6],[1,1],[111,8],[6,3],[7,5],[179,9],[74,9],[90,7],[1,1],[188,9],[9,4],[1,1],[3,2],[1,5],[5,7],[1,1],[7,5],[1,2],[23,7],[6,3],[109,9],[23,10],[642,10],[28,5],[1,1],[2,6],[65,7],[3,2],[1,3],[494,10],[271,9],[892,10],[57,6],[160,9],[45,7],[147,8],[3,5],[85,8],[1,1],[99,8],[364,9],[10,4],[4,3],[19,5],[98,7],[28,5],[50,8],[829,10],[1014,10],[6,3],[78,8],[1,1],[3,2],[2,2],[3,2],[35,6],[5,3],[395,10],[512,10],[667,10],[150,8],[16,5],[4,4],[44,6],[123,10],[21,5],[700,10],[1,1],[780,10],[334,9],[166,8],[1,2],[40,7],[27,7],[6,3],[10,5],[2,2],[438,9],[22,5],[1,1],[3,4],[27,8],[1,1],[1,1],[96,7],[1,2],[1,1],[7,7],[7,3],[1,2],[27,6],[2,3],[320,9],[295,10],[27,6],[6,4],[4,4],[31,6],[1,1],[1,1],[1,2],[10,6],[5,6],[7,5],[1,1],[210,9],[15,6],[1,1],[677,10],[82,10],[160,9],[11,4],[428,9],[123,7],[783,10],[4,3],[45,7],[220,10],[378,9],[1,2],[937,10],[155,8],[130,9],[479,9],[127,8],[15,4],[5,3],[5,3],[321,9],[7,5],[5,3],[82,8],[62,6],[1,1],[7,3],[62,7],[25,5],[14,6],[1,2],[16,5],[1,1],[2,3],[3,2],[6,5],[28,5],[30,9],[12,4],[155,8],[1,1],[2,2],[388,9],[112,8],[139,8],[23,5],[14,6],[7,4],[7,4],[4,7],[414,9],[5,3],[3,2],[57,8],[1,2],[1,1],[184,8],[1,1],[949,10],[35,7],[2,3],[120,8],[2,8],[4,4],[3,3],[16,6],[2,2],[3,3],[1,1],[47,8],[1,1],[8,6],[31,6],[71,10],[7,6],[25,8],[119,9],[231,9],[526,10],[27,5],[28,5],[1,4],[44,6],[1,1],[4,4],[130,9],[200,10],[7,4],[704,10],[26,6],[3,2],[5,5],[45,8],[1,2],[6,3],[409,9],[21,5],[873,10],[7,3],[18,5],[340,9],[7,3],[3,2],[483,9],[356,10],[1,1],[3,2],[123,8],[271,10],[642,10],[23,8],[1,1],[1,1],[428,9],[297,9],[53,6],[48,7],[258,10],[182,8],[2,2],[27,5],[2,3],[1,2],[944,10],[63,6],[15,4],[6,3],[56,6],[875,10],[35,6],[11,4],[62,8],[1,1],[8,5],[119,7],[5,3],[5,4],[1,1],[2,2],[1,1],[7,3],[2,4],[31,8],[65,8],[92,8],[3,2],[1,1],[223,8],[10,4],[8,5],[52,9],[10,5],[4,4],[1,1],[617,10],[4,3],[19,5],[2,2],[169,8],[102,8],[1,1],[213,8],[1,1],[389,9],[13,4],[25,8],[1,2],[3,3],[99,7],[1,1],[11,5],[48,8],[119,8],[1,2],[7,7],[96,8],[120,9],[76,8],[511,9],[30,5],[910,10],[210,8],[1,1],[1,2],[2,2],[956,10],[155,9],[215,9],[188,8],[1,1],[989,10],[1,1],[184,9],[15,4],[4,3],[148,9],[50,8],[23,5],[561,10],[364,9],[1,1],[2,3],[123,8],[9,10],[1,2],[124,10],[12,5],[867,10],[386,10],[679,10],[7,3],[484,10],[7,7],[1,5],[262,9],[20,5],[3,3],[5,3],[127,7],[439,10],[249,10],[3,3],[3,2],[18,5],[303,9],[21,6],[78,7],[2,3],[176,10],[6,3],[611,10],[7,3],[175,9],[36,6],[5,3],[7,3],[42,6],[24,5],[33,10],[390,9],[18,5],[4,3],[2,2],[1,1],[1,1],[1,2],[6,3],[19,5],[202,8],[120,7],[68,7],[9,4],[100,9],[56,6],[1,1],[41,6],[6,3],[24,5],[6,4],[14,4],[5,4],[337,9],[123,7],[13,4],[9,5],[179,8],[14,4],[26,5],[989,10],[2,3],[1,6],[502,10],[174,9],[1,3],[17,5],[83,7],[39,6],[7,3],[7,3],[12,4],[3,4],[14,4],[1,2],[1007,10],[76,8],[1,1],[5,3],[693,10],[1,1],[104,8],[58,7],[16,5],[103,7],[7,7],[1,1],[806,10],[124,7],[413,10],[14,5],[49,7],[4,3],[8,5],[110,7],[4,4],[1,2],[2,7],[43,8],[4,3],[79,7],[3,4],[17,5],[6,3],[1,3],[57,7],[343,9],[120,7],[1,1],[970,10],[2,2],[10,5],[798,10],[54,8],[249,8],[12,4],[2,2],[13,4],[1,1],[20,6],[228,8],[494,9],[1,1],[3,2],[489,9],[6,4],[7,3],[87,8],[282,10],[1,1],[4,3],[477,9],[1,1],[8,4],[194,8],[1,3],[36,6],[276,9],[408,9],[140,8],[1,1],[810,10],[11,4],[1,1],[3,3],[1,3],[534,10],[41,7],[988,10],[1,1],[7,4],[430,9],[18,5],[20,8],[7,5],[1,2],[9,6],[1,2],[107,7],[31,8],[29,6],[1,2],[365,9],[39,7],[31,7],[822,10],[198,8],[1,1],[187,10],[4,4],[1,1],[213,8],[65,9],[18,5],[640,10],[6,3],[87,7],[90,7],[29,7],[999,10],[40,7],[2,6],[132,8],[3,3],[2,3],[21,5],[8,6],[1,1],[5,3],[35,6],[22,5],[123,9],[331,10],[2,2],[1,1],[2,3],[6,3],[142,8],[27,9],[87,7],[113,7],[8,5],[2,2],[3,2],[98,9],[408,9],[1,2],[19,5],[118,7],[8,5],[763,10],[229,8],[1,1],[109,10],[184,9],[2,2],[864,10],[248,8],[14,4],[1,1],[21,8],[52,10],[764,10],[32,7],[60,8],[283,9],[1,1],[263,9],[259,10],[8,4],[15,9],[469,9],[112,10],[10,4],[3,2],[114,8],[2,3],[1,1],[2,3],[24,5],[833,10],[27,7],[651,10],[247,8],[196,9],[84,7],[191,8],[4,9],[8,4],[70,9],[206,8],[27,7],[72,10],[1,1],[665,10],[6,3],[451,9],[5,3],[7,3],[96,8],[4,9],[13,5],[127,7],[210,10],[2,2],[777,10],[85,7],[58,7],[2,4],[1,2],[2,3],[1,1],[2,3],[235,8],[4,6],[1,3],[5,4],[11,5],[1,1],[377,10],[3,4],[3,2],[209,10],[12,6],[238,8],[1,1],[729,10],[13,4],[97,8],[1,1],[554,10],[80,9],[30,5],[207,8],[121,8],[3,2],[3,3],[144,8],[10,4],[59,8],[511,9],[13,5],[7,5],[39,7],[19,5],[7,3],[12,4],[198,8],[404,10],[1,3],[99,7],[71,7],[3,2],[1,2],[112,7],[1,6],[234,10],[20,8],[7,5],[2,5],[9,6],[9,4],[3,2],[35,9],[112,8],[374,9],[211,10],[1,1],[29,6],[392,9],[828,10],[105,8],[27,6],[2,2],[31,5],[28,5],[206,8],[10,4],[119,7],[118,8],[16,9],[5,3],[37,6],[57,7],[950,10],[193,8],[5,5],[90,8],[1,2],[3,2],[23,6],[4,5],[353,10],[4,4],[1,3],[17,5],[97,7],[250,8],[4,4],[2,2],[30,7],[509,9],[1,1],[99,8],[11,4],[68,7],[7,3],[1,1],[15,7],[36,8],[876,10],[4,3],[4,4],[48,7],[101,7],[15,4],[2,3],[1,1],[1,2],[288,9],[27,5],[2,3],[110,7],[90,7],[27,6],[26,5],[13,4],[443,9],[277,9],[2,4],[10,4],[151,8],[5,3],[103,10],[167,9],[310,9],[1,1],[1,1],[6,3],[7,3],[1,1],[94,7],[409,9],[1,1],[578,10],[69,7],[9,4],[7,7],[88,7],[38,6],[3,2],[46,6],[24,5],[22,5],[14,7],[1,1],[4,4],[16,7],[398,9],[43,6],[1,2],[820,10],[1,1],[451,9],[2,2],[1,3],[2,2],[3,3],[10,4],[1,1],[22,6],[2,2],[31,5],[6,3],[115,8],[2,2],[1,2],[26,7],[74,7],[3,2],[15,4],[1,1],[20,5],[7,3],[28,9],[18,5],[2,8],[189,9],[649,10],[2,3],[6,4],[1,1],[2,3],[10,4],[50,6],[3,2],[283,9],[1,3],[241,8],[58,6],[1,3],[196,8],[5,5],[146,8],[2,3],[1,1],[1,2],[185,10],[538,10],[125,8],[300,10],[12,4],[41,7],[3,4],[11,6],[2,2],[1,1],[3,4],[41,8],[744,10],[7,3],[267,9],[811,10],[3,2],[172,8],[26,5],[287,9],[54,6],[26,5],[18,5],[4,3],[1,1],[284,9],[149,8],[1,1],[85,8],[16,5],[119,10],[6,4],[74,9],[13,6],[3,3],[263,9],[42,6],[215,10],[11,4],[208,9],[7,3],[1,3],[31,5],[3,2],[3,3],[867,10],[127,7],[19,9],[14,6],[299,9],[439,9],[12,6],[98,8],[197,8],[122,7],[180,9],[44,6],[3,3],[2,2],[2,5],[108,7],[63,6],[2,2],[1,1],[15,5],[2,2],[330,10],[3,3],[238,9],[101,7],[1,1],[361,9],[53,6],[981,10],[198,10],[34,7],[109,8],[1,1],[399,9],[1,2],[1,3],[5,3],[1,2],[54,8],[21,5],[19,6],[103,7],[1,1],[25,6],[4,3],[95,8],[55,7],[1,5],[12,4],[28,6],[36,6],[216,9],[53,6],[24,7],[124,7],[2,3],[13,4],[15,4],[23,5],[161,8],[4,4],[51,7],[155,8],[22,5],[389,9],[244,9],[452,9],[107,9],[225,8],[2,2],[7,5],[2,5],[142,8],[2,3],[22,5],[4,4],[61,6],[7,6],[3,7],[54,6],[49,6],[11,5],[31,5],[589,10],[2,2],[199,8],[5,4],[5,3],[954,10],[76,7],[347,9],[106,7],[1,1],[392,9],[682,10],[83,7],[94,7],[3,2],[1,1],[11,5],[1,1],[1,1],[197,9],[136,8],[2,2],[23,7],[10,4],[11,6],[1,2],[14,4],[940,10],[56,8],[1,1],[12,5],[131,8],[1,1],[176,8],[3,2],[36,9],[11,10],[171,8],[1,2],[1,1],[3,3],[13,5],[2,2],[259,9],[3,3],[1,1],[3,3],[329,10],[56,7],[1,2],[6,3],[1,1],[420,9],[302,9],[850,10],[12,4],[157,8],[3,2],[77,9],[1,1],[3,4],[1,2],[1,1],[1,1],[61,7],[60,8],[3,2],[49,7],[1,1],[2,2],[4,4],[1,1],[41,6],[25,8],[52,8],[1,1],[1,1],[1,1],[1,1],[784,10],[863,10],[857,10],[2,4],[137,8],[33,6],[1,1],[1,1],[4,3],[725,10],[10,4],[686,10],[2,2],[2,2],[6,3],[1,1],[2,2],[2,3],[3,2],[1,1],[28,6],[169,8],[11,4],[63,7],[78,8],[117,7],[7,3],[3,5],[7,4],[1,1],[88,7],[20,5],[28,5],[1,1],[30,6],[73,7],[61,8],[1,2],[15,6],[157,10],[162,8],[2,2],[13,5],[2,3],[369,10],[7,5],[41,7],[7,5],[60,6],[756,10],[117,7],[936,10],[1,1],[1,1],[3,2],[2,2],[1,3],[58,6],[502,10],[169,8],[858,10],[3,5],[30,7],[43,6],[13,5],[2,4],[6,3],[3,2],[4,3],[5,4],[757,10],[2,3],[611,10],[48,6],[11,4],[104,8],[276,9],[5,3],[2,3],[158,9],[114,10],[5,3],[1,1],[1,2],[24,8],[307,9],[10,4],[103,7],[294,9],[2,2],[1,1],[2,5],[27,6],[854,10],[21,6],[1,2],[3,2],[142,9],[6,3],[246,8],[21,6],[81,7],[27,5],[29,5],[4,3],[2,2],[1,1],[3,2],[1,2],[2,2],[2,2],[42,8],[3,2],[12,4],[1,1],[26,6],[9,7],[7,3],[1,1],[5,4],[84,8],[3,3],[1,1],[209,8],[306,10],[466,9],[73,8],[1,1],[42,6],[2,2],[53,6],[7,4],[87,8],[3,2],[135,10],[596,10],[24,5],[1,1],[287,9],[1,1],[202,8],[212,9],[4,3],[165,8],[45,6],[43,6],[89,9],[229,9],[292,9],[209,9],[72,7],[2,2],[1,1],[118,7],[85,7],[61,6],[7,3],[154,9],[169,8],[13,4],[912,10],[53,7],[53,8],[46,8],[12,5],[639,10],[1,1],[4,6],[2,2],[4,3],[2,3],[233,8],[12,4],[1,2],[53,8],[28,5],[1,1],[52,7],[1,2],[43,6],[1,1],[9,6],[76,8],[31,9],[5,4],[197,10],[606,10],[16,6],[388,9],[1,3],[1,7],[5,4],[287,9],[1,1],[297,10],[75,7],[6,3],[87,8],[28,9],[10,4],[503,9],[25,8],[107,7],[43,7],[1,1],[1,2],[181,8],[1,1],[29,8],[1,2],[1,2],[1,1],[3,2],[21,6],[427,10],[119,8],[4,3],[29,5],[4,4],[8,5],[4,3],[6,3],[98,9],[1,2],[9,5],[1,1],[1,2],[3,2],[9,6],[319,9],[705,10],[1,3],[35,7],[2,3],[491,9],[691,10],[5,3],[473,10],[6,4],[655,10],[22,5],[13,4],[447,9],[2,5],[165,8],[10,6],[1,1],[400,9],[206,8],[7,3],[21,6],[5,6],[105,10],[1,1],[3,3],[1,1],[1,3],[1,2],[24,5],[504,9],[1,5],[56,6],[4,3],[1,1],[110,8],[49,7],[17,5],[37,6],[383,10],[1,1],[5,3],[3,3],[3,2],[1,1],[1,1],[10,6],[280,9],[1,1],[100,7],[89,8],[2,2],[1,3],[5,4],[1,2],[9,4],[1,1],[246,8],[23,6],[1,2],[3,2],[183,9],[3,4],[1,1],[30,8],[56,7],[18,5],[2,2],[19,5],[330,9],[47,7],[14,5],[34,8],[3,2],[144,9],[2,4],[95,7],[64,7],[2,2],[15,9],[40,10],[6,3],[14,4],[470,9],[1,1],[60,6],[80,8],[22,5],[56,7],[27,7],[3,2],[380,9],[134,8],[1,1],[400,9],[29,5],[10,6],[248,9],[386,9],[1,3],[52,6],[747,10],[3,2],[163,10],[39,7],[371,10],[16,6],[127,7],[88,9],[8,5],[1,2],[6,3],[94,7],[24,8],[26,5],[3,2],[170,9],[2,4],[16,7],[53,7],[29,5],[3,3],[3,3],[45,8],[18,7],[221,9],[822,10],[3,2],[2,2],[97,7],[92,8],[15,4],[6,4],[1,1],[4,7],[58,7],[41,6],[257,9],[1,2],[30,6],[11,6],[71,7],[1,1],[1,1],[40,7],[6,3],[2,2],[3,7],[50,6],[15,4],[6,6],[579,10],[9,4],[1,3],[1,1],[224,9],[11,4],[4,6],[66,8],[1,3],[84,7],[32,9],[17,5],[491,9],[444,10],[4,3],[490,10],[518,10],[14,4],[1,2],[3,3],[1,3],[295,10],[453,9],[5,3],[3,2],[10,7],[2,6],[63,6],[200,8],[40,7],[297,9],[118,9],[80,8],[6,7],[101,7],[2,3],[165,9],[506,9],[23,6],[378,9],[49,6],[1,1],[775,10],[10,4],[10,6],[922,10],[3,2],[21,5],[1,2],[4,3],[318,10],[1,2],[1,2],[25,7],[175,9],[3,3],[456,9],[14,4],[318,9],[13,4],[11,4],[687,10],[627,10],[464,10],[2,3],[8,6],[60,7],[1,1],[110,8],[915,10],[2,3],[110,7],[4,4],[12,4],[6,3],[13,4],[557,10],[1,2],[6,4],[383,10],[2,2],[645,10],[2,6],[3,2],[18,5],[78,10],[5,3],[2,2],[2,2],[1,1],[175,8],[226,8],[2,2],[59,6],[8,5],[3,2],[2,2],[1,1],[1,1],[7,4],[6,4],[13,4],[14,6],[1,6],[39,6],[444,10],[2,3],[227,9],[2,2],[71,7],[83,7],[49,8],[83,9],[1,1],[5,4],[47,7],[79,7],[153,10],[148,10],[71,7],[115,7],[7,4],[23,6],[284,9],[113,8],[342,10],[15,7],[1,1],[214,9],[63,9],[1,2],[1,5],[123,8],[47,6],[31,6],[205,8],[840,10],[113,8],[6,6],[45,6],[11,6],[1,3],[19,5],[1,7],[4,3],[53,6],[2,3],[18,5],[1,1],[75,8],[3,2],[1,1],[87,9],[121,9],[29,5],[119,7],[31,5],[2,3],[272,10],[1,1],[4,3],[25,7],[6,3],[57,6],[3,2],[1,1],[285,10],[1,2],[4,5],[8,5],[2,3],[61,9],[1,4],[202,8],[2,2],[1,1],[1,4],[76,8],[1,1],[1,1],[56,8],[123,8],[139,9],[1,1],[256,9],[21,5],[373,10],[991,10],[4,3],[3,3],[1,1],[6,4],[770,10],[3,4],[50,7],[27,5],[2,2],[27,5],[75,7],[214,8],[8,4],[3,2],[90,7],[171,8],[1,3],[2,4],[51,6],[103,7],[6,4],[10,4],[14,7],[2,4],[81,7],[2,2],[41,6],[80,7],[4,3],[1,1],[29,5],[1,1],[8,5],[8,4],[11,4],[1,2],[220,8],[941,10],[1,3],[144,9],[1,1],[5,3],[1,1],[24,5],[13,5],[27,5],[112,9],[7,3],[3,2],[205,10],[487,9],[245,9],[2,2],[54,6],[737,10],[1,2],[36,10],[8,4],[7,4],[64,9],[23,7],[178,10],[147,8],[122,8],[66,10],[5,4],[3,2],[662,10],[236,8],[9,7],[95,7],[2,2],[925,10],[2,2],[4,5],[4,4],[2,4],[5,8],[8,4],[13,6],[3,2],[20,5],[887,10],[890,10],[154,9],[98,7],[1,1],[211,9],[9,5],[3,6],[170,8],[2,2],[5,4],[252,9],[2,2],[70,7],[7,6],[14,5],[20,5],[2,2],[4,3],[7,4],[2,5],[182,8],[1,1],[1,2],[2,5],[3,2],[15,4],[32,7],[5,3],[177,9],[19,6],[495,9],[61,9],[11,4],[2,2],[186,9],[1,4],[5,4],[27,5],[1,1],[199,8],[200,9],[1,1],[1,1],[25,5],[15,4],[162,10],[62,6],[396,9],[31,10],[1,1],[438,9],[1,1],[2,4],[392,10],[7,3],[3,3],[82,7],[33,6],[24,5],[32,8],[7,3],[1,2],[86,8],[17,5],[507,9],[150,8],[7,3],[1,1],[1,1],[1,1],[1,1],[39,6],[119,8],[374,10],[4,8],[382,9],[12,6],[784,10],[127,7],[1,1],[381,10],[26,7],[9,5],[25,6],[6,3],[30,5],[598,10],[220,8],[581,10],[7,4],[2,2],[9,8],[3,4],[2,2],[1,1],[8,9],[641,10],[1,2],[23,5],[2,2],[37,6],[293,9],[2,2],[18,5],[3,2],[324,9],[108,10],[30,5],[62,6],[17,5],[1,1],[68,10],[247,10],[80,7],[9,5],[12,5],[17,7],[156,9],[63,6],[4,5],[2,2],[222,8],[4,4],[29,6],[1,2],[430,9],[51,8],[303,9],[1,2],[172,9],[3,2],[29,5],[1,2],[29,7],[34,6],[26,5],[32,6],[1,1],[3,2],[112,9],[2,2],[988,10],[1,1],[13,5],[236,8],[135,8],[99,7],[1,2],[5,3],[101,8],[1,3],[6,3],[11,6],[29,6],[332,9],[3,5],[4,3],[7,3],[3,2],[1,1],[18,6],[63,7],[38,7],[6,3],[44,9],[6,3],[1,1],[185,9],[3,2],[27,6],[890,10],[728,10],[1,4],[32,6],[15,4],[125,7],[10,4],[95,8],[1,4],[783,10],[5,3],[3,2],[250,8],[478,9],[498,9],[1,1],[1,2],[93,7],[6,4],[110,9],[312,10],[34,7],[221,8],[3,2],[2,2],[85,7],[1,2],[1,1],[45,10],[2,6],[38,9],[237,8],[5,3],[7,5],[6,4],[7,3],[12,7],[607,10],[453,9],[105,7],[86,8],[3,3],[1,3],[1,1],[104,7],[226,8],[58,7],[1,1],[87,7],[486,9],[3,2],[995,10],[11,5],[10,4],[50,6],[3,3],[46,6],[3,2],[15,5],[304,9],[60,10],[102,10],[762,10],[318,9],[26,5],[3,5],[17,5],[6,3],[1,1],[5,4],[97,10],[3,2],[50,6],[14,4],[1,1],[7,3],[41,7],[59,6],[14,4],[8,5],[401,10],[38,7],[21,7],[1,3],[482,9],[1,1],[10,4],[8,5],[18,5],[3,3],[4,3],[60,6],[756,10],[664,10],[3,4],[9,5],[128,9],[15,4],[7,4],[240,8],[476,9],[2,5],[1,2],[55,6],[7,3],[106,8],[10,5],[236,8],[183,10],[815,10],[151,8],[31,6],[407,9],[2,4],[7,4],[115,9],[359,9],[16,8],[1,1],[1,3],[204,8],[1,2],[136,9],[11,5],[139,9],[1,2],[3,4],[4,3],[6,4],[23,10],[7,3],[1,2],[51,9],[99,7],[1,1],[395,9],[24,5],[2,4],[22,8],[12,10],[9,6],[1,1],[105,8],[221,9],[135,8],[7,3],[22,5],[14,5],[30,6],[70,8],[763,10],[815,10],[7,6],[106,8],[454,10],[47,6],[1,1],[6,3],[182,9],[49,6],[4,3],[855,10],[6,4],[1,1],[3,3],[1,3],[87,7],[496,10],[6,3],[25,5],[14,4],[204,9],[3,5],[938,10],[99,7],[155,10],[61,6],[209,8],[28,5],[333,9],[10,4],[323,9],[24,7],[2,2],[63,6],[14,4],[3,2],[1,1],[1,2],[30,5],[16,5],[1,2],[75,7],[3,2],[93,7],[3,5],[15,5],[4,5],[259,9],[1,1],[36,8],[654,10],[2,2],[5,3],[10,4],[391,9],[5,4],[24,5],[20,6],[1,1],[15,4],[12,4],[272,9],[120,9],[1,2],[36,6],[3,3],[3,2],[382,10],[179,9],[65,7],[31,7],[393,9],[37,6],[928,10],[743,10],[299,9],[159,9],[1,1],[1,1],[1,1],[57,10],[35,6],[233,9],[2,4],[218,8],[125,7],[125,7],[204,8],[351,9],[14,6],[126,7],[4,3],[1,3],[283,10],[227,9],[1,1],[7,3],[79,9],[2,2],[17,5],[53,6],[685,10],[4,4],[1,1],[988,10],[213,8],[18,5],[1,1],[184,8],[1,1],[9,4],[14,6],[9,4],[3,2],[5,7],[27,6],[172,8],[15,4],[13,4],[5,3],[70,7],[39,10],[1,2],[1017,10],[4,3],[3,2],[898,10],[3,2],[27,5],[710,10],[7,3],[4,5],[52,6],[2,2],[60,6],[5,4],[1,1],[23,6],[115,7],[908,10],[5,6],[1,3],[9,5],[20,7],[2,9],[859,10],[1,1],[38,6],[41,6],[3,3],[13,5],[1,1],[2,3],[2,2],[2,3],[2,4],[98,8],[71,8],[33,8],[288,9],[3,4],[829,10],[537,10],[1,1],[82,7],[1017,10],[241,9],[25,7],[1,1],[1,10],[18,5],[2,2],[241,8],[7,3],[8,6],[63,8],[42,6],[46,7],[1,2],[55,8],[2,2],[415,10],[26,5],[1,2],[459,9],[182,8],[2,4],[8,6],[635,10],[4,3],[3,2],[393,9],[7,3],[50,6],[15,7],[152,8],[25,5],[26,5],[81,7],[33,6],[11,5],[979,10],[3,2],[1,1],[229,10],[222,10],[2,2],[3,5],[21,5],[52,7],[2,2],[20,7],[73,7],[805,10],[7,3],[7,3],[4,4],[229,8],[2,3],[46,6],[471,9],[14,4],[34,6],[8,4],[3,4],[19,6],[174,9],[35,6],[7,3],[7,4],[877,10],[10,7],[2,3],[63,6],[1,1],[56,6],[414,10],[1,1],[1,2],[38,8],[6,5],[37,6],[1,1],[5,3],[5,3],[7,4],[1,3],[2,2],[5,5],[9,4],[3,2],[357,9],[25,7],[7,3],[35,6],[31,7],[53,6],[278,9],[60,6],[19,6],[399,9],[6,3],[19,6],[21,5],[28,6],[5,3],[5,3],[40,6],[1,3],[82,7],[3,2],[5,3],[59,6],[15,4],[906,10],[41,6],[7,3],[3,3],[56,10],[51,8],[238,8],[64,7],[1006,10],[39,6],[92,8],[3,2],[2,2],[92,7],[63,8],[114,7],[58,7],[62,6],[141,9],[1,6],[29,5],[493,9],[1,2],[197,9],[76,9],[23,7],[129,8],[29,7],[2,2],[29,5],[1,3],[4,4],[7,4],[31,6],[5,3],[44,6],[5,4],[1,2],[17,6],[1,3],[13,4],[1,3],[1,3],[30,5],[5,3],[41,7],[4,3],[2,2],[18,5],[803,10],[7,3],[189,8],[83,8],[206,10],[5,3],[108,8],[229,8],[85,7],[56,7],[40,7],[174,8],[2,3],[2,4],[5,3],[203,8],[17,6],[386,9],[343,10],[4,3],[88,7],[1,1],[97,8],[61,7],[72,8],[6,3],[3,2],[24,5],[21,7],[1,1],[116,9],[24,6],[32,6],[3,2],[3,2],[1,1],[20,5],[80,9],[66,7],[3,2],[86,9],[4,5],[1,1],[4,7],[2,2],[18,5],[1,2],[2,2],[20,5],[297,9],[1,2],[561,10],[3,2],[233,9],[29,7],[304,9],[102,7],[1,1],[6,3],[5,3],[1,2],[108,7],[186,8],[7,3],[168,8],[2,4],[17,5],[2,4],[43,6],[15,5],[1,2],[1,5],[10,4],[22,5],[2,2],[19,7],[794,10],[170,8],[3,3],[3,2],[5,3],[15,4],[3,2],[104,9],[13,4],[52,6],[3,2],[1,1],[5,3],[142,9],[13,4],[7,4],[23,5],[110,8],[39,6],[516,10],[3,3],[2,2],[3,3],[248,8],[126,7],[14,4],[2,2],[1,1],[402,10],[15,5],[385,10],[30,7],[1,1],[234,9],[84,10],[43,8],[1,1],[175,9],[891,10],[54,8],[6,3],[798,10],[424,9],[83,8],[14,5],[12,4],[3,2],[514,10],[4,4],[44,7],[14,4],[1,1],[1012,10],[3,4],[82,7],[3,2],[5,3],[222,8],[3,3],[10,7],[3,2],[1,1],[41,6],[33,6],[3,3],[1,1],[92,10],[2,10],[2,2],[22,6],[26,5],[54,6],[2,2],[28,5],[5,3],[46,6],[182,9],[7,5],[145,8],[456,10],[1,1],[89,7],[204,9],[50,7],[2,2],[194,8],[8,6],[9,4],[12,7],[8,4],[10,6],[6,9],[1,1],[4,5],[19,5],[2,4],[301,10],[143,8],[7,4],[145,10],[2,2],[7,4],[18,5],[17,5],[1,1],[1,1],[2,2],[30,5],[1,4],[16,5],[2,3],[270,10],[255,9],[327,9],[339,9],[1,1],[80,10],[275,9],[156,8],[1,1],[4,6],[1,2],[117,7],[47,8],[9,4],[8,5],[44,6],[9,5],[51,7],[72,10],[87,7],[459,9],[302,9],[12,5],[4,5],[188,9],[93,8],[15,6],[1,1],[22,5],[40,6],[189,9],[1,1],[5,3],[1,2],[9,6],[2,3],[99,10],[72,8],[1,2],[1,2],[26,6],[1,2],[1,2],[5,3],[47,8],[1,1],[2,2],[69,9],[717,10],[6,5],[228,9],[31,6],[19,5],[5,4],[2,2],[50,6],[38,6],[485,9],[141,8],[247,8],[13,4],[17,6],[46,7],[77,7],[3,2],[85,7],[11,4],[87,8],[1,3],[2,4],[511,10],[83,7],[1,1],[949,10],[281,9],[328,10],[813,10],[67,10],[1,2],[4,5],[1,1],[559,10],[3,2],[53,6],[5,4],[439,10],[1,2],[3,2],[1,1],[3,2],[765,10],[2,2],[7,4],[3,3],[5,3],[1,1],[483,10],[36,6],[154,10],[2,2],[3,3],[4,4],[1,3],[183,8],[4,4],[25,6],[2,2],[1,3],[7,4],[2,2],[16,6],[15,5],[14,5],[4,6],[3,2],[2,2],[137,9],[8,4],[19,5],[42,6],[2,3],[88,7],[3,2],[266,9],[16,5],[487,9],[704,10],[2,2],[102,9],[1,1],[425,9],[1,1],[120,7],[1,1],[1,1],[176,10],[1,3],[10,7],[1,1],[14,4],[4,3],[44,7],[1,2],[31,5],[16,5],[9,5],[572,10],[205,8],[7,3],[36,6],[16,6],[288,9],[264,9],[3,2],[255,8],[97,7],[628,10],[36,6],[51,8],[105,8],[6,5],[389,9],[1,1],[7,5],[57,7],[193,8],[6,8],[11,4],[32,6],[113,9],[51,8],[268,9],[1,3],[63,6],[1,1],[3,2],[25,5],[19,7],[6,3],[6,3],[26,5],[1,1],[91,10],[5,5],[7,3],[114,9],[18,6],[1,1],[1,1],[1,3],[297,10],[2,3],[109,10],[359,10],[22,5],[22,5],[6,6],[3,2],[2,2],[1,3],[110,8],[2,2],[21,6],[181,9],[742,10],[6,3],[1,1],[127,8],[12,5],[168,9],[107,8],[667,10],[14,4],[25,6],[33,6],[134,9],[1,2],[594,10],[2,2],[2,2],[29,7],[35,6],[29,6],[1,1],[875,10],[79,7],[59,6],[403,9],[2,3],[3,2],[5,5],[7,3],[724,10],[1,2],[175,10],[13,7],[6,3],[14,4],[1,1],[1,1],[57,6],[21,8],[697,10],[7,3],[955,10],[3,2],[998,10],[3,2],[41,8],[346,10],[1,6],[1013,10],[92,7],[2,3],[125,7],[1,1],[6,3],[15,4],[859,10],[57,6],[5,4],[2,2],[12,4],[208,9],[4,3],[945,10],[14,7],[52,6],[63,7],[1,4],[29,6],[7,3],[3,6],[1,1],[1,5],[2,2],[1,3],[74,7],[88,9],[32,6],[361,9],[25,5],[4,4],[10,4],[5,3],[145,8],[39,6],[6,3],[1,1],[6,3],[2,3],[45,7],[3,3],[221,8],[40,8],[38,6],[15,6],[23,7],[30,6],[15,6],[39,7],[3,4],[1,3],[1,2],[276,9],[234,8],[48,9],[156,8],[77,7],[3,5],[174,8],[2,3],[4,8],[806,10],[19,6],[1,3],[237,8],[5,5],[31,7],[62,7],[29,5],[222,9],[32,6],[24,5],[57,9],[8,4],[43,8],[1,1],[1,1],[176,10],[233,8],[1,1],[7,5],[468,9],[179,10],[16,5],[2,2],[2,2],[187,9],[122,7],[1,1],[13,4],[7,8],[1,1],[5,3],[36,7],[770,10],[230,10],[1,1],[29,6],[17,5],[22,8],[6,3],[2,3],[237,9],[37,6],[25,6],[1,4],[5,3],[22,6],[3,3],[25,5],[188,9],[95,8],[165,9],[7,3],[43,7],[368,9],[5,4],[3,3],[4,4],[41,6],[83,8],[30,6],[1,8],[1,1],[6,5],[45,6],[10,7],[3,4],[2,3],[253,8],[56,6],[6,4],[73,9],[221,8],[4,3],[24,5],[154,8],[77,8],[364,9],[1,1],[655,10],[25,9],[31,7],[2,3],[1,2],[3,6],[3,2],[1,1],[467,9],[22,7],[6,3],[1,2],[4,3],[2,2],[2,2],[411,9],[11,4],[342,9],[3,2],[4,3],[3,2],[70,7],[1,2],[60,8],[3,5],[12,5],[337,9],[24,5],[687,10],[33,10],[121,8],[805,10],[1,1],[1,2],[291,10],[2,9],[5,3],[24,6],[1,2],[187,8],[1,4],[412,10],[25,5],[7,3],[1,1],[1,1],[2,3],[61,6],[97,8],[16,6],[61,6],[1,1],[476,9],[60,6],[90,8],[242,9],[54,6],[5,5],[10,5],[466,10],[65,7],[324,9],[14,4],[107,9],[50,6],[37,7],[366,10],[24,5],[237,8],[96,9],[114,7],[244,8],[266,9],[1,1],[10,10],[29,8],[487,9],[1,1],[2,10],[48,6],[6,3],[81,10],[2,2],[1,1],[22,5],[101,7],[201,10],[6,4],[180,8],[20,6],[34,7],[111,8],[747,10],[3,3],[57,6],[4,3],[23,5],[199,9],[1,1],[1,2],[952,10],[379,9],[10,7],[6,3],[1,9],[38,6],[28,5],[24,6],[3,2],[22,5],[124,9],[287,9],[1,1],[411,9],[16,7],[182,8],[1,1],[14,4],[2,2],[1,1],[40,6],[95,8],[1,1],[3,6],[75,9],[31,6],[1,1],[6,4],[332,9],[2,4],[545,10],[5,4],[469,9],[15,5],[1,1],[19,5],[393,9],[175,10],[216,9],[40,6],[1,2],[5,4],[3,2],[91,7],[1,1],[81,8],[207,8],[334,10],[394,10],[92,7],[2,3],[160,9],[114,7],[33,6],[2,4],[6,4],[2,2],[127,7],[52,6],[27,5],[102,10],[1,1],[7,3],[368,10],[3,2],[10,5],[34,6],[6,4],[451,10],[1,1],[451,10],[79,8],[2,3],[1,1],[200,9],[48,7],[52,6],[6,3],[3,2],[323,9],[1,1],[3,3],[32,6],[260,9],[13,5],[1,1],[1,1],[232,8],[281,9],[1,5],[5,5],[3,2],[1,1],[143,9],[8,4],[9,7],[26,6],[604,10],[4,4],[487,9],[369,9],[2,3],[909,10],[378,9],[6,4],[557,10],[1,1],[41,6],[3,2],[160,8],[7,8],[288,10],[1,1],[1,4],[12,4],[4,3],[26,8],[4,3],[1,2],[414,10],[1,1],[766,10],[163,8],[175,8],[2,2],[57,6],[8,5],[1,2],[92,8],[298,9],[3,2],[10,6],[26,6],[76,10],[29,8],[467,9],[16,6],[111,7],[1,1],[4,3],[33,6],[30,6],[29,6],[1,4],[1,1],[4,3],[4,4],[1,1],[1,1],[599,10],[38,6],[10,4],[3,2],[31,6],[47,6],[31,5],[34,7],[3,7],[109,7],[16,5],[193,8],[90,7],[1007,10],[1,4],[198,8],[62,7],[1,1],[1,1],[3,3],[60,6],[496,9],[786,10],[1,2],[823,10],[7,8],[267,9],[1,1],[204,8],[5,4],[435,9],[2,2],[59,7],[108,7],[6,3],[1,2],[7,3],[30,6],[213,9],[13,4],[15,4],[2,2],[1,1],[2,2],[188,8],[141,9],[23,8],[9,8],[13,4],[1,2],[1,1],[672,10],[32,7],[1,1],[10,4],[325,9],[97,8],[3,2],[370,9],[477,10],[38,6],[4,3],[2,2],[165,8],[86,7],[22,5],[127,9],[86,7],[3,5],[30,7],[6,3],[2,3],[519,10],[10,5],[162,8],[7,3],[2,2],[2,4],[94,7],[2,4],[19,7],[9,7],[110,7],[223,9],[1,1],[77,7],[1,1],[348,9],[1,4],[3,2],[1,1],[23,5],[14,5],[50,6],[7,5],[1,2],[4,3],[79,8],[246,8],[1,3],[47,7],[4,4],[115,7],[309,10],[19,5],[18,7],[60,6],[2,2],[12,4],[3,2],[3,2],[51,6],[813,10],[2,2],[1,1],[11,5],[5,3],[5,3],[289,10],[4,3],[161,9],[13,4],[25,6],[72,7],[748,10],[8,5],[421,10],[20,5],[3,2],[84,8],[101,7],[81,8],[1,3],[1,4],[581,10],[190,9],[1,1],[1,1],[2,2],[147,9],[5,4],[1,1],[49,6],[52,6],[504,10],[1,1],[1,1],[93,9],[1,4],[1,2],[526,10],[3,3],[1,3],[216,9],[279,9],[415,9],[27,5],[23,6],[3,4],[13,6],[9,4],[1,1],[830,10],[2,2],[7,3],[3,2],[25,5],[2,9],[837,10],[49,7],[306,9],[1,1],[1,1],[31,5],[14,4],[1,1],[9,4],[416,9],[21,5],[262,10],[1,2],[1,2],[7,8],[32,6],[52,6],[44,10],[115,8],[44,6],[69,7],[24,5],[1,2],[11,4],[770,10],[1,1],[120,7],[297,10],[1,2],[1,1],[859,10],[872,10],[8,7],[1,1],[20,6],[123,7],[1,1],[59,6],[288,9],[1,1],[554,10],[2,3],[3,2],[59,6],[12,4],[9,5],[2,6],[163,9],[1,1],[13,5],[117,7],[137,8],[1,1],[34,6],[1,1],[1,2],[5,3],[2,4],[31,7],[6,3],[12,6],[6,3],[237,9],[15,7],[13,5],[22,6],[2,2],[6,3],[4,3],[10,6],[6,6],[188,8],[129,8],[6,3],[132,8],[70,8],[1,1],[55,6],[21,6],[77,8],[1,1],[22,7],[21,5],[1,1],[2,5],[73,8],[7,3],[634,10],[33,7],[1,1],[604,10],[71,7],[23,5],[35,6],[773,10],[13,4],[5,3],[5,3],[43,7],[1,4],[6,3],[1,1],[348,10],[4,9],[14,4],[5,3],[1,1],[1,2],[1,3],[56,7],[4,3],[2,2],[1,1],[6,4],[3,3],[2,2],[115,7],[2,3],[71,8],[55,6],[641,10],[29,5],[2,2],[6,5],[17,6],[1,1],[160,8],[468,9],[28,5],[36,9],[2,2],[87,7],[72,7],[14,4],[8,4],[85,7],[2,4],[13,5],[15,4],[54,7],[76,9],[124,9],[5,4],[4,3],[1,1],[10,5],[15,4],[134,8],[1,1],[1,2],[1,3],[69,8],[3,2],[1,1],[5,3],[195,8],[1,2],[2,3],[22,5],[1,2],[105,8],[1,2],[8,4],[113,7],[78,10],[61,7],[1,7],[3,2],[7,6],[27,5],[63,6],[3,2],[442,9],[1,3],[118,7],[1,4],[2,2],[216,9],[1,1],[10,4],[12,5],[3,2],[106,7],[3,3],[26,7],[473,10],[32,8],[1,2],[13,4],[6,3],[5,5],[323,10],[91,8],[56,7],[87,8],[23,8],[1,1],[761,10],[9,5],[519,10],[19,6],[4,5],[9,4],[11,4],[171,9],[10,4],[26,5],[15,5],[2,7],[149,8],[61,6],[375,9],[47,6],[1,1],[14,4],[1,1],[1,2],[15,5],[83,9],[440,10],[4,3],[158,8],[372,10],[3,2],[18,6],[11,4],[7,6],[1,2],[10,4],[50,7],[415,9],[1,1],[47,6],[7,3],[15,4],[4,3],[7,5],[5,4],[432,9],[5,3],[15,5],[13,4],[762,10],[13,5],[4,7],[4,5],[17,6],[999,10],[573,10],[143,8],[21,5],[113,7],[389,10],[5,6],[5,3],[9,4],[791,10],[102,7],[1,3],[75,10],[6,4],[897,10],[3,2],[181,10],[3,2],[1,1],[14,4],[34,8],[28,8],[4,9],[47,10],[2,3],[121,9],[1,1],[1,1],[7,4],[285,9],[326,9],[24,7],[74,7],[330,9],[117,9],[22,5],[209,9],[2,4],[3,2],[7,3],[5,3],[26,5],[3,2],[153,9],[6,3],[7,3],[255,9],[11,5],[7,3],[1,1],[928,10],[403,9],[2,3],[1,1],[6,3],[7,3],[6,3],[212,8],[1,2],[1,1],[204,8],[1,1],[399,9],[44,8],[3,2],[1,1],[6,4],[436,9],[1,1],[3,2],[1,1],[2,3],[31,9],[147,8],[13,7],[59,7],[3,3],[6,3],[457,9],[42,6],[3,7],[82,8],[226,9],[12,6],[1,1],[9,7],[6,3],[33,8],[3,2],[425,9],[2,7],[7,4],[1,3],[580,10],[53,6],[2,2],[1,3],[15,4],[2,5],[197,8],[76,7],[190,8],[92,7],[115,8],[335,9],[105,8],[84,8],[744,10],[109,7],[450,10],[193,8],[3,4],[65,7],[8,4],[1,1],[9,4],[42,6],[6,5],[195,8],[38,6],[1,1],[313,9],[63,6],[361,9],[22,5],[54,6],[1,2],[53,6],[4,3],[1,1],[28,5],[9,6],[298,9],[2,2],[3,3],[20,6],[2,2],[21,6],[35,6],[5,3],[13,6],[72,8],[490,10],[471,9],[9,4],[14,5],[10,5],[30,7],[5,3],[10,5],[13,5],[175,9],[3,3],[1,1],[1,4],[2,2],[1,1],[20,5],[2,2],[33,6],[2,2],[5,3],[7,3],[74,8],[1,3],[3,2],[223,9],[367,9],[7,4],[7,3],[1,1],[1,4],[2,3],[2,3],[1,1],[201,9],[1,1],[103,7],[4,4],[2,3],[1,1],[36,6],[167,9],[12,4],[462,9],[1,3],[46,6],[1,1],[11,5],[1,1],[2,4],[39,7],[15,7],[25,5],[11,4],[121,7],[1,2],[7,3],[2,3],[1,2],[1,1],[1,1],[15,8],[780,10],[3,3],[28,7],[475,9],[13,6],[12,4],[2,2],[1,1],[135,9],[3,2],[18,5],[1,1],[135,9],[1,2],[356,9],[27,5],[21,5],[115,7],[6,3],[19,5],[29,6],[114,8],[37,6],[9,5],[307,9],[545,10],[1,1],[26,7],[3,2],[24,7],[5,3],[447,9],[3,2],[22,6],[18,5],[28,5],[27,9],[1,4],[146,10],[22,5],[125,8],[3,2],[16,5],[46,6],[4,5],[51,7],[5,3],[109,7],[582,10],[61,7],[2,2],[12,5],[65,9],[1,1],[16,7],[211,9],[18,5],[5,5],[330,9],[26,6],[1,2],[179,8],[1,2],[384,10],[10,6],[639,10],[31,6],[189,8],[264,9],[16,7],[1,1],[3,4],[994,10],[31,6],[35,7],[51,6],[53,7],[1,1],[3,3],[1,3],[63,6],[1,1],[12,4],[46,8],[84,7],[266,9],[6,4],[38,8],[15,4],[10,4],[163,8],[565,10],[74,8],[28,5],[158,8],[316,9],[1,1],[1,1],[123,7],[848,10],[7,4],[11,4],[1,1],[1,1],[289,9],[9,6],[7,4],[3,2],[2,3],[125,7],[1,1],[161,8],[1,1],[34,6],[109,7],[419,10],[165,8],[113,7],[3,3],[314,10],[122,8],[3,2],[2,2],[1,3],[2,2],[6,3],[208,8],[122,10],[331,9],[129,9],[1,1],[20,5],[44,6],[6,3],[17,6],[7,5],[1,1],[98,9],[139,9],[102,8],[60,9],[164,8],[1,1],[211,8],[636,10],[3,2],[18,6],[3,3],[204,9],[3,6],[17,5],[97,9],[259,9],[9,4],[7,3],[12,4],[105,7],[148,8],[16,5],[5,4],[801,10],[377,9],[207,9],[504,10],[1,3],[239,8],[8,4],[116,7],[30,5],[293,10],[96,8],[24,8],[6,3],[1,2],[333,9],[15,4],[440,9],[3,2],[41,6],[2,3],[5,3],[149,9],[279,9],[86,9],[1,1],[27,6],[87,7],[7,6],[1,1],[39,10],[28,6],[6,3],[2,3],[1,1],[7,3],[397,9],[12,4],[2,2],[2,4],[386,9],[351,10],[419,10],[1,2],[23,6],[3,3],[14,4],[28,6],[2,2],[26,8],[9,6],[9,5],[26,5],[3,2],[746,10],[129,8],[3,2],[132,8],[129,8],[205,8],[14,5],[96,7],[7,3],[30,5],[1,1],[11,7],[219,10],[450,10],[291,9],[1,1],[820,10],[8,6],[5,5],[102,7],[13,5],[314,9],[3,2],[1,1],[481,9],[354,10],[395,9],[284,9],[201,8],[378,9],[6,3],[3,2],[2,4],[68,8],[32,7],[25,5],[6,6],[110,8],[49,6],[13,4],[1,1],[30,5],[330,10],[77,10],[731,10],[19,5],[12,4],[61,8],[1,1],[113,9],[1,3],[20,5],[10,7],[1,1],[76,9],[3,4],[2,2],[3,3],[101,7],[1,1],[1,2],[6,3],[65,7],[7,3],[1,4],[1,3],[257,10],[13,4],[121,7],[205,8],[12,5],[1,1],[241,9],[7,3],[11,5],[35,7],[59,6],[189,8],[8,5],[3,2],[29,10],[15,4],[1,3],[27,5],[913,10],[126,7],[6,3],[182,9],[27,5],[29,5],[1,2],[1005,10],[22,5],[9,4],[7,3],[63,6],[2,2],[47,7],[215,8],[91,7],[327,9],[37,7],[75,7],[339,9],[386,9],[175,9],[14,5],[795,10],[11,4],[425,9],[30,5],[961,10],[3,2],[80,7],[1,2],[64,8],[8,4],[2,2],[49,9],[27,6],[14,5],[60,7],[277,9],[354,9],[2,2],[137,8],[25,10],[1,3],[323,9],[1,3],[13,4],[65,9],[5,3],[26,5],[51,8],[1,1],[66,7],[6,3],[7,3],[7,3],[24,5],[9,4],[243,8],[48,9],[2,4],[13,4],[49,9],[42,7],[1,2],[1,1],[468,9],[52,6],[1,1],[210,9],[570,10],[1,1],[23,8],[7,3],[6,3],[25,5],[862,10],[4,4],[7,5],[9,5],[15,6],[123,8],[51,6],[14,4],[3,5],[96,7],[1,1],[565,10],[176,9],[6,3],[56,6],[3,2],[3,5],[368,9],[2,4],[287,9],[812,10],[540,10],[14,4],[1,1],[19,6],[1,4],[104,7],[186,8],[43,6],[252,9],[7,5],[127,8],[200,9],[2,2],[19,5],[97,7],[17,6],[251,9],[594,10],[7,3],[112,9],[9,4],[3,2],[21,5],[28,6],[7,4],[15,4],[2,5],[39,6],[29,5],[3,5],[1,1],[124,7],[12,4],[6,3],[1,1],[192,8],[2,2],[4,6],[6,4],[1,1],[5,4],[1,1],[54,7],[1,1],[4,4],[222,8],[649,10],[20,5],[7,3],[1,1],[545,10],[204,8],[2,2],[152,10],[544,10],[66,8],[41,6],[1,1],[3,2],[119,7],[298,10],[1,1],[33,7],[104,7],[19,5],[7,4],[27,5],[7,3],[617,10],[427,9],[51,6],[2,2],[159,9],[11,4],[2,2],[5,4],[1012,10],[113,8],[2,2],[976,10],[1,2],[1,1],[169,8],[1,1],[125,9],[1,1],[1,1],[7,6],[31,8],[33,6],[6,4],[57,6],[29,5],[15,4],[21,5],[497,10],[17,5],[233,8],[294,9],[127,7],[23,5],[12,4],[185,8],[4,3],[163,10],[5,3],[15,7],[11,4],[122,7],[461,9],[1,1],[420,9],[1,2],[12,5],[2,2],[2,4],[2,3],[12,4],[15,4],[12,7],[38,9],[10,5],[1,1],[15,7],[11,5],[3,2],[12,7],[1,8],[2,4],[8,4],[1,1],[5,4],[73,9],[8,7],[12,7],[2,2],[1,3],[47,7],[10,4],[1,1],[1,1],[206,8],[135,8],[4,4],[3,3],[9,7],[16,5],[18,5],[395,9],[792,10],[2,3],[2,3],[1,1],[225,9],[7,4],[171,9],[21,6],[3,2],[1,1],[1,1],[355,10],[1,1],[3,4],[1,2],[69,7],[222,8],[12,4],[1,1],[68,8],[57,10],[112,7],[46,6],[131,8],[245,9],[62,6],[1,1],[8,4],[206,10],[873,10],[1,1],[216,8],[47,6],[254,8],[26,6],[474,9],[230,10],[204,8],[486,9],[158,9],[29,6],[5,3],[8,4],[6,3],[16,6],[7,3],[58,7],[211,8],[241,9],[1,3],[329,9],[3,2],[13,4],[954,10],[6,4],[87,7],[274,9],[56,6],[1,1],[6,3],[19,5],[5,9],[11,6],[1,1],[29,5],[195,8],[26,5],[32,7],[2,2],[2,6],[3,2],[791,10],[1,1],[17,5],[114,7],[121,7],[3,3],[1,4],[8,4],[7,4],[27,5],[29,6],[3,4],[29,7],[246,8],[1,2],[83,7],[390,9],[137,8],[22,5],[393,9],[1,1],[1,1],[2,3],[9,5],[26,8],[1,1],[11,4],[21,5],[3,4],[1,1],[8,4],[2,2],[115,7],[119,8],[23,5],[50,7],[1,5],[113,7],[61,7],[317,9],[1,2],[34,7],[285,9],[5,3],[8,5],[7,4],[2,3],[1,1],[305,9],[31,6],[27,6],[481,9],[22,10],[51,6],[208,9],[913,10],[178,8],[61,7],[61,6],[553,10],[327,10],[79,7],[29,6],[893,10],[10,7],[81,8],[124,7],[1,7],[160,9],[107,9],[5,3],[3,2],[12,5],[57,8],[7,3],[25,6],[138,8],[12,5],[2,2],[384,10],[168,8],[19,6],[5,4],[2,3],[13,4],[250,9],[2,2],[62,7],[10,5],[1,1],[31,7],[195,9],[1,2],[141,9],[42,6],[3,3],[14,4],[3,2],[3,2],[322,9],[22,6],[7,6],[6,3],[80,8],[178,8],[4,7],[1,1],[47,6],[141,8],[1,1],[77,7],[2,2],[195,9],[319,10],[63,7],[1,1],[766,10],[109,8],[1,2],[26,6],[23,7],[24,10],[14,4],[84,9],[117,7],[1,1],[1,1],[55,6],[5,3],[70,7],[3,2],[214,9],[273,9],[310,10],[6,4],[11,6],[1,1],[245,10],[450,10],[45,10],[1,1],[106,9],[49,7],[1,1],[3,2],[9,4],[336,9],[5,3],[1,1],[1,1],[1,1],[642,10],[16,6],[155,9],[187,8],[314,9],[62,7],[1,1],[2,2],[6,5],[3,3],[46,6],[3,3],[4,7],[27,6],[10,4],[12,4],[175,8],[16,6],[786,10],[31,5],[22,5],[36,7],[143,8],[15,4],[36,6],[18,5],[1,1],[1,1],[209,8],[3,2],[242,10],[3,2],[17,6],[236,8],[7,4],[5,3],[4,4],[122,9],[19,6],[2,10],[31,5],[171,8],[3,4],[2,3],[724,10],[823,10],[2,4],[2,2],[162,8],[2,3],[248,8],[371,9],[47,6],[343,9],[91,8],[1,2],[41,6],[3,2],[6,5],[13,5],[12,10],[253,8],[4,5],[5,4],[2,2],[28,5],[89,7],[3,2],[101,8],[15,5],[1,1],[4,4],[1,1],[16,5],[147,10],[3,5],[42,7],[196,8],[3,4],[40,8],[1,2],[24,7],[24,6],[8,6],[107,9],[3,2],[33,7],[39,7],[326,10],[97,7],[5,3],[2,2],[1,1],[8,4],[26,7],[150,8],[14,4],[5,3],[12,4],[15,5],[23,7],[311,9],[849,10],[111,7],[18,6],[7,3],[2,4],[94,8],[1,1],[1,1],[485,9],[235,8],[15,4],[1,2],[1,1],[1,1],[11,5],[1,3],[70,9],[52,6],[1,1],[3,2],[2,3],[3,4],[1,1],[15,5],[47,7],[292,10],[7,4],[449,9],[3,5],[238,9],[1,1],[39,6],[3,7],[451,10],[1,1],[521,10],[18,6],[7,4],[685,10],[2,2],[1,1],[9,4],[1,1],[465,9],[26,5],[1,3],[643,10],[67,7],[3,2],[1,3],[167,8],[7,10],[1,1],[160,10],[9,4],[342,9],[466,9],[12,4],[34,7],[5,4],[274,10],[3,2],[2,2],[445,9],[1,1],[30,7],[60,6],[153,10],[1,1],[150,8],[51,8],[82,9],[3,3],[114,7],[56,8],[90,7],[7,4],[223,9],[1,1],[251,9],[15,5],[161,9],[146,9],[1,2],[215,8],[513,10],[163,8],[161,8],[6,4],[547,10],[7,5],[125,7],[433,10],[40,6],[127,7],[14,4],[470,9],[30,5],[1,1],[7,3],[8,6],[389,9],[14,4],[23,6],[5,4],[5,3],[6,3],[6,7],[1,2],[112,9],[125,9],[10,4],[3,3],[23,5],[1,1],[52,6],[191,8],[7,3],[1,2],[401,9],[3,2],[2,2],[211,9],[16,5],[240,10],[124,7],[30,6],[7,3],[56,8],[285,9],[55,9],[871,10],[74,10],[51,10],[94,7],[315,10],[536,10],[247,8],[3,2],[29,6],[1,6],[30,5],[8,7],[350,10],[206,8],[144,9],[265,10],[2,3],[2,2],[114,7],[3,2],[45,7],[1,1],[1,2],[2,2],[4,5],[2,2],[1,1],[50,10],[6,3],[61,6],[1,1],[296,9],[872,10],[81,8],[55,6],[1,1],[82,10],[1,1],[37,7],[1,3],[14,8],[1,3],[14,4],[10,4],[3,3],[20,8],[43,6],[614,10],[122,7],[21,6],[3,7],[42,7],[19,5],[4,4],[225,8],[90,9],[3,2],[1,1],[30,5],[1,1],[9,4],[11,9],[36,9],[2,2],[56,6],[726,10],[1,3],[38,7],[4,3],[33,7],[3,2],[1008,10],[109,7],[5,4],[5,4],[562,10],[3,2],[163,8],[1,1],[205,10],[57,6],[1,1],[39,10],[660,10],[260,9],[661,10],[215,8],[2,2],[198,10],[640,10],[104,8],[298,9],[17,8],[9,4],[1,1],[55,8],[1,4],[796,10],[440,9],[220,8],[96,8],[17,5],[54,6],[3,2],[48,6],[63,6],[750,10],[1,1],[10,4],[5,5],[6,3],[1,1],[119,7],[1,3],[181,9],[12,8],[453,9],[606,10],[4,3],[126,7],[2,2],[17,8],[7,3],[47,6],[1,2],[345,9],[389,9],[2,3],[5,4],[59,6],[1,2],[177,8],[1,1],[2,3],[688,10],[184,8],[3,2],[1,1],[56,7],[54,9],[1,2],[331,9],[1,1],[63,6],[246,8],[9,4],[6,3],[115,7],[31,5],[22,6],[2,3],[327,10],[10,4],[1,1],[1,1],[3,2],[9,6],[3,4],[192,8],[5,3],[113,7],[63,6],[4,3],[1,3],[2,4],[9,5],[1,1],[1,1],[27,5],[168,9],[2,4],[23,5],[1,1],[2,4],[247,9],[14,5],[3,2],[3,6],[42,6],[27,5],[6,3],[2,2],[18,6],[4,5],[3,3],[4,3],[7,3],[24,7],[62,6],[374,10],[27,5],[4,3],[1,1],[136,9],[1,1],[4,5],[5,5],[698,10],[232,9],[721,10],[176,9],[7,3],[2,3],[1,1],[9,4],[254,8],[22,6],[1,1],[5,3],[1,2],[1,2],[10,4],[18,5],[197,9],[105,9],[14,5],[126,8],[11,4],[123,7],[5,3],[1,1],[3,2],[1,1],[126,7],[367,9],[1,1],[3,3],[228,8],[59,7],[443,10],[34,8],[59,7],[459,10],[1,1],[37,7],[7,3],[1,1],[14,4],[1,2],[325,9],[7,4],[195,8],[61,7],[1,1],[26,5],[3,3],[20,6],[8,4],[3,3],[29,5],[23,7],[2,2],[8,6],[350,9],[12,5],[2,2],[10,5],[4,3],[2,2],[391,10],[65,8],[1,2],[288,9],[23,5],[474,10],[17,6],[339,9],[103,7],[9,6],[492,9],[2,6],[11,6],[239,8],[124,7],[3,3],[187,8],[78,7],[2,2],[75,7],[1,1],[4,3],[10,4],[5,3],[6,3],[7,3],[29,5],[7,3],[4,3],[1,1],[160,8],[3,2],[1,3],[6,4],[696,10],[9,4],[71,9],[1,1],[323,10],[172,9],[31,6],[1,1],[5,3],[20,5],[66,7],[874,10],[6,4],[7,3],[212,8],[1,1],[22,5],[448,10],[2,4],[125,10],[813,10],[13,4],[8,5],[13,5],[1,2],[3,2],[4,4],[1,1],[24,7],[1,1],[1,1],[1004,10],[30,7],[444,10],[2,3],[1,1],[595,10],[189,8],[1,1],[35,8],[98,7],[3,2],[12,4],[424,9],[14,4],[55,6],[1,1],[3,2],[60,7],[5,7],[20,6],[635,10],[3,2],[53,6],[359,9],[506,10],[18,6],[8,5],[3,2],[19,7],[1,1],[16,5],[28,7],[1,1],[6,4],[1,1],[1,1],[134,8],[1,1],[708,10],[6,3],[7,4],[3,3],[1,1],[111,7],[501,10],[24,6],[12,5],[102,7],[1,1],[4,4],[1,1],[26,7],[32,6],[83,8],[4,4],[88,7],[2,2],[1,1],[52,6],[6,3],[1,1],[48,6],[4,3],[2,3],[217,9],[6,3],[1,1],[12,4],[19,5],[2,2],[40,6],[533,10],[12,5],[3,3],[2,2],[270,10],[218,9],[7,3],[5,5],[173,9],[54,6],[113,7],[206,10],[14,5],[21,7],[2,2],[20,5],[172,9],[1,4],[53,6],[4,4],[1,8],[76,7],[92,7],[1,1],[14,5],[37,8],[201,8],[153,8],[73,10],[30,9],[4,5],[182,8],[1,1],[16,5],[882,10],[3,2],[63,6],[26,5],[11,6],[284,9],[194,10],[1,2],[10,4],[688,10],[1,1],[63,6],[11,4],[44,6],[15,4],[15,4],[57,7],[82,7],[11,4],[4,3],[46,9],[1,2],[34,6],[10,5],[21,8],[134,8],[382,9],[6,5],[17,5],[2,2],[1,1],[306,9],[1,1],[53,6],[9,7],[1,1],[664,10],[1,1],[1,3],[1,1],[14,4],[120,10],[3,2],[3,2],[38,6],[41,7],[56,6],[80,7],[1,1],[2,2],[21,5],[1,5],[10,5],[1,3],[7,3],[12,5],[3,4],[20,5],[90,7],[3,2],[57,6],[14,4],[162,8],[31,5],[1,1],[51,9],[109,7],[9,4],[53,6],[803,10],[3,2],[636,10],[56,7],[1,2],[5,4],[531,10],[2,6],[81,8],[20,6],[4,5],[53,10],[123,7],[3,2],[32,6],[254,9],[3,2],[2,2],[1,1],[12,4],[1,4],[13,4],[1,1],[10,6],[1,1],[91,8],[8,5],[291,10],[1,2],[428,9],[2,3],[2,6],[1,1],[123,8],[446,9],[1,1],[1,1],[29,6],[503,10],[6,3],[75,7],[1,1],[318,9],[5,3],[112,7],[5,3],[42,6],[85,8],[74,9],[2,2],[2,2],[1,1],[2,2],[208,10],[3,3],[1,2],[44,6],[2,2],[1,1],[26,6],[136,8],[13,5],[97,8],[55,9],[38,6],[6,3],[58,8],[39,6],[94,7],[2,2],[1,5],[137,9],[790,10],[122,7],[1,1],[16,6],[1,1],[1,3],[251,8],[2,3],[9,4],[13,4],[670,10],[279,9],[2,2],[15,5],[911,10],[79,7],[49,6],[83,7],[226,8],[48,6],[6,3],[15,4],[14,4],[223,8],[111,9],[7,5],[9,6],[32,6],[45,6],[1,2],[7,3],[44,6],[7,4],[3,2],[1,1],[41,9],[134,9],[27,5],[12,4],[351,9],[1,1],[400,9],[1,1],[23,6],[6,3],[87,7],[474,10],[8,4],[364,9],[5,3],[19,5],[6,5],[10,5],[1,5],[25,5],[2,2],[1,1],[137,8],[382,10],[1,1],[1,1],[15,8],[1,1],[16,5],[29,6],[55,6],[1,2],[306,9],[1,1],[41,6],[148,8],[5,3],[231,10],[16,8],[102,9],[894,10],[3,4],[67,8],[166,8],[508,10],[337,9],[13,5],[22,6],[3,2],[362,9],[1,1],[11,4],[2,7],[161,9],[2,2],[207,8],[99,7],[9,9],[256,9],[166,9],[1,1],[1,1],[11,5],[1,3],[1,1],[2,2],[17,9],[29,7],[348,9],[7,7],[1,1],[12,4],[5,3],[52,6],[1,1],[25,6],[27,5],[60,6],[37,6],[1,2],[93,8],[6,8],[47,6],[1,1],[1,2],[7,3],[236,10],[23,5],[7,3],[345,9],[24,5],[174,8],[5,3],[1,2],[152,8],[12,4],[10,9],[30,6],[36,8],[7,9],[5,4],[51,6],[120,9],[29,5],[484,9],[1,1],[2,2],[3,2],[11,4],[4,3],[128,9],[98,7],[344,9],[78,8],[7,6],[452,10],[1,3],[2,3],[49,6],[14,4],[4,4],[6,6],[253,8],[1,3],[241,9],[3,2],[1013,10],[18,5],[86,7],[24,5],[39,10],[3,2],[8,4],[106,9],[1,1],[540,10],[3,3],[201,8],[3,2],[3,2],[7,5],[33,6],[1,1],[1,3],[16,5],[32,8],[2,6],[105,7],[2,2],[47,6],[1,1],[32,6],[1,4],[11,4],[444,9],[45,9],[316,9],[408,9],[8,4],[11,5],[1,1],[40,6],[3,2],[756,10],[1,1],[1,1],[46,6],[9,4],[1,2],[2,5],[58,8],[8,5],[213,8],[13,4],[5,4],[11,4],[4,6],[2,5],[4,7],[1,3],[3,2],[19,7],[1,1],[8,4],[976,10],[13,4],[448,9],[207,9],[1,4],[11,5],[462,9],[14,5],[1,1],[3,2],[503,9],[10,4],[2,5],[20,5],[4,3],[1,1],[28,7],[335,9],[293,10],[15,5],[2,3],[164,8],[2,2],[46,7],[161,8],[4,4],[1,1],[211,10],[124,10],[5,4],[1,1],[1,1],[240,9],[6,5],[1,2],[7,4],[36,8],[2,2],[50,6],[114,7],[61,7],[1,4],[13,5],[159,9],[107,7],[72,7],[25,5],[23,6],[1,1],[52,6],[1,1],[2,2],[6,3],[1,2],[21,5],[6,5],[6,3],[276,9],[30,10],[11,5],[7,4],[13,4],[128,10],[46,6],[7,4],[3,2],[690,10],[6,3],[47,9],[349,10],[1,3],[24,5],[207,8],[1,1],[16,7],[117,7],[21,5],[56,6],[26,5],[10,4],[2,4],[1,1],[387,9],[1,1],[97,7],[2,3],[2,2],[43,6],[4,3],[9,7],[1,2],[1,1],[11,5],[347,10],[168,8],[252,8],[528,10],[28,6],[3,2],[3,3],[1,1],[63,6],[3,2],[98,7],[2,3],[1,1],[612,10],[1,1],[168,8],[243,8],[116,9],[3,5],[800,10],[115,9],[10,4],[207,8],[37,6],[2,4],[24,5],[14,4],[151,8],[1,1],[213,10],[3,2],[6,3],[347,9],[493,10],[4,3],[32,6],[2,2],[15,4],[15,5],[1,3],[6,5],[6,4],[150,8],[1,5],[101,8],[11,5],[2,3],[1,2],[330,9],[110,9],[444,9],[11,6],[45,7],[3,7],[13,4],[3,2],[12,4],[67,7],[199,8],[1,1],[701,10],[6,3],[5,4],[101,7],[7,3],[61,10],[2,2],[9,4],[12,4],[4,3],[7,5],[7,8],[3,2],[130,8],[138,9],[1,1],[12,4],[60,6],[2,2],[13,4],[1,1],[52,9],[24,6],[1,1],[2,2],[2,2],[3,5],[326,10],[3,2],[9,5],[766,10],[5,3],[729,10],[489,9],[1,1],[1,1],[1,1],[1,1],[17,5],[226,8],[2,2],[62,6],[13,7],[831,10],[11,7],[428,9],[338,10],[134,8],[61,8],[370,10],[13,7],[3,4],[10,4],[5,4],[7,4],[43,7],[1,1],[13,4],[56,7],[2,2],[10,4],[482,10],[7,4],[102,10],[13,5],[30,7],[1,1],[12,9],[14,5],[499,9],[111,9],[140,9],[457,9],[2,4],[523,10],[80,9],[253,9],[193,9],[26,5],[1,1],[1,2],[20,5],[2,2],[2,4],[6,3],[31,6],[2,4],[2,2],[9,6],[9,4],[24,6],[3,3],[115,9],[3,2],[240,8],[2,3],[2,6],[31,5],[27,5],[17,5],[22,5],[59,6],[1,1],[234,8],[1,1],[48,8],[305,9],[36,10],[1,2],[2,2],[3,3],[5,3],[2,3],[6,3],[2,3],[1,1],[2,2],[1,1],[3,3],[23,7],[121,7],[62,6],[31,10],[79,7],[198,8],[33,6],[16,5],[1,6],[41,6],[11,4],[80,7],[1,1],[2,3],[25,8],[213,8],[118,7],[4,3],[154,10],[82,7],[10,4],[416,9],[1,1],[45,6],[4,4],[1,1],[32,7],[1,1],[63,9],[5,3],[2,2],[5,3],[123,7],[119,8],[4,6],[63,6],[27,5],[4,4],[2,3],[58,6],[45,6],[291,9],[10,7],[29,5],[60,6],[59,6],[114,8],[100,7],[25,7],[1,1],[66,8],[32,10],[303,9],[101,7],[105,7],[108,8],[555,10],[14,5],[23,7],[3,2],[15,6],[1,1],[11,5],[3,2],[24,8],[165,8],[42,6],[1,2],[462,10],[5,4],[372,10],[3,2],[2,2],[181,10],[2,3],[1,1],[1,1],[12,4],[159,10],[253,8],[6,7],[91,7],[1,1],[922,10],[12,6],[269,9],[23,5],[4,4],[26,6],[3,6],[4,4],[25,5],[19,8],[96,8],[199,9],[90,10],[681,10],[173,8],[28,5],[272,10],[1011,10],[73,7],[1,1],[25,5],[290,9],[246,8],[3,2],[4,3],[14,4],[950,10],[1,1],[274,9],[46,10],[90,9],[1,1],[15,5],[1,2],[11,4],[898,10],[176,8],[200,8],[7,3],[1,1],[2,3],[932,10],[106,7],[688,10],[19,9],[996,10],[3,2],[3,5],[33,8],[1,1],[1,2],[248,8],[77,7],[38,6],[690,10],[2,5],[1,2],[1,2],[142,10],[82,8],[23,7],[23,5],[799,10],[2,5],[232,8],[460,9],[3,2],[14,4],[21,5],[43,6],[42,7],[368,9],[3,2],[553,10],[410,9],[1,1],[1,1],[3,5],[117,7],[24,6],[5,3],[2,2],[12,4],[15,6],[114,9],[14,6],[1,1],[591,10],[1,1],[664,10],[1,1],[1,2],[25,7],[616,10],[933,10],[215,10],[66,8],[15,4],[6,4],[2,2],[1,1],[105,10],[20,6],[7,4],[27,7],[152,9],[5,4],[508,10],[747,10],[949,10],[448,10],[54,6],[1,1],[4,4],[34,6],[430,9],[73,7],[12,6],[72,8],[228,8],[561,10],[48,9],[11,4],[85,7],[9,5],[1,4],[97,7],[1,1],[501,10],[835,10],[19,5],[2,2],[18,10],[1,1],[43,6],[1,2],[14,7],[157,9],[24,7],[1,2],[138,9],[112,10],[4,3],[30,5],[37,6],[1,1],[13,4],[111,7],[28,7],[4,3],[15,4],[6,5],[40,8],[316,9],[1,1],[1,1],[1,1],[41,6],[1,1],[7,3],[7,3],[2,3],[3,3],[463,9],[25,6],[675,10],[3,2],[252,8],[757,10],[14,4],[123,7],[45,9],[7,4],[46,9],[871,10],[83,7],[13,4],[1,1],[26,6],[30,6],[308,9],[173,9],[305,9],[5,7],[19,6],[2,3],[9,4],[10,4],[12,6],[3,3],[122,7],[2,2],[262,10],[415,9],[122,8],[57,6],[133,8],[33,7],[58,7],[250,8],[2,2],[460,9],[2,8],[76,7],[9,6],[3,3],[4,4],[27,6],[177,10],[769,10],[10,5],[61,7],[521,10],[1,1],[230,8],[3,2],[101,8],[4,4],[3,2],[715,10],[385,9],[3,3],[27,5],[12,4],[23,6],[5,6],[21,5],[423,9],[4,4],[3,5],[5,8],[3,2],[49,6],[1,5],[48,7],[4,4],[1,1],[31,7],[3,2],[4,3],[3,2],[1,2],[455,10],[92,7],[11,4],[10,4],[1,1],[12,4],[224,8],[4,3],[6,3],[6,4],[52,7],[19,7],[1,1],[14,5],[157,10],[35,6],[21,9],[1,1],[44,7],[213,10],[42,6],[26,5],[117,8],[3,2],[1,2],[11,5],[85,7],[1,1],[1,2],[104,7],[49,6],[136,8],[474,9],[1,1],[22,6],[414,9],[860,10],[1,1],[1,2],[13,5],[1,3],[822,10],[1,3],[21,6],[313,9],[9,6],[114,7],[15,6],[542,10],[147,8],[14,6],[30,8],[3,3],[28,5],[3,2],[2,4],[623,10],[1,1],[1,2],[938,10],[1,2],[71,8],[1,1],[876,10],[164,8],[597,10],[10,4],[296,10],[91,9],[72,10],[709,10],[3,3],[104,8],[174,8],[12,5],[58,9],[14,4],[65,7],[29,5],[51,6],[2,2],[752,10],[2,2],[105,7],[2,2],[4,3],[17,5],[6,3],[501,9],[179,8],[34,7],[17,6],[8,6],[1,1],[28,6],[76,9],[6,3],[644,10],[73,9],[44,6],[1,1],[1,1],[41,7],[53,6],[6,3],[3,2],[1,3],[962,10],[28,7],[132,10],[13,4],[32,6],[364,10],[141,10],[4,3],[1,2],[36,6],[1,1],[1,1],[22,5],[417,9],[1,2],[25,5],[4,3],[486,9],[30,5],[109,7],[62,7],[55,6],[12,4],[23,5],[828,10],[33,6],[9,4],[1,1],[26,8],[65,7],[10,4],[234,9],[5,5],[31,5],[5,6],[8,8],[69,8],[3,3],[2,3],[249,8],[15,5],[382,10],[101,8],[3,3],[148,8],[78,7],[949,10],[57,6],[104,7],[12,4],[220,9],[6,3],[35,6],[52,6],[2,2],[4,4],[32,6],[1,3],[13,7],[6,3],[1,1],[1,1],[1,2],[1,3],[664,10],[59,6],[123,7],[160,10],[1,1],[29,9],[7,4],[7,3],[96,8],[4,3],[1,2],[1,1],[10,6],[4,4],[41,6],[7,3],[1,2],[1,1],[268,9],[1,2],[37,7],[92,8],[156,9],[1,1],[20,5],[420,9],[119,7],[69,8],[7,4],[24,5],[35,8],[28,6],[51,6],[94,8],[1,1],[2,3],[1,2],[1,4],[2,2],[55,6],[4,3],[352,9],[3,2],[1,1],[2,5],[3,5],[10,5],[1,2],[5,3],[1,5],[2,2],[55,6],[5,5],[428,9],[19,6],[25,7],[118,7],[12,4],[7,4],[19,5],[157,10],[1,1],[26,5],[9,4],[26,7],[1,2],[259,9],[21,5],[3,3],[1,1],[140,10],[1,1],[2,2],[6,3],[4,3],[1,1],[86,8],[1,3],[66,9],[298,9],[26,6],[61,7],[127,7],[18,7],[99,7],[4,6],[18,5],[5,5],[66,7],[44,6],[3,2],[1,1],[1,1],[7,3],[61,8],[334,9],[1,1],[8,4],[12,5],[21,6],[114,8],[29,5],[2,2],[261,10],[3,3],[22,5],[1,1],[15,4],[627,10],[11,4],[164,9],[57,8],[5,3],[14,7],[6,3],[976,10],[88,7],[1,2],[589,10],[7,5],[3,2],[3,2],[1012,10],[27,5],[375,9],[18,5],[32,8],[9,4],[10,5],[72,9],[6,3],[34,6],[1,6],[207,10],[171,8],[492,10],[2,3],[29,8],[631,10],[506,10],[153,8],[357,9],[187,9],[22,5],[1,1],[54,6],[6,6],[1,1],[5,4],[26,5],[3,2],[39,6],[15,5],[3,2],[1,1],[144,10],[2,2],[1,1],[195,8],[3,2],[96,8],[226,9],[1,1],[25,5],[180,8],[1,2],[447,9],[57,6],[1,3],[2,2],[1,3],[7,4],[4,5],[8,4],[39,6],[6,4],[1,1],[29,6],[71,7],[2,4],[78,7],[1,1],[646,10],[6,4],[217,8],[3,2],[146,8],[91,9],[145,10],[5,3],[45,8],[39,7],[152,8],[1,1],[114,7],[2,2],[2,7],[4,3],[121,7],[97,8],[26,5],[15,4],[2,2],[2,2],[2,2],[404,9],[5,3],[864,10],[1,1],[167,9],[360,9],[8,4],[7,5],[3,2],[3,5],[8,4],[7,4],[119,7],[4,3],[115,7],[61,7],[1,1],[87,7],[225,9],[120,9],[807,10],[497,10],[19,6],[72,7],[1,1],[387,9],[31,6],[235,9],[60,7],[98,7],[255,9],[12,4],[504,9],[5,4],[3,2],[5,3],[42,9],[112,8],[76,8],[44,7],[26,7],[785,10],[6,5],[16,5],[7,3],[1,1],[1,1],[50,7],[1,1],[1,1],[3,3],[3,3],[14,6],[686,10],[10,4],[2,2],[125,9],[396,9],[38,6],[13,4],[217,8],[19,6],[2,2],[3,2],[2,2],[511,10],[6,4],[1,1],[8,5],[2,2],[13,5],[3,2],[11,4],[398,9],[474,9],[7,3],[16,5],[1,4],[378,10],[5,4],[5,3],[154,10],[1,2],[46,6],[178,9],[112,10],[491,9],[14,6],[60,6],[3,2],[3,3],[7,6],[3,2],[1,1],[1,4],[112,9],[779,10],[41,7],[32,7],[4,3],[4,3],[1,1],[1,2],[97,8],[2,2],[78,7],[2,2],[3,3],[2,2],[7,3],[7,4],[11,4],[7,3],[24,7],[958,10],[3,5],[52,6],[2,2],[497,9],[26,5],[26,5],[275,9],[3,3],[1,1],[14,4],[17,5],[3,4],[2,5],[8,5],[5,5],[240,8],[1,1],[44,6],[180,9],[31,7],[1,1],[5,3],[7,5],[140,9],[4,5],[99,7],[1,2],[2,3],[181,8],[8,4],[3,3],[311,10],[2,2],[1,1],[28,5],[6,3],[10,4],[173,9],[3,3],[1,1],[84,10],[223,9],[57,8],[241,9],[725,10],[5,6],[944,10],[274,9],[489,10],[9,4],[11,4],[258,9],[280,9],[1,2],[1,1],[885,10],[5,5],[443,10],[511,9],[460,10],[90,9],[211,9],[1,1],[9,4],[14,4],[44,6],[869,10],[36,8],[985,10],[57,6],[68,9],[12,6],[3,6],[3,4],[45,6],[27,5],[1,3],[21,5],[76,7],[1,1],[765,10],[36,7],[6,7],[15,4],[111,7],[1,2],[11,4],[226,10],[2,2],[231,8],[7,3],[185,8],[1,3],[3,2],[684,10],[2,2],[18,5],[138,8],[252,8],[6,3],[84,7],[13,5],[12,4],[107,7],[3,2],[4,4],[13,5],[11,5],[11,4],[1,1],[27,5],[3,2],[41,9],[29,5],[131,8],[335,9],[220,9],[1,2],[24,5],[452,10],[1,1],[317,9],[59,9],[4,4],[16,8],[78,8],[6,3],[3,2],[3,2],[3,2],[163,9],[216,8],[1,2],[9,6],[30,5],[12,5],[13,5],[22,5],[287,9],[1,1],[7,4],[15,6],[27,5],[996,10],[56,7],[228,8],[5,4],[174,10],[5,3],[86,10],[92,7],[48,10],[1,1],[29,7],[357,9],[663,10],[49,10],[135,8],[31,7],[5,6],[6,5],[7,5],[169,8],[1,1],[7,7],[3,2],[18,7],[23,8],[6,3],[1,3],[81,10],[1,2],[25,5],[39,8],[4,3],[2,3],[13,5],[48,6],[11,4],[353,9],[199,8],[12,5],[7,3],[14,5],[33,8],[36,6],[22,10],[406,9],[27,6],[30,9],[2,4],[2,2],[4,3],[637,10],[125,7],[20,6],[1,1],[5,6],[74,8],[388,9],[1007,10],[11,4],[3,2],[24,5],[64,7],[8,4],[4,3],[110,8],[1,1],[1,1],[7,4],[5,4],[6,3],[10,4],[6,4],[5,6],[5,4],[51,6],[135,8],[441,10],[416,10],[1,1],[1,1],[15,4],[49,8],[1,1],[36,6],[26,9],[624,10],[1,1],[1,1],[2,2],[4,9],[59,6],[1,1],[8,4],[252,8],[17,6],[14,5],[7,3],[59,6],[392,9],[60,6],[23,5],[7,4],[871,10],[1,1],[17,5],[272,10],[6,3],[190,8],[552,10],[4,3],[1,2],[430,10],[165,8],[10,4],[40,8],[56,7],[97,7],[9,4],[3,3],[724,10],[4,3],[21,5],[1,5],[1,3],[1,1],[1,1],[100,7],[4,5],[982,10],[10,4],[183,8],[67,9],[124,9],[8,4],[1,1],[8,4],[16,5],[13,5],[1,1],[24,6],[48,7],[1,1],[158,9],[2,4],[1,1],[208,8],[13,4],[121,7],[58,6],[3,2],[22,7],[5,3],[847,10],[7,4],[1,2],[28,5],[772,10],[6,3],[518,10],[31,5],[9,4],[169,8],[5,5],[3,2],[501,10],[113,8],[106,9],[1,4],[1,1],[870,10],[1,1],[20,5],[223,9],[1,1],[868,10],[74,7],[54,6],[1,3],[110,10],[23,6],[988,10],[247,8],[2,7],[91,7],[287,10],[108,9],[242,8],[17,5],[563,10],[161,9],[1,1],[1,1],[5,3],[3,4],[3,2],[46,6],[2,2],[332,9],[5,3],[19,6],[2,2],[1,1],[106,9],[91,8],[356,9],[516,10],[25,6],[58,8],[2,2],[4,4],[56,6],[4,4],[35,7],[14,4],[266,10],[2,4],[14,9],[1,1],[4,4],[1,1],[1,1],[14,5],[1,1],[17,9],[169,8],[1,2],[127,9],[5,3],[1,1],[4,5],[27,5],[6,4],[50,9],[31,7],[70,8],[345,10],[2,2],[57,6],[109,8],[12,4],[24,5],[2,3],[285,9],[1,3],[7,4],[615,10],[226,8],[382,9],[63,8],[3,2],[1,1],[4,5],[6,3],[1,3],[9,5],[24,7],[2,2],[632,10],[142,8],[259,9],[27,5],[1,1],[96,8],[193,8],[660,10],[22,5],[45,6],[1,1],[1,1],[115,9],[6,3],[116,8],[468,9],[13,7],[18,5],[4,7],[1,1],[1,1],[10,4],[7,4],[82,7],[76,7],[15,6],[4,3],[45,6],[6,3],[26,6],[2,2],[9,6],[87,7],[166,8],[56,6],[12,5],[243,9],[962,10],[368,9],[1,1],[166,8],[68,7],[19,6],[1,1],[58,7],[493,9],[63,7],[4,4],[165,8],[122,7],[48,6],[1,4],[877,10],[1,1],[2,2],[220,8],[30,7],[92,7],[1,5],[4,3],[3,5],[1,2],[3,10],[209,8],[43,6],[205,8],[1010,10],[385,9],[599,10],[114,9],[14,4],[1,1],[1,1],[5,3],[110,8],[13,4],[10,4],[12,6],[218,8],[1,1],[2,2],[1,1],[7,3],[235,10],[49,7],[81,8],[1,1],[4,3],[215,8],[505,9],[2,2],[69,7],[40,6],[472,9],[8,4],[302,9],[124,8],[1,7],[944,10],[3,2],[14,6],[8,4],[36,9],[375,10],[311,9],[16,6],[6,4],[912,10],[852,10],[18,7],[396,9],[6,3],[322,9],[10,7],[169,9],[50,7],[64,8],[22,5],[369,10],[250,10],[1,7],[13,4],[6,3],[86,7],[115,8],[150,9],[240,8],[966,10],[1,1],[1,4],[14,5],[4,3],[10,4],[839,10],[1,1],[3,2],[25,5],[83,7],[121,9],[116,7],[385,9],[7,3],[118,7],[6,5],[8,5],[381,9],[35,6],[1,2],[1,3],[18,5],[306,9],[45,8],[9,4],[30,8],[110,8],[64,7],[21,5],[5,4],[424,9],[1,1],[1015,10],[6,7],[53,6],[24,5],[2,2],[873,10],[6,3],[8,5],[13,9],[372,9],[5,3],[1,1],[15,4],[2,2],[1,1],[330,10],[192,8],[495,10],[41,10],[54,6],[1,1],[45,7],[72,8],[23,6],[10,5],[3,2],[10,4],[1,1],[5,3],[1,1],[3,2],[6,3],[2,2],[2,2],[3,3],[33,6],[2,7],[209,10],[1,1],[23,6],[3,2],[1,3],[210,8],[3,5],[1,1],[12,6],[404,9],[799,10],[1,3],[3,3],[7,3],[265,9],[15,4],[383,9],[735,10],[1,1],[191,8],[240,8],[13,6],[12,6],[19,5],[470,10],[3,4],[33,6],[29,5],[1,1],[3,3],[2,3],[1,1],[1,1],[36,7],[44,6],[1,2],[349,9],[4,3],[4,4],[10,4],[3,2],[159,10],[24,7],[25,6],[188,8],[510,9],[49,8],[472,10],[127,7],[197,9],[5,3],[28,7],[7,4],[3,2],[21,5],[481,10],[6,3],[88,9],[199,8],[66,7],[1,2],[20,5],[3,3],[1,1],[337,10],[9,7],[60,6],[124,7],[6,3],[904,10],[190,9],[1,2],[211,9],[7,3],[10,7],[190,8],[210,8],[179,8],[13,4],[3,2],[1,2],[17,5],[60,6],[4,3],[816,10],[18,7],[1,1],[426,10],[29,5],[1,1],[1,1],[83,7],[696,10],[530,10],[1,7],[2,4],[94,8],[13,4],[21,5],[1,1],[181,10],[1,1],[284,9],[708,10],[176,8],[96,7],[14,7],[37,6],[12,6],[2,3],[2,5],[727,10],[6,3],[529,10],[376,10],[6,3],[7,6],[6,4],[6,3],[9,6],[94,7],[5,4],[207,10],[1,1],[251,9],[22,5],[2,2],[1,1],[1,2],[79,7],[4,3],[6,3],[6,4],[1,1],[362,9],[1,1],[6,3],[5,3],[1,1],[14,5],[120,9],[1,3],[111,7],[1,1],[16,6],[13,6],[140,10],[6,4],[10,8],[2,2],[654,10],[166,8],[36,6],[88,7],[4,3],[4,3],[2,7],[3,2],[2,3],[150,8],[902,10],[210,8],[252,8],[26,7],[35,10],[21,6],[7,5],[1,1],[4,4],[132,8],[138,10],[302,10],[56,6],[242,8],[6,6],[812,10],[87,7],[13,6],[10,5],[506,9],[507,9],[19,7],[3,3],[12,4],[2,3],[492,10],[177,9],[35,8],[4,3],[98,7],[54,8],[1,1],[9,4],[1,2],[97,7],[2,4],[121,8],[120,9],[14,4],[90,7],[242,8],[451,10],[21,7],[3,6],[110,8],[39,9],[7,9],[3,2],[443,9],[70,7],[330,9],[142,8],[1,5],[1,1],[1,1],[206,10],[25,6],[247,8],[31,5],[170,8],[7,3],[7,4],[89,9],[2,2],[2,10],[1,1],[83,7],[81,8],[1,1],[3,2],[163,10],[54,10],[254,8],[21,6],[11,4],[1,1],[44,8],[728,10],[1,2],[44,6],[615,10],[221,8],[51,6],[1,2],[824,10],[89,7],[89,9],[2,3],[1,3],[212,8],[94,9],[116,7],[1,1],[1,1],[1,2],[14,4],[1,2],[1,2],[466,9],[58,6],[5,3],[55,7],[120,8],[91,8],[57,9],[58,7],[1013,10],[3,4],[5,3],[9,4],[25,7],[172,8],[5,6],[27,7],[93,7],[654,10],[75,7],[4,3],[5,4],[212,9],[282,9],[24,5],[3,2],[16,5],[536,10],[6,4],[123,7],[850,10],[27,6],[56,8],[4,10],[10,6],[874,10],[29,5],[2,2],[22,5],[75,7],[11,5],[113,7],[8,4],[7,3],[31,5],[450,9],[227,8],[1,1],[8,5],[29,7],[253,8],[4,3],[4,4],[2,2],[2,2],[39,6],[28,6],[1,2],[54,7],[5,3],[806,10],[208,9],[1,1],[307,9],[1,1],[126,9],[2,2],[4,3],[209,10],[181,9],[1,1],[526,10],[123,7],[11,4],[5,3],[131,8],[131,8],[7,5],[392,9],[23,5],[408,9],[204,8],[21,6],[126,7],[1,2],[84,7],[11,4],[14,4],[38,6],[5,3],[1,1],[182,8],[27,7],[1,3],[14,4],[352,10],[1,1],[1,1],[2,3],[3,3],[2,2],[5,3],[49,6],[572,10],[2,2],[63,8],[1,1],[150,8],[30,8],[1,1],[1,1],[1,3],[44,6],[5,3],[80,8],[48,7],[37,6],[36,6],[521,10],[3,2],[2,2],[9,5],[1,1],[120,8],[215,8],[247,8],[18,5],[15,4],[2,2],[31,5],[477,9],[15,4],[25,7],[90,8],[127,10],[1,3],[31,5],[27,5],[2,2],[118,7],[5,3],[130,8],[167,8],[4,3],[638,10],[3,4],[11,5],[1,1],[115,7],[1,2],[1,1],[21,5],[500,9],[45,9],[75,8],[17,5],[1,1],[2,3],[10,4],[57,6],[12,4],[253,8],[9,4],[23,6],[8,4],[384,10],[26,5],[1,1],[226,8],[1,1],[4,4],[154,9],[443,9],[6,3],[40,7],[1,9],[2,2],[3,2],[84,7],[69,7],[2,5],[33,8],[793,10],[1,1],[6,4],[13,6],[3,3],[755,10],[56,6],[2,2],[3,2],[187,8],[1,3],[2,2],[1,3],[3,2],[1,2],[151,8],[58,6],[1,1],[1,1],[1,3],[36,7],[154,8],[55,6],[46,6],[18,5],[4,7],[85,7],[3,7],[1,2],[5,3],[14,4],[1,2],[368,10],[123,8],[113,7],[345,10],[51,9],[171,8],[2,2],[2,2],[38,10],[10,5],[4,5],[1,1],[7,3],[1,1],[461,9],[2,3],[240,9],[51,7],[24,5],[1,3],[367,10],[15,5],[41,6],[21,6],[31,6],[92,7],[581,10],[1,3],[220,8],[171,8],[771,10],[1,5],[375,9],[3,6],[1,4],[1,2],[1,4],[502,10],[84,7],[48,6],[1,2],[12,5],[10,5],[6,3],[3,5],[561,10],[3,3],[1,2],[2,3],[39,8],[6,3],[11,4],[5,3],[2,3],[11,4],[124,8],[2,2],[35,6],[43,7],[10,5],[54,6],[3,2],[430,9],[1,7],[27,5],[7,4],[309,9],[11,6],[76,8],[212,8],[270,10],[5,4],[1,1],[545,10],[4,3],[95,9],[118,7],[520,10],[258,9],[7,3],[191,10],[6,8],[284,9],[1,1],[1,2],[1,1],[9,5],[44,6],[9,5],[68,10],[1,3],[6,3],[30,5],[6,3],[573,10],[399,10],[9,5],[8,5],[421,9],[25,7],[4,3],[1,1],[7,4],[145,9],[1,1],[80,8],[12,4],[3,3],[68,7],[980,10],[75,7],[9,4],[14,5],[2,3],[1,1],[1,2],[190,8],[35,9],[757,10],[128,8],[20,5],[11,4],[18,6],[479,9],[49,6],[1,1],[2,2],[418,10],[22,5],[608,10],[41,6],[2,7],[578,10],[209,8],[2,2],[29,7],[15,4],[1,1],[73,8],[4,3],[14,4],[26,5],[71,7],[522,10],[3,3],[126,8],[3,2],[35,8],[4,9],[30,6],[30,5],[40,7],[2,3],[3,2],[1,1],[27,5],[3,4],[3,2],[498,10],[1,3],[32,8],[5,3],[1,1],[75,7],[6,4],[15,7],[2,3],[375,9],[3,2],[221,9],[4,5],[690,10],[779,10],[33,6],[397,10],[79,7],[239,8],[894,10],[1,2],[2,4],[3,2],[333,9],[19,5],[1,4],[6,3],[20,6],[1,2],[1,2],[37,8],[46,6],[1,1],[54,7],[23,5],[23,6],[1,1],[1,1],[300,9],[17,5],[22,5],[2,4],[7,3],[26,6],[16,5],[7,7],[21,5],[31,8],[5,3],[27,8],[7,3],[304,10],[2,6],[17,6],[4,10],[55,9],[2,3],[56,6],[25,6],[3,2],[121,9],[942,10],[13,5],[888,10],[77,9],[181,8],[87,8],[1,1],[4,3],[26,8],[19,7],[9,4],[327,9],[1,1],[445,9],[1,1],[26,5],[209,10],[54,6],[1,3],[389,10],[24,5],[4,4],[27,6],[1,5],[19,6],[135,8],[30,5],[3,2],[1,1],[39,6],[3,2],[1,1],[22,5],[3,2],[3,3],[14,6],[5,3],[31,5],[55,6],[2,2],[7,4],[7,3],[1,1],[21,6],[3,6],[2,3],[147,10],[247,9],[678,10],[115,7],[28,5],[23,5],[4,3],[12,6],[2,3],[66,7],[15,5],[2,4],[861,10],[9,4],[3,5],[240,8],[2,3],[1,1],[427,9],[1,3],[5,7],[5,4],[7,3],[1,1],[1,1],[34,7],[29,5],[1,1],[963,10],[300,10],[8,4],[557,10],[12,5],[2,5],[169,9],[2,2],[10,5],[2,3],[1,1],[179,9],[4,5],[15,4],[1,3],[7,3],[153,8],[3,2],[3,2],[1,2],[31,8],[7,5],[3,2],[173,8],[54,6],[76,7],[5,4],[79,7],[6,3],[1,1],[20,5],[2,2],[1,1],[7,4],[50,6],[88,7],[110,7],[2,3],[18,5],[12,4],[25,5],[45,6],[1,1],[395,9],[115,9],[1,1],[19,6],[38,6],[2,2],[287,10],[111,8],[327,9],[12,4],[78,10],[40,6],[18,6],[20,5],[28,5],[4,3],[34,6],[1,2],[1,2],[2,4],[41,8],[931,10],[110,7],[3,3],[28,10],[464,9],[3,2],[10,5],[6,3],[1,2],[324,10],[73,7],[948,10],[13,5],[2,8],[112,7],[13,4],[3,5],[1,1],[7,6],[2,2],[2,4],[183,10],[184,10],[23,5],[2,2],[39,6],[6,3],[22,5],[48,6],[399,10],[1,1],[1,1],[3,2],[52,8],[1,1],[4,4],[15,4],[188,8],[445,10],[346,10],[624,10],[2,4],[1,5],[198,8],[1,1],[3,4],[103,7],[245,8],[3,2],[33,7],[16,5],[330,9],[18,5],[3,6],[26,5],[92,9],[90,8],[82,7],[2,3],[68,8],[2,4],[1,4],[7,3],[2,2],[7,3],[13,4],[773,10],[30,5],[63,7],[4,3],[3,3],[99,7],[376,9],[350,9],[117,9],[191,8],[11,5],[2,2],[1,1],[29,5],[3,3],[30,5],[2,2],[35,6],[71,7],[2,2],[522,10],[184,9],[703,10],[1,1],[672,10],[94,9],[38,6],[1,1],[1,1],[1,1],[3,2],[4,5],[1,2],[11,4],[1,3],[43,9],[573,10],[26,5],[20,5],[90,8],[57,7],[147,10],[6,4],[854,10],[25,5],[17,6],[250,10],[18,7],[137,8],[27,5],[71,8],[480,10],[45,7],[476,9],[4,3],[68,9],[10,4],[25,8],[1,6],[492,9],[221,9],[14,4],[2,2],[13,5],[5,3],[6,7],[15,4],[3,2],[70,10],[1,1],[18,5],[12,4],[14,4],[176,8],[203,9],[1,1],[5,5],[1,1],[9,6],[349,9],[1,1],[7,3],[5,3],[3,3],[1,1],[1,4],[1,3],[14,4],[227,8],[7,4],[3,2],[1,1],[110,7],[1,3],[291,10],[2,4],[8,4],[1,1],[2,2],[21,5],[3,2],[29,6],[8,7],[120,8],[11,4],[17,5],[120,8],[2,2],[1,1],[140,8],[1,1],[8,7],[1,1],[23,6],[80,7],[100,7],[1,1],[103,8],[1,1],[501,9],[675,10],[434,10],[60,6],[90,8],[31,8],[879,10],[223,8],[19,6],[26,6],[989,10],[10,4],[1,3],[2,4],[8,4],[1,1],[41,6],[4,3],[672,10],[58,8],[31,5],[177,8],[15,4],[424,9],[1,1],[3,2],[2,6],[17,5],[3,2],[2,3],[6,3],[320,10],[12,5],[1,1],[1017,10],[2,4],[23,8],[218,8],[72,7],[101,7],[11,4],[6,5],[1,1],[3,2],[69,7],[2,3],[1,4],[8,5],[9,4],[436,10],[1,2],[2,2],[8,4],[42,8],[5,5],[2,3],[22,6],[1,1],[213,10],[25,5],[2,2],[311,9],[1,2],[1,1],[212,8],[1,1],[1,1],[7,3],[59,7],[2,2],[638,10],[7,5],[44,6],[309,10],[10,5],[452,9],[138,9],[3,4],[417,10],[3,3],[13,4],[2,3],[104,8],[284,10],[4,5],[4,4],[1,1],[3,3],[154,8],[1,5],[203,8],[22,5],[270,10],[38,6],[3,2],[3,2],[6,3],[12,4],[146,9],[7,4],[121,7],[429,9],[72,8],[23,6],[2,2],[8,4],[1,1],[4,4],[1,1],[4,3],[412,10],[301,9],[7,3],[81,7],[4,3],[3,3],[173,8],[21,5],[1,1],[3,2],[3,2],[117,7],[1,1],[6,3],[31,5],[51,6],[2,2],[882,10],[1,3],[1,2],[378,9],[41,6],[7,3],[13,4],[86,9],[29,6],[197,10],[1,1],[1,2],[5,4],[30,5],[20,5],[213,9],[14,4],[130,8],[11,10],[14,4],[1,1],[531,10],[8,4],[1,2],[14,5],[6,5],[141,10],[5,3],[1,1],[1,1],[130,8],[15,5],[43,7],[3,3],[1,1],[56,6],[1,5],[3,5],[1,1],[7,6],[1,1],[66,8],[9,5],[5,4],[115,7],[2,2],[657,10],[20,5],[27,5],[6,3],[254,9],[31,5],[118,8],[59,7],[5,4],[1,1],[1,1],[7,4],[900,10],[1,2],[41,6],[13,5],[2,2],[5,4],[14,6],[11,4],[63,6],[1,2],[235,8],[1,3],[6,4],[209,8],[1,2],[1,1],[6,6],[189,9],[7,3],[186,9],[1,1],[80,8],[2,4],[162,8],[41,6],[2,3],[48,6],[2,2],[101,7],[390,10],[1,1],[73,7],[1,1],[1,4],[215,8],[4,4],[9,6],[737,10],[160,8],[1,1],[5,4],[14,4],[7,3],[122,7],[1,1],[85,7],[708,10],[3,3],[1,1],[2,3],[170,9],[21,5],[354,9],[3,2],[242,8],[5,5],[505,10],[2,2],[2,3],[167,9],[7,4],[294,9],[1,1],[9,4],[4,3],[62,6],[3,2],[9,4],[190,8],[1,1],[53,6],[112,7],[6,3],[846,10],[12,4],[208,8],[8,4],[185,9],[7,3],[25,5],[64,7],[402,10],[5,4],[143,8],[126,7],[5,3],[3,3],[334,9],[11,4],[15,6],[795,10],[1,1],[1,1],[1,1],[1,1],[1,2],[230,9],[2,2],[1,4],[3,3],[3,2],[109,7],[8,8],[254,9],[5,5],[605,10],[112,7],[48,7],[4,4],[1,1],[2,3],[756,10],[223,9],[187,8],[30,5],[7,4],[6,3],[37,8],[19,6],[1,1],[4,3],[250,8],[1,1],[3,4],[2,2],[1,2],[306,9],[1,2],[3,3],[81,7],[98,7],[90,9],[78,9],[14,4],[5,3],[35,6],[24,7],[3,3],[2,3],[16,6],[3,2],[30,6],[422,9],[5,3],[3,2],[26,5],[5,4],[144,10],[38,6],[6,3],[13,4],[109,9],[121,9],[235,9],[17,5],[501,9],[404,9],[405,9],[256,9],[1,3],[190,9],[29,5],[2,6],[25,5],[14,4],[1,1],[105,8],[2,2],[2,2],[215,8],[59,6],[4,4],[18,5],[5,6],[6,3],[119,7],[3,2],[2,2],[442,9],[1,1],[64,7],[75,9],[623,10],[1,1],[82,8],[3,3],[121,8],[3,3],[83,8],[18,7],[13,4],[50,9],[9,5],[1,1],[394,10],[1,2],[396,9],[146,10],[198,8],[46,8],[7,3],[1,1],[7,3],[1,7],[5,3],[1,4],[55,6],[12,4],[64,7],[569,10],[1,1],[89,7],[68,10],[26,6],[2,2],[7,3],[14,7],[42,6],[14,4],[372,10],[38,6],[386,10],[36,6],[3,2],[474,9],[3,2],[47,7],[25,5],[2,5],[16,5],[190,8],[2,4],[1,1],[27,5],[253,8],[11,4],[117,10],[251,9],[121,10],[38,6],[1,1],[15,4],[299,9],[2,2],[13,10],[34,6],[976,10],[82,10],[30,5],[8,5],[1,1],[452,9],[531,10],[383,9],[79,7],[22,8],[381,9],[14,4],[1,2],[2,3],[42,7],[262,9],[1,1],[2,2],[1,2],[4,3],[23,6],[3,2],[390,9],[32,6],[8,4],[12,6],[245,8],[739,10],[124,7],[3,3],[3,2],[461,9],[1,1],[285,10],[65,7],[46,8],[6,3],[3,2],[1,3],[102,9],[335,10],[29,8],[1,2],[11,5],[1,3],[28,5],[3,2],[9,9],[226,9],[11,5],[1,4],[590,10],[278,10],[92,10],[1,3],[490,9],[2,4],[1,1],[1,1],[1,1],[10,4],[511,9],[2,2],[18,5],[33,7],[81,7],[938,10],[307,9],[6,5],[30,6],[27,7],[74,9],[50,6],[350,9],[1,2],[5,3],[102,8],[722,10],[68,7],[120,7],[1,3],[504,10],[112,7],[399,9],[21,5],[1,1],[34,6],[61,6],[1,1],[323,9],[333,9],[1,1],[311,9],[897,10],[92,8],[24,5],[1,1],[913,10],[3,4],[840,10],[4,7],[1,1],[23,5],[6,3],[281,10],[3,4],[197,8],[1,4],[532,10],[233,8],[15,4],[206,8],[3,3],[751,10],[1,3],[1,2],[26,6],[74,7],[66,8],[103,7],[1,3],[1,2],[176,9],[53,7],[23,7],[175,8],[6,5],[23,7],[2,7],[1,2],[103,7],[63,6],[6,4],[13,4],[24,7],[16,5],[88,7],[54,6],[2,2],[3,3],[1,1],[1,2],[344,9],[17,5],[2,2],[6,3],[1,1],[39,6],[20,8],[5,3],[5,4],[14,4],[1,1],[624,10],[3,2],[11,6],[1,2],[889,10],[38,8],[271,9],[8,4],[99,8],[185,8],[1,2],[146,9],[1,2],[39,7],[13,5],[68,7],[31,5],[139,10],[29,6],[2,2],[61,6],[27,6],[1,1],[30,6],[3,4],[1,2],[15,5],[1,1],[33,9],[7,6],[931,10],[111,7],[180,8],[19,7],[324,10],[1,1],[986,10],[4,3],[3,8],[2,2],[3,6],[727,10],[7,3],[645,10],[1,1],[4,4],[7,4],[101,7],[224,8],[1,1],[51,6],[2,2],[176,9],[116,8],[335,9],[432,9],[91,7],[103,10],[8,5],[8,4],[45,8],[28,7],[7,3],[1,1],[17,5],[23,6],[86,8],[5,4],[118,7],[2,2],[5,5],[11,5],[1,2],[113,7],[228,8],[11,4],[1,3],[25,5],[14,5],[810,10],[22,5],[3,4],[1,1],[1,2],[2,3],[7,6],[170,10],[98,10],[8,6],[491,9],[4,7],[55,6],[1,1],[11,4],[1,1],[35,9],[1,1],[1,1],[92,7],[6,3],[2,4],[1,1],[132,9],[2,2],[1,3],[26,6],[6,6],[1,1],[22,5],[113,8],[37,7],[5,7],[2,4],[4,3],[165,8],[1,2],[11,4],[288,10],[23,8],[2,2],[1,1],[9,4],[2,2],[29,5],[44,6],[1,1],[5,5],[124,7],[4,3],[99,7],[12,4],[1,1],[28,5],[1,2],[50,6],[18,5],[716,10],[1,1],[11,4],[485,10],[51,7],[581,10],[2,3],[331,10],[8,4],[1,1],[1,1],[422,10],[36,8],[28,10],[32,6],[3,2],[6,6],[59,6],[488,9],[3,3],[15,4],[1,2],[5,3],[5,3],[3,3],[31,5],[50,7],[5,3],[22,7],[5,3],[55,6],[253,8],[1,2],[30,7],[117,9],[218,8],[30,5],[4,3],[14,4],[16,7],[1,1],[2,2],[103,10],[1,2],[2,3],[1,1],[42,6],[834,10],[125,9],[4,3],[5,3],[14,5],[357,10],[196,9],[852,10],[2,2],[1020,10],[4,8],[86,7],[12,4],[9,5],[1,1],[26,5],[2,5],[499,9],[342,9],[5,4],[5,3],[1,1],[1,1],[32,8],[2,2],[3,2],[6,3],[349,9],[29,5],[16,6],[6,7],[15,4],[16,5],[1,1],[86,9],[2,2],[987,10],[7,3],[184,10],[14,4],[1,1],[3,3],[3,2],[25,6],[2,2],[1,1],[5,3],[7,4],[1,1],[3,2],[55,6],[3,2],[994,10],[107,7],[25,5],[472,9],[4,3],[858,10],[82,7],[948,10],[15,5],[1,1],[13,4],[429,9],[118,9],[57,6],[222,8],[6,4],[1,1],[6,3],[5,4],[5,5],[285,9],[2,2],[19,5],[1,1],[1,1],[1,1],[3,2],[51,8],[31,5],[22,5],[53,10],[884,10],[427,9],[13,4],[1,2],[5,4],[10,4],[167,9],[3,2],[1,1],[87,8],[10,4],[1,1],[1,1],[4,7],[338,9],[129,9],[7,3],[44,9],[700,10],[42,8],[1,4],[20,7],[768,10],[151,9],[96,8],[71,8],[1,1],[31,5],[48,6],[4,6],[98,7],[506,10],[622,10],[322,9],[54,7],[5,3],[2,2],[1,8],[63,6],[1,1],[19,5],[12,5],[3,3],[4,3],[4,3],[3,2],[3,2],[1,3],[254,9],[10,6],[544,10],[14,4],[49,6],[161,8],[44,6],[760,10],[822,10],[88,8],[2,3],[47,8],[1,1],[638,10],[37,6],[107,7],[84,7],[111,8],[239,8],[1,1],[40,7],[1,1],[918,10],[266,9],[75,8],[6,3],[885,10],[12,6],[556,10],[86,7],[3,2],[12,4],[53,10],[44,8],[2,7],[12,4],[7,7],[1,1],[96,7],[1,1],[112,7],[20,9],[27,5],[15,5],[21,7],[166,8],[1,1],[305,9],[1,2],[32,7],[1,1],[39,6],[1,1],[20,6],[111,8],[1,5],[1,2],[3,2],[20,5],[189,8],[3,2],[1,2],[911,10],[1,1],[131,8],[3,4],[15,4],[9,4],[1,4],[22,5],[232,8],[14,5],[3,2],[8,8],[295,10],[1,4],[995,10],[2,5],[1,1],[16,8],[1,2],[39,7],[56,6],[50,6],[63,9],[6,4],[65,7],[2,2],[1,2],[2,3],[232,9],[1,3],[10,6],[134,8],[3,2],[192,9],[57,7],[3,2],[3,2],[21,5],[71,10],[661,10],[12,5],[1,1],[251,9],[14,7],[3,3],[4,3],[8,5],[948,10],[3,3],[26,5],[539,10],[19,8],[10,4],[108,7],[1,1],[248,8],[266,9],[13,4],[3,3],[1,3],[1,8],[11,4],[3,5],[254,10],[2,4],[47,7],[122,7],[3,3],[35,7],[1,2],[14,4],[11,4],[5,3],[3,2],[15,4],[11,5],[16,5],[50,7],[13,5],[79,7],[46,9],[98,9],[614,10],[19,6],[406,10],[5,3],[5,3],[2,2],[166,9],[395,10],[194,8],[700,10],[31,7],[53,6],[8,5],[317,9],[107,8],[883,10],[6,4],[1,2],[306,9],[3,2],[49,6],[2,2],[353,9],[1,1],[125,10],[81,7],[27,5],[51,7],[31,8],[1,1],[1,2],[4,4],[4,4],[3,2],[79,9],[514,10],[2,2],[1,1],[41,6],[1,3],[3,2],[13,6],[142,8],[3,2],[5,3],[1,2],[52,6],[387,9],[5,3],[61,9],[24,5],[7,3],[3,5],[1,1],[43,7],[14,5],[1,1],[2,2],[5,7],[29,9],[1,2],[11,4],[1,1],[770,10],[14,5],[430,9],[24,5],[28,7],[5,4],[910,10],[9,4],[2,3],[3,2],[1,2],[30,5],[4,3],[12,4],[1,2],[28,5],[103,8],[1,1],[74,7],[463,9],[167,9],[195,9],[2,4],[21,5],[36,7],[16,8],[6,3],[4,4],[50,10],[27,5],[28,8],[3,6],[730,10],[1,1],[245,9],[17,5],[1,1],[1,3],[13,4],[4,3],[121,9],[4,4],[8,6],[3,4],[5,3],[1,1],[110,7],[4,3],[19,6],[198,9],[365,10],[197,8],[194,9],[10,5],[24,8],[1,2],[4,7],[63,7],[61,8],[4,4],[24,6],[13,6],[3,2],[116,7],[30,5],[824,10],[6,5],[580,10],[8,5],[175,8],[2,2],[7,3],[1,1],[50,6],[3,2],[1,1],[1,1],[1,3],[6,4],[20,5],[230,9],[53,8],[2,2],[3,3],[1,3],[12,4],[9,5],[2,4],[19,5],[476,10],[4,3],[96,7],[4,3],[8,6],[793,10],[423,9],[1,1],[17,6],[1,3],[1,3],[1,2],[8,6],[116,7],[3,2],[11,4],[5,3],[2,4],[59,6],[446,9],[409,9],[57,6],[2,2],[816,10],[5,3],[134,9],[188,8],[332,9],[117,7],[63,7],[7,4],[1,4],[1,1],[180,8],[59,7],[4,3],[288,10],[365,9],[3,3],[3,2],[2,2],[8,4],[3,3],[42,8],[70,9],[49,8],[143,8],[6,4],[1,1],[1,2],[5,8],[276,9],[4,3],[345,9],[4,5],[1,1],[5,3],[96,9],[6,3],[27,5],[21,6],[4,3],[1,1],[33,6],[709,10],[2,7],[6,3],[1,1],[539,10],[13,8],[3,3],[1,1],[1,1],[1003,10],[1,2],[1,1],[27,5],[55,9],[61,8],[31,5],[4,4],[3,3],[56,6],[4,6],[1,1],[81,7],[495,10],[8,5],[35,8],[55,7],[337,9],[2,3],[55,7],[101,7],[208,8],[506,9],[9,8],[116,7],[32,6],[10,6],[1,1],[1,1],[14,5],[347,9],[7,3],[27,5],[7,5],[13,5],[24,5],[197,10],[102,7],[444,9],[1,1],[5,3],[1,2],[7,3],[835,10],[36,10],[1,1],[31,6],[14,4],[2,3],[235,8],[4,3],[6,3],[1,1],[2,7],[8,4],[73,9],[1,3],[27,7],[1,1],[87,7],[6,4],[26,5],[2,2],[1,4],[19,6],[2,4],[14,4],[111,8],[1,1],[2,3],[39,6],[27,5],[28,7],[14,4],[1,4],[1,1],[13,5],[337,9],[8,6],[2,3],[59,9],[30,5],[26,5],[1,1],[63,6],[7,3],[1,2],[23,6],[3,5],[3,2],[1,1],[28,9],[11,5],[43,7],[433,9],[667,10],[706,10],[6,3],[645,10],[34,6],[9,6],[101,8],[135,9],[79,7],[162,10],[87,8],[27,5],[6,4],[26,5],[1,2],[5,3],[2,2],[121,7],[1,1],[2,2],[22,5],[1,3],[57,7],[3,2],[13,4],[322,10],[49,8],[47,6],[3,2],[1,1],[52,7],[7,4],[8,4],[1,1],[1,1],[1,2],[130,10],[3,3],[2,2],[97,7],[1,2],[5,3],[61,8],[2,2],[5,4],[7,3],[13,5],[15,6],[204,8],[12,4],[6,3],[1,1],[29,5],[576,10],[253,8],[3,2],[10,8],[211,8],[81,7],[7,3],[9,4],[2,2],[11,6],[13,4],[1,1],[4,3],[152,8],[11,4],[17,5],[120,8],[1,4],[55,6],[741,10],[7,3],[1,2],[2,5],[3,2],[3,2],[79,7],[31,5],[43,6],[6,3],[7,7],[1,1],[16,5],[84,7],[929,10],[13,4],[7,3],[122,7],[33,6],[500,9],[283,9],[1,7],[29,5],[313,9],[1,1],[62,7],[68,8],[7,5],[3,2],[1,3],[100,7],[11,4],[283,9],[2,3],[2,2],[4,5],[1,2],[1,4],[19,5],[26,6],[2,4],[23,6],[6,4],[20,5],[15,4],[504,9],[2,2],[3,2],[15,4],[1,3],[162,10],[914,10],[35,6],[147,8],[441,9],[405,10],[902,10],[7,3],[19,10],[362,10],[1,1],[883,10],[499,9],[93,8],[3,2],[1,1],[6,4],[116,7],[5,4],[3,3],[2,2],[26,5],[577,10],[2,5],[67,7],[239,9],[1019,10],[229,8],[1,3],[1,3],[72,7],[3,3],[423,9],[3,3],[62,6],[20,5],[967,10],[11,4],[1,1],[114,8],[10,4],[2,4],[4,3],[371,9],[109,8],[7,5],[189,8],[75,7],[2,2],[5,4],[31,5],[1,1],[2,2],[12,8],[59,6],[414,9],[65,7],[1,1],[86,8],[55,7],[8,10],[1,2],[97,7],[3,2],[23,6],[6,3],[14,4],[1,1],[4,3],[15,10],[1,1],[289,10],[3,7],[14,6],[1,4],[1,2],[3,2],[31,5],[1,1],[48,7],[846,10],[940,10],[6,3],[1,2],[22,5],[15,4],[236,8],[239,9],[1,4],[156,8],[1,2],[52,6],[15,4],[9,4],[29,9],[673,10],[1,3],[19,7],[1,1],[20,5],[5,3],[19,5],[42,6],[1,1],[226,10],[70,10],[294,10],[179,8],[1,5],[181,8],[515,10],[413,10],[2,2],[3,2],[61,6],[661,10],[36,6],[17,7],[3,2],[17,5],[10,5],[88,8],[52,8],[6,5],[135,8],[1,1],[7,4],[37,8],[275,9],[133,9],[465,9],[299,9],[63,6],[233,8],[100,7],[427,9],[5,4],[3,5],[8,4],[3,6],[52,9],[66,7],[3,3],[274,10],[14,4],[243,10],[35,7],[42,7],[99,7],[400,9],[5,3],[46,6],[128,8],[5,4],[191,8],[19,7],[1,1],[23,5],[14,4],[27,6],[6,3],[519,10],[1,1],[1,4],[43,7],[24,5],[54,6],[1,1],[3,3],[2,2],[38,8],[9,8],[339,9],[27,7],[25,5],[1,2],[2,3],[3,3],[1,1],[591,10],[230,8],[157,9],[1,4],[1,2],[24,5],[7,5],[24,7],[6,5],[6,3],[461,9],[198,10],[7,3],[125,9],[4,3],[707,10],[4,3],[33,7],[1,2],[26,9],[3,2],[7,4],[111,8],[1,2],[15,6],[3,2],[4,4],[14,6],[55,7],[86,8],[1,2],[4,3],[29,5],[194,9],[388,9],[30,5],[114,7],[502,9],[260,9],[5,5],[77,8],[109,7],[27,5],[271,9],[3,2],[20,6],[91,7],[975,10],[12,5],[2,2],[1,1],[12,6],[12,6],[450,9],[2,8],[1,1],[1,1],[7,6],[114,7],[2,6],[1,1],[3,5],[4,3],[346,10],[193,10],[63,6],[28,6],[2,5],[221,9],[576,10],[30,6],[126,9],[357,10],[1,1],[7,3],[5,3],[1,1],[4,3],[12,4],[269,9],[1,1],[1,2],[2,3],[1,4],[408,10],[28,7],[214,8],[2,4],[11,5],[979,10],[1,1],[18,10],[81,7],[14,4],[11,4],[1,1],[13,4],[2,2],[5,9],[210,10],[6,5],[17,5],[1,1],[49,7],[1002,10],[36,8],[1,1],[354,9],[645,10],[1,1],[14,4],[1,1],[5,3],[2,2],[202,10],[5,4],[458,9],[24,6],[37,7],[59,6],[4,3],[630,10],[3,2],[49,10],[325,9],[32,6],[1,2],[53,10],[3,2],[3,3],[236,10],[64,8],[264,9],[1,1],[457,9],[3,3],[1014,10],[1,1],[1,3],[57,6],[1,1],[3,2],[297,9],[12,4],[186,9],[2,3],[24,6],[1,1],[2,4],[38,8],[524,10],[1,1],[5,4],[169,9],[4,5],[140,8],[25,7],[474,9],[1,1],[41,6],[34,8],[1,1],[72,7],[25,5],[509,10],[18,6],[3,4],[12,4],[4,3],[2,2],[1,3],[29,5],[222,9],[615,10],[3,2],[14,4],[58,6],[2,2],[19,5],[72,7],[215,9],[2,2],[242,10],[132,8],[8,5],[17,5],[9,7],[7,3],[31,5],[47,6],[308,9],[3,2],[13,4],[46,7],[1,1],[1,1],[1,2],[27,5],[3,2],[6,4],[1,1],[689,10],[12,5],[1,1],[40,7],[12,7],[50,7],[5,4],[40,6],[1,1],[153,8],[313,9],[441,9],[2,2],[1,3],[3,5],[163,8],[105,8],[12,4],[91,7],[3,3],[24,8],[6,3],[398,9],[56,6],[3,7],[3,3],[315,9],[116,8],[8,6],[1,1],[6,4],[2,4],[380,9],[7,3],[225,8],[6,3],[345,9],[47,7],[1,1],[1,1],[7,4],[1,4],[964,10],[6,3],[506,9],[1,1],[39,7],[7,5],[9,6],[1,1],[1,1],[207,9],[2,5],[2,2],[28,6],[110,7],[1,1],[2,4],[71,7],[219,8],[5,7],[3,2],[1,2],[7,6],[5,4],[1,7],[134,8],[41,6],[13,5],[1,1],[49,7],[209,9],[5,4],[332,9],[136,9],[302,10],[390,9],[183,8],[812,10],[2,2],[4,4],[3,2],[9,6],[959,10],[52,6],[119,7],[36,9],[16,6],[18,6],[206,8],[3,3],[3,2],[541,10],[3,2],[1,1],[13,5],[958,10],[25,9],[268,9],[1,3],[18,5],[239,8],[7,5],[375,10],[3,2],[953,10],[3,2],[1,2],[3,4],[4,3],[7,7],[23,5],[35,7],[221,8],[146,10],[3,2],[168,8],[9,4],[1,1],[2,5],[1,1],[101,7],[177,8],[46,6],[219,9],[123,7],[46,6],[13,4],[5,3],[5,3],[71,8],[11,4],[7,3],[346,9],[26,5],[1,3],[11,4],[7,6],[2,2],[16,6],[465,10],[757,10],[298,9],[1,5],[2,3],[27,7],[4,5],[1,1],[209,9],[23,8],[15,5],[8,4],[2,2],[1,1],[932,10],[20,7],[56,8],[4,4],[4,3],[1,2],[217,8],[4,3],[3,2],[1,1],[3,2],[30,9],[11,4],[1,2],[1,1],[42,9],[8,4],[25,5],[347,9],[23,5],[2,2],[160,8],[412,9],[6,3],[11,9],[98,8],[112,7],[29,6],[48,7],[862,10],[56,6],[79,7],[1,1],[42,6],[699,10],[2,2],[7,3],[1,2],[178,10],[13,4],[352,10],[17,10],[29,5],[3,3],[13,4],[6,3],[19,6],[226,8],[33,8],[1,1],[215,9],[7,3],[3,3],[9,5],[2,3],[299,10],[42,7],[5,8],[340,9],[1,1],[18,8],[8,7],[3,2],[138,10],[1,1],[146,8],[4,3],[83,10],[469,9],[972,10],[243,8],[2,2],[6,3],[1,1],[1,2],[2,5],[21,5],[3,2],[111,7],[11,4],[14,4],[7,3],[5,3],[1,2],[39,7],[22,5],[4,5],[91,7],[88,10],[1,3],[1,2],[7,5],[401,10],[10,6],[1,1],[1,3],[702,10],[865,10],[107,8],[15,4],[31,6],[767,10],[18,6],[1,8],[3,2],[204,8],[10,5],[406,9],[34,6],[1,1],[1,7],[202,8],[2,4],[3,5],[2,2],[4,4],[31,5],[57,6],[125,7],[19,5],[250,9],[18,5],[458,10],[2,2],[8,4],[74,7],[500,10],[1,1],[522,10],[50,7],[2,4],[20,5],[1,1],[4,3],[6,4],[802,10],[63,6],[454,9],[517,10],[15,5],[1,1],[4,4],[2,4],[2,2],[32,7],[5,4],[219,10],[6,4],[361,9],[12,4],[2,2],[2,2],[1,1],[110,9],[148,8],[10,5],[30,8],[633,10],[6,3],[5,4],[188,9],[60,6],[13,5],[325,9],[1,1],[210,8],[206,9],[1,1],[24,5],[49,6],[2,4],[66,7],[118,8],[9,4],[5,4],[1,1],[1,1],[800,10],[236,9],[504,9],[5,4],[3,3],[84,7],[4,4],[435,9],[13,5],[216,8],[2,2],[2,4],[66,9],[121,7],[1,2],[55,9],[1,1],[4,3],[5,4],[24,6],[12,4],[1,1],[1,2],[175,8],[95,9],[3,2],[826,10],[5,3],[4,3],[4,3],[4,3],[1,1],[350,9],[1,1],[251,8],[6,3],[3,4],[1,4],[336,10],[422,9],[5,3],[10,4],[191,8],[276,9],[813,10],[988,10],[4,3],[190,10],[10,4],[1,1],[1,1],[186,8],[209,8],[38,10],[107,9],[1,2],[1,1],[14,4],[1,3],[77,10],[43,7],[373,9],[254,10],[2,5],[3,2],[442,10],[28,8],[17,6],[1,1],[42,7],[9,5],[128,10],[5,3],[1,6],[97,8],[11,4],[1,4],[221,10],[1,4],[120,8],[381,10],[1,1],[1,1],[11,5],[35,6],[65,7],[40,7],[1,1],[79,9],[5,3],[7,3],[115,10],[1,4],[20,7],[1,2],[106,7],[274,10],[15,4],[13,5],[2,2],[6,3],[9,4],[81,7],[123,10],[5,3],[473,9],[20,9],[209,8],[3,3],[3,3],[2,2],[14,4],[19,6],[1,1],[28,6],[5,3],[44,6],[25,6],[22,5],[53,6],[15,4],[5,5],[1,2],[9,5],[7,4],[1,1],[5,5],[1,1],[229,9],[674,10],[1,4],[6,5],[187,8],[107,7],[1,1],[1,2],[13,7],[123,10],[47,7],[2,2],[1,4],[6,3],[1,2],[1,2],[3,2],[2,2],[1,1],[1,1],[9,7],[584,10],[34,7],[43,8],[16,5],[183,8],[9,4],[1012,10],[4,3],[5,4],[324,9],[33,6],[198,9],[18,6],[4,3],[2,3],[2,2],[3,2],[10,5],[2,4],[1,1],[62,7],[3,2],[27,5],[1,1],[12,5],[64,7],[4,5],[15,4],[11,4],[966,10],[9,5],[3,2],[1,1],[496,9],[1,2],[6,3],[25,5],[489,9],[4,4],[1,1],[1,1],[16,5],[1,1],[1,1],[699,10],[379,10],[73,7],[1,1],[5,3],[611,10],[1,1],[85,8],[12,4],[82,9],[23,6],[123,8],[159,8],[30,8],[4,3],[195,10],[3,2],[41,7],[111,8],[9,5],[68,8],[14,4],[245,8],[60,6],[127,9],[62,7],[3,2],[165,9],[785,10],[17,6],[6,3],[1,1],[26,7],[1,1],[231,8],[7,3],[750,10],[2,2],[20,6],[61,6],[24,6],[7,4],[90,7],[33,6],[14,5],[255,8],[62,7],[1,2],[3,2],[8,4],[353,9],[587,10],[1,2],[52,8],[3,4],[396,9],[45,7],[953,10],[12,6],[7,4],[355,9],[92,10],[1,2],[1,1],[431,9],[219,8],[51,7],[3,2],[154,8],[6,4],[21,6],[30,6],[6,4],[12,5],[37,6],[218,8],[5,4],[851,10],[358,9],[7,3],[225,9],[52,7],[11,8],[28,5],[6,3],[65,8],[163,9],[1,1],[1,1],[19,5],[598,10],[3,3],[1,2],[16,6],[105,9],[994,10],[1,1],[1,4],[123,7],[1,1],[2,2],[7,4],[2,2],[3,2],[275,9],[2,2],[740,10],[54,7],[3,2],[203,8],[20,6],[9,4],[17,5],[17,5],[735,10],[338,10],[254,8],[464,10],[50,7],[3,2],[1,1],[1,1],[1,1],[100,7],[334,10],[13,4],[93,7],[49,7],[2,2],[57,6],[158,10],[14,6],[91,7],[14,4],[7,3],[1,1],[84,9],[171,8],[312,9],[21,5],[513,10],[7,4],[81,7],[241,9],[6,8],[59,10],[281,10],[296,9],[13,4],[2,4],[1,2],[443,9],[14,4],[9,7],[7,5],[1,4],[1,1],[3,2],[83,8],[10,5],[288,9],[170,8],[207,10],[2,2],[27,6],[7,3],[1,2],[3,2],[4,4],[353,9],[103,8],[33,9],[4,4],[102,7],[102,7],[297,9],[1,1],[1,1],[518,10],[278,9],[28,5],[22,7],[581,10],[45,6],[126,8],[435,9],[12,4],[60,7],[69,8],[26,7],[2,2],[1,6],[21,6],[1,1],[5,3],[1,2],[3,2],[395,9],[2,3],[88,10],[28,5],[399,9],[140,9],[5,3],[1,1],[106,7],[1,1],[1,1],[53,6],[4,4],[51,8],[13,4],[97,8],[475,9],[188,8],[20,5],[96,7],[29,5],[41,6],[7,4],[20,8],[3,2],[1,3],[13,4],[9,4],[2,2],[212,8],[7,3],[292,9],[404,9],[1,1],[25,5],[2,4],[3,2],[1,4],[3,2],[1,1],[6,3],[10,5],[257,9],[8,5],[9,4],[2,3],[6,5],[10,4],[25,5],[6,5],[385,10],[1,3],[55,6],[494,9],[894,10],[2,3],[5,3],[421,9],[22,7],[7,5],[1,3],[107,7],[15,4],[1,1],[7,3],[90,8],[41,6],[1,2],[10,5],[124,8],[2,2],[32,6],[22,5],[5,3],[3,2],[1,2],[21,5],[1,1],[1,1],[1,1],[821,10],[73,7],[615,10],[343,9],[3,2],[108,7],[430,9],[18,5],[445,10],[4,4],[75,8],[464,10],[1,1],[32,7],[31,5],[3,2],[7,5],[179,8],[3,2],[1,1],[92,7],[333,9],[75,7],[45,8],[280,9],[4,5],[685,10],[10,4],[1,1],[175,10],[248,10],[182,9],[13,4],[3,2],[391,9],[250,8],[161,8],[6,3],[5,6],[2,3],[3,3],[105,9],[1,8],[601,10],[53,7],[202,8],[24,5],[14,4],[1,1],[16,6],[46,6],[6,4],[32,9],[2,2],[1,1],[128,10],[11,4],[119,8],[56,6],[155,8],[340,9],[65,9],[527,10],[1,1],[1,1],[78,7],[17,6],[3,5],[1,1],[138,8],[620,10],[1,1],[31,6],[61,8],[6,3],[1,1],[1,1],[779,10],[68,9],[97,7],[6,3],[45,9],[7,3],[5,6],[52,10],[4,3],[23,7],[1,2],[242,8],[395,9],[302,9],[172,8],[125,7],[48,6],[211,9],[12,4],[115,7],[47,6],[503,9],[116,8],[3,5],[16,5],[25,6],[45,7],[2,4],[6,3],[48,6],[27,5],[1,7],[18,5],[1,5],[15,4],[4,3],[121,7],[92,9],[2,2],[3,2],[2,4],[12,5],[1,1],[1,1],[1,3],[30,8],[10,5],[57,6],[7,6],[208,8],[3,2],[2,2],[88,7],[503,9],[14,5],[95,7],[2,2],[53,6],[94,7],[121,7],[1,1],[250,8],[30,5],[2,2],[60,7],[2,2],[7,3],[62,6],[1,1],[366,9],[78,7],[4,3],[1,2],[1,5],[13,5],[3,3],[2,2],[3,5],[41,7],[107,7],[47,9],[768,10],[64,8],[4,4],[5,3],[117,7],[24,5],[11,8],[45,6],[14,4],[1,1],[5,3],[238,9],[10,4],[316,9],[20,6],[3,2],[4,3],[1,1],[1,3],[210,10],[72,8],[1,1],[28,7],[219,8],[1,3],[73,7],[3,3],[63,6],[103,7],[436,9],[7,4],[69,8],[4,4],[8,4],[127,7],[4,5],[3,2],[2,2],[3,3],[1,1],[5,3],[3,2],[6,3],[1,1],[8,7],[252,9],[1,1],[100,7],[1,1],[1,2],[1,1],[254,9],[10,4],[63,9],[2,3],[88,9],[122,10],[14,5],[30,5],[81,8],[1,4],[17,6],[166,8],[63,6],[1,2],[29,6],[1,1],[114,9],[44,8],[3,2],[30,7],[3,2],[50,6],[1,1],[71,7],[7,4],[3,4],[7,3],[46,10],[64,7],[1,1],[31,8],[34,6],[2,3],[14,6],[289,9],[62,6],[6,3],[3,6],[1,1],[1,1],[4,3],[26,5],[2,2],[12,4],[31,6],[4,4],[54,6],[15,6],[51,6],[25,5],[1,1],[98,7],[43,8],[2,3],[13,6],[245,8],[13,5],[12,5],[523,10],[220,8],[84,10],[399,9],[5,5],[1,1],[3,2],[1,1],[3,3],[171,8],[93,7],[36,7],[6,3],[33,7],[796,10],[151,8],[3,4],[1,1],[2,3],[17,5],[256,9],[38,7],[6,3],[143,8],[1,1],[14,4],[1,1],[8,9],[1,2],[95,7],[260,10],[1,1],[5,4],[1,1],[4,3],[1,1],[6,3],[7,3],[1,1],[15,4],[46,7],[560,10],[114,10],[1,1],[109,7],[350,9],[39,6],[7,3],[6,9],[102,7],[147,8],[684,10],[5,6],[78,8],[7,5],[1,1],[7,3],[1,1],[27,5],[117,8],[18,5],[2,2],[6,5],[35,8],[77,8],[497,9],[150,8],[2,3],[148,8],[36,9],[469,10],[7,3],[29,5],[55,6],[1,1],[1,1],[1,1],[124,7],[37,7],[5,7],[2,2],[4,6],[1,4],[5,4],[1,1],[2,2],[22,6],[233,9],[52,7],[2,6],[1,2],[27,5],[1,2],[9,4],[6,3],[480,10],[5,3],[1,1],[7,3],[9,4],[1,2],[16,5],[595,10],[1,1],[116,9],[3,3],[6,5],[4,3],[35,7],[15,4],[1,3],[3,3],[24,9],[8,5],[30,10],[2,2],[716,10],[1,1],[2,2],[2,2],[11,4],[11,4],[7,4],[1,1],[1,2],[19,6],[14,7],[108,8],[1,2],[1,1],[35,8],[1,1],[2,2],[7,8],[900,10],[7,3],[1,1],[27,5],[103,8],[214,10],[31,6],[18,8],[3,2],[44,6],[71,10],[7,5],[2,4],[1,1],[96,7],[24,5],[1,2],[75,7],[24,7],[7,4],[1,7],[2,2],[3,2],[73,7],[8,4],[2,2],[8,4],[13,4],[21,5],[84,7],[616,10],[563,10],[41,6],[1,1],[224,8],[48,8],[110,7],[7,3],[22,5],[735,10],[63,6],[9,4],[201,9],[61,8],[475,10],[14,9],[8,4],[4,4],[14,4],[56,7],[47,6],[64,7],[1,1],[970,10],[21,5],[45,10],[9,5],[41,9],[1,1],[25,5],[9,5],[607,10],[3,2],[7,3],[643,10],[3,3],[217,10],[2,2],[96,7],[242,9],[3,3],[1,1],[474,9],[3,2],[1,1],[29,8],[119,7],[13,5],[1,3],[15,4],[1,1],[37,6],[4,3],[6,5],[2,2],[210,8],[401,10],[15,6],[14,4],[4,5],[1,2],[22,5],[40,7],[1,2],[499,10],[18,5],[1,1],[432,9],[813,10],[195,9],[1,1],[799,10],[1,2],[4,6],[12,7],[704,10],[102,7],[23,5],[67,7],[7,3],[84,10],[15,8],[433,9],[3,2],[7,4],[19,6],[115,8],[1,1],[12,5],[13,4],[7,5],[5,3],[8,4],[201,9],[4,3],[62,7],[7,5],[72,7],[1,1],[5,3],[305,10],[16,8],[3,2],[212,8],[38,8],[89,10],[1,2],[5,4],[99,7],[3,3],[14,4],[1,1],[29,5],[2,2],[5,3],[1,2],[3,3],[467,10],[2,2],[3,2],[3,5],[31,5],[10,6],[1,2],[98,7],[303,9],[31,5],[79,8],[14,8],[196,8],[10,4],[96,7],[294,9],[243,8],[44,7],[7,3],[23,5],[450,9],[189,9],[60,6],[2,2],[39,7],[208,8],[29,5],[3,2],[124,7],[96,7],[69,7],[2,2],[983,10],[6,8],[18,5],[11,4],[94,7],[10,4],[58,7],[93,8],[184,9],[9,4],[34,6],[237,8],[466,9],[1,1],[1,5],[40,7],[7,8],[11,5],[1,1],[11,6],[1,1],[1,1],[1,2],[275,10],[945,10],[42,6],[20,5],[10,5],[111,7],[371,9],[8,4],[41,6],[1,2],[785,10],[1,2],[63,6],[9,5],[6,4],[1,2],[291,9],[498,9],[610,10],[30,6],[13,6],[18,5],[1,1],[3,2],[19,5],[256,9],[1,1],[1,1],[9,7],[4,3],[109,8],[953,10],[3,3],[39,6],[4,3],[1,1],[933,10],[91,9],[75,8],[21,6],[625,10],[403,9],[5,6],[1,3],[3,3],[819,10],[1,1],[369,9],[1,1],[148,8],[30,7],[190,8],[3,2],[133,8],[7,6],[27,5],[14,4],[16,5],[5,3],[240,10],[19,7],[3,2],[118,8],[2,5],[28,6],[91,7],[2,2],[1,1],[2,7],[27,8],[12,4],[4,4],[35,6],[90,8],[2,2],[61,6],[9,8],[3,4],[1,3],[109,9],[1,2],[8,4],[53,6],[280,10],[240,9],[8,4],[2,3],[5,3],[1,2],[167,9],[28,5],[86,7],[3,3],[14,4],[77,8],[2,2],[1,1],[18,6],[7,3],[29,5],[25,6],[1,1],[81,7],[20,5],[1,1],[5,3],[224,8],[108,8],[25,5],[3,4],[239,8],[346,10],[88,7],[211,8],[11,4],[25,6],[3,3],[499,9],[21,5],[481,10],[2,5],[6,3],[1,1],[983,10],[3,2],[1,1],[8,4],[1,1],[1,1],[526,10],[157,9],[2,5],[136,9],[3,3],[10,4],[1,4],[52,6],[19,9],[3,3],[67,9],[204,8],[2,2],[17,5],[4,3],[14,4],[73,7],[293,9],[428,10],[245,8],[3,2],[28,5],[231,8],[1,1],[12,5],[32,10],[110,7],[123,8],[32,8],[1,3],[39,6],[1,2],[276,9],[12,6],[11,4],[20,6],[1,2],[1,4],[4,3],[3,3],[278,10],[3,3],[15,5],[17,5],[55,6],[304,9],[101,7],[1,1],[1,1],[4,6],[160,8],[189,8],[4,3],[20,5],[393,10],[273,9],[18,6],[220,8],[61,8],[1,1],[61,6],[63,6],[8,8],[3,2],[1,2],[1,4],[1,1],[13,4],[1,1],[25,8],[1,1],[17,8],[6,3],[79,7],[452,10],[23,5],[146,8],[2,2],[14,5],[20,5],[19,5],[1,1],[20,5],[1,1],[8,4],[864,10],[43,6],[59,7],[110,7],[11,6],[1,8],[1,1],[23,7],[63,8],[124,7],[11,6],[282,9],[6,4],[1,1],[3,5],[2,2],[7,3],[201,8],[39,10],[1,2],[3,10],[1,3],[5,6],[1,1],[1,1],[22,5],[78,9],[162,8],[60,6],[1,4],[43,6],[117,7],[6,4],[21,6],[123,8],[1,1],[42,6],[4,3],[45,6],[15,6],[79,9],[2,4],[66,7],[3,3],[3,2],[180,9],[1,2],[2,2],[21,7],[22,7],[4,3],[841,10],[970,10],[1,1],[390,9],[5,3],[338,9],[1,4],[2,4],[5,8],[9,5],[1,2],[2,2],[7,4],[1,4],[941,10],[1,2],[447,9],[6,5],[789,10],[1,1],[242,8],[3,7],[44,9],[51,6],[21,7],[3,2],[1,1],[3,5],[7,3],[3,2],[7,3],[1,2],[12,4],[756,10],[224,10],[3,4],[6,3],[13,10],[1,2],[2,3],[110,7],[85,8],[2,2],[18,5],[8,4],[57,6],[72,8],[2,5],[4,3],[3,2],[2,3],[1,1],[184,8],[126,7],[8,8],[551,10],[5,7],[394,9],[1,1],[10,4],[46,7],[112,7],[3,2],[2,2],[2,2],[1,3],[3,3],[7,4],[4,5],[197,8],[7,3],[649,10],[15,7],[1,1],[1,1],[1,2],[190,10],[70,8],[36,7],[2,4],[1,1],[101,7],[3,5],[8,4],[1,3],[11,4],[28,8],[3,3],[35,7],[9,7],[89,7],[410,9],[3,5],[1,1],[29,6],[19,6],[1,3],[177,8],[32,6],[3,3],[4,8],[206,8],[2,2],[106,7],[3,2],[25,5],[1,1],[1014,10],[439,10],[216,8],[90,7],[1,2],[1,1],[43,6],[1,1],[141,9],[7,6],[39,6],[1,3],[51,7],[2,3],[629,10],[451,9],[1,2],[2,2],[3,3],[3,2],[54,7],[194,9],[287,10],[1,1],[1,2],[3,6],[6,4],[907,10],[235,9],[9,4],[72,8],[1,3],[92,9],[53,6],[216,10],[15,4],[135,8],[484,9],[28,6],[62,6],[122,8],[215,8],[24,6],[1,1],[86,10],[77,7],[452,9],[496,9],[3,2],[46,7],[99,10],[1,1],[6,4],[176,10],[16,7],[1,1],[626,10],[63,6],[12,4],[131,8],[63,7],[6,3],[70,7],[49,9],[16,5],[850,10],[5,3],[471,10],[108,7],[6,3],[5,4],[1,1],[3,2],[16,5],[500,9],[89,9],[3,2],[36,6],[14,7],[1,2],[68,10],[918,10],[487,10],[217,9],[225,8],[3,2],[12,5],[1,1],[131,10],[430,10],[17,6],[1,1],[82,8],[161,8],[1,1],[63,8],[184,8],[1,1],[25,5],[573,10],[19,5],[1,1],[102,8],[15,5],[436,9],[410,9],[7,3],[242,9],[66,10],[18,6],[6,3],[15,8],[218,9],[2,7],[32,6],[1,6],[1,1],[1,5],[6,3],[31,5],[31,5],[16,6],[2,3],[25,5],[17,5],[77,8],[102,8],[12,4],[8,5],[4,3],[28,6],[413,10],[23,7],[87,7],[3,3],[22,6],[6,6],[26,9],[9,4],[944,10],[270,9],[22,5],[4,3],[1,5],[418,9],[6,3],[2,3],[220,9],[225,8],[1,1],[270,9],[147,9],[11,4],[1,1],[899,10],[56,7],[4,5],[15,6],[8,4],[3,2],[1,2],[4,8],[81,8],[5,3],[4,5],[1,2],[4,3],[446,9],[472,9],[34,6],[1,2],[17,5],[36,6],[83,7],[11,6],[1,1],[3,2],[1,1],[6,4],[3,2],[1,1],[5,3],[728,10],[41,7],[3,2],[1,1],[228,10],[2,2],[381,9],[31,5],[4,3],[12,6],[3,2],[3,2],[10,4],[200,8],[32,7],[5,7],[14,4],[277,10],[8,6],[15,4],[1,4],[7,3],[3,2],[122,9],[1,1],[5,3],[230,8],[1,1],[1,1],[3,2],[726,10],[2,2],[77,7],[1,1],[14,4],[6,3],[1,1],[669,10],[33,7],[1,1],[95,8],[34,6],[15,4],[57,6],[14,4],[4,5],[1,2],[2,6],[62,8],[23,6],[1,1],[1,2],[25,6],[135,10],[102,7],[4,3],[1,1],[958,10],[3,4],[240,8],[16,6],[1,3],[327,10],[9,4],[148,10],[74,8],[35,6],[1,1],[1,1],[12,5],[26,5],[240,8],[13,5],[9,4],[1,1],[7,4],[1,1],[1,4],[3,4],[445,10],[2,2],[7,4],[112,7],[14,5],[1,1],[75,9],[80,7],[41,6],[11,4],[3,2],[1,2],[2,2],[889,10],[3,3],[1,4],[52,7],[56,8],[31,5],[408,9],[383,9],[103,7],[363,9],[7,3],[13,5],[7,3],[406,9],[1,1],[14,4],[204,8],[464,9],[2,2],[3,4],[184,10],[104,8],[14,6],[1,1],[17,5],[12,4],[3,6],[57,7],[9,4],[1,3],[29,5],[101,7],[3,2],[136,8],[2,5],[2,2],[2,4],[18,5],[3,3],[15,4],[355,9],[255,8],[1,3],[65,8],[46,6],[242,8],[2,2],[51,6],[37,7],[5,3],[6,3],[2,2],[146,8],[23,9],[1,3],[1,1],[17,5],[1,2],[706,10],[7,3],[183,9],[809,10],[4,3],[786,10],[5,4],[99,7],[14,5],[312,10],[15,6],[14,4],[7,3],[33,9],[1,1],[1,2],[320,9],[436,9],[22,7],[63,9],[29,5],[366,9],[69,7],[2,2],[5,7],[46,6],[1,1],[271,9],[338,9],[25,7],[374,10],[309,9],[73,8],[20,5],[637,10],[1,2],[1,1],[19,5],[481,9],[3,2],[142,9],[2,4],[504,9],[26,5],[7,4],[3,2],[63,8],[409,9],[3,2],[1,1],[24,6],[477,10],[899,10],[51,9],[146,8],[5,3],[136,8],[9,5],[13,4],[8,5],[1,1],[15,8],[461,9],[6,3],[3,2],[7,8],[6,4],[4,4],[2,2],[2,3],[58,6],[5,4],[10,6],[43,6],[407,9],[88,8],[15,4],[29,5],[12,6],[1,2],[849,10],[16,6],[4,5],[354,9],[413,10],[68,7],[243,8],[435,10],[234,8],[15,5],[2,2],[1,1],[6,5],[20,6],[1,1],[203,9],[15,4],[20,5],[9,6],[1,1],[3,4],[2,5],[318,10],[1,1],[7,4],[99,7],[6,3],[1,1],[27,5],[109,8],[1,1],[962,10],[6,9],[1,1],[180,8],[87,7],[2,6],[1,2],[2,2],[712,10],[87,8],[10,4],[6,9],[3,2],[1,4],[4,4],[2,3],[13,4],[3,4],[250,9],[899,10],[38,7],[1,1],[2,2],[1,1],[1,1],[192,8],[12,7],[12,4],[2,3],[92,7],[1,4],[6,3],[5,3],[2,2],[221,9],[1,1],[9,4],[499,9],[186,9],[99,7],[5,3],[192,8],[3,2],[17,7],[176,10],[5,7],[128,8],[248,10],[110,10],[54,6],[3,3],[1,1],[31,7],[9,5],[18,7],[1,1],[24,7],[17,8],[61,6],[2,3],[33,6],[24,7],[6,3],[1018,10],[414,10],[20,9],[1,1],[3,2],[81,7],[50,6],[23,7],[42,7],[24,5],[1,1],[21,6],[1,5],[1,1],[1,1],[219,8],[3,2],[476,10],[80,10],[911,10],[1,3],[24,5],[34,8],[5,3],[433,10],[5,4],[5,5],[23,5],[39,6],[1,2],[4,3],[1,1],[439,9],[598,10],[171,8],[2,3],[77,7],[10,6],[157,8],[181,9],[46,6],[66,8],[196,8],[4,5],[6,4],[20,5],[3,2],[369,10],[214,8],[7,3],[1,1],[3,4],[5,5],[27,7],[339,10],[120,8],[1,1],[2,3],[8,4],[233,9],[1,1],[51,6],[3,2],[1,2],[7,3],[7,3],[41,6],[11,5],[1,1],[9,7],[7,3],[3,3],[1,8],[247,8],[96,7],[7,3],[822,10],[40,6],[9,4],[6,3],[149,8],[7,8],[748,10],[61,6],[14,6],[1,1],[322,9],[1,1],[6,3],[600,10],[387,9],[1,1],[21,6],[4,3],[5,3],[1,3],[13,9],[667,10],[1,1],[18,7],[358,9],[1,1],[135,8],[1,1],[1,1],[95,8],[1,1],[4,4],[93,7],[27,5],[3,2],[834,10],[28,5],[38,6],[1,1],[6,4],[1,2],[2,2],[1,1],[471,10],[75,9],[466,9],[2,2],[156,10],[37,7],[51,7],[1,5],[236,8],[98,7],[115,7],[14,4],[1,1],[3,3],[2,2],[1,1],[489,10],[1,1],[871,10],[320,9],[157,9],[1,3],[1,1],[823,10],[51,6],[44,6],[26,5],[88,7],[290,9],[1,1],[153,8],[8,5],[14,4],[122,7],[226,8],[229,8],[23,5],[24,5],[19,6],[299,9],[57,7],[121,8],[11,9],[142,8],[20,5],[24,5],[8,4],[41,6],[81,8],[24,10],[849,10],[200,9],[25,6],[1,1],[5,4],[2,2],[125,7],[28,5],[2,2],[505,9],[2,3],[71,10],[47,6],[56,6],[672,10],[1,1],[370,9],[3,3],[17,6],[375,10],[12,8],[19,5],[12,4],[4,3],[1,1],[24,6],[456,9],[1,1],[28,5],[76,8],[106,7],[1,1],[194,9],[574,10],[7,4],[30,5],[6,4],[1,1],[1,1],[39,8],[3,6],[215,9],[132,8],[49,10],[120,7],[3,2],[6,7],[8,6],[5,4],[48,6],[27,5],[2,3],[183,8],[11,5],[3,2],[3,2],[1,1],[917,10],[31,6],[7,3],[29,6],[319,10],[3,2],[37,7],[1,2],[19,5],[126,7],[6,3],[3,3],[1,2],[44,6],[31,7],[26,6],[1,2],[2,2],[100,9],[68,7],[88,8],[1,2],[70,7],[1,2],[1,1],[20,5],[218,8],[154,8],[5,3],[55,8],[46,6],[145,9],[1,1],[217,8],[1,1],[1,1],[2,4],[10,5],[27,8],[15,6],[218,8],[5,3],[484,9],[66,7],[24,6],[10,4],[4,3],[13,5],[58,6],[877,10],[47,6],[261,9],[17,5],[351,9],[12,8],[19,9],[2,4],[20,10],[58,7],[3,2],[7,4],[41,6],[12,5],[669,10],[6,3],[2,6],[138,8],[4,3],[11,6],[148,8],[331,9],[1000,10],[9,5],[28,6],[2,4],[14,4],[64,8],[25,6],[15,4],[873,10],[1,1],[12,4],[7,3],[157,10],[127,10],[140,9],[93,7],[200,8],[196,9],[25,7],[123,9],[3,2],[61,9],[187,8],[1,1],[39,6],[215,8],[20,6],[117,8],[3,2],[1,1],[1,3],[574,10],[847,10],[7,3],[1,1],[10,7],[875,10],[86,7],[6,4],[325,9],[3,3],[4,3],[1,1],[3,2],[517,10],[5,4],[422,10],[11,5],[227,9],[6,4],[4,5],[27,5],[8,4],[6,7],[203,8],[13,5],[60,6],[4,6],[5,3],[66,10],[4,5],[593,10],[7,6],[9,4],[29,6],[1,1],[5,3],[13,7],[8,5],[187,8],[906,10],[24,5],[54,6],[334,10],[74,8],[1,2],[1,2],[127,7],[231,8],[6,3],[17,6],[199,10],[23,9],[5,3],[11,4],[3,2],[56,6],[2,4],[4,4],[94,7],[338,9],[717,10],[451,9],[511,10],[4,3],[484,10],[1,1],[1,1],[10,4],[22,5],[3,3],[89,8],[11,6],[5,3],[1,1],[3,2],[256,9],[477,10],[82,9],[1,2],[26,7],[366,9],[9,4],[30,6],[116,9],[15,4],[264,9],[58,10],[1,3],[13,4],[79,9],[238,8],[5,3],[465,10],[28,8],[235,8],[155,8],[708,10],[15,5],[3,2],[1,2],[59,9],[1,1],[2,3],[100,7],[128,9],[49,6],[6,4],[82,10],[73,8],[50,6],[100,7],[3,5],[51,8],[2,4],[393,9],[21,6],[500,10],[3,2],[1,1],[3,2],[14,5],[2,2],[1,3],[69,10],[2,4],[41,10],[4,3],[473,9],[729,10],[59,6],[75,7],[7,3],[9,5],[4,4],[1,1],[14,5],[45,7],[1,2],[2,2],[50,8],[503,9],[36,6],[5,9],[5,8],[188,10],[1,1],[20,5],[732,10],[6,5],[1,1],[965,10],[60,6],[40,6],[1,6],[2,7],[5,4],[11,6],[39,8],[3,2],[285,9],[200,9],[23,5],[3,2],[1,1],[9,5],[30,5],[15,4],[2,2],[4,3],[18,10],[99,8],[2,4],[5,3],[33,7],[1,4],[20,7],[1,1],[4,4],[35,6],[2,2],[140,8],[34,6],[354,9],[6,3],[3,2],[24,9],[89,8],[1,1],[32,6],[1,2],[25,5],[91,8],[2,2],[19,7],[59,6],[384,9],[25,6],[829,10],[5,3],[491,9],[3,2],[3,2],[5,4],[2,2],[571,10],[48,6],[1,1],[13,5],[38,9],[1,3],[167,10],[58,6],[3,3],[1,2],[38,6],[5,4],[60,8],[2,3],[1,1],[1,3],[313,9],[2,5],[6,3],[13,8],[3,2],[398,9],[586,10],[3,2],[5,4],[7,8],[452,9],[6,4],[30,5],[43,6],[12,7],[6,3],[201,10],[144,8],[62,6],[2,2],[1,2],[39,6],[44,6],[261,9],[63,8],[1,3],[6,7],[60,8],[1,3],[5,3],[683,10],[8,4],[1,3],[272,10],[544,10],[2,2],[8,4],[2,3],[436,9],[420,10],[3,2],[212,8],[2,3],[1,2],[15,6],[553,10],[15,4],[4,4],[85,7],[118,10],[12,4],[228,8],[5,4],[74,7],[7,3],[1,1],[84,7],[1,1],[29,5],[2,2],[16,5],[25,6],[5,3],[4,3],[15,4],[1,1],[110,7],[2,2],[1,1],[4,3],[1,1],[1,2],[1,1],[200,9],[318,9],[1,1],[309,9],[39,6],[12,6],[539,10],[1,3],[18,6],[7,3],[236,8],[15,4],[6,4],[3,2],[1,5],[496,10],[23,6],[1,2],[842,10],[32,7],[5,3],[182,9],[326,9],[240,9],[370,9],[14,6],[1,1],[138,9],[131,8],[10,5],[217,9],[502,10],[56,6],[1,2],[15,4],[1,1],[1,1],[29,5],[55,6],[726,10],[5,3],[54,10],[300,10],[71,8],[13,4],[89,7],[23,6],[2,2],[333,10],[8,4],[2,2],[52,6],[765,10],[1,1],[28,5],[1,1],[3,4],[3,5],[88,10],[7,5],[1,1],[3,4],[20,6],[375,9],[1,4],[585,10],[1,4],[3,5],[23,5],[735,10],[180,8],[67,7],[229,8],[1,2],[60,8],[373,9],[12,4],[89,9],[2,2],[8,5],[1,1],[1,1],[34,6],[2,3],[73,8],[29,6],[1,1],[1,2],[506,9],[103,7],[3,3],[1,2],[16,5],[81,7],[30,5],[1,1],[60,6],[22,8],[2,2],[16,10],[2,2],[1,1],[85,8],[1,1],[129,9],[221,8],[93,8],[3,2],[19,5],[1,4],[3,2],[507,9],[1,2],[35,7],[15,4],[68,7],[9,4],[52,7],[398,9],[1,1],[3,2],[2,3],[28,6],[912,10],[5,5],[681,10],[1,2],[2,3],[975,10],[94,9],[682,10],[24,6],[2,2],[1,1],[487,9],[1,1],[145,8],[824,10],[232,9],[11,4],[80,7],[51,6],[57,7],[345,9],[3,2],[2,2],[58,7],[1,1],[104,7],[20,9],[15,8],[493,10],[148,9],[1,1],[3,7],[1,2],[1,1],[217,8],[7,3],[1,1],[1,1],[9,4],[13,4],[2,2],[1,2],[1,2],[18,9],[162,9],[4,4],[33,6],[117,9],[1,3],[1,1],[69,10],[5,5],[93,8],[7,3],[4,3],[1,1],[20,6],[14,4],[13,6],[19,5],[3,2],[118,7],[912,10],[33,7],[3,3],[5,3],[1,1],[1,1],[6,5],[1,1],[4,4],[5,3],[172,10],[56,8],[9,4],[7,4],[6,3],[3,2],[10,4],[1,3],[16,5],[1,1],[1,2],[1,1],[78,7],[2,2],[3,2],[10,5],[1,1],[5,3],[4,3],[549,10],[118,9],[50,7],[51,6],[9,4],[11,6],[8,5],[3,3],[1,3],[3,3],[190,8],[3,2],[20,6],[22,5],[3,3],[29,10],[28,5],[14,4],[46,6],[15,6],[8,7],[7,5],[10,5],[5,4],[1,2],[3,2],[59,6],[6,3],[15,4],[2,2],[284,9],[174,10],[51,7],[46,9],[153,8],[118,7],[2,3],[3,2],[317,10],[1,7],[255,9],[6,3],[1,1],[1,1],[1,1],[86,7],[1,1],[109,7],[10,6],[2,2],[16,6],[57,6],[909,10],[1,1],[5,4],[389,10],[180,8],[6,3],[20,8],[24,6],[6,3],[11,4],[1,4],[418,10],[447,9],[554,10],[99,8],[32,10],[452,9],[82,7],[1,1],[3,2],[50,7],[244,8],[803,10],[14,4],[11,4],[17,5],[1,1],[5,3],[1,3],[37,6],[1,2],[4,3],[143,8],[3,2],[142,8],[8,5],[1,1],[189,8],[1,1],[3,2],[804,10],[6,3],[2,2],[753,10],[1,1],[15,4],[491,9],[247,8],[2,6],[2,5],[112,7],[3,2],[85,8],[6,3],[410,9],[80,9],[7,3],[912,10],[1,1],[21,7],[4,4],[7,3],[3,3],[90,7],[1,3],[3,2],[327,10],[32,8],[37,6],[124,7],[1,1],[61,6],[349,9],[4,4],[64,9],[58,6],[128,8],[3,3],[3,4],[10,4],[61,8],[51,6],[91,7],[177,8],[23,5],[7,3],[29,5],[61,7],[283,9],[10,5],[50,6],[5,3],[13,6],[12,4],[114,7],[71,8],[13,4],[395,10],[45,7],[4,3],[405,9],[196,10],[716,10],[11,5],[75,7],[2,2],[461,9],[60,6],[1,1],[6,4],[1,2],[2,3],[26,6],[12,4],[55,6],[3,3],[1,2],[8,5],[354,10],[49,6],[461,9],[1,1],[11,4],[1,1],[87,7],[55,7],[1,2],[909,10],[164,9],[1,1],[18,5],[2,3],[175,8],[589,10],[77,8],[2,2],[130,8],[1,1],[7,5],[1,1],[12,4],[1,1],[23,5],[53,8],[1,4],[11,4],[1,1],[3,4],[1,1],[12,4],[13,4],[1,5],[1,2],[314,9],[28,5],[178,10],[1,1],[1,1],[1,2],[35,6],[117,7],[1,1],[2,2],[1,1],[4,5],[6,3],[1,1],[1,3],[15,4],[6,6],[2,4],[143,8],[204,9],[12,4],[41,6],[21,10],[6,5],[119,7],[1,2],[101,8],[10,4],[286,9],[58,6],[1,1],[2,2],[12,7],[82,7],[153,8],[5,3],[30,5],[26,6],[2,2],[342,10],[1,1],[804,10],[34,9],[143,8],[75,8],[103,7],[956,10],[2,4],[589,10],[1,1],[4,3],[781,10],[435,9],[2,5],[1,2],[27,6],[232,8],[22,6],[10,5],[1,1],[18,8],[27,6],[72,7],[1,2],[4,3],[34,7],[1,1],[1,4],[1,1],[1,1],[3,3],[3,2],[17,6],[7,5],[26,5],[190,8],[795,10],[6,3],[195,8],[268,9],[418,10],[10,5],[5,3],[12,4],[48,6],[470,9],[268,10],[28,7],[69,7],[10,4],[32,6],[1,1],[95,8],[180,9],[1,1],[42,8],[21,5],[15,4],[573,10],[5,4],[13,4],[3,2],[228,9],[20,7],[55,6],[505,9],[4,5],[1,3],[50,6],[3,3],[27,6],[150,8],[2,4],[1,1],[428,9],[11,5],[1,2],[141,8],[135,8],[887,10],[1,1],[33,6],[189,9],[3,2],[851,10],[22,5],[56,6],[237,8],[19,10],[4,6],[4,8],[316,9],[363,9],[240,8],[214,10],[14,7],[1,2],[1,1],[2,3],[3,6],[1,1],[196,8],[1,4],[76,8],[1,1],[69,7],[13,4],[267,9],[32,7],[3,3],[30,5],[1,4],[100,8],[1,1],[5,4],[1,1],[832,10],[14,5],[6,6],[1,1],[14,4],[35,7],[13,5],[1,1],[10,4],[3,2],[20,6],[23,6],[2,2],[64,9],[53,9],[7,3],[31,7],[9,5],[1,1],[1,1],[10,4],[12,6],[374,9],[256,9],[29,9],[1,2],[1,1],[1,5],[9,5],[115,7],[227,8],[22,5],[63,6],[10,4],[19,5],[320,10],[29,5],[491,10],[12,4],[5,5],[140,8],[12,6],[11,4],[41,6],[109,7],[52,7],[16,6],[248,8],[1,2],[7,5],[1,1],[180,9],[6,3],[45,6],[175,8],[115,7],[3,2],[325,9],[54,7],[23,7],[45,6],[4,4],[21,5],[232,8],[253,8],[1,1],[294,9],[3,2],[271,9],[202,9],[129,9],[7,4],[1,2],[1,3],[11,4],[64,7],[18,5],[335,10],[158,9],[33,6],[4,5],[96,7],[93,7],[2,2],[2,2],[21,7],[4,3],[815,10],[1,2],[361,10],[1,4],[1,1],[214,8],[272,9],[44,6],[374,9],[123,8],[1,3],[5,4],[7,6],[544,10],[12,7],[38,6],[30,6],[12,4],[3,3],[273,9],[6,6],[4,3],[1,1],[2,2],[46,6],[7,4],[14,5],[193,8],[82,8],[438,9],[1,2],[7,4],[2,3],[268,9],[55,6],[1,1],[493,10],[6,5],[3,2],[500,9],[1,1],[17,5],[370,9],[3,3],[1,1],[8,4],[196,9],[7,3],[3,4],[12,4],[2,2],[787,10],[323,9],[217,8],[5,3],[274,9],[141,8],[119,7],[221,9],[1,1],[7,3],[14,4],[4,3],[40,6],[1,1],[33,6],[8,4],[9,7],[1,2],[4,3],[2,2],[14,6],[1,1],[13,5],[19,7],[4,3],[2,3],[289,9],[120,8],[5,3],[3,2],[2,3],[1,1],[1,1],[124,9],[11,4],[167,8],[51,7],[1,3],[13,5],[12,5],[17,6],[42,6],[1,1],[14,6],[9,5],[1,1],[40,7],[241,9],[8,4],[2,6],[1,1],[1,3],[7,3],[6,4],[11,5],[230,8],[34,9],[208,9],[2,2],[10,4],[463,10],[49,10],[40,6],[117,8],[2,2],[54,7],[3,3],[6,3],[185,9],[2,3],[31,9],[1,1],[2,2],[7,5],[1,3],[16,6],[5,3],[28,5],[1,1],[33,9],[1,1],[3,2],[37,7],[2,8],[19,5],[27,7],[947,10],[3,2],[143,8],[435,10],[147,9],[549,10],[4,3],[1,4],[46,9],[1,1],[218,8],[132,10],[262,9],[1,1],[7,5],[6,3],[1,2],[1,1],[344,9],[83,9],[40,6],[1,1],[867,10],[11,6],[2,2],[15,5],[1,1],[1,1],[23,5],[6,3],[333,9],[201,8],[3,8],[6,4],[1,2],[13,4],[217,10],[13,5],[1,1],[32,6],[2,2],[15,8],[194,10],[3,4],[1,1],[1,1],[285,9],[33,7],[201,9],[6,6],[19,5],[2,2],[64,7],[7,5],[308,9],[23,5],[5,4],[1,3],[25,5],[1008,10],[3,3],[817,10],[7,4],[14,4],[67,7],[8,4],[1,1],[1,1],[2,2],[7,3],[1,1],[30,10],[1,1],[8,5],[2,3],[642,10],[103,7],[9,7],[70,7],[81,9],[1,2],[84,7],[18,6],[39,6],[79,8],[1,1],[948,10],[436,9],[457,9],[226,8],[188,10],[1,1],[5,3],[3,3],[4,4],[502,9],[61,6],[1,2],[5,8],[27,5],[596,10],[4,3],[2,4],[65,7],[3,3],[14,4],[1,6],[1,1],[1,1],[327,9],[68,9],[12,4],[12,5],[27,5],[1,1],[194,8],[105,7],[379,10],[3,6],[3,2],[19,7],[2,2],[3,2],[13,4],[87,9],[73,7],[3,3],[51,7],[1,1],[17,5],[4,4],[1,4],[1,2],[2,2],[1,1],[222,8],[84,10],[2,2],[60,10],[7,6],[35,9],[14,5],[328,10],[297,9],[40,7],[2,4],[771,10],[9,4],[570,10],[427,10],[73,9],[11,6],[908,10],[3,3],[50,6],[62,8],[2,4],[882,10],[44,6],[117,8],[43,6],[26,5],[8,4],[6,4],[88,7],[7,8],[4,3],[315,9],[1,1],[71,7],[1,2],[31,6],[20,6],[1,1],[473,9],[41,8],[24,5],[202,8],[99,7],[472,9],[1,1],[2,2],[384,9],[1,2],[98,7],[27,6],[1,3],[158,8],[3,3],[165,9],[804,10],[47,6],[2,2],[3,2],[7,3],[2,2],[300,9],[7,4],[122,7],[71,8],[1,1],[508,9],[387,9],[816,10],[149,9],[3,4],[4,3],[2,2],[238,9],[46,6],[37,6],[9,4],[234,8],[1,2],[6,5],[28,5],[7,3],[157,9],[24,5],[1,1],[221,10],[11,5],[911,10],[41,7],[84,7],[6,3],[12,4],[5,8],[14,5],[1,1],[1,1],[45,9],[2,2],[22,5],[9,4],[316,9],[294,10],[5,3],[13,5],[971,10],[1,2],[6,3],[159,8],[42,6],[60,6],[2,2],[286,10],[1,2],[430,9],[128,9],[1,1],[148,10],[41,8],[10,4],[6,3],[1,4],[5,5],[243,10],[4,3],[7,3],[14,4],[14,4],[37,10],[11,5],[1,1],[397,9],[2,3],[3,2],[23,7],[2,2],[121,8],[486,9],[26,5],[2,2],[36,6],[95,8],[401,9],[732,10],[13,5],[1,3],[2,2],[330,10],[1,3],[25,5],[11,6],[20,10],[3,4],[208,9],[61,6],[89,7],[297,9],[1,1],[1,1],[28,5],[36,6],[177,8],[5,3],[115,9],[60,7],[130,9],[970,10],[843,10],[122,9],[1,4],[21,5],[731,10],[122,9],[3,2],[2,3],[195,8],[5,4],[61,8],[1,1],[2,2],[46,6],[53,7],[462,9],[19,5],[1,1],[108,8],[21,5],[159,9],[605,10],[1,1],[10,5],[59,6],[18,6],[158,8],[5,4],[11,5],[378,9],[4,5],[4,4],[1,1],[182,8],[14,6],[78,9],[859,10],[75,8],[103,7],[1,2],[379,9],[2,3],[39,6],[2,2],[61,7],[1,1],[147,9],[1,1],[142,8],[1,7],[940,10],[224,8],[1,1],[9,4],[1,4],[229,8],[51,7],[980,10],[3,4],[113,8],[7,3],[374,9],[15,5],[3,3],[7,5],[53,6],[1,3],[137,8],[585,10],[141,10],[2,3],[101,7],[3,2],[166,8],[1,3],[5,3],[9,7],[3,2],[7,3],[1,2],[1,1],[2,2],[384,9],[2,6],[760,10],[2,2],[1,1],[4,4],[1,3],[88,8],[51,7],[13,5],[1,5],[500,10],[21,6],[28,5],[8,4],[10,8],[104,9],[76,10],[2,4],[3,2],[17,5],[1,1],[38,6],[43,9],[8,5],[20,5],[498,10],[13,7],[1,2],[2,5],[7,5],[196,10],[19,6],[17,5],[2,2],[9,4],[14,4],[46,6],[170,8],[1,3],[1,1],[12,4],[138,10],[49,6],[4,3],[31,7],[10,5],[288,10],[146,8],[663,10],[1,1],[1,1],[1,4],[36,6],[3,3],[1,1],[120,9],[21,8],[196,10],[2,2],[1,1],[223,10],[1,1],[91,7],[1,2],[7,5],[11,6],[72,8],[40,7],[253,8],[1,1],[31,5],[5,3],[147,8],[142,10],[14,7],[5,5],[1,2],[62,6],[12,6],[2,3],[167,9],[449,9],[1,1],[6,4],[33,7],[19,6],[93,7],[102,7],[1,1],[13,8],[85,8],[6,3],[10,4],[29,5],[15,6],[177,10],[24,6],[7,3],[389,9],[120,7],[5,3],[3,3],[2,2],[13,5],[12,6],[30,6],[2,3],[97,7],[10,4],[42,8],[24,5],[9,4],[1,3],[3,2],[24,5],[107,7],[58,8],[11,6],[4,3],[173,9],[4,3],[461,9],[66,8],[876,10],[4,4],[1,3],[1,5],[1,1],[157,10],[23,7],[156,9],[101,9],[1,1],[93,8],[100,8],[225,10],[865,10],[2,3],[7,3],[7,4],[539,10],[5,4],[8,5],[15,6],[4,3],[1,1],[416,9],[4,7],[1,2],[122,7],[1,1],[11,4],[725,10],[2,3],[924,10],[1,1],[3,6],[3,2],[23,9],[769,10],[290,9],[62,6],[1,2],[62,9],[13,5],[36,6],[7,3],[3,2],[70,7],[21,6],[1,1],[6,4],[204,8],[240,9],[10,6],[7,3],[60,7],[399,9],[1,2],[2,2],[18,6],[5,3],[133,9],[10,4],[31,7],[35,9],[36,9],[3,2],[7,3],[6,3],[12,4],[43,6],[1,1],[24,5],[2,3],[13,4],[5,4],[13,5],[58,6],[4,3],[1,1],[1,2],[9,6],[13,8],[106,8],[14,7],[31,5],[53,6],[204,9],[44,6],[17,5],[61,7],[1,1],[207,8],[181,8],[49,7],[12,4],[48,6],[14,4],[2,6],[248,8],[941,10],[113,7],[818,10],[1,1],[120,10],[14,6],[1,2],[35,8],[18,7],[1,1],[7,4],[1,1],[124,7],[417,9],[2,2],[122,7],[3,2],[3,2],[1,2],[25,5],[23,7],[3,3],[88,7],[34,6],[10,4],[28,5],[6,3],[2,3],[58,7],[1,1],[39,6],[10,4],[2,2],[187,8],[568,10],[3,5],[83,7],[401,9],[12,4],[1,1],[135,8],[110,8],[72,7],[3,2],[1,1],[4,3],[7,4],[455,9],[495,10],[197,8],[108,7],[114,7],[4,3],[11,4],[26,6],[1,1],[13,4],[35,6],[1,4],[116,7],[19,6],[109,8],[3,3],[27,5],[3,2],[5,3],[22,10],[14,7],[1,1],[477,10],[2,2],[947,10],[468,9],[1,5],[1,1],[6,3],[1,1],[1,1],[1,1],[12,7],[230,9],[3,2],[271,10],[1,1],[10,4],[165,8],[66,7],[260,9],[13,4],[1,1],[31,5],[1,1],[25,5],[1,2],[8,5],[322,9],[39,6],[2,5],[1,1],[30,5],[245,8],[98,9],[33,6],[2,3],[155,8],[14,6],[3,3],[65,7],[77,10],[98,8],[1,3],[649,10],[12,4],[10,4],[48,8],[1,1],[54,6],[49,9],[31,5],[332,9],[108,8],[3,3],[7,3],[7,4],[672,10],[1,1],[1,1],[5,4],[317,9],[26,10],[623,10],[115,8],[5,3],[15,4],[1,1],[81,10],[33,8],[19,5],[31,5],[12,4],[449,10],[10,4],[396,10],[1,2],[2,3],[72,10],[111,7],[1,4],[6,3],[218,8],[1,4],[102,8],[248,8],[1,2],[19,7],[1,1],[31,6],[3,3],[231,8],[28,7],[5,4],[4,6],[12,4],[21,5],[9,5],[114,7],[580,10],[49,6],[6,3],[938,10],[142,8],[3,2],[7,7],[209,8],[42,8],[160,9],[136,10],[299,10],[19,5],[3,5],[203,8],[15,4],[19,5],[1,2],[6,9],[56,6],[933,10],[2,3],[329,9],[27,5],[3,3],[22,6],[17,5],[34,6],[100,10],[1,1],[14,4],[1,3],[9,6],[2,2],[7,3],[19,7],[249,9],[1,1],[253,8],[9,7],[2,2],[100,9],[135,8],[338,10],[1,2],[33,7],[886,10],[1,3],[13,4],[45,7],[48,6],[1,6],[1,1],[16,5],[6,3],[248,9],[243,9],[12,4],[1,3],[15,4],[1,2],[217,8],[36,6],[1,2],[46,6],[7,3],[85,7],[762,10],[90,9],[1,1],[7,3],[81,7],[6,5],[200,8],[456,10],[42,7],[88,10],[2,2],[409,9],[136,9],[743,10],[2,3],[146,8],[229,8],[13,6],[21,5],[17,7],[2,3],[1,1],[3,2],[2,3],[7,5],[67,8],[367,9],[1,4],[13,4],[1,3],[3,3],[3,3],[14,4],[60,6],[7,4],[72,7],[20,5],[26,5],[3,2],[5,3],[86,8],[228,10],[1,2],[300,10],[8,5],[23,5],[1,1],[90,8],[3,4],[8,4],[279,10],[4,5],[11,6],[481,9],[1,1],[5,4],[1,1],[915,10],[8,9],[24,6],[15,4],[433,10],[5,4],[67,7],[4,3],[275,10],[604,10],[4,4],[1,2],[1,1],[1,1],[2,2],[1,1],[482,10],[159,10],[1,4],[8,5],[1006,10],[18,6],[2,2],[187,9],[98,7],[11,4],[5,3],[62,8],[65,7],[2,2],[1,1],[15,5],[1,1],[300,10],[60,6],[4,3],[91,8],[1,1],[1,4],[362,10],[47,6],[4,3],[29,5],[14,5],[247,10],[363,9],[231,10],[2,2],[59,10],[70,7],[66,7],[6,3],[7,3],[164,9],[6,3],[2,3],[3,3],[102,8],[1,1],[3,2],[6,4],[13,5],[33,9],[3,4],[29,7],[142,9],[69,8],[5,3],[10,4],[7,4],[250,8],[307,9],[374,10],[1,1],[302,10],[3,4],[655,10],[18,6],[203,8],[2,2],[120,7],[26,5],[22,7],[3,5],[18,5],[95,8],[219,10],[1,2],[468,10],[207,8],[30,5],[11,4],[17,5],[11,4],[1,1],[1,1],[470,9],[9,6],[905,10],[376,9],[4,6],[9,6],[996,10],[1,1],[19,5],[10,7],[88,7],[86,7],[3,3],[33,6],[7,3],[1,1],[14,6],[102,7],[3,2],[1,1],[3,2],[10,5],[48,6],[3,2],[983,10],[2,3],[122,7],[1,1],[21,5],[251,9],[76,8],[69,7],[473,9],[133,8],[3,2],[696,10],[2,3],[1,2],[58,6],[84,7],[15,4],[356,9],[9,4],[1,2],[3,2],[223,10],[78,7],[60,7],[6,4],[6,3],[3,2],[6,4],[1,5],[1,1],[6,5],[12,4],[51,6],[1,1],[6,3],[281,10],[7,3],[47,6],[343,9],[2,2],[26,5],[90,8],[12,4],[1,1],[1,1],[3,2],[3,3],[10,7],[256,9],[1,1],[3,3],[402,10],[64,9],[16,5],[122,10],[137,9],[27,7],[1,1],[1,1],[892,10],[262,9],[1,1],[1,1],[96,7],[363,9],[202,9],[112,7],[24,5],[486,10],[879,10],[263,10],[27,5],[517,10],[29,5],[1,3],[3,2],[301,10],[30,6],[21,6],[1,2],[22,5],[111,9],[1,2],[31,7],[2,2],[200,9],[37,6],[77,7],[253,8],[61,8],[41,7],[50,6],[1,1],[1,1],[390,9],[2,2],[23,7],[1,1],[775,10],[294,9],[1,1],[7,3],[1,1],[498,9],[23,6],[390,10],[26,9],[6,4],[621,10],[56,6],[1,1],[34,7],[917,10],[1,3],[233,9],[10,4],[1,1],[60,6],[36,7],[17,8],[112,7],[1,2],[121,8],[461,9],[20,5],[50,6],[1,1],[505,9],[1,1],[1,5],[2,2],[13,4],[1,1],[1,2],[132,8],[38,6],[6,10],[197,8],[2,2],[190,8],[176,8],[1,2],[2,4],[492,9],[7,3],[12,5],[2,3],[27,6],[165,9],[7,3],[3,5],[31,5],[732,10],[14,7],[1,1],[79,9],[59,10],[89,8],[106,8],[85,7],[1,3],[3,7],[28,5],[1,2],[929,10],[1,1],[48,6],[2,5],[1,1],[46,7],[453,10],[1,2],[7,3],[22,5],[15,5],[300,10],[1,1],[438,9],[15,9],[14,4],[805,10],[1,1],[18,5],[28,7],[153,9],[121,8],[1,3],[1,4],[18,7],[15,5],[29,8],[28,6],[8,5],[51,6],[11,4],[27,6],[1,2],[1,2],[5,5],[423,9],[13,7],[362,10],[24,10],[30,7],[26,5],[4,3],[424,9],[240,9],[1,3],[99,8],[34,6],[2,3],[7,3],[417,10],[46,6],[650,10],[67,7],[1,2],[4,4],[2,4],[8,4],[1,3],[104,7],[1,1],[260,9],[687,10],[1,1],[5,3],[1,2],[1,1],[434,9],[26,5],[1,1],[1,3],[1,2],[4,3],[5,4],[5,3],[1018,10],[7,3],[1,1],[103,7],[225,8],[4,6],[29,5],[12,6],[102,9],[183,9],[338,9],[416,9],[6,4],[9,4],[5,3],[2,3],[51,6],[26,6],[2,2],[51,7],[22,7],[3,2],[89,7],[27,7],[44,6],[5,7],[1,1],[27,5],[123,7],[3,4],[126,10],[40,6],[10,4],[500,10],[26,5],[1,1],[2,8],[1,2],[281,9],[2,2],[473,9],[2,4],[435,9],[15,4],[113,7],[13,4],[540,10],[601,10],[1,1],[14,4],[13,4],[115,7],[3,5],[15,4],[19,6],[27,5],[389,9],[1,1],[10,6],[74,8],[2,2],[1,1],[11,4],[8,5],[1,1],[33,8],[181,8],[916,10],[110,8],[3,2],[26,5],[452,9],[216,8],[11,5],[2,2],[976,10],[12,8],[254,9],[7,3],[107,7],[5,3],[221,9],[166,8],[6,5],[3,2],[40,6],[371,9],[125,7],[117,8],[82,7],[1,1],[901,10],[1,1],[19,5],[15,7],[50,6],[1,2],[301,9],[635,10],[182,10],[212,8],[1,1],[1,1],[29,5],[61,6],[1,1],[31,10],[26,6],[1,7],[1,1],[53,6],[3,4],[226,9],[7,3],[3,4],[5,4],[3,3],[16,5],[136,8],[13,4],[131,8],[10,5],[80,7],[2,3],[19,5],[14,4],[1,1],[1,1],[11,4],[160,8],[1,1],[3,2],[55,6],[1,1],[1,1],[4,6],[324,9],[24,5],[13,5],[174,8],[3,3],[40,7],[1,3],[54,7],[1,2],[115,10],[250,8],[9,4],[37,7],[400,10],[1,1],[318,9],[45,6],[1,1],[12,5],[54,6],[9,9],[48,6],[16,5],[55,7],[1,4],[31,5],[53,7],[747,10],[64,8],[24,5],[403,9],[105,7],[1,2],[79,7],[7,3],[2,2],[269,9],[50,6],[65,8],[174,8],[1,1],[394,10],[18,5],[410,9],[1,2],[1,1],[9,4],[155,8],[1,4],[1,2],[55,6],[60,6],[5,4],[3,2],[1,1],[7,4],[235,8],[24,7],[10,4],[477,9],[65,8],[11,5],[15,4],[45,6],[1,1],[5,3],[1,1],[6,3],[47,7],[3,2],[31,7],[24,6],[368,9],[7,3],[16,5],[877,10],[1,1],[321,9],[34,6],[7,3],[140,9],[2,2],[95,9],[109,9],[2,2],[194,8],[3,2],[6,4],[235,8],[1,3],[1,1],[29,5],[5,4],[136,8],[468,9],[519,10],[13,6],[42,6],[14,9],[126,7],[4,6],[22,6],[1,2],[14,4],[127,10],[81,7],[2,2],[189,9],[3,3],[1,1],[213,9],[69,8],[46,7],[4,3],[13,5],[19,7],[31,6],[33,6],[2,5],[3,4],[892,10],[29,6],[105,8],[2,3],[108,7],[35,6],[2,2],[1,1],[4,3],[2,3],[266,9],[171,8],[5,4],[33,7],[3,2],[6,3],[243,8],[96,7],[775,10],[25,5],[15,5],[1,4],[4,3],[27,6],[1,1],[763,10],[3,3],[17,5],[26,5],[2,3],[22,9],[1,1],[26,5],[5,3],[18,7],[29,6],[255,9],[14,4],[4,4],[6,4],[4,3],[47,8],[39,6],[44,6]]],"output":[[1,10],[1,9],[1,9],[1,9],[2,10],[2,10],[2,10],[2,10],[2,10],[3,10],[3,10],[3,10],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[1,8],[2,9],[2,9],[2,9],[4,10],[4,10],[3,9],[3,9],[3,9],[6,10],[7,10],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[1,7],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[2,8],[4,9],[4,9],[4,9],[4,9],[4,9],[4,9],[8,10],[9,10],[9,10],[5,9],[5,9],[5,9],[10,10],[10,10],[10,10],[11,10],[11,10],[3,8],[3,8],[6,9],[6,9],[6,9],[6,9],[6,9],[12,10],[12,10],[12,10],[12,10],[13,10],[13,10],[7,9],[7,9],[7,9],[7,9],[15,10],[15,10],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[1,6],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[2,7],[4,8],[4,8],[4,8],[4,8],[4,8],[4,8],[4,8],[8,9],[8,9],[8,9],[16,10],[17,10],[9,9],[9,9],[9,9],[18,10],[18,10],[18,10],[19,10],[19,10],[19,10],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[10,9],[20,10],[20,10],[20,10],[21,10],[21,10],[11,9],[11,9],[11,9],[22,10],[22,10],[22,10],[22,10],[23,10],[23,10],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[3,7],[6,8],[6,8],[6,8],[6,8],[6,8],[6,8],[6,8],[6,8],[12,9],[12,9],[24,10],[24,10],[24,10],[25,10],[25,10],[13,9],[13,9],[26,10],[27,10],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[7,8],[14,9],[14,9],[14,9],[14,9],[28,10],[28,10],[29,10],[29,10],[15,9],[15,9],[15,9],[30,10],[30,10],[30,10],[30,10],[31,10],[31,10],[31,10],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[1,5],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[2,6],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[8,8],[8,8],[8,8],[8,8],[8,8],[8,8],[16,9],[32,10],[32,10],[32,10],[33,10],[33,10],[17,9],[17,9],[17,9],[35,10],[9,8],[9,8],[9,8],[9,8],[9,8],[9,8],[9,8],[9,8],[18,9],[18,9],[36,10],[36,10],[36,10],[37,10],[19,9],[19,9],[19,9],[19,9],[19,9],[19,9],[38,10],[38,10],[39,10],[39,10],[39,10],[39,10],[39,10],[39,10],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[5,7],[10,8],[10,8],[10,8],[10,8],[10,8],[20,9],[20,9],[20,9],[20,9],[20,9],[20,9],[40,10],[40,10],[41,10],[41,10],[41,10],[21,9],[21,9],[11,8],[11,8],[11,8],[11,8],[11,8],[22,9],[44,10],[44,10],[44,10],[44,10],[45,10],[45,10],[45,10],[45,10],[23,9],[23,9],[23,9],[23,9],[23,9],[46,10],[46,10],[47,10],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[3,6],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[6,7],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[12,8],[24,9],[24,9],[48,10],[49,10],[49,10],[49,10],[49,10],[25,9],[25,9],[25,9],[50,10],[50,10],[51,10],[13,8],[13,8],[13,8],[13,8],[13,8],[13,8],[26,9],[26,9],[26,9],[26,9],[52,10],[52,10],[52,10],[53,10],[53,10],[53,10],[53,10],[27,9],[27,9],[54,10],[54,10],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[7,7],[14,8],[14,8],[28,9],[28,9],[28,9],[28,9],[56,10],[57,10],[57,10],[57,10],[29,9],[29,9],[29,9],[29,9],[29,9],[29,9],[58,10],[58,10],[58,10],[59,10],[59,10],[59,10],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[15,8],[30,9],[30,9],[30,9],[30,9],[30,9],[60,10],[60,10],[61,10],[61,10],[31,9],[31,9],[31,9],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[1,4],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[2,5],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[8,7],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[16,8],[32,9],[32,9],[33,9],[33,9],[33,9],[33,9],[33,9],[66,10],[66,10],[66,10],[67,10],[67,10],[17,8],[17,8],[17,8],[17,8],[17,8],[17,8],[34,9],[34,9],[68,10],[68,10],[68,10],[68,10],[68,10],[68,10],[69,10],[69,10],[35,9],[35,9],[35,9],[35,9],[35,9],[35,9],[70,10],[70,10],[71,10],[71,10],[71,10],[71,10],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[9,7],[18,8],[18,8],[18,8],[18,8],[18,8],[18,8],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[36,9],[72,10],[72,10],[72,10],[72,10],[72,10],[73,10],[74,10],[75,10],[19,8],[19,8],[38,9],[38,9],[38,9],[38,9],[76,10],[76,10],[77,10],[77,10],[77,10],[39,9],[78,10],[78,10],[78,10],[78,10],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[5,6],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[10,7],[20,8],[20,8],[20,8],[20,8],[20,8],[20,8],[20,8],[40,9],[40,9],[80,10],[80,10],[81,10],[81,10],[81,10],[41,9],[41,9],[41,9],[41,9],[82,10],[82,10],[82,10],[82,10],[83,10],[21,8],[21,8],[21,8],[21,8],[42,9],[42,9],[84,10],[84,10],[84,10],[84,10],[84,10],[84,10],[43,9],[43,9],[43,9],[86,10],[86,10],[11,7],[11,7],[11,7],[11,7],[11,7],[11,7],[11,7],[22,8],[22,8],[22,8],[22,8],[22,8],[44,9],[44,9],[44,9],[44,9],[44,9],[88,10],[88,10],[88,10],[88,10],[88,10],[88,10],[89,10],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[45,9],[90,10],[90,10],[90,10],[91,10],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[23,8],[46,9],[46,9],[46,9],[46,9],[46,9],[92,10],[92,10],[92,10],[47,9],[47,9],[47,9],[47,9],[95,10],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[3,5],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[6,6],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[12,7],[24,8],[24,8],[24,8],[24,8],[24,8],[24,8],[24,8],[48,9],[48,9],[48,9],[48,9],[48,9],[48,9],[97,10],[49,9],[49,9],[49,9],[49,9],[49,9],[98,10],[99,10],[99,10],[25,8],[25,8],[25,8],[25,8],[25,8],[25,8],[25,8],[50,9],[50,9],[100,10],[51,9],[51,9],[51,9],[51,9],[51,9],[51,9],[102,10],[102,10],[102,10],[103,10],[103,10],[103,10],[103,10],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[13,7],[26,8],[26,8],[26,8],[26,8],[26,8],[52,9],[52,9],[52,9],[52,9],[105,10],[105,10],[105,10],[53,9],[53,9],[107,10],[107,10],[27,8],[27,8],[27,8],[27,8],[27,8],[27,8],[27,8],[54,9],[108,10],[109,10],[109,10],[55,9],[55,9],[55,9],[55,9],[55,9],[55,9],[110,10],[110,10],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[7,6],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[14,7],[28,8],[28,8],[28,8],[28,8],[28,8],[28,8],[28,8],[56,9],[112,10],[112,10],[112,10],[113,10],[57,9],[57,9],[57,9],[114,10],[114,10],[114,10],[115,10],[115,10],[29,8],[29,8],[29,8],[29,8],[29,8],[29,8],[29,8],[58,9],[58,9],[117,10],[59,9],[59,9],[59,9],[118,10],[119,10],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[15,7],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[30,8],[60,9],[60,9],[120,10],[120,10],[121,10],[61,9],[61,9],[61,9],[61,9],[61,9],[122,10],[122,10],[122,10],[123,10],[123,10],[123,10],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[31,8],[62,9],[124,10],[124,10],[125,10],[125,10],[63,9],[63,9],[63,9],[63,9],[63,9],[126,10],[127,10],[127,10],[127,10],[127,10],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[1,3],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[2,4],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[8,6],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[32,8],[64,9],[64,9],[64,9],[64,9],[64,9],[128,10],[128,10],[128,10],[128,10],[65,9],[65,9],[65,9],[65,9],[65,9],[130,10],[130,10],[131,10],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[33,8],[66,9],[66,9],[66,9],[132,10],[132,10],[132,10],[133,10],[67,9],[67,9],[67,9],[134,10],[135,10],[135,10],[17,7],[17,7],[17,7],[17,7],[17,7],[17,7],[34,8],[34,8],[34,8],[34,8],[34,8],[34,8],[34,8],[68,9],[68,9],[68,9],[68,9],[68,9],[136,10],[136,10],[69,9],[138,10],[138,10],[138,10],[139,10],[139,10],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[35,8],[70,9],[70,9],[70,9],[70,9],[140,10],[140,10],[141,10],[141,10],[141,10],[141,10],[71,9],[142,10],[142,10],[143,10],[143,10],[143,10],[143,10],[143,10],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[9,6],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[18,7],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[36,8],[72,9],[72,9],[144,10],[144,10],[145,10],[145,10],[73,9],[73,9],[73,9],[73,9],[73,9],[146,10],[146,10],[146,10],[146,10],[146,10],[147,10],[147,10],[147,10],[37,8],[37,8],[37,8],[37,8],[37,8],[37,8],[74,9],[74,9],[74,9],[74,9],[74,9],[74,9],[148,10],[148,10],[148,10],[148,10],[148,10],[75,9],[75,9],[75,9],[75,9],[150,10],[151,10],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[19,7],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[38,8],[76,9],[76,9],[76,9],[76,9],[152,10],[152,10],[153,10],[153,10],[77,9],[77,9],[77,9],[77,9],[154,10],[154,10],[154,10],[154,10],[155,10],[155,10],[155,10],[39,8],[39,8],[39,8],[39,8],[78,9],[78,9],[78,9],[78,9],[78,9],[78,9],[156,10],[157,10],[157,10],[157,10],[157,10],[157,10],[157,10],[79,9],[79,9],[79,9],[79,9],[79,9],[79,9],[79,9],[158,10],[159,10],[159,10],[159,10],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[5,5],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[10,6],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[20,7],[40,8],[40,8],[40,8],[40,8],[40,8],[40,8],[80,9],[80,9],[80,9],[80,9],[80,9],[160,10],[160,10],[160,10],[81,9],[81,9],[162,10],[162,10],[162,10],[163,10],[163,10],[163,10],[41,8],[41,8],[41,8],[41,8],[41,8],[41,8],[41,8],[41,8],[82,9],[82,9],[82,9],[82,9],[82,9],[82,9],[82,9],[83,9],[83,9],[83,9],[167,10],[167,10],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[21,7],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[42,8],[84,9],[84,9],[84,9],[84,9],[168,10],[168,10],[85,9],[85,9],[170,10],[171,10],[43,8],[43,8],[43,8],[43,8],[43,8],[43,8],[43,8],[43,8],[86,9],[86,9],[86,9],[86,9],[86,9],[172,10],[87,9],[87,9],[87,9],[174,10],[174,10],[175,10],[175,10],[175,10],[175,10],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[11,6],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[22,7],[44,8],[44,8],[44,8],[44,8],[44,8],[44,8],[44,8],[88,9],[88,9],[88,9],[88,9],[88,9],[176,10],[176,10],[176,10],[176,10],[176,10],[177,10],[177,10],[177,10],[89,9],[89,9],[89,9],[89,9],[89,9],[89,9],[89,9],[89,9],[178,10],[178,10],[178,10],[179,10],[45,8],[45,8],[45,8],[45,8],[45,8],[45,8],[45,8],[45,8],[90,9],[90,9],[90,9],[90,9],[90,9],[181,10],[181,10],[181,10],[91,9],[91,9],[91,9],[91,9],[182,10],[182,10],[183,10],[183,10],[183,10],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[23,7],[46,8],[46,8],[46,8],[46,8],[46,8],[92,9],[92,9],[92,9],[184,10],[184,10],[184,10],[185,10],[93,9],[187,10],[187,10],[47,8],[47,8],[47,8],[47,8],[47,8],[47,8],[94,9],[94,9],[94,9],[94,9],[94,9],[94,9],[188,10],[188,10],[188,10],[188,10],[95,9],[95,9],[95,9],[95,9],[190,10],[190,10],[191,10],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[6,5],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[12,6],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[24,7],[48,8],[48,8],[48,8],[48,8],[48,8],[96,9],[96,9],[96,9],[96,9],[96,9],[192,10],[193,10],[193,10],[97,9],[97,9],[97,9],[194,10],[194,10],[195,10],[49,8],[49,8],[49,8],[49,8],[49,8],[49,8],[98,9],[98,9],[98,9],[98,9],[98,9],[196,10],[196,10],[196,10],[197,10],[197,10],[197,10],[198,10],[198,10],[198,10],[199,10],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[25,7],[50,8],[50,8],[50,8],[100,9],[100,9],[100,9],[100,9],[200,10],[200,10],[201,10],[201,10],[101,9],[202,10],[202,10],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[51,8],[102,9],[102,9],[102,9],[102,9],[102,9],[204,10],[205,10],[205,10],[103,9],[206,10],[206,10],[206,10],[206,10],[206,10],[207,10],[207,10],[207,10],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[13,6],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[26,7],[52,8],[52,8],[52,8],[52,8],[52,8],[104,9],[104,9],[208,10],[209,10],[209,10],[209,10],[209,10],[105,9],[105,9],[105,9],[210,10],[210,10],[210,10],[210,10],[210,10],[211,10],[211,10],[211,10],[53,8],[53,8],[53,8],[53,8],[53,8],[53,8],[106,9],[106,9],[106,9],[106,9],[213,10],[213,10],[213,10],[107,9],[107,9],[107,9],[107,9],[107,9],[107,9],[214,10],[214,10],[215,10],[215,10],[215,10],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[27,7],[54,8],[54,8],[54,8],[54,8],[108,9],[216,10],[217,10],[217,10],[109,9],[109,9],[109,9],[109,9],[109,9],[219,10],[219,10],[219,10],[219,10],[219,10],[55,8],[55,8],[55,8],[55,8],[110,9],[110,9],[110,9],[110,9],[220,10],[221,10],[221,10],[111,9],[111,9],[111,9],[111,9],[222,10],[223,10],[223,10],[223,10],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[7,5],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[14,6],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[28,7],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[56,8],[112,9],[112,9],[112,9],[112,9],[112,9],[224,10],[225,10],[225,10],[113,9],[113,9],[113,9],[226,10],[226,10],[226,10],[57,8],[57,8],[57,8],[57,8],[114,9],[114,9],[114,9],[114,9],[114,9],[228,10],[228,10],[229,10],[115,9],[115,9],[115,9],[115,9],[115,9],[115,9],[115,9],[230,10],[230,10],[231,10],[231,10],[231,10],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[29,7],[58,8],[58,8],[58,8],[58,8],[58,8],[58,8],[116,9],[116,9],[116,9],[116,9],[116,9],[233,10],[117,9],[117,9],[117,9],[117,9],[234,10],[234,10],[235,10],[235,10],[235,10],[59,8],[59,8],[118,9],[118,9],[118,9],[118,9],[118,9],[236,10],[236,10],[236,10],[119,9],[119,9],[238,10],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[15,6],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[30,7],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[60,8],[120,9],[120,9],[120,9],[120,9],[120,9],[120,9],[120,9],[240,10],[240,10],[121,9],[121,9],[121,9],[121,9],[121,9],[121,9],[242,10],[242,10],[242,10],[243,10],[243,10],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[61,8],[122,9],[122,9],[122,9],[122,9],[122,9],[245,10],[123,9],[123,9],[123,9],[246,10],[247,10],[247,10],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[31,7],[62,8],[62,8],[62,8],[62,8],[62,8],[62,8],[62,8],[124,9],[124,9],[124,9],[124,9],[124,9],[248,10],[248,10],[248,10],[249,10],[249,10],[125,9],[125,9],[125,9],[125,9],[125,9],[250,10],[250,10],[251,10],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[63,8],[126,9],[126,9],[126,9],[253,10],[127,9],[127,9],[127,9],[127,9],[254,10],[254,10],[254,10],[255,10],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[8,5],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[16,6],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[32,7],[64,8],[64,8],[64,8],[64,8],[64,8],[64,8],[64,8],[128,9],[128,9],[128,9],[128,9],[128,9],[257,10],[257,10],[129,9],[129,9],[129,9],[129,9],[258,10],[258,10],[259,10],[259,10],[259,10],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[65,8],[130,9],[130,9],[130,9],[130,9],[130,9],[130,9],[260,10],[260,10],[261,10],[262,10],[262,10],[263,10],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[33,7],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[66,8],[132,9],[265,10],[265,10],[133,9],[133,9],[133,9],[266,10],[267,10],[67,8],[67,8],[67,8],[67,8],[134,9],[134,9],[134,9],[268,10],[269,10],[135,9],[135,9],[135,9],[270,10],[270,10],[270,10],[270,10],[271,10],[271,10],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[34,7],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[68,8],[136,9],[136,9],[136,9],[136,9],[136,9],[272,10],[272,10],[272,10],[272,10],[137,9],[137,9],[137,9],[137,9],[137,9],[274,10],[274,10],[274,10],[274,10],[275,10],[275,10],[69,8],[69,8],[69,8],[69,8],[69,8],[69,8],[69,8],[69,8],[138,9],[138,9],[138,9],[138,9],[138,9],[277,10],[277,10],[139,9],[139,9],[139,9],[139,9],[278,10],[278,10],[279,10],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[35,7],[70,8],[70,8],[70,8],[70,8],[70,8],[70,8],[140,9],[140,9],[140,9],[140,9],[140,9],[280,10],[280,10],[281,10],[281,10],[281,10],[141,9],[141,9],[141,9],[141,9],[141,9],[141,9],[282,10],[283,10],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[71,8],[142,9],[142,9],[142,9],[142,9],[142,9],[284,10],[285,10],[285,10],[285,10],[143,9],[143,9],[286,10],[287,10],[287,10],[287,10],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[9,5],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[18,6],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[36,7],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[72,8],[144,9],[144,9],[144,9],[288,10],[288,10],[288,10],[288,10],[289,10],[289,10],[145,9],[145,9],[145,9],[145,9],[291,10],[291,10],[291,10],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[73,8],[146,9],[146,9],[146,9],[146,9],[292,10],[293,10],[293,10],[147,9],[147,9],[147,9],[147,9],[147,9],[147,9],[294,10],[294,10],[295,10],[295,10],[295,10],[295,10],[295,10],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[37,7],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[74,8],[148,9],[148,9],[148,9],[296,10],[296,10],[297,10],[297,10],[297,10],[149,9],[149,9],[149,9],[298,10],[299,10],[299,10],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[75,8],[150,9],[150,9],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[300,10],[301,10],[301,10],[301,10],[151,9],[302,10],[302,10],[302,10],[303,10],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[19,6],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[38,7],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[76,8],[152,9],[152,9],[304,10],[304,10],[304,10],[305,10],[153,9],[153,9],[153,9],[153,9],[306,10],[306,10],[77,8],[77,8],[77,8],[77,8],[77,8],[77,8],[77,8],[77,8],[154,9],[154,9],[154,9],[154,9],[308,10],[309,10],[309,10],[155,9],[155,9],[310,10],[311,10],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[39,7],[78,8],[78,8],[78,8],[78,8],[78,8],[78,8],[156,9],[156,9],[156,9],[156,9],[156,9],[312,10],[312,10],[313,10],[157,9],[157,9],[157,9],[157,9],[157,9],[157,9],[157,9],[314,10],[315,10],[315,10],[79,8],[79,8],[79,8],[79,8],[79,8],[79,8],[158,9],[158,9],[158,9],[158,9],[317,10],[159,9],[159,9],[159,9],[159,9],[159,9],[159,9],[159,9],[318,10],[318,10],[319,10],[319,10],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[5,4],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[10,5],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[20,6],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[40,7],[80,8],[80,8],[80,8],[80,8],[80,8],[80,8],[80,8],[80,8],[160,9],[160,9],[160,9],[160,9],[160,9],[320,10],[320,10],[321,10],[161,9],[161,9],[161,9],[161,9],[161,9],[322,10],[323,10],[323,10],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[81,8],[162,9],[324,10],[324,10],[324,10],[325,10],[325,10],[163,9],[163,9],[163,9],[326,10],[326,10],[327,10],[327,10],[327,10],[327,10],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[41,7],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[82,8],[164,9],[164,9],[164,9],[164,9],[328,10],[328,10],[329,10],[329,10],[165,9],[165,9],[165,9],[165,9],[165,9],[165,9],[165,9],[330,10],[330,10],[330,10],[330,10],[331,10],[331,10],[331,10],[83,8],[83,8],[83,8],[83,8],[83,8],[83,8],[83,8],[166,9],[166,9],[332,10],[332,10],[333,10],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[167,9],[334,10],[334,10],[334,10],[335,10],[335,10],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[21,6],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[42,7],[84,8],[84,8],[84,8],[168,9],[168,9],[336,10],[337,10],[169,9],[169,9],[169,9],[169,9],[338,10],[338,10],[338,10],[339,10],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[85,8],[170,9],[170,9],[341,10],[171,9],[171,9],[171,9],[342,10],[342,10],[343,10],[343,10],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[43,7],[86,8],[86,8],[86,8],[86,8],[86,8],[86,8],[86,8],[86,8],[172,9],[172,9],[172,9],[344,10],[345,10],[345,10],[173,9],[173,9],[173,9],[173,9],[173,9],[173,9],[346,10],[346,10],[346,10],[346,10],[346,10],[347,10],[347,10],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[87,8],[174,9],[174,9],[174,9],[174,9],[348,10],[349,10],[175,9],[175,9],[175,9],[175,9],[175,9],[175,9],[175,9],[350,10],[350,10],[351,10],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[11,5],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[22,6],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[44,7],[88,8],[88,8],[88,8],[88,8],[88,8],[88,8],[88,8],[88,8],[176,9],[176,9],[176,9],[176,9],[176,9],[352,10],[352,10],[353,10],[177,9],[177,9],[354,10],[354,10],[354,10],[354,10],[355,10],[355,10],[89,8],[89,8],[89,8],[89,8],[89,8],[89,8],[178,9],[178,9],[178,9],[178,9],[178,9],[356,10],[357,10],[357,10],[179,9],[179,9],[179,9],[179,9],[359,10],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[45,7],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[90,8],[180,9],[180,9],[180,9],[180,9],[180,9],[361,10],[361,10],[181,9],[181,9],[181,9],[181,9],[181,9],[181,9],[362,10],[362,10],[362,10],[363,10],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[91,8],[182,9],[182,9],[182,9],[182,9],[182,9],[182,9],[364,10],[365,10],[183,9],[183,9],[183,9],[183,9],[366,10],[367,10],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[23,6],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[46,7],[92,8],[92,8],[92,8],[92,8],[92,8],[92,8],[92,8],[184,9],[184,9],[184,9],[184,9],[184,9],[368,10],[368,10],[368,10],[369,10],[369,10],[369,10],[185,9],[185,9],[185,9],[370,10],[371,10],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[93,8],[186,9],[186,9],[186,9],[186,9],[186,9],[186,9],[372,10],[372,10],[372,10],[373,10],[187,9],[187,9],[187,9],[374,10],[374,10],[374,10],[374,10],[375,10],[375,10],[375,10],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[47,7],[94,8],[94,8],[94,8],[94,8],[94,8],[94,8],[94,8],[188,9],[188,9],[188,9],[188,9],[188,9],[188,9],[188,9],[188,9],[376,10],[377,10],[377,10],[189,9],[189,9],[189,9],[189,9],[189,9],[189,9],[189,9],[378,10],[378,10],[379,10],[379,10],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[95,8],[190,9],[190,9],[190,9],[380,10],[381,10],[381,10],[381,10],[191,9],[382,10],[382,10],[382,10],[383,10],[383,10],[383,10],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[6,4],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[24,6],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[48,7],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[96,8],[192,9],[384,10],[384,10],[384,10],[385,10],[385,10],[385,10],[193,9],[193,9],[193,9],[386,10],[386,10],[387,10],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[97,8],[194,9],[194,9],[194,9],[194,9],[194,9],[194,9],[194,9],[388,10],[389,10],[389,10],[389,10],[195,9],[195,9],[195,9],[195,9],[195,9],[390,10],[390,10],[391,10],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[49,7],[98,8],[98,8],[98,8],[98,8],[98,8],[98,8],[196,9],[196,9],[196,9],[196,9],[196,9],[196,9],[196,9],[392,10],[392,10],[393,10],[393,10],[393,10],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[197,9],[394,10],[394,10],[394,10],[395,10],[395,10],[395,10],[395,10],[99,8],[99,8],[99,8],[99,8],[99,8],[99,8],[99,8],[99,8],[198,9],[198,9],[198,9],[396,10],[397,10],[397,10],[199,9],[199,9],[199,9],[199,9],[199,9],[399,10],[399,10],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[25,6],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[50,7],[100,8],[100,8],[100,8],[200,9],[200,9],[200,9],[200,9],[200,9],[200,9],[200,9],[400,10],[401,10],[401,10],[401,10],[201,9],[201,9],[201,9],[201,9],[402,10],[402,10],[402,10],[101,8],[101,8],[101,8],[101,8],[101,8],[101,8],[101,8],[101,8],[202,9],[202,9],[404,10],[404,10],[405,10],[405,10],[203,9],[203,9],[406,10],[406,10],[407,10],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[51,7],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[102,8],[204,9],[204,9],[204,9],[204,9],[204,9],[204,9],[408,10],[409,10],[205,9],[205,9],[411,10],[411,10],[103,8],[103,8],[103,8],[103,8],[206,9],[206,9],[412,10],[412,10],[413,10],[413,10],[413,10],[413,10],[413,10],[207,9],[207,9],[207,9],[207,9],[207,9],[414,10],[414,10],[414,10],[415,10],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[13,5],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[26,6],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[52,7],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[104,8],[208,9],[208,9],[208,9],[208,9],[208,9],[208,9],[416,10],[417,10],[417,10],[209,9],[209,9],[209,9],[209,9],[209,9],[418,10],[418,10],[418,10],[419,10],[419,10],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[105,8],[210,9],[210,9],[210,9],[420,10],[421,10],[211,9],[211,9],[211,9],[211,9],[211,9],[211,9],[422,10],[422,10],[422,10],[422,10],[423,10],[423,10],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[53,7],[106,8],[106,8],[106,8],[106,8],[106,8],[106,8],[106,8],[106,8],[212,9],[212,9],[212,9],[213,9],[213,9],[213,9],[426,10],[426,10],[426,10],[427,10],[427,10],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[107,8],[214,9],[214,9],[214,9],[214,9],[428,10],[428,10],[429,10],[215,9],[215,9],[215,9],[215,9],[430,10],[430,10],[430,10],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[27,6],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[54,7],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[108,8],[216,9],[216,9],[216,9],[216,9],[216,9],[216,9],[432,10],[433,10],[433,10],[433,10],[217,9],[217,9],[217,9],[217,9],[434,10],[434,10],[434,10],[435,10],[435,10],[435,10],[435,10],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[109,8],[218,9],[218,9],[436,10],[219,9],[439,10],[439,10],[439,10],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[55,7],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[110,8],[220,9],[220,9],[220,9],[440,10],[441,10],[221,9],[221,9],[221,9],[221,9],[221,9],[221,9],[221,9],[221,9],[442,10],[443,10],[443,10],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[111,8],[222,9],[222,9],[444,10],[444,10],[444,10],[445,10],[445,10],[445,10],[445,10],[223,9],[223,9],[223,9],[223,9],[223,9],[223,9],[223,9],[223,9],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[7,4],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[14,5],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[28,6],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[56,7],[112,8],[112,8],[112,8],[112,8],[112,8],[224,9],[224,9],[448,10],[448,10],[448,10],[449,10],[225,9],[225,9],[225,9],[225,9],[450,10],[450,10],[450,10],[451,10],[451,10],[451,10],[451,10],[113,8],[113,8],[113,8],[113,8],[113,8],[113,8],[113,8],[113,8],[226,9],[226,9],[226,9],[226,9],[226,9],[226,9],[452,10],[452,10],[452,10],[452,10],[453,10],[453,10],[227,9],[227,9],[227,9],[227,9],[454,10],[454,10],[455,10],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[57,7],[114,8],[114,8],[114,8],[114,8],[114,8],[114,8],[228,9],[228,9],[228,9],[228,9],[228,9],[456,10],[456,10],[229,9],[229,9],[458,10],[458,10],[459,10],[115,8],[115,8],[115,8],[115,8],[115,8],[115,8],[115,8],[115,8],[230,9],[230,9],[230,9],[230,9],[460,10],[231,9],[462,10],[463,10],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[29,6],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[58,7],[116,8],[116,8],[116,8],[116,8],[116,8],[232,9],[232,9],[232,9],[464,10],[464,10],[464,10],[465,10],[465,10],[233,9],[233,9],[233,9],[233,9],[233,9],[233,9],[233,9],[233,9],[466,10],[466,10],[467,10],[117,8],[117,8],[117,8],[117,8],[117,8],[117,8],[117,8],[117,8],[234,9],[234,9],[468,10],[469,10],[235,9],[235,9],[235,9],[470,10],[471,10],[471,10],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[59,7],[118,8],[118,8],[118,8],[118,8],[236,9],[236,9],[472,10],[473,10],[473,10],[473,10],[237,9],[237,9],[237,9],[474,10],[474,10],[475,10],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[119,8],[238,9],[238,9],[238,9],[238,9],[238,9],[476,10],[476,10],[477,10],[477,10],[477,10],[477,10],[239,9],[239,9],[479,10],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[15,5],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[30,6],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[60,7],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[120,8],[240,9],[240,9],[240,9],[240,9],[240,9],[240,9],[480,10],[480,10],[480,10],[481,10],[481,10],[481,10],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[241,9],[482,10],[482,10],[482,10],[482,10],[483,10],[483,10],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[121,8],[242,9],[242,9],[242,9],[242,9],[242,9],[484,10],[484,10],[485,10],[243,9],[243,9],[243,9],[243,9],[486,10],[487,10],[487,10],[487,10],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[61,7],[122,8],[122,8],[122,8],[122,8],[244,9],[244,9],[489,10],[489,10],[489,10],[245,9],[245,9],[245,9],[490,10],[490,10],[491,10],[491,10],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[123,8],[246,9],[492,10],[492,10],[493,10],[493,10],[493,10],[247,9],[247,9],[494,10],[495,10],[495,10],[495,10],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[31,6],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[62,7],[124,8],[124,8],[124,8],[124,8],[124,8],[248,9],[248,9],[496,10],[496,10],[497,10],[497,10],[497,10],[249,9],[249,9],[249,9],[498,10],[498,10],[499,10],[125,8],[125,8],[125,8],[125,8],[125,8],[250,9],[250,9],[250,9],[250,9],[500,10],[500,10],[500,10],[500,10],[501,10],[501,10],[501,10],[251,9],[251,9],[251,9],[251,9],[251,9],[251,9],[251,9],[251,9],[502,10],[502,10],[502,10],[502,10],[502,10],[502,10],[503,10],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[63,7],[126,8],[126,8],[126,8],[126,8],[252,9],[252,9],[252,9],[252,9],[504,10],[504,10],[504,10],[505,10],[253,9],[253,9],[506,10],[506,10],[506,10],[507,10],[127,8],[127,8],[127,8],[127,8],[127,8],[127,8],[127,8],[127,8],[254,9],[254,9],[254,9],[254,9],[254,9],[254,9],[254,9],[508,10],[508,10],[509,10],[509,10],[509,10],[509,10],[255,9],[255,9],[255,9],[255,9],[255,9],[510,10],[511,10],[511,10],[511,10],[511,10],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[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,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],[2,2],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[8,4],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[32,6],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[64,7],[128,8],[128,8],[128,8],[128,8],[256,9],[256,9],[256,9],[256,9],[256,9],[256,9],[256,9],[256,9],[512,10],[512,10],[513,10],[513,10],[513,10],[513,10],[257,9],[257,9],[514,10],[514,10],[515,10],[129,8],[129,8],[129,8],[129,8],[129,8],[129,8],[258,9],[258,9],[516,10],[516,10],[517,10],[517,10],[517,10],[259,9],[259,9],[259,9],[259,9],[259,9],[518,10],[518,10],[518,10],[518,10],[518,10],[519,10],[519,10],[519,10],[519,10],[519,10],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[65,7],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[130,8],[260,9],[260,9],[260,9],[260,9],[260,9],[260,9],[520,10],[520,10],[521,10],[521,10],[521,10],[261,9],[261,9],[522,10],[522,10],[522,10],[522,10],[523,10],[523,10],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[131,8],[262,9],[262,9],[262,9],[262,9],[524,10],[524,10],[263,9],[263,9],[263,9],[526,10],[526,10],[526,10],[526,10],[527,10],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[33,6],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[66,7],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[132,8],[264,9],[264,9],[264,9],[264,9],[264,9],[264,9],[264,9],[264,9],[528,10],[529,10],[265,9],[265,9],[265,9],[265,9],[265,9],[530,10],[530,10],[531,10],[531,10],[531,10],[531,10],[133,8],[133,8],[133,8],[133,8],[133,8],[133,8],[266,9],[266,9],[266,9],[266,9],[266,9],[266,9],[266,9],[266,9],[532,10],[533,10],[267,9],[267,9],[267,9],[534,10],[535,10],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[67,7],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[134,8],[268,9],[268,9],[268,9],[268,9],[268,9],[536,10],[536,10],[536,10],[537,10],[269,9],[269,9],[269,9],[269,9],[538,10],[539,10],[539,10],[539,10],[539,10],[539,10],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[135,8],[270,9],[270,9],[540,10],[540,10],[540,10],[541,10],[541,10],[271,9],[271,9],[271,9],[271,9],[271,9],[271,9],[271,9],[542,10],[542,10],[543,10],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[17,5],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[34,6],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[68,7],[136,8],[136,8],[136,8],[136,8],[136,8],[136,8],[136,8],[272,9],[272,9],[272,9],[544,10],[544,10],[544,10],[544,10],[545,10],[545,10],[545,10],[545,10],[273,9],[273,9],[273,9],[546,10],[547,10],[137,8],[137,8],[137,8],[137,8],[137,8],[137,8],[137,8],[137,8],[274,9],[274,9],[274,9],[274,9],[274,9],[274,9],[548,10],[549,10],[549,10],[275,9],[275,9],[275,9],[275,9],[550,10],[551,10],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[69,7],[138,8],[138,8],[138,8],[138,8],[138,8],[138,8],[138,8],[138,8],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[276,9],[552,10],[553,10],[553,10],[553,10],[277,9],[277,9],[554,10],[554,10],[554,10],[554,10],[554,10],[555,10],[555,10],[139,8],[139,8],[278,9],[278,9],[278,9],[556,10],[557,10],[557,10],[557,10],[279,9],[279,9],[279,9],[279,9],[558,10],[558,10],[559,10],[559,10],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[35,6],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[70,7],[140,8],[140,8],[140,8],[140,8],[140,8],[140,8],[280,9],[280,9],[280,9],[280,9],[280,9],[560,10],[561,10],[561,10],[561,10],[561,10],[561,10],[281,9],[281,9],[281,9],[281,9],[562,10],[562,10],[563,10],[563,10],[141,8],[141,8],[141,8],[141,8],[141,8],[141,8],[282,9],[282,9],[565,10],[565,10],[283,9],[283,9],[283,9],[283,9],[283,9],[283,9],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[71,7],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[142,8],[284,9],[284,9],[284,9],[284,9],[284,9],[284,9],[284,9],[568,10],[569,10],[285,9],[285,9],[285,9],[285,9],[285,9],[285,9],[285,9],[570,10],[570,10],[571,10],[571,10],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[143,8],[286,9],[286,9],[572,10],[572,10],[573,10],[573,10],[573,10],[573,10],[573,10],[573,10],[287,9],[287,9],[287,9],[287,9],[287,9],[287,9],[287,9],[287,9],[574,10],[574,10],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[18,5],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[36,6],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[72,7],[144,8],[144,8],[144,8],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[288,9],[576,10],[576,10],[577,10],[289,9],[289,9],[289,9],[289,9],[289,9],[578,10],[578,10],[579,10],[145,8],[145,8],[145,8],[145,8],[145,8],[145,8],[290,9],[290,9],[290,9],[580,10],[580,10],[580,10],[581,10],[581,10],[581,10],[581,10],[581,10],[291,9],[291,9],[291,9],[582,10],[582,10],[582,10],[583,10],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[73,7],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[146,8],[292,9],[292,9],[292,9],[584,10],[584,10],[585,10],[585,10],[293,9],[293,9],[293,9],[586,10],[587,10],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[147,8],[294,9],[294,9],[294,9],[294,9],[294,9],[294,9],[589,10],[589,10],[589,10],[589,10],[295,9],[590,10],[590,10],[591,10],[591,10],[591,10],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[37,6],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[74,7],[148,8],[148,8],[148,8],[148,8],[148,8],[148,8],[148,8],[296,9],[296,9],[593,10],[297,9],[297,9],[297,9],[297,9],[297,9],[297,9],[297,9],[594,10],[594,10],[594,10],[594,10],[595,10],[595,10],[149,8],[149,8],[149,8],[149,8],[149,8],[149,8],[298,9],[298,9],[298,9],[298,9],[298,9],[596,10],[596,10],[596,10],[597,10],[299,9],[299,9],[299,9],[299,9],[299,9],[598,10],[598,10],[598,10],[599,10],[599,10],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[75,7],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[150,8],[300,9],[300,9],[600,10],[601,10],[601,10],[301,9],[301,9],[301,9],[602,10],[603,10],[151,8],[151,8],[151,8],[151,8],[151,8],[302,9],[302,9],[302,9],[302,9],[302,9],[302,9],[604,10],[604,10],[604,10],[605,10],[605,10],[303,9],[303,9],[303,9],[303,9],[606,10],[606,10],[607,10],[607,10],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[19,5],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[38,6],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[76,7],[152,8],[152,8],[152,8],[152,8],[152,8],[152,8],[304,9],[304,9],[304,9],[304,9],[608,10],[609,10],[305,9],[305,9],[305,9],[305,9],[610,10],[611,10],[611,10],[611,10],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[153,8],[306,9],[306,9],[306,9],[306,9],[306,9],[306,9],[306,9],[612,10],[612,10],[613,10],[613,10],[307,9],[307,9],[307,9],[307,9],[307,9],[307,9],[307,9],[307,9],[614,10],[614,10],[615,10],[615,10],[615,10],[615,10],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[77,7],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[154,8],[308,9],[308,9],[308,9],[616,10],[616,10],[617,10],[617,10],[309,9],[309,9],[309,9],[309,9],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[155,8],[310,9],[620,10],[621,10],[621,10],[311,9],[311,9],[311,9],[311,9],[311,9],[622,10],[622,10],[623,10],[623,10],[623,10],[623,10],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[39,6],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[78,7],[156,8],[156,8],[156,8],[312,9],[312,9],[312,9],[624,10],[624,10],[624,10],[625,10],[313,9],[313,9],[313,9],[313,9],[313,9],[626,10],[626,10],[627,10],[627,10],[627,10],[157,8],[157,8],[157,8],[314,9],[314,9],[314,9],[628,10],[629,10],[315,9],[315,9],[315,9],[630,10],[631,10],[631,10],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[79,7],[158,8],[158,8],[158,8],[158,8],[158,8],[158,8],[158,8],[316,9],[316,9],[316,9],[316,9],[316,9],[316,9],[316,9],[316,9],[632,10],[633,10],[633,10],[633,10],[317,9],[317,9],[317,9],[317,9],[634,10],[635,10],[635,10],[635,10],[159,8],[159,8],[318,9],[318,9],[318,9],[318,9],[318,9],[318,9],[636,10],[636,10],[637,10],[637,10],[319,9],[638,10],[638,10],[638,10],[638,10],[639,10],[639,10],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[5,3],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[10,4],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[20,5],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[40,6],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[80,7],[160,8],[160,8],[160,8],[160,8],[160,8],[160,8],[160,8],[320,9],[320,9],[320,9],[640,10],[640,10],[640,10],[640,10],[641,10],[641,10],[321,9],[321,9],[642,10],[642,10],[642,10],[642,10],[642,10],[643,10],[643,10],[161,8],[161,8],[161,8],[161,8],[161,8],[161,8],[161,8],[322,9],[322,9],[322,9],[322,9],[322,9],[322,9],[644,10],[645,10],[645,10],[645,10],[645,10],[645,10],[323,9],[323,9],[323,9],[323,9],[323,9],[646,10],[647,10],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[81,7],[162,8],[162,8],[162,8],[162,8],[162,8],[162,8],[324,9],[324,9],[324,9],[324,9],[648,10],[649,10],[649,10],[649,10],[649,10],[649,10],[325,9],[325,9],[325,9],[325,9],[325,9],[325,9],[650,10],[651,10],[163,8],[163,8],[163,8],[163,8],[163,8],[326,9],[326,9],[326,9],[326,9],[327,9],[327,9],[327,9],[327,9],[327,9],[654,10],[654,10],[654,10],[655,10],[655,10],[655,10],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[41,6],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[82,7],[164,8],[164,8],[164,8],[656,10],[657,10],[329,9],[329,9],[329,9],[658,10],[659,10],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[165,8],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[330,9],[660,10],[660,10],[661,10],[661,10],[661,10],[661,10],[331,9],[331,9],[331,9],[662,10],[662,10],[663,10],[663,10],[663,10],[663,10],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[83,7],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[166,8],[332,9],[332,9],[332,9],[332,9],[332,9],[332,9],[664,10],[664,10],[664,10],[664,10],[665,10],[333,9],[333,9],[333,9],[333,9],[333,9],[333,9],[667,10],[667,10],[667,10],[667,10],[667,10],[167,8],[167,8],[167,8],[167,8],[334,9],[334,9],[334,9],[668,10],[669,10],[669,10],[335,9],[335,9],[335,9],[335,9],[670,10],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[21,5],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[42,6],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[84,7],[168,8],[168,8],[168,8],[168,8],[168,8],[168,8],[168,8],[336,9],[672,10],[672,10],[672,10],[672,10],[672,10],[672,10],[673,10],[673,10],[337,9],[337,9],[337,9],[337,9],[337,9],[337,9],[674,10],[675,10],[675,10],[675,10],[675,10],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[169,8],[338,9],[338,9],[338,9],[338,9],[338,9],[338,9],[338,9],[338,9],[677,10],[339,9],[339,9],[339,9],[339,9],[339,9],[678,10],[679,10],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[85,7],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[170,8],[340,9],[340,9],[340,9],[340,9],[340,9],[680,10],[680,10],[681,10],[681,10],[681,10],[341,9],[682,10],[682,10],[683,10],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[171,8],[342,9],[342,9],[342,9],[684,10],[684,10],[684,10],[685,10],[685,10],[685,10],[685,10],[343,9],[343,9],[343,9],[343,9],[686,10],[686,10],[686,10],[687,10],[687,10],[687,10],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[43,6],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[86,7],[172,8],[172,8],[172,8],[172,8],[344,9],[344,9],[344,9],[344,9],[688,10],[688,10],[688,10],[689,10],[345,9],[345,9],[345,9],[345,9],[345,9],[345,9],[690,10],[690,10],[690,10],[690,10],[690,10],[691,10],[173,8],[173,8],[173,8],[173,8],[173,8],[346,9],[346,9],[346,9],[693,10],[693,10],[347,9],[347,9],[347,9],[347,9],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[87,7],[174,8],[174,8],[174,8],[174,8],[174,8],[174,8],[174,8],[348,9],[348,9],[348,9],[348,9],[696,10],[696,10],[696,10],[697,10],[349,9],[349,9],[349,9],[349,9],[698,10],[699,10],[699,10],[699,10],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[175,8],[350,9],[350,9],[350,9],[350,9],[350,9],[350,9],[700,10],[700,10],[700,10],[701,10],[351,9],[351,9],[351,9],[351,9],[702,10],[703,10],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[11,4],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[22,5],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[44,6],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[88,7],[176,8],[176,8],[176,8],[176,8],[176,8],[352,9],[352,9],[704,10],[704,10],[704,10],[704,10],[704,10],[705,10],[705,10],[353,9],[353,9],[353,9],[353,9],[353,9],[706,10],[706,10],[707,10],[707,10],[707,10],[177,8],[177,8],[177,8],[177,8],[177,8],[177,8],[177,8],[177,8],[354,9],[354,9],[354,9],[354,9],[354,9],[708,10],[708,10],[708,10],[708,10],[709,10],[709,10],[355,9],[355,9],[355,9],[710,10],[711,10],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[89,7],[178,8],[178,8],[178,8],[178,8],[178,8],[178,8],[178,8],[356,9],[356,9],[356,9],[712,10],[712,10],[357,9],[357,9],[357,9],[357,9],[357,9],[715,10],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[179,8],[358,9],[358,9],[358,9],[716,10],[716,10],[716,10],[716,10],[717,10],[717,10],[717,10],[717,10],[359,9],[359,9],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[45,6],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[90,7],[180,8],[180,8],[180,8],[180,8],[180,8],[180,8],[180,8],[360,9],[360,9],[721,10],[361,9],[361,9],[361,9],[361,9],[361,9],[722,10],[723,10],[181,8],[181,8],[181,8],[181,8],[181,8],[181,8],[181,8],[181,8],[362,9],[362,9],[724,10],[724,10],[724,10],[725,10],[725,10],[725,10],[725,10],[363,9],[363,9],[363,9],[363,9],[363,9],[363,9],[363,9],[363,9],[726,10],[726,10],[726,10],[726,10],[727,10],[727,10],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[91,7],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[182,8],[364,9],[364,9],[364,9],[364,9],[728,10],[728,10],[728,10],[729,10],[729,10],[729,10],[365,9],[365,9],[365,9],[730,10],[730,10],[731,10],[731,10],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[183,8],[366,9],[366,9],[366,9],[732,10],[732,10],[732,10],[367,9],[367,9],[367,9],[367,9],[367,9],[734,10],[735,10],[735,10],[735,10],[735,10],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[23,5],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[46,6],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[92,7],[184,8],[184,8],[184,8],[184,8],[184,8],[184,8],[368,9],[368,9],[368,9],[368,9],[368,9],[368,9],[736,10],[737,10],[737,10],[369,9],[369,9],[369,9],[739,10],[739,10],[185,8],[185,8],[185,8],[185,8],[370,9],[370,9],[370,9],[370,9],[370,9],[740,10],[741,10],[371,9],[371,9],[371,9],[371,9],[742,10],[743,10],[743,10],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[93,7],[186,8],[186,8],[186,8],[372,9],[372,9],[372,9],[372,9],[744,10],[744,10],[744,10],[745,10],[373,9],[373,9],[746,10],[747,10],[747,10],[747,10],[747,10],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[187,8],[374,9],[374,9],[374,9],[374,9],[374,9],[748,10],[748,10],[748,10],[749,10],[375,9],[375,9],[375,9],[375,9],[375,9],[375,9],[750,10],[750,10],[751,10],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[47,6],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[94,7],[188,8],[188,8],[188,8],[188,8],[188,8],[188,8],[188,8],[188,8],[376,9],[376,9],[376,9],[376,9],[752,10],[752,10],[753,10],[377,9],[377,9],[755,10],[755,10],[755,10],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[189,8],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[378,9],[756,10],[756,10],[756,10],[756,10],[756,10],[756,10],[757,10],[757,10],[757,10],[757,10],[379,9],[379,9],[758,10],[758,10],[95,7],[95,7],[95,7],[95,7],[95,7],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[190,8],[380,9],[380,9],[760,10],[760,10],[761,10],[381,9],[381,9],[381,9],[381,9],[762,10],[762,10],[762,10],[763,10],[763,10],[763,10],[191,8],[191,8],[191,8],[191,8],[191,8],[191,8],[191,8],[191,8],[382,9],[382,9],[382,9],[764,10],[764,10],[765,10],[765,10],[765,10],[383,9],[383,9],[383,9],[383,9],[766,10],[766,10],[766,10],[767,10],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[3,2],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[6,3],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[12,4],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[24,5],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[48,6],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[96,7],[192,8],[192,8],[192,8],[192,8],[192,8],[192,8],[384,9],[384,9],[384,9],[384,9],[384,9],[768,10],[768,10],[769,10],[769,10],[385,9],[385,9],[385,9],[770,10],[770,10],[770,10],[770,10],[771,10],[771,10],[193,8],[193,8],[193,8],[193,8],[193,8],[193,8],[386,9],[386,9],[386,9],[386,9],[386,9],[772,10],[773,10],[773,10],[387,9],[387,9],[387,9],[387,9],[387,9],[775,10],[775,10],[775,10],[775,10],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[97,7],[194,8],[194,8],[194,8],[194,8],[194,8],[194,8],[194,8],[194,8],[388,9],[388,9],[388,9],[388,9],[777,10],[389,9],[389,9],[389,9],[389,9],[389,9],[389,9],[389,9],[779,10],[779,10],[779,10],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[195,8],[390,9],[390,9],[390,9],[390,9],[390,9],[390,9],[390,9],[390,9],[780,10],[780,10],[781,10],[391,9],[391,9],[783,10],[783,10],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[49,6],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[98,7],[196,8],[196,8],[196,8],[196,8],[196,8],[196,8],[196,8],[196,8],[392,9],[392,9],[392,9],[392,9],[392,9],[784,10],[784,10],[785,10],[785,10],[785,10],[785,10],[785,10],[393,9],[393,9],[393,9],[393,9],[393,9],[393,9],[786,10],[786,10],[786,10],[787,10],[787,10],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[197,8],[394,9],[789,10],[395,9],[395,9],[395,9],[395,9],[395,9],[395,9],[395,9],[790,10],[790,10],[791,10],[791,10],[791,10],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[99,7],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[198,8],[396,9],[396,9],[396,9],[396,9],[396,9],[396,9],[396,9],[792,10],[793,10],[793,10],[793,10],[793,10],[397,9],[397,9],[397,9],[397,9],[397,9],[794,10],[795,10],[795,10],[795,10],[199,8],[199,8],[199,8],[199,8],[199,8],[199,8],[398,9],[398,9],[398,9],[398,9],[398,9],[796,10],[796,10],[796,10],[796,10],[796,10],[797,10],[399,9],[399,9],[399,9],[399,9],[399,9],[399,9],[399,9],[399,9],[798,10],[798,10],[799,10],[799,10],[799,10],[799,10],[799,10],[799,10],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[25,5],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[50,6],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[100,7],[200,8],[200,8],[200,8],[200,8],[200,8],[200,8],[200,8],[200,8],[400,9],[400,9],[400,9],[400,9],[400,9],[800,10],[800,10],[800,10],[801,10],[801,10],[401,9],[401,9],[401,9],[401,9],[802,10],[803,10],[803,10],[803,10],[201,8],[201,8],[201,8],[201,8],[201,8],[201,8],[201,8],[402,9],[402,9],[804,10],[804,10],[804,10],[805,10],[805,10],[805,10],[403,9],[403,9],[403,9],[403,9],[806,10],[806,10],[806,10],[807,10],[807,10],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[101,7],[202,8],[202,8],[202,8],[202,8],[202,8],[202,8],[202,8],[404,9],[404,9],[404,9],[404,9],[404,9],[809,10],[405,9],[405,9],[405,9],[810,10],[810,10],[810,10],[810,10],[811,10],[203,8],[203,8],[203,8],[203,8],[203,8],[203,8],[406,9],[406,9],[406,9],[812,10],[812,10],[812,10],[813,10],[813,10],[813,10],[813,10],[813,10],[407,9],[407,9],[407,9],[815,10],[815,10],[815,10],[815,10],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[51,6],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[102,7],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[204,8],[408,9],[408,9],[408,9],[408,9],[408,9],[408,9],[816,10],[816,10],[816,10],[817,10],[817,10],[817,10],[817,10],[409,9],[409,9],[409,9],[409,9],[409,9],[409,9],[409,9],[818,10],[819,10],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[205,8],[410,9],[410,9],[410,9],[410,9],[410,9],[820,10],[820,10],[820,10],[820,10],[821,10],[411,9],[411,9],[822,10],[822,10],[822,10],[822,10],[822,10],[823,10],[823,10],[823,10],[823,10],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[103,7],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[206,8],[412,9],[412,9],[824,10],[824,10],[824,10],[413,9],[826,10],[207,8],[207,8],[207,8],[207,8],[207,8],[207,8],[207,8],[207,8],[414,9],[414,9],[414,9],[414,9],[828,10],[828,10],[828,10],[828,10],[829,10],[829,10],[829,10],[415,9],[415,9],[415,9],[830,10],[830,10],[831,10],[831,10],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[13,4],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[26,5],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[52,6],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[104,7],[208,8],[208,8],[208,8],[208,8],[208,8],[208,8],[208,8],[416,9],[416,9],[416,9],[416,9],[416,9],[832,10],[832,10],[833,10],[417,9],[417,9],[834,10],[834,10],[834,10],[834,10],[835,10],[835,10],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[209,8],[418,9],[418,9],[418,9],[837,10],[837,10],[419,9],[838,10],[839,10],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[105,7],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[210,8],[420,9],[420,9],[420,9],[420,9],[840,10],[840,10],[841,10],[841,10],[421,9],[421,9],[421,9],[842,10],[842,10],[842,10],[842,10],[842,10],[843,10],[843,10],[211,8],[211,8],[211,8],[211,8],[211,8],[211,8],[422,9],[422,9],[422,9],[845,10],[845,10],[423,9],[423,9],[423,9],[423,9],[846,10],[846,10],[846,10],[847,10],[847,10],[847,10],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[53,6],[106,7],[106,7],[106,7],[106,7],[106,7],[106,7],[106,7],[106,7],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[212,8],[424,9],[424,9],[424,9],[424,9],[424,9],[424,9],[848,10],[849,10],[849,10],[849,10],[849,10],[425,9],[425,9],[425,9],[850,10],[850,10],[850,10],[850,10],[851,10],[851,10],[213,8],[213,8],[213,8],[213,8],[213,8],[213,8],[213,8],[213,8],[426,9],[852,10],[852,10],[427,9],[427,9],[427,9],[427,9],[427,9],[854,10],[854,10],[854,10],[855,10],[855,10],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[107,7],[214,8],[214,8],[214,8],[214,8],[214,8],[428,9],[428,9],[428,9],[428,9],[428,9],[428,9],[857,10],[429,9],[429,9],[429,9],[429,9],[429,9],[858,10],[858,10],[859,10],[859,10],[859,10],[859,10],[859,10],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[215,8],[430,9],[430,9],[430,9],[430,9],[430,9],[430,9],[430,9],[430,9],[860,10],[861,10],[861,10],[431,9],[431,9],[862,10],[862,10],[862,10],[862,10],[863,10],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[27,5],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[54,6],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[108,7],[216,8],[216,8],[216,8],[216,8],[216,8],[216,8],[216,8],[432,9],[432,9],[432,9],[864,10],[864,10],[864,10],[865,10],[865,10],[433,9],[433,9],[867,10],[867,10],[867,10],[217,8],[217,8],[217,8],[217,8],[217,8],[217,8],[217,8],[434,9],[434,9],[434,9],[868,10],[868,10],[869,10],[435,9],[435,9],[435,9],[435,9],[435,9],[870,10],[870,10],[870,10],[870,10],[871,10],[871,10],[871,10],[871,10],[871,10],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[109,7],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[218,8],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[436,9],[872,10],[872,10],[873,10],[873,10],[873,10],[873,10],[873,10],[437,9],[437,9],[437,9],[874,10],[874,10],[875,10],[875,10],[875,10],[219,8],[219,8],[219,8],[219,8],[219,8],[219,8],[438,9],[438,9],[438,9],[438,9],[876,10],[876,10],[876,10],[877,10],[877,10],[877,10],[877,10],[877,10],[877,10],[439,9],[439,9],[439,9],[879,10],[879,10],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[55,6],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[110,7],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[220,8],[440,9],[440,9],[440,9],[440,9],[441,9],[441,9],[441,9],[882,10],[882,10],[882,10],[883,10],[883,10],[883,10],[221,8],[221,8],[221,8],[221,8],[221,8],[221,8],[442,9],[442,9],[884,10],[885,10],[885,10],[443,9],[443,9],[443,9],[443,9],[443,9],[886,10],[887,10],[887,10],[887,10],[887,10],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[111,7],[222,8],[222,8],[222,8],[222,8],[222,8],[222,8],[222,8],[444,9],[444,9],[444,9],[888,10],[889,10],[889,10],[889,10],[445,9],[445,9],[445,9],[890,10],[890,10],[891,10],[891,10],[223,8],[223,8],[223,8],[223,8],[446,9],[446,9],[446,9],[446,9],[892,10],[892,10],[892,10],[893,10],[893,10],[893,10],[447,9],[447,9],[447,9],[447,9],[447,9],[447,9],[894,10],[894,10],[894,10],[895,10],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[7,3],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[14,4],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[28,5],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[56,6],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[112,7],[224,8],[224,8],[224,8],[224,8],[224,8],[224,8],[224,8],[448,9],[448,9],[448,9],[448,9],[896,10],[897,10],[897,10],[449,9],[449,9],[898,10],[898,10],[899,10],[899,10],[899,10],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[225,8],[450,9],[450,9],[450,9],[900,10],[900,10],[901,10],[901,10],[451,9],[451,9],[451,9],[451,9],[451,9],[902,10],[902,10],[902,10],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[113,7],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[226,8],[452,9],[452,9],[452,9],[452,9],[452,9],[452,9],[452,9],[904,10],[905,10],[905,10],[453,9],[453,9],[453,9],[453,9],[906,10],[906,10],[906,10],[907,10],[227,8],[227,8],[227,8],[227,8],[227,8],[454,9],[908,10],[908,10],[909,10],[909,10],[909,10],[455,9],[455,9],[910,10],[910,10],[910,10],[910,10],[911,10],[911,10],[911,10],[911,10],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[57,6],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[114,7],[228,8],[228,8],[228,8],[228,8],[228,8],[228,8],[228,8],[228,8],[456,9],[456,9],[912,10],[912,10],[912,10],[912,10],[912,10],[913,10],[913,10],[913,10],[913,10],[913,10],[457,9],[457,9],[457,9],[457,9],[457,9],[457,9],[457,9],[914,10],[915,10],[915,10],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[229,8],[458,9],[916,10],[917,10],[917,10],[459,9],[459,9],[459,9],[459,9],[918,10],[918,10],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[115,7],[230,8],[230,8],[230,8],[230,8],[230,8],[230,8],[460,9],[460,9],[460,9],[460,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[461,9],[922,10],[922,10],[231,8],[231,8],[231,8],[231,8],[231,8],[231,8],[462,9],[462,9],[462,9],[462,9],[462,9],[462,9],[924,10],[925,10],[463,9],[463,9],[463,9],[927,10],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[29,5],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[58,6],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[116,7],[232,8],[232,8],[232,8],[232,8],[232,8],[232,8],[232,8],[464,9],[464,9],[464,9],[464,9],[928,10],[928,10],[929,10],[929,10],[465,9],[465,9],[930,10],[930,10],[931,10],[931,10],[233,8],[233,8],[233,8],[233,8],[233,8],[233,8],[466,9],[466,9],[466,9],[466,9],[466,9],[466,9],[932,10],[932,10],[932,10],[933,10],[933,10],[933,10],[467,9],[467,9],[467,9],[467,9],[935,10],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[117,7],[234,8],[234,8],[234,8],[234,8],[234,8],[468,9],[468,9],[468,9],[468,9],[468,9],[468,9],[936,10],[936,10],[937,10],[937,10],[469,9],[469,9],[469,9],[469,9],[469,9],[938,10],[938,10],[938,10],[938,10],[235,8],[235,8],[235,8],[235,8],[235,8],[235,8],[235,8],[235,8],[470,9],[470,9],[470,9],[470,9],[470,9],[470,9],[940,10],[940,10],[940,10],[940,10],[941,10],[941,10],[941,10],[941,10],[941,10],[471,9],[471,9],[471,9],[942,10],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[59,6],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[118,7],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[236,8],[472,9],[472,9],[472,9],[472,9],[472,9],[472,9],[944,10],[944,10],[944,10],[944,10],[945,10],[945,10],[473,9],[473,9],[473,9],[473,9],[473,9],[946,10],[947,10],[947,10],[237,8],[237,8],[237,8],[237,8],[237,8],[237,8],[474,9],[474,9],[474,9],[474,9],[474,9],[474,9],[474,9],[474,9],[948,10],[948,10],[948,10],[948,10],[949,10],[949,10],[949,10],[949,10],[949,10],[475,9],[475,9],[475,9],[950,10],[950,10],[951,10],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[119,7],[238,8],[238,8],[238,8],[238,8],[238,8],[476,9],[476,9],[476,9],[476,9],[476,9],[952,10],[953,10],[953,10],[953,10],[953,10],[477,9],[477,9],[477,9],[477,9],[954,10],[954,10],[955,10],[239,8],[239,8],[239,8],[239,8],[239,8],[239,8],[239,8],[239,8],[478,9],[478,9],[478,9],[956,10],[956,10],[956,10],[479,9],[479,9],[479,9],[958,10],[958,10],[958,10],[959,10],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[15,4],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[30,5],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[60,6],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[120,7],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[240,8],[961,10],[481,9],[481,9],[481,9],[481,9],[481,9],[962,10],[962,10],[962,10],[962,10],[963,10],[241,8],[241,8],[241,8],[241,8],[482,9],[482,9],[482,9],[964,10],[964,10],[964,10],[965,10],[965,10],[483,9],[966,10],[966,10],[967,10],[967,10],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[121,7],[242,8],[242,8],[242,8],[242,8],[242,8],[242,8],[242,8],[242,8],[484,9],[484,9],[484,9],[484,9],[484,9],[485,9],[485,9],[485,9],[485,9],[970,10],[970,10],[970,10],[970,10],[970,10],[971,10],[971,10],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[243,8],[486,9],[486,9],[486,9],[486,9],[486,9],[486,9],[972,10],[973,10],[487,9],[487,9],[487,9],[487,9],[487,9],[975,10],[975,10],[975,10],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[61,6],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[122,7],[244,8],[244,8],[244,8],[488,9],[488,9],[976,10],[976,10],[976,10],[976,10],[976,10],[489,9],[489,9],[489,9],[489,9],[979,10],[979,10],[245,8],[245,8],[245,8],[245,8],[245,8],[245,8],[245,8],[490,9],[980,10],[980,10],[981,10],[981,10],[491,9],[491,9],[491,9],[491,9],[491,9],[491,9],[491,9],[491,9],[982,10],[983,10],[983,10],[983,10],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[123,7],[246,8],[246,8],[246,8],[246,8],[246,8],[246,8],[246,8],[492,9],[492,9],[492,9],[492,9],[985,10],[493,9],[493,9],[493,9],[986,10],[987,10],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[247,8],[494,9],[494,9],[494,9],[988,10],[988,10],[988,10],[988,10],[988,10],[988,10],[989,10],[989,10],[989,10],[495,9],[495,9],[990,10],[991,10],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[31,5],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[62,6],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[124,7],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[248,8],[496,9],[496,9],[496,9],[496,9],[497,9],[497,9],[994,10],[994,10],[994,10],[995,10],[995,10],[249,8],[249,8],[249,8],[498,9],[498,9],[498,9],[498,9],[996,10],[996,10],[996,10],[997,10],[499,9],[499,9],[499,9],[499,9],[499,9],[499,9],[998,10],[999,10],[999,10],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[125,7],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[250,8],[500,9],[500,9],[500,9],[500,9],[1000,10],[501,9],[501,9],[501,9],[501,9],[501,9],[1002,10],[1003,10],[1003,10],[251,8],[251,8],[251,8],[251,8],[502,9],[502,9],[502,9],[502,9],[502,9],[1004,10],[1005,10],[503,9],[503,9],[503,9],[503,9],[503,9],[503,9],[503,9],[503,9],[1006,10],[1006,10],[1007,10],[1007,10],[1007,10],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[63,6],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[126,7],[252,8],[252,8],[252,8],[252,8],[252,8],[252,8],[252,8],[504,9],[504,9],[504,9],[504,9],[504,9],[1008,10],[1008,10],[1008,10],[505,9],[505,9],[505,9],[505,9],[505,9],[505,9],[505,9],[1010,10],[1011,10],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[253,8],[506,9],[506,9],[506,9],[506,9],[506,9],[506,9],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1012,10],[1013,10],[1013,10],[1013,10],[507,9],[507,9],[507,9],[1014,10],[1014,10],[1014,10],[1015,10],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[127,7],[254,8],[254,8],[254,8],[254,8],[254,8],[254,8],[254,8],[508,9],[508,9],[1017,10],[1017,10],[1017,10],[509,9],[509,9],[509,9],[1018,10],[1018,10],[1019,10],[255,8],[255,8],[255,8],[510,9],[510,9],[1020,10],[1021,10],[511,9],[511,9],[511,9],[511,9],[511,9],[1022,10]]}]}] diff --git a/src/main/kotlin/com/jalgoarena/data/XodusProblemsRepository.kt b/src/main/kotlin/com/jalgoarena/data/XodusProblemsRepository.kt index 3462477..f876fd3 100644 --- a/src/main/kotlin/com/jalgoarena/data/XodusProblemsRepository.kt +++ b/src/main/kotlin/com/jalgoarena/data/XodusProblemsRepository.kt @@ -56,7 +56,6 @@ class XodusProblemsRepository(dbName: String) : ProblemsRepository { setProperty(Constants.problemTitle, problem.title) setProperty(Constants.problemDescription, problem.description) setProperty(Constants.problemLevel, problem.level) - setProperty(Constants.problemMemoryLimit, problem.memoryLimit) setProperty(Constants.problemTimeLimit, problem.timeLimit) setProperty(Constants.problemFunction, toJson(problem.func!!)) setProperty(Constants.problemTestCases, toJson(problem.testCases!!)) diff --git a/src/main/kotlin/com/jalgoarena/domain/Constants.kt b/src/main/kotlin/com/jalgoarena/domain/Constants.kt index a089909..a780631 100644 --- a/src/main/kotlin/com/jalgoarena/domain/Constants.kt +++ b/src/main/kotlin/com/jalgoarena/domain/Constants.kt @@ -7,7 +7,6 @@ object Constants { val problemTitle = "title" val problemDescription = "description" val problemLevel = "level" - val problemMemoryLimit = "memoryLimit" val problemTimeLimit = "timeLimit" val problemFunction = "func" val problemTestCases = "testCases" diff --git a/src/main/kotlin/com/jalgoarena/domain/Problem.kt b/src/main/kotlin/com/jalgoarena/domain/Problem.kt index 70bd1ab..419dac4 100644 --- a/src/main/kotlin/com/jalgoarena/domain/Problem.kt +++ b/src/main/kotlin/com/jalgoarena/domain/Problem.kt @@ -13,7 +13,6 @@ data class Problem(val id: String, val title: String, val description: String, val timeLimit: Long, - val memoryLimit: Int, val func: Function?, val testCases: List?, val level: Int) { @@ -40,7 +39,6 @@ data class Problem(val id: String, entity.getProperty(Constants.problemTitle) as String, entity.getProperty(Constants.problemDescription) as String, entity.getProperty(Constants.problemTimeLimit) as Long, - entity.getProperty(Constants.problemMemoryLimit) as Int, function, testCases.toList(), entity.getProperty(Constants.problemLevel) as Int diff --git a/src/test/kotlin/com/jalgoarena/data/ProblemsRepositorySpec.kt b/src/test/kotlin/com/jalgoarena/data/ProblemsRepositorySpec.kt index 9e88174..45de59a 100644 --- a/src/test/kotlin/com/jalgoarena/data/ProblemsRepositorySpec.kt +++ b/src/test/kotlin/com/jalgoarena/data/ProblemsRepositorySpec.kt @@ -58,7 +58,6 @@ class ProblemsRepositorySpec { "Test Title", fibProblem.description, fibProblem.timeLimit, - fibProblem.memoryLimit, fibProblem.func, fibProblem.testCases, fibProblem.level diff --git a/src/test/kotlin/com/jalgoarena/domain/ProblemSerializationTest.kt b/src/test/kotlin/com/jalgoarena/domain/ProblemSerializationTest.kt index dc41fb5..7f8f6cf 100644 --- a/src/test/kotlin/com/jalgoarena/domain/ProblemSerializationTest.kt +++ b/src/test/kotlin/com/jalgoarena/domain/ProblemSerializationTest.kt @@ -37,7 +37,6 @@ class ProblemSerializationTest { "2 Sum", "Given an array of integers, find two numbers such that they add up to a specific target number.\r\n\r\nThe method `twoSum` should return indices of the two numbers such that they add up to the target, where *index1* must be less than *index2*. Please note that your returned answers (both *index1* and *index2*) are not zero-based.\r\n\r\n**Note**: You may assume that each input would have exactly one solution.\r\n\r\n### Example\r\n\r\n* `[2,7,11,15], 9` -> `[1,2]`", 1L, - 32, Function("twoSum", Function.Return("[I", " Indices of the two numbers"), @@ -71,7 +70,6 @@ class ProblemSerializationTest { "title": "2 Sum", "description": "Given an array of integers, find two numbers such that they add up to a specific target number.\r\n\r\nThe method `twoSum` should return indices of the two numbers such that they add up to the target, where *index1* must be less than *index2*. Please note that your returned answers (both *index1* and *index2*) are not zero-based.\r\n\r\n**Note**: You may assume that each input would have exactly one solution.\r\n\r\n### Example\r\n\r\n* `[2,7,11,15], 9` -> `[1,2]`", "timeLimit": 1, - "memoryLimit": 32, "func": { "name": "twoSum", "returnStatement": { diff --git a/src/test/kotlin/com/jalgoarena/utils/SetupProblemsStore.kt b/src/test/kotlin/com/jalgoarena/utils/SetupProblemsStore.kt index e4a0bca..cbab56f 100644 --- a/src/test/kotlin/com/jalgoarena/utils/SetupProblemsStore.kt +++ b/src/test/kotlin/com/jalgoarena/utils/SetupProblemsStore.kt @@ -28,7 +28,6 @@ class SetupProblemsStore(val dbName: String) { setProperty(Constants.problemTitle, problem.title) setProperty(Constants.problemDescription, problem.description) setProperty(Constants.problemLevel, problem.level) - setProperty(Constants.problemMemoryLimit, problem.memoryLimit) setProperty(Constants.problemTimeLimit, problem.timeLimit) setProperty(Constants.problemFunction, toJson(problem.func!!)) setProperty(Constants.problemTestCases, toJson(problem.testCases!!)) diff --git a/src/test/resources/com/jalgoarena/domain/two-sum-problem.json b/src/test/resources/com/jalgoarena/domain/two-sum-problem.json index 5d0f758..3be6fe4 100644 --- a/src/test/resources/com/jalgoarena/domain/two-sum-problem.json +++ b/src/test/resources/com/jalgoarena/domain/two-sum-problem.json @@ -3,7 +3,6 @@ "title": "2 Sum", "description": "Given an array of integers, find two numbers such that they add up to a specific target number.\r\n\r\nThe method `twoSum` should return indices of the two numbers such that they add up to the target, where *index1* must be less than *index2*. Please note that your returned answers (both *index1* and *index2*) are not zero-based.\r\n\r\n**Note**: You may assume that each input would have exactly one solution.\r\n\r\n### Example\r\n\r\n* `[2,7,11,15], 9` -> `[1,2]`", "timeLimit": 1, - "memoryLimit": 32, "func": { "name": "twoSum", "returnStatement": {