content stringlengths 7 1.05M |
|---|
# """
# This is the interface that allows for creating nested lists.
# You should not implement it, or speculate about its implementation
# """
#class NestedInteger:
# def __init__(self, value=None):
# """
# If value is not specified, initializes an empty list.
# Otherwise initializes a single integer equal to value.
# """
#
# def isInteger(self):
# """
# @return True if this NestedInteger holds a single integer, rather than a nested list.
# :rtype bool
# """
#
# def add(self, elem):
# """
# Set this NestedInteger to hold a nested list and adds a nested integer elem to it.
# :rtype void
# """
#
# def setInteger(self, value):
# """
# Set this NestedInteger to hold a single integer equal to value.
# :rtype void
# """
#
# def getInteger(self):
# """
# @return the single integer that this NestedInteger holds, if it holds a single integer
# Return None if this NestedInteger holds a nested list
# :rtype int
# """
#
# def getList(self):
# """
# @return the nested list that this NestedInteger holds, if it holds a nested list
# Return None if this NestedInteger holds a single integer
# :rtype List[NestedInteger]
# """
class Solution:
def depthSumInverse(self, nestedList: List[NestedInteger]) -> int:
total_sum, level_sum = 0, 0
while len(nestedList):
next_level_list = []
for x in nestedList:
if x.isInteger():
level_sum += x.getInteger()
else:
for y in x.getList():
next_level_list.append(y)
# each level add 1 time, so instead of using depth to multiply, we add multiple times of level list
total_sum += level_sum
nestedList = next_level_list
return total_sum
# Time: O(N)
# Space:O(N)
|
def compare_extraction(extractor, examples, counter_examples,
lwrap="", rwrap=""):
for example in examples:
wrapped = lwrap + example + rwrap
# print(extractor.process(wrapped), example)
assert extractor.process(wrapped) == [example]
assert extractor.process(
"Sentence " +
wrapped +
" sandwich.") == [example]
assert extractor.process("Sentence end " + wrapped + ".") == [example]
assert extractor.process(wrapped + " start of sentence.") == [example]
for example in counter_examples:
wrapped = lwrap + example + rwrap
assert extractor.process(wrapped) == [], str(extractor.process(wrapped))
assert extractor.process("Sentence " + wrapped + " sandwich.") == []
assert extractor.process("Sentence end " + wrapped + ".") == []
assert extractor.process(wrapped + " start of sentence.") == []
|
list = ["2,4,6,8,10","1,3,7,9,10"]
listA = list[0].split(sep=',')
listB = list[1].split(sep=',')
print("\n::: INTERSECCIÓN ::: \n")
i=0
counter=0
while i < len(listA) :
j=0
while j < len(listB) :
if listA[i] == listB[j] :
print ("lista A",listA[i])
counter+=1
j+=1
i+=1
if counter == 0 :
print("no hay numeros repetidos en la lista")
list = ["1,2,3,4,5,6","1,2,3,4,5,6"]
listA = list[0].split(sep=',')
listB = list[1].split(sep=',')
print(" ::: INTERSECCIÓN ::: ")
i=0
counter=0
while i < len(listA) :
j=0
while j < len(listB) :
if listA[i] == listB[j] :
print ("lista B",listA[i])
counter+=1
j+=1
i+=1
if counter == 0 :
print("no hay numeros repetidos en la lista")
list = ["5,10,15,20,25,30","1,14,21,28,35"]
listA = list[0].split(sep=',')
listB = list[1].split(sep=',')
print("\n::: INTERSECCIÓN ::: \n")
i=0
counter=0
while i < len(listA) :
j=0
while j < len(listB) :
if listA[i] == listB[j] :
print ("lista c",listA[i])
counter+=1
j+=1
i+=1
if counter == 0 :
print("no hay numeros repetidos en la lista") |
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def addTwoNumbers(self, l1, l2):
out = l1
out_root = out
flag = 0
while l1 is not None or l2 is not None or flag:
v = flag
if l1 is not None:
v += l1.val
l1 = l1.next
if l2 is not None:
v += l2.val
l2 = l2.next
flag, v = v//10, v%10
if out is None:
out_para.next = ListNode(v)
out_para = out_para.next
out = out_para.next
else:
out.val = v
out_para = out
out = out.next
return out_root
def construct_link(val_list):
root = None
cur_p = root
for v in val_list:
node = ListNode(v)
if root is None:
root = node
cur_p = node
else:
cur_p.next = node
cur_p = node
return root
def decode_link(root):
val = []
while root is not None:
val.append(root.val)
root = root.next
return val
if __name__=="__main__":
val1 = [9,9,9,9,9,9,9]
val2 = [9,9,9,9]
l1, l2 = construct_link(val1), construct_link(val2)
s = Solution()
rtn = s.addTwoNumbers(l1, l2)
print(decode_link(rtn))
|
class Solution:
def min_steps(self, piles):
piles.sort(reverse=True)
res = 0
for i in range(1, len(piles)):
if piles[i] != piles[i - 1]:
res += i
return res
|
def solve(f, a, b, c):
m = (a + b) / 2.0
while a != m and m != b:
if f(m) < c:
a = m
else:
b = m
m = (a + b) / 2.0
return a
a = 0
b = 10
print(solve(lambda x: x ** 3 + x + 1, a, b, 5.0000000000000001))
|
#
# Copyright (c) 2018 Joy Diamond. All rights reserved.
#
@gem('Crystal.ChessBishop')
def gem():
require_gem('Crystal.CardRoot')
@export
class ChessBishop(CardRoot):
ally_abbreviation = 'WB'
enemy_abbreviation = 'BB'
initial_attack = 1
initial_health = 3
__slots__ = (())
def prepare(t, board):
#
# Heal myself, if injured
#
if t.current_health < t.maximum_health:
t.current_health += 1
return
#
# Otherwise, heal everyone else
#
square = t.square
board.a1.heal_1(board, t)
if square != square_b1:
heal_1 = board.b1.heal_1
if heal_1 != 0:
heal_1(board, t)
if square != square_c1:
heal_1 = board.c1.heal_1
if heal_1 != 0:
heal_1(board, t)
if square != square_d1:
heal_1 = board.d1.heal_1
if heal_1 != 0:
heal_1(board, t)
if square != square_e1:
heal_1 = board.e1.heal_1
if heal_1 != 0:
heal_1(board, t)
def action(t, board):
north_east = t.square.load_north_east(board)
north_west = t.square.load_north_west(board)
if (north_east.is_card) and (north_east.attacked(board, t)):
if north_west.is_card:
north_west.attacked(board, t)
return
if (north_west.is_card) and (north_west.attacked(board, t)):
return
if (not north_east.is_card) and (not north_west.is_card):
board.a2.attacked_ignore_shield(board, t)
@export
def create_ally_chess_bishop(square, special = false):
health = ChessBishop.initial_health + (1 if special else 0)
return ChessBishop(square, true, ChessBishop.initial_attack, health, health)
|
'''
Demo_2 sums up all the input number collected from the input and gives the average value of the inputs
'''
number = 0
i = 0
sum = 0
average = 0
n=0
print('please enter the numbers, if it equals to 0 or be less than 0, the input will end')
while True:
n = int(input('please enter a number: '))
if n <= 0:
break
sum = sum + n
number = number + 1
print('the sum of the numbers are: ', sum)
print('the average value of the numbers are: ',sum/number) |
"""
procon library by bayashi-cl
github repository: https://github.com/bayashi-cl/byslib-python
This library can be expanded with expander.
- https://github.com/bayashi-cl/expander
"""
__version__ = "0.1.0"
|
input = open('input.txt').readlines()
input = map(lambda s: s.replace('\n', ''), input)
depth = 0
horizontal = 0
for string in input:
replaced = string.replace('down ', '') if 'down' in string else string.replace('up ', '-')
if replaced != string:
depth += int(replaced)
else:
horizontal += int(string.replace('forward ',''))
print(depth*horizontal) |
# visa full time master's ph.D question
def number_of_pair(a, k):
# a = [1,1,3,3,9,46]
# k = 47
# answer = 1 -> (1,46)
# a.sort()
d = {}
pair = 0
i = 0
if not a:
return 0
try:
while i <= len(a):
value = a[i]
complement = k - value
if complement in d:
frequency = d.get(complement) - 1
pair += 1
if frequency == 0:
d.pop(complement, None)
else:
d[complement] = frequency
else:
if value in d:
d[value] = d.get(value) + 1
else:
d[value] = 1
i += 1
return d
except Exception as e:
print(e)
a = [1, 1, 3, 3, 9, 46]
k = 47
print(number_of_pair(a, k))
def numberOfPairs(a, k):
"""
Runtime: O(n * log n)
After sorting, I can iterate through the
list from both sides in O(n) to find the pairs.
"""
a.sort()
if len(a) < 2:
return []
pairs = []
start = 0
end = len(a) - 1
while start < end:
n1 = arr[start]
n2 = arr[end]
pair = n1 + n2
if pair < k:
start += 1
if pair > k:
end -= 1
if pair == k:
pairs.append([n1, n2])
start += 1
container = {}
for i in pairs:
if i[1] not in container:
key = i[0]
value = i[1]
container[key] = value
if len(container) > 0:
return len(container)
else:
return 0
k = 12
arr = [6, 6, 3, 9, 3, 5, 1]
print(numberOfPairs(arr, k))
|
# -*- coding: utf-8 -*-
"""
@description:
@author: LiuXin
@contact: xinliu1996@163.com
@Created on: 2020/11/20 上午11:41
""" |
#!/usr/env/bin python3
class BaseError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return self.value
class MissingParameters(BaseError):
pass
class ApiError(BaseError):
pass
class IDNotFound(BaseError):
pass
class NameNotFound(BaseError):
pass
class BusRouteNotFound(BaseError):
pass
class NoStationAtPosition(BaseError):
pass
class NoRouteAtPosition(BaseError):
pass
|
####Aula 64 Curso em Vídeo######
n = cont = soma = 0
n = int(input('Digite um número : '))
while n != 999:
soma += n
cont += 1
n = int(input('Digite um número : '))
print('você digitou {} números e a soma foi {} '.format(cont,soma))
|
class DataReader():
"""
Get dataset from files
Examples:
train, dev, test = DataReader("data/train.txt","data/dev.txt","data/test.txt").read()
"""
def __init__(self, train_file, dev_file, test_file):
"""
Init dataset information.
Inputs:
train_file: train file's location & full name
dev_file: dev file's location & full name
test_file: test file's location & full name
Examples:
DataReader("data/train.txt","data/dev.txt","data/test.txt")
"""
self.train_file = train_file
self.dev_file = dev_file
self.test_file = test_file
self.tarin_raw = []
self.dev_raw = []
self.test_raw = []
def get_raw(self, input_file):
"""
Get raw data from file
Inputs:
input_file: input file name
Returns:
raw_data: a set with raw data
Examples:
raw = get_raw("data/train.txt")
"""
with open(input_file) as reader:
raw_data = reader.readlines()
return raw_data
def formate(self, raw_data):
"""
Formate raw data
Inputs:
raw_data: a set with raw data
Returns:
dataset: a set with formated data
Examples:
raw = ["1 Abc def\\n", "0 xyz"]
dataset = formate(raw)
assert(dataset == [(1, "abc def"]), (0, "xyz")])
"""
dataset = []
for raw in raw_data:
num_idx = 0
while raw[num_idx] not in "0123456789":
num_idx += 1
label = int(raw[ : num_idx + 1])
str_idx = num_idx + 1
if raw[str_idx] == ' ':
str_idx += 1
if raw[-1] == "\n":
string = raw[str_idx : -1]
else:
string = raw[str_idx : ]
string.lower()
dataset.append((label, string))
return dataset
def read(self):
"""
Get dataset and formate.
Returns:
train: train dataset
dev: dev dataset
test: test dataset
Examples:
train, dev, test = read()
"""
train = self.formate(self.get_raw(self.train_file))
dev = self.formate(self.get_raw(self.dev_file))
test = self.formate(self.get_raw(self.test_file))
return train, dev, test
|
class Solution(object):
# Use inbuilt functions
def hammingWeightBuiltin(self, n):
"""
:type n: int
:rtype: int
"""
return bin(n).count('1')
# Using bit operation to cancel a 1 in each round
# Think of a number in binary `n = XXXXXX1000, n - 1 is XXXXXX0111`.
# `n & (n - 1)` will be `XXXXXX0000` which just canceled the last `1`
def hammingWeightBitwise(self, n):
"""
:type n: int
:rtype: int
"""
c = 0
while n:
n &= n - 1
c += 1
return c |
"""Top-level package for COVID Traffic Controller Demonstrator."""
__author__ = """Aadam Abrahams"""
__email__ = 'aadam1999@gmail.com'
__version__ = '0.1.0'
|
"""This is another example for function"""
def print_names(first_name, last_name):
print("this firstname is:" + first_name)
print("The second name is" + last_name)
print_names('Vamsi', 'Mandapati')
|
class LoggingConfigEnum:
"""This "Enum" serves to store all paths and keywords used to configure the loggers."""
# set levels (for now, they match to the "logging" default ones)
DEBUG = "debug"
INFO = "info"
WARNING = "warning"
ERROR = "error"
EXCEPTION = "exception"
# paths to the configuration JSONs that are shipped with DockStream
PATH_CONFIG_DEFAULT = "dockstream/config/logging/default.json"
PATH_CONFIG_VERBOSE = "dockstream/config/logging/verbose.json"
PATH_CONFIG_DEBUG = "dockstream/config/logging/debug.json"
# high-level loggers defined in the configurations
LOGGER_INTERFACE = "command_line_interface"
LOGGER_TARGET_PREPARATION = "target_preparation"
LOGGER_LIGAND_PREPARATION = "ligand_preparation"
LOGGER_DOCKING = "docking"
LOGGER_BLANK = "blank"
# try to find the internal value and return
def __getattr__(self, name):
if name in self:
return name
raise AttributeError
# prohibit any attempt to set any values
def __setattr__(self, key, value):
raise ValueError("No changes allowed.")
|
n, k = list(map(int, input().split()))
prices = sorted([int(input()) for _ in range(n)])
count = 0
for price in reversed(prices):
if k // price > 0:
count += k // price
k %= price
print(count) |
# Operadores lógicos OR
a = 1 == 1 or 1 < 0 # True
a = 2 != 2 or 1 == 0 or 45 > 90 # False
a = 56 != 23 or 1 > 0 or 45 > 90 # True
a = 23 > 2 or 1 > 0 or 45 > 90 or 45 > 78 # True
a = 1 > 2 or 1 < 0 or 45 > 90 or 45 > 78 # False
print("Final")
|
# ------------------------------
# 427. Construct Quad Tree
#
# Description:
# We want to use quad trees to store an N x N boolean grid. Each cell in the grid can only
# be true or false. The root node represents the whole grid. For each node, it will be
# subdivided into four children nodes until the values in the region it represents are all
# the same.
#
# Each node has another two boolean attributes : isLeaf and val. isLeaf is true if and only
# if the node is a leaf node. The val attribute for a leaf node contains the value of the
# region it represents.
#
# Your task is to use a quad tree to represent a given grid.
# (Check picture from https://leetcode.com/problems/construct-quad-tree/)
#
# Version: 1.0
# 10/11/19 by Jianfa
# ------------------------------
"""
# Definition for a QuadTree node.
class Node:
def __init__(self, val, isLeaf, topLeft, topRight, bottomLeft, bottomRight):
self.val = val
self.isLeaf = isLeaf
self.topLeft = topLeft
self.topRight = topRight
self.bottomLeft = bottomLeft
self.bottomRight = bottomRight
"""
class Solution:
def construct(self, grid: List[List[int]]) -> 'Node':
if not grid or not grid[0]:
return None
n = len(grid)
return self.dfs(grid, 0, 0, n-1, n-1)
def dfs(self, grid, x1, y1, x2, y2):
# x1, y1 is the coordinates of top left corner
# x2, y2 is the coordinates of bottom right corner
if x1 == x2 and y1 == y2:
return Node(grid[x1][y1], True, None, None, None, None)
# Be careful of the coordinates of each region
topLeft = self.dfs(grid, x1, y1, (x1 + x2) // 2, (y1 + y2) // 2)
topRight = self.dfs(grid, x1, (y1 + y2) // 2 + 1, (x1 + x2) // 2, y2)
bottomLeft = self.dfs(grid, (x1 + x2) // 2 + 1, y1, x2, (y1 + y2) // 2)
bottomRight = self.dfs(grid, (x1 + x2) // 2 + 1, (y1 + y2) // 2 + 1, x2, y2)
if topLeft.isLeaf and topRight.isLeaf and bottomLeft.isLeaf and bottomRight.isLeaf \
and topLeft.val == topRight.val == bottomLeft.val == bottomRight.val:
node = Node(topLeft.val, True, None, None, None, None)
else:
node = Node("*", False, topLeft, topRight, bottomLeft, bottomRight)
return node
# Used for testing
if __name__ == "__main__":
test = Solution()
# ------------------------------
# Summary:
# DFS solution |
# basic function definition
def hello_world():
print('hello world')
print('I\'m a print statement inside the hello_world() function')
# calling the function will execute it
hello_world()
hello_world()
# function with inputs and return value
def sum(a, b):
return a + b
print(sum(3, 7))
print(sum('hello', 'babe'))
# print(sum('hello', 7)) this will throw an error!
# same function with type annotation to increase readability and safety
def sum_of_floats(a: float, b: float) -> float:
return a + b
print(sum_of_floats(10, 5))
# print(sum_of_floats('3', 5)) # -- this will throw an error |
# 235. Lowest Common Ancestor of a Binary Search Tree
# Definition for a binary tree node.
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution(object):
def lowestCommonAncestor(self, root, p, q):
"""
:type root: TreeNode
:type p: TreeNode
:type q: TreeNode
:rtype: TreeNode
"""
if not root:
return None
left = self.lowestCommonAncestor(root, p, q)
right = self.lowestCommonAncestor(root, p, q)
if left and right:
return root
node = None
if (root.val == p.val or root.val == q.val):
node = root
if (node and left) or (node and right):
return root
if left:
return left
if right:
return right
return node
def lowestCommonAncestor2(self, root, p, q):
if not root:
return None
if root.val > p.val and root.val > q.val:
return self.lowestCommonAncestor2(root.left, p, q)
elif root.val < p.val and root.val < q.val:
return self.lowestCommonAncestor2(root.right, p, q)
return root
def lowestCommonAncestor3(self, root, p, q):
while root:
if p.val < root.val > q.val:
root = root.left
elif p.val > root.val < q.val:
root = root.right
else:
return root
def lowestCommonAncestor4(self, root, p, q):
if p.val < root.val > q.val:
return self.lowestCommonAncestor4(root.left, p, q)
elif p.val > root.val < q.val:
return self.lowestCommonAncestor4(root.right, p, q)
return root
def lowestCommonAncestor5(self, root, p, q):
a, b = sorted([p.val, q.val])
while not a <= root.val <= b:
root = (root.left, root.right)[a > root.val]
return root
def lowestCommonAncestor6(self, root, p, q):
next = p.val < root.val > q.val and root.left or \
p.val > root.val < q.val and root.right
return self.lowestCommonAncestor6(next, p, q) if next else root
def lowestCommonAncestor7(self, root, p, q):
return root if (root.val - p.val) * (root.val - q.val) < 1 \
else self.lowestCommonAncestor7((root.left, root.right)[p.val > root.val], p, q)
|
# -*- coding: utf-8 -*-
class ResourceManager:
OP_ID_DETECT = 0
OP_ID_COMMS = 1
OP_ID_TRAIN = 2
OP_ID_EVAL = 3
def __init__(self):
return
def operation(self, op_id):
# determine whether to run an operation based on
# system workload and priority
# not yet implemented
# always return True for now, running all operations
status = True
return status
def swap_b(self):
return
|
class HistoryRecord(object,IDisposable):
""" HistoryRecord(command: Command,version: int) """
def Dispose(self):
"""
Dispose(self: HistoryRecord)
Actively reclaims unmanaged resources that this instance uses.
"""
pass
def SetBool(self,id,value):
""" SetBool(self: HistoryRecord,id: int,value: bool) -> bool """
pass
def SetBools(self,id,values):
""" SetBools(self: HistoryRecord,id: int,values: IEnumerable[bool]) -> bool """
pass
def SetBrep(self,id,value):
""" SetBrep(self: HistoryRecord,id: int,value: Brep) -> bool """
pass
def SetColor(self,id,value):
""" SetColor(self: HistoryRecord,id: int,value: Color) -> bool """
pass
def SetColors(self,id,values):
""" SetColors(self: HistoryRecord,id: int,values: IEnumerable[Color]) -> bool """
pass
def SetCurve(self,id,value):
""" SetCurve(self: HistoryRecord,id: int,value: Curve) -> bool """
pass
def SetDouble(self,id,value):
""" SetDouble(self: HistoryRecord,id: int,value: float) -> bool """
pass
def SetDoubles(self,id,values):
""" SetDoubles(self: HistoryRecord,id: int,values: IEnumerable[float]) -> bool """
pass
def SetGuid(self,id,value):
""" SetGuid(self: HistoryRecord,id: int,value: Guid) -> bool """
pass
def SetGuids(self,id,values):
""" SetGuids(self: HistoryRecord,id: int,values: IEnumerable[Guid]) -> bool """
pass
def SetInt(self,id,value):
""" SetInt(self: HistoryRecord,id: int,value: int) -> bool """
pass
def SetInts(self,id,values):
""" SetInts(self: HistoryRecord,id: int,values: IEnumerable[int]) -> bool """
pass
def SetMesh(self,id,value):
""" SetMesh(self: HistoryRecord,id: int,value: Mesh) -> bool """
pass
def SetObjRef(self,id,value):
""" SetObjRef(self: HistoryRecord,id: int,value: ObjRef) -> bool """
pass
def SetPoint3d(self,id,value):
""" SetPoint3d(self: HistoryRecord,id: int,value: Point3d) -> bool """
pass
def SetPoint3dOnObject(self,id,objref,value):
""" SetPoint3dOnObject(self: HistoryRecord,id: int,objref: ObjRef,value: Point3d) -> bool """
pass
def SetPoint3ds(self,id,values):
""" SetPoint3ds(self: HistoryRecord,id: int,values: IEnumerable[Point3d]) -> bool """
pass
def SetString(self,id,value):
""" SetString(self: HistoryRecord,id: int,value: str) -> bool """
pass
def SetStrings(self,id,values):
""" SetStrings(self: HistoryRecord,id: int,values: IEnumerable[str]) -> bool """
pass
def SetSurface(self,id,value):
""" SetSurface(self: HistoryRecord,id: int,value: Surface) -> bool """
pass
def SetTransorm(self,id,value):
""" SetTransorm(self: HistoryRecord,id: int,value: Transform) -> bool """
pass
def SetVector3d(self,id,value):
""" SetVector3d(self: HistoryRecord,id: int,value: Vector3d) -> bool """
pass
def SetVector3ds(self,id,values):
""" SetVector3ds(self: HistoryRecord,id: int,values: IEnumerable[Vector3d]) -> bool """
pass
def __enter__(self,*args):
"""
__enter__(self: IDisposable) -> object
Provides the implementation of __enter__ for objects which implement IDisposable.
"""
pass
def __exit__(self,*args):
"""
__exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object)
Provides the implementation of __exit__ for objects which implement IDisposable.
"""
pass
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
@staticmethod
def __new__(self,command,version):
""" __new__(cls: type,command: Command,version: int) """
pass
def __repr__(self,*args):
""" __repr__(self: object) -> str """
pass
Handle=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Wrapped native C++ pointer to CRhinoHistory instance
Get: Handle(self: HistoryRecord) -> IntPtr
"""
|
def display1(flight_number, seating_capacity):
print("Flight Number:", flight_number)
print("Seating Capacity:", seating_capacity)
print("code-1: positional arguments")
display1("AI789", 200)
# Uncomment and execute the below function call statement and observe the output
# display1(300,"BA123")
def display2(flight_number, seating_capacity):
print("Flight Number:", flight_number)
print("Seating Capacity:", seating_capacity)
print("-------------------------------------------------")
print("code-2: keyword arguments")
display2(seating_capacity=250, flight_number="AI789")
def display3(flight_number, flight_make="Boeing", seating_capacity=150):
print("Flight Number:", flight_number)
print("Flight Make:", flight_make)
print("Seating Capacity:", seating_capacity)
print("-------------------------------------------------")
print("code-3: default arguments")
display3("AI789", "Eagle")
# Uncomment and execute the below function call statements one by one and observe the output
# display3("BA234")
# display3("SI678","Qantas",200)
def display4(passenger_name, *baggage_tuple):
print("Passenger name:", passenger_name)
total_wt = 0
for baggage_wt in baggage_tuple:
total_wt += baggage_wt
print("Total baggage weight in kg:", total_wt)
print("-------------------------------------------------")
print("code-4: variable argument count")
display4("Jack", 12, 8, 5)
# Uncomment and execute the below function call statements one by one and observe the output
# display4("Chan",20,12)
# display4("Henry",23)
|
swaps_222 = {
"B": (0, 14, 16, 3, 4, 2, 6, 1, 8, 9, 10, 11, 12, 13, 24, 15, 23, 19, 17, 20, 18, 21, 22, 5, 7),
"B'": (0, 7, 5, 3, 4, 23, 6, 24, 8, 9, 10, 11, 12, 13, 1, 15, 2, 18, 20, 17, 19, 21, 22, 16, 14),
"B2": (0, 24, 23, 3, 4, 16, 6, 14, 8, 9, 10, 11, 12, 13, 7, 15, 5, 20, 19, 18, 17, 21, 22, 2, 1),
"D": (0, 1, 2, 3, 4, 5, 6, 19, 20, 9, 10, 7, 8, 13, 14, 11, 12, 17, 18, 15, 16, 23, 21, 24, 22),
"D'": (0, 1, 2, 3, 4, 5, 6, 11, 12, 9, 10, 15, 16, 13, 14, 19, 20, 17, 18, 7, 8, 22, 24, 21, 23),
"D2": (0, 1, 2, 3, 4, 5, 6, 15, 16, 9, 10, 19, 20, 13, 14, 7, 8, 17, 18, 11, 12, 24, 23, 22, 21),
"F": (0, 1, 2, 8, 6, 5, 21, 7, 22, 11, 9, 12, 10, 3, 14, 4, 16, 17, 18, 19, 20, 15, 13, 23, 24),
"F'": (0, 1, 2, 13, 15, 5, 4, 7, 3, 10, 12, 9, 11, 22, 14, 21, 16, 17, 18, 19, 20, 6, 8, 23, 24),
"F2": (0, 1, 2, 22, 21, 5, 15, 7, 13, 12, 11, 10, 9, 8, 14, 6, 16, 17, 18, 19, 20, 4, 3, 23, 24),
"L": (0, 20, 2, 18, 4, 7, 5, 8, 6, 1, 10, 3, 12, 13, 14, 15, 16, 17, 23, 19, 21, 9, 22, 11, 24),
"L'": (0, 9, 2, 11, 4, 6, 8, 5, 7, 21, 10, 23, 12, 13, 14, 15, 16, 17, 3, 19, 1, 20, 22, 18, 24),
"L2": (0, 21, 2, 23, 4, 8, 7, 6, 5, 20, 10, 18, 12, 13, 14, 15, 16, 17, 11, 19, 9, 1, 22, 3, 24),
"R": (0, 1, 10, 3, 12, 5, 6, 7, 8, 9, 22, 11, 24, 15, 13, 16, 14, 4, 18, 2, 20, 21, 19, 23, 17),
"R'": (0, 1, 19, 3, 17, 5, 6, 7, 8, 9, 2, 11, 4, 14, 16, 13, 15, 24, 18, 22, 20, 21, 10, 23, 12),
"R2": (0, 1, 22, 3, 24, 5, 6, 7, 8, 9, 19, 11, 17, 16, 15, 14, 13, 12, 18, 10, 20, 21, 2, 23, 4),
"U": (0, 3, 1, 4, 2, 9, 10, 7, 8, 13, 14, 11, 12, 17, 18, 15, 16, 5, 6, 19, 20, 21, 22, 23, 24),
"U'": (0, 2, 4, 1, 3, 17, 18, 7, 8, 5, 6, 11, 12, 9, 10, 15, 16, 13, 14, 19, 20, 21, 22, 23, 24),
"U2": (0, 4, 3, 2, 1, 13, 14, 7, 8, 17, 18, 11, 12, 5, 6, 15, 16, 9, 10, 19, 20, 21, 22, 23, 24),
"x": (0, 9, 10, 11, 12, 6, 8, 5, 7, 21, 22, 23, 24, 15, 13, 16, 14, 4, 3, 2, 1, 20, 19, 18, 17),
"x'": (0, 20, 19, 18, 17, 7, 5, 8, 6, 1, 2, 3, 4, 14, 16, 13, 15, 24, 23, 22, 21, 9, 10, 11, 12),
"x2": (0, 21, 22, 23, 24, 8, 7, 6, 5, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 1, 2, 3, 4),
"y": (0, 3, 1, 4, 2, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 6, 7, 8, 22, 24, 21, 23),
"y'": (0, 2, 4, 1, 3, 17, 18, 19, 20, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 23, 21, 24, 22),
"y2": (0, 4, 3, 2, 1, 13, 14, 15, 16, 17, 18, 19, 20, 5, 6, 7, 8, 9, 10, 11, 12, 24, 23, 22, 21),
"z": (0, 7, 5, 8, 6, 23, 21, 24, 22, 11, 9, 12, 10, 3, 1, 4, 2, 18, 20, 17, 19, 15, 13, 16, 14),
"z'": (0, 14, 16, 13, 15, 2, 4, 1, 3, 10, 12, 9, 11, 22, 24, 21, 23, 19, 17, 20, 18, 6, 8, 5, 7),
"z2": (0, 24, 23, 22, 21, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 20, 19, 18, 17, 4, 3, 2, 1),
}
swaps_333 = {
"B": (
0,
30,
33,
36,
4,
5,
6,
7,
8,
9,
3,
11,
12,
2,
14,
15,
1,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
54,
31,
32,
53,
34,
35,
52,
43,
40,
37,
44,
41,
38,
45,
42,
39,
46,
47,
48,
49,
50,
51,
10,
13,
16,
),
"B'": (
0,
16,
13,
10,
4,
5,
6,
7,
8,
9,
52,
11,
12,
53,
14,
15,
54,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
1,
31,
32,
2,
34,
35,
3,
39,
42,
45,
38,
41,
44,
37,
40,
43,
46,
47,
48,
49,
50,
51,
36,
33,
30,
),
"B2": (
0,
54,
53,
52,
4,
5,
6,
7,
8,
9,
36,
11,
12,
33,
14,
15,
30,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
16,
31,
32,
13,
34,
35,
10,
45,
44,
43,
42,
41,
40,
39,
38,
37,
46,
47,
48,
49,
50,
51,
3,
2,
1,
),
"D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
43,
44,
45,
19,
20,
21,
22,
23,
24,
16,
17,
18,
28,
29,
30,
31,
32,
33,
25,
26,
27,
37,
38,
39,
40,
41,
42,
34,
35,
36,
52,
49,
46,
53,
50,
47,
54,
51,
48,
),
"D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
25,
26,
27,
19,
20,
21,
22,
23,
24,
34,
35,
36,
28,
29,
30,
31,
32,
33,
43,
44,
45,
37,
38,
39,
40,
41,
42,
16,
17,
18,
48,
51,
54,
47,
50,
53,
46,
49,
52,
),
"D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
34,
35,
36,
19,
20,
21,
22,
23,
24,
43,
44,
45,
28,
29,
30,
31,
32,
33,
16,
17,
18,
37,
38,
39,
40,
41,
42,
25,
26,
27,
54,
53,
52,
51,
50,
49,
48,
47,
46,
),
"F": (
0,
1,
2,
3,
4,
5,
6,
18,
15,
12,
10,
11,
46,
13,
14,
47,
16,
17,
48,
25,
22,
19,
26,
23,
20,
27,
24,
21,
7,
29,
30,
8,
32,
33,
9,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
34,
31,
28,
49,
50,
51,
52,
53,
54,
),
"F'": (
0,
1,
2,
3,
4,
5,
6,
28,
31,
34,
10,
11,
9,
13,
14,
8,
16,
17,
7,
21,
24,
27,
20,
23,
26,
19,
22,
25,
48,
29,
30,
47,
32,
33,
46,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
12,
15,
18,
49,
50,
51,
52,
53,
54,
),
"F2": (
0,
1,
2,
3,
4,
5,
6,
48,
47,
46,
10,
11,
34,
13,
14,
31,
16,
17,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
29,
30,
15,
32,
33,
12,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
9,
8,
7,
49,
50,
51,
52,
53,
54,
),
"L": (
0,
45,
2,
3,
42,
5,
6,
39,
8,
9,
16,
13,
10,
17,
14,
11,
18,
15,
12,
1,
20,
21,
4,
23,
24,
7,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
52,
40,
41,
49,
43,
44,
46,
19,
47,
48,
22,
50,
51,
25,
53,
54,
),
"L'": (
0,
19,
2,
3,
22,
5,
6,
25,
8,
9,
12,
15,
18,
11,
14,
17,
10,
13,
16,
46,
20,
21,
49,
23,
24,
52,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
7,
40,
41,
4,
43,
44,
1,
45,
47,
48,
42,
50,
51,
39,
53,
54,
),
"L2": (
0,
46,
2,
3,
49,
5,
6,
52,
8,
9,
18,
17,
16,
15,
14,
13,
12,
11,
10,
45,
20,
21,
42,
23,
24,
39,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
25,
40,
41,
22,
43,
44,
19,
1,
47,
48,
4,
50,
51,
7,
53,
54,
),
"R": (
0,
1,
2,
21,
4,
5,
24,
7,
8,
27,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
48,
22,
23,
51,
25,
26,
54,
34,
31,
28,
35,
32,
29,
36,
33,
30,
9,
38,
39,
6,
41,
42,
3,
44,
45,
46,
47,
43,
49,
50,
40,
52,
53,
37,
),
"R'": (
0,
1,
2,
43,
4,
5,
40,
7,
8,
37,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
3,
22,
23,
6,
25,
26,
9,
30,
33,
36,
29,
32,
35,
28,
31,
34,
54,
38,
39,
51,
41,
42,
48,
44,
45,
46,
47,
21,
49,
50,
24,
52,
53,
27,
),
"R2": (
0,
1,
2,
48,
4,
5,
51,
7,
8,
54,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
43,
22,
23,
40,
25,
26,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
38,
39,
24,
41,
42,
21,
44,
45,
46,
47,
3,
49,
50,
6,
52,
53,
9,
),
"U": (
0,
7,
4,
1,
8,
5,
2,
9,
6,
3,
19,
20,
21,
13,
14,
15,
16,
17,
18,
28,
29,
30,
22,
23,
24,
25,
26,
27,
37,
38,
39,
31,
32,
33,
34,
35,
36,
10,
11,
12,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
),
"U'": (
0,
3,
6,
9,
2,
5,
8,
1,
4,
7,
37,
38,
39,
13,
14,
15,
16,
17,
18,
10,
11,
12,
22,
23,
24,
25,
26,
27,
19,
20,
21,
31,
32,
33,
34,
35,
36,
28,
29,
30,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
),
"U2": (
0,
9,
8,
7,
6,
5,
4,
3,
2,
1,
28,
29,
30,
13,
14,
15,
16,
17,
18,
37,
38,
39,
22,
23,
24,
25,
26,
27,
10,
11,
12,
31,
32,
33,
34,
35,
36,
19,
20,
21,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
),
"x": (
0,
19,
20,
21,
22,
23,
24,
25,
26,
27,
12,
15,
18,
11,
14,
17,
10,
13,
16,
46,
47,
48,
49,
50,
51,
52,
53,
54,
34,
31,
28,
35,
32,
29,
36,
33,
30,
9,
8,
7,
6,
5,
4,
3,
2,
1,
45,
44,
43,
42,
41,
40,
39,
38,
37,
),
"x'": (
0,
45,
44,
43,
42,
41,
40,
39,
38,
37,
16,
13,
10,
17,
14,
11,
18,
15,
12,
1,
2,
3,
4,
5,
6,
7,
8,
9,
30,
33,
36,
29,
32,
35,
28,
31,
34,
54,
53,
52,
51,
50,
49,
48,
47,
46,
19,
20,
21,
22,
23,
24,
25,
26,
27,
),
"x2": (
0,
46,
47,
48,
49,
50,
51,
52,
53,
54,
18,
17,
16,
15,
14,
13,
12,
11,
10,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
1,
2,
3,
4,
5,
6,
7,
8,
9,
),
"y": (
0,
7,
4,
1,
8,
5,
2,
9,
6,
3,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
10,
11,
12,
13,
14,
15,
16,
17,
18,
48,
51,
54,
47,
50,
53,
46,
49,
52,
),
"y'": (
0,
3,
6,
9,
2,
5,
8,
1,
4,
7,
37,
38,
39,
40,
41,
42,
43,
44,
45,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
52,
49,
46,
53,
50,
47,
54,
51,
48,
),
"y2": (
0,
9,
8,
7,
6,
5,
4,
3,
2,
1,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
54,
53,
52,
51,
50,
49,
48,
47,
46,
),
"z": (
0,
16,
13,
10,
17,
14,
11,
18,
15,
12,
52,
49,
46,
53,
50,
47,
54,
51,
48,
25,
22,
19,
26,
23,
20,
27,
24,
21,
7,
4,
1,
8,
5,
2,
9,
6,
3,
39,
42,
45,
38,
41,
44,
37,
40,
43,
34,
31,
28,
35,
32,
29,
36,
33,
30,
),
"z'": (
0,
30,
33,
36,
29,
32,
35,
28,
31,
34,
3,
6,
9,
2,
5,
8,
1,
4,
7,
21,
24,
27,
20,
23,
26,
19,
22,
25,
48,
51,
54,
47,
50,
53,
46,
49,
52,
43,
40,
37,
44,
41,
38,
45,
42,
39,
12,
15,
18,
11,
14,
17,
10,
13,
16,
),
"z2": (
0,
54,
53,
52,
51,
50,
49,
48,
47,
46,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
45,
44,
43,
42,
41,
40,
39,
38,
37,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
}
swaps_444 = {
"2B": (
0,
1,
2,
3,
4,
51,
55,
59,
63,
9,
10,
11,
12,
13,
14,
15,
16,
17,
8,
19,
20,
21,
7,
23,
24,
25,
6,
27,
28,
29,
5,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
92,
52,
53,
54,
91,
56,
57,
58,
90,
60,
61,
62,
89,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
18,
22,
26,
30,
93,
94,
95,
96,
),
"2B'": (
0,
1,
2,
3,
4,
30,
26,
22,
18,
9,
10,
11,
12,
13,
14,
15,
16,
17,
89,
19,
20,
21,
90,
23,
24,
25,
91,
27,
28,
29,
92,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
5,
52,
53,
54,
6,
56,
57,
58,
7,
60,
61,
62,
8,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
63,
59,
55,
51,
93,
94,
95,
96,
),
"2B2": (
0,
1,
2,
3,
4,
92,
91,
90,
89,
9,
10,
11,
12,
13,
14,
15,
16,
17,
63,
19,
20,
21,
59,
23,
24,
25,
55,
27,
28,
29,
51,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
30,
52,
53,
54,
26,
56,
57,
58,
22,
60,
61,
62,
18,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
8,
7,
6,
5,
93,
94,
95,
96,
),
"2D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
73,
74,
75,
76,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
25,
26,
27,
28,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
41,
42,
43,
44,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
57,
58,
59,
60,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
41,
42,
43,
44,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
57,
58,
59,
60,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
73,
74,
75,
76,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
25,
26,
27,
28,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
57,
58,
59,
60,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
73,
74,
75,
76,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
25,
26,
27,
28,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
41,
42,
43,
44,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
31,
27,
23,
19,
13,
14,
15,
16,
17,
18,
85,
20,
21,
22,
86,
24,
25,
26,
87,
28,
29,
30,
88,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
9,
51,
52,
53,
10,
55,
56,
57,
11,
59,
60,
61,
12,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
62,
58,
54,
50,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
50,
54,
58,
62,
13,
14,
15,
16,
17,
18,
12,
20,
21,
22,
11,
24,
25,
26,
10,
28,
29,
30,
9,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
88,
51,
52,
53,
87,
55,
56,
57,
86,
59,
60,
61,
85,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
19,
23,
27,
31,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
88,
87,
86,
85,
13,
14,
15,
16,
17,
18,
62,
20,
21,
22,
58,
24,
25,
26,
54,
28,
29,
30,
50,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
31,
51,
52,
53,
27,
55,
56,
57,
23,
59,
60,
61,
19,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
12,
11,
10,
9,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2L": (
0,
1,
79,
3,
4,
5,
75,
7,
8,
9,
71,
11,
12,
13,
67,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
2,
35,
36,
37,
6,
39,
40,
41,
10,
43,
44,
45,
14,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
94,
68,
69,
70,
90,
72,
73,
74,
86,
76,
77,
78,
82,
80,
81,
34,
83,
84,
85,
38,
87,
88,
89,
42,
91,
92,
93,
46,
95,
96,
),
"2L'": (
0,
1,
34,
3,
4,
5,
38,
7,
8,
9,
42,
11,
12,
13,
46,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
82,
35,
36,
37,
86,
39,
40,
41,
90,
43,
44,
45,
94,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
14,
68,
69,
70,
10,
72,
73,
74,
6,
76,
77,
78,
2,
80,
81,
79,
83,
84,
85,
75,
87,
88,
89,
71,
91,
92,
93,
67,
95,
96,
),
"2L2": (
0,
1,
82,
3,
4,
5,
86,
7,
8,
9,
90,
11,
12,
13,
94,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
79,
35,
36,
37,
75,
39,
40,
41,
71,
43,
44,
45,
67,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
46,
68,
69,
70,
42,
72,
73,
74,
38,
76,
77,
78,
34,
80,
81,
2,
83,
84,
85,
6,
87,
88,
89,
10,
91,
92,
93,
14,
95,
96,
),
"2R": (
0,
1,
2,
35,
4,
5,
6,
39,
8,
9,
10,
43,
12,
13,
14,
47,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
83,
36,
37,
38,
87,
40,
41,
42,
91,
44,
45,
46,
95,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
15,
67,
68,
69,
11,
71,
72,
73,
7,
75,
76,
77,
3,
79,
80,
81,
82,
78,
84,
85,
86,
74,
88,
89,
90,
70,
92,
93,
94,
66,
96,
),
"2R'": (
0,
1,
2,
78,
4,
5,
6,
74,
8,
9,
10,
70,
12,
13,
14,
66,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
3,
36,
37,
38,
7,
40,
41,
42,
11,
44,
45,
46,
15,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
95,
67,
68,
69,
91,
71,
72,
73,
87,
75,
76,
77,
83,
79,
80,
81,
82,
35,
84,
85,
86,
39,
88,
89,
90,
43,
92,
93,
94,
47,
96,
),
"2R2": (
0,
1,
2,
83,
4,
5,
6,
87,
8,
9,
10,
91,
12,
13,
14,
95,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
78,
36,
37,
38,
74,
40,
41,
42,
70,
44,
45,
46,
66,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
47,
67,
68,
69,
43,
71,
72,
73,
39,
75,
76,
77,
35,
79,
80,
81,
82,
3,
84,
85,
86,
7,
88,
89,
90,
11,
92,
93,
94,
15,
96,
),
"2U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
37,
38,
39,
40,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
53,
54,
55,
56,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
69,
70,
71,
72,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
21,
22,
23,
24,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
69,
70,
71,
72,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
21,
22,
23,
24,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
37,
38,
39,
40,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
53,
54,
55,
56,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"2U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
53,
54,
55,
56,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
69,
70,
71,
72,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
21,
22,
23,
24,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
37,
38,
39,
40,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"B": (
0,
52,
56,
60,
64,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
4,
18,
19,
20,
3,
22,
23,
24,
2,
26,
27,
28,
1,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
96,
53,
54,
55,
95,
57,
58,
59,
94,
61,
62,
63,
93,
77,
73,
69,
65,
78,
74,
70,
66,
79,
75,
71,
67,
80,
76,
72,
68,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
17,
21,
25,
29,
),
"B'": (
0,
29,
25,
21,
17,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
93,
18,
19,
20,
94,
22,
23,
24,
95,
26,
27,
28,
96,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
1,
53,
54,
55,
2,
57,
58,
59,
3,
61,
62,
63,
4,
68,
72,
76,
80,
67,
71,
75,
79,
66,
70,
74,
78,
65,
69,
73,
77,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
64,
60,
56,
52,
),
"B2": (
0,
96,
95,
94,
93,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
64,
18,
19,
20,
60,
22,
23,
24,
56,
26,
27,
28,
52,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
29,
53,
54,
55,
25,
57,
58,
59,
21,
61,
62,
63,
17,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
4,
3,
2,
1,
),
"Bw": (
0,
52,
56,
60,
64,
51,
55,
59,
63,
9,
10,
11,
12,
13,
14,
15,
16,
4,
8,
19,
20,
3,
7,
23,
24,
2,
6,
27,
28,
1,
5,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
92,
96,
53,
54,
91,
95,
57,
58,
90,
94,
61,
62,
89,
93,
77,
73,
69,
65,
78,
74,
70,
66,
79,
75,
71,
67,
80,
76,
72,
68,
81,
82,
83,
84,
85,
86,
87,
88,
18,
22,
26,
30,
17,
21,
25,
29,
),
"Bw'": (
0,
29,
25,
21,
17,
30,
26,
22,
18,
9,
10,
11,
12,
13,
14,
15,
16,
93,
89,
19,
20,
94,
90,
23,
24,
95,
91,
27,
28,
96,
92,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
5,
1,
53,
54,
6,
2,
57,
58,
7,
3,
61,
62,
8,
4,
68,
72,
76,
80,
67,
71,
75,
79,
66,
70,
74,
78,
65,
69,
73,
77,
81,
82,
83,
84,
85,
86,
87,
88,
63,
59,
55,
51,
64,
60,
56,
52,
),
"Bw2": (
0,
96,
95,
94,
93,
92,
91,
90,
89,
9,
10,
11,
12,
13,
14,
15,
16,
64,
63,
19,
20,
60,
59,
23,
24,
56,
55,
27,
28,
52,
51,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
30,
29,
53,
54,
26,
25,
57,
58,
22,
21,
61,
62,
18,
17,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
81,
82,
83,
84,
85,
86,
87,
88,
8,
7,
6,
5,
4,
3,
2,
1,
),
"D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
77,
78,
79,
80,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
29,
30,
31,
32,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
45,
46,
47,
48,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
61,
62,
63,
64,
93,
89,
85,
81,
94,
90,
86,
82,
95,
91,
87,
83,
96,
92,
88,
84,
),
"D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
45,
46,
47,
48,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
61,
62,
63,
64,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
77,
78,
79,
80,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
29,
30,
31,
32,
84,
88,
92,
96,
83,
87,
91,
95,
82,
86,
90,
94,
81,
85,
89,
93,
),
"D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
61,
62,
63,
64,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
77,
78,
79,
80,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
29,
30,
31,
32,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
45,
46,
47,
48,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
),
"Dw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
73,
74,
75,
76,
77,
78,
79,
80,
33,
34,
35,
36,
37,
38,
39,
40,
25,
26,
27,
28,
29,
30,
31,
32,
49,
50,
51,
52,
53,
54,
55,
56,
41,
42,
43,
44,
45,
46,
47,
48,
65,
66,
67,
68,
69,
70,
71,
72,
57,
58,
59,
60,
61,
62,
63,
64,
93,
89,
85,
81,
94,
90,
86,
82,
95,
91,
87,
83,
96,
92,
88,
84,
),
"Dw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
41,
42,
43,
44,
45,
46,
47,
48,
33,
34,
35,
36,
37,
38,
39,
40,
57,
58,
59,
60,
61,
62,
63,
64,
49,
50,
51,
52,
53,
54,
55,
56,
73,
74,
75,
76,
77,
78,
79,
80,
65,
66,
67,
68,
69,
70,
71,
72,
25,
26,
27,
28,
29,
30,
31,
32,
84,
88,
92,
96,
83,
87,
91,
95,
82,
86,
90,
94,
81,
85,
89,
93,
),
"Dw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
57,
58,
59,
60,
61,
62,
63,
64,
33,
34,
35,
36,
37,
38,
39,
40,
73,
74,
75,
76,
77,
78,
79,
80,
49,
50,
51,
52,
53,
54,
55,
56,
25,
26,
27,
28,
29,
30,
31,
32,
65,
66,
67,
68,
69,
70,
71,
72,
41,
42,
43,
44,
45,
46,
47,
48,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
),
"F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
32,
28,
24,
20,
17,
18,
19,
81,
21,
22,
23,
82,
25,
26,
27,
83,
29,
30,
31,
84,
45,
41,
37,
33,
46,
42,
38,
34,
47,
43,
39,
35,
48,
44,
40,
36,
13,
50,
51,
52,
14,
54,
55,
56,
15,
58,
59,
60,
16,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
61,
57,
53,
49,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
49,
53,
57,
61,
17,
18,
19,
16,
21,
22,
23,
15,
25,
26,
27,
14,
29,
30,
31,
13,
36,
40,
44,
48,
35,
39,
43,
47,
34,
38,
42,
46,
33,
37,
41,
45,
84,
50,
51,
52,
83,
54,
55,
56,
82,
58,
59,
60,
81,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
20,
24,
28,
32,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
84,
83,
82,
81,
17,
18,
19,
61,
21,
22,
23,
57,
25,
26,
27,
53,
29,
30,
31,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
50,
51,
52,
28,
54,
55,
56,
24,
58,
59,
60,
20,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
16,
15,
14,
13,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"Fw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
31,
27,
23,
19,
32,
28,
24,
20,
17,
18,
85,
81,
21,
22,
86,
82,
25,
26,
87,
83,
29,
30,
88,
84,
45,
41,
37,
33,
46,
42,
38,
34,
47,
43,
39,
35,
48,
44,
40,
36,
13,
9,
51,
52,
14,
10,
55,
56,
15,
11,
59,
60,
16,
12,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
61,
57,
53,
49,
62,
58,
54,
50,
89,
90,
91,
92,
93,
94,
95,
96,
),
"Fw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
50,
54,
58,
62,
49,
53,
57,
61,
17,
18,
12,
16,
21,
22,
11,
15,
25,
26,
10,
14,
29,
30,
9,
13,
36,
40,
44,
48,
35,
39,
43,
47,
34,
38,
42,
46,
33,
37,
41,
45,
84,
88,
51,
52,
83,
87,
55,
56,
82,
86,
59,
60,
81,
85,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
20,
24,
28,
32,
19,
23,
27,
31,
89,
90,
91,
92,
93,
94,
95,
96,
),
"Fw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
88,
87,
86,
85,
84,
83,
82,
81,
17,
18,
62,
61,
21,
22,
58,
57,
25,
26,
54,
53,
29,
30,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
51,
52,
28,
27,
55,
56,
24,
23,
59,
60,
20,
19,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
16,
15,
14,
13,
12,
11,
10,
9,
89,
90,
91,
92,
93,
94,
95,
96,
),
"L": (
0,
80,
2,
3,
4,
76,
6,
7,
8,
72,
10,
11,
12,
68,
14,
15,
16,
29,
25,
21,
17,
30,
26,
22,
18,
31,
27,
23,
19,
32,
28,
24,
20,
1,
34,
35,
36,
5,
38,
39,
40,
9,
42,
43,
44,
13,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
93,
69,
70,
71,
89,
73,
74,
75,
85,
77,
78,
79,
81,
33,
82,
83,
84,
37,
86,
87,
88,
41,
90,
91,
92,
45,
94,
95,
96,
),
"L'": (
0,
33,
2,
3,
4,
37,
6,
7,
8,
41,
10,
11,
12,
45,
14,
15,
16,
20,
24,
28,
32,
19,
23,
27,
31,
18,
22,
26,
30,
17,
21,
25,
29,
81,
34,
35,
36,
85,
38,
39,
40,
89,
42,
43,
44,
93,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
13,
69,
70,
71,
9,
73,
74,
75,
5,
77,
78,
79,
1,
80,
82,
83,
84,
76,
86,
87,
88,
72,
90,
91,
92,
68,
94,
95,
96,
),
"L2": (
0,
81,
2,
3,
4,
85,
6,
7,
8,
89,
10,
11,
12,
93,
14,
15,
16,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
80,
34,
35,
36,
76,
38,
39,
40,
72,
42,
43,
44,
68,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
45,
69,
70,
71,
41,
73,
74,
75,
37,
77,
78,
79,
33,
1,
82,
83,
84,
5,
86,
87,
88,
9,
90,
91,
92,
13,
94,
95,
96,
),
"Lw": (
0,
80,
79,
3,
4,
76,
75,
7,
8,
72,
71,
11,
12,
68,
67,
15,
16,
29,
25,
21,
17,
30,
26,
22,
18,
31,
27,
23,
19,
32,
28,
24,
20,
1,
2,
35,
36,
5,
6,
39,
40,
9,
10,
43,
44,
13,
14,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
94,
93,
69,
70,
90,
89,
73,
74,
86,
85,
77,
78,
82,
81,
33,
34,
83,
84,
37,
38,
87,
88,
41,
42,
91,
92,
45,
46,
95,
96,
),
"Lw'": (
0,
33,
34,
3,
4,
37,
38,
7,
8,
41,
42,
11,
12,
45,
46,
15,
16,
20,
24,
28,
32,
19,
23,
27,
31,
18,
22,
26,
30,
17,
21,
25,
29,
81,
82,
35,
36,
85,
86,
39,
40,
89,
90,
43,
44,
93,
94,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
14,
13,
69,
70,
10,
9,
73,
74,
6,
5,
77,
78,
2,
1,
80,
79,
83,
84,
76,
75,
87,
88,
72,
71,
91,
92,
68,
67,
95,
96,
),
"Lw2": (
0,
81,
82,
3,
4,
85,
86,
7,
8,
89,
90,
11,
12,
93,
94,
15,
16,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
80,
79,
35,
36,
76,
75,
39,
40,
72,
71,
43,
44,
68,
67,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
46,
45,
69,
70,
42,
41,
73,
74,
38,
37,
77,
78,
34,
33,
1,
2,
83,
84,
5,
6,
87,
88,
9,
10,
91,
92,
13,
14,
95,
96,
),
"R": (
0,
1,
2,
3,
36,
5,
6,
7,
40,
9,
10,
11,
44,
13,
14,
15,
48,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
84,
37,
38,
39,
88,
41,
42,
43,
92,
45,
46,
47,
96,
61,
57,
53,
49,
62,
58,
54,
50,
63,
59,
55,
51,
64,
60,
56,
52,
16,
66,
67,
68,
12,
70,
71,
72,
8,
74,
75,
76,
4,
78,
79,
80,
81,
82,
83,
77,
85,
86,
87,
73,
89,
90,
91,
69,
93,
94,
95,
65,
),
"R'": (
0,
1,
2,
3,
77,
5,
6,
7,
73,
9,
10,
11,
69,
13,
14,
15,
65,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
4,
37,
38,
39,
8,
41,
42,
43,
12,
45,
46,
47,
16,
52,
56,
60,
64,
51,
55,
59,
63,
50,
54,
58,
62,
49,
53,
57,
61,
96,
66,
67,
68,
92,
70,
71,
72,
88,
74,
75,
76,
84,
78,
79,
80,
81,
82,
83,
36,
85,
86,
87,
40,
89,
90,
91,
44,
93,
94,
95,
48,
),
"R2": (
0,
1,
2,
3,
84,
5,
6,
7,
88,
9,
10,
11,
92,
13,
14,
15,
96,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
77,
37,
38,
39,
73,
41,
42,
43,
69,
45,
46,
47,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
66,
67,
68,
44,
70,
71,
72,
40,
74,
75,
76,
36,
78,
79,
80,
81,
82,
83,
4,
85,
86,
87,
8,
89,
90,
91,
12,
93,
94,
95,
16,
),
"Rw": (
0,
1,
2,
35,
36,
5,
6,
39,
40,
9,
10,
43,
44,
13,
14,
47,
48,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
83,
84,
37,
38,
87,
88,
41,
42,
91,
92,
45,
46,
95,
96,
61,
57,
53,
49,
62,
58,
54,
50,
63,
59,
55,
51,
64,
60,
56,
52,
16,
15,
67,
68,
12,
11,
71,
72,
8,
7,
75,
76,
4,
3,
79,
80,
81,
82,
78,
77,
85,
86,
74,
73,
89,
90,
70,
69,
93,
94,
66,
65,
),
"Rw'": (
0,
1,
2,
78,
77,
5,
6,
74,
73,
9,
10,
70,
69,
13,
14,
66,
65,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
3,
4,
37,
38,
7,
8,
41,
42,
11,
12,
45,
46,
15,
16,
52,
56,
60,
64,
51,
55,
59,
63,
50,
54,
58,
62,
49,
53,
57,
61,
96,
95,
67,
68,
92,
91,
71,
72,
88,
87,
75,
76,
84,
83,
79,
80,
81,
82,
35,
36,
85,
86,
39,
40,
89,
90,
43,
44,
93,
94,
47,
48,
),
"Rw2": (
0,
1,
2,
83,
84,
5,
6,
87,
88,
9,
10,
91,
92,
13,
14,
95,
96,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
78,
77,
37,
38,
74,
73,
41,
42,
70,
69,
45,
46,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
67,
68,
44,
43,
71,
72,
40,
39,
75,
76,
36,
35,
79,
80,
81,
82,
3,
4,
85,
86,
7,
8,
89,
90,
11,
12,
93,
94,
15,
16,
),
"U": (
0,
13,
9,
5,
1,
14,
10,
6,
2,
15,
11,
7,
3,
16,
12,
8,
4,
33,
34,
35,
36,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
49,
50,
51,
52,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
65,
66,
67,
68,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
17,
18,
19,
20,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"U'": (
0,
4,
8,
12,
16,
3,
7,
11,
15,
2,
6,
10,
14,
1,
5,
9,
13,
65,
66,
67,
68,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
17,
18,
19,
20,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
33,
34,
35,
36,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
49,
50,
51,
52,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"U2": (
0,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
49,
50,
51,
52,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
65,
66,
67,
68,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
17,
18,
19,
20,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
33,
34,
35,
36,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"Uw": (
0,
13,
9,
5,
1,
14,
10,
6,
2,
15,
11,
7,
3,
16,
12,
8,
4,
33,
34,
35,
36,
37,
38,
39,
40,
25,
26,
27,
28,
29,
30,
31,
32,
49,
50,
51,
52,
53,
54,
55,
56,
41,
42,
43,
44,
45,
46,
47,
48,
65,
66,
67,
68,
69,
70,
71,
72,
57,
58,
59,
60,
61,
62,
63,
64,
17,
18,
19,
20,
21,
22,
23,
24,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"Uw'": (
0,
4,
8,
12,
16,
3,
7,
11,
15,
2,
6,
10,
14,
1,
5,
9,
13,
65,
66,
67,
68,
69,
70,
71,
72,
25,
26,
27,
28,
29,
30,
31,
32,
17,
18,
19,
20,
21,
22,
23,
24,
41,
42,
43,
44,
45,
46,
47,
48,
33,
34,
35,
36,
37,
38,
39,
40,
57,
58,
59,
60,
61,
62,
63,
64,
49,
50,
51,
52,
53,
54,
55,
56,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"Uw2": (
0,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
49,
50,
51,
52,
53,
54,
55,
56,
25,
26,
27,
28,
29,
30,
31,
32,
65,
66,
67,
68,
69,
70,
71,
72,
41,
42,
43,
44,
45,
46,
47,
48,
17,
18,
19,
20,
21,
22,
23,
24,
57,
58,
59,
60,
61,
62,
63,
64,
33,
34,
35,
36,
37,
38,
39,
40,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
),
"x": (
0,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
20,
24,
28,
32,
19,
23,
27,
31,
18,
22,
26,
30,
17,
21,
25,
29,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
61,
57,
53,
49,
62,
58,
54,
50,
63,
59,
55,
51,
64,
60,
56,
52,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
),
"x'": (
0,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
29,
25,
21,
17,
30,
26,
22,
18,
31,
27,
23,
19,
32,
28,
24,
20,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
52,
56,
60,
64,
51,
55,
59,
63,
50,
54,
58,
62,
49,
53,
57,
61,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
),
"x2": (
0,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
),
"y": (
0,
13,
9,
5,
1,
14,
10,
6,
2,
15,
11,
7,
3,
16,
12,
8,
4,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
84,
88,
92,
96,
83,
87,
91,
95,
82,
86,
90,
94,
81,
85,
89,
93,
),
"y'": (
0,
4,
8,
12,
16,
3,
7,
11,
15,
2,
6,
10,
14,
1,
5,
9,
13,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
93,
89,
85,
81,
94,
90,
86,
82,
95,
91,
87,
83,
96,
92,
88,
84,
),
"y2": (
0,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
),
"z": (
0,
29,
25,
21,
17,
30,
26,
22,
18,
31,
27,
23,
19,
32,
28,
24,
20,
93,
89,
85,
81,
94,
90,
86,
82,
95,
91,
87,
83,
96,
92,
88,
84,
45,
41,
37,
33,
46,
42,
38,
34,
47,
43,
39,
35,
48,
44,
40,
36,
13,
9,
5,
1,
14,
10,
6,
2,
15,
11,
7,
3,
16,
12,
8,
4,
68,
72,
76,
80,
67,
71,
75,
79,
66,
70,
74,
78,
65,
69,
73,
77,
61,
57,
53,
49,
62,
58,
54,
50,
63,
59,
55,
51,
64,
60,
56,
52,
),
"z'": (
0,
52,
56,
60,
64,
51,
55,
59,
63,
50,
54,
58,
62,
49,
53,
57,
61,
4,
8,
12,
16,
3,
7,
11,
15,
2,
6,
10,
14,
1,
5,
9,
13,
36,
40,
44,
48,
35,
39,
43,
47,
34,
38,
42,
46,
33,
37,
41,
45,
84,
88,
92,
96,
83,
87,
91,
95,
82,
86,
90,
94,
81,
85,
89,
93,
77,
73,
69,
65,
78,
74,
70,
66,
79,
75,
71,
67,
80,
76,
72,
68,
20,
24,
28,
32,
19,
23,
27,
31,
18,
22,
26,
30,
17,
21,
25,
29,
),
"z2": (
0,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
}
swaps_555 = {
"2B": (
0,
1,
2,
3,
4,
5,
79,
84,
89,
94,
99,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
10,
28,
29,
30,
31,
9,
33,
34,
35,
36,
8,
38,
39,
40,
41,
7,
43,
44,
45,
46,
6,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
145,
80,
81,
82,
83,
144,
85,
86,
87,
88,
143,
90,
91,
92,
93,
142,
95,
96,
97,
98,
141,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
27,
32,
37,
42,
47,
146,
147,
148,
149,
150,
),
"2B'": (
0,
1,
2,
3,
4,
5,
47,
42,
37,
32,
27,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
141,
28,
29,
30,
31,
142,
33,
34,
35,
36,
143,
38,
39,
40,
41,
144,
43,
44,
45,
46,
145,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
6,
80,
81,
82,
83,
7,
85,
86,
87,
88,
8,
90,
91,
92,
93,
9,
95,
96,
97,
98,
10,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
99,
94,
89,
84,
79,
146,
147,
148,
149,
150,
),
"2B2": (
0,
1,
2,
3,
4,
5,
145,
144,
143,
142,
141,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
99,
28,
29,
30,
31,
94,
33,
34,
35,
36,
89,
38,
39,
40,
41,
84,
43,
44,
45,
46,
79,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
47,
80,
81,
82,
83,
42,
85,
86,
87,
88,
37,
90,
91,
92,
93,
32,
95,
96,
97,
98,
27,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
10,
9,
8,
7,
6,
146,
147,
148,
149,
150,
),
"2D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
116,
117,
118,
119,
120,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
41,
42,
43,
44,
45,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
66,
67,
68,
69,
70,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
91,
92,
93,
94,
95,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
66,
67,
68,
69,
70,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
91,
92,
93,
94,
95,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
116,
117,
118,
119,
120,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
41,
42,
43,
44,
45,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
91,
92,
93,
94,
95,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
116,
117,
118,
119,
120,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
41,
42,
43,
44,
45,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
66,
67,
68,
69,
70,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
49,
44,
39,
34,
29,
21,
22,
23,
24,
25,
26,
27,
28,
131,
30,
31,
32,
33,
132,
35,
36,
37,
38,
133,
40,
41,
42,
43,
134,
45,
46,
47,
48,
135,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
16,
78,
79,
80,
81,
17,
83,
84,
85,
86,
18,
88,
89,
90,
91,
19,
93,
94,
95,
96,
20,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
97,
92,
87,
82,
77,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
77,
82,
87,
92,
97,
21,
22,
23,
24,
25,
26,
27,
28,
20,
30,
31,
32,
33,
19,
35,
36,
37,
38,
18,
40,
41,
42,
43,
17,
45,
46,
47,
48,
16,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
135,
78,
79,
80,
81,
134,
83,
84,
85,
86,
133,
88,
89,
90,
91,
132,
93,
94,
95,
96,
131,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
29,
34,
39,
44,
49,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
135,
134,
133,
132,
131,
21,
22,
23,
24,
25,
26,
27,
28,
97,
30,
31,
32,
33,
92,
35,
36,
37,
38,
87,
40,
41,
42,
43,
82,
45,
46,
47,
48,
77,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
49,
78,
79,
80,
81,
44,
83,
84,
85,
86,
39,
88,
89,
90,
91,
34,
93,
94,
95,
96,
29,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
20,
19,
18,
17,
16,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2L": (
0,
1,
124,
3,
4,
5,
6,
119,
8,
9,
10,
11,
114,
13,
14,
15,
16,
109,
18,
19,
20,
21,
104,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
2,
53,
54,
55,
56,
7,
58,
59,
60,
61,
12,
63,
64,
65,
66,
17,
68,
69,
70,
71,
22,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
147,
105,
106,
107,
108,
142,
110,
111,
112,
113,
137,
115,
116,
117,
118,
132,
120,
121,
122,
123,
127,
125,
126,
52,
128,
129,
130,
131,
57,
133,
134,
135,
136,
62,
138,
139,
140,
141,
67,
143,
144,
145,
146,
72,
148,
149,
150,
),
"2L'": (
0,
1,
52,
3,
4,
5,
6,
57,
8,
9,
10,
11,
62,
13,
14,
15,
16,
67,
18,
19,
20,
21,
72,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
127,
53,
54,
55,
56,
132,
58,
59,
60,
61,
137,
63,
64,
65,
66,
142,
68,
69,
70,
71,
147,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
22,
105,
106,
107,
108,
17,
110,
111,
112,
113,
12,
115,
116,
117,
118,
7,
120,
121,
122,
123,
2,
125,
126,
124,
128,
129,
130,
131,
119,
133,
134,
135,
136,
114,
138,
139,
140,
141,
109,
143,
144,
145,
146,
104,
148,
149,
150,
),
"2L2": (
0,
1,
127,
3,
4,
5,
6,
132,
8,
9,
10,
11,
137,
13,
14,
15,
16,
142,
18,
19,
20,
21,
147,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
124,
53,
54,
55,
56,
119,
58,
59,
60,
61,
114,
63,
64,
65,
66,
109,
68,
69,
70,
71,
104,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
72,
105,
106,
107,
108,
67,
110,
111,
112,
113,
62,
115,
116,
117,
118,
57,
120,
121,
122,
123,
52,
125,
126,
2,
128,
129,
130,
131,
7,
133,
134,
135,
136,
12,
138,
139,
140,
141,
17,
143,
144,
145,
146,
22,
148,
149,
150,
),
"2R": (
0,
1,
2,
3,
54,
5,
6,
7,
8,
59,
10,
11,
12,
13,
64,
15,
16,
17,
18,
69,
20,
21,
22,
23,
74,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
129,
55,
56,
57,
58,
134,
60,
61,
62,
63,
139,
65,
66,
67,
68,
144,
70,
71,
72,
73,
149,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
24,
103,
104,
105,
106,
19,
108,
109,
110,
111,
14,
113,
114,
115,
116,
9,
118,
119,
120,
121,
4,
123,
124,
125,
126,
127,
128,
122,
130,
131,
132,
133,
117,
135,
136,
137,
138,
112,
140,
141,
142,
143,
107,
145,
146,
147,
148,
102,
150,
),
"2R'": (
0,
1,
2,
3,
122,
5,
6,
7,
8,
117,
10,
11,
12,
13,
112,
15,
16,
17,
18,
107,
20,
21,
22,
23,
102,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
4,
55,
56,
57,
58,
9,
60,
61,
62,
63,
14,
65,
66,
67,
68,
19,
70,
71,
72,
73,
24,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
149,
103,
104,
105,
106,
144,
108,
109,
110,
111,
139,
113,
114,
115,
116,
134,
118,
119,
120,
121,
129,
123,
124,
125,
126,
127,
128,
54,
130,
131,
132,
133,
59,
135,
136,
137,
138,
64,
140,
141,
142,
143,
69,
145,
146,
147,
148,
74,
150,
),
"2R2": (
0,
1,
2,
3,
129,
5,
6,
7,
8,
134,
10,
11,
12,
13,
139,
15,
16,
17,
18,
144,
20,
21,
22,
23,
149,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
122,
55,
56,
57,
58,
117,
60,
61,
62,
63,
112,
65,
66,
67,
68,
107,
70,
71,
72,
73,
102,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
74,
103,
104,
105,
106,
69,
108,
109,
110,
111,
64,
113,
114,
115,
116,
59,
118,
119,
120,
121,
54,
123,
124,
125,
126,
127,
128,
4,
130,
131,
132,
133,
9,
135,
136,
137,
138,
14,
140,
141,
142,
143,
19,
145,
146,
147,
148,
24,
150,
),
"2U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
56,
57,
58,
59,
60,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
81,
82,
83,
84,
85,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
106,
107,
108,
109,
110,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
31,
32,
33,
34,
35,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
106,
107,
108,
109,
110,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
31,
32,
33,
34,
35,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
56,
57,
58,
59,
60,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
81,
82,
83,
84,
85,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"2U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
81,
82,
83,
84,
85,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
106,
107,
108,
109,
110,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
31,
32,
33,
34,
35,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
56,
57,
58,
59,
60,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"3F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
48,
43,
38,
33,
28,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
136,
29,
30,
31,
32,
137,
34,
35,
36,
37,
138,
39,
40,
41,
42,
139,
44,
45,
46,
47,
140,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
11,
79,
80,
81,
82,
12,
84,
85,
86,
87,
13,
89,
90,
91,
92,
14,
94,
95,
96,
97,
15,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
98,
93,
88,
83,
78,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"3F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
78,
83,
88,
93,
98,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
15,
29,
30,
31,
32,
14,
34,
35,
36,
37,
13,
39,
40,
41,
42,
12,
44,
45,
46,
47,
11,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
140,
79,
80,
81,
82,
139,
84,
85,
86,
87,
138,
89,
90,
91,
92,
137,
94,
95,
96,
97,
136,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
28,
33,
38,
43,
48,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"3F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
140,
139,
138,
137,
136,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
98,
29,
30,
31,
32,
93,
34,
35,
36,
37,
88,
39,
40,
41,
42,
83,
44,
45,
46,
47,
78,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
48,
79,
80,
81,
82,
43,
84,
85,
86,
87,
38,
89,
90,
91,
92,
33,
94,
95,
96,
97,
28,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
15,
14,
13,
12,
11,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"3L": (
0,
1,
2,
123,
4,
5,
6,
7,
118,
9,
10,
11,
12,
113,
14,
15,
16,
17,
108,
19,
20,
21,
22,
103,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
3,
54,
55,
56,
57,
8,
59,
60,
61,
62,
13,
64,
65,
66,
67,
18,
69,
70,
71,
72,
23,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
148,
104,
105,
106,
107,
143,
109,
110,
111,
112,
138,
114,
115,
116,
117,
133,
119,
120,
121,
122,
128,
124,
125,
126,
127,
53,
129,
130,
131,
132,
58,
134,
135,
136,
137,
63,
139,
140,
141,
142,
68,
144,
145,
146,
147,
73,
149,
150,
),
"3L'": (
0,
1,
2,
53,
4,
5,
6,
7,
58,
9,
10,
11,
12,
63,
14,
15,
16,
17,
68,
19,
20,
21,
22,
73,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
128,
54,
55,
56,
57,
133,
59,
60,
61,
62,
138,
64,
65,
66,
67,
143,
69,
70,
71,
72,
148,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
23,
104,
105,
106,
107,
18,
109,
110,
111,
112,
13,
114,
115,
116,
117,
8,
119,
120,
121,
122,
3,
124,
125,
126,
127,
123,
129,
130,
131,
132,
118,
134,
135,
136,
137,
113,
139,
140,
141,
142,
108,
144,
145,
146,
147,
103,
149,
150,
),
"3L2": (
0,
1,
2,
128,
4,
5,
6,
7,
133,
9,
10,
11,
12,
138,
14,
15,
16,
17,
143,
19,
20,
21,
22,
148,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
123,
54,
55,
56,
57,
118,
59,
60,
61,
62,
113,
64,
65,
66,
67,
108,
69,
70,
71,
72,
103,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
73,
104,
105,
106,
107,
68,
109,
110,
111,
112,
63,
114,
115,
116,
117,
58,
119,
120,
121,
122,
53,
124,
125,
126,
127,
3,
129,
130,
131,
132,
8,
134,
135,
136,
137,
13,
139,
140,
141,
142,
18,
144,
145,
146,
147,
23,
149,
150,
),
"3U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
61,
62,
63,
64,
65,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
86,
87,
88,
89,
90,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
111,
112,
113,
114,
115,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
36,
37,
38,
39,
40,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"3U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
111,
112,
113,
114,
115,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
36,
37,
38,
39,
40,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
61,
62,
63,
64,
65,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
86,
87,
88,
89,
90,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"3U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
86,
87,
88,
89,
90,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
111,
112,
113,
114,
115,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
36,
37,
38,
39,
40,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
61,
62,
63,
64,
65,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"B": (
0,
80,
85,
90,
95,
100,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
5,
27,
28,
29,
30,
4,
32,
33,
34,
35,
3,
37,
38,
39,
40,
2,
42,
43,
44,
45,
1,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
150,
81,
82,
83,
84,
149,
86,
87,
88,
89,
148,
91,
92,
93,
94,
147,
96,
97,
98,
99,
146,
121,
116,
111,
106,
101,
122,
117,
112,
107,
102,
123,
118,
113,
108,
103,
124,
119,
114,
109,
104,
125,
120,
115,
110,
105,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
26,
31,
36,
41,
46,
),
"B'": (
0,
46,
41,
36,
31,
26,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
146,
27,
28,
29,
30,
147,
32,
33,
34,
35,
148,
37,
38,
39,
40,
149,
42,
43,
44,
45,
150,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
1,
81,
82,
83,
84,
2,
86,
87,
88,
89,
3,
91,
92,
93,
94,
4,
96,
97,
98,
99,
5,
105,
110,
115,
120,
125,
104,
109,
114,
119,
124,
103,
108,
113,
118,
123,
102,
107,
112,
117,
122,
101,
106,
111,
116,
121,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
100,
95,
90,
85,
80,
),
"B2": (
0,
150,
149,
148,
147,
146,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
100,
27,
28,
29,
30,
95,
32,
33,
34,
35,
90,
37,
38,
39,
40,
85,
42,
43,
44,
45,
80,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
46,
81,
82,
83,
84,
41,
86,
87,
88,
89,
36,
91,
92,
93,
94,
31,
96,
97,
98,
99,
26,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
5,
4,
3,
2,
1,
),
"Bw": (
0,
80,
85,
90,
95,
100,
79,
84,
89,
94,
99,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
5,
10,
28,
29,
30,
4,
9,
33,
34,
35,
3,
8,
38,
39,
40,
2,
7,
43,
44,
45,
1,
6,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
145,
150,
81,
82,
83,
144,
149,
86,
87,
88,
143,
148,
91,
92,
93,
142,
147,
96,
97,
98,
141,
146,
121,
116,
111,
106,
101,
122,
117,
112,
107,
102,
123,
118,
113,
108,
103,
124,
119,
114,
109,
104,
125,
120,
115,
110,
105,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
27,
32,
37,
42,
47,
26,
31,
36,
41,
46,
),
"Bw'": (
0,
46,
41,
36,
31,
26,
47,
42,
37,
32,
27,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
146,
141,
28,
29,
30,
147,
142,
33,
34,
35,
148,
143,
38,
39,
40,
149,
144,
43,
44,
45,
150,
145,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
6,
1,
81,
82,
83,
7,
2,
86,
87,
88,
8,
3,
91,
92,
93,
9,
4,
96,
97,
98,
10,
5,
105,
110,
115,
120,
125,
104,
109,
114,
119,
124,
103,
108,
113,
118,
123,
102,
107,
112,
117,
122,
101,
106,
111,
116,
121,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
99,
94,
89,
84,
79,
100,
95,
90,
85,
80,
),
"Bw2": (
0,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
100,
99,
28,
29,
30,
95,
94,
33,
34,
35,
90,
89,
38,
39,
40,
85,
84,
43,
44,
45,
80,
79,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
47,
46,
81,
82,
83,
42,
41,
86,
87,
88,
37,
36,
91,
92,
93,
32,
31,
96,
97,
98,
27,
26,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
"D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
121,
122,
123,
124,
125,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
46,
47,
48,
49,
50,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
71,
72,
73,
74,
75,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
96,
97,
98,
99,
100,
146,
141,
136,
131,
126,
147,
142,
137,
132,
127,
148,
143,
138,
133,
128,
149,
144,
139,
134,
129,
150,
145,
140,
135,
130,
),
"D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
71,
72,
73,
74,
75,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
96,
97,
98,
99,
100,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
121,
122,
123,
124,
125,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
46,
47,
48,
49,
50,
130,
135,
140,
145,
150,
129,
134,
139,
144,
149,
128,
133,
138,
143,
148,
127,
132,
137,
142,
147,
126,
131,
136,
141,
146,
),
"D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
96,
97,
98,
99,
100,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
121,
122,
123,
124,
125,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
46,
47,
48,
49,
50,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
71,
72,
73,
74,
75,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
),
"Dw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
146,
141,
136,
131,
126,
147,
142,
137,
132,
127,
148,
143,
138,
133,
128,
149,
144,
139,
134,
129,
150,
145,
140,
135,
130,
),
"Dw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
130,
135,
140,
145,
150,
129,
134,
139,
144,
149,
128,
133,
138,
143,
148,
127,
132,
137,
142,
147,
126,
131,
136,
141,
146,
),
"Dw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
),
"F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
50,
45,
40,
35,
30,
26,
27,
28,
29,
126,
31,
32,
33,
34,
127,
36,
37,
38,
39,
128,
41,
42,
43,
44,
129,
46,
47,
48,
49,
130,
71,
66,
61,
56,
51,
72,
67,
62,
57,
52,
73,
68,
63,
58,
53,
74,
69,
64,
59,
54,
75,
70,
65,
60,
55,
21,
77,
78,
79,
80,
22,
82,
83,
84,
85,
23,
87,
88,
89,
90,
24,
92,
93,
94,
95,
25,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
96,
91,
86,
81,
76,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
76,
81,
86,
91,
96,
26,
27,
28,
29,
25,
31,
32,
33,
34,
24,
36,
37,
38,
39,
23,
41,
42,
43,
44,
22,
46,
47,
48,
49,
21,
55,
60,
65,
70,
75,
54,
59,
64,
69,
74,
53,
58,
63,
68,
73,
52,
57,
62,
67,
72,
51,
56,
61,
66,
71,
130,
77,
78,
79,
80,
129,
82,
83,
84,
85,
128,
87,
88,
89,
90,
127,
92,
93,
94,
95,
126,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
30,
35,
40,
45,
50,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
130,
129,
128,
127,
126,
26,
27,
28,
29,
96,
31,
32,
33,
34,
91,
36,
37,
38,
39,
86,
41,
42,
43,
44,
81,
46,
47,
48,
49,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
77,
78,
79,
80,
45,
82,
83,
84,
85,
40,
87,
88,
89,
90,
35,
92,
93,
94,
95,
30,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
25,
24,
23,
22,
21,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"Fw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
49,
44,
39,
34,
29,
50,
45,
40,
35,
30,
26,
27,
28,
131,
126,
31,
32,
33,
132,
127,
36,
37,
38,
133,
128,
41,
42,
43,
134,
129,
46,
47,
48,
135,
130,
71,
66,
61,
56,
51,
72,
67,
62,
57,
52,
73,
68,
63,
58,
53,
74,
69,
64,
59,
54,
75,
70,
65,
60,
55,
21,
16,
78,
79,
80,
22,
17,
83,
84,
85,
23,
18,
88,
89,
90,
24,
19,
93,
94,
95,
25,
20,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
96,
91,
86,
81,
76,
97,
92,
87,
82,
77,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"Fw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
77,
82,
87,
92,
97,
76,
81,
86,
91,
96,
26,
27,
28,
20,
25,
31,
32,
33,
19,
24,
36,
37,
38,
18,
23,
41,
42,
43,
17,
22,
46,
47,
48,
16,
21,
55,
60,
65,
70,
75,
54,
59,
64,
69,
74,
53,
58,
63,
68,
73,
52,
57,
62,
67,
72,
51,
56,
61,
66,
71,
130,
135,
78,
79,
80,
129,
134,
83,
84,
85,
128,
133,
88,
89,
90,
127,
132,
93,
94,
95,
126,
131,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
30,
35,
40,
45,
50,
29,
34,
39,
44,
49,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"Fw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
26,
27,
28,
97,
96,
31,
32,
33,
92,
91,
36,
37,
38,
87,
86,
41,
42,
43,
82,
81,
46,
47,
48,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
78,
79,
80,
45,
44,
83,
84,
85,
40,
39,
88,
89,
90,
35,
34,
93,
94,
95,
30,
29,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"L": (
0,
125,
2,
3,
4,
5,
120,
7,
8,
9,
10,
115,
12,
13,
14,
15,
110,
17,
18,
19,
20,
105,
22,
23,
24,
25,
46,
41,
36,
31,
26,
47,
42,
37,
32,
27,
48,
43,
38,
33,
28,
49,
44,
39,
34,
29,
50,
45,
40,
35,
30,
1,
52,
53,
54,
55,
6,
57,
58,
59,
60,
11,
62,
63,
64,
65,
16,
67,
68,
69,
70,
21,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
146,
106,
107,
108,
109,
141,
111,
112,
113,
114,
136,
116,
117,
118,
119,
131,
121,
122,
123,
124,
126,
51,
127,
128,
129,
130,
56,
132,
133,
134,
135,
61,
137,
138,
139,
140,
66,
142,
143,
144,
145,
71,
147,
148,
149,
150,
),
"L'": (
0,
51,
2,
3,
4,
5,
56,
7,
8,
9,
10,
61,
12,
13,
14,
15,
66,
17,
18,
19,
20,
71,
22,
23,
24,
25,
30,
35,
40,
45,
50,
29,
34,
39,
44,
49,
28,
33,
38,
43,
48,
27,
32,
37,
42,
47,
26,
31,
36,
41,
46,
126,
52,
53,
54,
55,
131,
57,
58,
59,
60,
136,
62,
63,
64,
65,
141,
67,
68,
69,
70,
146,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
21,
106,
107,
108,
109,
16,
111,
112,
113,
114,
11,
116,
117,
118,
119,
6,
121,
122,
123,
124,
1,
125,
127,
128,
129,
130,
120,
132,
133,
134,
135,
115,
137,
138,
139,
140,
110,
142,
143,
144,
145,
105,
147,
148,
149,
150,
),
"L2": (
0,
126,
2,
3,
4,
5,
131,
7,
8,
9,
10,
136,
12,
13,
14,
15,
141,
17,
18,
19,
20,
146,
22,
23,
24,
25,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
125,
52,
53,
54,
55,
120,
57,
58,
59,
60,
115,
62,
63,
64,
65,
110,
67,
68,
69,
70,
105,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
71,
106,
107,
108,
109,
66,
111,
112,
113,
114,
61,
116,
117,
118,
119,
56,
121,
122,
123,
124,
51,
1,
127,
128,
129,
130,
6,
132,
133,
134,
135,
11,
137,
138,
139,
140,
16,
142,
143,
144,
145,
21,
147,
148,
149,
150,
),
"Lw": (
0,
125,
124,
3,
4,
5,
120,
119,
8,
9,
10,
115,
114,
13,
14,
15,
110,
109,
18,
19,
20,
105,
104,
23,
24,
25,
46,
41,
36,
31,
26,
47,
42,
37,
32,
27,
48,
43,
38,
33,
28,
49,
44,
39,
34,
29,
50,
45,
40,
35,
30,
1,
2,
53,
54,
55,
6,
7,
58,
59,
60,
11,
12,
63,
64,
65,
16,
17,
68,
69,
70,
21,
22,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
147,
146,
106,
107,
108,
142,
141,
111,
112,
113,
137,
136,
116,
117,
118,
132,
131,
121,
122,
123,
127,
126,
51,
52,
128,
129,
130,
56,
57,
133,
134,
135,
61,
62,
138,
139,
140,
66,
67,
143,
144,
145,
71,
72,
148,
149,
150,
),
"Lw'": (
0,
51,
52,
3,
4,
5,
56,
57,
8,
9,
10,
61,
62,
13,
14,
15,
66,
67,
18,
19,
20,
71,
72,
23,
24,
25,
30,
35,
40,
45,
50,
29,
34,
39,
44,
49,
28,
33,
38,
43,
48,
27,
32,
37,
42,
47,
26,
31,
36,
41,
46,
126,
127,
53,
54,
55,
131,
132,
58,
59,
60,
136,
137,
63,
64,
65,
141,
142,
68,
69,
70,
146,
147,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
22,
21,
106,
107,
108,
17,
16,
111,
112,
113,
12,
11,
116,
117,
118,
7,
6,
121,
122,
123,
2,
1,
125,
124,
128,
129,
130,
120,
119,
133,
134,
135,
115,
114,
138,
139,
140,
110,
109,
143,
144,
145,
105,
104,
148,
149,
150,
),
"Lw2": (
0,
126,
127,
3,
4,
5,
131,
132,
8,
9,
10,
136,
137,
13,
14,
15,
141,
142,
18,
19,
20,
146,
147,
23,
24,
25,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
125,
124,
53,
54,
55,
120,
119,
58,
59,
60,
115,
114,
63,
64,
65,
110,
109,
68,
69,
70,
105,
104,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
72,
71,
106,
107,
108,
67,
66,
111,
112,
113,
62,
61,
116,
117,
118,
57,
56,
121,
122,
123,
52,
51,
1,
2,
128,
129,
130,
6,
7,
133,
134,
135,
11,
12,
138,
139,
140,
16,
17,
143,
144,
145,
21,
22,
148,
149,
150,
),
"R": (
0,
1,
2,
3,
4,
55,
6,
7,
8,
9,
60,
11,
12,
13,
14,
65,
16,
17,
18,
19,
70,
21,
22,
23,
24,
75,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
130,
56,
57,
58,
59,
135,
61,
62,
63,
64,
140,
66,
67,
68,
69,
145,
71,
72,
73,
74,
150,
96,
91,
86,
81,
76,
97,
92,
87,
82,
77,
98,
93,
88,
83,
78,
99,
94,
89,
84,
79,
100,
95,
90,
85,
80,
25,
102,
103,
104,
105,
20,
107,
108,
109,
110,
15,
112,
113,
114,
115,
10,
117,
118,
119,
120,
5,
122,
123,
124,
125,
126,
127,
128,
129,
121,
131,
132,
133,
134,
116,
136,
137,
138,
139,
111,
141,
142,
143,
144,
106,
146,
147,
148,
149,
101,
),
"R'": (
0,
1,
2,
3,
4,
121,
6,
7,
8,
9,
116,
11,
12,
13,
14,
111,
16,
17,
18,
19,
106,
21,
22,
23,
24,
101,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
5,
56,
57,
58,
59,
10,
61,
62,
63,
64,
15,
66,
67,
68,
69,
20,
71,
72,
73,
74,
25,
80,
85,
90,
95,
100,
79,
84,
89,
94,
99,
78,
83,
88,
93,
98,
77,
82,
87,
92,
97,
76,
81,
86,
91,
96,
150,
102,
103,
104,
105,
145,
107,
108,
109,
110,
140,
112,
113,
114,
115,
135,
117,
118,
119,
120,
130,
122,
123,
124,
125,
126,
127,
128,
129,
55,
131,
132,
133,
134,
60,
136,
137,
138,
139,
65,
141,
142,
143,
144,
70,
146,
147,
148,
149,
75,
),
"R2": (
0,
1,
2,
3,
4,
130,
6,
7,
8,
9,
135,
11,
12,
13,
14,
140,
16,
17,
18,
19,
145,
21,
22,
23,
24,
150,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
121,
56,
57,
58,
59,
116,
61,
62,
63,
64,
111,
66,
67,
68,
69,
106,
71,
72,
73,
74,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
102,
103,
104,
105,
70,
107,
108,
109,
110,
65,
112,
113,
114,
115,
60,
117,
118,
119,
120,
55,
122,
123,
124,
125,
126,
127,
128,
129,
5,
131,
132,
133,
134,
10,
136,
137,
138,
139,
15,
141,
142,
143,
144,
20,
146,
147,
148,
149,
25,
),
"Rw": (
0,
1,
2,
3,
54,
55,
6,
7,
8,
59,
60,
11,
12,
13,
64,
65,
16,
17,
18,
69,
70,
21,
22,
23,
74,
75,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
129,
130,
56,
57,
58,
134,
135,
61,
62,
63,
139,
140,
66,
67,
68,
144,
145,
71,
72,
73,
149,
150,
96,
91,
86,
81,
76,
97,
92,
87,
82,
77,
98,
93,
88,
83,
78,
99,
94,
89,
84,
79,
100,
95,
90,
85,
80,
25,
24,
103,
104,
105,
20,
19,
108,
109,
110,
15,
14,
113,
114,
115,
10,
9,
118,
119,
120,
5,
4,
123,
124,
125,
126,
127,
128,
122,
121,
131,
132,
133,
117,
116,
136,
137,
138,
112,
111,
141,
142,
143,
107,
106,
146,
147,
148,
102,
101,
),
"Rw'": (
0,
1,
2,
3,
122,
121,
6,
7,
8,
117,
116,
11,
12,
13,
112,
111,
16,
17,
18,
107,
106,
21,
22,
23,
102,
101,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
4,
5,
56,
57,
58,
9,
10,
61,
62,
63,
14,
15,
66,
67,
68,
19,
20,
71,
72,
73,
24,
25,
80,
85,
90,
95,
100,
79,
84,
89,
94,
99,
78,
83,
88,
93,
98,
77,
82,
87,
92,
97,
76,
81,
86,
91,
96,
150,
149,
103,
104,
105,
145,
144,
108,
109,
110,
140,
139,
113,
114,
115,
135,
134,
118,
119,
120,
130,
129,
123,
124,
125,
126,
127,
128,
54,
55,
131,
132,
133,
59,
60,
136,
137,
138,
64,
65,
141,
142,
143,
69,
70,
146,
147,
148,
74,
75,
),
"Rw2": (
0,
1,
2,
3,
129,
130,
6,
7,
8,
134,
135,
11,
12,
13,
139,
140,
16,
17,
18,
144,
145,
21,
22,
23,
149,
150,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
122,
121,
56,
57,
58,
117,
116,
61,
62,
63,
112,
111,
66,
67,
68,
107,
106,
71,
72,
73,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
103,
104,
105,
70,
69,
108,
109,
110,
65,
64,
113,
114,
115,
60,
59,
118,
119,
120,
55,
54,
123,
124,
125,
126,
127,
128,
4,
5,
131,
132,
133,
9,
10,
136,
137,
138,
14,
15,
141,
142,
143,
19,
20,
146,
147,
148,
24,
25,
),
"U": (
0,
21,
16,
11,
6,
1,
22,
17,
12,
7,
2,
23,
18,
13,
8,
3,
24,
19,
14,
9,
4,
25,
20,
15,
10,
5,
51,
52,
53,
54,
55,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
76,
77,
78,
79,
80,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
101,
102,
103,
104,
105,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
26,
27,
28,
29,
30,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"U'": (
0,
5,
10,
15,
20,
25,
4,
9,
14,
19,
24,
3,
8,
13,
18,
23,
2,
7,
12,
17,
22,
1,
6,
11,
16,
21,
101,
102,
103,
104,
105,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
26,
27,
28,
29,
30,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
51,
52,
53,
54,
55,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
76,
77,
78,
79,
80,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"U2": (
0,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
76,
77,
78,
79,
80,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
101,
102,
103,
104,
105,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
26,
27,
28,
29,
30,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
51,
52,
53,
54,
55,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"Uw": (
0,
21,
16,
11,
6,
1,
22,
17,
12,
7,
2,
23,
18,
13,
8,
3,
24,
19,
14,
9,
4,
25,
20,
15,
10,
5,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"Uw'": (
0,
5,
10,
15,
20,
25,
4,
9,
14,
19,
24,
3,
8,
13,
18,
23,
2,
7,
12,
17,
22,
1,
6,
11,
16,
21,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"Uw2": (
0,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
),
"x": (
0,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
30,
35,
40,
45,
50,
29,
34,
39,
44,
49,
28,
33,
38,
43,
48,
27,
32,
37,
42,
47,
26,
31,
36,
41,
46,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
96,
91,
86,
81,
76,
97,
92,
87,
82,
77,
98,
93,
88,
83,
78,
99,
94,
89,
84,
79,
100,
95,
90,
85,
80,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
),
"x'": (
0,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
46,
41,
36,
31,
26,
47,
42,
37,
32,
27,
48,
43,
38,
33,
28,
49,
44,
39,
34,
29,
50,
45,
40,
35,
30,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
80,
85,
90,
95,
100,
79,
84,
89,
94,
99,
78,
83,
88,
93,
98,
77,
82,
87,
92,
97,
76,
81,
86,
91,
96,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
),
"x2": (
0,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
),
"y": (
0,
21,
16,
11,
6,
1,
22,
17,
12,
7,
2,
23,
18,
13,
8,
3,
24,
19,
14,
9,
4,
25,
20,
15,
10,
5,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
130,
135,
140,
145,
150,
129,
134,
139,
144,
149,
128,
133,
138,
143,
148,
127,
132,
137,
142,
147,
126,
131,
136,
141,
146,
),
"y'": (
0,
5,
10,
15,
20,
25,
4,
9,
14,
19,
24,
3,
8,
13,
18,
23,
2,
7,
12,
17,
22,
1,
6,
11,
16,
21,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
146,
141,
136,
131,
126,
147,
142,
137,
132,
127,
148,
143,
138,
133,
128,
149,
144,
139,
134,
129,
150,
145,
140,
135,
130,
),
"y2": (
0,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
),
"z": (
0,
46,
41,
36,
31,
26,
47,
42,
37,
32,
27,
48,
43,
38,
33,
28,
49,
44,
39,
34,
29,
50,
45,
40,
35,
30,
146,
141,
136,
131,
126,
147,
142,
137,
132,
127,
148,
143,
138,
133,
128,
149,
144,
139,
134,
129,
150,
145,
140,
135,
130,
71,
66,
61,
56,
51,
72,
67,
62,
57,
52,
73,
68,
63,
58,
53,
74,
69,
64,
59,
54,
75,
70,
65,
60,
55,
21,
16,
11,
6,
1,
22,
17,
12,
7,
2,
23,
18,
13,
8,
3,
24,
19,
14,
9,
4,
25,
20,
15,
10,
5,
105,
110,
115,
120,
125,
104,
109,
114,
119,
124,
103,
108,
113,
118,
123,
102,
107,
112,
117,
122,
101,
106,
111,
116,
121,
96,
91,
86,
81,
76,
97,
92,
87,
82,
77,
98,
93,
88,
83,
78,
99,
94,
89,
84,
79,
100,
95,
90,
85,
80,
),
"z'": (
0,
80,
85,
90,
95,
100,
79,
84,
89,
94,
99,
78,
83,
88,
93,
98,
77,
82,
87,
92,
97,
76,
81,
86,
91,
96,
5,
10,
15,
20,
25,
4,
9,
14,
19,
24,
3,
8,
13,
18,
23,
2,
7,
12,
17,
22,
1,
6,
11,
16,
21,
55,
60,
65,
70,
75,
54,
59,
64,
69,
74,
53,
58,
63,
68,
73,
52,
57,
62,
67,
72,
51,
56,
61,
66,
71,
130,
135,
140,
145,
150,
129,
134,
139,
144,
149,
128,
133,
138,
143,
148,
127,
132,
137,
142,
147,
126,
131,
136,
141,
146,
121,
116,
111,
106,
101,
122,
117,
112,
107,
102,
123,
118,
113,
108,
103,
124,
119,
114,
109,
104,
125,
120,
115,
110,
105,
30,
35,
40,
45,
50,
29,
34,
39,
44,
49,
28,
33,
38,
43,
48,
27,
32,
37,
42,
47,
26,
31,
36,
41,
46,
),
"z2": (
0,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
}
swaps_666 = {
"2B": (
0,
1,
2,
3,
4,
5,
6,
113,
119,
125,
131,
137,
143,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
12,
39,
40,
41,
42,
43,
11,
45,
46,
47,
48,
49,
10,
51,
52,
53,
54,
55,
9,
57,
58,
59,
60,
61,
8,
63,
64,
65,
66,
67,
7,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
210,
114,
115,
116,
117,
118,
209,
120,
121,
122,
123,
124,
208,
126,
127,
128,
129,
130,
207,
132,
133,
134,
135,
136,
206,
138,
139,
140,
141,
142,
205,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
38,
44,
50,
56,
62,
68,
211,
212,
213,
214,
215,
216,
),
"2B'": (
0,
1,
2,
3,
4,
5,
6,
68,
62,
56,
50,
44,
38,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
205,
39,
40,
41,
42,
43,
206,
45,
46,
47,
48,
49,
207,
51,
52,
53,
54,
55,
208,
57,
58,
59,
60,
61,
209,
63,
64,
65,
66,
67,
210,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
7,
114,
115,
116,
117,
118,
8,
120,
121,
122,
123,
124,
9,
126,
127,
128,
129,
130,
10,
132,
133,
134,
135,
136,
11,
138,
139,
140,
141,
142,
12,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
143,
137,
131,
125,
119,
113,
211,
212,
213,
214,
215,
216,
),
"2B2": (
0,
1,
2,
3,
4,
5,
6,
210,
209,
208,
207,
206,
205,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
143,
39,
40,
41,
42,
43,
137,
45,
46,
47,
48,
49,
131,
51,
52,
53,
54,
55,
125,
57,
58,
59,
60,
61,
119,
63,
64,
65,
66,
67,
113,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
68,
114,
115,
116,
117,
118,
62,
120,
121,
122,
123,
124,
56,
126,
127,
128,
129,
130,
50,
132,
133,
134,
135,
136,
44,
138,
139,
140,
141,
142,
38,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
12,
11,
10,
9,
8,
7,
211,
212,
213,
214,
215,
216,
),
"2D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
169,
170,
171,
172,
173,
174,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
61,
62,
63,
64,
65,
66,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
97,
98,
99,
100,
101,
102,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
133,
134,
135,
136,
137,
138,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
97,
98,
99,
100,
101,
102,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
133,
134,
135,
136,
137,
138,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
169,
170,
171,
172,
173,
174,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
61,
62,
63,
64,
65,
66,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
133,
134,
135,
136,
137,
138,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
169,
170,
171,
172,
173,
174,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
61,
62,
63,
64,
65,
66,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
97,
98,
99,
100,
101,
102,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
71,
65,
59,
53,
47,
41,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
187,
42,
43,
44,
45,
46,
188,
48,
49,
50,
51,
52,
189,
54,
55,
56,
57,
58,
190,
60,
61,
62,
63,
64,
191,
66,
67,
68,
69,
70,
192,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
25,
111,
112,
113,
114,
115,
26,
117,
118,
119,
120,
121,
27,
123,
124,
125,
126,
127,
28,
129,
130,
131,
132,
133,
29,
135,
136,
137,
138,
139,
30,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
140,
134,
128,
122,
116,
110,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
110,
116,
122,
128,
134,
140,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
30,
42,
43,
44,
45,
46,
29,
48,
49,
50,
51,
52,
28,
54,
55,
56,
57,
58,
27,
60,
61,
62,
63,
64,
26,
66,
67,
68,
69,
70,
25,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
192,
111,
112,
113,
114,
115,
191,
117,
118,
119,
120,
121,
190,
123,
124,
125,
126,
127,
189,
129,
130,
131,
132,
133,
188,
135,
136,
137,
138,
139,
187,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
41,
47,
53,
59,
65,
71,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
192,
191,
190,
189,
188,
187,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
140,
42,
43,
44,
45,
46,
134,
48,
49,
50,
51,
52,
128,
54,
55,
56,
57,
58,
122,
60,
61,
62,
63,
64,
116,
66,
67,
68,
69,
70,
110,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
71,
111,
112,
113,
114,
115,
65,
117,
118,
119,
120,
121,
59,
123,
124,
125,
126,
127,
53,
129,
130,
131,
132,
133,
47,
135,
136,
137,
138,
139,
41,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
30,
29,
28,
27,
26,
25,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2L": (
0,
1,
179,
3,
4,
5,
6,
7,
173,
9,
10,
11,
12,
13,
167,
15,
16,
17,
18,
19,
161,
21,
22,
23,
24,
25,
155,
27,
28,
29,
30,
31,
149,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
2,
75,
76,
77,
78,
79,
8,
81,
82,
83,
84,
85,
14,
87,
88,
89,
90,
91,
20,
93,
94,
95,
96,
97,
26,
99,
100,
101,
102,
103,
32,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
212,
150,
151,
152,
153,
154,
206,
156,
157,
158,
159,
160,
200,
162,
163,
164,
165,
166,
194,
168,
169,
170,
171,
172,
188,
174,
175,
176,
177,
178,
182,
180,
181,
74,
183,
184,
185,
186,
187,
80,
189,
190,
191,
192,
193,
86,
195,
196,
197,
198,
199,
92,
201,
202,
203,
204,
205,
98,
207,
208,
209,
210,
211,
104,
213,
214,
215,
216,
),
"2L'": (
0,
1,
74,
3,
4,
5,
6,
7,
80,
9,
10,
11,
12,
13,
86,
15,
16,
17,
18,
19,
92,
21,
22,
23,
24,
25,
98,
27,
28,
29,
30,
31,
104,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
182,
75,
76,
77,
78,
79,
188,
81,
82,
83,
84,
85,
194,
87,
88,
89,
90,
91,
200,
93,
94,
95,
96,
97,
206,
99,
100,
101,
102,
103,
212,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
32,
150,
151,
152,
153,
154,
26,
156,
157,
158,
159,
160,
20,
162,
163,
164,
165,
166,
14,
168,
169,
170,
171,
172,
8,
174,
175,
176,
177,
178,
2,
180,
181,
179,
183,
184,
185,
186,
187,
173,
189,
190,
191,
192,
193,
167,
195,
196,
197,
198,
199,
161,
201,
202,
203,
204,
205,
155,
207,
208,
209,
210,
211,
149,
213,
214,
215,
216,
),
"2L2": (
0,
1,
182,
3,
4,
5,
6,
7,
188,
9,
10,
11,
12,
13,
194,
15,
16,
17,
18,
19,
200,
21,
22,
23,
24,
25,
206,
27,
28,
29,
30,
31,
212,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
179,
75,
76,
77,
78,
79,
173,
81,
82,
83,
84,
85,
167,
87,
88,
89,
90,
91,
161,
93,
94,
95,
96,
97,
155,
99,
100,
101,
102,
103,
149,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
104,
150,
151,
152,
153,
154,
98,
156,
157,
158,
159,
160,
92,
162,
163,
164,
165,
166,
86,
168,
169,
170,
171,
172,
80,
174,
175,
176,
177,
178,
74,
180,
181,
2,
183,
184,
185,
186,
187,
8,
189,
190,
191,
192,
193,
14,
195,
196,
197,
198,
199,
20,
201,
202,
203,
204,
205,
26,
207,
208,
209,
210,
211,
32,
213,
214,
215,
216,
),
"2R": (
0,
1,
2,
3,
4,
77,
6,
7,
8,
9,
10,
83,
12,
13,
14,
15,
16,
89,
18,
19,
20,
21,
22,
95,
24,
25,
26,
27,
28,
101,
30,
31,
32,
33,
34,
107,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
185,
78,
79,
80,
81,
82,
191,
84,
85,
86,
87,
88,
197,
90,
91,
92,
93,
94,
203,
96,
97,
98,
99,
100,
209,
102,
103,
104,
105,
106,
215,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
35,
147,
148,
149,
150,
151,
29,
153,
154,
155,
156,
157,
23,
159,
160,
161,
162,
163,
17,
165,
166,
167,
168,
169,
11,
171,
172,
173,
174,
175,
5,
177,
178,
179,
180,
181,
182,
183,
184,
176,
186,
187,
188,
189,
190,
170,
192,
193,
194,
195,
196,
164,
198,
199,
200,
201,
202,
158,
204,
205,
206,
207,
208,
152,
210,
211,
212,
213,
214,
146,
216,
),
"2R'": (
0,
1,
2,
3,
4,
176,
6,
7,
8,
9,
10,
170,
12,
13,
14,
15,
16,
164,
18,
19,
20,
21,
22,
158,
24,
25,
26,
27,
28,
152,
30,
31,
32,
33,
34,
146,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
5,
78,
79,
80,
81,
82,
11,
84,
85,
86,
87,
88,
17,
90,
91,
92,
93,
94,
23,
96,
97,
98,
99,
100,
29,
102,
103,
104,
105,
106,
35,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
215,
147,
148,
149,
150,
151,
209,
153,
154,
155,
156,
157,
203,
159,
160,
161,
162,
163,
197,
165,
166,
167,
168,
169,
191,
171,
172,
173,
174,
175,
185,
177,
178,
179,
180,
181,
182,
183,
184,
77,
186,
187,
188,
189,
190,
83,
192,
193,
194,
195,
196,
89,
198,
199,
200,
201,
202,
95,
204,
205,
206,
207,
208,
101,
210,
211,
212,
213,
214,
107,
216,
),
"2R2": (
0,
1,
2,
3,
4,
185,
6,
7,
8,
9,
10,
191,
12,
13,
14,
15,
16,
197,
18,
19,
20,
21,
22,
203,
24,
25,
26,
27,
28,
209,
30,
31,
32,
33,
34,
215,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
176,
78,
79,
80,
81,
82,
170,
84,
85,
86,
87,
88,
164,
90,
91,
92,
93,
94,
158,
96,
97,
98,
99,
100,
152,
102,
103,
104,
105,
106,
146,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
107,
147,
148,
149,
150,
151,
101,
153,
154,
155,
156,
157,
95,
159,
160,
161,
162,
163,
89,
165,
166,
167,
168,
169,
83,
171,
172,
173,
174,
175,
77,
177,
178,
179,
180,
181,
182,
183,
184,
5,
186,
187,
188,
189,
190,
11,
192,
193,
194,
195,
196,
17,
198,
199,
200,
201,
202,
23,
204,
205,
206,
207,
208,
29,
210,
211,
212,
213,
214,
35,
216,
),
"2U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
79,
80,
81,
82,
83,
84,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
115,
116,
117,
118,
119,
120,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
151,
152,
153,
154,
155,
156,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
43,
44,
45,
46,
47,
48,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
151,
152,
153,
154,
155,
156,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
43,
44,
45,
46,
47,
48,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
79,
80,
81,
82,
83,
84,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
115,
116,
117,
118,
119,
120,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"2U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
115,
116,
117,
118,
119,
120,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
151,
152,
153,
154,
155,
156,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
43,
44,
45,
46,
47,
48,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
79,
80,
81,
82,
83,
84,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3B": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
112,
118,
124,
130,
136,
142,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
18,
40,
41,
42,
43,
44,
17,
46,
47,
48,
49,
50,
16,
52,
53,
54,
55,
56,
15,
58,
59,
60,
61,
62,
14,
64,
65,
66,
67,
68,
13,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
204,
113,
114,
115,
116,
117,
203,
119,
120,
121,
122,
123,
202,
125,
126,
127,
128,
129,
201,
131,
132,
133,
134,
135,
200,
137,
138,
139,
140,
141,
199,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
39,
45,
51,
57,
63,
69,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3B'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
69,
63,
57,
51,
45,
39,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
199,
40,
41,
42,
43,
44,
200,
46,
47,
48,
49,
50,
201,
52,
53,
54,
55,
56,
202,
58,
59,
60,
61,
62,
203,
64,
65,
66,
67,
68,
204,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
13,
113,
114,
115,
116,
117,
14,
119,
120,
121,
122,
123,
15,
125,
126,
127,
128,
129,
16,
131,
132,
133,
134,
135,
17,
137,
138,
139,
140,
141,
18,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
142,
136,
130,
124,
118,
112,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3B2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
204,
203,
202,
201,
200,
199,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
142,
40,
41,
42,
43,
44,
136,
46,
47,
48,
49,
50,
130,
52,
53,
54,
55,
56,
124,
58,
59,
60,
61,
62,
118,
64,
65,
66,
67,
68,
112,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
69,
113,
114,
115,
116,
117,
63,
119,
120,
121,
122,
123,
57,
125,
126,
127,
128,
129,
51,
131,
132,
133,
134,
135,
45,
137,
138,
139,
140,
141,
39,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
18,
17,
16,
15,
14,
13,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Bw": (
0,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
112,
118,
124,
130,
136,
142,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
6,
12,
18,
40,
41,
42,
5,
11,
17,
46,
47,
48,
4,
10,
16,
52,
53,
54,
3,
9,
15,
58,
59,
60,
2,
8,
14,
64,
65,
66,
1,
7,
13,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
204,
210,
216,
115,
116,
117,
203,
209,
215,
121,
122,
123,
202,
208,
214,
127,
128,
129,
201,
207,
213,
133,
134,
135,
200,
206,
212,
139,
140,
141,
199,
205,
211,
175,
169,
163,
157,
151,
145,
176,
170,
164,
158,
152,
146,
177,
171,
165,
159,
153,
147,
178,
172,
166,
160,
154,
148,
179,
173,
167,
161,
155,
149,
180,
174,
168,
162,
156,
150,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
39,
45,
51,
57,
63,
69,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
),
"3Bw'": (
0,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
69,
63,
57,
51,
45,
39,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
211,
205,
199,
40,
41,
42,
212,
206,
200,
46,
47,
48,
213,
207,
201,
52,
53,
54,
214,
208,
202,
58,
59,
60,
215,
209,
203,
64,
65,
66,
216,
210,
204,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
13,
7,
1,
115,
116,
117,
14,
8,
2,
121,
122,
123,
15,
9,
3,
127,
128,
129,
16,
10,
4,
133,
134,
135,
17,
11,
5,
139,
140,
141,
18,
12,
6,
150,
156,
162,
168,
174,
180,
149,
155,
161,
167,
173,
179,
148,
154,
160,
166,
172,
178,
147,
153,
159,
165,
171,
177,
146,
152,
158,
164,
170,
176,
145,
151,
157,
163,
169,
175,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
142,
136,
130,
124,
118,
112,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
),
"3Bw2": (
0,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
144,
143,
142,
40,
41,
42,
138,
137,
136,
46,
47,
48,
132,
131,
130,
52,
53,
54,
126,
125,
124,
58,
59,
60,
120,
119,
118,
64,
65,
66,
114,
113,
112,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
69,
68,
67,
115,
116,
117,
63,
62,
61,
121,
122,
123,
57,
56,
55,
127,
128,
129,
51,
50,
49,
133,
134,
135,
45,
44,
43,
139,
140,
141,
39,
38,
37,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
"3D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
163,
164,
165,
166,
167,
168,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
55,
56,
57,
58,
59,
60,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
91,
92,
93,
94,
95,
96,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
127,
128,
129,
130,
131,
132,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
91,
92,
93,
94,
95,
96,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
127,
128,
129,
130,
131,
132,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
163,
164,
165,
166,
167,
168,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
55,
56,
57,
58,
59,
60,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
127,
128,
129,
130,
131,
132,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
163,
164,
165,
166,
167,
168,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
55,
56,
57,
58,
59,
60,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
91,
92,
93,
94,
95,
96,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Dw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
211,
205,
199,
193,
187,
181,
212,
206,
200,
194,
188,
182,
213,
207,
201,
195,
189,
183,
214,
208,
202,
196,
190,
184,
215,
209,
203,
197,
191,
185,
216,
210,
204,
198,
192,
186,
),
"3Dw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
186,
192,
198,
204,
210,
216,
185,
191,
197,
203,
209,
215,
184,
190,
196,
202,
208,
214,
183,
189,
195,
201,
207,
213,
182,
188,
194,
200,
206,
212,
181,
187,
193,
199,
205,
211,
),
"3Dw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
),
"3F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
70,
64,
58,
52,
46,
40,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
193,
41,
42,
43,
44,
45,
194,
47,
48,
49,
50,
51,
195,
53,
54,
55,
56,
57,
196,
59,
60,
61,
62,
63,
197,
65,
66,
67,
68,
69,
198,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
19,
112,
113,
114,
115,
116,
20,
118,
119,
120,
121,
122,
21,
124,
125,
126,
127,
128,
22,
130,
131,
132,
133,
134,
23,
136,
137,
138,
139,
140,
24,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
141,
135,
129,
123,
117,
111,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
111,
117,
123,
129,
135,
141,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
24,
41,
42,
43,
44,
45,
23,
47,
48,
49,
50,
51,
22,
53,
54,
55,
56,
57,
21,
59,
60,
61,
62,
63,
20,
65,
66,
67,
68,
69,
19,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
198,
112,
113,
114,
115,
116,
197,
118,
119,
120,
121,
122,
196,
124,
125,
126,
127,
128,
195,
130,
131,
132,
133,
134,
194,
136,
137,
138,
139,
140,
193,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
40,
46,
52,
58,
64,
70,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
198,
197,
196,
195,
194,
193,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
141,
41,
42,
43,
44,
45,
135,
47,
48,
49,
50,
51,
129,
53,
54,
55,
56,
57,
123,
59,
60,
61,
62,
63,
117,
65,
66,
67,
68,
69,
111,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
70,
112,
113,
114,
115,
116,
64,
118,
119,
120,
121,
122,
58,
124,
125,
126,
127,
128,
52,
130,
131,
132,
133,
134,
46,
136,
137,
138,
139,
140,
40,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
24,
23,
22,
21,
20,
19,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Fw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
70,
64,
58,
52,
46,
40,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
37,
38,
39,
193,
187,
181,
43,
44,
45,
194,
188,
182,
49,
50,
51,
195,
189,
183,
55,
56,
57,
196,
190,
184,
61,
62,
63,
197,
191,
185,
67,
68,
69,
198,
192,
186,
103,
97,
91,
85,
79,
73,
104,
98,
92,
86,
80,
74,
105,
99,
93,
87,
81,
75,
106,
100,
94,
88,
82,
76,
107,
101,
95,
89,
83,
77,
108,
102,
96,
90,
84,
78,
31,
25,
19,
112,
113,
114,
32,
26,
20,
118,
119,
120,
33,
27,
21,
124,
125,
126,
34,
28,
22,
130,
131,
132,
35,
29,
23,
136,
137,
138,
36,
30,
24,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
141,
135,
129,
123,
117,
111,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Fw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
111,
117,
123,
129,
135,
141,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
37,
38,
39,
24,
30,
36,
43,
44,
45,
23,
29,
35,
49,
50,
51,
22,
28,
34,
55,
56,
57,
21,
27,
33,
61,
62,
63,
20,
26,
32,
67,
68,
69,
19,
25,
31,
78,
84,
90,
96,
102,
108,
77,
83,
89,
95,
101,
107,
76,
82,
88,
94,
100,
106,
75,
81,
87,
93,
99,
105,
74,
80,
86,
92,
98,
104,
73,
79,
85,
91,
97,
103,
186,
192,
198,
112,
113,
114,
185,
191,
197,
118,
119,
120,
184,
190,
196,
124,
125,
126,
183,
189,
195,
130,
131,
132,
182,
188,
194,
136,
137,
138,
181,
187,
193,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
40,
46,
52,
58,
64,
70,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Fw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
37,
38,
39,
141,
140,
139,
43,
44,
45,
135,
134,
133,
49,
50,
51,
129,
128,
127,
55,
56,
57,
123,
122,
121,
61,
62,
63,
117,
116,
115,
67,
68,
69,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
112,
113,
114,
66,
65,
64,
118,
119,
120,
60,
59,
58,
124,
125,
126,
54,
53,
52,
130,
131,
132,
48,
47,
46,
136,
137,
138,
42,
41,
40,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3L": (
0,
1,
2,
178,
4,
5,
6,
7,
8,
172,
10,
11,
12,
13,
14,
166,
16,
17,
18,
19,
20,
160,
22,
23,
24,
25,
26,
154,
28,
29,
30,
31,
32,
148,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
3,
76,
77,
78,
79,
80,
9,
82,
83,
84,
85,
86,
15,
88,
89,
90,
91,
92,
21,
94,
95,
96,
97,
98,
27,
100,
101,
102,
103,
104,
33,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
213,
149,
150,
151,
152,
153,
207,
155,
156,
157,
158,
159,
201,
161,
162,
163,
164,
165,
195,
167,
168,
169,
170,
171,
189,
173,
174,
175,
176,
177,
183,
179,
180,
181,
182,
75,
184,
185,
186,
187,
188,
81,
190,
191,
192,
193,
194,
87,
196,
197,
198,
199,
200,
93,
202,
203,
204,
205,
206,
99,
208,
209,
210,
211,
212,
105,
214,
215,
216,
),
"3L'": (
0,
1,
2,
75,
4,
5,
6,
7,
8,
81,
10,
11,
12,
13,
14,
87,
16,
17,
18,
19,
20,
93,
22,
23,
24,
25,
26,
99,
28,
29,
30,
31,
32,
105,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
183,
76,
77,
78,
79,
80,
189,
82,
83,
84,
85,
86,
195,
88,
89,
90,
91,
92,
201,
94,
95,
96,
97,
98,
207,
100,
101,
102,
103,
104,
213,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
33,
149,
150,
151,
152,
153,
27,
155,
156,
157,
158,
159,
21,
161,
162,
163,
164,
165,
15,
167,
168,
169,
170,
171,
9,
173,
174,
175,
176,
177,
3,
179,
180,
181,
182,
178,
184,
185,
186,
187,
188,
172,
190,
191,
192,
193,
194,
166,
196,
197,
198,
199,
200,
160,
202,
203,
204,
205,
206,
154,
208,
209,
210,
211,
212,
148,
214,
215,
216,
),
"3L2": (
0,
1,
2,
183,
4,
5,
6,
7,
8,
189,
10,
11,
12,
13,
14,
195,
16,
17,
18,
19,
20,
201,
22,
23,
24,
25,
26,
207,
28,
29,
30,
31,
32,
213,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
178,
76,
77,
78,
79,
80,
172,
82,
83,
84,
85,
86,
166,
88,
89,
90,
91,
92,
160,
94,
95,
96,
97,
98,
154,
100,
101,
102,
103,
104,
148,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
105,
149,
150,
151,
152,
153,
99,
155,
156,
157,
158,
159,
93,
161,
162,
163,
164,
165,
87,
167,
168,
169,
170,
171,
81,
173,
174,
175,
176,
177,
75,
179,
180,
181,
182,
3,
184,
185,
186,
187,
188,
9,
190,
191,
192,
193,
194,
15,
196,
197,
198,
199,
200,
21,
202,
203,
204,
205,
206,
27,
208,
209,
210,
211,
212,
33,
214,
215,
216,
),
"3Lw": (
0,
180,
179,
178,
4,
5,
6,
174,
173,
172,
10,
11,
12,
168,
167,
166,
16,
17,
18,
162,
161,
160,
22,
23,
24,
156,
155,
154,
28,
29,
30,
150,
149,
148,
34,
35,
36,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
69,
63,
57,
51,
45,
39,
70,
64,
58,
52,
46,
40,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
1,
2,
3,
76,
77,
78,
7,
8,
9,
82,
83,
84,
13,
14,
15,
88,
89,
90,
19,
20,
21,
94,
95,
96,
25,
26,
27,
100,
101,
102,
31,
32,
33,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
213,
212,
211,
151,
152,
153,
207,
206,
205,
157,
158,
159,
201,
200,
199,
163,
164,
165,
195,
194,
193,
169,
170,
171,
189,
188,
187,
175,
176,
177,
183,
182,
181,
73,
74,
75,
184,
185,
186,
79,
80,
81,
190,
191,
192,
85,
86,
87,
196,
197,
198,
91,
92,
93,
202,
203,
204,
97,
98,
99,
208,
209,
210,
103,
104,
105,
214,
215,
216,
),
"3Lw'": (
0,
73,
74,
75,
4,
5,
6,
79,
80,
81,
10,
11,
12,
85,
86,
87,
16,
17,
18,
91,
92,
93,
22,
23,
24,
97,
98,
99,
28,
29,
30,
103,
104,
105,
34,
35,
36,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
40,
46,
52,
58,
64,
70,
39,
45,
51,
57,
63,
69,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
181,
182,
183,
76,
77,
78,
187,
188,
189,
82,
83,
84,
193,
194,
195,
88,
89,
90,
199,
200,
201,
94,
95,
96,
205,
206,
207,
100,
101,
102,
211,
212,
213,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
33,
32,
31,
151,
152,
153,
27,
26,
25,
157,
158,
159,
21,
20,
19,
163,
164,
165,
15,
14,
13,
169,
170,
171,
9,
8,
7,
175,
176,
177,
3,
2,
1,
180,
179,
178,
184,
185,
186,
174,
173,
172,
190,
191,
192,
168,
167,
166,
196,
197,
198,
162,
161,
160,
202,
203,
204,
156,
155,
154,
208,
209,
210,
150,
149,
148,
214,
215,
216,
),
"3Lw2": (
0,
181,
182,
183,
4,
5,
6,
187,
188,
189,
10,
11,
12,
193,
194,
195,
16,
17,
18,
199,
200,
201,
22,
23,
24,
205,
206,
207,
28,
29,
30,
211,
212,
213,
34,
35,
36,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
180,
179,
178,
76,
77,
78,
174,
173,
172,
82,
83,
84,
168,
167,
166,
88,
89,
90,
162,
161,
160,
94,
95,
96,
156,
155,
154,
100,
101,
102,
150,
149,
148,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
105,
104,
103,
151,
152,
153,
99,
98,
97,
157,
158,
159,
93,
92,
91,
163,
164,
165,
87,
86,
85,
169,
170,
171,
81,
80,
79,
175,
176,
177,
75,
74,
73,
1,
2,
3,
184,
185,
186,
7,
8,
9,
190,
191,
192,
13,
14,
15,
196,
197,
198,
19,
20,
21,
202,
203,
204,
25,
26,
27,
208,
209,
210,
31,
32,
33,
214,
215,
216,
),
"3R": (
0,
1,
2,
3,
76,
5,
6,
7,
8,
9,
82,
11,
12,
13,
14,
15,
88,
17,
18,
19,
20,
21,
94,
23,
24,
25,
26,
27,
100,
29,
30,
31,
32,
33,
106,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
184,
77,
78,
79,
80,
81,
190,
83,
84,
85,
86,
87,
196,
89,
90,
91,
92,
93,
202,
95,
96,
97,
98,
99,
208,
101,
102,
103,
104,
105,
214,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
34,
148,
149,
150,
151,
152,
28,
154,
155,
156,
157,
158,
22,
160,
161,
162,
163,
164,
16,
166,
167,
168,
169,
170,
10,
172,
173,
174,
175,
176,
4,
178,
179,
180,
181,
182,
183,
177,
185,
186,
187,
188,
189,
171,
191,
192,
193,
194,
195,
165,
197,
198,
199,
200,
201,
159,
203,
204,
205,
206,
207,
153,
209,
210,
211,
212,
213,
147,
215,
216,
),
"3R'": (
0,
1,
2,
3,
177,
5,
6,
7,
8,
9,
171,
11,
12,
13,
14,
15,
165,
17,
18,
19,
20,
21,
159,
23,
24,
25,
26,
27,
153,
29,
30,
31,
32,
33,
147,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
4,
77,
78,
79,
80,
81,
10,
83,
84,
85,
86,
87,
16,
89,
90,
91,
92,
93,
22,
95,
96,
97,
98,
99,
28,
101,
102,
103,
104,
105,
34,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
214,
148,
149,
150,
151,
152,
208,
154,
155,
156,
157,
158,
202,
160,
161,
162,
163,
164,
196,
166,
167,
168,
169,
170,
190,
172,
173,
174,
175,
176,
184,
178,
179,
180,
181,
182,
183,
76,
185,
186,
187,
188,
189,
82,
191,
192,
193,
194,
195,
88,
197,
198,
199,
200,
201,
94,
203,
204,
205,
206,
207,
100,
209,
210,
211,
212,
213,
106,
215,
216,
),
"3R2": (
0,
1,
2,
3,
184,
5,
6,
7,
8,
9,
190,
11,
12,
13,
14,
15,
196,
17,
18,
19,
20,
21,
202,
23,
24,
25,
26,
27,
208,
29,
30,
31,
32,
33,
214,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
177,
77,
78,
79,
80,
81,
171,
83,
84,
85,
86,
87,
165,
89,
90,
91,
92,
93,
159,
95,
96,
97,
98,
99,
153,
101,
102,
103,
104,
105,
147,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
106,
148,
149,
150,
151,
152,
100,
154,
155,
156,
157,
158,
94,
160,
161,
162,
163,
164,
88,
166,
167,
168,
169,
170,
82,
172,
173,
174,
175,
176,
76,
178,
179,
180,
181,
182,
183,
4,
185,
186,
187,
188,
189,
10,
191,
192,
193,
194,
195,
16,
197,
198,
199,
200,
201,
22,
203,
204,
205,
206,
207,
28,
209,
210,
211,
212,
213,
34,
215,
216,
),
"3Rw": (
0,
1,
2,
3,
76,
77,
78,
7,
8,
9,
82,
83,
84,
13,
14,
15,
88,
89,
90,
19,
20,
21,
94,
95,
96,
25,
26,
27,
100,
101,
102,
31,
32,
33,
106,
107,
108,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
184,
185,
186,
79,
80,
81,
190,
191,
192,
85,
86,
87,
196,
197,
198,
91,
92,
93,
202,
203,
204,
97,
98,
99,
208,
209,
210,
103,
104,
105,
214,
215,
216,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
141,
135,
129,
123,
117,
111,
142,
136,
130,
124,
118,
112,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
36,
35,
34,
148,
149,
150,
30,
29,
28,
154,
155,
156,
24,
23,
22,
160,
161,
162,
18,
17,
16,
166,
167,
168,
12,
11,
10,
172,
173,
174,
6,
5,
4,
178,
179,
180,
181,
182,
183,
177,
176,
175,
187,
188,
189,
171,
170,
169,
193,
194,
195,
165,
164,
163,
199,
200,
201,
159,
158,
157,
205,
206,
207,
153,
152,
151,
211,
212,
213,
147,
146,
145,
),
"3Rw'": (
0,
1,
2,
3,
177,
176,
175,
7,
8,
9,
171,
170,
169,
13,
14,
15,
165,
164,
163,
19,
20,
21,
159,
158,
157,
25,
26,
27,
153,
152,
151,
31,
32,
33,
147,
146,
145,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
4,
5,
6,
79,
80,
81,
10,
11,
12,
85,
86,
87,
16,
17,
18,
91,
92,
93,
22,
23,
24,
97,
98,
99,
28,
29,
30,
103,
104,
105,
34,
35,
36,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
112,
118,
124,
130,
136,
142,
111,
117,
123,
129,
135,
141,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
216,
215,
214,
148,
149,
150,
210,
209,
208,
154,
155,
156,
204,
203,
202,
160,
161,
162,
198,
197,
196,
166,
167,
168,
192,
191,
190,
172,
173,
174,
186,
185,
184,
178,
179,
180,
181,
182,
183,
76,
77,
78,
187,
188,
189,
82,
83,
84,
193,
194,
195,
88,
89,
90,
199,
200,
201,
94,
95,
96,
205,
206,
207,
100,
101,
102,
211,
212,
213,
106,
107,
108,
),
"3Rw2": (
0,
1,
2,
3,
184,
185,
186,
7,
8,
9,
190,
191,
192,
13,
14,
15,
196,
197,
198,
19,
20,
21,
202,
203,
204,
25,
26,
27,
208,
209,
210,
31,
32,
33,
214,
215,
216,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
177,
176,
175,
79,
80,
81,
171,
170,
169,
85,
86,
87,
165,
164,
163,
91,
92,
93,
159,
158,
157,
97,
98,
99,
153,
152,
151,
103,
104,
105,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
148,
149,
150,
102,
101,
100,
154,
155,
156,
96,
95,
94,
160,
161,
162,
90,
89,
88,
166,
167,
168,
84,
83,
82,
172,
173,
174,
78,
77,
76,
178,
179,
180,
181,
182,
183,
4,
5,
6,
187,
188,
189,
10,
11,
12,
193,
194,
195,
16,
17,
18,
199,
200,
201,
22,
23,
24,
205,
206,
207,
28,
29,
30,
211,
212,
213,
34,
35,
36,
),
"3U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
85,
86,
87,
88,
89,
90,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
121,
122,
123,
124,
125,
126,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
157,
158,
159,
160,
161,
162,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
49,
50,
51,
52,
53,
54,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
157,
158,
159,
160,
161,
162,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
49,
50,
51,
52,
53,
54,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
85,
86,
87,
88,
89,
90,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
121,
122,
123,
124,
125,
126,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
121,
122,
123,
124,
125,
126,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
157,
158,
159,
160,
161,
162,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
49,
50,
51,
52,
53,
54,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
85,
86,
87,
88,
89,
90,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Uw": (
0,
31,
25,
19,
13,
7,
1,
32,
26,
20,
14,
8,
2,
33,
27,
21,
15,
9,
3,
34,
28,
22,
16,
10,
4,
35,
29,
23,
17,
11,
5,
36,
30,
24,
18,
12,
6,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Uw'": (
0,
6,
12,
18,
24,
30,
36,
5,
11,
17,
23,
29,
35,
4,
10,
16,
22,
28,
34,
3,
9,
15,
21,
27,
33,
2,
8,
14,
20,
26,
32,
1,
7,
13,
19,
25,
31,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"3Uw2": (
0,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"B": (
0,
114,
120,
126,
132,
138,
144,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
6,
38,
39,
40,
41,
42,
5,
44,
45,
46,
47,
48,
4,
50,
51,
52,
53,
54,
3,
56,
57,
58,
59,
60,
2,
62,
63,
64,
65,
66,
1,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
216,
115,
116,
117,
118,
119,
215,
121,
122,
123,
124,
125,
214,
127,
128,
129,
130,
131,
213,
133,
134,
135,
136,
137,
212,
139,
140,
141,
142,
143,
211,
175,
169,
163,
157,
151,
145,
176,
170,
164,
158,
152,
146,
177,
171,
165,
159,
153,
147,
178,
172,
166,
160,
154,
148,
179,
173,
167,
161,
155,
149,
180,
174,
168,
162,
156,
150,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
37,
43,
49,
55,
61,
67,
),
"B'": (
0,
67,
61,
55,
49,
43,
37,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
211,
38,
39,
40,
41,
42,
212,
44,
45,
46,
47,
48,
213,
50,
51,
52,
53,
54,
214,
56,
57,
58,
59,
60,
215,
62,
63,
64,
65,
66,
216,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
1,
115,
116,
117,
118,
119,
2,
121,
122,
123,
124,
125,
3,
127,
128,
129,
130,
131,
4,
133,
134,
135,
136,
137,
5,
139,
140,
141,
142,
143,
6,
150,
156,
162,
168,
174,
180,
149,
155,
161,
167,
173,
179,
148,
154,
160,
166,
172,
178,
147,
153,
159,
165,
171,
177,
146,
152,
158,
164,
170,
176,
145,
151,
157,
163,
169,
175,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
144,
138,
132,
126,
120,
114,
),
"B2": (
0,
216,
215,
214,
213,
212,
211,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
144,
38,
39,
40,
41,
42,
138,
44,
45,
46,
47,
48,
132,
50,
51,
52,
53,
54,
126,
56,
57,
58,
59,
60,
120,
62,
63,
64,
65,
66,
114,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
67,
115,
116,
117,
118,
119,
61,
121,
122,
123,
124,
125,
55,
127,
128,
129,
130,
131,
49,
133,
134,
135,
136,
137,
43,
139,
140,
141,
142,
143,
37,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
6,
5,
4,
3,
2,
1,
),
"Bw": (
0,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
6,
12,
39,
40,
41,
42,
5,
11,
45,
46,
47,
48,
4,
10,
51,
52,
53,
54,
3,
9,
57,
58,
59,
60,
2,
8,
63,
64,
65,
66,
1,
7,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
210,
216,
115,
116,
117,
118,
209,
215,
121,
122,
123,
124,
208,
214,
127,
128,
129,
130,
207,
213,
133,
134,
135,
136,
206,
212,
139,
140,
141,
142,
205,
211,
175,
169,
163,
157,
151,
145,
176,
170,
164,
158,
152,
146,
177,
171,
165,
159,
153,
147,
178,
172,
166,
160,
154,
148,
179,
173,
167,
161,
155,
149,
180,
174,
168,
162,
156,
150,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
),
"Bw'": (
0,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
211,
205,
39,
40,
41,
42,
212,
206,
45,
46,
47,
48,
213,
207,
51,
52,
53,
54,
214,
208,
57,
58,
59,
60,
215,
209,
63,
64,
65,
66,
216,
210,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
7,
1,
115,
116,
117,
118,
8,
2,
121,
122,
123,
124,
9,
3,
127,
128,
129,
130,
10,
4,
133,
134,
135,
136,
11,
5,
139,
140,
141,
142,
12,
6,
150,
156,
162,
168,
174,
180,
149,
155,
161,
167,
173,
179,
148,
154,
160,
166,
172,
178,
147,
153,
159,
165,
171,
177,
146,
152,
158,
164,
170,
176,
145,
151,
157,
163,
169,
175,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
),
"Bw2": (
0,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
144,
143,
39,
40,
41,
42,
138,
137,
45,
46,
47,
48,
132,
131,
51,
52,
53,
54,
126,
125,
57,
58,
59,
60,
120,
119,
63,
64,
65,
66,
114,
113,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
68,
67,
115,
116,
117,
118,
62,
61,
121,
122,
123,
124,
56,
55,
127,
128,
129,
130,
50,
49,
133,
134,
135,
136,
44,
43,
139,
140,
141,
142,
38,
37,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
"D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
175,
176,
177,
178,
179,
180,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
67,
68,
69,
70,
71,
72,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
103,
104,
105,
106,
107,
108,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
139,
140,
141,
142,
143,
144,
211,
205,
199,
193,
187,
181,
212,
206,
200,
194,
188,
182,
213,
207,
201,
195,
189,
183,
214,
208,
202,
196,
190,
184,
215,
209,
203,
197,
191,
185,
216,
210,
204,
198,
192,
186,
),
"D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
103,
104,
105,
106,
107,
108,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
139,
140,
141,
142,
143,
144,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
175,
176,
177,
178,
179,
180,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
67,
68,
69,
70,
71,
72,
186,
192,
198,
204,
210,
216,
185,
191,
197,
203,
209,
215,
184,
190,
196,
202,
208,
214,
183,
189,
195,
201,
207,
213,
182,
188,
194,
200,
206,
212,
181,
187,
193,
199,
205,
211,
),
"D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
139,
140,
141,
142,
143,
144,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
175,
176,
177,
178,
179,
180,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
67,
68,
69,
70,
71,
72,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
103,
104,
105,
106,
107,
108,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
),
"Dw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
211,
205,
199,
193,
187,
181,
212,
206,
200,
194,
188,
182,
213,
207,
201,
195,
189,
183,
214,
208,
202,
196,
190,
184,
215,
209,
203,
197,
191,
185,
216,
210,
204,
198,
192,
186,
),
"Dw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
186,
192,
198,
204,
210,
216,
185,
191,
197,
203,
209,
215,
184,
190,
196,
202,
208,
214,
183,
189,
195,
201,
207,
213,
182,
188,
194,
200,
206,
212,
181,
187,
193,
199,
205,
211,
),
"Dw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
),
"F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
72,
66,
60,
54,
48,
42,
37,
38,
39,
40,
41,
181,
43,
44,
45,
46,
47,
182,
49,
50,
51,
52,
53,
183,
55,
56,
57,
58,
59,
184,
61,
62,
63,
64,
65,
185,
67,
68,
69,
70,
71,
186,
103,
97,
91,
85,
79,
73,
104,
98,
92,
86,
80,
74,
105,
99,
93,
87,
81,
75,
106,
100,
94,
88,
82,
76,
107,
101,
95,
89,
83,
77,
108,
102,
96,
90,
84,
78,
31,
110,
111,
112,
113,
114,
32,
116,
117,
118,
119,
120,
33,
122,
123,
124,
125,
126,
34,
128,
129,
130,
131,
132,
35,
134,
135,
136,
137,
138,
36,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
139,
133,
127,
121,
115,
109,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
109,
115,
121,
127,
133,
139,
37,
38,
39,
40,
41,
36,
43,
44,
45,
46,
47,
35,
49,
50,
51,
52,
53,
34,
55,
56,
57,
58,
59,
33,
61,
62,
63,
64,
65,
32,
67,
68,
69,
70,
71,
31,
78,
84,
90,
96,
102,
108,
77,
83,
89,
95,
101,
107,
76,
82,
88,
94,
100,
106,
75,
81,
87,
93,
99,
105,
74,
80,
86,
92,
98,
104,
73,
79,
85,
91,
97,
103,
186,
110,
111,
112,
113,
114,
185,
116,
117,
118,
119,
120,
184,
122,
123,
124,
125,
126,
183,
128,
129,
130,
131,
132,
182,
134,
135,
136,
137,
138,
181,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
42,
48,
54,
60,
66,
72,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
186,
185,
184,
183,
182,
181,
37,
38,
39,
40,
41,
139,
43,
44,
45,
46,
47,
133,
49,
50,
51,
52,
53,
127,
55,
56,
57,
58,
59,
121,
61,
62,
63,
64,
65,
115,
67,
68,
69,
70,
71,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
110,
111,
112,
113,
114,
66,
116,
117,
118,
119,
120,
60,
122,
123,
124,
125,
126,
54,
128,
129,
130,
131,
132,
48,
134,
135,
136,
137,
138,
42,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
36,
35,
34,
33,
32,
31,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"Fw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
37,
38,
39,
40,
187,
181,
43,
44,
45,
46,
188,
182,
49,
50,
51,
52,
189,
183,
55,
56,
57,
58,
190,
184,
61,
62,
63,
64,
191,
185,
67,
68,
69,
70,
192,
186,
103,
97,
91,
85,
79,
73,
104,
98,
92,
86,
80,
74,
105,
99,
93,
87,
81,
75,
106,
100,
94,
88,
82,
76,
107,
101,
95,
89,
83,
77,
108,
102,
96,
90,
84,
78,
31,
25,
111,
112,
113,
114,
32,
26,
117,
118,
119,
120,
33,
27,
123,
124,
125,
126,
34,
28,
129,
130,
131,
132,
35,
29,
135,
136,
137,
138,
36,
30,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"Fw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
37,
38,
39,
40,
30,
36,
43,
44,
45,
46,
29,
35,
49,
50,
51,
52,
28,
34,
55,
56,
57,
58,
27,
33,
61,
62,
63,
64,
26,
32,
67,
68,
69,
70,
25,
31,
78,
84,
90,
96,
102,
108,
77,
83,
89,
95,
101,
107,
76,
82,
88,
94,
100,
106,
75,
81,
87,
93,
99,
105,
74,
80,
86,
92,
98,
104,
73,
79,
85,
91,
97,
103,
186,
192,
111,
112,
113,
114,
185,
191,
117,
118,
119,
120,
184,
190,
123,
124,
125,
126,
183,
189,
129,
130,
131,
132,
182,
188,
135,
136,
137,
138,
181,
187,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"Fw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
37,
38,
39,
40,
140,
139,
43,
44,
45,
46,
134,
133,
49,
50,
51,
52,
128,
127,
55,
56,
57,
58,
122,
121,
61,
62,
63,
64,
116,
115,
67,
68,
69,
70,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
111,
112,
113,
114,
66,
65,
117,
118,
119,
120,
60,
59,
123,
124,
125,
126,
54,
53,
129,
130,
131,
132,
48,
47,
135,
136,
137,
138,
42,
41,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"L": (
0,
180,
2,
3,
4,
5,
6,
174,
8,
9,
10,
11,
12,
168,
14,
15,
16,
17,
18,
162,
20,
21,
22,
23,
24,
156,
26,
27,
28,
29,
30,
150,
32,
33,
34,
35,
36,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
69,
63,
57,
51,
45,
39,
70,
64,
58,
52,
46,
40,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
1,
74,
75,
76,
77,
78,
7,
80,
81,
82,
83,
84,
13,
86,
87,
88,
89,
90,
19,
92,
93,
94,
95,
96,
25,
98,
99,
100,
101,
102,
31,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
211,
151,
152,
153,
154,
155,
205,
157,
158,
159,
160,
161,
199,
163,
164,
165,
166,
167,
193,
169,
170,
171,
172,
173,
187,
175,
176,
177,
178,
179,
181,
73,
182,
183,
184,
185,
186,
79,
188,
189,
190,
191,
192,
85,
194,
195,
196,
197,
198,
91,
200,
201,
202,
203,
204,
97,
206,
207,
208,
209,
210,
103,
212,
213,
214,
215,
216,
),
"L'": (
0,
73,
2,
3,
4,
5,
6,
79,
8,
9,
10,
11,
12,
85,
14,
15,
16,
17,
18,
91,
20,
21,
22,
23,
24,
97,
26,
27,
28,
29,
30,
103,
32,
33,
34,
35,
36,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
40,
46,
52,
58,
64,
70,
39,
45,
51,
57,
63,
69,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
181,
74,
75,
76,
77,
78,
187,
80,
81,
82,
83,
84,
193,
86,
87,
88,
89,
90,
199,
92,
93,
94,
95,
96,
205,
98,
99,
100,
101,
102,
211,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
31,
151,
152,
153,
154,
155,
25,
157,
158,
159,
160,
161,
19,
163,
164,
165,
166,
167,
13,
169,
170,
171,
172,
173,
7,
175,
176,
177,
178,
179,
1,
180,
182,
183,
184,
185,
186,
174,
188,
189,
190,
191,
192,
168,
194,
195,
196,
197,
198,
162,
200,
201,
202,
203,
204,
156,
206,
207,
208,
209,
210,
150,
212,
213,
214,
215,
216,
),
"L2": (
0,
181,
2,
3,
4,
5,
6,
187,
8,
9,
10,
11,
12,
193,
14,
15,
16,
17,
18,
199,
20,
21,
22,
23,
24,
205,
26,
27,
28,
29,
30,
211,
32,
33,
34,
35,
36,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
180,
74,
75,
76,
77,
78,
174,
80,
81,
82,
83,
84,
168,
86,
87,
88,
89,
90,
162,
92,
93,
94,
95,
96,
156,
98,
99,
100,
101,
102,
150,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
103,
151,
152,
153,
154,
155,
97,
157,
158,
159,
160,
161,
91,
163,
164,
165,
166,
167,
85,
169,
170,
171,
172,
173,
79,
175,
176,
177,
178,
179,
73,
1,
182,
183,
184,
185,
186,
7,
188,
189,
190,
191,
192,
13,
194,
195,
196,
197,
198,
19,
200,
201,
202,
203,
204,
25,
206,
207,
208,
209,
210,
31,
212,
213,
214,
215,
216,
),
"Lw": (
0,
180,
179,
3,
4,
5,
6,
174,
173,
9,
10,
11,
12,
168,
167,
15,
16,
17,
18,
162,
161,
21,
22,
23,
24,
156,
155,
27,
28,
29,
30,
150,
149,
33,
34,
35,
36,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
69,
63,
57,
51,
45,
39,
70,
64,
58,
52,
46,
40,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
1,
2,
75,
76,
77,
78,
7,
8,
81,
82,
83,
84,
13,
14,
87,
88,
89,
90,
19,
20,
93,
94,
95,
96,
25,
26,
99,
100,
101,
102,
31,
32,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
212,
211,
151,
152,
153,
154,
206,
205,
157,
158,
159,
160,
200,
199,
163,
164,
165,
166,
194,
193,
169,
170,
171,
172,
188,
187,
175,
176,
177,
178,
182,
181,
73,
74,
183,
184,
185,
186,
79,
80,
189,
190,
191,
192,
85,
86,
195,
196,
197,
198,
91,
92,
201,
202,
203,
204,
97,
98,
207,
208,
209,
210,
103,
104,
213,
214,
215,
216,
),
"Lw'": (
0,
73,
74,
3,
4,
5,
6,
79,
80,
9,
10,
11,
12,
85,
86,
15,
16,
17,
18,
91,
92,
21,
22,
23,
24,
97,
98,
27,
28,
29,
30,
103,
104,
33,
34,
35,
36,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
40,
46,
52,
58,
64,
70,
39,
45,
51,
57,
63,
69,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
181,
182,
75,
76,
77,
78,
187,
188,
81,
82,
83,
84,
193,
194,
87,
88,
89,
90,
199,
200,
93,
94,
95,
96,
205,
206,
99,
100,
101,
102,
211,
212,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
32,
31,
151,
152,
153,
154,
26,
25,
157,
158,
159,
160,
20,
19,
163,
164,
165,
166,
14,
13,
169,
170,
171,
172,
8,
7,
175,
176,
177,
178,
2,
1,
180,
179,
183,
184,
185,
186,
174,
173,
189,
190,
191,
192,
168,
167,
195,
196,
197,
198,
162,
161,
201,
202,
203,
204,
156,
155,
207,
208,
209,
210,
150,
149,
213,
214,
215,
216,
),
"Lw2": (
0,
181,
182,
3,
4,
5,
6,
187,
188,
9,
10,
11,
12,
193,
194,
15,
16,
17,
18,
199,
200,
21,
22,
23,
24,
205,
206,
27,
28,
29,
30,
211,
212,
33,
34,
35,
36,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
180,
179,
75,
76,
77,
78,
174,
173,
81,
82,
83,
84,
168,
167,
87,
88,
89,
90,
162,
161,
93,
94,
95,
96,
156,
155,
99,
100,
101,
102,
150,
149,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
104,
103,
151,
152,
153,
154,
98,
97,
157,
158,
159,
160,
92,
91,
163,
164,
165,
166,
86,
85,
169,
170,
171,
172,
80,
79,
175,
176,
177,
178,
74,
73,
1,
2,
183,
184,
185,
186,
7,
8,
189,
190,
191,
192,
13,
14,
195,
196,
197,
198,
19,
20,
201,
202,
203,
204,
25,
26,
207,
208,
209,
210,
31,
32,
213,
214,
215,
216,
),
"R": (
0,
1,
2,
3,
4,
5,
78,
7,
8,
9,
10,
11,
84,
13,
14,
15,
16,
17,
90,
19,
20,
21,
22,
23,
96,
25,
26,
27,
28,
29,
102,
31,
32,
33,
34,
35,
108,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
186,
79,
80,
81,
82,
83,
192,
85,
86,
87,
88,
89,
198,
91,
92,
93,
94,
95,
204,
97,
98,
99,
100,
101,
210,
103,
104,
105,
106,
107,
216,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
141,
135,
129,
123,
117,
111,
142,
136,
130,
124,
118,
112,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
36,
146,
147,
148,
149,
150,
30,
152,
153,
154,
155,
156,
24,
158,
159,
160,
161,
162,
18,
164,
165,
166,
167,
168,
12,
170,
171,
172,
173,
174,
6,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
175,
187,
188,
189,
190,
191,
169,
193,
194,
195,
196,
197,
163,
199,
200,
201,
202,
203,
157,
205,
206,
207,
208,
209,
151,
211,
212,
213,
214,
215,
145,
),
"R'": (
0,
1,
2,
3,
4,
5,
175,
7,
8,
9,
10,
11,
169,
13,
14,
15,
16,
17,
163,
19,
20,
21,
22,
23,
157,
25,
26,
27,
28,
29,
151,
31,
32,
33,
34,
35,
145,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
6,
79,
80,
81,
82,
83,
12,
85,
86,
87,
88,
89,
18,
91,
92,
93,
94,
95,
24,
97,
98,
99,
100,
101,
30,
103,
104,
105,
106,
107,
36,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
112,
118,
124,
130,
136,
142,
111,
117,
123,
129,
135,
141,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
216,
146,
147,
148,
149,
150,
210,
152,
153,
154,
155,
156,
204,
158,
159,
160,
161,
162,
198,
164,
165,
166,
167,
168,
192,
170,
171,
172,
173,
174,
186,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
78,
187,
188,
189,
190,
191,
84,
193,
194,
195,
196,
197,
90,
199,
200,
201,
202,
203,
96,
205,
206,
207,
208,
209,
102,
211,
212,
213,
214,
215,
108,
),
"R2": (
0,
1,
2,
3,
4,
5,
186,
7,
8,
9,
10,
11,
192,
13,
14,
15,
16,
17,
198,
19,
20,
21,
22,
23,
204,
25,
26,
27,
28,
29,
210,
31,
32,
33,
34,
35,
216,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
175,
79,
80,
81,
82,
83,
169,
85,
86,
87,
88,
89,
163,
91,
92,
93,
94,
95,
157,
97,
98,
99,
100,
101,
151,
103,
104,
105,
106,
107,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
146,
147,
148,
149,
150,
102,
152,
153,
154,
155,
156,
96,
158,
159,
160,
161,
162,
90,
164,
165,
166,
167,
168,
84,
170,
171,
172,
173,
174,
78,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
6,
187,
188,
189,
190,
191,
12,
193,
194,
195,
196,
197,
18,
199,
200,
201,
202,
203,
24,
205,
206,
207,
208,
209,
30,
211,
212,
213,
214,
215,
36,
),
"Rw": (
0,
1,
2,
3,
4,
77,
78,
7,
8,
9,
10,
83,
84,
13,
14,
15,
16,
89,
90,
19,
20,
21,
22,
95,
96,
25,
26,
27,
28,
101,
102,
31,
32,
33,
34,
107,
108,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
185,
186,
79,
80,
81,
82,
191,
192,
85,
86,
87,
88,
197,
198,
91,
92,
93,
94,
203,
204,
97,
98,
99,
100,
209,
210,
103,
104,
105,
106,
215,
216,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
141,
135,
129,
123,
117,
111,
142,
136,
130,
124,
118,
112,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
36,
35,
147,
148,
149,
150,
30,
29,
153,
154,
155,
156,
24,
23,
159,
160,
161,
162,
18,
17,
165,
166,
167,
168,
12,
11,
171,
172,
173,
174,
6,
5,
177,
178,
179,
180,
181,
182,
183,
184,
176,
175,
187,
188,
189,
190,
170,
169,
193,
194,
195,
196,
164,
163,
199,
200,
201,
202,
158,
157,
205,
206,
207,
208,
152,
151,
211,
212,
213,
214,
146,
145,
),
"Rw'": (
0,
1,
2,
3,
4,
176,
175,
7,
8,
9,
10,
170,
169,
13,
14,
15,
16,
164,
163,
19,
20,
21,
22,
158,
157,
25,
26,
27,
28,
152,
151,
31,
32,
33,
34,
146,
145,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
5,
6,
79,
80,
81,
82,
11,
12,
85,
86,
87,
88,
17,
18,
91,
92,
93,
94,
23,
24,
97,
98,
99,
100,
29,
30,
103,
104,
105,
106,
35,
36,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
112,
118,
124,
130,
136,
142,
111,
117,
123,
129,
135,
141,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
216,
215,
147,
148,
149,
150,
210,
209,
153,
154,
155,
156,
204,
203,
159,
160,
161,
162,
198,
197,
165,
166,
167,
168,
192,
191,
171,
172,
173,
174,
186,
185,
177,
178,
179,
180,
181,
182,
183,
184,
77,
78,
187,
188,
189,
190,
83,
84,
193,
194,
195,
196,
89,
90,
199,
200,
201,
202,
95,
96,
205,
206,
207,
208,
101,
102,
211,
212,
213,
214,
107,
108,
),
"Rw2": (
0,
1,
2,
3,
4,
185,
186,
7,
8,
9,
10,
191,
192,
13,
14,
15,
16,
197,
198,
19,
20,
21,
22,
203,
204,
25,
26,
27,
28,
209,
210,
31,
32,
33,
34,
215,
216,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
176,
175,
79,
80,
81,
82,
170,
169,
85,
86,
87,
88,
164,
163,
91,
92,
93,
94,
158,
157,
97,
98,
99,
100,
152,
151,
103,
104,
105,
106,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
147,
148,
149,
150,
102,
101,
153,
154,
155,
156,
96,
95,
159,
160,
161,
162,
90,
89,
165,
166,
167,
168,
84,
83,
171,
172,
173,
174,
78,
77,
177,
178,
179,
180,
181,
182,
183,
184,
5,
6,
187,
188,
189,
190,
11,
12,
193,
194,
195,
196,
17,
18,
199,
200,
201,
202,
23,
24,
205,
206,
207,
208,
29,
30,
211,
212,
213,
214,
35,
36,
),
"U": (
0,
31,
25,
19,
13,
7,
1,
32,
26,
20,
14,
8,
2,
33,
27,
21,
15,
9,
3,
34,
28,
22,
16,
10,
4,
35,
29,
23,
17,
11,
5,
36,
30,
24,
18,
12,
6,
73,
74,
75,
76,
77,
78,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
109,
110,
111,
112,
113,
114,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
145,
146,
147,
148,
149,
150,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
37,
38,
39,
40,
41,
42,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"U'": (
0,
6,
12,
18,
24,
30,
36,
5,
11,
17,
23,
29,
35,
4,
10,
16,
22,
28,
34,
3,
9,
15,
21,
27,
33,
2,
8,
14,
20,
26,
32,
1,
7,
13,
19,
25,
31,
145,
146,
147,
148,
149,
150,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
37,
38,
39,
40,
41,
42,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
73,
74,
75,
76,
77,
78,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
109,
110,
111,
112,
113,
114,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"U2": (
0,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
109,
110,
111,
112,
113,
114,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
145,
146,
147,
148,
149,
150,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
37,
38,
39,
40,
41,
42,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
73,
74,
75,
76,
77,
78,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"Uw": (
0,
31,
25,
19,
13,
7,
1,
32,
26,
20,
14,
8,
2,
33,
27,
21,
15,
9,
3,
34,
28,
22,
16,
10,
4,
35,
29,
23,
17,
11,
5,
36,
30,
24,
18,
12,
6,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"Uw'": (
0,
6,
12,
18,
24,
30,
36,
5,
11,
17,
23,
29,
35,
4,
10,
16,
22,
28,
34,
3,
9,
15,
21,
27,
33,
2,
8,
14,
20,
26,
32,
1,
7,
13,
19,
25,
31,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"Uw2": (
0,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
),
"x": (
0,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
40,
46,
52,
58,
64,
70,
39,
45,
51,
57,
63,
69,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
141,
135,
129,
123,
117,
111,
142,
136,
130,
124,
118,
112,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
),
"x'": (
0,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
69,
63,
57,
51,
45,
39,
70,
64,
58,
52,
46,
40,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
112,
118,
124,
130,
136,
142,
111,
117,
123,
129,
135,
141,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
),
"x2": (
0,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
),
"y": (
0,
31,
25,
19,
13,
7,
1,
32,
26,
20,
14,
8,
2,
33,
27,
21,
15,
9,
3,
34,
28,
22,
16,
10,
4,
35,
29,
23,
17,
11,
5,
36,
30,
24,
18,
12,
6,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
186,
192,
198,
204,
210,
216,
185,
191,
197,
203,
209,
215,
184,
190,
196,
202,
208,
214,
183,
189,
195,
201,
207,
213,
182,
188,
194,
200,
206,
212,
181,
187,
193,
199,
205,
211,
),
"y'": (
0,
6,
12,
18,
24,
30,
36,
5,
11,
17,
23,
29,
35,
4,
10,
16,
22,
28,
34,
3,
9,
15,
21,
27,
33,
2,
8,
14,
20,
26,
32,
1,
7,
13,
19,
25,
31,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
211,
205,
199,
193,
187,
181,
212,
206,
200,
194,
188,
182,
213,
207,
201,
195,
189,
183,
214,
208,
202,
196,
190,
184,
215,
209,
203,
197,
191,
185,
216,
210,
204,
198,
192,
186,
),
"y2": (
0,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
),
"z": (
0,
67,
61,
55,
49,
43,
37,
68,
62,
56,
50,
44,
38,
69,
63,
57,
51,
45,
39,
70,
64,
58,
52,
46,
40,
71,
65,
59,
53,
47,
41,
72,
66,
60,
54,
48,
42,
211,
205,
199,
193,
187,
181,
212,
206,
200,
194,
188,
182,
213,
207,
201,
195,
189,
183,
214,
208,
202,
196,
190,
184,
215,
209,
203,
197,
191,
185,
216,
210,
204,
198,
192,
186,
103,
97,
91,
85,
79,
73,
104,
98,
92,
86,
80,
74,
105,
99,
93,
87,
81,
75,
106,
100,
94,
88,
82,
76,
107,
101,
95,
89,
83,
77,
108,
102,
96,
90,
84,
78,
31,
25,
19,
13,
7,
1,
32,
26,
20,
14,
8,
2,
33,
27,
21,
15,
9,
3,
34,
28,
22,
16,
10,
4,
35,
29,
23,
17,
11,
5,
36,
30,
24,
18,
12,
6,
150,
156,
162,
168,
174,
180,
149,
155,
161,
167,
173,
179,
148,
154,
160,
166,
172,
178,
147,
153,
159,
165,
171,
177,
146,
152,
158,
164,
170,
176,
145,
151,
157,
163,
169,
175,
139,
133,
127,
121,
115,
109,
140,
134,
128,
122,
116,
110,
141,
135,
129,
123,
117,
111,
142,
136,
130,
124,
118,
112,
143,
137,
131,
125,
119,
113,
144,
138,
132,
126,
120,
114,
),
"z'": (
0,
114,
120,
126,
132,
138,
144,
113,
119,
125,
131,
137,
143,
112,
118,
124,
130,
136,
142,
111,
117,
123,
129,
135,
141,
110,
116,
122,
128,
134,
140,
109,
115,
121,
127,
133,
139,
6,
12,
18,
24,
30,
36,
5,
11,
17,
23,
29,
35,
4,
10,
16,
22,
28,
34,
3,
9,
15,
21,
27,
33,
2,
8,
14,
20,
26,
32,
1,
7,
13,
19,
25,
31,
78,
84,
90,
96,
102,
108,
77,
83,
89,
95,
101,
107,
76,
82,
88,
94,
100,
106,
75,
81,
87,
93,
99,
105,
74,
80,
86,
92,
98,
104,
73,
79,
85,
91,
97,
103,
186,
192,
198,
204,
210,
216,
185,
191,
197,
203,
209,
215,
184,
190,
196,
202,
208,
214,
183,
189,
195,
201,
207,
213,
182,
188,
194,
200,
206,
212,
181,
187,
193,
199,
205,
211,
175,
169,
163,
157,
151,
145,
176,
170,
164,
158,
152,
146,
177,
171,
165,
159,
153,
147,
178,
172,
166,
160,
154,
148,
179,
173,
167,
161,
155,
149,
180,
174,
168,
162,
156,
150,
42,
48,
54,
60,
66,
72,
41,
47,
53,
59,
65,
71,
40,
46,
52,
58,
64,
70,
39,
45,
51,
57,
63,
69,
38,
44,
50,
56,
62,
68,
37,
43,
49,
55,
61,
67,
),
"z2": (
0,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
}
swaps_777 = {
"2B": (
0,
1,
2,
3,
4,
5,
6,
7,
153,
160,
167,
174,
181,
188,
195,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
14,
52,
53,
54,
55,
56,
57,
13,
59,
60,
61,
62,
63,
64,
12,
66,
67,
68,
69,
70,
71,
11,
73,
74,
75,
76,
77,
78,
10,
80,
81,
82,
83,
84,
85,
9,
87,
88,
89,
90,
91,
92,
8,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
287,
154,
155,
156,
157,
158,
159,
286,
161,
162,
163,
164,
165,
166,
285,
168,
169,
170,
171,
172,
173,
284,
175,
176,
177,
178,
179,
180,
283,
182,
183,
184,
185,
186,
187,
282,
189,
190,
191,
192,
193,
194,
281,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
51,
58,
65,
72,
79,
86,
93,
288,
289,
290,
291,
292,
293,
294,
),
"2B'": (
0,
1,
2,
3,
4,
5,
6,
7,
93,
86,
79,
72,
65,
58,
51,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
281,
52,
53,
54,
55,
56,
57,
282,
59,
60,
61,
62,
63,
64,
283,
66,
67,
68,
69,
70,
71,
284,
73,
74,
75,
76,
77,
78,
285,
80,
81,
82,
83,
84,
85,
286,
87,
88,
89,
90,
91,
92,
287,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
8,
154,
155,
156,
157,
158,
159,
9,
161,
162,
163,
164,
165,
166,
10,
168,
169,
170,
171,
172,
173,
11,
175,
176,
177,
178,
179,
180,
12,
182,
183,
184,
185,
186,
187,
13,
189,
190,
191,
192,
193,
194,
14,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
195,
188,
181,
174,
167,
160,
153,
288,
289,
290,
291,
292,
293,
294,
),
"2B2": (
0,
1,
2,
3,
4,
5,
6,
7,
287,
286,
285,
284,
283,
282,
281,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
195,
52,
53,
54,
55,
56,
57,
188,
59,
60,
61,
62,
63,
64,
181,
66,
67,
68,
69,
70,
71,
174,
73,
74,
75,
76,
77,
78,
167,
80,
81,
82,
83,
84,
85,
160,
87,
88,
89,
90,
91,
92,
153,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
93,
154,
155,
156,
157,
158,
159,
86,
161,
162,
163,
164,
165,
166,
79,
168,
169,
170,
171,
172,
173,
72,
175,
176,
177,
178,
179,
180,
65,
182,
183,
184,
185,
186,
187,
58,
189,
190,
191,
192,
193,
194,
51,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
14,
13,
12,
11,
10,
9,
8,
288,
289,
290,
291,
292,
293,
294,
),
"2D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
232,
233,
234,
235,
236,
237,
238,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
85,
86,
87,
88,
89,
90,
91,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
134,
135,
136,
137,
138,
139,
140,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
183,
184,
185,
186,
187,
188,
189,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
134,
135,
136,
137,
138,
139,
140,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
183,
184,
185,
186,
187,
188,
189,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
232,
233,
234,
235,
236,
237,
238,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
85,
86,
87,
88,
89,
90,
91,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
183,
184,
185,
186,
187,
188,
189,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
232,
233,
234,
235,
236,
237,
238,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
85,
86,
87,
88,
89,
90,
91,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
134,
135,
136,
137,
138,
139,
140,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
97,
90,
83,
76,
69,
62,
55,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
253,
56,
57,
58,
59,
60,
61,
254,
63,
64,
65,
66,
67,
68,
255,
70,
71,
72,
73,
74,
75,
256,
77,
78,
79,
80,
81,
82,
257,
84,
85,
86,
87,
88,
89,
258,
91,
92,
93,
94,
95,
96,
259,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
36,
150,
151,
152,
153,
154,
155,
37,
157,
158,
159,
160,
161,
162,
38,
164,
165,
166,
167,
168,
169,
39,
171,
172,
173,
174,
175,
176,
40,
178,
179,
180,
181,
182,
183,
41,
185,
186,
187,
188,
189,
190,
42,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
191,
184,
177,
170,
163,
156,
149,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
149,
156,
163,
170,
177,
184,
191,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
42,
56,
57,
58,
59,
60,
61,
41,
63,
64,
65,
66,
67,
68,
40,
70,
71,
72,
73,
74,
75,
39,
77,
78,
79,
80,
81,
82,
38,
84,
85,
86,
87,
88,
89,
37,
91,
92,
93,
94,
95,
96,
36,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
259,
150,
151,
152,
153,
154,
155,
258,
157,
158,
159,
160,
161,
162,
257,
164,
165,
166,
167,
168,
169,
256,
171,
172,
173,
174,
175,
176,
255,
178,
179,
180,
181,
182,
183,
254,
185,
186,
187,
188,
189,
190,
253,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
55,
62,
69,
76,
83,
90,
97,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
259,
258,
257,
256,
255,
254,
253,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
191,
56,
57,
58,
59,
60,
61,
184,
63,
64,
65,
66,
67,
68,
177,
70,
71,
72,
73,
74,
75,
170,
77,
78,
79,
80,
81,
82,
163,
84,
85,
86,
87,
88,
89,
156,
91,
92,
93,
94,
95,
96,
149,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
97,
150,
151,
152,
153,
154,
155,
90,
157,
158,
159,
160,
161,
162,
83,
164,
165,
166,
167,
168,
169,
76,
171,
172,
173,
174,
175,
176,
69,
178,
179,
180,
181,
182,
183,
62,
185,
186,
187,
188,
189,
190,
55,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
42,
41,
40,
39,
38,
37,
36,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2L": (
0,
1,
244,
3,
4,
5,
6,
7,
8,
237,
10,
11,
12,
13,
14,
15,
230,
17,
18,
19,
20,
21,
22,
223,
24,
25,
26,
27,
28,
29,
216,
31,
32,
33,
34,
35,
36,
209,
38,
39,
40,
41,
42,
43,
202,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
2,
101,
102,
103,
104,
105,
106,
9,
108,
109,
110,
111,
112,
113,
16,
115,
116,
117,
118,
119,
120,
23,
122,
123,
124,
125,
126,
127,
30,
129,
130,
131,
132,
133,
134,
37,
136,
137,
138,
139,
140,
141,
44,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
289,
203,
204,
205,
206,
207,
208,
282,
210,
211,
212,
213,
214,
215,
275,
217,
218,
219,
220,
221,
222,
268,
224,
225,
226,
227,
228,
229,
261,
231,
232,
233,
234,
235,
236,
254,
238,
239,
240,
241,
242,
243,
247,
245,
246,
100,
248,
249,
250,
251,
252,
253,
107,
255,
256,
257,
258,
259,
260,
114,
262,
263,
264,
265,
266,
267,
121,
269,
270,
271,
272,
273,
274,
128,
276,
277,
278,
279,
280,
281,
135,
283,
284,
285,
286,
287,
288,
142,
290,
291,
292,
293,
294,
),
"2L'": (
0,
1,
100,
3,
4,
5,
6,
7,
8,
107,
10,
11,
12,
13,
14,
15,
114,
17,
18,
19,
20,
21,
22,
121,
24,
25,
26,
27,
28,
29,
128,
31,
32,
33,
34,
35,
36,
135,
38,
39,
40,
41,
42,
43,
142,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
247,
101,
102,
103,
104,
105,
106,
254,
108,
109,
110,
111,
112,
113,
261,
115,
116,
117,
118,
119,
120,
268,
122,
123,
124,
125,
126,
127,
275,
129,
130,
131,
132,
133,
134,
282,
136,
137,
138,
139,
140,
141,
289,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
44,
203,
204,
205,
206,
207,
208,
37,
210,
211,
212,
213,
214,
215,
30,
217,
218,
219,
220,
221,
222,
23,
224,
225,
226,
227,
228,
229,
16,
231,
232,
233,
234,
235,
236,
9,
238,
239,
240,
241,
242,
243,
2,
245,
246,
244,
248,
249,
250,
251,
252,
253,
237,
255,
256,
257,
258,
259,
260,
230,
262,
263,
264,
265,
266,
267,
223,
269,
270,
271,
272,
273,
274,
216,
276,
277,
278,
279,
280,
281,
209,
283,
284,
285,
286,
287,
288,
202,
290,
291,
292,
293,
294,
),
"2L2": (
0,
1,
247,
3,
4,
5,
6,
7,
8,
254,
10,
11,
12,
13,
14,
15,
261,
17,
18,
19,
20,
21,
22,
268,
24,
25,
26,
27,
28,
29,
275,
31,
32,
33,
34,
35,
36,
282,
38,
39,
40,
41,
42,
43,
289,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
244,
101,
102,
103,
104,
105,
106,
237,
108,
109,
110,
111,
112,
113,
230,
115,
116,
117,
118,
119,
120,
223,
122,
123,
124,
125,
126,
127,
216,
129,
130,
131,
132,
133,
134,
209,
136,
137,
138,
139,
140,
141,
202,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
142,
203,
204,
205,
206,
207,
208,
135,
210,
211,
212,
213,
214,
215,
128,
217,
218,
219,
220,
221,
222,
121,
224,
225,
226,
227,
228,
229,
114,
231,
232,
233,
234,
235,
236,
107,
238,
239,
240,
241,
242,
243,
100,
245,
246,
2,
248,
249,
250,
251,
252,
253,
9,
255,
256,
257,
258,
259,
260,
16,
262,
263,
264,
265,
266,
267,
23,
269,
270,
271,
272,
273,
274,
30,
276,
277,
278,
279,
280,
281,
37,
283,
284,
285,
286,
287,
288,
44,
290,
291,
292,
293,
294,
),
"2R": (
0,
1,
2,
3,
4,
5,
104,
7,
8,
9,
10,
11,
12,
111,
14,
15,
16,
17,
18,
19,
118,
21,
22,
23,
24,
25,
26,
125,
28,
29,
30,
31,
32,
33,
132,
35,
36,
37,
38,
39,
40,
139,
42,
43,
44,
45,
46,
47,
146,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
251,
105,
106,
107,
108,
109,
110,
258,
112,
113,
114,
115,
116,
117,
265,
119,
120,
121,
122,
123,
124,
272,
126,
127,
128,
129,
130,
131,
279,
133,
134,
135,
136,
137,
138,
286,
140,
141,
142,
143,
144,
145,
293,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
48,
199,
200,
201,
202,
203,
204,
41,
206,
207,
208,
209,
210,
211,
34,
213,
214,
215,
216,
217,
218,
27,
220,
221,
222,
223,
224,
225,
20,
227,
228,
229,
230,
231,
232,
13,
234,
235,
236,
237,
238,
239,
6,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
240,
252,
253,
254,
255,
256,
257,
233,
259,
260,
261,
262,
263,
264,
226,
266,
267,
268,
269,
270,
271,
219,
273,
274,
275,
276,
277,
278,
212,
280,
281,
282,
283,
284,
285,
205,
287,
288,
289,
290,
291,
292,
198,
294,
),
"2R'": (
0,
1,
2,
3,
4,
5,
240,
7,
8,
9,
10,
11,
12,
233,
14,
15,
16,
17,
18,
19,
226,
21,
22,
23,
24,
25,
26,
219,
28,
29,
30,
31,
32,
33,
212,
35,
36,
37,
38,
39,
40,
205,
42,
43,
44,
45,
46,
47,
198,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
6,
105,
106,
107,
108,
109,
110,
13,
112,
113,
114,
115,
116,
117,
20,
119,
120,
121,
122,
123,
124,
27,
126,
127,
128,
129,
130,
131,
34,
133,
134,
135,
136,
137,
138,
41,
140,
141,
142,
143,
144,
145,
48,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
293,
199,
200,
201,
202,
203,
204,
286,
206,
207,
208,
209,
210,
211,
279,
213,
214,
215,
216,
217,
218,
272,
220,
221,
222,
223,
224,
225,
265,
227,
228,
229,
230,
231,
232,
258,
234,
235,
236,
237,
238,
239,
251,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
104,
252,
253,
254,
255,
256,
257,
111,
259,
260,
261,
262,
263,
264,
118,
266,
267,
268,
269,
270,
271,
125,
273,
274,
275,
276,
277,
278,
132,
280,
281,
282,
283,
284,
285,
139,
287,
288,
289,
290,
291,
292,
146,
294,
),
"2R2": (
0,
1,
2,
3,
4,
5,
251,
7,
8,
9,
10,
11,
12,
258,
14,
15,
16,
17,
18,
19,
265,
21,
22,
23,
24,
25,
26,
272,
28,
29,
30,
31,
32,
33,
279,
35,
36,
37,
38,
39,
40,
286,
42,
43,
44,
45,
46,
47,
293,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
240,
105,
106,
107,
108,
109,
110,
233,
112,
113,
114,
115,
116,
117,
226,
119,
120,
121,
122,
123,
124,
219,
126,
127,
128,
129,
130,
131,
212,
133,
134,
135,
136,
137,
138,
205,
140,
141,
142,
143,
144,
145,
198,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
146,
199,
200,
201,
202,
203,
204,
139,
206,
207,
208,
209,
210,
211,
132,
213,
214,
215,
216,
217,
218,
125,
220,
221,
222,
223,
224,
225,
118,
227,
228,
229,
230,
231,
232,
111,
234,
235,
236,
237,
238,
239,
104,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
6,
252,
253,
254,
255,
256,
257,
13,
259,
260,
261,
262,
263,
264,
20,
266,
267,
268,
269,
270,
271,
27,
273,
274,
275,
276,
277,
278,
34,
280,
281,
282,
283,
284,
285,
41,
287,
288,
289,
290,
291,
292,
48,
294,
),
"2U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
106,
107,
108,
109,
110,
111,
112,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
155,
156,
157,
158,
159,
160,
161,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
204,
205,
206,
207,
208,
209,
210,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
57,
58,
59,
60,
61,
62,
63,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
204,
205,
206,
207,
208,
209,
210,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
57,
58,
59,
60,
61,
62,
63,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
106,
107,
108,
109,
110,
111,
112,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
155,
156,
157,
158,
159,
160,
161,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"2U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
155,
156,
157,
158,
159,
160,
161,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
204,
205,
206,
207,
208,
209,
210,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
57,
58,
59,
60,
61,
62,
63,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
106,
107,
108,
109,
110,
111,
112,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3B": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
152,
159,
166,
173,
180,
187,
194,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
21,
53,
54,
55,
56,
57,
58,
20,
60,
61,
62,
63,
64,
65,
19,
67,
68,
69,
70,
71,
72,
18,
74,
75,
76,
77,
78,
79,
17,
81,
82,
83,
84,
85,
86,
16,
88,
89,
90,
91,
92,
93,
15,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
280,
153,
154,
155,
156,
157,
158,
279,
160,
161,
162,
163,
164,
165,
278,
167,
168,
169,
170,
171,
172,
277,
174,
175,
176,
177,
178,
179,
276,
181,
182,
183,
184,
185,
186,
275,
188,
189,
190,
191,
192,
193,
274,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
52,
59,
66,
73,
80,
87,
94,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3B'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
94,
87,
80,
73,
66,
59,
52,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
274,
53,
54,
55,
56,
57,
58,
275,
60,
61,
62,
63,
64,
65,
276,
67,
68,
69,
70,
71,
72,
277,
74,
75,
76,
77,
78,
79,
278,
81,
82,
83,
84,
85,
86,
279,
88,
89,
90,
91,
92,
93,
280,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
15,
153,
154,
155,
156,
157,
158,
16,
160,
161,
162,
163,
164,
165,
17,
167,
168,
169,
170,
171,
172,
18,
174,
175,
176,
177,
178,
179,
19,
181,
182,
183,
184,
185,
186,
20,
188,
189,
190,
191,
192,
193,
21,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
194,
187,
180,
173,
166,
159,
152,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3B2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
280,
279,
278,
277,
276,
275,
274,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
194,
53,
54,
55,
56,
57,
58,
187,
60,
61,
62,
63,
64,
65,
180,
67,
68,
69,
70,
71,
72,
173,
74,
75,
76,
77,
78,
79,
166,
81,
82,
83,
84,
85,
86,
159,
88,
89,
90,
91,
92,
93,
152,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
94,
153,
154,
155,
156,
157,
158,
87,
160,
161,
162,
163,
164,
165,
80,
167,
168,
169,
170,
171,
172,
73,
174,
175,
176,
177,
178,
179,
66,
181,
182,
183,
184,
185,
186,
59,
188,
189,
190,
191,
192,
193,
52,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
21,
20,
19,
18,
17,
16,
15,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Bw": (
0,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
152,
159,
166,
173,
180,
187,
194,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
7,
14,
21,
53,
54,
55,
56,
6,
13,
20,
60,
61,
62,
63,
5,
12,
19,
67,
68,
69,
70,
4,
11,
18,
74,
75,
76,
77,
3,
10,
17,
81,
82,
83,
84,
2,
9,
16,
88,
89,
90,
91,
1,
8,
15,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
280,
287,
294,
155,
156,
157,
158,
279,
286,
293,
162,
163,
164,
165,
278,
285,
292,
169,
170,
171,
172,
277,
284,
291,
176,
177,
178,
179,
276,
283,
290,
183,
184,
185,
186,
275,
282,
289,
190,
191,
192,
193,
274,
281,
288,
239,
232,
225,
218,
211,
204,
197,
240,
233,
226,
219,
212,
205,
198,
241,
234,
227,
220,
213,
206,
199,
242,
235,
228,
221,
214,
207,
200,
243,
236,
229,
222,
215,
208,
201,
244,
237,
230,
223,
216,
209,
202,
245,
238,
231,
224,
217,
210,
203,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
52,
59,
66,
73,
80,
87,
94,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
),
"3Bw'": (
0,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
94,
87,
80,
73,
66,
59,
52,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
288,
281,
274,
53,
54,
55,
56,
289,
282,
275,
60,
61,
62,
63,
290,
283,
276,
67,
68,
69,
70,
291,
284,
277,
74,
75,
76,
77,
292,
285,
278,
81,
82,
83,
84,
293,
286,
279,
88,
89,
90,
91,
294,
287,
280,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
15,
8,
1,
155,
156,
157,
158,
16,
9,
2,
162,
163,
164,
165,
17,
10,
3,
169,
170,
171,
172,
18,
11,
4,
176,
177,
178,
179,
19,
12,
5,
183,
184,
185,
186,
20,
13,
6,
190,
191,
192,
193,
21,
14,
7,
203,
210,
217,
224,
231,
238,
245,
202,
209,
216,
223,
230,
237,
244,
201,
208,
215,
222,
229,
236,
243,
200,
207,
214,
221,
228,
235,
242,
199,
206,
213,
220,
227,
234,
241,
198,
205,
212,
219,
226,
233,
240,
197,
204,
211,
218,
225,
232,
239,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
194,
187,
180,
173,
166,
159,
152,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
),
"3Bw2": (
0,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
196,
195,
194,
53,
54,
55,
56,
189,
188,
187,
60,
61,
62,
63,
182,
181,
180,
67,
68,
69,
70,
175,
174,
173,
74,
75,
76,
77,
168,
167,
166,
81,
82,
83,
84,
161,
160,
159,
88,
89,
90,
91,
154,
153,
152,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
94,
93,
92,
155,
156,
157,
158,
87,
86,
85,
162,
163,
164,
165,
80,
79,
78,
169,
170,
171,
172,
73,
72,
71,
176,
177,
178,
179,
66,
65,
64,
183,
184,
185,
186,
59,
58,
57,
190,
191,
192,
193,
52,
51,
50,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
"3D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
225,
226,
227,
228,
229,
230,
231,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
78,
79,
80,
81,
82,
83,
84,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
127,
128,
129,
130,
131,
132,
133,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
176,
177,
178,
179,
180,
181,
182,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
127,
128,
129,
130,
131,
132,
133,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
176,
177,
178,
179,
180,
181,
182,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
225,
226,
227,
228,
229,
230,
231,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
78,
79,
80,
81,
82,
83,
84,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
176,
177,
178,
179,
180,
181,
182,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
225,
226,
227,
228,
229,
230,
231,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
78,
79,
80,
81,
82,
83,
84,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
127,
128,
129,
130,
131,
132,
133,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Dw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
288,
281,
274,
267,
260,
253,
246,
289,
282,
275,
268,
261,
254,
247,
290,
283,
276,
269,
262,
255,
248,
291,
284,
277,
270,
263,
256,
249,
292,
285,
278,
271,
264,
257,
250,
293,
286,
279,
272,
265,
258,
251,
294,
287,
280,
273,
266,
259,
252,
),
"3Dw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
252,
259,
266,
273,
280,
287,
294,
251,
258,
265,
272,
279,
286,
293,
250,
257,
264,
271,
278,
285,
292,
249,
256,
263,
270,
277,
284,
291,
248,
255,
262,
269,
276,
283,
290,
247,
254,
261,
268,
275,
282,
289,
246,
253,
260,
267,
274,
281,
288,
),
"3Dw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
273,
272,
271,
270,
269,
268,
267,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
),
"3F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
96,
89,
82,
75,
68,
61,
54,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
260,
55,
56,
57,
58,
59,
60,
261,
62,
63,
64,
65,
66,
67,
262,
69,
70,
71,
72,
73,
74,
263,
76,
77,
78,
79,
80,
81,
264,
83,
84,
85,
86,
87,
88,
265,
90,
91,
92,
93,
94,
95,
266,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
29,
151,
152,
153,
154,
155,
156,
30,
158,
159,
160,
161,
162,
163,
31,
165,
166,
167,
168,
169,
170,
32,
172,
173,
174,
175,
176,
177,
33,
179,
180,
181,
182,
183,
184,
34,
186,
187,
188,
189,
190,
191,
35,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
192,
185,
178,
171,
164,
157,
150,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
150,
157,
164,
171,
178,
185,
192,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
35,
55,
56,
57,
58,
59,
60,
34,
62,
63,
64,
65,
66,
67,
33,
69,
70,
71,
72,
73,
74,
32,
76,
77,
78,
79,
80,
81,
31,
83,
84,
85,
86,
87,
88,
30,
90,
91,
92,
93,
94,
95,
29,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
266,
151,
152,
153,
154,
155,
156,
265,
158,
159,
160,
161,
162,
163,
264,
165,
166,
167,
168,
169,
170,
263,
172,
173,
174,
175,
176,
177,
262,
179,
180,
181,
182,
183,
184,
261,
186,
187,
188,
189,
190,
191,
260,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
54,
61,
68,
75,
82,
89,
96,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
266,
265,
264,
263,
262,
261,
260,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
192,
55,
56,
57,
58,
59,
60,
185,
62,
63,
64,
65,
66,
67,
178,
69,
70,
71,
72,
73,
74,
171,
76,
77,
78,
79,
80,
81,
164,
83,
84,
85,
86,
87,
88,
157,
90,
91,
92,
93,
94,
95,
150,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
96,
151,
152,
153,
154,
155,
156,
89,
158,
159,
160,
161,
162,
163,
82,
165,
166,
167,
168,
169,
170,
75,
172,
173,
174,
175,
176,
177,
68,
179,
180,
181,
182,
183,
184,
61,
186,
187,
188,
189,
190,
191,
54,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
35,
34,
33,
32,
31,
30,
29,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Fw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
96,
89,
82,
75,
68,
61,
54,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
50,
51,
52,
53,
260,
253,
246,
57,
58,
59,
60,
261,
254,
247,
64,
65,
66,
67,
262,
255,
248,
71,
72,
73,
74,
263,
256,
249,
78,
79,
80,
81,
264,
257,
250,
85,
86,
87,
88,
265,
258,
251,
92,
93,
94,
95,
266,
259,
252,
141,
134,
127,
120,
113,
106,
99,
142,
135,
128,
121,
114,
107,
100,
143,
136,
129,
122,
115,
108,
101,
144,
137,
130,
123,
116,
109,
102,
145,
138,
131,
124,
117,
110,
103,
146,
139,
132,
125,
118,
111,
104,
147,
140,
133,
126,
119,
112,
105,
43,
36,
29,
151,
152,
153,
154,
44,
37,
30,
158,
159,
160,
161,
45,
38,
31,
165,
166,
167,
168,
46,
39,
32,
172,
173,
174,
175,
47,
40,
33,
179,
180,
181,
182,
48,
41,
34,
186,
187,
188,
189,
49,
42,
35,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
192,
185,
178,
171,
164,
157,
150,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Fw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
150,
157,
164,
171,
178,
185,
192,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
50,
51,
52,
53,
35,
42,
49,
57,
58,
59,
60,
34,
41,
48,
64,
65,
66,
67,
33,
40,
47,
71,
72,
73,
74,
32,
39,
46,
78,
79,
80,
81,
31,
38,
45,
85,
86,
87,
88,
30,
37,
44,
92,
93,
94,
95,
29,
36,
43,
105,
112,
119,
126,
133,
140,
147,
104,
111,
118,
125,
132,
139,
146,
103,
110,
117,
124,
131,
138,
145,
102,
109,
116,
123,
130,
137,
144,
101,
108,
115,
122,
129,
136,
143,
100,
107,
114,
121,
128,
135,
142,
99,
106,
113,
120,
127,
134,
141,
252,
259,
266,
151,
152,
153,
154,
251,
258,
265,
158,
159,
160,
161,
250,
257,
264,
165,
166,
167,
168,
249,
256,
263,
172,
173,
174,
175,
248,
255,
262,
179,
180,
181,
182,
247,
254,
261,
186,
187,
188,
189,
246,
253,
260,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
54,
61,
68,
75,
82,
89,
96,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Fw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
50,
51,
52,
53,
192,
191,
190,
57,
58,
59,
60,
185,
184,
183,
64,
65,
66,
67,
178,
177,
176,
71,
72,
73,
74,
171,
170,
169,
78,
79,
80,
81,
164,
163,
162,
85,
86,
87,
88,
157,
156,
155,
92,
93,
94,
95,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
151,
152,
153,
154,
91,
90,
89,
158,
159,
160,
161,
84,
83,
82,
165,
166,
167,
168,
77,
76,
75,
172,
173,
174,
175,
70,
69,
68,
179,
180,
181,
182,
63,
62,
61,
186,
187,
188,
189,
56,
55,
54,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3L": (
0,
1,
2,
243,
4,
5,
6,
7,
8,
9,
236,
11,
12,
13,
14,
15,
16,
229,
18,
19,
20,
21,
22,
23,
222,
25,
26,
27,
28,
29,
30,
215,
32,
33,
34,
35,
36,
37,
208,
39,
40,
41,
42,
43,
44,
201,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
3,
102,
103,
104,
105,
106,
107,
10,
109,
110,
111,
112,
113,
114,
17,
116,
117,
118,
119,
120,
121,
24,
123,
124,
125,
126,
127,
128,
31,
130,
131,
132,
133,
134,
135,
38,
137,
138,
139,
140,
141,
142,
45,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
290,
202,
203,
204,
205,
206,
207,
283,
209,
210,
211,
212,
213,
214,
276,
216,
217,
218,
219,
220,
221,
269,
223,
224,
225,
226,
227,
228,
262,
230,
231,
232,
233,
234,
235,
255,
237,
238,
239,
240,
241,
242,
248,
244,
245,
246,
247,
101,
249,
250,
251,
252,
253,
254,
108,
256,
257,
258,
259,
260,
261,
115,
263,
264,
265,
266,
267,
268,
122,
270,
271,
272,
273,
274,
275,
129,
277,
278,
279,
280,
281,
282,
136,
284,
285,
286,
287,
288,
289,
143,
291,
292,
293,
294,
),
"3L'": (
0,
1,
2,
101,
4,
5,
6,
7,
8,
9,
108,
11,
12,
13,
14,
15,
16,
115,
18,
19,
20,
21,
22,
23,
122,
25,
26,
27,
28,
29,
30,
129,
32,
33,
34,
35,
36,
37,
136,
39,
40,
41,
42,
43,
44,
143,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
248,
102,
103,
104,
105,
106,
107,
255,
109,
110,
111,
112,
113,
114,
262,
116,
117,
118,
119,
120,
121,
269,
123,
124,
125,
126,
127,
128,
276,
130,
131,
132,
133,
134,
135,
283,
137,
138,
139,
140,
141,
142,
290,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
45,
202,
203,
204,
205,
206,
207,
38,
209,
210,
211,
212,
213,
214,
31,
216,
217,
218,
219,
220,
221,
24,
223,
224,
225,
226,
227,
228,
17,
230,
231,
232,
233,
234,
235,
10,
237,
238,
239,
240,
241,
242,
3,
244,
245,
246,
247,
243,
249,
250,
251,
252,
253,
254,
236,
256,
257,
258,
259,
260,
261,
229,
263,
264,
265,
266,
267,
268,
222,
270,
271,
272,
273,
274,
275,
215,
277,
278,
279,
280,
281,
282,
208,
284,
285,
286,
287,
288,
289,
201,
291,
292,
293,
294,
),
"3L2": (
0,
1,
2,
248,
4,
5,
6,
7,
8,
9,
255,
11,
12,
13,
14,
15,
16,
262,
18,
19,
20,
21,
22,
23,
269,
25,
26,
27,
28,
29,
30,
276,
32,
33,
34,
35,
36,
37,
283,
39,
40,
41,
42,
43,
44,
290,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
243,
102,
103,
104,
105,
106,
107,
236,
109,
110,
111,
112,
113,
114,
229,
116,
117,
118,
119,
120,
121,
222,
123,
124,
125,
126,
127,
128,
215,
130,
131,
132,
133,
134,
135,
208,
137,
138,
139,
140,
141,
142,
201,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
143,
202,
203,
204,
205,
206,
207,
136,
209,
210,
211,
212,
213,
214,
129,
216,
217,
218,
219,
220,
221,
122,
223,
224,
225,
226,
227,
228,
115,
230,
231,
232,
233,
234,
235,
108,
237,
238,
239,
240,
241,
242,
101,
244,
245,
246,
247,
3,
249,
250,
251,
252,
253,
254,
10,
256,
257,
258,
259,
260,
261,
17,
263,
264,
265,
266,
267,
268,
24,
270,
271,
272,
273,
274,
275,
31,
277,
278,
279,
280,
281,
282,
38,
284,
285,
286,
287,
288,
289,
45,
291,
292,
293,
294,
),
"3Lw": (
0,
245,
244,
243,
4,
5,
6,
7,
238,
237,
236,
11,
12,
13,
14,
231,
230,
229,
18,
19,
20,
21,
224,
223,
222,
25,
26,
27,
28,
217,
216,
215,
32,
33,
34,
35,
210,
209,
208,
39,
40,
41,
42,
203,
202,
201,
46,
47,
48,
49,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
94,
87,
80,
73,
66,
59,
52,
95,
88,
81,
74,
67,
60,
53,
96,
89,
82,
75,
68,
61,
54,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
1,
2,
3,
102,
103,
104,
105,
8,
9,
10,
109,
110,
111,
112,
15,
16,
17,
116,
117,
118,
119,
22,
23,
24,
123,
124,
125,
126,
29,
30,
31,
130,
131,
132,
133,
36,
37,
38,
137,
138,
139,
140,
43,
44,
45,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
290,
289,
288,
204,
205,
206,
207,
283,
282,
281,
211,
212,
213,
214,
276,
275,
274,
218,
219,
220,
221,
269,
268,
267,
225,
226,
227,
228,
262,
261,
260,
232,
233,
234,
235,
255,
254,
253,
239,
240,
241,
242,
248,
247,
246,
99,
100,
101,
249,
250,
251,
252,
106,
107,
108,
256,
257,
258,
259,
113,
114,
115,
263,
264,
265,
266,
120,
121,
122,
270,
271,
272,
273,
127,
128,
129,
277,
278,
279,
280,
134,
135,
136,
284,
285,
286,
287,
141,
142,
143,
291,
292,
293,
294,
),
"3Lw'": (
0,
99,
100,
101,
4,
5,
6,
7,
106,
107,
108,
11,
12,
13,
14,
113,
114,
115,
18,
19,
20,
21,
120,
121,
122,
25,
26,
27,
28,
127,
128,
129,
32,
33,
34,
35,
134,
135,
136,
39,
40,
41,
42,
141,
142,
143,
46,
47,
48,
49,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
54,
61,
68,
75,
82,
89,
96,
53,
60,
67,
74,
81,
88,
95,
52,
59,
66,
73,
80,
87,
94,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
246,
247,
248,
102,
103,
104,
105,
253,
254,
255,
109,
110,
111,
112,
260,
261,
262,
116,
117,
118,
119,
267,
268,
269,
123,
124,
125,
126,
274,
275,
276,
130,
131,
132,
133,
281,
282,
283,
137,
138,
139,
140,
288,
289,
290,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
45,
44,
43,
204,
205,
206,
207,
38,
37,
36,
211,
212,
213,
214,
31,
30,
29,
218,
219,
220,
221,
24,
23,
22,
225,
226,
227,
228,
17,
16,
15,
232,
233,
234,
235,
10,
9,
8,
239,
240,
241,
242,
3,
2,
1,
245,
244,
243,
249,
250,
251,
252,
238,
237,
236,
256,
257,
258,
259,
231,
230,
229,
263,
264,
265,
266,
224,
223,
222,
270,
271,
272,
273,
217,
216,
215,
277,
278,
279,
280,
210,
209,
208,
284,
285,
286,
287,
203,
202,
201,
291,
292,
293,
294,
),
"3Lw2": (
0,
246,
247,
248,
4,
5,
6,
7,
253,
254,
255,
11,
12,
13,
14,
260,
261,
262,
18,
19,
20,
21,
267,
268,
269,
25,
26,
27,
28,
274,
275,
276,
32,
33,
34,
35,
281,
282,
283,
39,
40,
41,
42,
288,
289,
290,
46,
47,
48,
49,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
245,
244,
243,
102,
103,
104,
105,
238,
237,
236,
109,
110,
111,
112,
231,
230,
229,
116,
117,
118,
119,
224,
223,
222,
123,
124,
125,
126,
217,
216,
215,
130,
131,
132,
133,
210,
209,
208,
137,
138,
139,
140,
203,
202,
201,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
143,
142,
141,
204,
205,
206,
207,
136,
135,
134,
211,
212,
213,
214,
129,
128,
127,
218,
219,
220,
221,
122,
121,
120,
225,
226,
227,
228,
115,
114,
113,
232,
233,
234,
235,
108,
107,
106,
239,
240,
241,
242,
101,
100,
99,
1,
2,
3,
249,
250,
251,
252,
8,
9,
10,
256,
257,
258,
259,
15,
16,
17,
263,
264,
265,
266,
22,
23,
24,
270,
271,
272,
273,
29,
30,
31,
277,
278,
279,
280,
36,
37,
38,
284,
285,
286,
287,
43,
44,
45,
291,
292,
293,
294,
),
"3R": (
0,
1,
2,
3,
4,
103,
6,
7,
8,
9,
10,
11,
110,
13,
14,
15,
16,
17,
18,
117,
20,
21,
22,
23,
24,
25,
124,
27,
28,
29,
30,
31,
32,
131,
34,
35,
36,
37,
38,
39,
138,
41,
42,
43,
44,
45,
46,
145,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
250,
104,
105,
106,
107,
108,
109,
257,
111,
112,
113,
114,
115,
116,
264,
118,
119,
120,
121,
122,
123,
271,
125,
126,
127,
128,
129,
130,
278,
132,
133,
134,
135,
136,
137,
285,
139,
140,
141,
142,
143,
144,
292,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
47,
200,
201,
202,
203,
204,
205,
40,
207,
208,
209,
210,
211,
212,
33,
214,
215,
216,
217,
218,
219,
26,
221,
222,
223,
224,
225,
226,
19,
228,
229,
230,
231,
232,
233,
12,
235,
236,
237,
238,
239,
240,
5,
242,
243,
244,
245,
246,
247,
248,
249,
241,
251,
252,
253,
254,
255,
256,
234,
258,
259,
260,
261,
262,
263,
227,
265,
266,
267,
268,
269,
270,
220,
272,
273,
274,
275,
276,
277,
213,
279,
280,
281,
282,
283,
284,
206,
286,
287,
288,
289,
290,
291,
199,
293,
294,
),
"3R'": (
0,
1,
2,
3,
4,
241,
6,
7,
8,
9,
10,
11,
234,
13,
14,
15,
16,
17,
18,
227,
20,
21,
22,
23,
24,
25,
220,
27,
28,
29,
30,
31,
32,
213,
34,
35,
36,
37,
38,
39,
206,
41,
42,
43,
44,
45,
46,
199,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
5,
104,
105,
106,
107,
108,
109,
12,
111,
112,
113,
114,
115,
116,
19,
118,
119,
120,
121,
122,
123,
26,
125,
126,
127,
128,
129,
130,
33,
132,
133,
134,
135,
136,
137,
40,
139,
140,
141,
142,
143,
144,
47,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
292,
200,
201,
202,
203,
204,
205,
285,
207,
208,
209,
210,
211,
212,
278,
214,
215,
216,
217,
218,
219,
271,
221,
222,
223,
224,
225,
226,
264,
228,
229,
230,
231,
232,
233,
257,
235,
236,
237,
238,
239,
240,
250,
242,
243,
244,
245,
246,
247,
248,
249,
103,
251,
252,
253,
254,
255,
256,
110,
258,
259,
260,
261,
262,
263,
117,
265,
266,
267,
268,
269,
270,
124,
272,
273,
274,
275,
276,
277,
131,
279,
280,
281,
282,
283,
284,
138,
286,
287,
288,
289,
290,
291,
145,
293,
294,
),
"3R2": (
0,
1,
2,
3,
4,
250,
6,
7,
8,
9,
10,
11,
257,
13,
14,
15,
16,
17,
18,
264,
20,
21,
22,
23,
24,
25,
271,
27,
28,
29,
30,
31,
32,
278,
34,
35,
36,
37,
38,
39,
285,
41,
42,
43,
44,
45,
46,
292,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
241,
104,
105,
106,
107,
108,
109,
234,
111,
112,
113,
114,
115,
116,
227,
118,
119,
120,
121,
122,
123,
220,
125,
126,
127,
128,
129,
130,
213,
132,
133,
134,
135,
136,
137,
206,
139,
140,
141,
142,
143,
144,
199,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
145,
200,
201,
202,
203,
204,
205,
138,
207,
208,
209,
210,
211,
212,
131,
214,
215,
216,
217,
218,
219,
124,
221,
222,
223,
224,
225,
226,
117,
228,
229,
230,
231,
232,
233,
110,
235,
236,
237,
238,
239,
240,
103,
242,
243,
244,
245,
246,
247,
248,
249,
5,
251,
252,
253,
254,
255,
256,
12,
258,
259,
260,
261,
262,
263,
19,
265,
266,
267,
268,
269,
270,
26,
272,
273,
274,
275,
276,
277,
33,
279,
280,
281,
282,
283,
284,
40,
286,
287,
288,
289,
290,
291,
47,
293,
294,
),
"3Rw": (
0,
1,
2,
3,
4,
103,
104,
105,
8,
9,
10,
11,
110,
111,
112,
15,
16,
17,
18,
117,
118,
119,
22,
23,
24,
25,
124,
125,
126,
29,
30,
31,
32,
131,
132,
133,
36,
37,
38,
39,
138,
139,
140,
43,
44,
45,
46,
145,
146,
147,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
250,
251,
252,
106,
107,
108,
109,
257,
258,
259,
113,
114,
115,
116,
264,
265,
266,
120,
121,
122,
123,
271,
272,
273,
127,
128,
129,
130,
278,
279,
280,
134,
135,
136,
137,
285,
286,
287,
141,
142,
143,
144,
292,
293,
294,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
192,
185,
178,
171,
164,
157,
150,
193,
186,
179,
172,
165,
158,
151,
194,
187,
180,
173,
166,
159,
152,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
49,
48,
47,
200,
201,
202,
203,
42,
41,
40,
207,
208,
209,
210,
35,
34,
33,
214,
215,
216,
217,
28,
27,
26,
221,
222,
223,
224,
21,
20,
19,
228,
229,
230,
231,
14,
13,
12,
235,
236,
237,
238,
7,
6,
5,
242,
243,
244,
245,
246,
247,
248,
249,
241,
240,
239,
253,
254,
255,
256,
234,
233,
232,
260,
261,
262,
263,
227,
226,
225,
267,
268,
269,
270,
220,
219,
218,
274,
275,
276,
277,
213,
212,
211,
281,
282,
283,
284,
206,
205,
204,
288,
289,
290,
291,
199,
198,
197,
),
"3Rw'": (
0,
1,
2,
3,
4,
241,
240,
239,
8,
9,
10,
11,
234,
233,
232,
15,
16,
17,
18,
227,
226,
225,
22,
23,
24,
25,
220,
219,
218,
29,
30,
31,
32,
213,
212,
211,
36,
37,
38,
39,
206,
205,
204,
43,
44,
45,
46,
199,
198,
197,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
5,
6,
7,
106,
107,
108,
109,
12,
13,
14,
113,
114,
115,
116,
19,
20,
21,
120,
121,
122,
123,
26,
27,
28,
127,
128,
129,
130,
33,
34,
35,
134,
135,
136,
137,
40,
41,
42,
141,
142,
143,
144,
47,
48,
49,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
152,
159,
166,
173,
180,
187,
194,
151,
158,
165,
172,
179,
186,
193,
150,
157,
164,
171,
178,
185,
192,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
294,
293,
292,
200,
201,
202,
203,
287,
286,
285,
207,
208,
209,
210,
280,
279,
278,
214,
215,
216,
217,
273,
272,
271,
221,
222,
223,
224,
266,
265,
264,
228,
229,
230,
231,
259,
258,
257,
235,
236,
237,
238,
252,
251,
250,
242,
243,
244,
245,
246,
247,
248,
249,
103,
104,
105,
253,
254,
255,
256,
110,
111,
112,
260,
261,
262,
263,
117,
118,
119,
267,
268,
269,
270,
124,
125,
126,
274,
275,
276,
277,
131,
132,
133,
281,
282,
283,
284,
138,
139,
140,
288,
289,
290,
291,
145,
146,
147,
),
"3Rw2": (
0,
1,
2,
3,
4,
250,
251,
252,
8,
9,
10,
11,
257,
258,
259,
15,
16,
17,
18,
264,
265,
266,
22,
23,
24,
25,
271,
272,
273,
29,
30,
31,
32,
278,
279,
280,
36,
37,
38,
39,
285,
286,
287,
43,
44,
45,
46,
292,
293,
294,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
241,
240,
239,
106,
107,
108,
109,
234,
233,
232,
113,
114,
115,
116,
227,
226,
225,
120,
121,
122,
123,
220,
219,
218,
127,
128,
129,
130,
213,
212,
211,
134,
135,
136,
137,
206,
205,
204,
141,
142,
143,
144,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
200,
201,
202,
203,
140,
139,
138,
207,
208,
209,
210,
133,
132,
131,
214,
215,
216,
217,
126,
125,
124,
221,
222,
223,
224,
119,
118,
117,
228,
229,
230,
231,
112,
111,
110,
235,
236,
237,
238,
105,
104,
103,
242,
243,
244,
245,
246,
247,
248,
249,
5,
6,
7,
253,
254,
255,
256,
12,
13,
14,
260,
261,
262,
263,
19,
20,
21,
267,
268,
269,
270,
26,
27,
28,
274,
275,
276,
277,
33,
34,
35,
281,
282,
283,
284,
40,
41,
42,
288,
289,
290,
291,
47,
48,
49,
),
"3U": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
113,
114,
115,
116,
117,
118,
119,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
162,
163,
164,
165,
166,
167,
168,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
211,
212,
213,
214,
215,
216,
217,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
64,
65,
66,
67,
68,
69,
70,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3U'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
211,
212,
213,
214,
215,
216,
217,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
64,
65,
66,
67,
68,
69,
70,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
113,
114,
115,
116,
117,
118,
119,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
162,
163,
164,
165,
166,
167,
168,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3U2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
162,
163,
164,
165,
166,
167,
168,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
211,
212,
213,
214,
215,
216,
217,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
64,
65,
66,
67,
68,
69,
70,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
113,
114,
115,
116,
117,
118,
119,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Uw": (
0,
43,
36,
29,
22,
15,
8,
1,
44,
37,
30,
23,
16,
9,
2,
45,
38,
31,
24,
17,
10,
3,
46,
39,
32,
25,
18,
11,
4,
47,
40,
33,
26,
19,
12,
5,
48,
41,
34,
27,
20,
13,
6,
49,
42,
35,
28,
21,
14,
7,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Uw'": (
0,
7,
14,
21,
28,
35,
42,
49,
6,
13,
20,
27,
34,
41,
48,
5,
12,
19,
26,
33,
40,
47,
4,
11,
18,
25,
32,
39,
46,
3,
10,
17,
24,
31,
38,
45,
2,
9,
16,
23,
30,
37,
44,
1,
8,
15,
22,
29,
36,
43,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"3Uw2": (
0,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"B": (
0,
154,
161,
168,
175,
182,
189,
196,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
7,
51,
52,
53,
54,
55,
56,
6,
58,
59,
60,
61,
62,
63,
5,
65,
66,
67,
68,
69,
70,
4,
72,
73,
74,
75,
76,
77,
3,
79,
80,
81,
82,
83,
84,
2,
86,
87,
88,
89,
90,
91,
1,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
294,
155,
156,
157,
158,
159,
160,
293,
162,
163,
164,
165,
166,
167,
292,
169,
170,
171,
172,
173,
174,
291,
176,
177,
178,
179,
180,
181,
290,
183,
184,
185,
186,
187,
188,
289,
190,
191,
192,
193,
194,
195,
288,
239,
232,
225,
218,
211,
204,
197,
240,
233,
226,
219,
212,
205,
198,
241,
234,
227,
220,
213,
206,
199,
242,
235,
228,
221,
214,
207,
200,
243,
236,
229,
222,
215,
208,
201,
244,
237,
230,
223,
216,
209,
202,
245,
238,
231,
224,
217,
210,
203,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
50,
57,
64,
71,
78,
85,
92,
),
"B'": (
0,
92,
85,
78,
71,
64,
57,
50,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
288,
51,
52,
53,
54,
55,
56,
289,
58,
59,
60,
61,
62,
63,
290,
65,
66,
67,
68,
69,
70,
291,
72,
73,
74,
75,
76,
77,
292,
79,
80,
81,
82,
83,
84,
293,
86,
87,
88,
89,
90,
91,
294,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
1,
155,
156,
157,
158,
159,
160,
2,
162,
163,
164,
165,
166,
167,
3,
169,
170,
171,
172,
173,
174,
4,
176,
177,
178,
179,
180,
181,
5,
183,
184,
185,
186,
187,
188,
6,
190,
191,
192,
193,
194,
195,
7,
203,
210,
217,
224,
231,
238,
245,
202,
209,
216,
223,
230,
237,
244,
201,
208,
215,
222,
229,
236,
243,
200,
207,
214,
221,
228,
235,
242,
199,
206,
213,
220,
227,
234,
241,
198,
205,
212,
219,
226,
233,
240,
197,
204,
211,
218,
225,
232,
239,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
196,
189,
182,
175,
168,
161,
154,
),
"B2": (
0,
294,
293,
292,
291,
290,
289,
288,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
196,
51,
52,
53,
54,
55,
56,
189,
58,
59,
60,
61,
62,
63,
182,
65,
66,
67,
68,
69,
70,
175,
72,
73,
74,
75,
76,
77,
168,
79,
80,
81,
82,
83,
84,
161,
86,
87,
88,
89,
90,
91,
154,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
92,
155,
156,
157,
158,
159,
160,
85,
162,
163,
164,
165,
166,
167,
78,
169,
170,
171,
172,
173,
174,
71,
176,
177,
178,
179,
180,
181,
64,
183,
184,
185,
186,
187,
188,
57,
190,
191,
192,
193,
194,
195,
50,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
7,
6,
5,
4,
3,
2,
1,
),
"Bw": (
0,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
7,
14,
52,
53,
54,
55,
56,
6,
13,
59,
60,
61,
62,
63,
5,
12,
66,
67,
68,
69,
70,
4,
11,
73,
74,
75,
76,
77,
3,
10,
80,
81,
82,
83,
84,
2,
9,
87,
88,
89,
90,
91,
1,
8,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
287,
294,
155,
156,
157,
158,
159,
286,
293,
162,
163,
164,
165,
166,
285,
292,
169,
170,
171,
172,
173,
284,
291,
176,
177,
178,
179,
180,
283,
290,
183,
184,
185,
186,
187,
282,
289,
190,
191,
192,
193,
194,
281,
288,
239,
232,
225,
218,
211,
204,
197,
240,
233,
226,
219,
212,
205,
198,
241,
234,
227,
220,
213,
206,
199,
242,
235,
228,
221,
214,
207,
200,
243,
236,
229,
222,
215,
208,
201,
244,
237,
230,
223,
216,
209,
202,
245,
238,
231,
224,
217,
210,
203,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
),
"Bw'": (
0,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
288,
281,
52,
53,
54,
55,
56,
289,
282,
59,
60,
61,
62,
63,
290,
283,
66,
67,
68,
69,
70,
291,
284,
73,
74,
75,
76,
77,
292,
285,
80,
81,
82,
83,
84,
293,
286,
87,
88,
89,
90,
91,
294,
287,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
8,
1,
155,
156,
157,
158,
159,
9,
2,
162,
163,
164,
165,
166,
10,
3,
169,
170,
171,
172,
173,
11,
4,
176,
177,
178,
179,
180,
12,
5,
183,
184,
185,
186,
187,
13,
6,
190,
191,
192,
193,
194,
14,
7,
203,
210,
217,
224,
231,
238,
245,
202,
209,
216,
223,
230,
237,
244,
201,
208,
215,
222,
229,
236,
243,
200,
207,
214,
221,
228,
235,
242,
199,
206,
213,
220,
227,
234,
241,
198,
205,
212,
219,
226,
233,
240,
197,
204,
211,
218,
225,
232,
239,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
),
"Bw2": (
0,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
196,
195,
52,
53,
54,
55,
56,
189,
188,
59,
60,
61,
62,
63,
182,
181,
66,
67,
68,
69,
70,
175,
174,
73,
74,
75,
76,
77,
168,
167,
80,
81,
82,
83,
84,
161,
160,
87,
88,
89,
90,
91,
154,
153,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
93,
92,
155,
156,
157,
158,
159,
86,
85,
162,
163,
164,
165,
166,
79,
78,
169,
170,
171,
172,
173,
72,
71,
176,
177,
178,
179,
180,
65,
64,
183,
184,
185,
186,
187,
58,
57,
190,
191,
192,
193,
194,
51,
50,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
"D": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
239,
240,
241,
242,
243,
244,
245,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
92,
93,
94,
95,
96,
97,
98,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
141,
142,
143,
144,
145,
146,
147,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
190,
191,
192,
193,
194,
195,
196,
288,
281,
274,
267,
260,
253,
246,
289,
282,
275,
268,
261,
254,
247,
290,
283,
276,
269,
262,
255,
248,
291,
284,
277,
270,
263,
256,
249,
292,
285,
278,
271,
264,
257,
250,
293,
286,
279,
272,
265,
258,
251,
294,
287,
280,
273,
266,
259,
252,
),
"D'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
141,
142,
143,
144,
145,
146,
147,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
190,
191,
192,
193,
194,
195,
196,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
239,
240,
241,
242,
243,
244,
245,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
92,
93,
94,
95,
96,
97,
98,
252,
259,
266,
273,
280,
287,
294,
251,
258,
265,
272,
279,
286,
293,
250,
257,
264,
271,
278,
285,
292,
249,
256,
263,
270,
277,
284,
291,
248,
255,
262,
269,
276,
283,
290,
247,
254,
261,
268,
275,
282,
289,
246,
253,
260,
267,
274,
281,
288,
),
"D2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
190,
191,
192,
193,
194,
195,
196,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
239,
240,
241,
242,
243,
244,
245,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
92,
93,
94,
95,
96,
97,
98,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
141,
142,
143,
144,
145,
146,
147,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
273,
272,
271,
270,
269,
268,
267,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
),
"Dw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
288,
281,
274,
267,
260,
253,
246,
289,
282,
275,
268,
261,
254,
247,
290,
283,
276,
269,
262,
255,
248,
291,
284,
277,
270,
263,
256,
249,
292,
285,
278,
271,
264,
257,
250,
293,
286,
279,
272,
265,
258,
251,
294,
287,
280,
273,
266,
259,
252,
),
"Dw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
252,
259,
266,
273,
280,
287,
294,
251,
258,
265,
272,
279,
286,
293,
250,
257,
264,
271,
278,
285,
292,
249,
256,
263,
270,
277,
284,
291,
248,
255,
262,
269,
276,
283,
290,
247,
254,
261,
268,
275,
282,
289,
246,
253,
260,
267,
274,
281,
288,
),
"Dw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
273,
272,
271,
270,
269,
268,
267,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
),
"F": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
98,
91,
84,
77,
70,
63,
56,
50,
51,
52,
53,
54,
55,
246,
57,
58,
59,
60,
61,
62,
247,
64,
65,
66,
67,
68,
69,
248,
71,
72,
73,
74,
75,
76,
249,
78,
79,
80,
81,
82,
83,
250,
85,
86,
87,
88,
89,
90,
251,
92,
93,
94,
95,
96,
97,
252,
141,
134,
127,
120,
113,
106,
99,
142,
135,
128,
121,
114,
107,
100,
143,
136,
129,
122,
115,
108,
101,
144,
137,
130,
123,
116,
109,
102,
145,
138,
131,
124,
117,
110,
103,
146,
139,
132,
125,
118,
111,
104,
147,
140,
133,
126,
119,
112,
105,
43,
149,
150,
151,
152,
153,
154,
44,
156,
157,
158,
159,
160,
161,
45,
163,
164,
165,
166,
167,
168,
46,
170,
171,
172,
173,
174,
175,
47,
177,
178,
179,
180,
181,
182,
48,
184,
185,
186,
187,
188,
189,
49,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
190,
183,
176,
169,
162,
155,
148,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"F'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
148,
155,
162,
169,
176,
183,
190,
50,
51,
52,
53,
54,
55,
49,
57,
58,
59,
60,
61,
62,
48,
64,
65,
66,
67,
68,
69,
47,
71,
72,
73,
74,
75,
76,
46,
78,
79,
80,
81,
82,
83,
45,
85,
86,
87,
88,
89,
90,
44,
92,
93,
94,
95,
96,
97,
43,
105,
112,
119,
126,
133,
140,
147,
104,
111,
118,
125,
132,
139,
146,
103,
110,
117,
124,
131,
138,
145,
102,
109,
116,
123,
130,
137,
144,
101,
108,
115,
122,
129,
136,
143,
100,
107,
114,
121,
128,
135,
142,
99,
106,
113,
120,
127,
134,
141,
252,
149,
150,
151,
152,
153,
154,
251,
156,
157,
158,
159,
160,
161,
250,
163,
164,
165,
166,
167,
168,
249,
170,
171,
172,
173,
174,
175,
248,
177,
178,
179,
180,
181,
182,
247,
184,
185,
186,
187,
188,
189,
246,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
56,
63,
70,
77,
84,
91,
98,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"F2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
252,
251,
250,
249,
248,
247,
246,
50,
51,
52,
53,
54,
55,
190,
57,
58,
59,
60,
61,
62,
183,
64,
65,
66,
67,
68,
69,
176,
71,
72,
73,
74,
75,
76,
169,
78,
79,
80,
81,
82,
83,
162,
85,
86,
87,
88,
89,
90,
155,
92,
93,
94,
95,
96,
97,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
149,
150,
151,
152,
153,
154,
91,
156,
157,
158,
159,
160,
161,
84,
163,
164,
165,
166,
167,
168,
77,
170,
171,
172,
173,
174,
175,
70,
177,
178,
179,
180,
181,
182,
63,
184,
185,
186,
187,
188,
189,
56,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
49,
48,
47,
46,
45,
44,
43,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"Fw": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
50,
51,
52,
53,
54,
253,
246,
57,
58,
59,
60,
61,
254,
247,
64,
65,
66,
67,
68,
255,
248,
71,
72,
73,
74,
75,
256,
249,
78,
79,
80,
81,
82,
257,
250,
85,
86,
87,
88,
89,
258,
251,
92,
93,
94,
95,
96,
259,
252,
141,
134,
127,
120,
113,
106,
99,
142,
135,
128,
121,
114,
107,
100,
143,
136,
129,
122,
115,
108,
101,
144,
137,
130,
123,
116,
109,
102,
145,
138,
131,
124,
117,
110,
103,
146,
139,
132,
125,
118,
111,
104,
147,
140,
133,
126,
119,
112,
105,
43,
36,
150,
151,
152,
153,
154,
44,
37,
157,
158,
159,
160,
161,
45,
38,
164,
165,
166,
167,
168,
46,
39,
171,
172,
173,
174,
175,
47,
40,
178,
179,
180,
181,
182,
48,
41,
185,
186,
187,
188,
189,
49,
42,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"Fw'": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
50,
51,
52,
53,
54,
42,
49,
57,
58,
59,
60,
61,
41,
48,
64,
65,
66,
67,
68,
40,
47,
71,
72,
73,
74,
75,
39,
46,
78,
79,
80,
81,
82,
38,
45,
85,
86,
87,
88,
89,
37,
44,
92,
93,
94,
95,
96,
36,
43,
105,
112,
119,
126,
133,
140,
147,
104,
111,
118,
125,
132,
139,
146,
103,
110,
117,
124,
131,
138,
145,
102,
109,
116,
123,
130,
137,
144,
101,
108,
115,
122,
129,
136,
143,
100,
107,
114,
121,
128,
135,
142,
99,
106,
113,
120,
127,
134,
141,
252,
259,
150,
151,
152,
153,
154,
251,
258,
157,
158,
159,
160,
161,
250,
257,
164,
165,
166,
167,
168,
249,
256,
171,
172,
173,
174,
175,
248,
255,
178,
179,
180,
181,
182,
247,
254,
185,
186,
187,
188,
189,
246,
253,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"Fw2": (
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
50,
51,
52,
53,
54,
191,
190,
57,
58,
59,
60,
61,
184,
183,
64,
65,
66,
67,
68,
177,
176,
71,
72,
73,
74,
75,
170,
169,
78,
79,
80,
81,
82,
163,
162,
85,
86,
87,
88,
89,
156,
155,
92,
93,
94,
95,
96,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
150,
151,
152,
153,
154,
91,
90,
157,
158,
159,
160,
161,
84,
83,
164,
165,
166,
167,
168,
77,
76,
171,
172,
173,
174,
175,
70,
69,
178,
179,
180,
181,
182,
63,
62,
185,
186,
187,
188,
189,
56,
55,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"L": (
0,
245,
2,
3,
4,
5,
6,
7,
238,
9,
10,
11,
12,
13,
14,
231,
16,
17,
18,
19,
20,
21,
224,
23,
24,
25,
26,
27,
28,
217,
30,
31,
32,
33,
34,
35,
210,
37,
38,
39,
40,
41,
42,
203,
44,
45,
46,
47,
48,
49,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
94,
87,
80,
73,
66,
59,
52,
95,
88,
81,
74,
67,
60,
53,
96,
89,
82,
75,
68,
61,
54,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
1,
100,
101,
102,
103,
104,
105,
8,
107,
108,
109,
110,
111,
112,
15,
114,
115,
116,
117,
118,
119,
22,
121,
122,
123,
124,
125,
126,
29,
128,
129,
130,
131,
132,
133,
36,
135,
136,
137,
138,
139,
140,
43,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
288,
204,
205,
206,
207,
208,
209,
281,
211,
212,
213,
214,
215,
216,
274,
218,
219,
220,
221,
222,
223,
267,
225,
226,
227,
228,
229,
230,
260,
232,
233,
234,
235,
236,
237,
253,
239,
240,
241,
242,
243,
244,
246,
99,
247,
248,
249,
250,
251,
252,
106,
254,
255,
256,
257,
258,
259,
113,
261,
262,
263,
264,
265,
266,
120,
268,
269,
270,
271,
272,
273,
127,
275,
276,
277,
278,
279,
280,
134,
282,
283,
284,
285,
286,
287,
141,
289,
290,
291,
292,
293,
294,
),
"L'": (
0,
99,
2,
3,
4,
5,
6,
7,
106,
9,
10,
11,
12,
13,
14,
113,
16,
17,
18,
19,
20,
21,
120,
23,
24,
25,
26,
27,
28,
127,
30,
31,
32,
33,
34,
35,
134,
37,
38,
39,
40,
41,
42,
141,
44,
45,
46,
47,
48,
49,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
54,
61,
68,
75,
82,
89,
96,
53,
60,
67,
74,
81,
88,
95,
52,
59,
66,
73,
80,
87,
94,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
246,
100,
101,
102,
103,
104,
105,
253,
107,
108,
109,
110,
111,
112,
260,
114,
115,
116,
117,
118,
119,
267,
121,
122,
123,
124,
125,
126,
274,
128,
129,
130,
131,
132,
133,
281,
135,
136,
137,
138,
139,
140,
288,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
43,
204,
205,
206,
207,
208,
209,
36,
211,
212,
213,
214,
215,
216,
29,
218,
219,
220,
221,
222,
223,
22,
225,
226,
227,
228,
229,
230,
15,
232,
233,
234,
235,
236,
237,
8,
239,
240,
241,
242,
243,
244,
1,
245,
247,
248,
249,
250,
251,
252,
238,
254,
255,
256,
257,
258,
259,
231,
261,
262,
263,
264,
265,
266,
224,
268,
269,
270,
271,
272,
273,
217,
275,
276,
277,
278,
279,
280,
210,
282,
283,
284,
285,
286,
287,
203,
289,
290,
291,
292,
293,
294,
),
"L2": (
0,
246,
2,
3,
4,
5,
6,
7,
253,
9,
10,
11,
12,
13,
14,
260,
16,
17,
18,
19,
20,
21,
267,
23,
24,
25,
26,
27,
28,
274,
30,
31,
32,
33,
34,
35,
281,
37,
38,
39,
40,
41,
42,
288,
44,
45,
46,
47,
48,
49,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
245,
100,
101,
102,
103,
104,
105,
238,
107,
108,
109,
110,
111,
112,
231,
114,
115,
116,
117,
118,
119,
224,
121,
122,
123,
124,
125,
126,
217,
128,
129,
130,
131,
132,
133,
210,
135,
136,
137,
138,
139,
140,
203,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
141,
204,
205,
206,
207,
208,
209,
134,
211,
212,
213,
214,
215,
216,
127,
218,
219,
220,
221,
222,
223,
120,
225,
226,
227,
228,
229,
230,
113,
232,
233,
234,
235,
236,
237,
106,
239,
240,
241,
242,
243,
244,
99,
1,
247,
248,
249,
250,
251,
252,
8,
254,
255,
256,
257,
258,
259,
15,
261,
262,
263,
264,
265,
266,
22,
268,
269,
270,
271,
272,
273,
29,
275,
276,
277,
278,
279,
280,
36,
282,
283,
284,
285,
286,
287,
43,
289,
290,
291,
292,
293,
294,
),
"Lw": (
0,
245,
244,
3,
4,
5,
6,
7,
238,
237,
10,
11,
12,
13,
14,
231,
230,
17,
18,
19,
20,
21,
224,
223,
24,
25,
26,
27,
28,
217,
216,
31,
32,
33,
34,
35,
210,
209,
38,
39,
40,
41,
42,
203,
202,
45,
46,
47,
48,
49,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
94,
87,
80,
73,
66,
59,
52,
95,
88,
81,
74,
67,
60,
53,
96,
89,
82,
75,
68,
61,
54,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
1,
2,
101,
102,
103,
104,
105,
8,
9,
108,
109,
110,
111,
112,
15,
16,
115,
116,
117,
118,
119,
22,
23,
122,
123,
124,
125,
126,
29,
30,
129,
130,
131,
132,
133,
36,
37,
136,
137,
138,
139,
140,
43,
44,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
289,
288,
204,
205,
206,
207,
208,
282,
281,
211,
212,
213,
214,
215,
275,
274,
218,
219,
220,
221,
222,
268,
267,
225,
226,
227,
228,
229,
261,
260,
232,
233,
234,
235,
236,
254,
253,
239,
240,
241,
242,
243,
247,
246,
99,
100,
248,
249,
250,
251,
252,
106,
107,
255,
256,
257,
258,
259,
113,
114,
262,
263,
264,
265,
266,
120,
121,
269,
270,
271,
272,
273,
127,
128,
276,
277,
278,
279,
280,
134,
135,
283,
284,
285,
286,
287,
141,
142,
290,
291,
292,
293,
294,
),
"Lw'": (
0,
99,
100,
3,
4,
5,
6,
7,
106,
107,
10,
11,
12,
13,
14,
113,
114,
17,
18,
19,
20,
21,
120,
121,
24,
25,
26,
27,
28,
127,
128,
31,
32,
33,
34,
35,
134,
135,
38,
39,
40,
41,
42,
141,
142,
45,
46,
47,
48,
49,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
54,
61,
68,
75,
82,
89,
96,
53,
60,
67,
74,
81,
88,
95,
52,
59,
66,
73,
80,
87,
94,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
246,
247,
101,
102,
103,
104,
105,
253,
254,
108,
109,
110,
111,
112,
260,
261,
115,
116,
117,
118,
119,
267,
268,
122,
123,
124,
125,
126,
274,
275,
129,
130,
131,
132,
133,
281,
282,
136,
137,
138,
139,
140,
288,
289,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
44,
43,
204,
205,
206,
207,
208,
37,
36,
211,
212,
213,
214,
215,
30,
29,
218,
219,
220,
221,
222,
23,
22,
225,
226,
227,
228,
229,
16,
15,
232,
233,
234,
235,
236,
9,
8,
239,
240,
241,
242,
243,
2,
1,
245,
244,
248,
249,
250,
251,
252,
238,
237,
255,
256,
257,
258,
259,
231,
230,
262,
263,
264,
265,
266,
224,
223,
269,
270,
271,
272,
273,
217,
216,
276,
277,
278,
279,
280,
210,
209,
283,
284,
285,
286,
287,
203,
202,
290,
291,
292,
293,
294,
),
"Lw2": (
0,
246,
247,
3,
4,
5,
6,
7,
253,
254,
10,
11,
12,
13,
14,
260,
261,
17,
18,
19,
20,
21,
267,
268,
24,
25,
26,
27,
28,
274,
275,
31,
32,
33,
34,
35,
281,
282,
38,
39,
40,
41,
42,
288,
289,
45,
46,
47,
48,
49,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
245,
244,
101,
102,
103,
104,
105,
238,
237,
108,
109,
110,
111,
112,
231,
230,
115,
116,
117,
118,
119,
224,
223,
122,
123,
124,
125,
126,
217,
216,
129,
130,
131,
132,
133,
210,
209,
136,
137,
138,
139,
140,
203,
202,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
142,
141,
204,
205,
206,
207,
208,
135,
134,
211,
212,
213,
214,
215,
128,
127,
218,
219,
220,
221,
222,
121,
120,
225,
226,
227,
228,
229,
114,
113,
232,
233,
234,
235,
236,
107,
106,
239,
240,
241,
242,
243,
100,
99,
1,
2,
248,
249,
250,
251,
252,
8,
9,
255,
256,
257,
258,
259,
15,
16,
262,
263,
264,
265,
266,
22,
23,
269,
270,
271,
272,
273,
29,
30,
276,
277,
278,
279,
280,
36,
37,
283,
284,
285,
286,
287,
43,
44,
290,
291,
292,
293,
294,
),
"R": (
0,
1,
2,
3,
4,
5,
6,
105,
8,
9,
10,
11,
12,
13,
112,
15,
16,
17,
18,
19,
20,
119,
22,
23,
24,
25,
26,
27,
126,
29,
30,
31,
32,
33,
34,
133,
36,
37,
38,
39,
40,
41,
140,
43,
44,
45,
46,
47,
48,
147,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
252,
106,
107,
108,
109,
110,
111,
259,
113,
114,
115,
116,
117,
118,
266,
120,
121,
122,
123,
124,
125,
273,
127,
128,
129,
130,
131,
132,
280,
134,
135,
136,
137,
138,
139,
287,
141,
142,
143,
144,
145,
146,
294,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
192,
185,
178,
171,
164,
157,
150,
193,
186,
179,
172,
165,
158,
151,
194,
187,
180,
173,
166,
159,
152,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
49,
198,
199,
200,
201,
202,
203,
42,
205,
206,
207,
208,
209,
210,
35,
212,
213,
214,
215,
216,
217,
28,
219,
220,
221,
222,
223,
224,
21,
226,
227,
228,
229,
230,
231,
14,
233,
234,
235,
236,
237,
238,
7,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
239,
253,
254,
255,
256,
257,
258,
232,
260,
261,
262,
263,
264,
265,
225,
267,
268,
269,
270,
271,
272,
218,
274,
275,
276,
277,
278,
279,
211,
281,
282,
283,
284,
285,
286,
204,
288,
289,
290,
291,
292,
293,
197,
),
"R'": (
0,
1,
2,
3,
4,
5,
6,
239,
8,
9,
10,
11,
12,
13,
232,
15,
16,
17,
18,
19,
20,
225,
22,
23,
24,
25,
26,
27,
218,
29,
30,
31,
32,
33,
34,
211,
36,
37,
38,
39,
40,
41,
204,
43,
44,
45,
46,
47,
48,
197,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
7,
106,
107,
108,
109,
110,
111,
14,
113,
114,
115,
116,
117,
118,
21,
120,
121,
122,
123,
124,
125,
28,
127,
128,
129,
130,
131,
132,
35,
134,
135,
136,
137,
138,
139,
42,
141,
142,
143,
144,
145,
146,
49,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
152,
159,
166,
173,
180,
187,
194,
151,
158,
165,
172,
179,
186,
193,
150,
157,
164,
171,
178,
185,
192,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
294,
198,
199,
200,
201,
202,
203,
287,
205,
206,
207,
208,
209,
210,
280,
212,
213,
214,
215,
216,
217,
273,
219,
220,
221,
222,
223,
224,
266,
226,
227,
228,
229,
230,
231,
259,
233,
234,
235,
236,
237,
238,
252,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
105,
253,
254,
255,
256,
257,
258,
112,
260,
261,
262,
263,
264,
265,
119,
267,
268,
269,
270,
271,
272,
126,
274,
275,
276,
277,
278,
279,
133,
281,
282,
283,
284,
285,
286,
140,
288,
289,
290,
291,
292,
293,
147,
),
"R2": (
0,
1,
2,
3,
4,
5,
6,
252,
8,
9,
10,
11,
12,
13,
259,
15,
16,
17,
18,
19,
20,
266,
22,
23,
24,
25,
26,
27,
273,
29,
30,
31,
32,
33,
34,
280,
36,
37,
38,
39,
40,
41,
287,
43,
44,
45,
46,
47,
48,
294,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
239,
106,
107,
108,
109,
110,
111,
232,
113,
114,
115,
116,
117,
118,
225,
120,
121,
122,
123,
124,
125,
218,
127,
128,
129,
130,
131,
132,
211,
134,
135,
136,
137,
138,
139,
204,
141,
142,
143,
144,
145,
146,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
198,
199,
200,
201,
202,
203,
140,
205,
206,
207,
208,
209,
210,
133,
212,
213,
214,
215,
216,
217,
126,
219,
220,
221,
222,
223,
224,
119,
226,
227,
228,
229,
230,
231,
112,
233,
234,
235,
236,
237,
238,
105,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
7,
253,
254,
255,
256,
257,
258,
14,
260,
261,
262,
263,
264,
265,
21,
267,
268,
269,
270,
271,
272,
28,
274,
275,
276,
277,
278,
279,
35,
281,
282,
283,
284,
285,
286,
42,
288,
289,
290,
291,
292,
293,
49,
),
"Rw": (
0,
1,
2,
3,
4,
5,
104,
105,
8,
9,
10,
11,
12,
111,
112,
15,
16,
17,
18,
19,
118,
119,
22,
23,
24,
25,
26,
125,
126,
29,
30,
31,
32,
33,
132,
133,
36,
37,
38,
39,
40,
139,
140,
43,
44,
45,
46,
47,
146,
147,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
251,
252,
106,
107,
108,
109,
110,
258,
259,
113,
114,
115,
116,
117,
265,
266,
120,
121,
122,
123,
124,
272,
273,
127,
128,
129,
130,
131,
279,
280,
134,
135,
136,
137,
138,
286,
287,
141,
142,
143,
144,
145,
293,
294,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
192,
185,
178,
171,
164,
157,
150,
193,
186,
179,
172,
165,
158,
151,
194,
187,
180,
173,
166,
159,
152,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
49,
48,
199,
200,
201,
202,
203,
42,
41,
206,
207,
208,
209,
210,
35,
34,
213,
214,
215,
216,
217,
28,
27,
220,
221,
222,
223,
224,
21,
20,
227,
228,
229,
230,
231,
14,
13,
234,
235,
236,
237,
238,
7,
6,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
240,
239,
253,
254,
255,
256,
257,
233,
232,
260,
261,
262,
263,
264,
226,
225,
267,
268,
269,
270,
271,
219,
218,
274,
275,
276,
277,
278,
212,
211,
281,
282,
283,
284,
285,
205,
204,
288,
289,
290,
291,
292,
198,
197,
),
"Rw'": (
0,
1,
2,
3,
4,
5,
240,
239,
8,
9,
10,
11,
12,
233,
232,
15,
16,
17,
18,
19,
226,
225,
22,
23,
24,
25,
26,
219,
218,
29,
30,
31,
32,
33,
212,
211,
36,
37,
38,
39,
40,
205,
204,
43,
44,
45,
46,
47,
198,
197,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
6,
7,
106,
107,
108,
109,
110,
13,
14,
113,
114,
115,
116,
117,
20,
21,
120,
121,
122,
123,
124,
27,
28,
127,
128,
129,
130,
131,
34,
35,
134,
135,
136,
137,
138,
41,
42,
141,
142,
143,
144,
145,
48,
49,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
152,
159,
166,
173,
180,
187,
194,
151,
158,
165,
172,
179,
186,
193,
150,
157,
164,
171,
178,
185,
192,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
294,
293,
199,
200,
201,
202,
203,
287,
286,
206,
207,
208,
209,
210,
280,
279,
213,
214,
215,
216,
217,
273,
272,
220,
221,
222,
223,
224,
266,
265,
227,
228,
229,
230,
231,
259,
258,
234,
235,
236,
237,
238,
252,
251,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
104,
105,
253,
254,
255,
256,
257,
111,
112,
260,
261,
262,
263,
264,
118,
119,
267,
268,
269,
270,
271,
125,
126,
274,
275,
276,
277,
278,
132,
133,
281,
282,
283,
284,
285,
139,
140,
288,
289,
290,
291,
292,
146,
147,
),
"Rw2": (
0,
1,
2,
3,
4,
5,
251,
252,
8,
9,
10,
11,
12,
258,
259,
15,
16,
17,
18,
19,
265,
266,
22,
23,
24,
25,
26,
272,
273,
29,
30,
31,
32,
33,
279,
280,
36,
37,
38,
39,
40,
286,
287,
43,
44,
45,
46,
47,
293,
294,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
240,
239,
106,
107,
108,
109,
110,
233,
232,
113,
114,
115,
116,
117,
226,
225,
120,
121,
122,
123,
124,
219,
218,
127,
128,
129,
130,
131,
212,
211,
134,
135,
136,
137,
138,
205,
204,
141,
142,
143,
144,
145,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
199,
200,
201,
202,
203,
140,
139,
206,
207,
208,
209,
210,
133,
132,
213,
214,
215,
216,
217,
126,
125,
220,
221,
222,
223,
224,
119,
118,
227,
228,
229,
230,
231,
112,
111,
234,
235,
236,
237,
238,
105,
104,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
6,
7,
253,
254,
255,
256,
257,
13,
14,
260,
261,
262,
263,
264,
20,
21,
267,
268,
269,
270,
271,
27,
28,
274,
275,
276,
277,
278,
34,
35,
281,
282,
283,
284,
285,
41,
42,
288,
289,
290,
291,
292,
48,
49,
),
"U": (
0,
43,
36,
29,
22,
15,
8,
1,
44,
37,
30,
23,
16,
9,
2,
45,
38,
31,
24,
17,
10,
3,
46,
39,
32,
25,
18,
11,
4,
47,
40,
33,
26,
19,
12,
5,
48,
41,
34,
27,
20,
13,
6,
49,
42,
35,
28,
21,
14,
7,
99,
100,
101,
102,
103,
104,
105,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
148,
149,
150,
151,
152,
153,
154,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
197,
198,
199,
200,
201,
202,
203,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
50,
51,
52,
53,
54,
55,
56,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"U'": (
0,
7,
14,
21,
28,
35,
42,
49,
6,
13,
20,
27,
34,
41,
48,
5,
12,
19,
26,
33,
40,
47,
4,
11,
18,
25,
32,
39,
46,
3,
10,
17,
24,
31,
38,
45,
2,
9,
16,
23,
30,
37,
44,
1,
8,
15,
22,
29,
36,
43,
197,
198,
199,
200,
201,
202,
203,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
50,
51,
52,
53,
54,
55,
56,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
99,
100,
101,
102,
103,
104,
105,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
148,
149,
150,
151,
152,
153,
154,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"U2": (
0,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
148,
149,
150,
151,
152,
153,
154,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
197,
198,
199,
200,
201,
202,
203,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
50,
51,
52,
53,
54,
55,
56,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
99,
100,
101,
102,
103,
104,
105,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"Uw": (
0,
43,
36,
29,
22,
15,
8,
1,
44,
37,
30,
23,
16,
9,
2,
45,
38,
31,
24,
17,
10,
3,
46,
39,
32,
25,
18,
11,
4,
47,
40,
33,
26,
19,
12,
5,
48,
41,
34,
27,
20,
13,
6,
49,
42,
35,
28,
21,
14,
7,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"Uw'": (
0,
7,
14,
21,
28,
35,
42,
49,
6,
13,
20,
27,
34,
41,
48,
5,
12,
19,
26,
33,
40,
47,
4,
11,
18,
25,
32,
39,
46,
3,
10,
17,
24,
31,
38,
45,
2,
9,
16,
23,
30,
37,
44,
1,
8,
15,
22,
29,
36,
43,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"Uw2": (
0,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
),
"x": (
0,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
54,
61,
68,
75,
82,
89,
96,
53,
60,
67,
74,
81,
88,
95,
52,
59,
66,
73,
80,
87,
94,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
192,
185,
178,
171,
164,
157,
150,
193,
186,
179,
172,
165,
158,
151,
194,
187,
180,
173,
166,
159,
152,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
),
"x'": (
0,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
94,
87,
80,
73,
66,
59,
52,
95,
88,
81,
74,
67,
60,
53,
96,
89,
82,
75,
68,
61,
54,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
152,
159,
166,
173,
180,
187,
194,
151,
158,
165,
172,
179,
186,
193,
150,
157,
164,
171,
178,
185,
192,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
273,
272,
271,
270,
269,
268,
267,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
),
"x2": (
0,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
),
"y": (
0,
43,
36,
29,
22,
15,
8,
1,
44,
37,
30,
23,
16,
9,
2,
45,
38,
31,
24,
17,
10,
3,
46,
39,
32,
25,
18,
11,
4,
47,
40,
33,
26,
19,
12,
5,
48,
41,
34,
27,
20,
13,
6,
49,
42,
35,
28,
21,
14,
7,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
252,
259,
266,
273,
280,
287,
294,
251,
258,
265,
272,
279,
286,
293,
250,
257,
264,
271,
278,
285,
292,
249,
256,
263,
270,
277,
284,
291,
248,
255,
262,
269,
276,
283,
290,
247,
254,
261,
268,
275,
282,
289,
246,
253,
260,
267,
274,
281,
288,
),
"y'": (
0,
7,
14,
21,
28,
35,
42,
49,
6,
13,
20,
27,
34,
41,
48,
5,
12,
19,
26,
33,
40,
47,
4,
11,
18,
25,
32,
39,
46,
3,
10,
17,
24,
31,
38,
45,
2,
9,
16,
23,
30,
37,
44,
1,
8,
15,
22,
29,
36,
43,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
288,
281,
274,
267,
260,
253,
246,
289,
282,
275,
268,
261,
254,
247,
290,
283,
276,
269,
262,
255,
248,
291,
284,
277,
270,
263,
256,
249,
292,
285,
278,
271,
264,
257,
250,
293,
286,
279,
272,
265,
258,
251,
294,
287,
280,
273,
266,
259,
252,
),
"y2": (
0,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
273,
272,
271,
270,
269,
268,
267,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
),
"z": (
0,
92,
85,
78,
71,
64,
57,
50,
93,
86,
79,
72,
65,
58,
51,
94,
87,
80,
73,
66,
59,
52,
95,
88,
81,
74,
67,
60,
53,
96,
89,
82,
75,
68,
61,
54,
97,
90,
83,
76,
69,
62,
55,
98,
91,
84,
77,
70,
63,
56,
288,
281,
274,
267,
260,
253,
246,
289,
282,
275,
268,
261,
254,
247,
290,
283,
276,
269,
262,
255,
248,
291,
284,
277,
270,
263,
256,
249,
292,
285,
278,
271,
264,
257,
250,
293,
286,
279,
272,
265,
258,
251,
294,
287,
280,
273,
266,
259,
252,
141,
134,
127,
120,
113,
106,
99,
142,
135,
128,
121,
114,
107,
100,
143,
136,
129,
122,
115,
108,
101,
144,
137,
130,
123,
116,
109,
102,
145,
138,
131,
124,
117,
110,
103,
146,
139,
132,
125,
118,
111,
104,
147,
140,
133,
126,
119,
112,
105,
43,
36,
29,
22,
15,
8,
1,
44,
37,
30,
23,
16,
9,
2,
45,
38,
31,
24,
17,
10,
3,
46,
39,
32,
25,
18,
11,
4,
47,
40,
33,
26,
19,
12,
5,
48,
41,
34,
27,
20,
13,
6,
49,
42,
35,
28,
21,
14,
7,
203,
210,
217,
224,
231,
238,
245,
202,
209,
216,
223,
230,
237,
244,
201,
208,
215,
222,
229,
236,
243,
200,
207,
214,
221,
228,
235,
242,
199,
206,
213,
220,
227,
234,
241,
198,
205,
212,
219,
226,
233,
240,
197,
204,
211,
218,
225,
232,
239,
190,
183,
176,
169,
162,
155,
148,
191,
184,
177,
170,
163,
156,
149,
192,
185,
178,
171,
164,
157,
150,
193,
186,
179,
172,
165,
158,
151,
194,
187,
180,
173,
166,
159,
152,
195,
188,
181,
174,
167,
160,
153,
196,
189,
182,
175,
168,
161,
154,
),
"z'": (
0,
154,
161,
168,
175,
182,
189,
196,
153,
160,
167,
174,
181,
188,
195,
152,
159,
166,
173,
180,
187,
194,
151,
158,
165,
172,
179,
186,
193,
150,
157,
164,
171,
178,
185,
192,
149,
156,
163,
170,
177,
184,
191,
148,
155,
162,
169,
176,
183,
190,
7,
14,
21,
28,
35,
42,
49,
6,
13,
20,
27,
34,
41,
48,
5,
12,
19,
26,
33,
40,
47,
4,
11,
18,
25,
32,
39,
46,
3,
10,
17,
24,
31,
38,
45,
2,
9,
16,
23,
30,
37,
44,
1,
8,
15,
22,
29,
36,
43,
105,
112,
119,
126,
133,
140,
147,
104,
111,
118,
125,
132,
139,
146,
103,
110,
117,
124,
131,
138,
145,
102,
109,
116,
123,
130,
137,
144,
101,
108,
115,
122,
129,
136,
143,
100,
107,
114,
121,
128,
135,
142,
99,
106,
113,
120,
127,
134,
141,
252,
259,
266,
273,
280,
287,
294,
251,
258,
265,
272,
279,
286,
293,
250,
257,
264,
271,
278,
285,
292,
249,
256,
263,
270,
277,
284,
291,
248,
255,
262,
269,
276,
283,
290,
247,
254,
261,
268,
275,
282,
289,
246,
253,
260,
267,
274,
281,
288,
239,
232,
225,
218,
211,
204,
197,
240,
233,
226,
219,
212,
205,
198,
241,
234,
227,
220,
213,
206,
199,
242,
235,
228,
221,
214,
207,
200,
243,
236,
229,
222,
215,
208,
201,
244,
237,
230,
223,
216,
209,
202,
245,
238,
231,
224,
217,
210,
203,
56,
63,
70,
77,
84,
91,
98,
55,
62,
69,
76,
83,
90,
97,
54,
61,
68,
75,
82,
89,
96,
53,
60,
67,
74,
81,
88,
95,
52,
59,
66,
73,
80,
87,
94,
51,
58,
65,
72,
79,
86,
93,
50,
57,
64,
71,
78,
85,
92,
),
"z2": (
0,
294,
293,
292,
291,
290,
289,
288,
287,
286,
285,
284,
283,
282,
281,
280,
279,
278,
277,
276,
275,
274,
273,
272,
271,
270,
269,
268,
267,
266,
265,
264,
263,
262,
261,
260,
259,
258,
257,
256,
255,
254,
253,
252,
251,
250,
249,
248,
247,
246,
196,
195,
194,
193,
192,
191,
190,
189,
188,
187,
186,
185,
184,
183,
182,
181,
180,
179,
178,
177,
176,
175,
174,
173,
172,
171,
170,
169,
168,
167,
166,
165,
164,
163,
162,
161,
160,
159,
158,
157,
156,
155,
154,
153,
152,
151,
150,
149,
148,
147,
146,
145,
144,
143,
142,
141,
140,
139,
138,
137,
136,
135,
134,
133,
132,
131,
130,
129,
128,
127,
126,
125,
124,
123,
122,
121,
120,
119,
118,
117,
116,
115,
114,
113,
112,
111,
110,
109,
108,
107,
106,
105,
104,
103,
102,
101,
100,
99,
98,
97,
96,
95,
94,
93,
92,
91,
90,
89,
88,
87,
86,
85,
84,
83,
82,
81,
80,
79,
78,
77,
76,
75,
74,
73,
72,
71,
70,
69,
68,
67,
66,
65,
64,
63,
62,
61,
60,
59,
58,
57,
56,
55,
54,
53,
52,
51,
50,
245,
244,
243,
242,
241,
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229,
228,
227,
226,
225,
224,
223,
222,
221,
220,
219,
218,
217,
216,
215,
214,
213,
212,
211,
210,
209,
208,
207,
206,
205,
204,
203,
202,
201,
200,
199,
198,
197,
49,
48,
47,
46,
45,
44,
43,
42,
41,
40,
39,
38,
37,
36,
35,
34,
33,
32,
31,
30,
29,
28,
27,
26,
25,
24,
23,
22,
21,
20,
19,
18,
17,
16,
15,
14,
13,
12,
11,
10,
9,
8,
7,
6,
5,
4,
3,
2,
1,
),
}
|
"""
Put .txt files for custom reference spectra in here ( each line should contain a wavelength, reflectance pair) and they
will be loaded automatically as global variables. For example *MySpectra.txt* would become accessible as
*hylite.reference.spectra.MySpectra*.
""" |
"""
___NOMEATRIBUTO Simboliza FORTEMENTE que o atributo ou método não deve ser acessado ou modificado fora da classe
Neste caso, o simbolismo é tamanho que para conseguir se acessar tal atributo ou método, é necessário usar: instancia._NOMECLASSE__nomeatributo/metodo
"""
class Carro:
def __init__(self):
# Perceba que a lista de carros começa com "_", isso demonstra que este atributo é "privado" e não deve ser acessado fora da classe
self.__lista_carros = {}
def inserir_carro(self, id, nome):
if 'carros' in self.__lista_carros:
self.__lista_carros['carros'].update({id:nome})
else:
self.__lista_carros['carros'] = {id:nome}
def remover_carro(self, id):
del self.__lista_carros['carros'][id]
def mostrar_carros(self):
for id, nome in self.__lista_carros['carros'].items():
print(id, nome)
c1 = Carro()
c1.inserir_carro(1, 'Corsa')
c1.inserir_carro(2, 'Mustang')
c1.inserir_carro(3, 'Camaro')
# O código abaixo exibe um erro, não é possível acessá-lo desta forma
# print(c1.__lista_carros)
# Para acessá-lo é necessário fazer da seguinte forma:
print(c1._Carro__lista_carros) # Lembrando que NÃO É PARA ACESSÁ-LO DE FORA DA CLASSE
|
#
# PySNMP MIB module FSM7326-POWER-ETHERNET-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/FSM7326-POWER-ETHERNET-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:02:42 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsIntersection")
fsm7326, = mibBuilder.importSymbols("FSM7326-REF-MIB", "fsm7326")
pethPsePortEntry, = mibBuilder.importSymbols("POWER-ETHERNET-MIB", "pethPsePortEntry")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
NotificationType, MibIdentifier, Counter64, ObjectIdentity, Unsigned32, ModuleIdentity, iso, Bits, TimeTicks, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, IpAddress, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "MibIdentifier", "Counter64", "ObjectIdentity", "Unsigned32", "ModuleIdentity", "iso", "Bits", "TimeTicks", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "IpAddress", "Counter32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
fsm7326powerEthernetMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15))
fsm7326powerEthernetMIB.setRevisions(('2003-11-10 12:00',))
if mibBuilder.loadTexts: fsm7326powerEthernetMIB.setLastUpdated('200311101200Z')
if mibBuilder.loadTexts: fsm7326powerEthernetMIB.setOrganization('Netgear')
agentPethObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1))
agentPethPsePortTable = MibTable((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1, 1), )
if mibBuilder.loadTexts: agentPethPsePortTable.setStatus('current')
agentPethPsePortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1, 1, 1), )
pethPsePortEntry.registerAugmentions(("FSM7326-POWER-ETHERNET-MIB", "agentPethPsePortEntry"))
agentPethPsePortEntry.setIndexNames(*pethPsePortEntry.getIndexNames())
if mibBuilder.loadTexts: agentPethPsePortEntry.setStatus('current')
agentPethPowerLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1, 1, 1, 1), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(3, 16))).setUnits('Watts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentPethPowerLimit.setStatus('current')
agentPethOutputPower = MibTableColumn((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1, 1, 1, 2), Gauge32()).setUnits('Milliwatts').setMaxAccess("readonly")
if mibBuilder.loadTexts: agentPethOutputPower.setStatus('current')
agentPethOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1, 1, 1, 3), Gauge32()).setUnits('Milliamps').setMaxAccess("readonly")
if mibBuilder.loadTexts: agentPethOutputCurrent.setStatus('current')
agentPethOutputVolts = MibTableColumn((1, 3, 6, 1, 4, 1, 4526, 1, 9, 15, 1, 1, 1, 4), Gauge32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: agentPethOutputVolts.setStatus('current')
mibBuilder.exportSymbols("FSM7326-POWER-ETHERNET-MIB", agentPethOutputCurrent=agentPethOutputCurrent, PYSNMP_MODULE_ID=fsm7326powerEthernetMIB, agentPethPowerLimit=agentPethPowerLimit, agentPethOutputVolts=agentPethOutputVolts, fsm7326powerEthernetMIB=fsm7326powerEthernetMIB, agentPethOutputPower=agentPethOutputPower, agentPethPsePortTable=agentPethPsePortTable, agentPethPsePortEntry=agentPethPsePortEntry, agentPethObjects=agentPethObjects)
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Python Cursor on Target Module Tests."""
__author__ = 'Greg Albrecht W2GMD <oss@undef.net>'
__copyright__ = 'Copyright 2020 Orion Labs, Inc.'
__license__ = 'Apache License, Version 2.0'
|
"""
*WATER BALLOON
Once a water balloon pops, is soaks the area around it.
The ground gets drier the further away you travel from the balloon.
The effect of a water balloon popping can be modeled using a list.
Create a function that takes a list which takes the pre-pop state and returns the state after the balloon is popped.
The pre-pop state will contain at most a single balloon, whose size is represented by the only non-zero element.
*NOTE
-Length of input list is always odd.
-The input list will always be the exact length it takes for there to be exactly one border zero.
-If the input list consists only of zeroes, return the same list.
*EXAMPLE
pop([0, 0, 0, 0, 4, 0, 0, 0, 0]) ➞ [0, 1, 2, 3, 4, 3, 2, 1, 0]
pop([0, 0, 0, 3, 0, 0, 0]) ➞ [0, 1, 2, 3, 2, 1, 0]
pop([0, 0, 2, 0, 0]) ➞ [0, 1, 2, 1, 0]
pop([0]) ➞ [0]
"""
# new_state = []
def pop(state):
new_state = []
len_state = 0
pop_size = sum(state)
for _ in range(pop_size): #iterates upto pop_size - 1
new_state.append(len_state)
len_state+=1
new_state.append(pop_size)
len_state = pop_size -1
for _ in range(pop_size):
new_state.append(len_state)
len_state-=1
return new_state
|
"""
- start with 1 map to verify
- 100 epochs for training
- make the POD size 80% (tile changes) of map size
- randomize the steps amongst the file so it doesnt overfit
- shuffle the sequences
- env always gvies 2D int array
-
""" |
"""
On a 2-dimensional grid, there are 4 types of squares:
1 represents the starting square. There is exactly one starting square.
2 represents the ending square. There is exactly one ending square.
0 represents empty squares we can walk over.
-1 represents obstacles that we cannot walk over.
Return the number of 4-directional walks from the starting square to the ending square,
that walk over every non-obstacle square exactly once.
Hint: a standard backtracking problem, similar with 8-queens problem
"""
class Solution:
def uniquePathsIII(self, grid: List[List[int]]) -> int:
rowNum = len(grid)
colNum = len(grid[0])
# Find the starting point, and the number of empty cells.
emptyCount = 0
startPos = (0, 0)
for row in range(0, rowNum):
for col in range(0, colNum):
cell = grid[row][col]
if cell == 0:
emptyCount = emptyCount + 1
elif cell == 1:
startPos = (row, col)
def nextPosition(row, col, dirIndex):
""" calculate the next valid move """
nonlocal rowNum, colNum
# up, right, down, left
DIRECTIONS = [(-1, 0), (0, 1), (1, 0), (0, -1)]
newRow = row + DIRECTIONS[dirIndex][0]
newCol = col + DIRECTIONS[dirIndex][1]
if newRow < 0 or newRow >= rowNum:
return (-1, -1)
elif newCol < 0 or newCol >= colNum:
return (-1, -1)
else:
return (newRow, newCol)
# A standard backtracking algorithm, to explore all paths.
visited = set()
pathCount = 0
def backtracking(pos):
nonlocal pathCount
oldRow, oldCol = pos
for dirIndex in range(0, 4):
nextPos = nextPosition(oldRow, oldCol, dirIndex)
if nextPos[0] == -1 or nextPos in visited:
continue
row, col = nextPos
cell = grid[row][col]
if cell == 2:
# reach the destination
if len(visited) == emptyCount + 1:
pathCount = pathCount + 1
# reach the destination,
# exit to avoid the unnecessary exploration
continue
elif cell == -1:
continue # obstacle
# possible path, explore further, and mark the option
visited.add(nextPos)
backtracking(nextPos)
# unmark the option, try next direction
visited.remove(nextPos)
visited.add(startPos)
backtracking(startPos)
return pathCount
|
# -*- coding: utf-8 -*-
"""
Created on Thu Nov 19 21:13:47 2020
"""
class Fahrzeug:
#1. Erstellen Sie eine Klasse Fahrzeug, die die Attribute bezeichnung,
# neupreis, alter, und den Wertverlust pro Jahr wertverlust übergeben bekommt.
# wertverlust soll dabei als privates Attribut gespeichert werden.
# Berechnen Sie im Konstruktor außerdem den Restwert
# (Restwert = Neupreis - Alter in Jahren * Wertverlust pro Jahr) und
# speichern Sie ihn als Klassenattribut restwert ab.
# Das Erstellen eines Objekts könnte z.B. so aussehen:
def __init__(self,bezeichnung,neupreis,alter,wertverlust):
self.bezeichnung= bezeichnung
self.neupreis=neupreis
self.alter=alter
self.set_Wertverlust(wertverlust) #loss of value, depreciasion
self.restwert =self.neupreis - (self.alter * self.get_Wertverlust()) #residual value
#2. Erstellen Sie eine Methode get_Wertverlust, die den Wertverlust des
# jeweiligen Fahrzeugs zurückgibt, und eine Methode set_Wertverlust,
# über die sich der Wertverlust setzen lässt. Achten Sie dabei darauf,
# dass in der Set Methode der Restwert des Fahrzeugs neu berechnet werden muss.
#@property
def get_Wertverlust(self):
return self._wertverlust
#@get_Wertverlust.setter
def set_Wertverlust(self,wertverlust):
self._wertverlust=wertverlust
Wertverlust=property(get_Wertverlust,set_Wertverlust)
#3. Überladen Sie den < Operator (__lt__), sodass der Restwert zweier
# verschiedener Fahrzeug-Objekte miteinander verglichen wird.
def __lt__(self, other):
in1=self.restwert
in2=other.restwert
if in1<in2:
return "True"
else:
return "False"
if __name__ == "__main__":
# 1.Erstellen eines Objekts vom Typ Fahrzeug
VWGolf = Fahrzeug ("VW Golf", 25000.0, 5, 2500.0)
print (VWGolf.restwert)
# 2. Testen der Funktion get() set()
print(VWGolf.get_Wertverlust())
VWGolf.set_Wertverlust(3000.0)
print(VWGolf.get_Wertverlust())
print(VWGolf.restwert)
# 3. Testen der Funktion lt()
VWGolf = Fahrzeug("VW Golf", 25000.0, 5, 2500.0)
Porsche911 = Fahrzeug("Porsche 911", 100000.0, 2, 10000.0)
print(Porsche911 > VWGolf)
print(Porsche911 < VWGolf)
|
name_list = ["鈴木", "佐藤", "山田"]
position = ["部長", "課長", "係長"]
# name_listに藤田、positionに大統領を追加してみよう!
print("====要素追加===")
name_list.append("藤田")
position.append("大統領")
# 要素番号 1に追加してみよう
name_list.insert(1,"藤田")
print(name_list)
print(position)
print("====要素削除(末尾)===")
# name_listの最後の要素番号を削除しよう!
name_list.pop()
# positionの先頭の要素番号を削除しよう!
position.pop(0)
print(name_list)
print(position) |
ATOMICLONG_APPLY = 0x0a01
ATOMICLONG_ALTER = 0x0a02
ATOMICLONG_ALTERANDGET = 0x0a03
ATOMICLONG_GETANDALTER = 0x0a04
ATOMICLONG_ADDANDGET = 0x0a05
ATOMICLONG_COMPAREANDSET = 0x0a06
ATOMICLONG_DECREMENTANDGET = 0x0a07
ATOMICLONG_GET = 0x0a08
ATOMICLONG_GETANDADD = 0x0a09
ATOMICLONG_GETANDSET = 0x0a0a
ATOMICLONG_INCREMENTANDGET = 0x0a0b
ATOMICLONG_GETANDINCREMENT = 0x0a0c
ATOMICLONG_SET = 0x0a0d
|
# Copyright (c) 2021 Works Applications Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
class Flags:
def __init__(self, has_ambiguity, is_noun, form_type, acronym_type, variant_type):
"""Constructs flags of a synonym.
Args:
has_ambiguity (bool): ``True`` if a synonym is ambiguous, ``False`` otherwise
is_noun (bool): ``True`` if a synonym is a noun, ``False`` otherwise
form_type (int): a word form type of a synonym
acronym_type (int): an acronym type of a synonym
variant_type (int): a variant type of a synonym
"""
self._has_ambiguity = has_ambiguity
self._is_noun = is_noun
self._form_type = form_type
self._acronym_type = acronym_type
self._variant_type = variant_type
@classmethod
def from_int(cls, flags):
"""Reads and returns flags from the specified int value.
Args:
flags (int): int-type flag
Returns:
Flags: a flags of a synonym
"""
has_ambiguity = ((flags & 0x0001) == 1)
is_noun = ((flags & 0x0002) == 2)
form_type = (flags >> 2) & 0x0007
acronym_type = (flags >> 5) & 0x0003
variant_type = (flags >> 7) & 0x0003
return cls(has_ambiguity, is_noun, form_type, acronym_type, variant_type)
@property
def has_ambiguity(self):
"""bool: ``True`` if a synonym is ambiguous, ``False`` otherwise"""
return self._has_ambiguity
@property
def is_noun(self):
"""bool: ``True`` if a synonym is a noun, ``False`` otherwise"""
return self._is_noun
@property
def form_type(self):
"""int: a word form type of a synonym"""
return self._form_type
@property
def acronym_type(self):
"""int: an acronym type of a synonym"""
return self._acronym_type
@property
def variant_type(self):
"""int: a variant type of a synonym"""
return self._variant_type
def encode(self):
"""Encodes this ``Flags`` object.
Returns:
int: encoded flags
"""
flags = 0
flags |= 1 if self.has_ambiguity else 0
flags |= (1 if self.is_noun else 0) << 1
flags |= self.form_type << 2
flags |= self.acronym_type << 5
flags |= self.variant_type << 7
return flags
|
class Solution:
"""
633.平方数之和 | 难度:中等 | 标签:数学
给定一个非负整数 c ,你要判断是否存在两个整数 a 和 b,使得 a^2 + b^2 = c 。
<p>
示例 1:
输入:c = 5
输出:true
解释:1 * 1 + 2 * 2 = 5
<p>
示例 2:
输入:c = 3
输出:false
<p>
示例 3:
输入:c = 4
输出:true
<p>
示例 4:
输入:c = 2
输出:true
<p>
示例 5:
输入:c = 1
输出:true
<p>
提示:
0 <= c <= 2^31 - 1
<p>
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/sum-of-square-numbers
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
"""
def judgeSquareSum(self, c: int) -> bool:
"""
执行用时: 216 ms , 在所有 Python3 提交中击败了 65.40% 的用户
内存消耗: 14.8 MB , 在所有 Python3 提交中击败了 55.65% 的用户
:param c:
:return:
"""
upLimit = int(c ** 0.5)
for a in range(0, upLimit + 1):
b = int((c - a * a) ** 0.5)
if b * b + a * a == c:
return True
return False
|
# -*- coding: utf-8 -*-
qntCasos = int(input())
for caso in range(qntCasos):
strDieta = input()
strCafeDaManha = input()
strAlmoco = input()
EhCheater = False
for indice in range(len(strCafeDaManha)):
if strCafeDaManha[indice] in strDieta: strDieta = strDieta.replace(strCafeDaManha[indice], "")
else: EhCheater = True
for indice in range(len(strAlmoco)):
if strAlmoco[indice] in strDieta: strDieta = strDieta.replace(strAlmoco[indice], "")
else: EhCheater = True
if EhCheater == True: print("CHEATER")
else: print("".join(sorted(strDieta))) |
def skipbigrams(text):
bigrams = list()
for i in range(0, len(text)-2):
bigrams.append((text[i], text[i+2]))
return bigrams |
## \file OutputFormat.py
# \author Naveen Ganesh Muralidharan
# \brief Provides the function for writing outputs
## \brief Writes the output values to output.txt
# \param y_t Process Variable: The output value from the power plant
def write_output(y_t):
outputfile = open("output.txt", "w")
print("y_t = ", end="", file=outputfile)
print(y_t, file=outputfile)
outputfile.close()
|
class Solution:
def lengthOfLongestSubstring(self, s: str) -> int:
bInx, mLan, sMap = 0, 0, {}
for i, v in enumerate(s):
if v in sMap and sMap[v] >= bInx:
if mLan < i - bInx:
mLan = i - bInx
bInx = sMap[v] + 1
elif i == len(s) - 1 and i - bInx + 1 > mLan:
mLan = i - bInx + 1
sMap[v] = i
return mLan |
# https://app.codesignal.com/arcade/code-arcade/lab-of-transformations/ngQTG9kra7GE9pnnK
def newNumeralSystem(az_digit):
# The system effectively is a base-26 numeric system in which the letters
# from A to Z are the az_digits.
#
# Create a mapping from a uppercase letter to its index.
system = { i : chr(i + ord('A')) for i in range(ord('Z') - ord('A') + 1) }
# We want to find which pair of other "az-digits" in the system can be added
# up to the given "digit".
idx_to_find = ord(az_digit) - ord('A')
results = []
# Do it until the middle to only a pair once, with the first lower than the
# second, like "B + F" because "F + B" is a redundancy.
for idx_1 in range(idx_to_find//2 + 1):
idx_2 = idx_to_find - idx_1
if idx_2 in system:
chr_1 = system[idx_1]
chr_2 = system[idx_2]
results.append("{} + {}".format(chr_1, chr_2))
return results
|
n = int(input('Digite um número:'))
s = n + 1
a = n - 1
print('Seu sucessor é {} e seu antecessor é {}.'.format(s, a))
|
class REPL_STATE:
NONE = 0
CONNECT = 1
CONNECTING = 2
RECEIVE_PING_REPLY = 3
SEND_HANDSHAKE = 4
RECEIVE_AUTH_REPLY = 5
RECEIVE_PORT_REPLY = 6
RECEIVE_IP_REPLY = 7
RECEIVE_CAPA_REPLY = 8
SEND_PSYNC = 9
RECEIVE_PSYNC_REPLY = 10
TRANSFER = 11
CONNECTED = 12
class REPL_SLAVE_STATE:
NONE = 0
CONNECT = 1
CONNECTING = 2
RECEIVE_PONG = 3
SEND_AUTH = 4
RECEIVE_AUTH = 5
SEND_PORT = 6
RECEIVE_PORT = 7
SEND_IP = 8
RECEIVE_IP = 9
SEND_CAPA = 10
SEND_PSYNC = 11
RECEIVE_PSYNC = 12
TRANSFER = 13
CONNECTED = 14
|
# The new config inherits a base config to highlight the necessary modification
_base_ = '../retinanet/retinanet_r50_fpn_1x_coco.py'
# We also need to change the num_classes in head to match the dataset's annotation
model = dict(
bbox_head=dict(
num_classes=1))
# dataset settings
dataset_type = 'COCODataset'
classes = ('balloon',)
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [
dict(type='LoadImageFromFile'),
dict(type='LoadAnnotations', with_bbox=True),
dict(type='Resize', img_scale=(1333, 800), keep_ratio=True),
dict(type='RandomFlip', flip_ratio=0.5),
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad', size_divisor=32),
dict(type='DefaultFormatBundle'),
dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels']),
]
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(
type='MultiScaleFlipAug',
img_scale=(1333, 800),
flip=False,
transforms=[
dict(type='Resize', keep_ratio=True),
dict(type='RandomFlip'),
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad', size_divisor=32),
dict(type='ImageToTensor', keys=['img']),
dict(type='Collect', keys=['img']),
])
]
data = dict(
samples_per_gpu=16,
workers_per_gpu=8,
train=dict(
img_prefix='data/balloon/train/',
classes=classes,
ann_file='data/balloon/train/annotation_coco.json'),
val=dict(
img_prefix='data/balloon/val/',
classes=classes,
ann_file='data/balloon/val/annotation_coco.json'),
test=dict(
img_prefix='data/balloon/val/',
classes=classes,
ann_file='data/balloon/val/annotation_coco.json'))
evaluation = dict(interval=1, metric='bbox')
# optimizer
optimizer = dict(type='SGD', lr=0.01, momentum=0.9, weight_decay=0.0001)
optimizer_config = dict(grad_clip=None)
# learning policy
lr_config = dict(
policy='step',
warmup='linear',
warmup_iters=10,
warmup_ratio=0.001,
step=[30, 40])
runner = dict(type='EpochBasedRunner', max_epochs=50)
checkpoint_config = dict(interval=10)
# yapf:disable
log_config = dict(
interval=1,
hooks=[
dict(type='TextLoggerHook'),
dict(type='TensorboardLoggerHook')
])
# yapf:enable
custom_hooks = [dict(type='NumClassCheckHook')]
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = 'checkpoints/retinanet_r50_fpn_1x_coco_20200130-c2398f9e.pth'
resume_from = None
workflow = [('train', 1)]
|
def lucas(n):
if(n==0):
return 2
if(n==1):
return 1
return lucas(n-1)+lucas(n-2)
n=9
print(lucas(n)) |
# -*- coding: utf-8 -*-
"""
Build a program to print a graph like:
*
***
*****
*******
Try to code as easy as you can.
"""
for i in range(1, 5):
print(' ' * (4 - (i - 1)) + '*' * (2 * i - 1))
|
def isPandigital(string):
check = "".join(sorted(string))
if check == "123456789":
return True
return False
def check_pandigital_Product(num):
i = 1
while i*i <= num:
if num%i == 0 and isPandigital(str(num) + str(i) + str(num//i)):
return True
i+=1
return False
sum = 0
for i in range(0,10000):
if check_pandigital_Product(i):
sum+=i
print(sum)
|
class Persona:
def __init__(self,id,nombre,apellido,fechan,sexo,nombre_us,contraseña,especialidad,telefono,tipo):
self.id = id
self.nombre = nombre
self.apellido = apellido
self.fechan = fechan
self.sexo = sexo
self.nombre_us = nombre_us
self.contraseña = contraseña
self.especialidad = especialidad
self.telefono = telefono
self.tipo = tipo
# METODOS GET
def getId(self):
return self.id
def getNombre(self):
return self.nombre
def getApellido(self):
return self.apellido
def getFechan(self):
return self.fechan
def getSexo(self):
return self.sexo
def getNombre_us(self):
return self.nombre_us
def getContraseña(self):
return self.contraseña
def getEspecialidad(self):
return self.especialidad
def getTelefono(self):
return self.telefono
def getTipo(self):
return self.tipo
# METODOS SET
def setId(self, id):
self.id = id
def setNombre(self, nombre):
self.nombre = nombre
def setApellido(self, apellido):
self.apellido = apellido
def setFechan(self,fechan):
return self.fechan
def setSexo(self,sexo):
return self.sexo
def setNombre_us(self,nombre_us):
return self.nombre_us
def setContraseña(self,contraseña):
return self.contraseña
def setEspecialidad(self,especialidad):
return self.especialidad
def setTelefono(self,telefono):
return self.telefono
def setTipo(self,tipo):
return self.tipo |
# -*- coding: utf-8 -*-
class InstanceLimitReached(Exception):
pass
class InstanceCreationError(Exception):
pass
|
# Numero perfeito
def perfeito():
print("Determina se um número n é perfeito\n")
lista = []
while len(lista) != 5:
soma = 0
if len(lista) == 5:
break
n = int(input("Digite o valor de n: "))
for c in range(1,n):
if n % c == 0:
soma += c
if n == soma:
print("O numero %d é perfeito" %(n))
lista.append(soma)
else:
print("O numero %d nao é perfeito\n" %(n))
print('os 5 primeiros numeros perfeitos digitados foram: ', lista)
perfeito() |
# Copyright 2017 Workiva
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
class FTransportFactory(object):
"""
FTransportFactory is responsible for creating new FTransports.
"""
def get_transport(self, thrift_transport):
"""
Retuns a new FTransport wrapping the given TTransport.
Args:
thrift_transport: TTransport to wrap.
Returns:
new FTranpsort
"""
pass
class FPublisherTransportFactory(object):
"""
FPublisherTransportFactory is responsible for creating new
FPublisherTransports.
"""
def get_transport(self):
"""
Returns a new FPublisherTransport.
"""
pass
class FSubscriberTransportFactory(object):
"""
FSubscriberTransportFactory is responsible for creating new
FSubscriberTransports.
"""
def get_transport(self):
"""
Returns a new FSubscriberTransport.
"""
pass
|
# generated from genmsg/cmake/pkg-genmsg.context.in
messages_str = "/home/venom/ros/demo2_ws/src/ROS_Gazebo_Tutorial/pal_person_detector_opencv/msg/Detection2d.msg;/home/venom/ros/demo2_ws/src/ROS_Gazebo_Tutorial/pal_person_detector_opencv/msg/Detections2d.msg"
services_str = ""
pkg_name = "pal_person_detector_opencv"
dependencies_str = "geometry_msgs"
langs = "gencpp;geneus;genlisp;gennodejs;genpy"
dep_include_paths_str = "pal_person_detector_opencv;/home/venom/ros/demo2_ws/src/ROS_Gazebo_Tutorial/pal_person_detector_opencv/msg;geometry_msgs;/opt/ros/melodic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/melodic/share/std_msgs/cmake/../msg"
PYTHON_EXECUTABLE = "/usr/bin/python2"
package_has_static_sources = '' == 'TRUE'
genmsg_check_deps_script = "/opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py"
|
# Desenvolva um programa que leia seis números inteiros e mostre a soma apenas
# daqueles que forem pares. Se o valor digitado for ímpar, desconsidere-o.
s = 0
cont = 0
for c in range(1, 7):
num = int(input(f'Digite o {c}° valor: '))
if c % 2 == 0:
s += c
cont += 1
print(f'Você informou {cont} números pares, a soma deles é {s}.')
|
with open('./results.txt') as f:
lines = f.readlines()
f.close()
goSnakeWins = 0
antiBlobWins = 0
for i in range(0, len(lines)):
#if len(lines[i]) < 100:
#print(lines[i], end = "")
if "DONE" in lines[i]:
#print(lines[i], end = "")
if "20blobby2" in lines[i]:
goSnakeWins += 1
if "anti-blobby" in lines[i]:
antiBlobWins += 1
print("Results:")
print("20blobby2: ", goSnakeWins, " wins")
print("anti-blobby", antiBlobWins, " wins")
|
# Problem 136: Single Number
class Solution:
# Approach 1 - Sort
def singleNumber1(self, nums) -> int:
if nums == []:
return None
nums.sort()
index = 0
while index != len(nums)-1 and nums[index] == nums[index+1]:
index += 2
return nums[index]
# Approach 2 - Arithmetic
def singleNumber(self, nums) -> int:
return (2 * sum(set(nums))) - sum(nums)
# Approach 3 - Bit manipulation - XOR
def singleNumber3(self, nums) -> int:
foo = 0
for num in nums:
foo = foo ^ num
return foo
# Test
solution = Solution()
# Expected: 1
nums = [2,3,2,3,6,1,6]
print(solution.singleNumber(nums))
|
def metade(p):
return p / 2
def dobro(p):
return p * 2
def aumentar(p, au):
jur = au / 100
return p + (p * jur)
def diminuir(p, di):
jur = di / 100
return p - (p * jur)
|
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 09 19:02:15 2015
@author: Shamir
"""
for i in range(1, num_rows):
euclidean_distance = []
for j in range(1, num_columns):
prev_column = j - 1
distance = euclidean(file.values[i, prev_column], file.values[i, j])
euclidean_distance.append(distance)
euclidean_distance = np.asarray(euclidean_distance)
threshold = euclidean_distance.max() * 0.2
noisy_data = euclidean_distance[euclidean_distance > threshold]
noisy_index = []
for k in range(len(noisy_data)):
noisy_index.append(np.where(euclidean_distance == noisy_data[k])[0][0] + 1)
if k > 0: # compare with previous index value to...
if noisy_index[k] == noisy_index[k-1]: # check if index values are same because of identical values of adjacent datapoints in the actual dataset
noisy_index[k] = noisy_index[k] + 1 # increment index value by 1 to capture the accurate index
noisy_index = np.asarray(noisy_index)
corrupted_data = 0
for noise in range(len(noisy_index)): # check for every pair because each pair of euclidean peaks corresponds to one noisy/corrupted datapoint
prev_point = noisy_index[noise] - 1
next_point = noisy_index[noise] + 1
secNext_point = noisy_index[noise] + 2
window_bound = noisy_index[noise] + 3
if noise < (len(noisy_index) - 2) and (noisy_index[noise + 1] == noisy_index[noise] + 1): # check if it's a pair of adjacent peaks
if noisy_index[noise + 2] != noisy_index[noise + 1] + 1:
file.values[i, noisy_index[noise]] = linearInterpolation(noisy_index[noise] - 1, noisy_index[noise], noisy_index[noise] + 1)
elif noise < (len(noisy_index) - 3) and (noisy_index[noise + 3] != noisy_index[noise + 2] + 1):
file.values[i, noisy_index[noise]] = linearInterpolation(noisy_index[noise] - 1, noisy_index[noise], noisy_index[noise] + 2)
file.values[i, noisy_index[noise] + 1] = linearInterpolation(noisy_index[noise] - 1, noisy_index[noise] + 1, noisy_index[noise] + 2)
else:
file.values[i, noisy_index[noise]] = linearInterpolation(noisy_index[noise] - 1, noisy_index[noise], noisy_index[noise] + 3)
file.values[i, noisy_index[noise] + 1] = linearInterpolation(noisy_index[noise] - 1, noisy_index[noise] + 1, noisy_index[noise] + 3)
file.values[i, noisy_index[noise] + 2] = linearInterpolation(noisy_index[noise] - 1, noisy_index[noise] + 2, noisy_index[noise] + 3)
|
#
# @lc app=leetcode id=146 lang=python3
#
# [146] LRU Cache
#
class ListNode:
def __init__(self, key, val, next=None, prev=None):
self.key = key
self.val = val
self.next = next
self.prev = prev
class LRUCache:
def __init__(self, capacity: int):
self.cache_history = {}
self.head = ListNode(-1, -1)
self.tail = ListNode(-1, -1)
self.head.next = self.tail
self.tail.prev = self.head
self.capacity = capacity
def get(self, key: int) -> int:
if key not in self.cache_history:
return -1
node = self.cache_history[key]
self._remove(node)
self._push_back(node)
return node.val
def put(self, key: int, value: int) -> None:
if self.get(key) != -1:
self.cache_history[key].val = value
return
if len(self.cache_history) >= self.capacity:
self._pop_first()
node = ListNode(key, value)
self._push_back(node)
self.cache_history[key] = node
def _pop_first(self):
del self.cache_history[self.head.next.key]
self._remove(self.head.next)
def _push_back(self, node):
node.next = self.tail
self.tail.prev.next = node
node.prev = self.tail.prev
self.tail.prev = node
def _remove(self, node):
node.prev.next = node.next
node.next.prev = node.prev
# Your LRUCache object will be instantiated and called as such:
# obj = LRUCache(capacity)
# param_1 = obj.get(key)
# obj.put(key,value)
|
km = float(input('Quantidade de KM percorridos? '))
dia = int(input('Quantidade de dias alugados? '))
Qtdkm = km * 0.15
Qtddia = dia * 60
resfinal = Qtdkm + Qtddia
print('O total a pagar é de R${:.2f}'.format(resfinal))
|
"""Cycle(atoms) -> cycle object for a ring.
cycle.atoms -> atoms around a ring
cycle.bonds -> bonds aroung a ring
cycle.rotate(atom) -> rotate the ring so that atom is in front
"""
class CycleError(Exception):
pass
class Cycle:
def __init__(self, atoms, bonds, aromatic=0):
"""(atoms)->create a cycle object
assumes that the atoms are in traversal order around the ring.
That is [a1, a2, a3] means that there is a bond in the cycle
between a1 and a2 and a2 and a3 and a3 and a1"""
self.atoms = atoms[:]
self.bonds = bonds[:]
self.aromatic = aromatic
for atom in self.atoms:
atom.rings.append(self)
for bond in self.bonds:
bond.rings.append(self)
def __len__(self):
return len(self.atoms)
def rotate(self, atom):
"""(atom)->start the cycle at position atom, assumes
that atom is in the cycle"""
try:
index = self.atoms.index(atom)
except ValueError:
raise CycleError("atom %s not in cycle"%(atom))
self.atoms = self.atoms[index:] + self.atoms[:index]
self.bonds = self.bonds[index:] + self.bonds[:index]
def clone(self):
return Cycle(self.atoms, self.bonds, self.aromatic)
def set_aromatic(self):
"""set the cycle to be an aromatic ring"""
#XXX FIX ME
# this probably shouldn't be here
for atom in self.atoms:
atom.aromatic = 1
for bond in self.bonds:
bond.aromatic = 1
bond.bondorder = 1.5
bond.bondtype = 4
bond.symbol = ":"
bond.fixed = 1
self.aromatic = 1
|
class Switches:
"""
Abstract class providing common interface to the set of switches
"""
def num_switches(self):
raise NotImplementedError
def switch_state(self, idx):
raise NotImplementedError
|
# Quiz, Problem 6
def flatten(aList):
'''
aList: a list
Returns a copy of aList, which is a flattened version of aList
'''
aNewList = []
for elt in aList:
if type(elt) == list:
aNewList.extend(flatten(elt))
else:
aNewList.append(elt)
return aNewList |
"""
This program uses the reverse method to change a list such that it is in the
reverse order that it was in. Note that it does NOT put it in reverse sorted
order (unless the list was ALREADY in sorted order).
"""
my_list = [1, 4, 2, -4, 10, 0]
print(my_list)
my_list.reverse()
print(my_list) |
# -*- coding: utf-8 -*-
"""
@author: Victor Kohler
@since: date 18/12/2016
@version: 0.1
"""
class MockOpen(object):
"""Simulate the builtin open function"""
def __init__(self):
pass
def close(self):
return True
|
def fractional_knapsack_greedy(value, weight, capacity):
# index = [0, 1, 2, ..., n - 1] for n items
index = list(range(len(value)))
# contains ratios of values to weight
ratio = [v / w for v, w in zip(value, weight)]
# index is sorted according to value-to-weight ratio in decreasing order
index.sort(key=lambda i: ratio[i], reverse=True)
max_value = 0
fractions = [0] * len(value)
for i in index:
if weight[i] <= capacity:
fractions[i] = 1
max_value += value[i]
capacity -= weight[i]
else:
fractions[i] = capacity / weight[i]
max_value += value[i] * capacity / weight[i]
break
return max_value, fractions
n = int(input('Enter number of items: '))
value = input('Enter the values of the {} item(s) in order: '
.format(n)).split()
value = [int(v) for v in value]
weight = input('Enter the positive weights of the {} item(s) in order: '
.format(n)).split()
weight = [int(w) for w in weight]
capacity = int(input('Enter maximum weight: '))
max_value, fractions = fractional_knapsack_greedy(value, weight, capacity)
print('The maximum value of items that can be carried:', max_value)
print('The fractions in which the items should be taken:', fractions)
|
class Meta(type):
def __new__(msc, nome, bases, namespace):
if nome == 'A':
return type.__new__(msc, nome, bases, namespace)
"""" Garante que um metodo seja implementado
em uma classe.
if 'fala_oi' not in namespace:
print('O metodo fala_oi deve ser implementado.')
else:
if not callable(namespace['fala_oi']):
print(f'fala_oi precisa ser um metodo.')
print(f"{nome} >> {namespace}")
"""
""" Garante que um determinado atributo não seja sobrescrevido. """
if 'attr_class' in namespace:
print(f'{nome} tentou sobrescrever o attr_classe')
del namespace['attr_class']
return type.__new__(msc, nome, bases, namespace)
class A(metaclass=Meta):
attr_class = 'Class A'
class B(A):
attr_class = 'Class B'
class C(A):
attr_class = 'Class C'
b = B()
print(b.attr_class)
|
# 1964 오각형, 오각형, 오각형....
n = int(input())
five = sum([(4 + 3 * i) if i != 0 else 5 for i in range(n)])
print(five % 45678)
|
#!/usr/bin/env python3
# --------------------------------------------------------------------------- #
# The MIT License (MIT) #
# #
# Copyright (c) 2021 Eliud Cabrera Castillo <e.cabrera-castillo@tum.de> #
# #
# Permission is hereby granted, free of charge, to any person obtaining #
# a copy of this software and associated documentation files #
# (the "Software"), to deal in the Software without restriction, including #
# without limitation the rights to use, copy, modify, merge, publish, #
# distribute, sublicense, and/or sell copies of the Software, and to permit #
# persons to whom the Software is furnished to do so, subject to the #
# following conditions: #
# #
# The above copyright notice and this permission notice shall be included #
# in all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
# DEALINGS IN THE SOFTWARE. #
# --------------------------------------------------------------------------- #
"""Functions to manipulate the claims found in the network.
These methods are used with lists of claims returned by `claim_search`.
"""
def sort_and_filter(claims, number=0, reverse=False):
"""Sort the input list and remove duplicated items with same claim ID.
Parameters
----------
claims: list of dict
List of claims obtained from `claim_search`.
number: int, optional
It defaults to 0, in which case the returned list will contain
all unique claims.
If this is any other number, it will cut the output list to have
a maximum of `number` claims.
reverse: bool, optional
It defaults to `False`, in which case older items come first
in the output list.
If it is `True` the newest items will come first in the output list.
Returns
-------
list of dict
List of claims obtained from `claim_search`, with the duplicates
removed.
"""
print("Sort claims and remove duplicates")
new_items = []
n_claims = len(claims)
# Make sure the `release_time` exists, and use `timestamp` otherwise
for num, claim in enumerate(claims, start=1):
if "release_time" not in claim["value"]:
name = claim["name"]
print(f'{num:4d}/{n_claims:4d}; "{name}" using "timestamp"')
claim["value"]["release_time"] = claim["timestamp"]
new_items.append(claim)
# Sort by using the original `release_time`.
# New items will come first.
sorted_items = sorted(new_items,
key=lambda v: int(v["value"]["release_time"]),
reverse=True)
unique_ids = []
unique_claims = []
for item in sorted_items:
if item["claim_id"] not in unique_ids:
unique_claims.append(item)
unique_ids.append(item["claim_id"])
if number:
# Cut the older items
unique_claims = unique_claims[0:number]
if not reverse:
# Invert the list so that older items appear first
unique_claims.reverse()
return unique_claims
def downloadable_size(claims, local=False):
"""Calculate the total size of input claims.
Parameters
----------
claims: list of dict
List of claims obtained from `claim_search`,
or if using `local=True`, from `file_list`.
local: bool, optional
It defaults to `False` in which case it assumes the claims
were resolved online from `claim_search`.
If it is `True` it assumes the claims come from `file_list`,
that is, from the claims locally downloaded.
This is necessary because the information is in different fields
depending on where it comes from.
Returns
-------
dict
A dictionary with two keys:
- 'size': total size of the claims in bytes.
It can be divided by 1024 to obtain kibibytes, by another 1024
to obtain mebibytes, and by another 1024 to obtain gibibytes.
- 'duration': total duration of the claims in seconds.
It will count only stream types which have a duration
such as audio and video.
The duration can be divided by 3600 to obtain hours,
then by 24 to obtain days.
"""
if local:
print("Calculate size of fully downloaded claims")
else:
print("Calculate size of downloadable claims")
n_claims = len(claims)
total_size = 0
total_duration = 0
for num, claim in enumerate(claims, start=1):
if local:
vtype = claim["mime_type"]
source_info = claim["metadata"]
alt_name = claim["stream_name"]
else:
vtype = claim["value_type"]
source_info = claim["value"]
alt_name = claim["name"]
if "source" in source_info:
file_name = source_info["source"].get("name", "None")
size = int(source_info["source"].get("size", 0))
else:
file_name = alt_name
size = 0
print(f"{num:4d}/{n_claims:4d}; type: {vtype}; "
f'no source: "{file_name}"')
seconds = 0
if "video" in source_info:
seconds = source_info["video"].get("duration", 0)
elif "audio" in source_info:
seconds = source_info["audio"].get("duration", 0)
total_size += size
total_duration += seconds
return {"size": total_size,
"duration": total_duration}
def sort_filter_size(claims, number=0, reverse=False):
"""Sort, filter the claims, and provide the download size and duration.
Parameters
----------
claims: list of dict
List of claims obtained from `claim_search`.
number: int, optional
It defaults to 0, in which case the returned list will contain
all unique claims.
If this is any other number, it will cut the output list to have
a maximum of `number` claims.
reverse: bool, optional
It defaults to `False`, in which case older items come first
on the output list.
If it is `True` the newest items will come first in the output list.
Returns
-------
dict
A dictionary with three keys:
- 'claims': a list of dictionaries where every dictionary represents
a claim returned by `claim_search`.
The list is ordered in ascending order by default (old claims first),
and in descending order (new claims first) if `reverse=True`.
- 'size': total size of the claims in bytes.
It can be divided by 1024 to obtain kibibytes, by another 1024
to obtain mebibytes, and by another 1024 to obtain gibibytes.
- 'duration': total duration of the claims in seconds.
It will count only stream types which have a duration
such as audio and video.
The duration can be divided by 3600 to obtain hours,
then by 24 to obtain days.
"""
claims = sort_and_filter(claims, number=number, reverse=reverse)
print()
output = downloadable_size(claims)
total_size = output["size"]
total_duration = output["duration"]
n_claims = len(claims)
GB = total_size / (1024**3) # to GiB
hrs = total_duration / 3600
days = hrs / 24
hr = total_duration // 3600
mi = (total_duration % 3600) // 60
sec = (total_duration % 3600) % 60
print(40 * "-")
print(f"Total unique claims: {n_claims}")
print(f"Total download size: {GB:.4f} GiB")
print(f"Total duration: {hr} h {mi} min {sec} s, or {days:.4f} days")
return {"claims": claims,
"size": total_size,
"duration": total_duration}
|
# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution(object):
def detectCycle(self, head):
"""
:type head: ListNode
:rtype: ListNode
"""
if head is None:
return None
# slow pointer
p1 = head
# fast pointer
p2 = head
is_cycle = False
# if any poiter is none then there is no cycle
while p2 is not None and p2.next is not None:
p1 = p1.next
p2 = p2.next.next
# if poiters are the same then we found the cycle
if p1 == p2:
# print("p1: {}, p2: {}".format(p1.val, p2.val))
is_cycle = True
break
# check if there is cycle
if is_cycle:
# reset the p1 back to head
p1 = head
while p1 != p2:
p1 = p1.next
p2 = p2.next
# print(p1.val)
# print(p2.val)
return p1
else: # no cycle detected
return None
|
class GenResult(object):
"""Wraps the result of a batch generator.
See the comments for BatchExecutor.execute.
"""
# Private attributes:
# mixed _value - The result.
def __init__(self, value):
self._value = value
|
class FindElements:
def __init__(self, root: TreeNode):
self.values = set()
q = deque([root])
root.val = 0
while q:
n = q.popleft()
self.values.add(n.val)
if n.left:
n.left.val = n.val * 2 + 1
q.append(n.left)
if n.right:
n.right.val = n.val * 2 + 2
q.append(n.right)
def find(self, target: int) -> bool:
return target in self.values
|
class Scene:
def __init__(self):
super().__init__()
self.Home_Team_Logo_Image = None
self.Away_Team_Logo_Image = None
self.Home_Team_Score = "0"
self.Away_Team_Score = "0"
self.MainText = None
self.AdditionalText = []
|
##addition_str is a string with a list of numbers separated by the + sign. Write code that uses the accumulation pattern to take the sum of all of the numbers and assigns it to sum_val (an integer). (You should use the .split("+") function to split by "+" and int() to cast to an integer).
addition_str = "2+5+10+20"
addlst = addition_str.split("+")
sum_val = 0
for al in addlst:
aint = int(al)
sum_val = sum_val + aint |
# -*- coding: utf-8 -*-
# Copyright © 2017 Artyom Goncharov
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
class StopException(Exception):
EOK = 0
EPAR = 1 # Parser error
EPERM = 2 # Operation not permitted
ECFG = 3 # Config error
EVER = 4 # Version error
EFTR = 5 # Feature error
EFS = 6 # File system error
def __init__(self, code=EOK, message=None, terminate=False):
super(StopException, self).__init__()
self.code = code
self.message = message
self.terminate = terminate
def __repr__(self):
return 'StopException code: {}, message: {}'.format(self.code, self.message)
def __str__(self):
return self.__repr__()
|
km = int(input('Digite o Km: '))
m = km * 1000
cm = km * 100_000
print('{0}km em metros são: {1}m \n{0}km em centímetros são: {2}cm'.format(km, m, cm))
|
values = [int(e) for e in input("Please insert value:").split()]
print(values)
previousValue = values[0]
for value in values :
if value < previousValue :
previousValue = value
print("False")
exit(0)
print("True")
|
###
#while문
###
ja = 4 #ja=분자
mo = 2 #mo=분모
pi = 3+(ja/(mo*(mo+1)*(mo+2))) #pi=파이값
re = 300 #re=반복횟수
while re>0:
ja *= -1
mo += 2
pi = pi+(ja/(mo*(mo+1)*(mo+2)))
re -= 1
print(f"pi={pi}")
###
#for문
###
ja = 4 #ja=분자
mo = 2 #mo=분모
pi = 3+(ja/(mo*(mo+1)*(mo+2))) #pi=파이값
for i in range(300):
ja *= -1
mo += 2
pi = pi+(ja/(mo*(mo+1)*(mo+2)))
print(f"pi={pi}") |
ls=list(map(int,input('Enter the list of numbers: ').split()))
for i in range(len(ls)-1,0,-1):
for j in range(i):
if ls[j]>ls[j+1]:
ls[j],ls[j+1] = ls[j+1],ls[j]
print('Sorted list:',ls)
|
# MEDIUM
# input => [3,2,4,1]
# Max index, boundary index
# 2 4
# 1st [4, 2, 3, 1]
# 2 [1, 3, 2, 4]
# 1 3
# 1st [3, 1, 2, 4]
# 2 [2, 1, 3, 4]
# 0 2
# 1st [2, 1, 3, 4]
# 2 [1, 2, 3, 4]
class Solution:
def pancakeSort(self, A: List[int]) -> List[int]:
def findMax(index):
large = 0
for i in range(0,index):
if A[i]>A[large]:
large = i
return large
def flip(end):
start = 0
while start < end:
A[start],A[end] = A[end],A[start]
start += 1
end -= 1
n = len(A)
curr = n
result = []
while curr>1:
large = findMax(curr)
if large != curr:
print(large,curr)
flip(large)
result.append(large+1)
print('1st',A)
flip(curr - 1)
result.append(curr)
print("2", A)
curr -= 1
return result
|
class Configurations:
class Settings:
autoclose_squarebrackets= True
autoclose_parentheses= True
autoclose_curlybraces= True
autoclose_doublequotes= True
autoclose_singlequotes= True
current_line_indicator= True
current_line_indicator_symbol= ':'
font_family= "consolas"
font_size= 11
horizontal_scrollbar_show= 'false'
insertion_blink= 300 #or 0
tab_size= 3
text_bottom_lineheight= '6'
text_top_lineheight= '0'
text_wrap= None
border= 0
padding_x= '5'
padding_y= '5'
theme= "data\theme_configs/theme.yaml"
vertical_scrollbar_show= True
web_browser= "chromium"
filename= "quiet_note.txt"
sync_remote= False
#TODO: change key handeling
sync_fb_key={
'apiKey': "",
'authDomain': "",
'databaseURL': "",
'projectId': "",
'storageBucket': "",
'messagingSenderId': "",
'appId': "",
'measurementId': ""
}
class Theme:
comment_color= '#6A737D'
string_color= '#032F62'
number_color= '#005CC5'
type_color= '#005CC5'
keyword_color= '#D73A49'
operator_color= '#D73A49'
bultin_function_color= '#D73A49'
class_self_color= '#24292E'
namespace_color= '#D73A49'
class_name_color= '#E36209'
function_name_color= '#E36209'
font_color= '#24292E'
font_color_linenumbers= '#a4a9aE'
bg_color= '#FFFFFF'
menu_fg_active= '#24292E'
menu_bg_active= '#c1d9e3'
selection_color= '#c1d9e3'
insertion_color = '#eb4034'
s_bg_color = '#eb4034'
s_font_color = '#eb4034'
text_selection_bg_clr = '#eb4034'
troughx_clr = '#a4a9aE'
troughy_clr = '#a4a9aE'
menu_fg = '#000000'
menu_bg = '#E6F0F9'
menubar_bg_active = menu_bg
menubar_fg_active = '#005CC5'
class Patterns:
class _Pattern:
def __init__(self, regex, token, styledict) -> None:
self.regex = regex
self.token = token
self.styledict = styledict
pattern_split = _Pattern(r"(x=.*)",
'Token.Headers',
{'foreground':'#D73A49'})
patternlist = [
_Pattern(r"(\d\d\:\d\d)",
'Token.Time',
{'foreground':'#0055c2'}),
_Pattern(r"(\d\d\.\d\d\.(\d\d(\d\d)?)?)",
'Token.Date',
{'foreground':'#0055c2'}),
_Pattern(r"(==.*)",
'Token.Headers',
{'foreground':'#D73A49'}),
_Pattern(r"(>.*)",
'Token.Fade.Waiting',
{'foreground':'#c0c0c0'}),
_Pattern(r"(<.*)",
'Token.Fade.Next',
{'foreground':'#808080'}),
pattern_split,
_Pattern(r"(\t?x [^\n]*?\n)",
'Token.Done',
{'foreground':'#e0e0e0', 'overstrike':'True'})]
patternmovelist = [
_Pattern(r"(\t?x [^\n]*?\n)",
'Token.Done',
{'foreground':'#e0e0e0', 'overstrike':'True'})]
|
'''
Copyright (C) 2020, Sathira Silva.
Approach: Union by path compression algorithm is used. During a single find call or a union call, reattach all the nodes we're following to the root.
Therefore, the height of each subtree will be as minimal as possible.
Before the kruskal algorithm, all the nodes are made their own singleton connected component and the edges are sorted by the weight. The idea is that the
globally minimum weight edge will be the minimum weight edge for all cuts that it crosses. Thus, it is a valid choice of edge for the MST. So, select the
globally minimum weight edge and union the end vertices so that edges that form a cycle won't be selected. Repeat the process until the whole graph becomes
a single connected component.
Time Complexity Analysis: Each Find call will take iterated logarithmic time i.e. O(log*(V)) which is nearly constant time in practice. Since we iterate over the edges
the worst case theoritical time complexity for Union and Find opeerations will be O(Elog(V)). log*(n) is practically bounded by 5. Therefore,
in practice the worst case time complexity is O(E). But still since we have to sort the set of edges O(Elog(V)) will dominate. Thus, the total
time complexity is O(Elog(V)).
'''
def find_set(u, parent):
while u != parent[parent[u]]:
parent[u] = parent[parent[u]]
u = parent[u]
return u
def union(u, v, parent):
parent[find_set(v, parent)] = find_set(u, parent)
def kruskal(n, edges):
parent = [i for i in range(n)]
edges.sort(key = lambda x:x[2])
s = 0
for u, v, w in edges:
if find_set(u, parent) != find_set(v, parent):
union(u, v, parent)
s += w
return str(s)
|
# Digite algum nome
nome = str(input('Digite o nome completo: '))
# Variáveis
nomelist = nome.split()
nome2 = nome.rfind(max(' '))
nome2C = nome[nome2:].lstrip()
# Prints Formatadas
print(f'O nome completo que você digitou: {nome}')
print(f'O seu Primeiro nome: {nomelist[0]}')
print(f'O seu último nome: {nome2C}')
|
'''
lanche = ('Hamburger','Suco','Pizza','Pudim','Batata Frita')
print('{:^30}'.format('# jeito 1 #'))
for cont in range(0, len(lanche)):
print(f'Eu vou comer {lanche[cont]} na posição {cont}')
print('Vou comer para caramba!')
print('{:^30}'.format('# jeito 2 #'))
for pos, comida in enumerate(lanche):
print(f'Eu vou comer {comida} na posição {pos}')
print('Vou comer para caramba!')
print('')
print(sorted(lanche))
'''
a = (2, 5, 4)
b = (5, 8, 1, 2)
c = a + b
print(c)
print(c.count(5))
print(c.index(8))
del(b)
c = a + b
print(c) |
# 407.加一 / plus-one
# http://www.lintcode.com/zh-cn/problem/plus-one/
# 给定一个非负数,表示一个数字数组,在该数的基础上+1,返回一个新的数组。
# 该数字按照大小进行排列,最大的数在列表的最前面。
# 样例
# 给定 [1,2,3] 表示 123, 返回 [1,2,4].
# 给定 [9,9,9] 表示 999, 返回 [1,0,0,0].
class Solution:
# @param {int[]} digits a number represented as an array of digits
# @return {int[]} the result
def plusOne(self, digits):
# Write your code here
l = len(digits)
for i in range(l-1, -1,-1):
if digits[i] >= 9:
digits[i] = 0
else:
digits[i] = digits[i] + 1
return digits
digits.insert(0, 1)
return digits
|
class SensorPack(dict):
''' Fun fact, you can slice using np.s_. E.g.
sensors.at(np.s_[:2])
'''
def at(self, val):
return SensorPack({k: v[val] for k, v in self.items()})
def apply(self, lambda_fn):
return SensorPack({k: lambda_fn(k, v) for k, v in self.items()})
def size(self, idx, key=None):
assert idx == 0, 'can only get batch size for SensorPack'
if key is None:
key = list(self.keys())[0]
return self[key].size(idx)
|
# Mostre a tabudada de algum número soliticatado, várias vezes, até o user digitar algum valor negativo
while True:
num = int(input('\nQual número você quer a tabuada? '))
if num <= 0:
break
for count in range(1, 11):
print(f'{num} * {count} = {num*count}')
print('Acabou')
|
# -*- coding: utf-8 -*-
"""
Created on Mon Apr 23 9:50:00 2019
@author: jercas
"""
"""
leetcode-704: 二分查找 EASY
'数组' '二分查找'
给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,
写一个函数搜索 nums 中的 target,如果目标值存在返回下标,否则返回 -1。
"""
class Solution(object):
def BinarySearch(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
l = 0
r = len(nums) - 1
while l <= r:
mid = (l + r) // 2
if nums[mid] == target:
return mid
elif nums[mid] < target:
l = mid + 1
else:
r = mid - 1
return -1
if __name__ == "__main__":
Q1, Q2 = [[-1,0,3,5,9,12], [-1,0,3,5,9,12]], [9, 2]
A = [4, -1]
solution = Solution()
for i in range(2):
if solution.BinarySearch(Q1[i], Q2[i]) == A[i]:
print("target:{1} in array {0} -> location = {2}".format(Q1[i], Q2[i], A[i]))
print('AC') |
s = 1
while s:
a = int(input("Input number a: "))
b = int(input("Input number b: "))
c = input("Choose an operation (+/-/*/:)")
if c == "+":
print(a, c, b, "=", a+b)
elif c == "-":
print(a, c, b, "=", a-b)
elif c == "*":
print(a, c, b, "=", a*b)
elif c == ":":
print(a, c, b, "=", a/b)
else:
print("Undefined operation")
while 1:
r = input("One more loop(y/n)? ")
if r == "y":
break
elif r == "n":
s = 0
break
else:
print("Wrong action")
|
def menor_a_mayor(lista):
return sorted(lista)
def desordenar(lista):
return menor_a_mayor(lista)
|
"""
Description
Insertion sort involves finding the right place for a given element in a sorted list. So in beginning we compare the first
two elements and sort them by comparing them. Then we pick the third element and find its proper position among the previous
two sorted elements. This way we gradually go on adding more elements to the already sorted list by putting them in their
proper position.
"""
def insertion_sort(InputList):
for i in range(1, len(InputList)):
j = i-1
nxt_element = InputList[i]
while (InputList[j] > nxt_element) and (j >= 0):
InputList[j+1] = InputList[j]
j=j-1
InputList[j+1] = nxt_element
list = [3,6,2,6,7,9,10,11,45,67,43]
insertion_sort(list)
print(list) |
class QuidMustLoginException(Exception):
"""
The refresh token is invalid or expired
"""
class QuidUnauthorizedException(Exception):
"""
The server responded with unauthorized 401 status code
"""
class QuidTooManyRetriesException(Exception):
"""
Request retried too many times
"""
|
"""
Application constants
"""
class LabelVariants:
"""Valid values for the `variant` field of a label_definition"""
NUMERICAL = "numerical"
BOOLEAN = "boolean"
valid_labels = (NUMERICAL, BOOLEAN)
|
b11, b12, b13, b14, b15, b16, b17, b18, b19, b21, b22, b23, b24, b25, b26, b27, b28, b29, b31, b32, b33, b34, b35, b36, b37, b38, b39, b41, b42, b43, b44, b45, b46, b47, b48, b49, b51, b52, b53, b54, b55, b56, b57, b58, b59, b61, b62, b63, b64, b65, b66, b67, b68, b69, b71, b72, b73, b74, b75, b76, b77, b78, b79, b81, b82, b83, b84, b85, b86, b87, b88, b89, b91, b92, b93, b94, b95, b96, b97, b98, b99=' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '
def board():
board = """
```
THE BOARD
-------------------------------------
|{0}|{1}|{2}|{9}|{10}|{11}|{18}|{19}|{20}|
|---+---+---|---+---+---|---+---+---|
|{3}|{4}|{5}|{12}|{13}|{14}|{21}|{22}|{23}|
|---+---+---|---+---+---|---+---+---|
|{6}|{7}|{8}|{15}|{16}|{17}|{24}|{25}|{26}|
|-----------+-----------+-----------|
|{27}|{28}|{29}|{36}|{37}|{38}|{45}|{46}|{47}|
|---+---+---|---+---+---|---+---+---|
|{30}|{31}|{32}|{39}|{40}|{41}|{48}|{49}|{50}|
|---+---+---|---+---+---|---+---+---|
|{33}|{34}|{35}|{42}|{43}|{44}|{51}|{52}|{53}|
|-----------+-----------+-----------|
|{54}|{55}|{56}|{63}|{64}|{65}|{72}|{73}|{74}|
|---+---+---|---+---+---|---+---+---|
|{57}|{58}|{59}|{66}|{67}|{68}|{75}|{76}|{77}|
|---+---+---|---+---+---|---+---+---|
|{60}|{61}|{62}|{69}|{70}|{71}|{78}|{79}|{80}|
-------------------------------------
```""".format(b11, b12, b13, b14, b15, b16, b17, b18, b19, b21, b22, b23, b24, b25, b26, b27, b28, b29, b31, b32, b33, b34, b35, b36, b37, b38, b39, b41, b42, b43, b44, b45, b46, b47, b48, b49, b51, b52, b53, b54, b55, b56, b57, b58, b59, b61, b62, b63, b64, b65, b66, b67, b68, b69, b71, b72, b73, b74, b75, b76, b77, b78, b79, b81, b82, b83, b84, b85, b86, b87, b88, b89, b91, b92, b93, b94, b95, b96, b97, b98, b99)
return board
|
# -*- coding: UTF-8 -*-
class DataTypes:
def __init__(self):
self._dtypes = {
0x00: '<{0}B', # 08-bit unsigned char
0x01: '<{0}b', # 08-bit signed char
0x02: '<{0}H', # 16-bit unsigned short
0x03: '<{0}h', # 16-bit signed short
0x04: '<{0}I', # 32-bit unsigned integer
0x05: '<{0}i', # 32-bit signed integer
0x06: '<{0}f', # 32-bit float
0x07: '<{0}d'} # 64-bit double
def __contains__(self, item):
return item in self._dtypes
def lookup(self, dtype):
return self._dtypes[dtype]
|
#pirate game
print('Welcome To Sharks And Pirates')
print('This Game Is Licensed Under The MIT Creator License')
print('If You Want The Source Code Please Vist anmoymouse89076 On Github')
#gettings the name
greeting = input('Hello, Possible Pirate! What Is The Password')
if greeting in ('Arrr!'):
print('Go Away Annoying Pirate')
else:
print('Welcome, Pirate Hater!')
name = input('Sorry, My Memory Is Like A Godlfish!, I Cant Remember Anything!, Anyway Whats Your Name!')
print('Cool Name!', name)
print('Alrigth', name, 'Lets Get Going, We Dont Want To Be Late')
piratehead = input('Watch Out, There Is Pirates Ahead, What Do We Do? NO. 1 Do you Try To Avoid Them, NO. 2 Do You Go Up To Them And Tell Them How Much You Hate Them')
if piratehead in ('1'):
print('Lets Go! This Way')
else:
print('WARNING! If We Do This They Could Capture Us')
#if answer = 2
print('I Told You!')
print('Aaaaaa, Their Chasing Us!')
do = input('What Do We Do')
if do in ('go back'):
print('Alight, Thats Probally Safer')
print('This Way!')
if do in('fight them'):
print('hmmm.... Okay, I mean i dont know')
usure = input('Are You Sure You Want To Goahead', name)
if usure in ('yes'):
print('Okay Dont, Say I Didnt Warn You!!')
print('Dont Forget, They Probally Have Weapons')
print('aaaaaaa!')
print('They Cutted My Hand, Im Going!')
print('Bye, Bye!')
if usure in ('no'):
print('Lets Go Back To Option One')
piratehead = input('Watch Out, There Is Pirates Ahead, What Do We Do? NO. 1 Do you Try To Avoid Them, NO. 2 Dont Do Anythin And Go Back?')
if piratehead in ('1'):
print('Alright, GET LOW!!')
print('look There Is A Bush')
print('Lets Hide Behind It')
print('Ohhh, No!')
print('They Found Us!')
print('Lets Run')
ishark = input('Is That A Shark I See?')
if ishark in ('yes'):
print('Lets Try To Avoid It')
if ishark in ('no'):
print('Yeah, It Probally Just My Imagination')
print('Ohhh, No!')
print('It Was A Shark And It Got Me!')
print('Bye, Bye')
print('THANKS FOR PLAYING SHARKS AND PIRATES')
|
"""
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
The number of elements initialized in nums1 and nums2 are m and n respectively.
You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2.
Example:
Input:
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
Output: [1,2,2,3,5,6]
"""
class Solution1:
def merge(self, nums1, m, nums2, n):
"""
:type nums1: List[int]
:type m: int
:type nums2: List[int]
:type n: int
:rtype: void Do not return anything, modify nums1 in-place instead.
"""
i, j = m - 1, n - 1
while i >= 0 and j >= 0:
if nums1[i] > nums2[j]:
nums1[i + j + 1] = nums1[i]
i -= 1
else:
nums1[i + j + 1] = nums2[j]
j -= 1
if j >= 0:
nums1[:j + 1] = nums2[:j + 1]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.