content
stringlengths
7
1.05M
CATEGORIES = { "all", "arts", "automotive", "baby", "beauty", "books", "boys", "computers", "electronics", "girls", "health", "kitchen", "industrial", "mens", "pets", "sports", "games", "travel", "womens", } CATEGORIES_CHOICES = [ ("all", "All"), ("arts", "Arts"), ("automotive", "Automotive"), ("baby", "Baby"), ("beauty", "Beauty"), ("books", "Books"), ("boys", "Boy's"), ("computers", "Computers"), ("electronics", "Electronics"), ("girls", "Girl's"), ("health", "Health"), ("kitchen", "Kitchen"), ("industrial", "Industrial"), ("mens", "Men's"), ("pets", "Pets"), ("sports", "Sports"), ("games", "Games"), ("travel", "Travel"), ("womens", "Women's"), ] METRIC_PERIODS = [ ("daily", "Daily"), ("weekly", "Weekly"), ] METRIC_TYPES = [ ("visits", "Visits"), ("search", "Search"), ("clicks", "Clicks"), ]
"""#ip 2 addi 2 16 2 seti 1 2 4 seti 1 8 1 mulr 4 1 5 eqrr 5 3 5 addr 5 2 2 addi 2 1 2 addr 4 0 0 addi 1 1 1 gtrr 1 3 5 addr 2 5 2 seti 2 6 2 addi 4 1 4 gtrr 4 3 5 addr 5 2 2 seti 1 2 2 mulr 2 2 2 addi 3 2 3 mulr 3 3 3 mulr 2 3 3 muli 3 11 3 addi 5 2 5 mulr 5 2 5 addi 5 8 5 addr 3 5 3 addr 2 0 2 seti 0 4 2 setr 2 5 5 mulr 5 2 5 addr 2 5 5 mulr 2 5 5 muli 5 14 5 mulr 5 2 5 addr 3 5 3 seti 0 8 0 seti 0 5 2 """ ip_reg = 2 reg = [1, 0, 0, 0, 0, 0] # addi 2 16 2 | ip=0 reg[2] += 17 # seti 1 2 4 reg[4] = 1 reg[2] += 1 # seti 1 8 1 reg[1] = 1 reg[2] += 1 # mulr 4 1 5 reg[5] = reg[4] * reg[1] reg[2] += 1 # eqrr 5 3 5 reg[5] = int(reg[5] == reg[3]) reg[2] += 1 # addr 5 2 2 reg[2] += reg[5] + 1 # addi 2 1 2 reg[2] += 2 # addr 4 0 0 reg[0] += reg[4] # addi 1 1 1 reg[1] += 1 reg[2] += 1 # gtrr 1 3 5 reg[5] = int(reg[1] > reg[2]) reg[2] += 1 # addr 2 5 2 reg[2] += reg[5] + 1 # seti 2 6 2 reg[2] = 3 # addi 4 1 4 reg[4] += 1 reg[2] += 1 # gtrr 4 3 5 reg[5] = int(reg[4] > reg[3]) reg[2] += 1 # addr 5 2 2 reg[2] += reg[5] + 1 # seti 1 2 2 reg[2] = 2 # mulr 2 2 2 reg[2] = reg[2] * reg[2] + 1 # addi 3 2 3 reg[3] += 2 reg[2] += 1 # mulr 3 3 3 reg[3] = reg[3] * reg[3] reg[2] += 1 # mulr 2 3 3 reg[3] = reg[2] * reg[3] reg[2] += 1 # muli 3 11 3 reg[3] *= 11 reg[2] += 1 # addi 5 2 5 reg[5] += 2 reg[2] += 1 # mulr 5 2 5 reg[5] *= 2 reg[2] += 1 # addi 5 8 5 reg[5] += 8 reg[2] += 1 # addr 3 5 3 reg[3] += reg[5] reg[2] += 1 # addr 2 0 2 reg[2] += reg[0] + 1 # seti 0 4 2 reg[2] = 1 # setr 2 5 5 reg[5] = reg[2] reg[2] += 1 # mulr 5 2 5 reg[5] *= reg[2] reg[2] += 1 # addr 2 5 5 reg[5] += reg[2] reg[2] += 1 # mulr 2 5 5 reg[5] *= reg[2] reg[2] += 1 # muli 5 14 5 reg[5] *= 14 reg[2] += 1 # mulr 5 2 5 reg[5] *= reg[2] reg[2] += 1 # addr 3 5 3 reg[3] += reg[5] reg[2] += 1 # seti 0 8 0 reg[0] = 0 reg[2] += 1 # seti 0 5 2 reg[2] = 1
mensaje = "Registre el nombre del estudiante " estudiantes = [] estudiante = input(mensaje) estudiantes.append(estudiante) estudiante = input(mensaje) estudiantes.append(estudiante) estudiante = input(mensaje) estudiantes.append(estudiante) estudiante = input(mensaje) estudiantes.append(estudiante) estudiante = input(mensaje) estudiantes.append(estudiante) print(estudiantes)
# from https://www.ngdc.noaa.gov/geomag/WMM/data/WMM2020/WMM2020_Report.pdf EQUATOR_RADIUS = 6378137 FLATTENING = 1 / 298.257223563 EE2 = FLATTENING * (2 - FLATTENING) # eecentricity squared N_MAX = 12 # degree of expansion
# -*- coding: utf-8 -*- def suma(num1, num2): sm = num1 + num2 return sm print(suma(2,3))
myVariable = 0 def when_started1(): global myVariable fork_motor_group.spin_to_position(1100, DEGREES, wait=False) drivetrain.turn_for(RIGHT, 22, DEGREES, wait=True) # Get goalpost with 2 rings into our zone (22 points) drivetrain.drive_for(FORWARD, 1200, MM, wait=True) drivetrain.set_drive_velocity(100, PERCENT) drivetrain.set_turn_velocity(100, PERCENT) drivetrain.drive_for(REVERSE, 100, MM, wait=True) drivetrain.turn_for(LEFT, 20, DEGREES, wait=True) fork_motor_group.spin_to_position(1800, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 200, MM, wait=True) fork_motor_group.spin_to_position(1300, DEGREES, wait=True) drivetrain.drive_for(REVERSE, 800, MM, wait=True) drivetrain.turn_to_heading(90, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 800, MM, wait=True) fork_motor_group.spin_to_position(1800, DEGREES, wait=True) drivetrain.drive_for(REVERSE, 1200, MM, wait=True) # Remove blue goalpost from lever drivetrain.turn_to_heading(130, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 600, MM, wait=True) fork_motor_group.spin_to_position(1300, DEGREES, wait=True) drivetrain.drive_for(REVERSE, 500, MM, wait=True) drivetrain.turn_to_heading(90, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 750, MM, wait=True) fork_motor_group.spin_to_position(1800, DEGREES, wait=True) drivetrain.drive_for(REVERSE, 580, MM, wait=True) # Get red goalpost drivetrain.turn_to_heading(0, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 1600, MM, wait=True) fork_motor_group.spin_to_position(1100, DEGREES, wait=True) drivetrain.turn_to_heading(320, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 300, MM, wait=True) drivetrain.drive_for(REVERSE, 300, MM, wait=True) fork_motor_group.spin_to_position(1800, DEGREES, wait=True) drivetrain.turn_to_heading(300, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 400, MM, wait=True) fork_motor_group.spin_to_position(0, DEGREES, wait=False) drivetrain.drive_for(REVERSE, 300, MM, wait=True) drivetrain.turn_to_heading(0, DEGREES, wait=True) drivetrain.drive_for(REVERSE, 1900, MM, wait=True) # Get on the balance drivetrain.set_drive_velocity(50, PERCENT) drivetrain.set_turn_velocity(50, PERCENT) drivetrain.turn_to_heading(125, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 400, MM, wait=True) drivetrain.turn_to_heading(90, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 200, MM, wait=True) fork_motor_group.spin_to_position(1700, DEGREES, wait=True) drivetrain.drive_for(FORWARD, 750, MM, wait=True) drivetrain.stop() wait(1, SECONDS) stop_project() vr_thread(when_started1)
n = int(input('Digite o ano para saber se ele foi, é ou será bissesto: ')) if n % 400 == 0: print(f'O ano de {n} é bissesto!') else: if n % 4 == 0 and n % 100 != 0: print(f'O ano de {n} é bissesto!') else: print(f'O ano de {n} não é bissesto!')
def search(f, k, ma): la = 0 r = ma while r - la > 1: d = (la + r) // 2 t = f(d) if t >= k: r = d else: la = d return r a, b, c, x, k = map(int, input().split()) def f(t): if t > b: rp = t elif a <= t and t * (1 + c / 100) > b + 1: rp = b + 1 elif a <= t: rp = t * (1 + c / 100) else: rp = t return 0 if rp * k <= x else 1 print(search(f, 1, 10 ** 12) - 1)
def startup(addPluginHook, addHook, world) : addPluginHook(world, "list", main, 1, ["self", "info", "args", "world"]) def main(self, info, args, world) : """list The list command lists all plugins""" pluginlist = world.plugins.keys() pluginlist.sort() self.msg(info["channel"], "I will send you the list of plugins in a notice because there are too many to list here", reply=True) self.msg(info["sender"], " ".join(pluginlist))
print("Digite um número de 0 a 10") n = int(input()) nFatorial = 1 for i in range(2, n+1): nFatorial = nFatorial * i print("%d! = %d" %(n, nFatorial))
#!/usr/bin/env python class H2O: def __init__(self): pass def hydrogen(self, releaseHydrogen: 'Callable[[], None]') -> None: # releaseHydrogen() outputs "H". Do not change or remove this line. releaseHydrogen() def oxygen(self, releaseOxygen: 'Callable[[], None]') -> None: # releaseOxygen() outputs "O". Do not change or remove this line. releaseOxygen()
def recursive_update(default, custom): """A recursive version of Python dict#update""" if not isinstance(default, dict) or not isinstance(custom, dict): raise TypeError('Params of recursive_update() must be a dictionnaries.') for key in custom: if isinstance(custom[key], dict) and isinstance( default.get(key), dict): default[key] = recursive_update(default[key], custom[key]) else: default[key] = custom[key] return default def key_from_configdict(d): """Return key (the most inner first item) of a config dictionnary""" if not isinstance(d, dict): raise TypeError('Params of key_from_configdict() must be a dictionnary.') try: item = [k for k, v in d.items()][0] except IndexError: item = '' return item
def longestValidParentheses(s: str) -> int: result = 0 if not s: return result n = len(s) stack = [-1] for i in range(n): if s[i] == "(": stack.append(i) else: stack.pop() if not stack: stack.append(i) else: result = max(result, i - stack[len(stack) - 1]) return result if __name__ == "__main__" : s = "(())()" result = longestValidParentheses(s) print(result)
""" Selection Sort https://en.wikipedia.org/wiki/Selection_sort Worst-case performance: O(N^2) If you call selection_sort(arr,True), you can see the process of the sort Default is simulation = False """ def selection_sort(arr, simulation=False): iteration = 0 if simulation: print("iteration",iteration,":",*arr) for i in range(len(arr)): minimum = i for j in range(i + 1, len(arr)): # "Select" the correct value if arr[j] < arr[minimum]: minimum = j arr[minimum], arr[i] = arr[i], arr[minimum] if simulation: iteration = iteration + 1 print("iteration",iteration,":",*arr) return arr def main(): array = [1,5,8,5,150,44,4,3,6] #static inputs result = selection_sort(array) print(result) if __name__=="__main__": main()
n1 = float(input('Digite o salario atual do funcionario: R$ ')) if n1 > 1250: n1 = n1 + (n1*10/100) print(' O novo salario desse colaborador é de R$ {:.2f}'.format(n1)) else: n1 = n1 + (n1*15/100) print(' O novo salario desse colaborador é de R$ {:.2f}'.format(n1))
# 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 binaryTreePaths(self, root): """ :type root: TreeNode :rtype: List[str] """ if root == None: return [] if root.left == None and root.right == None: return [str(root.val)] ret = [] if root.left != None: left = self.binaryTreePaths(root.left) left = map(lambda x: str(root.val) + '->' + x, left) ret += left if root.right != None: right = self.binaryTreePaths(root.right) right = map(lambda x: str(root.val) + '->' + x, right) ret += right return ret
''' Leia 1 valor inteiro N (2 < N < 1000). A seguir, mostre a tabuada de N: 1 x N = N 2 x N = 2N ... 10 x N = 10N Entrada A entrada contém um valor inteiro N (2 < N < 1000). Saída Imprima a tabuada de N, conforme o exemplo fornecido. ''' N = int(input()) for i in range(1, 11): print('{} x {} = {}'.format(i, N, i*N))
# -*- coding: utf-8 -*- # Visigoth: A lightweight Python3 library for rendering data visualizations in SVG # Copyright (C) 2020-2021 Visigoth Developers # # 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 Multithing(object): """ Base class for an object (point,line,polygon) Arguments: id (str): an ID associated with the polygon category (str): a category associated with the polygon label (str): a label associated with these polygons tooltip (str): a tooltip associated with these polygons properties (dict): metadata for the polygons fill (str): a fill hue to use stroke (stroke): the stroke hue to use stroke_width (float): the width of the stroke """ def __init__(self,id,category,label,tooltip,properties,fill,stroke,stroke_width): self.id = id self.category = category self.label = label self.tooltip = tooltip self.properties = properties self.fill = fill self.stroke = stroke self.stroke_width = stroke_width def getCoordinates(self): return self.coordinates def getId(self): return self.id def getCategory(self): return self.category def getLabel(self): return self.label def getStrokeWidth(self): return self.stroke_width def getProperties(self): return self.properties
#!/usr/bin/python3 class FctCheck: def __init__(self): pass def ding_dong(self): print('') def _check_me(self, arg): return True if arg is not None else False
def greet(name): print(f'Good Day, {name}') name = input('Enter your name: ') greet(name)
''' #Задача 1 #Вывести на экран 5 строк из нулей, причем каждая из строк должна быть пронумерована s=0; i=0 while i <=4 : i=i+1 s = 0 print ((i), (s)) #Задача 2 #Пользователь в цикле вводит 10 цифр, Найти количество введенных пользователем цифр 5. count = 0 for i in range (10): number = input('Введите любую цифру от 0 до 9: ') if int(number) == 5: count += 1 print('Количество введенных цифр "5":' , count) #Задача 3 #Найти сумму ряда чисел от 1 до 100. Полученный результат вывести на экран s=0; i=1 while i<=100: s+=i i+=1 print (s) #Задача 4 #Найти произведение ряда чисел от 1 до 10. Полученный результат вывести на экран number=10 sum=1 for i in range(1, number + 1): sum = sum*i print(sum) # Задача 5 # Вывести цифры числа на каждой строчке. number = 3456 numberStr=str(number) for char in numberStr: print (char) # Задача 6 # Найти сумму цифр числа num = int(input("Enter number: ")) sum = 0 while (num != 0): sum = sum + num % 10 num = num // 10 print("The sum of digits is:", sum) # Задача 7 # Найти произведение цифр числа.(для примера использовано четырёхзначное число) n = int(input ('Введите четырехзначное число :')) s = str(n) a = int (s[0]) b = int (s[1]) c = int (s[2]) d = int (s[3]) print (a*b*c*d) #Задача 8 #Дать ответ на вопрос: есть ли среди цифр числа 5? integer_number = 213416 while integer_number>0: if integer_number%10 == 5: print('Yes') break integer_number = integer_number//10 else: print('No') #Задача 9 #Найти максимальную цифру в числе a=input("Enter number: ") m = max([int(i) for i in str(a)]) print (m) #Задача 10 #Найти количество цифр 5 в числе int_number = 546789555 count_5 = 0 while int_number>0: if int_number%10 == 5: count_5 += 1 int_number = int_number//10 print('Количество цифр "5":', count_5) '''
def ver1(sum): if sum == 1501500: print("Correct!") return else: print("Incorrect") return def hint1(): print("Remember to increment the loop in 3s. Also make sure that the last element is 3001, as it will not be included.") return def ver2(product): if product == 43049123460000: print("Correct!") return else: print("Incorrect") return def hint2(): print("Make sure that you are multiplying the old product by each number in the set. You need to update product with each iteration.") return def ver3(fact): if fact == 40320: print("Correct!") return else: print("Incorrect") return def hint3(): print("To compute n! (n factorial), you need to take the product of all positive integers less than or equal to n. For example, 3! = 1*2*3.") print("If your value goes above 10,000 inside of the while loop, it will not break until after the iteration. Make sure you are not returning the first factorial larger than 10,000.") return
""" Decorators El patrón de diseño decorador es difernte del decorador. Nos permiten inyectar código para modificar el comportamiento dede un meotodo, función o launa clase. Sirve para modificar el código y la implementación. ¿Cuando uso los decoradores y qué ventajs me trae? """ #El argumento es lo que tenemos intención decorar def primerD(funcion): # Para recibir parámetros def funcionDecorada(*args, **kwargs): print("Primer decorador mediante primer D function") return funcionDecorada @primerD def funcion(): print("Lo que quiero decorar") funcion()
mat = [[x for x in range(4)], [x for x in range(4,8)], [x for x in range(8,12)], [x for x in range(12,16)]] print(mat) d = 4 for k in range(0,d): print("d: ",end=" ") row , col = range(0,k + 1), range(k,-1,-1) for i,j in zip(row,col): print(mat[i][j],end =" ") print("") for k in range(0,d): print("d: ",end=" ") row , col = range(d-k-1 , d + 1 ), range(0,k + 1) for i,j in zip(row,col): print(mat[i][j],end =" ") print("") for k in range(0,d): print("d: ",end=" ") row , col = range(0,k + 1), range(d-k-1 , d + 1 ) for i,j in zip(row,col): print(mat[i][j],end =" ") print("")
# class LLNode: # def __init__(self, val, next=None): # self.val = val # self.next = next class Solution: def solve(self, node): count = 0 currentNode = node while currentNode: count += 1 currentNode = currentNode.next return count
test = open("needsConversion", "r") split = test.readlines() out = """from enum import Enum class MeshTag(Enum): """ i = 0 for l in split: if "*" in l: continue stripped = [x for x in l.replace("\n", "").split(" ") if x != "" and x != "\n"] if len(stripped) == 0: continue out += "\t" + stripped[0] + " = " + str(i) + "\n" i += 1 f = open("macchina/meshtag.py", "w") f.write(out) f.close()
""" PASSENGERS """ numPassengers = 15271 passenger_arriving = ( (2, 7, 3, 3, 0, 1, 1, 1, 0, 0, 1, 1, 0, 9, 0, 3, 2, 3, 1, 2, 1, 1, 2, 0, 0, 0), # 0 (6, 4, 3, 2, 1, 2, 2, 2, 0, 0, 1, 0, 0, 7, 5, 3, 1, 2, 3, 1, 2, 1, 2, 0, 1, 0), # 1 (1, 4, 2, 4, 5, 3, 1, 1, 0, 1, 0, 0, 0, 9, 3, 2, 3, 3, 0, 1, 1, 0, 3, 0, 0, 0), # 2 (2, 4, 2, 3, 4, 0, 2, 1, 0, 2, 1, 3, 0, 3, 5, 2, 4, 6, 2, 4, 1, 0, 1, 0, 0, 0), # 3 (10, 3, 2, 8, 6, 1, 2, 1, 4, 0, 0, 1, 0, 4, 6, 5, 6, 7, 1, 2, 2, 2, 4, 1, 1, 0), # 4 (6, 9, 3, 4, 4, 0, 2, 4, 0, 3, 1, 0, 0, 10, 4, 2, 2, 4, 3, 0, 1, 2, 2, 1, 1, 0), # 5 (4, 4, 6, 9, 6, 0, 3, 2, 2, 3, 0, 0, 0, 3, 3, 6, 5, 2, 2, 3, 2, 3, 0, 2, 0, 0), # 6 (5, 5, 4, 6, 8, 1, 4, 1, 1, 2, 2, 1, 0, 7, 2, 4, 3, 4, 4, 1, 2, 2, 0, 1, 0, 0), # 7 (6, 6, 6, 8, 6, 1, 1, 4, 1, 1, 1, 0, 0, 8, 9, 4, 2, 6, 2, 1, 2, 1, 5, 0, 0, 0), # 8 (8, 7, 3, 5, 8, 3, 0, 0, 1, 0, 1, 1, 0, 8, 7, 6, 4, 4, 1, 1, 0, 3, 3, 1, 1, 0), # 9 (10, 5, 6, 7, 4, 2, 6, 5, 2, 1, 0, 0, 0, 8, 4, 9, 7, 4, 2, 2, 1, 0, 2, 3, 0, 0), # 10 (3, 7, 6, 7, 7, 3, 1, 4, 4, 2, 2, 0, 0, 4, 8, 5, 4, 5, 1, 0, 1, 1, 0, 1, 0, 0), # 11 (10, 8, 5, 4, 6, 0, 1, 7, 1, 6, 1, 0, 0, 7, 2, 5, 8, 8, 0, 0, 2, 3, 4, 2, 0, 0), # 12 (12, 9, 7, 5, 6, 3, 4, 4, 6, 2, 2, 1, 0, 7, 3, 3, 5, 5, 3, 3, 4, 1, 3, 0, 0, 0), # 13 (8, 6, 4, 3, 9, 5, 4, 0, 2, 1, 1, 1, 0, 6, 8, 2, 5, 3, 4, 3, 2, 6, 1, 0, 1, 0), # 14 (11, 7, 8, 5, 6, 2, 1, 6, 1, 1, 1, 2, 0, 6, 5, 5, 3, 5, 3, 4, 3, 4, 2, 0, 1, 0), # 15 (8, 10, 14, 5, 7, 4, 3, 3, 3, 0, 0, 0, 0, 10, 5, 11, 8, 5, 5, 3, 4, 1, 2, 1, 0, 0), # 16 (12, 5, 4, 9, 10, 1, 4, 1, 4, 0, 3, 1, 0, 12, 6, 6, 7, 1, 5, 4, 1, 2, 1, 3, 0, 0), # 17 (3, 7, 8, 3, 8, 6, 5, 3, 2, 0, 2, 1, 0, 3, 3, 5, 4, 9, 3, 1, 3, 2, 3, 0, 0, 0), # 18 (7, 10, 5, 8, 7, 3, 2, 6, 6, 0, 2, 0, 0, 8, 7, 5, 5, 9, 2, 3, 2, 1, 4, 2, 2, 0), # 19 (5, 5, 6, 4, 3, 1, 2, 3, 2, 1, 1, 1, 0, 11, 5, 3, 7, 6, 6, 3, 3, 3, 2, 0, 0, 0), # 20 (3, 12, 2, 5, 5, 3, 6, 0, 6, 0, 1, 0, 0, 6, 5, 6, 1, 5, 4, 2, 1, 1, 2, 0, 1, 0), # 21 (4, 5, 9, 2, 3, 3, 1, 2, 4, 2, 1, 2, 0, 14, 7, 6, 7, 10, 8, 2, 2, 4, 2, 1, 0, 0), # 22 (4, 10, 8, 14, 11, 2, 1, 2, 2, 2, 2, 1, 0, 8, 8, 12, 5, 5, 6, 2, 4, 3, 4, 2, 0, 0), # 23 (13, 8, 8, 9, 6, 1, 3, 3, 2, 2, 1, 2, 0, 7, 5, 5, 5, 9, 3, 5, 2, 4, 0, 1, 2, 0), # 24 (6, 8, 5, 6, 5, 2, 1, 1, 4, 1, 3, 0, 0, 5, 7, 3, 10, 7, 5, 5, 1, 4, 1, 2, 0, 0), # 25 (9, 6, 3, 9, 7, 2, 2, 4, 5, 5, 0, 2, 0, 8, 12, 6, 10, 2, 4, 2, 5, 0, 1, 0, 1, 0), # 26 (8, 4, 15, 6, 4, 5, 0, 0, 2, 3, 2, 0, 0, 8, 7, 5, 5, 1, 2, 5, 1, 2, 2, 3, 0, 0), # 27 (7, 13, 6, 7, 2, 3, 4, 4, 2, 0, 2, 0, 0, 9, 10, 3, 4, 5, 6, 2, 2, 1, 2, 3, 1, 0), # 28 (4, 8, 9, 7, 4, 1, 6, 2, 5, 2, 0, 3, 0, 4, 6, 7, 5, 8, 6, 4, 3, 6, 3, 0, 1, 0), # 29 (6, 5, 5, 6, 2, 5, 3, 3, 3, 1, 0, 0, 0, 12, 4, 2, 5, 9, 1, 3, 3, 5, 4, 2, 0, 0), # 30 (9, 7, 8, 7, 8, 1, 6, 9, 4, 1, 0, 0, 0, 7, 7, 7, 3, 7, 5, 3, 0, 3, 4, 2, 2, 0), # 31 (8, 11, 10, 8, 6, 6, 3, 3, 4, 2, 3, 0, 0, 12, 2, 7, 6, 11, 2, 3, 0, 2, 7, 0, 1, 0), # 32 (10, 10, 9, 4, 5, 3, 4, 1, 3, 2, 1, 1, 0, 11, 6, 8, 5, 5, 4, 4, 2, 1, 3, 0, 1, 0), # 33 (8, 8, 11, 5, 6, 6, 5, 1, 5, 3, 2, 1, 0, 8, 5, 6, 8, 7, 6, 5, 2, 7, 2, 0, 1, 0), # 34 (6, 4, 8, 7, 6, 1, 4, 4, 4, 3, 1, 1, 0, 8, 8, 5, 6, 7, 2, 3, 4, 4, 2, 0, 1, 0), # 35 (9, 13, 13, 4, 5, 3, 5, 2, 2, 0, 3, 1, 0, 12, 11, 3, 2, 1, 2, 8, 0, 0, 2, 3, 2, 0), # 36 (18, 18, 6, 6, 5, 2, 4, 2, 4, 2, 1, 1, 0, 9, 5, 4, 2, 10, 5, 0, 4, 1, 2, 2, 2, 0), # 37 (11, 12, 4, 7, 7, 3, 2, 1, 4, 1, 0, 1, 0, 7, 6, 6, 2, 5, 7, 3, 4, 5, 3, 0, 1, 0), # 38 (3, 3, 7, 5, 2, 3, 3, 5, 2, 3, 0, 2, 0, 7, 5, 4, 2, 12, 1, 3, 1, 4, 1, 0, 1, 0), # 39 (10, 7, 4, 7, 10, 4, 0, 4, 5, 2, 1, 1, 0, 3, 12, 6, 3, 6, 4, 3, 3, 5, 1, 1, 1, 0), # 40 (9, 4, 7, 7, 5, 5, 4, 0, 4, 1, 0, 1, 0, 7, 9, 6, 6, 13, 6, 3, 1, 4, 1, 2, 0, 0), # 41 (12, 8, 6, 5, 3, 3, 1, 3, 4, 5, 1, 0, 0, 5, 5, 3, 3, 8, 5, 5, 0, 2, 2, 2, 0, 0), # 42 (5, 7, 13, 9, 6, 1, 3, 4, 4, 1, 0, 1, 0, 9, 9, 5, 6, 8, 4, 1, 1, 4, 2, 1, 1, 0), # 43 (14, 6, 11, 10, 5, 3, 0, 1, 5, 1, 1, 0, 0, 9, 7, 2, 6, 5, 7, 1, 4, 6, 1, 0, 0, 0), # 44 (8, 10, 8, 12, 7, 3, 1, 2, 2, 3, 2, 0, 0, 11, 10, 7, 3, 9, 6, 2, 2, 1, 2, 0, 0, 0), # 45 (8, 5, 11, 6, 2, 3, 0, 3, 5, 1, 0, 0, 0, 12, 8, 5, 4, 11, 1, 1, 1, 2, 2, 1, 3, 0), # 46 (10, 12, 6, 7, 5, 3, 4, 3, 4, 2, 0, 0, 0, 6, 9, 4, 8, 7, 1, 3, 1, 5, 1, 1, 0, 0), # 47 (11, 5, 12, 8, 5, 4, 5, 1, 1, 0, 0, 2, 0, 11, 5, 7, 1, 9, 3, 5, 2, 6, 6, 2, 0, 0), # 48 (8, 12, 9, 7, 8, 4, 0, 4, 3, 2, 3, 4, 0, 12, 6, 4, 7, 1, 6, 4, 3, 8, 2, 2, 1, 0), # 49 (10, 5, 4, 5, 5, 3, 5, 1, 5, 0, 3, 2, 0, 2, 6, 8, 4, 10, 2, 3, 5, 3, 5, 1, 1, 0), # 50 (13, 11, 7, 4, 5, 0, 5, 4, 5, 1, 1, 0, 0, 5, 6, 5, 2, 5, 3, 6, 2, 2, 2, 1, 3, 0), # 51 (9, 6, 2, 10, 0, 2, 3, 0, 5, 1, 2, 1, 0, 6, 5, 5, 4, 13, 3, 5, 2, 2, 3, 2, 1, 0), # 52 (2, 6, 13, 7, 10, 3, 2, 4, 3, 2, 2, 1, 0, 9, 14, 6, 3, 10, 4, 1, 0, 3, 3, 0, 0, 0), # 53 (6, 10, 8, 4, 5, 0, 2, 2, 1, 0, 2, 1, 0, 6, 11, 9, 5, 7, 2, 2, 0, 5, 1, 1, 1, 0), # 54 (9, 6, 7, 4, 12, 1, 1, 3, 8, 1, 1, 1, 0, 8, 12, 5, 1, 7, 1, 3, 0, 2, 2, 0, 1, 0), # 55 (11, 8, 12, 14, 5, 2, 2, 2, 3, 3, 0, 1, 0, 7, 11, 8, 6, 2, 4, 7, 1, 2, 5, 0, 1, 0), # 56 (6, 7, 4, 11, 6, 1, 6, 1, 4, 0, 0, 2, 0, 8, 8, 4, 7, 7, 5, 2, 1, 3, 2, 1, 0, 0), # 57 (6, 4, 3, 9, 10, 1, 8, 1, 3, 0, 1, 1, 0, 17, 8, 5, 4, 5, 4, 0, 6, 2, 3, 1, 0, 0), # 58 (9, 10, 6, 8, 4, 3, 2, 4, 6, 2, 1, 0, 0, 3, 10, 4, 6, 5, 1, 4, 2, 1, 3, 1, 0, 0), # 59 (13, 5, 3, 6, 4, 5, 3, 0, 4, 1, 1, 1, 0, 7, 9, 4, 3, 8, 4, 1, 3, 2, 1, 1, 0, 0), # 60 (1, 3, 3, 6, 6, 3, 2, 2, 3, 0, 2, 1, 0, 7, 4, 7, 3, 9, 9, 4, 1, 4, 1, 1, 0, 0), # 61 (12, 5, 9, 6, 3, 6, 2, 2, 3, 2, 2, 0, 0, 11, 3, 6, 3, 4, 6, 4, 4, 2, 4, 2, 0, 0), # 62 (10, 11, 6, 5, 7, 1, 2, 4, 3, 2, 0, 0, 0, 8, 6, 3, 3, 5, 0, 4, 2, 2, 4, 1, 0, 0), # 63 (8, 5, 7, 7, 8, 3, 3, 2, 4, 0, 3, 1, 0, 6, 8, 1, 3, 10, 5, 2, 4, 3, 2, 1, 0, 0), # 64 (5, 5, 6, 5, 2, 1, 3, 3, 3, 1, 1, 0, 0, 7, 4, 5, 5, 2, 0, 4, 2, 2, 4, 1, 0, 0), # 65 (11, 11, 6, 8, 5, 1, 2, 4, 5, 2, 0, 0, 0, 9, 7, 8, 5, 5, 3, 5, 3, 1, 3, 2, 1, 0), # 66 (11, 6, 8, 7, 4, 2, 2, 1, 5, 1, 3, 0, 0, 10, 8, 6, 7, 11, 6, 3, 2, 2, 1, 3, 0, 0), # 67 (11, 7, 10, 5, 2, 4, 2, 1, 2, 1, 1, 1, 0, 7, 6, 7, 7, 8, 3, 2, 4, 2, 1, 2, 0, 0), # 68 (9, 9, 9, 3, 4, 1, 2, 2, 2, 2, 0, 0, 0, 7, 8, 2, 2, 8, 1, 3, 2, 3, 2, 1, 1, 0), # 69 (10, 7, 9, 4, 7, 0, 4, 2, 1, 1, 0, 0, 0, 13, 8, 6, 7, 5, 3, 3, 2, 3, 4, 1, 0, 0), # 70 (7, 3, 8, 7, 5, 2, 3, 2, 5, 0, 1, 0, 0, 7, 5, 13, 1, 8, 2, 3, 2, 2, 2, 0, 1, 0), # 71 (10, 7, 14, 4, 8, 4, 1, 1, 3, 0, 0, 0, 0, 4, 8, 7, 5, 7, 9, 5, 1, 6, 3, 1, 1, 0), # 72 (6, 6, 8, 7, 6, 0, 3, 4, 7, 2, 0, 1, 0, 6, 5, 4, 3, 2, 2, 2, 3, 2, 1, 1, 0, 0), # 73 (1, 8, 5, 7, 7, 2, 4, 4, 4, 4, 0, 2, 0, 5, 3, 4, 0, 4, 5, 3, 3, 4, 6, 1, 1, 0), # 74 (8, 4, 6, 3, 5, 8, 2, 0, 4, 1, 1, 0, 0, 12, 5, 5, 4, 7, 3, 3, 3, 2, 3, 1, 2, 0), # 75 (14, 5, 6, 4, 13, 5, 0, 4, 2, 0, 2, 0, 0, 8, 9, 3, 4, 6, 5, 5, 1, 1, 5, 3, 0, 0), # 76 (12, 4, 4, 5, 8, 2, 3, 1, 4, 4, 2, 1, 0, 8, 4, 5, 5, 6, 1, 0, 3, 2, 2, 0, 1, 0), # 77 (12, 7, 9, 5, 8, 1, 4, 0, 0, 4, 3, 1, 0, 8, 6, 5, 1, 5, 3, 4, 2, 3, 2, 2, 1, 0), # 78 (4, 7, 12, 8, 9, 3, 2, 2, 3, 2, 1, 3, 0, 8, 3, 4, 2, 5, 4, 4, 1, 2, 3, 1, 0, 0), # 79 (11, 6, 3, 9, 7, 1, 6, 1, 2, 2, 2, 0, 0, 6, 6, 4, 3, 4, 8, 1, 2, 2, 1, 1, 0, 0), # 80 (8, 4, 9, 6, 7, 3, 2, 3, 4, 1, 0, 0, 0, 11, 3, 8, 4, 8, 5, 2, 2, 4, 1, 1, 1, 0), # 81 (9, 8, 11, 1, 6, 1, 2, 4, 2, 0, 1, 1, 0, 7, 5, 5, 4, 7, 5, 5, 0, 2, 0, 2, 0, 0), # 82 (11, 7, 3, 11, 8, 1, 2, 2, 1, 0, 1, 0, 0, 4, 8, 4, 6, 11, 4, 1, 4, 2, 5, 1, 1, 0), # 83 (9, 4, 3, 9, 5, 1, 2, 1, 0, 0, 2, 0, 0, 8, 2, 5, 9, 8, 5, 3, 4, 3, 4, 3, 1, 0), # 84 (3, 6, 7, 9, 4, 0, 3, 1, 0, 1, 1, 0, 0, 17, 7, 2, 0, 6, 2, 3, 1, 3, 1, 2, 1, 0), # 85 (3, 6, 7, 4, 5, 3, 3, 3, 2, 1, 1, 0, 0, 12, 4, 3, 3, 6, 6, 4, 5, 4, 4, 0, 0, 0), # 86 (9, 8, 11, 8, 5, 2, 5, 3, 2, 1, 1, 0, 0, 7, 7, 7, 3, 6, 4, 3, 0, 3, 0, 0, 0, 0), # 87 (9, 7, 9, 8, 4, 6, 2, 2, 4, 3, 2, 1, 0, 5, 8, 8, 3, 5, 3, 3, 3, 4, 1, 0, 0, 0), # 88 (6, 8, 2, 6, 4, 1, 5, 2, 3, 3, 2, 1, 0, 9, 6, 6, 1, 5, 4, 3, 2, 5, 2, 0, 0, 0), # 89 (6, 8, 2, 3, 8, 3, 2, 3, 3, 2, 1, 0, 0, 9, 3, 6, 7, 7, 2, 3, 3, 2, 5, 1, 1, 0), # 90 (6, 7, 9, 2, 5, 1, 2, 0, 2, 2, 1, 0, 0, 6, 6, 2, 3, 5, 5, 4, 1, 3, 0, 1, 0, 0), # 91 (7, 2, 12, 8, 5, 2, 6, 0, 3, 0, 2, 0, 0, 5, 5, 2, 5, 12, 6, 3, 4, 12, 2, 0, 3, 0), # 92 (7, 7, 6, 8, 5, 2, 3, 1, 4, 0, 3, 0, 0, 14, 8, 5, 2, 4, 2, 7, 2, 3, 1, 1, 1, 0), # 93 (12, 7, 5, 3, 8, 5, 4, 3, 6, 3, 1, 2, 0, 7, 6, 8, 4, 10, 4, 3, 2, 4, 2, 0, 0, 0), # 94 (5, 6, 5, 5, 6, 3, 2, 2, 3, 2, 0, 1, 0, 9, 7, 10, 6, 5, 4, 0, 3, 2, 2, 2, 1, 0), # 95 (5, 10, 8, 2, 4, 3, 6, 3, 1, 2, 1, 0, 0, 5, 8, 3, 4, 6, 5, 0, 3, 1, 2, 1, 1, 0), # 96 (10, 3, 7, 4, 5, 1, 3, 0, 4, 0, 3, 0, 0, 9, 8, 8, 5, 11, 5, 4, 1, 3, 2, 1, 2, 0), # 97 (3, 4, 9, 7, 5, 2, 5, 3, 4, 2, 1, 1, 0, 9, 6, 4, 7, 6, 2, 3, 2, 2, 2, 2, 0, 0), # 98 (9, 5, 8, 3, 6, 1, 1, 5, 0, 1, 0, 0, 0, 7, 6, 3, 4, 3, 3, 3, 2, 6, 3, 0, 0, 0), # 99 (6, 6, 3, 8, 7, 1, 1, 2, 3, 1, 2, 0, 0, 8, 4, 7, 3, 9, 3, 4, 5, 2, 3, 3, 0, 0), # 100 (8, 4, 5, 8, 3, 6, 2, 4, 2, 1, 1, 1, 0, 12, 9, 7, 3, 6, 4, 4, 3, 1, 6, 2, 0, 0), # 101 (7, 8, 1, 7, 6, 1, 2, 1, 7, 0, 0, 0, 0, 5, 4, 11, 2, 3, 3, 3, 1, 1, 3, 1, 1, 0), # 102 (9, 4, 9, 5, 3, 5, 3, 0, 4, 0, 2, 0, 0, 10, 5, 7, 2, 8, 3, 2, 2, 4, 2, 1, 0, 0), # 103 (8, 3, 3, 5, 5, 3, 1, 5, 2, 0, 2, 0, 0, 6, 8, 1, 2, 6, 2, 2, 1, 2, 2, 0, 0, 0), # 104 (11, 3, 4, 7, 5, 2, 2, 0, 1, 2, 1, 0, 0, 6, 15, 6, 4, 7, 2, 6, 0, 2, 5, 1, 0, 0), # 105 (10, 11, 9, 5, 3, 2, 2, 1, 1, 0, 2, 0, 0, 9, 11, 9, 6, 4, 3, 6, 2, 7, 5, 0, 0, 0), # 106 (3, 6, 11, 7, 5, 0, 1, 2, 4, 0, 1, 1, 0, 9, 7, 5, 3, 14, 2, 4, 3, 1, 2, 2, 0, 0), # 107 (6, 11, 3, 8, 3, 8, 0, 2, 0, 3, 1, 0, 0, 3, 6, 4, 3, 9, 1, 4, 3, 3, 5, 1, 0, 0), # 108 (8, 4, 10, 6, 5, 2, 6, 3, 0, 3, 0, 0, 0, 8, 8, 4, 1, 8, 3, 4, 0, 0, 1, 3, 2, 0), # 109 (9, 8, 3, 4, 3, 3, 2, 5, 4, 2, 2, 1, 0, 5, 10, 3, 5, 6, 3, 5, 3, 3, 1, 0, 1, 0), # 110 (11, 2, 7, 5, 6, 3, 3, 6, 2, 1, 1, 2, 0, 10, 2, 2, 5, 3, 4, 3, 1, 4, 1, 2, 0, 0), # 111 (10, 5, 4, 10, 5, 5, 3, 3, 3, 1, 2, 1, 0, 7, 9, 6, 8, 4, 1, 3, 1, 1, 1, 2, 0, 0), # 112 (7, 7, 3, 8, 7, 4, 2, 1, 0, 1, 0, 0, 0, 12, 4, 4, 3, 4, 1, 3, 2, 1, 5, 1, 3, 0), # 113 (3, 9, 4, 5, 8, 4, 2, 2, 2, 1, 1, 0, 0, 8, 2, 5, 4, 7, 3, 3, 2, 4, 2, 1, 1, 0), # 114 (9, 9, 9, 6, 10, 1, 3, 1, 3, 1, 0, 0, 0, 10, 8, 6, 6, 7, 2, 3, 0, 6, 0, 1, 1, 0), # 115 (10, 12, 5, 5, 4, 2, 3, 5, 4, 0, 2, 2, 0, 11, 11, 5, 3, 7, 4, 3, 2, 6, 1, 0, 1, 0), # 116 (5, 7, 5, 7, 7, 1, 2, 2, 4, 2, 1, 1, 0, 5, 7, 6, 4, 4, 3, 2, 1, 3, 0, 1, 1, 0), # 117 (6, 6, 7, 4, 5, 4, 1, 0, 3, 3, 2, 1, 0, 4, 8, 3, 6, 2, 3, 1, 5, 0, 0, 0, 0, 0), # 118 (8, 4, 5, 5, 6, 4, 3, 3, 5, 1, 1, 0, 0, 10, 7, 5, 2, 12, 3, 2, 4, 1, 2, 0, 1, 0), # 119 (14, 6, 5, 5, 2, 1, 2, 1, 1, 0, 0, 0, 0, 9, 4, 1, 4, 4, 3, 2, 2, 1, 0, 0, 0, 0), # 120 (10, 6, 7, 9, 3, 8, 5, 1, 4, 2, 2, 1, 0, 10, 12, 7, 4, 5, 4, 2, 2, 5, 1, 0, 1, 0), # 121 (10, 3, 5, 13, 5, 4, 1, 2, 4, 0, 1, 1, 0, 5, 5, 2, 3, 4, 9, 3, 2, 2, 1, 0, 0, 0), # 122 (12, 5, 6, 5, 3, 3, 1, 3, 0, 0, 1, 1, 0, 14, 8, 4, 1, 7, 2, 2, 1, 4, 2, 1, 1, 0), # 123 (11, 8, 4, 11, 5, 4, 0, 2, 2, 2, 1, 1, 0, 9, 7, 4, 2, 3, 4, 3, 2, 2, 2, 2, 0, 0), # 124 (4, 5, 9, 4, 3, 4, 3, 2, 1, 1, 0, 0, 0, 8, 5, 2, 3, 3, 2, 3, 2, 2, 0, 2, 2, 0), # 125 (8, 3, 2, 10, 3, 2, 1, 2, 2, 0, 0, 0, 0, 7, 3, 5, 1, 4, 2, 6, 3, 3, 5, 1, 0, 0), # 126 (7, 3, 5, 7, 4, 3, 2, 3, 2, 0, 0, 0, 0, 6, 3, 6, 4, 6, 5, 0, 3, 5, 0, 1, 0, 0), # 127 (6, 5, 2, 3, 3, 0, 3, 1, 1, 0, 1, 1, 0, 7, 8, 2, 2, 4, 3, 1, 3, 6, 1, 0, 1, 0), # 128 (8, 10, 7, 10, 7, 2, 1, 1, 1, 1, 1, 0, 0, 3, 2, 3, 5, 7, 1, 4, 1, 5, 4, 1, 0, 0), # 129 (6, 5, 6, 4, 5, 1, 2, 2, 3, 1, 0, 0, 0, 4, 3, 4, 3, 8, 2, 1, 1, 2, 4, 1, 2, 0), # 130 (8, 7, 7, 8, 6, 5, 3, 1, 2, 0, 1, 0, 0, 10, 5, 4, 5, 8, 1, 1, 2, 1, 4, 2, 0, 0), # 131 (10, 5, 10, 6, 7, 3, 3, 2, 1, 0, 1, 0, 0, 5, 6, 2, 5, 6, 0, 4, 3, 3, 2, 0, 2, 0), # 132 (3, 7, 4, 5, 3, 6, 4, 3, 3, 5, 1, 1, 0, 3, 9, 6, 3, 5, 1, 2, 0, 2, 3, 1, 0, 0), # 133 (4, 7, 11, 5, 3, 2, 2, 0, 5, 2, 1, 0, 0, 12, 4, 6, 2, 7, 4, 2, 2, 1, 3, 2, 2, 0), # 134 (7, 5, 5, 11, 6, 1, 2, 2, 3, 0, 2, 0, 0, 5, 6, 2, 1, 3, 4, 2, 1, 2, 1, 3, 0, 0), # 135 (7, 7, 8, 7, 3, 1, 1, 2, 4, 3, 2, 1, 0, 5, 4, 4, 4, 5, 2, 5, 1, 5, 3, 0, 0, 0), # 136 (6, 7, 4, 10, 6, 2, 3, 3, 3, 1, 1, 0, 0, 5, 5, 2, 1, 8, 3, 2, 1, 0, 3, 0, 2, 0), # 137 (4, 4, 5, 4, 7, 5, 4, 3, 3, 0, 0, 0, 0, 5, 6, 4, 7, 10, 1, 6, 1, 3, 3, 0, 0, 0), # 138 (7, 8, 5, 4, 5, 1, 3, 1, 1, 0, 0, 2, 0, 5, 1, 4, 0, 4, 5, 4, 1, 2, 2, 1, 2, 0), # 139 (2, 3, 9, 7, 4, 1, 3, 1, 4, 1, 0, 0, 0, 7, 6, 5, 4, 8, 3, 1, 1, 4, 4, 0, 1, 0), # 140 (6, 2, 1, 9, 4, 3, 2, 1, 3, 0, 1, 2, 0, 8, 8, 3, 4, 5, 1, 2, 1, 3, 1, 3, 0, 0), # 141 (5, 2, 10, 10, 8, 2, 4, 0, 4, 2, 1, 0, 0, 6, 8, 4, 4, 9, 0, 0, 2, 3, 1, 1, 0, 0), # 142 (8, 1, 8, 3, 5, 1, 3, 2, 3, 0, 1, 1, 0, 6, 8, 3, 6, 8, 4, 1, 3, 0, 2, 3, 1, 0), # 143 (5, 5, 4, 6, 0, 4, 2, 1, 1, 0, 0, 1, 0, 5, 5, 8, 5, 5, 1, 0, 3, 3, 1, 0, 0, 0), # 144 (14, 5, 3, 4, 1, 2, 3, 1, 2, 0, 1, 1, 0, 5, 5, 9, 3, 6, 2, 4, 2, 2, 0, 1, 1, 0), # 145 (11, 6, 3, 4, 5, 2, 2, 1, 5, 2, 5, 1, 0, 10, 6, 2, 2, 7, 3, 1, 3, 2, 4, 1, 0, 0), # 146 (7, 3, 5, 6, 9, 2, 2, 5, 3, 2, 2, 0, 0, 5, 5, 6, 3, 6, 3, 6, 1, 2, 5, 0, 0, 0), # 147 (8, 4, 4, 5, 2, 2, 2, 4, 1, 1, 1, 2, 0, 7, 4, 3, 4, 6, 5, 7, 0, 2, 5, 0, 0, 0), # 148 (10, 5, 6, 3, 3, 4, 3, 3, 2, 1, 1, 1, 0, 4, 5, 5, 2, 1, 3, 2, 1, 1, 2, 1, 0, 0), # 149 (8, 7, 8, 1, 6, 3, 4, 3, 2, 0, 0, 0, 0, 3, 7, 2, 1, 2, 2, 2, 1, 0, 2, 1, 0, 0), # 150 (2, 7, 6, 1, 5, 3, 0, 3, 2, 2, 1, 1, 0, 8, 4, 1, 2, 7, 1, 1, 3, 3, 1, 2, 1, 0), # 151 (2, 5, 3, 4, 5, 5, 2, 1, 1, 3, 1, 0, 0, 8, 3, 5, 4, 6, 1, 2, 2, 5, 1, 2, 1, 0), # 152 (8, 6, 5, 5, 4, 2, 2, 1, 3, 0, 0, 0, 0, 3, 6, 5, 1, 9, 1, 1, 0, 3, 2, 2, 1, 0), # 153 (5, 5, 5, 6, 5, 0, 3, 3, 3, 0, 1, 1, 0, 12, 6, 2, 3, 3, 3, 1, 0, 1, 5, 1, 0, 0), # 154 (4, 1, 4, 1, 3, 2, 1, 2, 4, 2, 0, 0, 0, 4, 6, 3, 5, 3, 1, 2, 4, 2, 2, 0, 0, 0), # 155 (5, 4, 11, 3, 8, 2, 4, 0, 1, 1, 0, 0, 0, 2, 3, 2, 4, 3, 1, 4, 2, 2, 3, 0, 1, 0), # 156 (5, 4, 6, 4, 5, 3, 3, 2, 5, 0, 1, 1, 0, 11, 6, 3, 5, 6, 5, 2, 4, 4, 1, 1, 0, 0), # 157 (6, 3, 3, 4, 4, 1, 1, 1, 2, 1, 0, 1, 0, 2, 6, 7, 3, 5, 2, 0, 4, 2, 2, 1, 0, 0), # 158 (11, 5, 2, 7, 8, 2, 1, 3, 0, 1, 0, 0, 0, 5, 6, 4, 1, 5, 2, 2, 0, 1, 4, 2, 2, 0), # 159 (7, 3, 7, 3, 5, 2, 0, 0, 3, 0, 0, 0, 0, 10, 3, 4, 2, 4, 4, 2, 3, 1, 1, 1, 1, 0), # 160 (1, 5, 4, 3, 3, 2, 1, 1, 4, 1, 0, 1, 0, 10, 3, 8, 4, 3, 1, 2, 1, 2, 1, 0, 1, 0), # 161 (6, 3, 6, 5, 5, 1, 1, 2, 0, 0, 3, 0, 0, 3, 4, 2, 2, 3, 1, 2, 1, 4, 3, 1, 0, 0), # 162 (11, 2, 4, 4, 4, 0, 2, 3, 3, 2, 0, 1, 0, 2, 6, 3, 2, 7, 4, 1, 2, 0, 0, 1, 0, 0), # 163 (2, 4, 1, 11, 5, 6, 3, 1, 2, 2, 1, 1, 0, 11, 0, 2, 4, 2, 1, 2, 1, 3, 2, 1, 0, 0), # 164 (8, 5, 3, 7, 2, 3, 4, 0, 1, 0, 1, 0, 0, 9, 4, 6, 3, 3, 1, 2, 0, 3, 0, 0, 1, 0), # 165 (7, 3, 5, 4, 1, 2, 0, 0, 1, 1, 0, 0, 0, 8, 6, 3, 2, 4, 3, 1, 1, 1, 2, 2, 0, 0), # 166 (6, 2, 4, 7, 3, 5, 3, 0, 2, 0, 1, 0, 0, 3, 3, 0, 3, 5, 6, 2, 3, 1, 1, 2, 0, 0), # 167 (6, 3, 5, 1, 2, 3, 1, 1, 3, 1, 1, 1, 0, 7, 8, 2, 2, 3, 1, 3, 4, 4, 2, 1, 0, 0), # 168 (5, 0, 3, 5, 3, 2, 1, 1, 2, 0, 0, 0, 0, 10, 4, 2, 2, 3, 2, 2, 0, 4, 1, 1, 0, 0), # 169 (3, 3, 2, 3, 7, 2, 1, 0, 4, 0, 0, 0, 0, 8, 2, 4, 2, 5, 3, 1, 1, 1, 5, 1, 0, 0), # 170 (5, 4, 3, 6, 4, 3, 2, 2, 2, 1, 1, 1, 0, 3, 4, 2, 0, 6, 3, 2, 1, 4, 2, 1, 0, 0), # 171 (4, 7, 5, 3, 5, 0, 4, 1, 2, 1, 0, 0, 0, 8, 4, 1, 2, 1, 1, 2, 1, 3, 1, 0, 0, 0), # 172 (4, 0, 3, 6, 6, 4, 0, 0, 4, 1, 1, 2, 0, 2, 5, 1, 4, 2, 1, 3, 1, 2, 1, 1, 0, 0), # 173 (6, 5, 6, 6, 2, 2, 1, 2, 0, 0, 0, 1, 0, 3, 2, 4, 1, 5, 2, 1, 0, 2, 0, 1, 2, 0), # 174 (5, 4, 6, 1, 3, 4, 1, 2, 3, 3, 1, 0, 0, 3, 2, 1, 3, 4, 0, 0, 0, 2, 0, 1, 0, 0), # 175 (2, 2, 0, 5, 0, 1, 2, 0, 0, 0, 0, 0, 0, 3, 3, 1, 3, 5, 2, 0, 1, 1, 0, 1, 0, 0), # 176 (5, 2, 2, 3, 4, 3, 1, 1, 1, 2, 0, 0, 0, 2, 1, 2, 2, 4, 2, 0, 0, 1, 0, 1, 0, 0), # 177 (3, 0, 6, 1, 2, 1, 2, 0, 0, 0, 1, 0, 0, 3, 2, 1, 0, 5, 1, 1, 1, 6, 6, 0, 0, 0), # 178 (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), # 179 ) station_arriving_intensity = ( (4.0166924626974145, 4.420230847754533, 4.169026583690005, 4.971734219090746, 4.4437484860876895, 2.5109239456298713, 3.3168284922991322, 3.7225409383835384, 4.872079249734406, 3.166412012417896, 3.3642121311084825, 3.918332062644939, 4.067104170062691), # 0 (4.283461721615979, 4.712048555315807, 4.444277273064122, 5.3001154026212935, 4.737992269979389, 2.6767868672340445, 3.535575153010955, 3.9676109783245668, 5.1937962610663275, 3.37518455382172, 3.5864769087649053, 4.176973328651484, 4.3358333179518835), # 1 (4.549378407183785, 5.0027081367127835, 4.718433828437931, 5.627190163731836, 5.0311703789997955, 2.841988091609956, 3.7534548063685635, 4.211700198323536, 5.514229445502039, 3.583131020016437, 3.8078585190210505, 4.434586121642444, 4.603491862567752), # 2 (4.81340623451725, 5.291056401549158, 4.9904086954558835, 5.951661126025659, 5.322129340801522, 3.0058724980680904, 3.9696029133183646, 4.453840925995606, 5.832108128736874, 3.7894261587409446, 4.027478729461906, 4.690148547944369, 4.869018245003381), # 3 (5.074508918732786, 5.57594015942862, 5.259114319762429, 6.272230913106056, 5.609715683037194, 3.1677849659189343, 4.183154934806767, 4.6930654889559325, 6.146161636466166, 3.993244717734143, 4.24445930767246, 4.942638713883811, 5.131350906351854), # 4 (5.331650174946809, 5.856206219954871, 5.523463147002015, 6.587602148576315, 5.892775933359424, 3.3270703744729717, 4.393246331780179, 4.928406214819674, 6.455119294385248, 4.193761444734931, 4.457922021237706, 5.191034725787318, 5.389428287706262), # 5 (5.583793718275733, 6.130701392731601, 5.782367622819093, 6.896477456039722, 6.170156619420835, 3.4830736030406912, 4.59901256518501, 5.158895431201991, 6.757710428189452, 4.390151087482207, 4.666988637742626, 5.434314689981447, 5.642188830159686), # 6 (5.829903263835975, 6.398272487362505, 6.034740192858108, 7.19755945909957, 6.440704268874043, 3.6351395309325767, 4.799589095967668, 5.383565465718042, 7.052664363574116, 4.58158839371487, 4.870780924772215, 5.671456712792743, 5.888570974805216), # 7 (6.068942526743948, 6.65776631345128, 6.279493302763517, 7.489550781359142, 6.703265409371669, 3.782613037459112, 4.994111385074558, 5.60144864598298, 7.338710426234565, 4.76724811117182, 5.068420649911457, 5.901438900547762, 6.127513162735934), # 8 (6.299875222116068, 6.908029680601619, 6.515539398179763, 7.771154046421735, 6.956686568566328, 3.924839001930787, 5.181714893452096, 5.811577299611971, 7.6145779418661395, 4.946304987591954, 5.259029580745342, 6.123239359573051, 6.35795383504493), # 9 (6.5216650650687455, 7.147909398417212, 6.7417909247512995, 8.04107187789063, 7.199814274110641, 4.061162303658086, 5.361535082046684, 6.012983754220169, 7.878996236164172, 5.117933770714171, 5.441729484858859, 6.335836196195162, 6.578831432825289), # 10 (6.7332757707184046, 7.3762522765017655, 6.957160328122573, 8.298006899369119, 7.431495053657227, 4.190927821951495, 5.532707411804733, 6.204700337422732, 8.130694634823994, 5.281309208277375, 5.615642129836999, 6.538207516740648, 6.78908439717009), # 11 (6.93367105418145, 7.591905124458958, 7.160560053938032, 8.54066173446049, 7.650575434858702, 4.313480436121496, 5.694367343672649, 6.385759376834817, 8.368402463540944, 5.435606048020458, 5.7798892832647475, 6.729331427536055, 6.987651169172428), # 12 (7.121814630574301, 7.793714751892496, 7.3509025478421295, 8.767739006768036, 7.855901945367681, 4.428165025478579, 5.845650338596845, 6.555193200071585, 8.590849048010346, 5.579999037682324, 5.933592712727095, 6.908186034907937, 7.173470189925388), # 13 (7.296670215013373, 7.980527968406071, 7.527100255479318, 8.977941339895034, 8.046321112836791, 4.5343264693332275, 5.9856918575237295, 6.7120341347481975, 8.796763713927538, 5.713662925001867, 6.0758741858090275, 7.073749445182848, 7.345479900522051), # 14 (7.457201522615084, 8.151191583603374, 7.688065622494034, 9.169971357444789, 8.220679464918646, 4.63130964699593, 6.1136273613997005, 6.855314508479805, 8.984875786987855, 5.835772457717993, 6.2058554700955355, 7.224999764687337, 7.502618742055505), # 15 (7.602372268495841, 8.304552407088106, 7.83271109453074, 9.342531683020573, 8.377823529265866, 4.718459437777168, 6.228592311171181, 6.984066648881569, 9.153914592886629, 5.945502383569597, 6.32265833317161, 7.360915099747952, 7.643825155618837), # 16 (7.73114616777206, 8.439457248463958, 7.959949117233882, 9.49432494022569, 8.516599833531071, 4.795120720987429, 6.329722167784569, 7.097322883568655, 9.302609457319187, 6.042027450295574, 6.425404542622239, 7.480473556691244, 7.768037582305133), # 17 (7.842486935560164, 8.55475291733462, 8.068692136247904, 9.624053752663423, 8.635854905366871, 4.860638375937203, 6.416152392186281, 7.194115540156209, 9.429689705980877, 6.1245224056348295, 6.513215866032407, 7.582653241843772, 7.874194463207477), # 18 (7.935358286976559, 8.649286223303795, 8.157852597217262, 9.730420743937053, 8.734435272425893, 4.914357281936967, 6.4870184453227155, 7.273476946259397, 9.533884664567024, 6.192161997326263, 6.585214070987103, 7.666432261532077, 7.961234239418957), # 19 (8.008723937137665, 8.72190397597517, 8.226342945786403, 9.812128537649883, 8.811187462360754, 4.955622318297215, 6.54145578814029, 7.334439429493374, 9.61392365877296, 6.2441209731087675, 6.64052092507132, 7.730788722082713, 8.02809535203266), # 20 (8.061547601159893, 8.771452984952447, 8.273075627599775, 9.86787975740519, 8.864958002824071, 4.983778364328429, 6.578599881585408, 7.376035317473299, 9.668536014294018, 6.279574080721244, 6.678258195870048, 7.774700729822235, 8.073716242141662), # 21 (8.092792994159664, 8.796780059839316, 8.296963088301828, 9.89637702680627, 8.89459342146846, 4.998170299341094, 6.59758618660448, 7.397296937814332, 9.696451056825532, 6.297696067902594, 6.697547650968272, 7.797146391077192, 8.097035350839063), # 22 (8.104314690674112, 8.799778875171468, 8.299938545953362, 9.899944650205763, 8.902185644826078, 5.0, 6.599843201807471, 7.399595061728395, 9.699940987654323, 6.299833818015546, 6.699966429729392, 7.799918061271147, 8.1), # 23 (8.112809930427323, 8.79802962962963, 8.299451851851853, 9.899505555555557, 8.906486090891882, 5.0, 6.598603050108934, 7.3964, 9.699473333333334, 6.29852049382716, 6.699699663299665, 7.799269135802469, 8.1), # 24 (8.121125784169264, 8.794581618655693, 8.29849108367627, 9.898636831275722, 8.910691956475603, 5.0, 6.596159122085048, 7.390123456790125, 9.69854938271605, 6.295935070873343, 6.69917071954109, 7.797988111568358, 8.1), # 25 (8.129261615238427, 8.789487517146778, 8.297069410150893, 9.897348353909464, 8.914803094736884, 5.0, 6.592549374646977, 7.380883950617285, 9.69718098765432, 6.29212056698674, 6.698384387080684, 7.7960925468678575, 8.1), # 26 (8.13721678697331, 8.7828, 8.2952, 9.89565, 8.918819358835371, 5.0, 6.587811764705883, 7.3688, 9.69538, 6.28712, 6.697345454545455, 7.793600000000001, 8.1), # 27 (8.1449906627124, 8.774571742112483, 8.292896021947874, 9.893551646090536, 8.922740601930721, 5.0, 6.581984249172921, 7.353990123456791, 9.693158271604938, 6.2809763877457705, 6.696058710562415, 7.790528029263832, 8.1), # 28 (8.1525826057942, 8.764855418381345, 8.290170644718794, 9.89106316872428, 8.926566677182576, 5.0, 6.575104784959253, 7.3365728395061724, 9.690527654320988, 6.273732748056699, 6.6945289437585735, 7.78689419295839, 8.1), # 29 (8.159991979557198, 8.753703703703705, 8.287037037037036, 9.888194444444444, 8.930297437750589, 5.0, 6.567211328976035, 7.316666666666666, 9.6875, 6.265432098765433, 6.692760942760943, 7.782716049382715, 8.1), # 30 (8.167218147339886, 8.741169272976682, 8.283508367626887, 9.88495534979424, 8.933932736794407, 5.0, 6.558341838134432, 7.2943901234567905, 9.684087160493828, 6.256117457704619, 6.6907594961965335, 7.778011156835849, 8.1), # 31 (8.174260472480764, 8.727304801097395, 8.27959780521262, 9.881355761316874, 8.937472427473677, 5.0, 6.548534269345599, 7.269861728395063, 9.680300987654322, 6.245831842706905, 6.688529392692356, 7.772797073616828, 8.1), # 32 (8.181118318318317, 8.712162962962962, 8.27531851851852, 9.877405555555555, 8.94091636294805, 5.0, 6.537826579520697, 7.243200000000001, 9.676153333333334, 6.234618271604939, 6.6860754208754205, 7.7670913580246905, 8.1), # 33 (8.187791048191048, 8.695796433470507, 8.270683676268861, 9.873114609053498, 8.944264396377173, 5.0, 6.526256725570888, 7.214523456790123, 9.671656049382719, 6.222519762231368, 6.68340236937274, 7.760911568358482, 8.1), # 34 (8.194278025437447, 8.678257887517146, 8.26570644718793, 9.868492798353909, 8.947516380920696, 5.0, 6.513862664407327, 7.183950617283951, 9.666820987654322, 6.209579332418839, 6.680515026811323, 7.754275262917239, 8.1), # 35 (8.200578613396004, 8.6596, 8.2604, 9.86355, 8.950672169738269, 5.0, 6.500682352941176, 7.151600000000001, 9.66166, 6.1958400000000005, 6.677418181818182, 7.747200000000001, 8.1), # 36 (8.20669217540522, 8.639875445816186, 8.254777503429356, 9.85829609053498, 8.953731615989538, 5.0, 6.486753748083595, 7.11759012345679, 9.656184938271606, 6.1813447828075, 6.674116623020328, 7.739703337905808, 8.1), # 37 (8.212618074803581, 8.619136899862827, 8.248852126200275, 9.85274094650206, 8.956694572834152, 5.0, 6.4721148067457435, 7.0820395061728405, 9.650407654320988, 6.166136698673983, 6.670615139044769, 7.7318028349337, 8.1), # 38 (8.218355674929589, 8.597437037037038, 8.242637037037039, 9.846894444444445, 8.959560893431762, 5.0, 6.456803485838781, 7.045066666666667, 9.644340000000001, 6.150258765432099, 6.666918518518519, 7.723516049382716, 8.1), # 39 (8.22390433912173, 8.574828532235939, 8.236145404663922, 9.84076646090535, 8.962330430942016, 5.0, 6.440857742273865, 7.006790123456792, 9.637993827160495, 6.133754000914496, 6.663031550068587, 7.714860539551899, 8.1), # 40 (8.229263430718502, 8.551364060356653, 8.229390397805213, 9.834366872427985, 8.965003038524562, 5.0, 6.424315532962156, 6.967328395061729, 9.631380987654321, 6.116665422953818, 6.658959022321986, 7.705853863740284, 8.1), # 41 (8.2344323130584, 8.527096296296298, 8.222385185185187, 9.827705555555557, 8.967578569339047, 5.0, 6.4072148148148145, 6.9268, 9.624513333333335, 6.0990360493827165, 6.654705723905725, 7.696513580246914, 8.1), # 42 (8.239410349479915, 8.50207791495199, 8.215142935528121, 9.820792386831277, 8.970056876545122, 5.0, 6.389593544743001, 6.8853234567901245, 9.617402716049384, 6.080908898033837, 6.650276443446813, 7.6868572473708285, 8.1), # 43 (8.244196903321543, 8.47636159122085, 8.2076768175583, 9.813637242798356, 8.972437813302436, 5.0, 6.371489679657872, 6.843017283950619, 9.610060987654322, 6.062326986739826, 6.645675969572266, 7.676902423411066, 8.1), # 44 (8.248791337921773, 8.450000000000001, 8.200000000000001, 9.80625, 8.974721232770637, 5.0, 6.352941176470589, 6.800000000000001, 9.6025, 6.043333333333334, 6.640909090909091, 7.666666666666666, 8.1), # 45 (8.253193016619106, 8.423045816186557, 8.192125651577504, 9.798640534979425, 8.976906988109373, 5.0, 6.333985992092311, 6.756390123456791, 9.594731604938271, 6.023970955647005, 6.635980596084299, 7.656167535436672, 8.1), # 46 (8.257401302752028, 8.39555171467764, 8.18406694101509, 9.790818724279836, 8.978994932478294, 5.0, 6.3146620834341975, 6.712306172839506, 9.586767654320989, 6.004282871513489, 6.630895273724903, 7.64542258802012, 8.1), # 47 (8.261415559659037, 8.367570370370371, 8.175837037037038, 9.782794444444447, 8.980984919037049, 5.0, 6.295007407407407, 6.667866666666668, 9.57862, 5.984312098765432, 6.625657912457912, 7.634449382716049, 8.1), # 48 (8.26523515067863, 8.339154458161865, 8.167449108367627, 9.774577572016462, 8.982876800945286, 5.0, 6.275059920923102, 6.623190123456791, 9.57030049382716, 5.964101655235483, 6.6202733009103385, 7.623265477823503, 8.1), # 49 (8.268859439149294, 8.310356652949247, 8.15891632373114, 9.766177983539094, 8.984670431362652, 5.0, 6.25485758089244, 6.578395061728395, 9.56182098765432, 5.943694558756287, 6.61474622770919, 7.611888431641519, 8.1), # 50 (8.272287788409528, 8.28122962962963, 8.150251851851852, 9.757605555555557, 8.9863656634488, 5.0, 6.23443834422658, 6.5336, 9.553193333333335, 5.923133827160494, 6.609081481481482, 7.600335802469137, 8.1), # 51 (8.275519561797823, 8.251826063100138, 8.141468861454047, 9.748870164609054, 8.987962350363372, 5.0, 6.213840167836683, 6.488923456790123, 9.54442938271605, 5.90246247828075, 6.603283850854222, 7.588625148605397, 8.1), # 52 (8.278554122652675, 8.222198628257889, 8.132580521262005, 9.739981687242798, 8.989460345266023, 5.0, 6.1931010086339064, 6.444483950617284, 9.535540987654322, 5.881723529949703, 6.597358124454421, 7.576774028349337, 8.1), # 53 (8.281390834312573, 8.192400000000001, 8.1236, 9.73095, 8.990859501316402, 5.0, 6.172258823529412, 6.400399999999999, 9.52654, 5.86096, 6.59130909090909, 7.5648, 8.1), # 54 (8.284029060116017, 8.162482853223594, 8.114540466392318, 9.721784979423868, 8.992159671674152, 5.0, 6.151351569434358, 6.35679012345679, 9.517438271604938, 5.84021490626429, 6.585141538845242, 7.552720621856425, 8.1), # 55 (8.286468163401498, 8.132499862825789, 8.105415089163237, 9.712496502057613, 8.993360709498928, 5.0, 6.130417203259905, 6.313772839506173, 9.508247654320988, 5.819531266575218, 6.578860256889887, 7.54055345221765, 8.1), # 56 (8.288707507507507, 8.102503703703704, 8.096237037037039, 9.703094444444446, 8.994462467950374, 5.0, 6.109493681917211, 6.271466666666668, 9.498980000000001, 5.798952098765433, 6.572470033670034, 7.528316049382716, 8.1), # 57 (8.290746455772544, 8.072547050754459, 8.087019478737998, 9.693588683127572, 8.99546480018814, 5.0, 6.088618962317438, 6.2299901234567905, 9.489647160493828, 5.778520420667582, 6.565975657812697, 7.516025971650663, 8.1), # 58 (8.292584371535098, 8.042682578875171, 8.077775582990398, 9.683989094650206, 8.996367559371876, 5.0, 6.067831001371743, 6.189461728395062, 9.480260987654322, 5.758279250114313, 6.55938191794488, 7.503700777320531, 8.1), # 59 (8.294220618133663, 8.012962962962964, 8.068518518518518, 9.674305555555556, 8.99717059866123, 5.0, 6.0471677559912855, 6.15, 9.470833333333335, 5.738271604938272, 6.552693602693603, 7.491358024691358, 8.1), # 60 (8.295654558906731, 7.983440877914953, 8.05926145404664, 9.664547942386832, 8.997873771215849, 5.0, 6.026667183087227, 6.1117234567901235, 9.461376049382716, 5.718540502972108, 6.545915500685871, 7.4790152720621865, 8.1), # 61 (8.296885557192804, 7.954168998628258, 8.050017558299041, 9.654726131687244, 8.998476930195388, 5.0, 6.006367239570725, 6.074750617283951, 9.451900987654321, 5.699128962048469, 6.539052400548697, 7.4666900777320535, 8.1), # 62 (8.297912976330368, 7.9252, 8.0408, 9.644850000000002, 8.998979928759486, 5.0, 5.986305882352941, 6.039200000000001, 9.44242, 5.68008, 6.532109090909092, 7.4544, 8.1), # 63 (8.298736179657919, 7.896586556927298, 8.0316219478738, 9.634929423868314, 8.999382620067799, 5.0, 5.966521068345034, 6.005190123456791, 9.432944938271605, 5.661436634659351, 6.5250903603940635, 7.442162597165067, 8.1), # 64 (8.29935453051395, 7.86838134430727, 8.02249657064472, 9.624974279835392, 8.999684857279973, 5.0, 5.947050754458163, 5.972839506172839, 9.423487654320988, 5.643241883859168, 6.518000997630629, 7.429995427526291, 8.1), # 65 (8.299767392236957, 7.840637037037038, 8.013437037037038, 9.614994444444445, 8.999886493555659, 5.0, 5.927932897603486, 5.942266666666668, 9.414060000000001, 5.625538765432099, 6.510845791245791, 7.417916049382717, 8.1), # 66 (8.299974128165434, 7.813406310013717, 8.004456515775034, 9.604999794238683, 8.999987382054504, 5.0, 5.909205454692165, 5.913590123456792, 9.404673827160494, 5.608370297210792, 6.5036295298665685, 7.405942021033379, 8.1), # 67 (8.29983329158466, 7.786598911456259, 7.9955247599451305, 9.594913392377887, 8.999902364237876, 4.99990720926688, 5.890812155863717, 5.88667508001829, 9.395270278920897, 5.591696353317733, 6.496228790832301, 7.394024017519794, 8.099900120027435), # 68 (8.298513365539453, 7.75939641577061, 7.98639074074074, 9.584226811594203, 8.99912854030501, 4.999173662551441, 5.872214545077291, 5.860079012345679, 9.385438271604938, 5.575045112563544, 6.487890271132376, 7.38177517868746, 8.099108796296298), # 69 (8.295908630047116, 7.731673967874684, 7.977014746227709, 9.572869699409555, 8.997599451303154, 4.9977290047248895, 5.853328107649096, 5.833561957018748, 9.375122313671698, 5.558335619570188, 6.478519109220864, 7.369138209034247, 8.097545867626888), # 70 (8.292055728514343, 7.703448134873224, 7.967400068587105, 9.560858803005905, 8.995334463003308, 4.995596646852614, 5.8341613276311906, 5.807132693187015, 9.364337768632831, 5.541568287474112, 6.468149896627089, 7.356122349770172, 8.095231910150892), # 71 (8.286991304347827, 7.674735483870967, 7.9575499999999995, 9.548210869565217, 8.99235294117647, 4.992800000000001, 5.81472268907563, 5.7808, 9.353100000000001, 5.524743529411765, 6.456817224880384, 7.342736842105264, 8.0921875), # 72 (8.280752000954257, 7.6455525819726535, 7.947467832647462, 9.534942646269458, 8.988674251593642, 4.989362475232434, 5.795020676034474, 5.754572656607225, 9.341424371284866, 5.507861758519595, 6.444555685510071, 7.328990927249535, 8.0884332133059), # 73 (8.273374461740323, 7.615915996283022, 7.937156858710562, 9.52107088030059, 8.98431776002582, 4.985307483615303, 5.775063772559778, 5.728459442158208, 9.329326245999086, 5.49092338793405, 6.431399870045485, 7.314893846413014, 8.083989626200276), # 74 (8.26489533011272, 7.5858422939068095, 7.92662037037037, 9.50661231884058, 8.97930283224401, 4.980658436213993, 5.754860462703601, 5.7024691358024695, 9.31682098765432, 5.473928830791576, 6.417384370015949, 7.300454840805718, 8.078877314814816), # 75 (8.255351249478142, 7.55534804194876, 7.915861659807956, 9.49158370907139, 8.973648834019205, 4.975438744093889, 5.734419230517997, 5.6766105166895295, 9.303923959762232, 5.4568785002286235, 6.402543776950793, 7.2856831516376666, 8.073116855281206), # 76 (8.244778863243274, 7.524449807513609, 7.904884019204388, 9.476001798174986, 8.967375131122408, 4.9696718183203785, 5.7137485600550235, 5.650892363968908, 9.290650525834478, 5.43977280938164, 6.38691268237935, 7.270588020118885, 8.06672882373114), # 77 (8.233214814814815, 7.493164157706095, 7.893690740740741, 9.459883333333334, 8.96050108932462, 4.963381069958848, 5.69285693536674, 5.625323456790124, 9.277016049382715, 5.422612171387073, 6.370525677830941, 7.255178687459391, 8.059733796296298), # 78 (8.220695747599452, 7.461507659630958, 7.88228511659808, 9.443245061728396, 8.953046074396838, 4.956589910074683, 5.671752840505201, 5.5999125743026985, 9.26303589391861, 5.405396999381371, 6.353417354834898, 7.239464394869204, 8.052152349108367), # 79 (8.207258305003878, 7.429496880392938, 7.870670438957475, 9.426103730542136, 8.945029452110063, 4.949321749733272, 5.650444759522465, 5.574668495656151, 9.248725422953818, 5.388127706500981, 6.335622304920551, 7.223454383558348, 8.04400505829904), # 80 (8.192939130434784, 7.397148387096775, 7.85885, 9.408476086956524, 8.936470588235293, 4.9416, 5.628941176470589, 5.549600000000001, 9.2341, 5.370804705882353, 6.317175119617225, 7.207157894736842, 8.0353125), # 81 (8.177774867298861, 7.364478746847206, 7.8468270919067225, 9.390378878153516, 8.927388848543533, 4.933448071940254, 5.607250575401629, 5.524715866483768, 9.219174988568815, 5.353428410661933, 6.298110390454251, 7.190584169614709, 8.026095250342937), # 82 (8.161802159002804, 7.331504526748971, 7.834605006858711, 9.371828851315083, 8.917803598805778, 4.924889376619419, 5.585381440367643, 5.500024874256973, 9.203965752171925, 5.335999233976169, 6.278462708960955, 7.17374244940197, 8.016373885459535), # 83 (8.145057648953301, 7.29824229390681, 7.822187037037037, 9.35284275362319, 8.907734204793028, 4.915947325102881, 5.563342255420687, 5.475535802469135, 9.188487654320987, 5.3185175889615115, 6.258266666666667, 7.156641975308642, 8.006168981481482), # 84 (8.127577980557048, 7.264708615425461, 7.80957647462277, 9.333437332259797, 8.897200032276286, 4.906645328456029, 5.54114150461282, 5.451257430269777, 9.172756058527662, 5.300983888754405, 6.237556855100715, 7.13929198854475, 7.995501114540467), # 85 (8.10939979722073, 7.230920058409665, 7.796776611796983, 9.313629334406873, 8.886220447026547, 4.897006797744247, 5.518787671996097, 5.4271985368084135, 9.156786328303614, 5.283398546491299, 6.216367865792428, 7.121701730320315, 7.984390860768176), # 86 (8.090559742351045, 7.1968931899641575, 7.7837907407407405, 9.293435507246377, 8.874814814814817, 4.887055144032922, 5.496289241622575, 5.403367901234568, 9.140593827160496, 5.265761975308642, 6.194734290271132, 7.103880441845354, 7.972858796296297), # 87 (8.071094459354686, 7.162644577193681, 7.7706221536351165, 9.27287259796028, 8.863002501412089, 4.876813778387441, 5.473654697544313, 5.37977430269776, 9.124193918609969, 5.248074588342881, 6.172690720066159, 7.085837364329892, 7.960925497256517), # 88 (8.051040591638339, 7.128190787202974, 7.75727414266118, 9.251957353730543, 8.850802872589366, 4.8663061118731905, 5.4508925238133665, 5.356426520347508, 9.107601966163696, 5.230336798730466, 6.150271746706835, 7.067581738983948, 7.948611539780521), # 89 (8.030434782608696, 7.093548387096774, 7.74375, 9.230706521739132, 8.838235294117649, 4.855555555555556, 5.428011204481793, 5.333333333333333, 9.090833333333334, 5.2125490196078434, 6.1275119617224885, 7.049122807017544, 7.9359375000000005), # 90 (8.00931367567245, 7.058733943979822, 7.730053017832647, 9.20913684916801, 8.825319131767932, 4.8445855204999235, 5.405019223601649, 5.3105035208047555, 9.073903383630546, 5.194711664111461, 6.104445956642448, 7.0304698096406995, 7.922923954046638), # 91 (7.9877139142362985, 7.023764024956858, 7.716186488340192, 9.187265083199142, 8.812073751311223, 4.833419417771681, 5.381925065224994, 5.287945861911295, 9.056827480566987, 5.176825145377768, 6.081108322996043, 7.011631988063439, 7.909591478052126), # 92 (7.965672141706924, 6.988655197132617, 7.702153703703704, 9.165107971014494, 8.798518518518518, 4.822080658436214, 5.358737213403881, 5.26566913580247, 9.039620987654322, 5.15888987654321, 6.0575336523126, 6.992618583495776, 7.895960648148147), # 93 (7.943225001491024, 6.953424027611842, 7.6879579561042535, 9.142682259796029, 8.784672799160816, 4.810592653558909, 5.335464152190369, 5.243682121627802, 9.022299268404208, 5.140906270744238, 6.033756536121448, 6.973438837147739, 7.882052040466393), # 94 (7.920409136995288, 6.9180870834992705, 7.673602537722909, 9.120004696725712, 8.770555959009119, 4.798978814205152, 5.312114365636515, 5.221993598536809, 9.004877686328305, 5.122874741117297, 6.009811565951917, 6.954101990229344, 7.867886231138546), # 95 (7.89726119162641, 6.882660931899643, 7.659090740740742, 9.097092028985507, 8.756187363834423, 4.787262551440329, 5.288696337794377, 5.200612345679013, 8.987371604938271, 5.104795700798839, 5.985733333333334, 6.934617283950619, 7.853483796296297), # 96 (7.873817808791078, 6.847162139917697, 7.64442585733882, 9.07396100375738, 8.741586379407732, 4.775467276329827, 5.265218552716011, 5.179547142203933, 8.969796387745772, 5.086669562925308, 5.961556429795026, 6.914993959521576, 7.838865312071332), # 97 (7.850115631895988, 6.811607274658171, 7.629611179698216, 9.050628368223297, 8.726772371500042, 4.763616399939035, 5.241689494453475, 5.158806767261089, 8.952167398262459, 5.068496740633154, 5.937315446866325, 6.895241258152239, 7.824051354595337), # 98 (7.826191304347827, 6.776012903225807, 7.614650000000001, 9.027110869565218, 8.711764705882354, 4.751733333333333, 5.218117647058825, 5.138400000000001, 8.9345, 5.050277647058824, 5.913044976076556, 6.875368421052632, 7.8090625000000005), # 99 (7.80208146955329, 6.740395592725341, 7.59954561042524, 9.00342525496511, 8.696582748325667, 4.739841487578113, 5.194511494584116, 5.118335619570188, 8.916809556470051, 5.032012695338767, 5.888779608955048, 6.855384689432774, 7.79391932441701), # 100 (7.777822770919068, 6.704771910261517, 7.584301303155008, 8.979588271604939, 8.681245864600985, 4.727964273738759, 5.17087952108141, 5.09862240512117, 8.899111431184272, 5.013702298609431, 5.86455393703113, 6.835299304502683, 7.7786424039780515), # 101 (7.753451851851853, 6.669158422939069, 7.56892037037037, 8.955616666666668, 8.665773420479303, 4.7161251028806594, 5.1472302106027605, 5.07926913580247, 8.881420987654321, 4.995346870007263, 5.840402551834131, 6.815121507472385, 7.763252314814816), # 102 (7.729005355758336, 6.633571697862738, 7.5534061042524, 8.93152718733226, 8.650184781731623, 4.704347386069197, 5.123572047200224, 5.060284590763604, 8.86375358939186, 4.976946822668712, 5.816360044893379, 6.794860539551898, 7.747769633058984), # 103 (7.704519926045208, 6.598028302137263, 7.537761796982167, 8.907336580783683, 8.634499314128943, 4.692654534369761, 5.099913514925861, 5.041677549154093, 8.846124599908551, 4.958502569730225, 5.792461007738201, 6.774525641951243, 7.732214934842251), # 104 (7.680032206119162, 6.562544802867383, 7.5219907407407405, 8.883061594202898, 8.618736383442267, 4.681069958847737, 5.076263097831727, 5.023456790123458, 8.82854938271605, 4.940014524328251, 5.768740031897927, 6.754126055880443, 7.716608796296296), # 105 (7.655578839386891, 6.527137767157839, 7.5060962277091905, 8.858718974771874, 8.602915355442589, 4.669617070568511, 5.052629279969876, 5.005631092821217, 8.811043301326016, 4.921483099599236, 5.745231708901884, 6.733671022549515, 7.700971793552812), # 106 (7.631196469255085, 6.491823762113369, 7.490081550068588, 8.83432546967257, 8.587055595900912, 4.65831928059747, 5.0290205453923695, 4.988209236396892, 8.793621719250115, 4.9029087086796315, 5.721970630279402, 6.713169783168484, 7.685324502743484), # 107 (7.606921739130435, 6.456619354838711, 7.473950000000001, 8.809897826086958, 8.571176470588235, 4.647200000000001, 5.0054453781512604, 4.9712000000000005, 8.7763, 4.884291764705883, 5.698991387559809, 6.69263157894737, 7.669687500000001), # 108 (7.582791292419635, 6.421541112438604, 7.4577048696845, 8.785452791196994, 8.55529734527556, 4.636282639841488, 4.98191226229861, 4.954612162780065, 8.759093507087334, 4.865632680814438, 5.676328572272432, 6.67206565109619, 7.654081361454047), # 109 (7.558841772529373, 6.38660560201779, 7.441349451303157, 8.761007112184648, 8.539437585733884, 4.625590611187319, 4.9584296818864715, 4.938454503886603, 8.742017604023777, 4.846931870141747, 5.654016775946601, 6.651481240824971, 7.638526663237312), # 110 (7.535109822866345, 6.351829390681004, 7.424887037037038, 8.736577536231884, 8.523616557734206, 4.615147325102881, 4.935006120966905, 4.922735802469136, 8.725087654320989, 4.828189745824256, 5.632090590111643, 6.630887589343731, 7.623043981481482), # 111 (7.51163208683724, 6.317229045532987, 7.408320919067217, 8.712180810520666, 8.507853627047528, 4.6049761926535595, 4.911650063591967, 4.907464837677184, 8.708319021490626, 4.809406720998413, 5.610584606296888, 6.6102939378624885, 7.607653892318244), # 112 (7.488403378962436, 6.282878895028762, 7.391694262601655, 8.687867105993632, 8.492140544138964, 4.595095815371611, 4.888420770925416, 4.892682055024485, 8.691770249006897, 4.790643789290184, 5.589539124922293, 6.589754349203543, 7.592355120674577), # 113 (7.465184718320052, 6.249117746820429, 7.375236540017295, 8.663831537021869, 8.476314683653062, 4.585483686823921, 4.865614566728464, 4.878569007604096, 8.675695228570449, 4.772252134330226, 5.568995469690558, 6.56952973769038, 7.577020331328028), # 114 (7.441907922403196, 6.215957758946438, 7.358957546165854, 8.640067604145424, 8.460326142310882, 4.576114809999011, 4.84324772015325, 4.865122123422967, 8.660099982935032, 4.754260262390462, 5.548923609141675, 6.549630066047081, 7.561605305328301), # 115 (7.418543898590108, 6.183350625033362, 7.342825751987099, 8.616532920213123, 8.444150821107023, 4.566967101829678, 4.821283854022315, 4.852304250319195, 8.644945071382265, 4.736634686759638, 5.529284745017185, 6.530018557989877, 7.546085807804713), # 116 (7.395063554259018, 6.151248038707777, 7.326809628420789, 8.593185098073794, 8.427764621036088, 4.558018479248712, 4.799686591158202, 4.840078236130868, 8.630191053193762, 4.719341920726503, 5.510040079058626, 6.5106584372350005, 7.53043760388658), # 117 (7.371437796788169, 6.119601693596259, 7.310877646406694, 8.569981750576266, 8.411143443092675, 4.549246859188911, 4.7784195543834524, 4.828406928696078, 8.615798487651148, 4.7023484775798075, 5.49115081300754, 6.49151292749868, 7.51463645870322), # 118 (7.347637533555794, 6.088363283325384, 7.294998276884579, 8.546880490569364, 8.394263188271378, 4.540630158583066, 4.757446366520605, 4.817253175852916, 8.601727934036035, 4.685620870608298, 5.4725781486054625, 6.472545252497148, 7.498658137383946), # 119 (7.323633671940129, 6.057484501521727, 7.27913999079421, 8.523838930901915, 8.377099757566798, 4.532146294363972, 4.736730650392203, 4.806579825439474, 8.587939951630046, 4.669125613100724, 5.454283287593933, 6.453718635946638, 7.482478405058078), # 120 (7.299397119319415, 6.026917041811863, 7.26327125907535, 8.500814684422748, 8.359629051973535, 4.523773183464424, 4.716236028820784, 4.796349725293846, 8.574395099714799, 4.652829218345837, 5.436227431714493, 6.434996301563378, 7.466073026854929), # 121 (7.274898783071883, 5.996612597822369, 7.247360552667769, 8.477765363980685, 8.341826972486187, 4.515488742817215, 4.695926124628894, 4.786525723254119, 8.561053937571911, 4.636698199632382, 5.4183717827086815, 6.416341473063601, 7.4494177679038165), # 122 (7.250109570575775, 5.9665228631798195, 7.231376342511229, 8.454648582424555, 8.323669420099353, 4.50727088935514, 4.675764560639071, 4.7770706671583865, 8.547877024483004, 4.62069907024911, 5.400677542318036, 6.397717374163538, 7.432488393334058), # 123 (7.225000389209324, 5.93659953151079, 7.215287099545496, 8.43142195260319, 8.30513229580763, 4.499097540010991, 4.655714959673856, 4.767947404844741, 8.534824919729692, 4.604798343484769, 5.383105912284096, 6.3790872285794205, 7.4152606682749695), # 124 (7.199542146350767, 5.9067942964418565, 7.199061294710339, 8.408043087365408, 8.286191500605618, 4.490946611717565, 4.635740944555791, 4.759118784151273, 8.521858182593595, 4.588962532628107, 5.3656180943484015, 6.360414260027479, 7.397710357855863), # 125 (7.1737057493783425, 5.877058851599596, 7.182667398945519, 8.384469599560044, 8.266822935487914, 4.482796021407654, 4.615806138107416, 4.750547652916074, 8.508937372356334, 4.573158150967874, 5.348175290252491, 6.341661692223948, 7.379813227206063), # 126 (7.147462105670289, 5.84734489061058, 7.166073883190804, 8.36065910203592, 8.247002501449119, 4.474623686014052, 4.595874163151275, 4.742196858977237, 8.496023048299525, 4.557351711792819, 5.3307387017379035, 6.322792748885053, 7.361545041454879), # 127 (7.120782122604837, 5.817604107101388, 7.14924921838596, 8.336569207641865, 8.226706099483833, 4.466407522469555, 4.575908642509906, 4.73402925017285, 8.483075769704788, 4.5415097283916905, 5.3132695305461795, 6.303770653727031, 7.34288156573163), # 128 (7.093636707560226, 5.787788194698593, 7.132161875470752, 8.312157529226706, 8.20590963058665, 4.458125447706956, 4.555873199005851, 4.726007674341008, 8.47005609585374, 4.5255987140532365, 5.2957289784188575, 6.284558630466109, 7.323798565165631), # 129 (7.065996767914694, 5.757848847028773, 7.1147803253849435, 8.28738167963927, 8.18458899575217, 4.449755378659047, 4.53573145546165, 4.7180949793198, 8.456924586028, 4.509585182066206, 5.278078247097476, 6.2651199028185225, 7.3042718048861985), # 130 (7.037833211046475, 5.727737757718502, 7.097073039068305, 8.262199271728381, 8.162720095974995, 4.441275232258625, 4.515447034699847, 4.71025401294732, 8.443641799509189, 4.493435645719348, 5.260278538323575, 6.2454176945004996, 7.2842770500226495), # 131 (7.009116944333808, 5.697406620394355, 7.079008487460597, 8.23656791834287, 8.140278832249724, 4.432662925438482, 4.49498355954298, 4.7024476230616585, 8.430168295578923, 4.4771166183014115, 5.2422910538386915, 6.225415229228274, 7.263790065704301), # 132 (6.979818875154931, 5.666807128682908, 7.060555141501587, 8.210445232331562, 8.11724110557095, 4.423896375131413, 4.474304652813592, 4.694638657500906, 8.416464633518821, 4.460594613101146, 5.224076995384369, 6.205075730718074, 7.242786617060469), # 133 (6.949909910888076, 5.635890976210739, 7.041681472131043, 8.183788826543283, 8.093582816933274, 4.414953498270212, 4.453373937334223, 4.686789964103155, 8.402491372610504, 4.443836143407299, 5.205597564702143, 6.184362422686133, 7.221242469220467), # 134 (6.919360958911483, 5.604609856604419, 7.022355950288727, 8.156556313826863, 8.069279867331296, 4.405812211787674, 4.432155035927415, 4.678864390706496, 8.388209072135584, 4.426807722508621, 5.186813963533554, 6.163238528848682, 7.199133387313616), # 135 (6.888142926603388, 5.572915463490528, 7.002547046914407, 8.128705307031124, 8.044308157759614, 4.396450432616592, 4.410611571415708, 4.670824785149022, 8.373578291375685, 4.409475863693858, 5.167687393620142, 6.1416672729219535, 7.176435136469229), # 136 (6.856226721342027, 5.540759490495638, 6.982223232947849, 8.100193419004901, 8.018643589212827, 4.386846077689759, 4.388707166621645, 4.662633995268823, 8.358559589612426, 4.391807080251762, 5.1481790567034444, 6.119611878622176, 7.153123481816621), # 137 (6.823583250505639, 5.508093631246327, 6.961352979328814, 8.070978262597011, 7.992262062685535, 4.376977063939971, 4.366405444367763, 4.654254868903992, 8.343113526127425, 4.373767885471078, 5.128250154525002, 6.097035569665582, 7.129174188485113), # 138 (6.790183421472455, 5.4748695793691695, 6.939904756997072, 8.041017450656287, 7.965139479172333, 4.366821308300021, 4.343670027476608, 4.64565025389262, 8.327200660202298, 4.355324792640558, 5.107861888826353, 6.073901569768405, 7.104563021604015), # 139 (6.755998141620719, 5.44103902849074, 6.91784703689239, 8.010268596031556, 7.937251739667824, 4.356356727702703, 4.320464538770717, 4.636782998072797, 8.310781551118666, 4.336444315048949, 5.086975461349035, 6.050173102646873, 7.079265746302652), # 140 (6.720998318328665, 5.406553672237617, 6.895148289954529, 7.978689311571642, 7.908574745166603, 4.345561239080812, 4.296752601072636, 4.6276159492826165, 8.293816758158144, 4.317092965985001, 5.065552073834591, 6.02581339201722, 7.053258127710331), # 141 (6.685154858974525, 5.371365204236373, 6.871776987123257, 7.946237210125377, 7.87908439666327, 4.334412759367142, 4.272497837204901, 4.6181119553601695, 8.276266840602354, 4.2972372587374625, 5.043552928024558, 6.000785661595676, 7.026515930956373), # 142 (6.64843867093654, 5.335425318113585, 6.8477015993383406, 7.91286990454158, 7.848756595152423, 4.322889205494485, 4.247663869990055, 4.608233864143545, 8.258092357732918, 4.276843706595082, 5.020939225660475, 5.975053135098472, 6.999014921170094), # 143 (6.610820661592948, 5.298685707495829, 6.822890597539542, 7.878545007669086, 7.817567241628663, 4.310968494395637, 4.222214322250639, 4.597944523470839, 8.239253868831447, 4.255878822846608, 4.997672168483881, 5.948579036241839, 6.970730863480812), # 144 (6.572271738321982, 5.26109806600968, 6.797312452666631, 7.843220132356716, 7.785492237086586, 4.298628543003392, 4.196112816809195, 4.587206781180141, 8.219711933179564, 4.23430912078079, 4.973712958236316, 5.921326588742011, 6.94163952301784), # 145 (6.5327628085018805, 5.2226140872817135, 6.770935635659374, 7.806852891453301, 7.7525074825207945, 4.285847268250545, 4.169322976488264, 4.575983485109542, 8.199427110058885, 4.212101113686376, 4.949022796659319, 5.893259016315216, 6.911716664910495), # 146 (6.49226477951088, 5.1831854649385045, 6.743728617457528, 7.769400897807664, 7.718588878925882, 4.272602587069886, 4.141808424110385, 4.564237483097132, 8.178359958751033, 4.189221314852117, 4.923562885494429, 5.864339542677689, 6.8809380542880945), # 147 (6.450748558727217, 5.142763892606631, 6.715659869000866, 7.730821764268637, 7.683712327296449, 4.258872416394214, 4.113532782498101, 4.551931622981006, 8.156471038537623, 4.1656362375667575, 4.897294426483186, 5.8345313915456565, 6.8492794562799535), # 148 (6.40818505352913, 5.101301063912665, 6.686697861229155, 7.691073103685042, 7.647853728627097, 4.24463467315632, 4.084459674473953, 4.539028752599253, 8.13372090870027, 4.1413123951190505, 4.870178621367128, 5.803797786635354, 6.81671663601539), # 149 (6.364545171294852, 5.058748672483183, 6.656811065082156, 7.65011252890571, 7.610988983912421, 4.229867274288999, 4.054552722860481, 4.525491719789965, 8.110070128520602, 4.116216300797741, 4.8421766718877945, 5.772101951663011, 6.783225358623717), # 150 (6.31979981940262, 5.015058411944763, 6.625967951499634, 7.607897652779464, 7.573093994147022, 4.214548136725044, 4.023775550480226, 4.511283372391235, 8.085479257280232, 4.090314467891583, 4.813249779786724, 5.739407110344858, 6.748781389234255), # 151 (6.273919905230675, 4.970181975923978, 6.594136991421362, 7.5643860881551355, 7.534144660325495, 4.198655177397251, 3.992091780155732, 4.496366558241153, 8.059908854260776, 4.06357340968932, 4.7833591468054575, 5.705676486397127, 6.713360492976318), # 152 (6.226876336157249, 4.924071058047406, 6.561286655787095, 7.519535447881546, 7.4941168834424445, 4.182166313238413, 3.9594650347095355, 4.48070412517781, 8.03331947874386, 4.035959639479703, 4.752465974685533, 5.670873303536052, 6.676938434979222), # 153 (6.178640019560583, 4.87667735194162, 6.527385415536607, 7.473303344807528, 7.452986564492464, 4.165059461181324, 3.9258589369641825, 4.464258921039298, 8.005671690011093, 4.0074396705514825, 4.72053146516849, 5.63496078547786, 6.639490980372286), # 154 (6.129181862818909, 4.827952551233196, 6.492401741609661, 7.425647391781903, 7.410729604470157, 4.147312538158777, 3.891237109742209, 4.446993793663709, 7.976926047344103, 3.9779800161934036, 4.687516819995866, 5.597902155938786, 6.600993894284821), # 155 (6.078472773310465, 4.7778483495487105, 6.456304104946021, 7.3765252016535, 7.367321904370119, 4.128903461103569, 3.85556317586616, 4.428871590889135, 7.947043110024501, 3.9475471896942183, 4.6533832409092035, 5.559660638635059, 6.561422941846148), # 156 (6.02648365841349, 4.726316440514739, 6.419060976485454, 7.32589438727115, 7.322739365186948, 4.109810146948491, 3.8188007581585754, 4.409855160553666, 7.915983437333911, 3.9161077043426733, 4.618091929650039, 5.52019945728291, 6.520753888185581), # 157 (5.971744757124192, 4.672362496617807, 6.378873563121885, 7.271815665320995, 7.274944884696798, 4.088819581053688, 3.780085376742286, 4.388637561879498, 7.881329673279279, 3.882692733032915, 4.580476602031154, 5.478079651355472, 6.477188687532276), # 158 (5.9058294135827225, 4.610452255679582, 6.32539025472239, 7.203181727030763, 7.212153047825303, 4.058951718405683, 3.734570210708573, 4.357770826211506, 7.829141808977716, 3.8418247952789963, 4.533933548495195, 5.425090018946487, 6.420342117536156), # 159 (5.827897675923448, 4.540077382832571, 6.257536766364711, 7.118862008327088, 7.133136105077437, 4.019473036838147, 3.6817949987070273, 4.316479351621878, 7.757940181782921, 3.792964521490315, 4.477807606887632, 5.360401559110278, 6.349136487114865), # 160 (5.738577643668768, 4.461696694464375, 6.1760375775282474, 7.019658003005382, 7.038714499425691, 3.970861793256251, 3.622145156805501, 4.265280426487824, 7.668663813599214, 3.7365265545367503, 4.412593323679766, 5.284613975126057, 6.264299235855278), # 161 (5.638497416341085, 4.375769006962591, 6.0816171676923965, 6.9063712048610615, 6.929708673842564, 3.9135962445651646, 3.5560061010718473, 4.204691339186562, 7.56225172633091, 3.6729255372881853, 4.338785245342897, 5.198326970273035, 6.166557803344267), # 162 (5.528285093462799, 4.2827531367148195, 5.975000016336562, 6.779803107689547, 6.806939071300551, 3.848154647670058, 3.4837632475739206, 4.1352293780953, 7.439642941882325, 3.6025761126145, 4.2568779183483265, 5.102140247830427, 6.0566396291687035), # 163 (5.408568774556308, 4.183107900108657, 5.856910602940141, 6.640755205286254, 6.6712261347721515, 3.7750152594761035, 3.405802012379573, 4.0574118315912555, 7.301776482157779, 3.525892923385575, 4.167365889167357, 4.996653511077443, 5.935272152915463), # 164 (5.279976559144014, 4.077292113531706, 5.728073406982535, 6.490028991446602, 6.523390307229859, 3.6946563368884693, 3.3225078115566578, 3.971755988051637, 7.149591369061584, 3.4432906124712908, 4.0707437042712895, 4.882466463293296, 5.803182814171416), # 165 (5.143136546748318, 3.9657645933715635, 5.589212907943143, 6.328425959966001, 6.3642520316461715, 3.607556136812327, 3.234266061173029, 3.878779135853662, 6.984026624498059, 3.35518382274153, 3.9675059101314236, 4.760178807757201, 5.661099052523436), # 166 (4.998676836891619, 3.8489841560158298, 5.441053585301364, 6.156747604639875, 6.194631750993584, 3.514192916152847, 3.14146217729654, 3.7789985633745413, 6.80602127037152, 3.2619871970661714, 3.858147053219062, 4.630390247748367, 5.509748307558397), # 167 (4.847225529096317, 3.727409617852103, 5.284319918536599, 5.975795419263637, 6.015349908244594, 3.415044931815199, 3.0444815759950434, 3.672931558991488, 6.616514328586284, 3.1641153783150977, 3.743161680005505, 4.493700486546009, 5.34985801886317), # 168 (4.689410722884812, 3.6014997952679835, 5.119736387128247, 5.786370897632707, 5.827226946371696, 3.310590440704556, 2.9437096733363934, 3.561095411081716, 6.416444821046671, 3.0619830093581895, 3.623044336962055, 4.350709227429338, 5.182155626024628), # 169 (4.525860517779507, 3.47171350465107, 4.948027470555708, 5.589275533542496, 5.631083308347387, 3.2013076997260854, 2.8395318853884426, 3.444007408022438, 6.206751769656991, 2.9560047330653263, 3.498289570560013, 4.202016173677567, 5.007368568629644), # 170 (4.3572030133028, 3.3385095623889605, 4.7699176482983825, 5.385310820788429, 5.427739437144165, 3.087674965784959, 2.7323336282190445, 3.3221848381908665, 5.9883741963215655, 2.846595192306391, 3.3693919272706787, 4.048221028569909, 4.826224286265092), # 171 (4.184066308977092, 3.2023467848692557, 4.586131399835669, 5.175278253165917, 5.218015775734523, 2.970170495786347, 2.6225003178960526, 3.1961449899642167, 5.762251122944709, 2.734169029951264, 3.2368459535653553, 3.889923495385577, 4.639450218517843), # 172 (4.007078504324784, 3.063683988479554, 4.39739320464697, 4.959979324470381, 5.002732767090961, 2.84927254663542, 2.51041737048732, 3.066405151719699, 5.529321571430739, 2.6191408888698255, 3.1011461959153426, 3.72772327740378, 4.44777380497477), # 173 (3.8268676988682753, 2.9229799896074544, 4.204427542211682, 4.740215528497233, 4.782710854185973, 2.725459375237348, 2.3964702020607005, 2.9334826118345285, 5.290524563683971, 2.5019254119319574, 2.9627872007919422, 3.5622200779037345, 4.251922485222747), # 174 (3.6440619921299646, 2.7806936046405557, 4.007958892009206, 4.516788359041894, 4.558770479992055, 2.599209238497303, 2.2810442286840464, 2.797894658685917, 5.046799121608725, 2.3829372420075394, 2.8222635146664556, 3.3940136001646515, 4.052623698848646), # 175 (3.459289483632255, 2.6372836499664585, 3.8087117335189427, 4.29049930989978, 4.331732087481704, 2.4710003933204536, 2.164524866425212, 2.6601585806510792, 4.799084267109314, 2.2625910219664536, 2.680069684010184, 3.2237035474657434, 3.8506048854393393), # 176 (3.273178272897546, 2.493208941972761, 3.607410546220291, 4.062149874866306, 4.102416119627419, 2.3413110966119706, 2.0472975313520503, 2.5207916661072263, 4.548319022090056, 2.1413013946785795, 2.536700255294429, 3.051889623086223, 3.6465934845817), # 177 (3.0863564594482376, 2.348928297047063, 3.404779809592651, 3.832541547736893, 3.871643019401691, 2.210619605277026, 1.929747639532414, 2.3803112034315723, 4.295442408455268, 2.0194830030138, 2.39264977499049, 2.879171530305302, 3.4413169358626017), # 178 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179 ) passenger_arriving_acc = ( (2, 7, 3, 3, 0, 1, 1, 1, 0, 0, 1, 1, 0, 9, 0, 3, 2, 3, 1, 2, 1, 1, 2, 0, 0, 0), # 0 (8, 11, 6, 5, 1, 3, 3, 3, 0, 0, 2, 1, 0, 16, 5, 6, 3, 5, 4, 3, 3, 2, 4, 0, 1, 0), # 1 (9, 15, 8, 9, 6, 6, 4, 4, 0, 1, 2, 1, 0, 25, 8, 8, 6, 8, 4, 4, 4, 2, 7, 0, 1, 0), # 2 (11, 19, 10, 12, 10, 6, 6, 5, 0, 3, 3, 4, 0, 28, 13, 10, 10, 14, 6, 8, 5, 2, 8, 0, 1, 0), # 3 (21, 22, 12, 20, 16, 7, 8, 6, 4, 3, 3, 5, 0, 32, 19, 15, 16, 21, 7, 10, 7, 4, 12, 1, 2, 0), # 4 (27, 31, 15, 24, 20, 7, 10, 10, 4, 6, 4, 5, 0, 42, 23, 17, 18, 25, 10, 10, 8, 6, 14, 2, 3, 0), # 5 (31, 35, 21, 33, 26, 7, 13, 12, 6, 9, 4, 5, 0, 45, 26, 23, 23, 27, 12, 13, 10, 9, 14, 4, 3, 0), # 6 (36, 40, 25, 39, 34, 8, 17, 13, 7, 11, 6, 6, 0, 52, 28, 27, 26, 31, 16, 14, 12, 11, 14, 5, 3, 0), # 7 (42, 46, 31, 47, 40, 9, 18, 17, 8, 12, 7, 6, 0, 60, 37, 31, 28, 37, 18, 15, 14, 12, 19, 5, 3, 0), # 8 (50, 53, 34, 52, 48, 12, 18, 17, 9, 12, 8, 7, 0, 68, 44, 37, 32, 41, 19, 16, 14, 15, 22, 6, 4, 0), # 9 (60, 58, 40, 59, 52, 14, 24, 22, 11, 13, 8, 7, 0, 76, 48, 46, 39, 45, 21, 18, 15, 15, 24, 9, 4, 0), # 10 (63, 65, 46, 66, 59, 17, 25, 26, 15, 15, 10, 7, 0, 80, 56, 51, 43, 50, 22, 18, 16, 16, 24, 10, 4, 0), # 11 (73, 73, 51, 70, 65, 17, 26, 33, 16, 21, 11, 7, 0, 87, 58, 56, 51, 58, 22, 18, 18, 19, 28, 12, 4, 0), # 12 (85, 82, 58, 75, 71, 20, 30, 37, 22, 23, 13, 8, 0, 94, 61, 59, 56, 63, 25, 21, 22, 20, 31, 12, 4, 0), # 13 (93, 88, 62, 78, 80, 25, 34, 37, 24, 24, 14, 9, 0, 100, 69, 61, 61, 66, 29, 24, 24, 26, 32, 12, 5, 0), # 14 (104, 95, 70, 83, 86, 27, 35, 43, 25, 25, 15, 11, 0, 106, 74, 66, 64, 71, 32, 28, 27, 30, 34, 12, 6, 0), # 15 (112, 105, 84, 88, 93, 31, 38, 46, 28, 25, 15, 11, 0, 116, 79, 77, 72, 76, 37, 31, 31, 31, 36, 13, 6, 0), # 16 (124, 110, 88, 97, 103, 32, 42, 47, 32, 25, 18, 12, 0, 128, 85, 83, 79, 77, 42, 35, 32, 33, 37, 16, 6, 0), # 17 (127, 117, 96, 100, 111, 38, 47, 50, 34, 25, 20, 13, 0, 131, 88, 88, 83, 86, 45, 36, 35, 35, 40, 16, 6, 0), # 18 (134, 127, 101, 108, 118, 41, 49, 56, 40, 25, 22, 13, 0, 139, 95, 93, 88, 95, 47, 39, 37, 36, 44, 18, 8, 0), # 19 (139, 132, 107, 112, 121, 42, 51, 59, 42, 26, 23, 14, 0, 150, 100, 96, 95, 101, 53, 42, 40, 39, 46, 18, 8, 0), # 20 (142, 144, 109, 117, 126, 45, 57, 59, 48, 26, 24, 14, 0, 156, 105, 102, 96, 106, 57, 44, 41, 40, 48, 18, 9, 0), # 21 (146, 149, 118, 119, 129, 48, 58, 61, 52, 28, 25, 16, 0, 170, 112, 108, 103, 116, 65, 46, 43, 44, 50, 19, 9, 0), # 22 (150, 159, 126, 133, 140, 50, 59, 63, 54, 30, 27, 17, 0, 178, 120, 120, 108, 121, 71, 48, 47, 47, 54, 21, 9, 0), # 23 (163, 167, 134, 142, 146, 51, 62, 66, 56, 32, 28, 19, 0, 185, 125, 125, 113, 130, 74, 53, 49, 51, 54, 22, 11, 0), # 24 (169, 175, 139, 148, 151, 53, 63, 67, 60, 33, 31, 19, 0, 190, 132, 128, 123, 137, 79, 58, 50, 55, 55, 24, 11, 0), # 25 (178, 181, 142, 157, 158, 55, 65, 71, 65, 38, 31, 21, 0, 198, 144, 134, 133, 139, 83, 60, 55, 55, 56, 24, 12, 0), # 26 (186, 185, 157, 163, 162, 60, 65, 71, 67, 41, 33, 21, 0, 206, 151, 139, 138, 140, 85, 65, 56, 57, 58, 27, 12, 0), # 27 (193, 198, 163, 170, 164, 63, 69, 75, 69, 41, 35, 21, 0, 215, 161, 142, 142, 145, 91, 67, 58, 58, 60, 30, 13, 0), # 28 (197, 206, 172, 177, 168, 64, 75, 77, 74, 43, 35, 24, 0, 219, 167, 149, 147, 153, 97, 71, 61, 64, 63, 30, 14, 0), # 29 (203, 211, 177, 183, 170, 69, 78, 80, 77, 44, 35, 24, 0, 231, 171, 151, 152, 162, 98, 74, 64, 69, 67, 32, 14, 0), # 30 (212, 218, 185, 190, 178, 70, 84, 89, 81, 45, 35, 24, 0, 238, 178, 158, 155, 169, 103, 77, 64, 72, 71, 34, 16, 0), # 31 (220, 229, 195, 198, 184, 76, 87, 92, 85, 47, 38, 24, 0, 250, 180, 165, 161, 180, 105, 80, 64, 74, 78, 34, 17, 0), # 32 (230, 239, 204, 202, 189, 79, 91, 93, 88, 49, 39, 25, 0, 261, 186, 173, 166, 185, 109, 84, 66, 75, 81, 34, 18, 0), # 33 (238, 247, 215, 207, 195, 85, 96, 94, 93, 52, 41, 26, 0, 269, 191, 179, 174, 192, 115, 89, 68, 82, 83, 34, 19, 0), # 34 (244, 251, 223, 214, 201, 86, 100, 98, 97, 55, 42, 27, 0, 277, 199, 184, 180, 199, 117, 92, 72, 86, 85, 34, 20, 0), # 35 (253, 264, 236, 218, 206, 89, 105, 100, 99, 55, 45, 28, 0, 289, 210, 187, 182, 200, 119, 100, 72, 86, 87, 37, 22, 0), # 36 (271, 282, 242, 224, 211, 91, 109, 102, 103, 57, 46, 29, 0, 298, 215, 191, 184, 210, 124, 100, 76, 87, 89, 39, 24, 0), # 37 (282, 294, 246, 231, 218, 94, 111, 103, 107, 58, 46, 30, 0, 305, 221, 197, 186, 215, 131, 103, 80, 92, 92, 39, 25, 0), # 38 (285, 297, 253, 236, 220, 97, 114, 108, 109, 61, 46, 32, 0, 312, 226, 201, 188, 227, 132, 106, 81, 96, 93, 39, 26, 0), # 39 (295, 304, 257, 243, 230, 101, 114, 112, 114, 63, 47, 33, 0, 315, 238, 207, 191, 233, 136, 109, 84, 101, 94, 40, 27, 0), # 40 (304, 308, 264, 250, 235, 106, 118, 112, 118, 64, 47, 34, 0, 322, 247, 213, 197, 246, 142, 112, 85, 105, 95, 42, 27, 0), # 41 (316, 316, 270, 255, 238, 109, 119, 115, 122, 69, 48, 34, 0, 327, 252, 216, 200, 254, 147, 117, 85, 107, 97, 44, 27, 0), # 42 (321, 323, 283, 264, 244, 110, 122, 119, 126, 70, 48, 35, 0, 336, 261, 221, 206, 262, 151, 118, 86, 111, 99, 45, 28, 0), # 43 (335, 329, 294, 274, 249, 113, 122, 120, 131, 71, 49, 35, 0, 345, 268, 223, 212, 267, 158, 119, 90, 117, 100, 45, 28, 0), # 44 (343, 339, 302, 286, 256, 116, 123, 122, 133, 74, 51, 35, 0, 356, 278, 230, 215, 276, 164, 121, 92, 118, 102, 45, 28, 0), # 45 (351, 344, 313, 292, 258, 119, 123, 125, 138, 75, 51, 35, 0, 368, 286, 235, 219, 287, 165, 122, 93, 120, 104, 46, 31, 0), # 46 (361, 356, 319, 299, 263, 122, 127, 128, 142, 77, 51, 35, 0, 374, 295, 239, 227, 294, 166, 125, 94, 125, 105, 47, 31, 0), # 47 (372, 361, 331, 307, 268, 126, 132, 129, 143, 77, 51, 37, 0, 385, 300, 246, 228, 303, 169, 130, 96, 131, 111, 49, 31, 0), # 48 (380, 373, 340, 314, 276, 130, 132, 133, 146, 79, 54, 41, 0, 397, 306, 250, 235, 304, 175, 134, 99, 139, 113, 51, 32, 0), # 49 (390, 378, 344, 319, 281, 133, 137, 134, 151, 79, 57, 43, 0, 399, 312, 258, 239, 314, 177, 137, 104, 142, 118, 52, 33, 0), # 50 (403, 389, 351, 323, 286, 133, 142, 138, 156, 80, 58, 43, 0, 404, 318, 263, 241, 319, 180, 143, 106, 144, 120, 53, 36, 0), # 51 (412, 395, 353, 333, 286, 135, 145, 138, 161, 81, 60, 44, 0, 410, 323, 268, 245, 332, 183, 148, 108, 146, 123, 55, 37, 0), # 52 (414, 401, 366, 340, 296, 138, 147, 142, 164, 83, 62, 45, 0, 419, 337, 274, 248, 342, 187, 149, 108, 149, 126, 55, 37, 0), # 53 (420, 411, 374, 344, 301, 138, 149, 144, 165, 83, 64, 46, 0, 425, 348, 283, 253, 349, 189, 151, 108, 154, 127, 56, 38, 0), # 54 (429, 417, 381, 348, 313, 139, 150, 147, 173, 84, 65, 47, 0, 433, 360, 288, 254, 356, 190, 154, 108, 156, 129, 56, 39, 0), # 55 (440, 425, 393, 362, 318, 141, 152, 149, 176, 87, 65, 48, 0, 440, 371, 296, 260, 358, 194, 161, 109, 158, 134, 56, 40, 0), # 56 (446, 432, 397, 373, 324, 142, 158, 150, 180, 87, 65, 50, 0, 448, 379, 300, 267, 365, 199, 163, 110, 161, 136, 57, 40, 0), # 57 (452, 436, 400, 382, 334, 143, 166, 151, 183, 87, 66, 51, 0, 465, 387, 305, 271, 370, 203, 163, 116, 163, 139, 58, 40, 0), # 58 (461, 446, 406, 390, 338, 146, 168, 155, 189, 89, 67, 51, 0, 468, 397, 309, 277, 375, 204, 167, 118, 164, 142, 59, 40, 0), # 59 (474, 451, 409, 396, 342, 151, 171, 155, 193, 90, 68, 52, 0, 475, 406, 313, 280, 383, 208, 168, 121, 166, 143, 60, 40, 0), # 60 (475, 454, 412, 402, 348, 154, 173, 157, 196, 90, 70, 53, 0, 482, 410, 320, 283, 392, 217, 172, 122, 170, 144, 61, 40, 0), # 61 (487, 459, 421, 408, 351, 160, 175, 159, 199, 92, 72, 53, 0, 493, 413, 326, 286, 396, 223, 176, 126, 172, 148, 63, 40, 0), # 62 (497, 470, 427, 413, 358, 161, 177, 163, 202, 94, 72, 53, 0, 501, 419, 329, 289, 401, 223, 180, 128, 174, 152, 64, 40, 0), # 63 (505, 475, 434, 420, 366, 164, 180, 165, 206, 94, 75, 54, 0, 507, 427, 330, 292, 411, 228, 182, 132, 177, 154, 65, 40, 0), # 64 (510, 480, 440, 425, 368, 165, 183, 168, 209, 95, 76, 54, 0, 514, 431, 335, 297, 413, 228, 186, 134, 179, 158, 66, 40, 0), # 65 (521, 491, 446, 433, 373, 166, 185, 172, 214, 97, 76, 54, 0, 523, 438, 343, 302, 418, 231, 191, 137, 180, 161, 68, 41, 0), # 66 (532, 497, 454, 440, 377, 168, 187, 173, 219, 98, 79, 54, 0, 533, 446, 349, 309, 429, 237, 194, 139, 182, 162, 71, 41, 0), # 67 (543, 504, 464, 445, 379, 172, 189, 174, 221, 99, 80, 55, 0, 540, 452, 356, 316, 437, 240, 196, 143, 184, 163, 73, 41, 0), # 68 (552, 513, 473, 448, 383, 173, 191, 176, 223, 101, 80, 55, 0, 547, 460, 358, 318, 445, 241, 199, 145, 187, 165, 74, 42, 0), # 69 (562, 520, 482, 452, 390, 173, 195, 178, 224, 102, 80, 55, 0, 560, 468, 364, 325, 450, 244, 202, 147, 190, 169, 75, 42, 0), # 70 (569, 523, 490, 459, 395, 175, 198, 180, 229, 102, 81, 55, 0, 567, 473, 377, 326, 458, 246, 205, 149, 192, 171, 75, 43, 0), # 71 (579, 530, 504, 463, 403, 179, 199, 181, 232, 102, 81, 55, 0, 571, 481, 384, 331, 465, 255, 210, 150, 198, 174, 76, 44, 0), # 72 (585, 536, 512, 470, 409, 179, 202, 185, 239, 104, 81, 56, 0, 577, 486, 388, 334, 467, 257, 212, 153, 200, 175, 77, 44, 0), # 73 (586, 544, 517, 477, 416, 181, 206, 189, 243, 108, 81, 58, 0, 582, 489, 392, 334, 471, 262, 215, 156, 204, 181, 78, 45, 0), # 74 (594, 548, 523, 480, 421, 189, 208, 189, 247, 109, 82, 58, 0, 594, 494, 397, 338, 478, 265, 218, 159, 206, 184, 79, 47, 0), # 75 (608, 553, 529, 484, 434, 194, 208, 193, 249, 109, 84, 58, 0, 602, 503, 400, 342, 484, 270, 223, 160, 207, 189, 82, 47, 0), # 76 (620, 557, 533, 489, 442, 196, 211, 194, 253, 113, 86, 59, 0, 610, 507, 405, 347, 490, 271, 223, 163, 209, 191, 82, 48, 0), # 77 (632, 564, 542, 494, 450, 197, 215, 194, 253, 117, 89, 60, 0, 618, 513, 410, 348, 495, 274, 227, 165, 212, 193, 84, 49, 0), # 78 (636, 571, 554, 502, 459, 200, 217, 196, 256, 119, 90, 63, 0, 626, 516, 414, 350, 500, 278, 231, 166, 214, 196, 85, 49, 0), # 79 (647, 577, 557, 511, 466, 201, 223, 197, 258, 121, 92, 63, 0, 632, 522, 418, 353, 504, 286, 232, 168, 216, 197, 86, 49, 0), # 80 (655, 581, 566, 517, 473, 204, 225, 200, 262, 122, 92, 63, 0, 643, 525, 426, 357, 512, 291, 234, 170, 220, 198, 87, 50, 0), # 81 (664, 589, 577, 518, 479, 205, 227, 204, 264, 122, 93, 64, 0, 650, 530, 431, 361, 519, 296, 239, 170, 222, 198, 89, 50, 0), # 82 (675, 596, 580, 529, 487, 206, 229, 206, 265, 122, 94, 64, 0, 654, 538, 435, 367, 530, 300, 240, 174, 224, 203, 90, 51, 0), # 83 (684, 600, 583, 538, 492, 207, 231, 207, 265, 122, 96, 64, 0, 662, 540, 440, 376, 538, 305, 243, 178, 227, 207, 93, 52, 0), # 84 (687, 606, 590, 547, 496, 207, 234, 208, 265, 123, 97, 64, 0, 679, 547, 442, 376, 544, 307, 246, 179, 230, 208, 95, 53, 0), # 85 (690, 612, 597, 551, 501, 210, 237, 211, 267, 124, 98, 64, 0, 691, 551, 445, 379, 550, 313, 250, 184, 234, 212, 95, 53, 0), # 86 (699, 620, 608, 559, 506, 212, 242, 214, 269, 125, 99, 64, 0, 698, 558, 452, 382, 556, 317, 253, 184, 237, 212, 95, 53, 0), # 87 (708, 627, 617, 567, 510, 218, 244, 216, 273, 128, 101, 65, 0, 703, 566, 460, 385, 561, 320, 256, 187, 241, 213, 95, 53, 0), # 88 (714, 635, 619, 573, 514, 219, 249, 218, 276, 131, 103, 66, 0, 712, 572, 466, 386, 566, 324, 259, 189, 246, 215, 95, 53, 0), # 89 (720, 643, 621, 576, 522, 222, 251, 221, 279, 133, 104, 66, 0, 721, 575, 472, 393, 573, 326, 262, 192, 248, 220, 96, 54, 0), # 90 (726, 650, 630, 578, 527, 223, 253, 221, 281, 135, 105, 66, 0, 727, 581, 474, 396, 578, 331, 266, 193, 251, 220, 97, 54, 0), # 91 (733, 652, 642, 586, 532, 225, 259, 221, 284, 135, 107, 66, 0, 732, 586, 476, 401, 590, 337, 269, 197, 263, 222, 97, 57, 0), # 92 (740, 659, 648, 594, 537, 227, 262, 222, 288, 135, 110, 66, 0, 746, 594, 481, 403, 594, 339, 276, 199, 266, 223, 98, 58, 0), # 93 (752, 666, 653, 597, 545, 232, 266, 225, 294, 138, 111, 68, 0, 753, 600, 489, 407, 604, 343, 279, 201, 270, 225, 98, 58, 0), # 94 (757, 672, 658, 602, 551, 235, 268, 227, 297, 140, 111, 69, 0, 762, 607, 499, 413, 609, 347, 279, 204, 272, 227, 100, 59, 0), # 95 (762, 682, 666, 604, 555, 238, 274, 230, 298, 142, 112, 69, 0, 767, 615, 502, 417, 615, 352, 279, 207, 273, 229, 101, 60, 0), # 96 (772, 685, 673, 608, 560, 239, 277, 230, 302, 142, 115, 69, 0, 776, 623, 510, 422, 626, 357, 283, 208, 276, 231, 102, 62, 0), # 97 (775, 689, 682, 615, 565, 241, 282, 233, 306, 144, 116, 70, 0, 785, 629, 514, 429, 632, 359, 286, 210, 278, 233, 104, 62, 0), # 98 (784, 694, 690, 618, 571, 242, 283, 238, 306, 145, 116, 70, 0, 792, 635, 517, 433, 635, 362, 289, 212, 284, 236, 104, 62, 0), # 99 (790, 700, 693, 626, 578, 243, 284, 240, 309, 146, 118, 70, 0, 800, 639, 524, 436, 644, 365, 293, 217, 286, 239, 107, 62, 0), # 100 (798, 704, 698, 634, 581, 249, 286, 244, 311, 147, 119, 71, 0, 812, 648, 531, 439, 650, 369, 297, 220, 287, 245, 109, 62, 0), # 101 (805, 712, 699, 641, 587, 250, 288, 245, 318, 147, 119, 71, 0, 817, 652, 542, 441, 653, 372, 300, 221, 288, 248, 110, 63, 0), # 102 (814, 716, 708, 646, 590, 255, 291, 245, 322, 147, 121, 71, 0, 827, 657, 549, 443, 661, 375, 302, 223, 292, 250, 111, 63, 0), # 103 (822, 719, 711, 651, 595, 258, 292, 250, 324, 147, 123, 71, 0, 833, 665, 550, 445, 667, 377, 304, 224, 294, 252, 111, 63, 0), # 104 (833, 722, 715, 658, 600, 260, 294, 250, 325, 149, 124, 71, 0, 839, 680, 556, 449, 674, 379, 310, 224, 296, 257, 112, 63, 0), # 105 (843, 733, 724, 663, 603, 262, 296, 251, 326, 149, 126, 71, 0, 848, 691, 565, 455, 678, 382, 316, 226, 303, 262, 112, 63, 0), # 106 (846, 739, 735, 670, 608, 262, 297, 253, 330, 149, 127, 72, 0, 857, 698, 570, 458, 692, 384, 320, 229, 304, 264, 114, 63, 0), # 107 (852, 750, 738, 678, 611, 270, 297, 255, 330, 152, 128, 72, 0, 860, 704, 574, 461, 701, 385, 324, 232, 307, 269, 115, 63, 0), # 108 (860, 754, 748, 684, 616, 272, 303, 258, 330, 155, 128, 72, 0, 868, 712, 578, 462, 709, 388, 328, 232, 307, 270, 118, 65, 0), # 109 (869, 762, 751, 688, 619, 275, 305, 263, 334, 157, 130, 73, 0, 873, 722, 581, 467, 715, 391, 333, 235, 310, 271, 118, 66, 0), # 110 (880, 764, 758, 693, 625, 278, 308, 269, 336, 158, 131, 75, 0, 883, 724, 583, 472, 718, 395, 336, 236, 314, 272, 120, 66, 0), # 111 (890, 769, 762, 703, 630, 283, 311, 272, 339, 159, 133, 76, 0, 890, 733, 589, 480, 722, 396, 339, 237, 315, 273, 122, 66, 0), # 112 (897, 776, 765, 711, 637, 287, 313, 273, 339, 160, 133, 76, 0, 902, 737, 593, 483, 726, 397, 342, 239, 316, 278, 123, 69, 0), # 113 (900, 785, 769, 716, 645, 291, 315, 275, 341, 161, 134, 76, 0, 910, 739, 598, 487, 733, 400, 345, 241, 320, 280, 124, 70, 0), # 114 (909, 794, 778, 722, 655, 292, 318, 276, 344, 162, 134, 76, 0, 920, 747, 604, 493, 740, 402, 348, 241, 326, 280, 125, 71, 0), # 115 (919, 806, 783, 727, 659, 294, 321, 281, 348, 162, 136, 78, 0, 931, 758, 609, 496, 747, 406, 351, 243, 332, 281, 125, 72, 0), # 116 (924, 813, 788, 734, 666, 295, 323, 283, 352, 164, 137, 79, 0, 936, 765, 615, 500, 751, 409, 353, 244, 335, 281, 126, 73, 0), # 117 (930, 819, 795, 738, 671, 299, 324, 283, 355, 167, 139, 80, 0, 940, 773, 618, 506, 753, 412, 354, 249, 335, 281, 126, 73, 0), # 118 (938, 823, 800, 743, 677, 303, 327, 286, 360, 168, 140, 80, 0, 950, 780, 623, 508, 765, 415, 356, 253, 336, 283, 126, 74, 0), # 119 (952, 829, 805, 748, 679, 304, 329, 287, 361, 168, 140, 80, 0, 959, 784, 624, 512, 769, 418, 358, 255, 337, 283, 126, 74, 0), # 120 (962, 835, 812, 757, 682, 312, 334, 288, 365, 170, 142, 81, 0, 969, 796, 631, 516, 774, 422, 360, 257, 342, 284, 126, 75, 0), # 121 (972, 838, 817, 770, 687, 316, 335, 290, 369, 170, 143, 82, 0, 974, 801, 633, 519, 778, 431, 363, 259, 344, 285, 126, 75, 0), # 122 (984, 843, 823, 775, 690, 319, 336, 293, 369, 170, 144, 83, 0, 988, 809, 637, 520, 785, 433, 365, 260, 348, 287, 127, 76, 0), # 123 (995, 851, 827, 786, 695, 323, 336, 295, 371, 172, 145, 84, 0, 997, 816, 641, 522, 788, 437, 368, 262, 350, 289, 129, 76, 0), # 124 (999, 856, 836, 790, 698, 327, 339, 297, 372, 173, 145, 84, 0, 1005, 821, 643, 525, 791, 439, 371, 264, 352, 289, 131, 78, 0), # 125 (1007, 859, 838, 800, 701, 329, 340, 299, 374, 173, 145, 84, 0, 1012, 824, 648, 526, 795, 441, 377, 267, 355, 294, 132, 78, 0), # 126 (1014, 862, 843, 807, 705, 332, 342, 302, 376, 173, 145, 84, 0, 1018, 827, 654, 530, 801, 446, 377, 270, 360, 294, 133, 78, 0), # 127 (1020, 867, 845, 810, 708, 332, 345, 303, 377, 173, 146, 85, 0, 1025, 835, 656, 532, 805, 449, 378, 273, 366, 295, 133, 79, 0), # 128 (1028, 877, 852, 820, 715, 334, 346, 304, 378, 174, 147, 85, 0, 1028, 837, 659, 537, 812, 450, 382, 274, 371, 299, 134, 79, 0), # 129 (1034, 882, 858, 824, 720, 335, 348, 306, 381, 175, 147, 85, 0, 1032, 840, 663, 540, 820, 452, 383, 275, 373, 303, 135, 81, 0), # 130 (1042, 889, 865, 832, 726, 340, 351, 307, 383, 175, 148, 85, 0, 1042, 845, 667, 545, 828, 453, 384, 277, 374, 307, 137, 81, 0), # 131 (1052, 894, 875, 838, 733, 343, 354, 309, 384, 175, 149, 85, 0, 1047, 851, 669, 550, 834, 453, 388, 280, 377, 309, 137, 83, 0), # 132 (1055, 901, 879, 843, 736, 349, 358, 312, 387, 180, 150, 86, 0, 1050, 860, 675, 553, 839, 454, 390, 280, 379, 312, 138, 83, 0), # 133 (1059, 908, 890, 848, 739, 351, 360, 312, 392, 182, 151, 86, 0, 1062, 864, 681, 555, 846, 458, 392, 282, 380, 315, 140, 85, 0), # 134 (1066, 913, 895, 859, 745, 352, 362, 314, 395, 182, 153, 86, 0, 1067, 870, 683, 556, 849, 462, 394, 283, 382, 316, 143, 85, 0), # 135 (1073, 920, 903, 866, 748, 353, 363, 316, 399, 185, 155, 87, 0, 1072, 874, 687, 560, 854, 464, 399, 284, 387, 319, 143, 85, 0), # 136 (1079, 927, 907, 876, 754, 355, 366, 319, 402, 186, 156, 87, 0, 1077, 879, 689, 561, 862, 467, 401, 285, 387, 322, 143, 87, 0), # 137 (1083, 931, 912, 880, 761, 360, 370, 322, 405, 186, 156, 87, 0, 1082, 885, 693, 568, 872, 468, 407, 286, 390, 325, 143, 87, 0), # 138 (1090, 939, 917, 884, 766, 361, 373, 323, 406, 186, 156, 89, 0, 1087, 886, 697, 568, 876, 473, 411, 287, 392, 327, 144, 89, 0), # 139 (1092, 942, 926, 891, 770, 362, 376, 324, 410, 187, 156, 89, 0, 1094, 892, 702, 572, 884, 476, 412, 288, 396, 331, 144, 90, 0), # 140 (1098, 944, 927, 900, 774, 365, 378, 325, 413, 187, 157, 91, 0, 1102, 900, 705, 576, 889, 477, 414, 289, 399, 332, 147, 90, 0), # 141 (1103, 946, 937, 910, 782, 367, 382, 325, 417, 189, 158, 91, 0, 1108, 908, 709, 580, 898, 477, 414, 291, 402, 333, 148, 90, 0), # 142 (1111, 947, 945, 913, 787, 368, 385, 327, 420, 189, 159, 92, 0, 1114, 916, 712, 586, 906, 481, 415, 294, 402, 335, 151, 91, 0), # 143 (1116, 952, 949, 919, 787, 372, 387, 328, 421, 189, 159, 93, 0, 1119, 921, 720, 591, 911, 482, 415, 297, 405, 336, 151, 91, 0), # 144 (1130, 957, 952, 923, 788, 374, 390, 329, 423, 189, 160, 94, 0, 1124, 926, 729, 594, 917, 484, 419, 299, 407, 336, 152, 92, 0), # 145 (1141, 963, 955, 927, 793, 376, 392, 330, 428, 191, 165, 95, 0, 1134, 932, 731, 596, 924, 487, 420, 302, 409, 340, 153, 92, 0), # 146 (1148, 966, 960, 933, 802, 378, 394, 335, 431, 193, 167, 95, 0, 1139, 937, 737, 599, 930, 490, 426, 303, 411, 345, 153, 92, 0), # 147 (1156, 970, 964, 938, 804, 380, 396, 339, 432, 194, 168, 97, 0, 1146, 941, 740, 603, 936, 495, 433, 303, 413, 350, 153, 92, 0), # 148 (1166, 975, 970, 941, 807, 384, 399, 342, 434, 195, 169, 98, 0, 1150, 946, 745, 605, 937, 498, 435, 304, 414, 352, 154, 92, 0), # 149 (1174, 982, 978, 942, 813, 387, 403, 345, 436, 195, 169, 98, 0, 1153, 953, 747, 606, 939, 500, 437, 305, 414, 354, 155, 92, 0), # 150 (1176, 989, 984, 943, 818, 390, 403, 348, 438, 197, 170, 99, 0, 1161, 957, 748, 608, 946, 501, 438, 308, 417, 355, 157, 93, 0), # 151 (1178, 994, 987, 947, 823, 395, 405, 349, 439, 200, 171, 99, 0, 1169, 960, 753, 612, 952, 502, 440, 310, 422, 356, 159, 94, 0), # 152 (1186, 1000, 992, 952, 827, 397, 407, 350, 442, 200, 171, 99, 0, 1172, 966, 758, 613, 961, 503, 441, 310, 425, 358, 161, 95, 0), # 153 (1191, 1005, 997, 958, 832, 397, 410, 353, 445, 200, 172, 100, 0, 1184, 972, 760, 616, 964, 506, 442, 310, 426, 363, 162, 95, 0), # 154 (1195, 1006, 1001, 959, 835, 399, 411, 355, 449, 202, 172, 100, 0, 1188, 978, 763, 621, 967, 507, 444, 314, 428, 365, 162, 95, 0), # 155 (1200, 1010, 1012, 962, 843, 401, 415, 355, 450, 203, 172, 100, 0, 1190, 981, 765, 625, 970, 508, 448, 316, 430, 368, 162, 96, 0), # 156 (1205, 1014, 1018, 966, 848, 404, 418, 357, 455, 203, 173, 101, 0, 1201, 987, 768, 630, 976, 513, 450, 320, 434, 369, 163, 96, 0), # 157 (1211, 1017, 1021, 970, 852, 405, 419, 358, 457, 204, 173, 102, 0, 1203, 993, 775, 633, 981, 515, 450, 324, 436, 371, 164, 96, 0), # 158 (1222, 1022, 1023, 977, 860, 407, 420, 361, 457, 205, 173, 102, 0, 1208, 999, 779, 634, 986, 517, 452, 324, 437, 375, 166, 98, 0), # 159 (1229, 1025, 1030, 980, 865, 409, 420, 361, 460, 205, 173, 102, 0, 1218, 1002, 783, 636, 990, 521, 454, 327, 438, 376, 167, 99, 0), # 160 (1230, 1030, 1034, 983, 868, 411, 421, 362, 464, 206, 173, 103, 0, 1228, 1005, 791, 640, 993, 522, 456, 328, 440, 377, 167, 100, 0), # 161 (1236, 1033, 1040, 988, 873, 412, 422, 364, 464, 206, 176, 103, 0, 1231, 1009, 793, 642, 996, 523, 458, 329, 444, 380, 168, 100, 0), # 162 (1247, 1035, 1044, 992, 877, 412, 424, 367, 467, 208, 176, 104, 0, 1233, 1015, 796, 644, 1003, 527, 459, 331, 444, 380, 169, 100, 0), # 163 (1249, 1039, 1045, 1003, 882, 418, 427, 368, 469, 210, 177, 105, 0, 1244, 1015, 798, 648, 1005, 528, 461, 332, 447, 382, 170, 100, 0), # 164 (1257, 1044, 1048, 1010, 884, 421, 431, 368, 470, 210, 178, 105, 0, 1253, 1019, 804, 651, 1008, 529, 463, 332, 450, 382, 170, 101, 0), # 165 (1264, 1047, 1053, 1014, 885, 423, 431, 368, 471, 211, 178, 105, 0, 1261, 1025, 807, 653, 1012, 532, 464, 333, 451, 384, 172, 101, 0), # 166 (1270, 1049, 1057, 1021, 888, 428, 434, 368, 473, 211, 179, 105, 0, 1264, 1028, 807, 656, 1017, 538, 466, 336, 452, 385, 174, 101, 0), # 167 (1276, 1052, 1062, 1022, 890, 431, 435, 369, 476, 212, 180, 106, 0, 1271, 1036, 809, 658, 1020, 539, 469, 340, 456, 387, 175, 101, 0), # 168 (1281, 1052, 1065, 1027, 893, 433, 436, 370, 478, 212, 180, 106, 0, 1281, 1040, 811, 660, 1023, 541, 471, 340, 460, 388, 176, 101, 0), # 169 (1284, 1055, 1067, 1030, 900, 435, 437, 370, 482, 212, 180, 106, 0, 1289, 1042, 815, 662, 1028, 544, 472, 341, 461, 393, 177, 101, 0), # 170 (1289, 1059, 1070, 1036, 904, 438, 439, 372, 484, 213, 181, 107, 0, 1292, 1046, 817, 662, 1034, 547, 474, 342, 465, 395, 178, 101, 0), # 171 (1293, 1066, 1075, 1039, 909, 438, 443, 373, 486, 214, 181, 107, 0, 1300, 1050, 818, 664, 1035, 548, 476, 343, 468, 396, 178, 101, 0), # 172 (1297, 1066, 1078, 1045, 915, 442, 443, 373, 490, 215, 182, 109, 0, 1302, 1055, 819, 668, 1037, 549, 479, 344, 470, 397, 179, 101, 0), # 173 (1303, 1071, 1084, 1051, 917, 444, 444, 375, 490, 215, 182, 110, 0, 1305, 1057, 823, 669, 1042, 551, 480, 344, 472, 397, 180, 103, 0), # 174 (1308, 1075, 1090, 1052, 920, 448, 445, 377, 493, 218, 183, 110, 0, 1308, 1059, 824, 672, 1046, 551, 480, 344, 474, 397, 181, 103, 0), # 175 (1310, 1077, 1090, 1057, 920, 449, 447, 377, 493, 218, 183, 110, 0, 1311, 1062, 825, 675, 1051, 553, 480, 345, 475, 397, 182, 103, 0), # 176 (1315, 1079, 1092, 1060, 924, 452, 448, 378, 494, 220, 183, 110, 0, 1313, 1063, 827, 677, 1055, 555, 480, 345, 476, 397, 183, 103, 0), # 177 (1318, 1079, 1098, 1061, 926, 453, 450, 378, 494, 220, 184, 110, 0, 1316, 1065, 828, 677, 1060, 556, 481, 346, 482, 403, 183, 103, 0), # 178 (1318, 1079, 1098, 1061, 926, 453, 450, 378, 494, 220, 184, 110, 0, 1316, 1065, 828, 677, 1060, 556, 481, 346, 482, 403, 183, 103, 0), # 179 ) passenger_arriving_rate = ( (4.0166924626974145, 4.051878277108322, 3.4741888197416713, 3.72880066431806, 2.962498990725126, 1.4647056349507583, 1.6584142461495661, 1.5510587243264744, 1.6240264165781353, 0.7916030031044742, 0.5607020218514138, 0.32652767188707826, 0.0, 4.067104170062691, 3.5918043907578605, 2.803510109257069, 2.374809009313422, 3.2480528331562706, 2.171482214057064, 1.6584142461495661, 1.0462183106791132, 1.481249495362563, 1.2429335547726867, 0.6948377639483343, 0.36835257064621113, 0.0), # 0 (4.283461721615979, 4.319377842372822, 3.703564394220102, 3.97508655196597, 3.1586615133195926, 1.561459005886526, 1.7677875765054776, 1.6531712409685695, 1.7312654203554425, 0.8437961384554302, 0.5977461514608177, 0.34808111072095704, 0.0, 4.3358333179518835, 3.8288922179305267, 2.9887307573040878, 2.53138841536629, 3.462530840710885, 2.3144397373559973, 1.7677875765054776, 1.1153278613475186, 1.5793307566597963, 1.3250288506553236, 0.7407128788440204, 0.39267071294298395, 0.0), # 1 (4.549378407183785, 4.585815791986718, 3.9320281903649423, 4.220392622798877, 3.3541135859998636, 1.6578263867724743, 1.8767274031842818, 1.7548750826348067, 1.838076481834013, 0.8957827550041094, 0.6346430865035085, 0.3695488434702037, 0.0, 4.603491862567752, 4.06503727817224, 3.173215432517542, 2.6873482650123277, 3.676152963668026, 2.4568251156887295, 1.8767274031842818, 1.1841617048374817, 1.6770567929999318, 1.4067975409329592, 0.7864056380729886, 0.41689234472606534, 0.0), # 2 (4.81340623451725, 4.850135034753395, 4.1586739128799035, 4.463745844519244, 3.548086227201014, 1.7534256238730528, 1.9848014566591823, 1.8557670524981693, 1.9440360429122914, 0.9473565396852364, 0.6712464549103178, 0.3908457123286974, 0.0, 4.869018245003381, 4.299302835615671, 3.356232274551589, 2.8420696190557084, 3.8880720858245827, 2.598073873497437, 1.9848014566591823, 1.2524468741950376, 1.774043113600507, 1.487915281506415, 0.8317347825759807, 0.4409213667957632, 0.0), # 3 (5.074508918732786, 5.111278479476234, 4.382595266468691, 4.704173184829542, 3.7398104553581293, 1.8478745634527118, 2.0915774674033836, 1.9554439537316386, 2.048720545488722, 0.998311179433536, 0.7074098846120768, 0.41188655949031766, 0.0, 5.131350906351854, 4.530752154393493, 3.5370494230603833, 2.9949335383006073, 4.097441090977444, 2.737621535224294, 2.0915774674033836, 1.3199104024662227, 1.8699052276790646, 1.5680577282765145, 0.8765190532937384, 0.46466167995238505, 0.0), # 4 (5.331650174946809, 5.368189034958631, 4.602885955835013, 4.940701611432236, 3.9285172889062823, 1.9407910517759004, 2.1966231658900894, 2.0535025895081978, 2.151706431461749, 1.048440361183733, 0.7429870035396177, 0.43258622714894324, 0.0, 5.389428287706262, 4.758448498638375, 3.7149350176980884, 3.145321083551198, 4.303412862923498, 2.8749036253114766, 2.1966231658900894, 1.3862793226970715, 1.9642586444531411, 1.6469005371440792, 0.9205771911670025, 0.48801718499623925, 0.0), # 5 (5.583793718275733, 5.619809610003967, 4.8186396856825775, 5.172358092029792, 4.113437746280557, 2.03179293510707, 2.299506282592505, 2.1495397630008295, 2.2525701427298173, 1.097537771870552, 0.777831439623771, 0.45285955749845397, 0.0, 5.642188830159686, 4.981455132482993, 3.889157198118855, 3.2926133156116553, 4.5051402854596345, 3.0093556682011613, 2.299506282592505, 1.4512806679336214, 2.0567188731402783, 1.724119364009931, 0.9637279371365156, 0.5108917827276335, 0.0), # 6 (5.829903263835975, 5.86508311341563, 5.02895016071509, 5.398169594324678, 4.293802845916028, 2.1204980597106697, 2.399794547983834, 2.2431522773825177, 2.350888121191372, 1.1453970984287176, 0.8117968207953693, 0.47262139273272863, 0.0, 5.888570974805216, 5.198835320060014, 4.058984103976846, 3.436191295286152, 4.701776242382744, 3.1404131883355246, 2.399794547983834, 1.514641471221907, 2.146901422958014, 1.799389864774893, 1.0057900321430182, 0.5331893739468755, 0.0), # 7 (6.068942526743948, 6.102952453997006, 5.232911085636264, 5.617163086019357, 4.468843606247779, 2.2065242718511486, 2.497055692537279, 2.333936935826242, 2.446236808744855, 1.1918120277929551, 0.8447367749852429, 0.49178657504564693, 0.0, 6.127513162735934, 5.409652325502115, 4.223683874926214, 3.5754360833788645, 4.89247361748971, 3.2675117101567386, 2.497055692537279, 1.5760887656079634, 2.2344218031238894, 1.872387695339786, 1.046582217127253, 0.5548138594542734, 0.0), # 8 (6.299875222116068, 6.332360540551483, 5.429616165149803, 5.828365534816301, 4.637791045710885, 2.2894894177929594, 2.590857446726048, 2.421490541504988, 2.538192647288713, 1.2365762468979886, 0.8765049301242238, 0.5102699466310877, 0.0, 6.35795383504493, 5.612969412941963, 4.382524650621119, 3.709728740693965, 5.076385294577426, 3.390086758106983, 2.590857446726048, 1.635349584137828, 2.3188955228554424, 1.9427885116054342, 1.0859232330299606, 0.5756691400501349, 0.0), # 9 (6.5216650650687455, 6.552250281882444, 5.6181591039594165, 6.0308039084179725, 4.799876182740427, 2.3690113438005502, 2.680767541023342, 2.505409897591737, 2.6263320787213904, 1.279483442678543, 0.9069549141431433, 0.5279863496829302, 0.0, 6.578831432825289, 5.807849846512232, 4.534774570715716, 3.838450328035629, 5.252664157442781, 3.5075738566284325, 2.680767541023342, 1.6921509598575357, 2.3999380913702133, 2.010267969472658, 1.1236318207918834, 0.5956591165347678, 0.0), # 10 (6.7332757707184046, 6.761564586793285, 5.797633606768811, 6.223505174526839, 4.954330035771484, 2.444707896138372, 2.7663537059023664, 2.585291807259472, 2.7102315449413314, 1.320327302069344, 0.9359403549728333, 0.5448506263950541, 0.0, 6.78908439717009, 5.993356890345594, 4.679701774864166, 3.9609819062080316, 5.420463089882663, 3.619408530163261, 2.7663537059023664, 1.7462199258131228, 2.477165017885742, 2.07450172484228, 1.1595267213537623, 0.6146876897084805, 0.0), # 11 (6.93367105418145, 6.959246364087378, 5.9671333782816935, 6.405496300845368, 5.100383623239134, 2.516196921070873, 2.8471836718363246, 2.6607330736811736, 2.789467487846981, 1.3589015120051147, 0.9633148805441247, 0.5607776189613379, 0.0, 6.987651169172428, 6.168553808574717, 4.816574402720623, 4.0767045360153435, 5.578934975693962, 3.7250263031536432, 2.8471836718363246, 1.7972835150506232, 2.550191811619567, 2.135165433615123, 1.1934266756563388, 0.63265876037158, 0.0), # 12 (7.121814630574301, 7.144238522568122, 6.125752123201774, 6.575804255076027, 5.237267963578454, 2.5830962648625047, 2.9228251692984224, 2.731330500029827, 2.863616349336782, 1.3949997594205812, 0.9889321187878493, 0.5756821695756614, 0.0, 7.173470189925388, 6.332503865332275, 4.944660593939246, 4.184999278261743, 5.727232698673564, 3.8238627000417584, 2.9228251692984224, 1.8450687606160747, 2.618633981789227, 2.1919347516920094, 1.225150424640355, 0.6494762293243748, 0.0), # 13 (7.296670215013373, 7.315483971038899, 6.272583546232765, 6.733456004921276, 5.3642140752245275, 2.6450237737777162, 2.9928459287618647, 2.7966808894784156, 2.932254571309179, 1.428415731250467, 1.0126456976348381, 0.5894791204319041, 0.0, 7.345479900522051, 6.484270324750944, 5.06322848817419, 4.285247193751401, 5.864509142618358, 3.9153532452697823, 2.9928459287618647, 1.8893026955555114, 2.6821070376122638, 2.244485334973759, 1.254516709246553, 0.6650439973671727, 0.0), # 14 (7.457201522615084, 7.471925618303093, 6.406721352078362, 6.877478518083592, 5.480452976612431, 2.701597294080959, 3.0568136806998503, 2.8563810451999188, 2.9949585956626184, 1.4589431144294984, 1.0343092450159228, 0.6020833137239449, 0.0, 7.502618742055505, 6.622916450963392, 5.171546225079613, 4.376829343288494, 5.989917191325237, 3.9989334632798865, 3.0568136806998503, 1.9297123529149707, 2.7402264883062153, 2.2924928393611976, 1.2813442704156726, 0.6792659653002813, 0.0), # 15 (7.602372268495841, 7.612506373164098, 6.527259245442284, 7.006898762265429, 5.585215686177244, 2.7524346720366815, 3.1142961555855906, 2.9100277703673205, 3.0513048642955427, 1.4863755958923994, 1.0537763888619351, 0.6134095916456628, 0.0, 7.643825155618837, 6.747505508102289, 5.268881944309675, 4.459126787677198, 6.102609728591085, 4.074038878514249, 3.1142961555855906, 1.9660247657404866, 2.792607843088622, 2.3356329207551436, 1.3054518490884568, 0.692046033924009, 0.0), # 16 (7.73114616777206, 7.736169144425294, 6.6332909310282355, 7.120743705169268, 5.677733222354047, 2.7971537539093334, 3.1648610838922844, 2.9572178681536063, 3.1008698191063955, 1.510506862573894, 1.0709007571037066, 0.6233727963909371, 0.0, 7.768037582305133, 6.857100760300307, 5.354503785518533, 4.531520587721681, 6.201739638212791, 4.140105015415049, 3.1648610838922844, 1.9979669670780953, 2.8388666111770235, 2.373581235056423, 1.3266581862056472, 0.7032881040386633, 0.0), # 17 (7.842486935560164, 7.841856840890068, 6.723910113539921, 7.218040314497568, 5.757236603577914, 2.8353723859633684, 3.2080761960931405, 2.9975481417317535, 3.1432299019936254, 1.5311306014087078, 1.085535977672068, 0.6318877701536477, 0.0, 7.874194463207477, 6.950765471690124, 5.427679888360339, 4.593391804226123, 6.286459803987251, 4.196567398424455, 3.2080761960931405, 2.0252659899738346, 2.878618301788957, 2.406013438165856, 1.344782022707984, 0.7128960764445517, 0.0), # 18 (7.935358286976559, 7.928512371361812, 6.798210497681052, 7.29781555795279, 5.822956848283928, 2.866708414463231, 3.2435092226613578, 3.030615394274749, 3.1779615548556746, 1.5480404993315662, 1.0975356784978507, 0.6388693551276732, 0.0, 7.961234239418957, 7.027562906404404, 5.4876783924892525, 4.644121497994697, 6.355923109711349, 4.242861551984649, 3.2435092226613578, 2.0476488674737365, 2.911478424141964, 2.4326051859842637, 1.3596420995362106, 0.720773851941983, 0.0), # 19 (8.008723937137665, 7.995078644643906, 6.855285788155336, 7.359096403237412, 5.874124974907169, 2.8907796856733756, 3.270727894070145, 3.0560164289555725, 3.2046412195909864, 1.5610302432771923, 1.106753487511887, 0.6442323935068929, 0.0, 8.02809535203266, 7.08655632857582, 5.533767437559434, 4.683090729831576, 6.409282439181973, 4.278423000537802, 3.270727894070145, 2.0648426326238396, 2.9370624874535847, 2.4530321344124713, 1.3710571576310673, 0.7268253313312643, 0.0), # 20 (8.061547601159893, 8.040498569539743, 6.89422968966648, 7.400909818053892, 5.909972001882714, 2.90720404585825, 3.289299940792704, 3.0733480489472083, 3.222845338098006, 1.5698935201803115, 1.113043032645008, 0.6478917274851863, 0.0, 8.073716242141662, 7.1268090023370485, 5.56521516322504, 4.709680560540933, 6.445690676196012, 4.302687268526092, 3.289299940792704, 2.0765743184701786, 2.954986000941357, 2.466969939351298, 1.378845937933296, 0.730954415412704, 0.0), # 21 (8.092792994159664, 8.063715054852706, 6.91413590691819, 7.422282770104703, 5.92972894764564, 2.915599341282305, 3.29879309330224, 3.0822070574226386, 3.2321503522751773, 1.574424016975649, 1.1162579418280456, 0.6497621992564327, 0.0, 8.097035350839063, 7.147384191820759, 5.581289709140227, 4.723272050926946, 6.464300704550355, 4.315089880391694, 3.29879309330224, 2.0825709580587892, 2.96486447382282, 2.474094256701568, 1.3828271813836381, 0.7330650049866098, 0.0), # 22 (8.104314690674112, 8.066463968907179, 6.916615454961135, 7.424958487654322, 5.9347904298840515, 2.916666666666667, 3.2999216009037355, 3.0831646090534983, 3.2333136625514407, 1.574958454503887, 1.1166610716215655, 0.6499931717725956, 0.0, 8.1, 7.149924889498552, 5.583305358107827, 4.72487536351166, 6.466627325102881, 4.316430452674898, 3.2999216009037355, 2.0833333333333335, 2.9673952149420257, 2.474986162551441, 1.3833230909922272, 0.7333149062642891, 0.0), # 23 (8.112809930427323, 8.06486049382716, 6.916209876543211, 7.4246291666666675, 5.937657393927921, 2.916666666666667, 3.299301525054467, 3.0818333333333334, 3.2331577777777776, 1.5746301234567905, 1.1166166105499442, 0.6499390946502058, 0.0, 8.1, 7.149330041152263, 5.583083052749721, 4.72389037037037, 6.466315555555555, 4.314566666666667, 3.299301525054467, 2.0833333333333335, 2.9688286969639606, 2.4748763888888896, 1.3832419753086422, 0.7331691358024692, 0.0), # 24 (8.121125784169264, 8.06169981710105, 6.915409236396892, 7.423977623456791, 5.940461304317068, 2.916666666666667, 3.298079561042524, 3.0792181069958855, 3.2328497942386836, 1.5739837677183361, 1.1165284532568485, 0.6498323426306966, 0.0, 8.1, 7.148155768937661, 5.5826422662842425, 4.7219513031550076, 6.465699588477367, 4.31090534979424, 3.298079561042524, 2.0833333333333335, 2.970230652158534, 2.474659207818931, 1.3830818472793784, 0.7328818015546411, 0.0), # 25 (8.129261615238427, 8.057030224051212, 6.914224508459078, 7.423011265432098, 5.943202063157923, 2.916666666666667, 3.2962746873234887, 3.0753683127572025, 3.23239366255144, 1.5730301417466854, 1.1163973978467807, 0.6496743789056548, 0.0, 8.1, 7.146418167962202, 5.581986989233903, 4.719090425240055, 6.46478732510288, 4.305515637860084, 3.2962746873234887, 2.0833333333333335, 2.9716010315789614, 2.4743370884773666, 1.3828449016918156, 0.732457293095565, 0.0), # 26 (8.13721678697331, 8.0509, 6.9126666666666665, 7.4217375, 5.945879572556914, 2.916666666666667, 3.2939058823529415, 3.0703333333333336, 3.231793333333333, 1.5717800000000004, 1.1162242424242426, 0.6494666666666669, 0.0, 8.1, 7.144133333333334, 5.581121212121213, 4.715339999999999, 6.463586666666666, 4.298466666666667, 3.2939058823529415, 2.0833333333333335, 2.972939786278457, 2.4739125000000004, 1.3825333333333334, 0.7319000000000001, 0.0), # 27 (8.1449906627124, 8.043357430269776, 6.910746684956561, 7.420163734567902, 5.948493734620481, 2.916666666666667, 3.2909921245864604, 3.06416255144033, 3.231052757201646, 1.570244096936443, 1.116009785093736, 0.6492106691053194, 0.0, 8.1, 7.141317360158513, 5.580048925468679, 4.710732290809328, 6.462105514403292, 4.289827572016462, 3.2909921245864604, 2.0833333333333335, 2.9742468673102405, 2.4733879115226345, 1.3821493369913125, 0.731214311842707, 0.0), # 28 (8.1525826057942, 8.0344508001829, 6.908475537265661, 7.41829737654321, 5.951044451455051, 2.916666666666667, 3.2875523924796264, 3.0569053497942384, 3.2301758847736624, 1.5684331870141752, 1.1157548239597623, 0.6489078494131992, 0.0, 8.1, 7.13798634354519, 5.578774119798812, 4.705299561042525, 6.460351769547325, 4.279667489711934, 3.2875523924796264, 2.0833333333333335, 2.9755222257275253, 2.4727657921810704, 1.3816951074531325, 0.7304046181984455, 0.0), # 29 (8.159991979557198, 8.02422839506173, 6.905864197530864, 7.416145833333333, 5.953531625167059, 2.916666666666667, 3.2836056644880176, 3.048611111111111, 3.2291666666666665, 1.5663580246913587, 1.115460157126824, 0.648559670781893, 0.0, 8.1, 7.134156378600823, 5.57730078563412, 4.699074074074074, 6.458333333333333, 4.268055555555556, 3.2836056644880176, 2.0833333333333335, 2.9767658125835297, 2.4720486111111115, 1.3811728395061729, 0.7294753086419755, 0.0), # 30 (8.167218147339886, 8.012738500228625, 6.902923639689073, 7.41371651234568, 5.955955157862938, 2.916666666666667, 3.279170919067216, 3.039329218106996, 3.2280290534979423, 1.5640293644261551, 1.1151265826994223, 0.6481675964029875, 0.0, 8.1, 7.129843560432862, 5.575632913497111, 4.692088093278464, 6.456058106995885, 4.2550609053497945, 3.279170919067216, 2.0833333333333335, 2.977977578931469, 2.4712388374485603, 1.3805847279378145, 0.7284307727480569, 0.0), # 31 (8.174260472480764, 8.000029401005945, 6.899664837677183, 7.411016820987655, 5.958314951649118, 2.916666666666667, 3.2742671346727996, 3.029109053497943, 3.226766995884774, 1.5614579606767267, 1.1147548987820595, 0.6477330894680691, 0.0, 8.1, 7.125063984148759, 5.573774493910297, 4.684373882030179, 6.453533991769548, 4.24075267489712, 3.2742671346727996, 2.0833333333333335, 2.979157475824559, 2.470338940329219, 1.3799329675354366, 0.7272754000914496, 0.0), # 32 (8.181118318318317, 7.986149382716048, 6.896098765432099, 7.408054166666666, 5.960610908632033, 2.916666666666667, 3.2689132897603486, 3.0180000000000002, 3.2253844444444444, 1.5586545679012351, 1.114345903479237, 0.6472576131687243, 0.0, 8.1, 7.119833744855966, 5.571729517396184, 4.6759637037037045, 6.450768888888889, 4.225200000000001, 3.2689132897603486, 2.0833333333333335, 2.9803054543160163, 2.469351388888889, 1.37921975308642, 0.7260135802469135, 0.0), # 33 (8.187791048191048, 7.971146730681298, 6.892236396890718, 7.404835956790124, 5.962842930918115, 2.916666666666667, 3.263128362785444, 3.006051440329218, 3.2238853497942395, 1.5556299405578424, 1.1139003948954567, 0.6467426306965403, 0.0, 8.1, 7.114168937661942, 5.569501974477284, 4.666889821673526, 6.447770699588479, 4.208472016460905, 3.263128362785444, 2.0833333333333335, 2.9814214654590576, 2.468278652263375, 1.3784472793781437, 0.724649702789209, 0.0), # 34 (8.194278025437447, 7.95506973022405, 6.888088705989941, 7.401369598765432, 5.965010920613797, 2.916666666666667, 3.2569313322036635, 2.9933127572016467, 3.2222736625514408, 1.5523948331047102, 1.1134191711352206, 0.6461896052431033, 0.0, 8.1, 7.108085657674136, 5.5670958556761025, 4.657184499314129, 6.4445473251028815, 4.1906378600823055, 3.2569313322036635, 2.0833333333333335, 2.9825054603068986, 2.4671231995884777, 1.3776177411979884, 0.7231881572930956, 0.0), # 35 (8.200578613396004, 7.937966666666665, 6.8836666666666675, 7.3976625, 5.967114779825512, 2.916666666666667, 3.250341176470588, 2.979833333333334, 3.220553333333333, 1.5489600000000006, 1.1129030303030305, 0.6456000000000002, 0.0, 8.1, 7.101600000000001, 5.564515151515152, 4.64688, 6.441106666666666, 4.1717666666666675, 3.250341176470588, 2.0833333333333335, 2.983557389912756, 2.4658875000000005, 1.3767333333333336, 0.7216333333333333, 0.0), # 36 (8.20669217540522, 7.919885825331503, 6.8789812528577965, 7.393722067901235, 5.969154410659692, 2.916666666666667, 3.2433768740417976, 2.9656625514403294, 3.218728312757202, 1.5453361957018754, 1.1123527705033882, 0.6449752781588174, 0.0, 8.1, 7.09472805974699, 5.561763852516941, 4.636008587105625, 6.437456625514404, 4.1519275720164615, 3.2433768740417976, 2.0833333333333335, 2.984577205329846, 2.4645740226337454, 1.3757962505715595, 0.7199896204846822, 0.0), # 37 (8.212618074803581, 7.9008754915409245, 6.874043438500229, 7.389555709876545, 5.971129715222768, 2.916666666666667, 3.2360574033728717, 2.9508497942386835, 3.2168025514403293, 1.5415341746684963, 1.111769189840795, 0.6443169029111417, 0.0, 8.1, 7.087485932022558, 5.558845949203975, 4.624602524005487, 6.433605102880659, 4.131189711934157, 3.2360574033728717, 2.0833333333333335, 2.985564857611384, 2.4631852366255154, 1.3748086877000458, 0.7182614083219023, 0.0), # 38 (8.218355674929589, 7.880983950617284, 6.868864197530866, 7.3851708333333335, 5.973040595621175, 2.916666666666667, 3.2284017429193903, 2.9354444444444447, 3.21478, 1.5375646913580252, 1.1111530864197532, 0.6436263374485597, 0.0, 8.1, 7.079889711934156, 5.555765432098766, 4.612694074074074, 6.42956, 4.109622222222223, 3.2284017429193903, 2.0833333333333335, 2.9865202978105874, 2.4617236111111116, 1.3737728395061732, 0.7164530864197532, 0.0), # 39 (8.22390433912173, 7.860259487882944, 6.863454503886603, 7.380574845679012, 5.974886953961343, 2.916666666666667, 3.2204288711369324, 2.9194958847736636, 3.212664609053498, 1.5334385002286244, 1.1105052583447648, 0.6429050449626583, 0.0, 8.1, 7.071955494589241, 5.552526291723823, 4.600315500685872, 6.425329218106996, 4.087294238683129, 3.2204288711369324, 2.0833333333333335, 2.9874434769806717, 2.460191615226338, 1.3726909007773205, 0.714569044352995, 0.0), # 40 (8.229263430718502, 7.838750388660264, 6.857825331504345, 7.375775154320989, 5.976668692349708, 2.916666666666667, 3.212157766481078, 2.903053497942387, 3.210460329218107, 1.529166355738455, 1.1098265037203312, 0.6421544886450238, 0.0, 8.1, 7.06369937509526, 5.549132518601655, 4.587499067215363, 6.420920658436214, 4.0642748971193425, 3.212157766481078, 2.0833333333333335, 2.988334346174854, 2.4585917181069967, 1.371565066300869, 0.7126136716963878, 0.0), # 41 (8.2344323130584, 7.816504938271606, 6.85198765432099, 7.370779166666668, 5.978385712892697, 2.916666666666667, 3.2036074074074072, 2.886166666666667, 3.2081711111111115, 1.5247590123456796, 1.1091176206509543, 0.641376131687243, 0.0, 8.1, 7.0551374485596705, 5.5455881032547705, 4.574277037037037, 6.416342222222223, 4.040633333333334, 3.2036074074074072, 2.0833333333333335, 2.9891928564463486, 2.4569263888888897, 1.370397530864198, 0.7105913580246915, 0.0), # 42 (8.239410349479915, 7.7935714220393235, 6.845952446273435, 7.3655942901234575, 5.980037917696748, 2.916666666666667, 3.1947967723715003, 2.868884773662552, 3.2058009053497942, 1.5202272245084596, 1.1083794072411357, 0.6405714372809025, 0.0, 8.1, 7.046285810089926, 5.541897036205678, 4.5606816735253775, 6.4116018106995885, 4.016438683127573, 3.1947967723715003, 2.0833333333333335, 2.990018958848374, 2.4551980967078197, 1.369190489254687, 0.7085064929126659, 0.0), # 43 (8.244196903321543, 7.769998125285779, 6.839730681298583, 7.360227932098766, 5.981625208868291, 2.916666666666667, 3.185744839828936, 2.8512572016460913, 3.2033536625514403, 1.515581746684957, 1.1076126615953779, 0.639741868617589, 0.0, 8.1, 7.037160554793477, 5.538063307976889, 4.54674524005487, 6.4067073251028805, 3.9917600823045283, 3.185744839828936, 2.0833333333333335, 2.9908126044341454, 2.4534093106995893, 1.3679461362597167, 0.7063634659350709, 0.0), # 44 (8.248791337921773, 7.745833333333334, 6.833333333333335, 7.354687500000001, 5.983147488513758, 2.916666666666667, 3.1764705882352944, 2.833333333333334, 3.2008333333333328, 1.510833333333334, 1.106818181818182, 0.638888888888889, 0.0, 8.1, 7.027777777777777, 5.534090909090909, 4.532500000000001, 6.4016666666666655, 3.9666666666666672, 3.1764705882352944, 2.0833333333333335, 2.991573744256879, 2.4515625000000005, 1.366666666666667, 0.7041666666666668, 0.0), # 45 (8.253193016619106, 7.721125331504343, 6.8267713763145865, 7.348980401234568, 5.984604658739582, 2.916666666666667, 3.1669929960461554, 2.81516255144033, 3.198243868312757, 1.5059927389117518, 1.10599676601405, 0.6380139612863894, 0.0, 8.1, 7.018153574150282, 5.5299838300702495, 4.517978216735254, 6.396487736625514, 3.941227572016462, 3.1669929960461554, 2.0833333333333335, 2.992302329369791, 2.4496601337448567, 1.3653542752629175, 0.7019204846822131, 0.0), # 46 (8.257401302752028, 7.695922405121171, 6.8200557841792415, 7.3431140432098765, 5.985996621652196, 2.916666666666667, 3.1573310417170988, 2.7967942386831277, 3.195589218106996, 1.5010707178783727, 1.105149212287484, 0.6371185490016767, 0.0, 8.1, 7.008304039018443, 5.525746061437419, 4.503212153635117, 6.391178436213992, 3.915511934156379, 3.1573310417170988, 2.0833333333333335, 2.992998310826098, 2.4477046810699594, 1.3640111568358484, 0.6996293095564702, 0.0), # 47 (8.261415559659037, 7.670272839506174, 6.8131975308641985, 7.3370958333333345, 5.987323279358032, 2.916666666666667, 3.1475037037037037, 2.7782777777777783, 3.1928733333333335, 1.4960780246913583, 1.1042763187429856, 0.6362041152263375, 0.0, 8.1, 6.998245267489711, 5.521381593714927, 4.488234074074074, 6.385746666666667, 3.88958888888889, 3.1475037037037037, 2.0833333333333335, 2.993661639679016, 2.445698611111112, 1.3626395061728398, 0.6972975308641977, 0.0), # 48 (8.26523515067863, 7.644224919981709, 6.806207590306356, 7.330933179012346, 5.9885845339635235, 2.916666666666667, 3.137529960461551, 2.7596625514403295, 3.190100164609053, 1.491025413808871, 1.1033788834850566, 0.6352721231519587, 0.0, 8.1, 6.987993354671545, 5.5168944174252825, 4.473076241426613, 6.380200329218106, 3.8635275720164617, 3.137529960461551, 2.0833333333333335, 2.9942922669817618, 2.443644393004116, 1.3612415180612714, 0.6949295381801555, 0.0), # 49 (8.268859439149294, 7.617826931870143, 6.799096936442616, 7.324633487654321, 5.989780287575101, 2.916666666666667, 3.12742879044622, 2.7409979423868314, 3.1872736625514397, 1.485923639689072, 1.1024577046181985, 0.6343240359701267, 0.0, 8.1, 6.977564395671393, 5.512288523090993, 4.457770919067215, 6.3745473251028795, 3.8373971193415644, 3.12742879044622, 2.0833333333333335, 2.9948901437875506, 2.441544495884774, 1.3598193872885234, 0.692529721079104, 0.0), # 50 (8.272287788409528, 7.591127160493827, 6.791876543209877, 7.318204166666668, 5.9909104422991994, 2.916666666666667, 3.11721917211329, 2.7223333333333333, 3.184397777777778, 1.4807834567901237, 1.1015135802469138, 0.6333613168724281, 0.0, 8.1, 6.966974485596708, 5.507567901234569, 4.44235037037037, 6.368795555555556, 3.811266666666667, 3.11721917211329, 2.0833333333333335, 2.9954552211495997, 2.4394013888888897, 1.3583753086419754, 0.6901024691358025, 0.0), # 51 (8.275519561797823, 7.564173891175126, 6.78455738454504, 7.311652623456791, 5.991974900242248, 2.916666666666667, 3.1069200839183413, 2.7037181069958844, 3.18147646090535, 1.4756156195701877, 1.1005473084757038, 0.6323854290504498, 0.0, 8.1, 6.956239719554947, 5.502736542378519, 4.4268468587105625, 6.3629529218107, 3.7852053497942384, 3.1069200839183413, 2.0833333333333335, 2.995987450121124, 2.437217541152264, 1.356911476909008, 0.6876521719250116, 0.0), # 52 (8.278554122652675, 7.537015409236398, 6.777150434385004, 7.304986265432099, 5.992973563510682, 2.916666666666667, 3.0965505043169532, 2.6852016460905355, 3.1785136625514405, 1.470430882487426, 1.0995596874090703, 0.6313978356957782, 0.0, 8.1, 6.945376192653559, 5.4977984370453505, 4.411292647462277, 6.357027325102881, 3.7592823045267494, 3.0965505043169532, 2.0833333333333335, 2.996486781755341, 2.4349954218107, 1.355430086877001, 0.6851832190214908, 0.0), # 53 (8.281390834312573, 7.5097000000000005, 6.769666666666667, 7.2982125, 5.993906334210934, 2.916666666666667, 3.086129411764706, 2.6668333333333334, 3.1755133333333334, 1.4652400000000003, 1.098551515151515, 0.6304000000000001, 0.0, 8.1, 6.9344, 5.492757575757575, 4.395720000000001, 6.351026666666667, 3.7335666666666665, 3.086129411764706, 2.0833333333333335, 2.996953167105467, 2.4327375000000004, 1.3539333333333334, 0.6827000000000002, 0.0), # 54 (8.284029060116017, 7.482275948788294, 6.762117055326932, 7.291338734567901, 5.994773114449434, 2.916666666666667, 3.075675784717179, 2.6486625514403292, 3.1724794238683125, 1.4600537265660727, 1.0975235898075406, 0.6293933851547021, 0.0, 8.1, 6.923327236701723, 5.487617949037702, 4.380161179698217, 6.344958847736625, 3.708127572016461, 3.075675784717179, 2.0833333333333335, 2.997386557224717, 2.4304462448559674, 1.3524234110653865, 0.6802069044352995, 0.0), # 55 (8.286468163401498, 7.454791540923639, 6.754512574302698, 7.28437237654321, 5.995573806332619, 2.916666666666667, 3.0652086016299527, 2.6307386831275723, 3.169415884773662, 1.4548828166438048, 1.0964767094816479, 0.6283794543514709, 0.0, 8.1, 6.912173997866179, 5.482383547408239, 4.364648449931414, 6.338831769547324, 3.6830341563786013, 3.0652086016299527, 2.0833333333333335, 2.9977869031663094, 2.4281241255144037, 1.3509025148605398, 0.6777083219021491, 0.0), # 56 (8.288707507507507, 7.427295061728395, 6.746864197530866, 7.277320833333334, 5.996308311966915, 2.916666666666667, 3.0547468409586056, 2.613111111111112, 3.166326666666667, 1.4497380246913585, 1.0954116722783391, 0.627359670781893, 0.0, 8.1, 6.900956378600823, 5.477058361391695, 4.349214074074075, 6.332653333333334, 3.6583555555555565, 3.0547468409586056, 2.0833333333333335, 2.9981541559834577, 2.425773611111112, 1.3493728395061733, 0.6752086419753087, 0.0), # 57 (8.290746455772544, 7.39983479652492, 6.739182898948332, 7.270191512345679, 5.99697653345876, 2.916666666666667, 3.044309481158719, 2.595829218106996, 3.163215720164609, 1.4446301051668957, 1.0943292763021162, 0.6263354976375554, 0.0, 8.1, 6.889690474013108, 5.471646381510581, 4.333890315500686, 6.326431440329218, 3.6341609053497947, 3.044309481158719, 2.0833333333333335, 2.99848826672938, 2.4233971707818935, 1.3478365797896665, 0.6727122542295383, 0.0), # 58 (8.292584371535098, 7.372459030635573, 6.731479652491998, 7.262991820987654, 5.9975783729145835, 2.916666666666667, 3.0339155006858713, 2.578942386831276, 3.160086995884774, 1.4395698125285785, 1.0932303196574802, 0.6253083981100444, 0.0, 8.1, 6.878392379210486, 5.4661515982874, 4.318709437585735, 6.320173991769548, 3.6105193415637866, 3.0339155006858713, 2.0833333333333335, 2.9987891864572918, 2.420997273662552, 1.3462959304984, 0.6702235482395976, 0.0), # 59 (8.294220618133663, 7.345216049382717, 6.723765432098765, 7.255729166666667, 5.998113732440819, 2.916666666666667, 3.0235838779956428, 2.5625000000000004, 3.156944444444445, 1.4345679012345682, 1.092115600448934, 0.6242798353909466, 0.0, 8.1, 6.867078189300411, 5.460578002244669, 4.303703703703704, 6.31388888888889, 3.5875000000000004, 3.0235838779956428, 2.0833333333333335, 2.9990568662204096, 2.4185763888888894, 1.3447530864197532, 0.6677469135802471, 0.0), # 60 (8.295654558906731, 7.3181541380887065, 6.716051211705533, 7.248410956790124, 5.998582514143899, 2.916666666666667, 3.0133335915436135, 2.5465514403292184, 3.1537920164609052, 1.4296351257430273, 1.0909859167809788, 0.623251272671849, 0.0, 8.1, 6.855763999390337, 5.454929583904893, 4.2889053772290815, 6.3075840329218105, 3.5651720164609055, 3.0133335915436135, 2.0833333333333335, 2.9992912570719494, 2.4161369855967085, 1.3432102423411068, 0.6652867398262462, 0.0), # 61 (8.296885557192804, 7.291321582075903, 6.708347965249201, 7.241044598765433, 5.998984620130258, 2.916666666666667, 3.0031836197853625, 2.5311460905349796, 3.1506336625514404, 1.4247822405121175, 1.0898420667581163, 0.6222241731443379, 0.0, 8.1, 6.844465904587715, 5.449210333790581, 4.274346721536352, 6.301267325102881, 3.5436045267489718, 3.0031836197853625, 2.0833333333333335, 2.999492310065129, 2.4136815329218115, 1.3416695930498403, 0.6628474165523549, 0.0), # 62 (8.297912976330368, 7.264766666666667, 6.700666666666668, 7.233637500000001, 5.999319952506323, 2.916666666666667, 2.9931529411764703, 2.5163333333333338, 3.147473333333333, 1.4200200000000003, 1.0886848484848488, 0.6212000000000001, 0.0, 8.1, 6.8332, 5.443424242424244, 4.26006, 6.294946666666666, 3.5228666666666677, 2.9931529411764703, 2.0833333333333335, 2.9996599762531617, 2.411212500000001, 1.3401333333333336, 0.6604333333333334, 0.0), # 63 (8.298736179657919, 7.2385376771833565, 6.693018289894834, 7.226197067901236, 5.999588413378532, 2.916666666666667, 2.983260534172517, 2.5021625514403296, 3.1443149794238683, 1.415359158664838, 1.0875150600656773, 0.6201802164304223, 0.0, 8.1, 6.821982380734645, 5.437575300328387, 4.246077475994513, 6.288629958847737, 3.5030275720164616, 2.983260534172517, 2.0833333333333335, 2.999794206689266, 2.408732355967079, 1.3386036579789669, 0.6580488797439416, 0.0), # 64 (8.29935453051395, 7.212682898948331, 6.685413808870599, 7.218730709876544, 5.999789904853316, 2.916666666666667, 2.9735253772290813, 2.4886831275720165, 3.1411625514403294, 1.4108104709647922, 1.0863334996051048, 0.619166285627191, 0.0, 8.1, 6.8108291418991, 5.431667498025524, 4.232431412894376, 6.282325102880659, 3.484156378600823, 2.9735253772290813, 2.0833333333333335, 2.999894952426658, 2.4062435699588485, 1.33708276177412, 0.6556984453589393, 0.0), # 65 (8.299767392236957, 7.187250617283952, 6.677864197530865, 7.211245833333334, 5.999924329037105, 2.916666666666667, 2.963966448801743, 2.475944444444445, 3.13802, 1.406384691358025, 1.085140965207632, 0.6181596707818932, 0.0, 8.1, 6.799756378600824, 5.425704826038159, 4.2191540740740745, 6.27604, 3.466322222222223, 2.963966448801743, 2.0833333333333335, 2.9999621645185526, 2.4037486111111117, 1.3355728395061732, 0.6533864197530866, 0.0), # 66 (8.299974128165434, 7.162289117512574, 6.670380429812529, 7.203749845679012, 5.999991588036336, 2.916666666666667, 2.9546027273460824, 2.4639958847736634, 3.1348912757201646, 1.4020925743026982, 1.0839382549777616, 0.617161835086115, 0.0, 8.1, 6.788780185947264, 5.419691274888807, 4.206277722908094, 6.269782551440329, 3.4495942386831286, 2.9546027273460824, 2.0833333333333335, 2.999995794018168, 2.401249948559671, 1.3340760859625058, 0.6511171925011432, 0.0), # 67 (8.29983329158466, 7.137715668834903, 6.662937299954276, 7.196185044283415, 5.999934909491917, 2.916612538739013, 2.9454060779318585, 2.452781283340954, 3.131756759640299, 1.3979240883294335, 1.0827047984720504, 0.6161686681266496, 0.0, 8.099900120027435, 6.777855349393144, 5.413523992360251, 4.1937722649883, 6.263513519280598, 3.433893796677336, 2.9454060779318585, 2.0832946705278665, 2.9999674547459585, 2.398728348094472, 1.3325874599908551, 0.648883242621355, 0.0), # 68 (8.298513365539453, 7.112780047789725, 6.655325617283951, 7.188170108695652, 5.999419026870006, 2.916184636488341, 2.9361072725386457, 2.4416995884773662, 3.1284794238683125, 1.3937612781408861, 1.0813150451887295, 0.6151479315572884, 0.0, 8.099108796296298, 6.766627247130171, 5.406575225943647, 4.181283834422658, 6.256958847736625, 3.4183794238683127, 2.9361072725386457, 2.0829890260631005, 2.999709513435003, 2.396056702898551, 1.33106512345679, 0.6466163679808842, 0.0), # 69 (8.295908630047116, 7.087367803885127, 6.647512288523091, 7.179652274557166, 5.998399634202102, 2.9153419194228523, 2.926664053824548, 2.4306508154244786, 3.1250407712238992, 1.3895839048925471, 1.079753184870144, 0.614094850752854, 0.0, 8.097545867626888, 6.755043358281393, 5.3987659243507204, 4.168751714677641, 6.2500815424477985, 3.40291114159427, 2.926664053824548, 2.082387085302037, 2.999199817101051, 2.393217424852389, 1.3295024577046182, 0.6443061639895571, 0.0), # 70 (8.292055728514343, 7.061494123633789, 6.639500057155922, 7.170644102254428, 5.9968896420022055, 2.9140980439973583, 2.9170806638155953, 2.4196386221612562, 3.1214459228776104, 1.3853920718685282, 1.0780249827711816, 0.613010195814181, 0.0, 8.095231910150892, 6.743112153955991, 5.390124913855908, 4.1561762156055835, 6.242891845755221, 3.387494071025759, 2.9170806638155953, 2.081498602855256, 2.9984448210011028, 2.3902147007514767, 1.3279000114311843, 0.6419540112394354, 0.0), # 71 (8.286991304347827, 7.035174193548387, 6.631291666666667, 7.161158152173913, 5.994901960784313, 2.9124666666666674, 2.907361344537815, 2.408666666666667, 3.1177, 1.3811858823529415, 1.0761362041467308, 0.6118947368421054, 0.0, 8.0921875, 6.730842105263158, 5.380681020733653, 4.143557647058824, 6.2354, 3.3721333333333336, 2.907361344537815, 2.080333333333334, 2.9974509803921565, 2.3870527173913048, 1.3262583333333333, 0.6395612903225807, 0.0), # 72 (8.280752000954257, 7.008423200141599, 6.622889860539551, 7.151206984702094, 5.992449501062428, 2.9104614438855867, 2.897510338017237, 2.397738606919677, 3.113808123761622, 1.376965439629899, 1.0740926142516787, 0.6107492439374613, 0.0, 8.0884332133059, 6.7182416833120735, 5.370463071258393, 4.130896318889696, 6.227616247523244, 3.356834049687548, 2.897510338017237, 2.0789010313468475, 2.996224750531214, 2.383735661567365, 1.3245779721079105, 0.6371293818310545, 0.0), # 73 (8.273374461740323, 6.981256329926103, 6.614297382258802, 7.140803160225442, 5.989545173350547, 2.908096032108927, 2.887531886279889, 2.3868581008992535, 3.1097754153330284, 1.3727308469835127, 1.0718999783409144, 0.6095744872010845, 0.0, 8.083989626200276, 6.705319359211929, 5.359499891704571, 4.118192540950537, 6.219550830666057, 3.3416013412589547, 2.887531886279889, 2.0772114515063764, 2.9947725866752735, 2.380267720075148, 1.3228594764517605, 0.6346596663569185, 0.0), # 74 (8.26489533011272, 6.953688769414575, 6.605516975308642, 7.129959239130434, 5.986201888162673, 2.905384087791496, 2.8774302313518003, 2.376028806584362, 3.1056069958847736, 1.3684822076978942, 1.069564061669325, 0.6083712367338099, 0.0, 8.078877314814816, 6.692083604071907, 5.347820308346624, 4.105446623093682, 6.211213991769547, 3.3264403292181073, 2.8774302313518003, 2.0752743484224974, 2.9931009440813363, 2.3766530797101453, 1.3211033950617284, 0.6321535244922342, 0.0), # 75 (8.255351249478142, 6.925735705119696, 6.596551383173297, 7.118687781803542, 5.982432556012803, 2.9023392673881023, 2.8672096152589983, 2.365254381953971, 3.1013079865874102, 1.364219625057156, 1.067090629491799, 0.6071402626364722, 0.0, 8.073116855281206, 6.678542889001194, 5.335453147458995, 4.092658875171468, 6.2026159731748205, 3.311356134735559, 2.8672096152589983, 2.0730994767057873, 2.9912162780064016, 2.372895927267848, 1.3193102766346596, 0.6296123368290635, 0.0), # 76 (8.244778863243274, 6.897412323554141, 6.587403349336991, 7.10700134863124, 5.9782500874149385, 2.8989752273535543, 2.8568742800275118, 2.354538484987045, 3.0968835086114925, 1.3599432023454103, 1.0644854470632252, 0.6058823350099072, 0.0, 8.06672882373114, 6.664705685108978, 5.322427235316125, 4.07982960703623, 6.193767017222985, 3.296353878981863, 2.8568742800275118, 2.0706965909668247, 2.9891250437074692, 2.369000449543747, 1.3174806698673982, 0.6270374839594675, 0.0), # 77 (8.233214814814815, 6.8687338112305865, 6.578075617283951, 7.0949125, 5.97366739288308, 2.895305624142661, 2.84642846768337, 2.343884773662552, 3.092338683127571, 1.3556530428467686, 1.0617542796384905, 0.6045982239549493, 0.0, 8.059733796296298, 6.650580463504441, 5.308771398192452, 4.066959128540305, 6.184677366255142, 3.2814386831275724, 2.84642846768337, 2.0680754458161865, 2.98683369644154, 2.364970833333334, 1.3156151234567903, 0.624430346475508, 0.0), # 78 (8.220695747599452, 6.8397153546617115, 6.5685709304984, 7.082433796296296, 5.968697382931225, 2.891344114210232, 2.8358764202526006, 2.333296905959458, 3.0876786313062032, 1.351349249845343, 1.058902892472483, 0.6032886995724337, 0.0, 8.052152349108367, 6.63617569529677, 5.294514462362415, 4.0540477495360285, 6.1753572626124065, 3.266615668343241, 2.8358764202526006, 2.0652457958644517, 2.9843486914656125, 2.3608112654320994, 1.3137141860996802, 0.6217923049692465, 0.0), # 79 (8.207258305003878, 6.810372140360193, 6.558892032464563, 7.069577797906602, 5.963352968073375, 2.8871043540110755, 2.8252223797612324, 2.3227785398567296, 3.0829084743179394, 1.3470319266252455, 1.055937050820092, 0.6019545319631957, 0.0, 8.04400505829904, 6.621499851595152, 5.2796852541004595, 4.041095779875736, 6.165816948635879, 3.2518899557994216, 2.8252223797612324, 2.0622173957221968, 2.9816764840366874, 2.3565259326355346, 1.3117784064929128, 0.619124740032745, 0.0), # 80 (8.192939130434784, 6.78071935483871, 6.5490416666666675, 7.056357065217393, 5.957647058823529, 2.8826000000000005, 2.8144705882352943, 2.3123333333333336, 3.078033333333333, 1.3427011764705885, 1.0528625199362043, 0.6005964912280702, 0.0, 8.0353125, 6.606561403508772, 5.264312599681022, 4.028103529411765, 6.156066666666666, 3.237266666666667, 2.8144705882352943, 2.059, 2.9788235294117644, 2.3521190217391315, 1.3098083333333335, 0.6164290322580647, 0.0), # 81 (8.177774867298861, 6.750772184609939, 6.539022576588936, 7.042784158615137, 5.951592565695688, 2.877844708631815, 2.8036252877008145, 2.301964944368237, 3.0730583295229383, 1.3383571026654835, 1.0496850650757086, 0.5992153474678925, 0.0, 8.026095250342937, 6.5913688221468165, 5.248425325378542, 4.0150713079964495, 6.146116659045877, 3.2227509221155315, 2.8036252877008145, 2.0556033633084394, 2.975796282847844, 2.3475947195383795, 1.3078045153177873, 0.6137065622372673, 0.0), # 82 (8.161802159002804, 6.720545816186557, 6.528837505715592, 7.028871638486312, 5.945202399203851, 2.8728521363613275, 2.7926907201838214, 2.2916770309404058, 3.067988584057308, 1.3339998084940425, 1.0464104514934927, 0.5978118707834975, 0.0, 8.016373885459535, 6.575930578618472, 5.232052257467463, 4.001999425482127, 6.135977168114616, 3.208347843316568, 2.7926907201838214, 2.052037240258091, 2.9726011996019257, 2.3429572128287712, 1.3057675011431187, 0.6109587105624144, 0.0), # 83 (8.145057648953301, 6.690055436081242, 6.518489197530864, 7.014632065217392, 5.938489469862018, 2.867635939643347, 2.7816711277103434, 2.2814732510288067, 3.0628292181069954, 1.329629397240378, 1.0430444444444447, 0.5963868312757202, 0.0, 8.006168981481482, 6.560255144032922, 5.215222222222223, 3.9888881917211334, 6.125658436213991, 3.194062551440329, 2.7816711277103434, 2.0483113854595336, 2.969244734931009, 2.338210688405798, 1.303697839506173, 0.6081868578255676, 0.0), # 84 (8.127577980557048, 6.659316230806673, 6.507980395518976, 7.000077999194847, 5.931466688184191, 2.862209774932684, 2.77057075230641, 2.2713572626124074, 3.057585352842554, 1.3252459721886014, 1.0395928091834528, 0.5949409990453959, 0.0, 7.995501114540467, 6.544350989499354, 5.197964045917263, 3.9757379165658033, 6.115170705685108, 3.17990016765737, 2.77057075230641, 2.0444355535233454, 2.9657333440920954, 2.3333593330649496, 1.3015960791037953, 0.6053923846187885, 0.0), # 85 (8.10939979722073, 6.6283433868755255, 6.497313843164153, 6.985222000805154, 5.924146964684365, 2.8565872986841443, 2.7593938359980483, 2.2613327236701726, 3.0522621094345377, 1.320849636622825, 1.0360613109654049, 0.5934751441933597, 0.0, 7.984390860768176, 6.528226586126955, 5.180306554827023, 3.9625489098684747, 6.104524218869075, 3.1658658131382413, 2.7593938359980483, 2.040419499060103, 2.9620734823421824, 2.3284073336017186, 1.2994627686328306, 0.6025766715341389, 0.0), # 86 (8.090559742351045, 6.597152090800478, 6.486492283950617, 6.970076630434782, 5.9165432098765445, 2.8507821673525378, 2.7481446208112876, 2.2514032921810703, 3.0468646090534985, 1.3164404938271608, 1.0324557150451887, 0.5919900368204463, 0.0, 7.972858796296297, 6.511890405024908, 5.162278575225944, 3.9493214814814817, 6.093729218106997, 3.1519646090534983, 2.7481446208112876, 2.036272976680384, 2.9582716049382722, 2.3233588768115947, 1.2972984567901236, 0.5997410991636799, 0.0), # 87 (8.071094459354686, 6.565757529094207, 6.475518461362597, 6.95465444847021, 5.908668334274726, 2.8448080373926743, 2.7368273487721564, 2.2415726261240665, 3.0413979728699894, 1.3120186470857205, 1.0287817866776934, 0.5904864470274911, 0.0, 7.960925497256517, 6.495350917302401, 5.143908933388466, 3.9360559412571607, 6.082795945739979, 3.138201676573693, 2.7368273487721564, 2.032005740994767, 2.954334167137363, 2.3182181494900704, 1.2951036922725196, 0.5968870480994735, 0.0), # 88 (8.051040591638339, 6.534174888269392, 6.464395118884317, 6.938968015297907, 5.90053524839291, 2.8386785652593614, 2.7254462619066833, 2.2318443834781285, 3.035867322054565, 1.3075841996826167, 1.025045291117806, 0.5889651449153291, 0.0, 7.948611539780521, 6.478616594068619, 5.125226455589029, 3.9227525990478496, 6.07173464410913, 3.12458213686938, 2.7254462619066833, 2.0276275466138296, 2.950267624196455, 2.312989338432636, 1.2928790237768635, 0.5940158989335812, 0.0), # 89 (8.030434782608696, 6.502419354838709, 6.453125000000001, 6.923029891304349, 5.892156862745098, 2.8324074074074077, 2.7140056022408965, 2.2222222222222223, 3.030277777777778, 1.303137254901961, 1.021251993620415, 0.5874269005847954, 0.0, 7.9359375000000005, 6.461695906432748, 5.106259968102074, 3.9094117647058826, 6.060555555555556, 3.111111111111111, 2.7140056022408965, 2.0231481481481484, 2.946078431372549, 2.3076766304347833, 1.2906250000000001, 0.5911290322580646, 0.0), # 90 (8.00931367567245, 6.470506115314836, 6.441710848193873, 6.906852636876007, 5.883546087845287, 2.826008220291622, 2.7025096118008247, 2.2127098003353147, 3.024634461210182, 1.2986779160278654, 1.0174076594404082, 0.585872484136725, 0.0, 7.922923954046638, 6.444597325503974, 5.0870382972020405, 3.8960337480835956, 6.049268922420364, 3.097793720469441, 2.7025096118008247, 2.0185773002083014, 2.9417730439226437, 2.302284212292003, 1.2883421696387747, 0.5882278286649852, 0.0), # 91 (7.9877139142362985, 6.438450356210453, 6.43015540695016, 6.890448812399356, 5.874715834207482, 2.8194946603668143, 2.690962532612497, 2.203310775796373, 3.018942493522329, 1.2942062863444421, 1.013518053832674, 0.5843026656719533, 0.0, 7.909591478052126, 6.427329322391485, 5.067590269163369, 3.8826188590333257, 6.037884987044658, 3.0846350861149223, 2.690962532612497, 2.0139247574048675, 2.937357917103741, 2.296816270799786, 1.2860310813900322, 0.5853136687464049, 0.0), # 92 (7.965672141706924, 6.406267264038233, 6.418461419753087, 6.873830978260871, 5.865679012345678, 2.8128803840877916, 2.6793686067019404, 2.1940288065843623, 3.013206995884774, 1.2897224691358027, 1.0095889420521, 0.5827182152913147, 0.0, 7.895960648148147, 6.409900368204461, 5.0479447102605, 3.8691674074074074, 6.026413991769548, 3.0716403292181074, 2.6793686067019404, 2.0092002743484225, 2.932839506172839, 2.291276992753624, 1.2836922839506175, 0.5823879330943849, 0.0), # 93 (7.943225001491024, 6.373972025310855, 6.406631630086878, 6.857011694847022, 5.856448532773877, 2.806179047909364, 2.6677320760951844, 2.1848675506782507, 3.007433089468069, 1.2852265676860597, 1.005626089353575, 0.581119903095645, 0.0, 7.882052040466393, 6.392318934052094, 5.028130446767873, 3.855679703058178, 6.014866178936138, 3.058814570949551, 2.6677320760951844, 2.0044136056495456, 2.9282242663869384, 2.2856705649490077, 1.2813263260173757, 0.5794520023009869, 0.0), # 94 (7.920409136995288, 6.341579826540998, 6.394668781435757, 6.840003522544284, 5.847037306006079, 2.799404308286339, 2.6560571828182575, 2.1758306660570037, 3.001625895442768, 1.2807186852793244, 1.0016352609919863, 0.5795084991857787, 0.0, 7.867886231138546, 6.374593491043566, 5.008176304959932, 3.8421560558379726, 6.003251790885536, 3.046162932479805, 2.6560571828182575, 1.9995745059188135, 2.9235186530030397, 2.2800011741814283, 1.2789337562871517, 0.5765072569582727, 0.0), # 95 (7.89726119162641, 6.30910585424134, 6.382575617283951, 6.8228190217391305, 5.8374582425562815, 2.7925698216735255, 2.6443481688971886, 2.1669218106995887, 2.995790534979424, 1.27619892519971, 0.9976222222222224, 0.5778847736625516, 0.0, 7.853483796296297, 6.356732510288067, 4.988111111111112, 3.828596775599129, 5.991581069958848, 3.0336905349794243, 2.6443481688971886, 1.9946927297668038, 2.9187291212781408, 2.2742730072463773, 1.2765151234567904, 0.5735550776583037, 0.0), # 96 (7.873817808791078, 6.276565294924556, 6.370354881115684, 6.805470752818035, 5.827724252938488, 2.7856892445257326, 2.6326092763580053, 2.1581446425849724, 2.9899321292485905, 1.2716673907313272, 0.9935927382991712, 0.576249496626798, 0.0, 7.838865312071332, 6.338744462894778, 4.967963691495855, 3.8150021721939806, 5.979864258497181, 3.0214024996189615, 2.6326092763580053, 1.9897780318040947, 2.913862126469244, 2.2684902509393456, 1.2740709762231368, 0.5705968449931414, 0.0), # 97 (7.850115631895988, 6.243973335103323, 6.35800931641518, 6.787971276167473, 5.817848247666694, 2.7787762332977706, 2.6208447472267373, 2.1495028196921204, 2.9840557994208194, 1.2671241851582886, 0.9895525744777209, 0.5746034381793533, 0.0, 7.824051354595337, 6.320637819972885, 4.947762872388605, 3.801372555474865, 5.968111598841639, 3.0093039475689687, 2.6208447472267373, 1.9848401666412645, 2.908924123833347, 2.2626570920558247, 1.2716018632830361, 0.5676339395548476, 0.0), # 98 (7.826191304347827, 6.211345161290323, 6.3455416666666675, 6.770333152173913, 5.807843137254903, 2.7718444444444446, 2.6090588235294123, 2.1410000000000005, 2.9781666666666666, 1.2625694117647062, 0.9855074960127594, 0.5729473684210528, 0.0, 7.8090625000000005, 6.302421052631579, 4.927537480063797, 3.787708235294118, 5.956333333333333, 2.9974000000000007, 2.6090588235294123, 1.9798888888888888, 2.9039215686274513, 2.256777717391305, 1.2691083333333337, 0.564667741935484, 0.0), # 99 (7.80208146955329, 6.178695959998229, 6.332954675354367, 6.752568941223833, 5.797721832217111, 2.764907534420566, 2.597255747292058, 2.1326398414875785, 2.9722698521566837, 1.258003173834692, 0.9814632681591747, 0.5712820574527312, 0.0, 7.79391932441701, 6.284102631980042, 4.907316340795873, 3.774009521504075, 5.944539704313367, 2.98569577808261, 2.597255747292058, 1.9749339531575472, 2.8988609161085557, 2.250856313741278, 1.2665909350708735, 0.5616996327271119, 0.0), # 100 (7.777822770919068, 6.1460409177397235, 6.320251085962506, 6.734691203703704, 5.787497243067323, 2.757979159680943, 2.585439760540705, 2.124426002133821, 2.9663704770614236, 1.253425574652358, 0.9774256561718551, 0.5696082753752236, 0.0, 7.7786424039780515, 6.265691029127459, 4.887128280859275, 3.760276723957073, 5.932740954122847, 2.9741964029873493, 2.585439760540705, 1.9699851140578162, 2.8937486215336614, 2.244897067901235, 1.2640502171925014, 0.5587309925217931, 0.0), # 101 (7.753451851851853, 6.11339522102748, 6.307433641975309, 6.716712500000001, 5.7771822803195345, 2.7510729766803848, 2.5736151053013803, 2.1163621399176957, 2.9604736625514403, 1.248836717501816, 0.9734004253056887, 0.5679267922893655, 0.0, 7.763252314814816, 6.24719471518302, 4.867002126528443, 3.746510152505447, 5.920947325102881, 2.962906995884774, 2.5736151053013803, 1.965052126200275, 2.8885911401597673, 2.2389041666666674, 1.261486728395062, 0.5557632019115891, 0.0), # 102 (7.729005355758336, 6.080774056374176, 6.294505086877001, 6.698645390499196, 5.766789854487748, 2.7442026418736987, 2.561786023600112, 2.1084519128181682, 2.9545845297972866, 1.2442367056671781, 0.9693933408155633, 0.5662383782959916, 0.0, 7.747769633058984, 6.228622161255906, 4.846966704077817, 3.7327101170015338, 5.909169059594573, 2.951832677945436, 2.561786023600112, 1.960144744195499, 2.883394927243874, 2.2328817968330656, 1.2589010173754003, 0.5527976414885616, 0.0), # 103 (7.704519926045208, 6.048192610292491, 6.281468164151806, 6.680502435587762, 5.756332876085962, 2.7373818117156943, 2.5499567574629305, 2.1006989788142056, 2.948708199969517, 1.2396256424325565, 0.9654101679563669, 0.564543803495937, 0.0, 7.732214934842251, 6.209981838455306, 4.827050839781834, 3.7188769272976687, 5.897416399939034, 2.9409785703398876, 2.5499567574629305, 1.9552727226540672, 2.878166438042981, 2.2268341451959213, 1.2562936328303613, 0.549835691844772, 0.0), # 104 (7.680032206119162, 6.015666069295101, 6.268325617283951, 6.662296195652173, 5.745824255628177, 2.7306241426611804, 2.5381315489158633, 2.0931069958847743, 2.942849794238683, 1.235003631082063, 0.961456671982988, 0.562843837990037, 0.0, 7.716608796296296, 6.1912822178904054, 4.80728335991494, 3.705010893246188, 5.885699588477366, 2.930349794238684, 2.5381315489158633, 1.9504458161865572, 2.8729121278140886, 2.220765398550725, 1.2536651234567902, 0.546878733572282, 0.0), # 105 (7.655578839386891, 5.983209619894685, 6.255080189757659, 6.644039231078905, 5.735276903628392, 2.723943291164965, 2.526314639984938, 2.0856796220088403, 2.9370144337753388, 1.2303707748998092, 0.9575386181503142, 0.5611392518791264, 0.0, 7.700971793552812, 6.172531770670389, 4.787693090751571, 3.691112324699427, 5.8740288675506775, 2.9199514708123764, 2.526314639984938, 1.9456737794035461, 2.867638451814196, 2.214679743692969, 1.2510160379515318, 0.5439281472631533, 0.0), # 106 (7.631196469255085, 5.950838448603921, 6.241734625057157, 6.625744102254428, 5.724703730600607, 2.7173529136818577, 2.5145102726961848, 2.0784205151653716, 2.931207239750038, 1.225727177169908, 0.9536617717132337, 0.5594308152640404, 0.0, 7.685324502743484, 6.153738967904443, 4.768308858566169, 3.6771815315097234, 5.862414479500076, 2.9097887212315205, 2.5145102726961848, 1.9409663669156128, 2.8623518653003037, 2.208581367418143, 1.2483469250114314, 0.5409853135094475, 0.0), # 107 (7.606921739130435, 5.918567741935485, 6.228291666666668, 6.607423369565218, 5.714117647058822, 2.7108666666666674, 2.5027226890756302, 2.0713333333333335, 2.9254333333333333, 1.221072941176471, 0.9498318979266349, 0.5577192982456142, 0.0, 7.669687500000001, 6.134912280701755, 4.749159489633174, 3.6632188235294123, 5.850866666666667, 2.899866666666667, 2.5027226890756302, 1.9363333333333337, 2.857058823529411, 2.20247445652174, 1.2456583333333338, 0.538051612903226, 0.0), # 108 (7.582791292419635, 5.886412686402053, 6.214754058070417, 6.589089593397745, 5.70353156351704, 2.7044982065742014, 2.490956131149305, 2.064421734491694, 2.9196978356957777, 1.2164081702036098, 0.9460547620454054, 0.5560054709246826, 0.0, 7.654081361454047, 6.116060180171507, 4.730273810227027, 3.6492245106108285, 5.839395671391555, 2.8901904282883715, 2.490956131149305, 1.9317844332672867, 2.85176578175852, 2.196363197799249, 1.2429508116140835, 0.5351284260365504, 0.0), # 109 (7.558841772529373, 5.854388468516307, 6.201124542752631, 6.570755334138486, 5.692958390489256, 2.6982611898592697, 2.4792148409432357, 2.0576893766194178, 2.9140058680079255, 1.211732967535437, 0.9423361293244336, 0.554290103402081, 0.0, 7.638526663237312, 6.0971911374228895, 4.711680646622168, 3.63519890260631, 5.828011736015851, 2.880765127267185, 2.4792148409432357, 1.9273294213280499, 2.846479195244628, 2.1902517780461626, 1.2402249085505264, 0.5322171335014826, 0.0), # 110 (7.535109822866345, 5.82251027479092, 6.187405864197532, 6.552433152173913, 5.68241103848947, 2.6921692729766806, 2.4675030604834527, 2.0511399176954734, 2.9083625514403293, 1.2070474364560642, 0.9386817650186072, 0.5525739657786443, 0.0, 7.623043981481482, 6.078313623565086, 4.693408825093036, 3.621142309368192, 5.816725102880659, 2.871595884773663, 2.4675030604834527, 1.9229780521262005, 2.841205519244735, 2.1841443840579715, 1.2374811728395065, 0.5293191158900837, 0.0), # 111 (7.51163208683724, 5.790793291738572, 6.173600765889348, 6.5341356078905, 5.671902418031685, 2.686236112381243, 2.4558250317959835, 2.0447770156988265, 2.9027730071635416, 1.2023516802496035, 0.9350974343828147, 0.5508578281552075, 0.0, 7.607653892318244, 6.059436109707281, 4.675487171914074, 3.6070550407488096, 5.805546014327083, 2.862687821978357, 2.4558250317959835, 1.9187400802723165, 2.8359512090158425, 2.178045202630167, 1.2347201531778695, 0.5264357537944157, 0.0), # 112 (7.488403378962436, 5.759305653776365, 6.159745218834713, 6.515900329495224, 5.661427029425976, 2.6804725589667733, 2.444210385462708, 2.038617522926869, 2.8972567496689656, 1.1976609473225461, 0.9315898541537156, 0.549146195766962, 0.0, 7.592355120674577, 6.0406081534365805, 4.657949270768578, 3.592982841967638, 5.794513499337931, 2.8540645320976163, 2.444210385462708, 1.914623256404838, 2.830713514712988, 2.1719667764984085, 1.2319490437669427, 0.5235732412523969, 0.0), # 113 (7.465184718320052, 5.728357934585393, 6.146030450014413, 6.497873652766401, 5.6508764557687075, 2.674865483980621, 2.432807283364232, 2.0327370865017067, 2.891898409523483, 1.1930630335825567, 0.9281659116150931, 0.5474608114741984, 0.0, 7.577020331328028, 6.022068926216181, 4.640829558075465, 3.5791891007476693, 5.783796819046966, 2.8458319211023895, 2.432807283364232, 1.9106182028433005, 2.8254382278843537, 2.1659578842554676, 1.2292060900028827, 0.5207598122350358, 0.0), # 114 (7.441907922403196, 5.697961279034234, 6.132464621804878, 6.480050703109068, 5.640217428207254, 2.669400305832757, 2.421623860076625, 2.027134218092903, 2.886699994311677, 1.1885650655976157, 0.9248206015236127, 0.5458025055039235, 0.0, 7.561605305328301, 6.003827560543158, 4.6241030076180625, 3.5656951967928463, 5.773399988623354, 2.8379879053300643, 2.421623860076625, 1.9067145041662548, 2.820108714103627, 2.1600169010363564, 1.226492924360976, 0.5179964799122032, 0.0), # 115 (7.418543898590108, 5.668071406280581, 6.119021459989249, 6.462399690159842, 5.629433880738015, 2.664064142733979, 2.4106419270111576, 2.021793437632998, 2.8816483571274216, 1.1841586716899097, 0.9215474575028644, 0.5441682131658231, 0.0, 7.546085807804713, 5.985850344824053, 4.607737287514321, 3.5524760150697285, 5.763296714254843, 2.8305108126861973, 2.4106419270111576, 1.9029029590956992, 2.8147169403690073, 2.154133230053281, 1.22380429199785, 0.5152792187527803, 0.0), # 116 (7.395063554259018, 5.638644035482129, 6.105674690350658, 6.444888823555345, 5.6185097473573915, 2.6588441128950824, 2.399843295579101, 2.0166992650545286, 2.8767303510645874, 1.179835480181626, 0.9183400131764379, 0.5425548697695834, 0.0, 7.53043760388658, 5.968103567465417, 4.591700065882189, 3.5395064405448773, 5.753460702129175, 2.8233789710763397, 2.399843295579101, 1.8991743663536302, 2.8092548736786958, 2.148296274518449, 1.2211349380701317, 0.5126040032256481, 0.0), # 117 (7.371437796788169, 5.60963488579657, 6.092398038672245, 6.427486312932199, 5.607428962061783, 2.6537273345268653, 2.3892097771917262, 2.0118362202900326, 2.871932829217049, 1.175587119394952, 0.9151918021679234, 0.5409594106248901, 0.0, 7.51463645870322, 5.950553516873789, 4.575959010839616, 3.5267613581848556, 5.743865658434098, 2.8165707084060454, 2.3892097771917262, 1.8955195246620464, 2.8037144810308914, 2.142495437644067, 1.218479607734449, 0.5099668077996883, 0.0), # 118 (7.347637533555794, 5.580999676381602, 6.079165230737149, 6.410160367927023, 5.5961754588475845, 2.648700925840122, 2.3787231832603024, 2.0071888232720485, 2.867242644678678, 1.1714052176520746, 0.9120963581009105, 0.5393787710414291, 0.0, 7.498658137383946, 5.933166481455719, 4.560481790504553, 3.5142156529562234, 5.734485289357356, 2.810064352580868, 2.3787231832603024, 1.8919292327429442, 2.7980877294237922, 2.1367201226423416, 1.21583304614743, 0.507363606943782, 0.0), # 119 (7.323633671940129, 5.552694126394916, 6.065949992328509, 6.392879198176436, 5.584733171711198, 2.6437520050456507, 2.3683653251961014, 2.0027415939331146, 2.8626466505433488, 1.1672814032751813, 0.909047214598989, 0.5378098863288866, 0.0, 7.482478405058078, 5.915908749617751, 4.545236072994944, 3.501844209825543, 5.7252933010866975, 2.80383823150636, 2.3683653251961014, 1.8883942893183219, 2.792366585855599, 2.1309597327254792, 1.2131899984657017, 0.5047903751268107, 0.0), # 120 (7.299397119319415, 5.524673954994208, 6.052726049229459, 6.3756110133170605, 5.573086034649023, 2.638867690354248, 2.358118014410392, 1.9984790522057692, 2.858131699904933, 1.1632073045864595, 0.906037905285749, 0.5362496917969483, 0.0, 7.466073026854929, 5.898746609766429, 4.530189526428744, 3.489621913759378, 5.716263399809866, 2.797870673088077, 2.358118014410392, 1.884905493110177, 2.7865430173245116, 2.1252036711056874, 1.2105452098458918, 0.5022430868176554, 0.0), # 121 (7.274898783071883, 5.496894881337171, 6.039467127223141, 6.358324022985514, 5.561217981657458, 2.634035099976709, 2.347963062314447, 1.9943857180225497, 2.8536846458573035, 1.1591745499080957, 0.9030619637847803, 0.5346951227553002, 0.0, 7.4494177679038165, 5.8816463503083005, 4.515309818923901, 3.4775236497242865, 5.707369291714607, 2.7921400052315697, 2.347963062314447, 1.8814536428405064, 2.780608990828729, 2.119441340995172, 1.2078934254446283, 0.49971771648519747, 0.0), # 122 (7.250109570575775, 5.469312624581501, 6.026146952092692, 6.340986436818417, 5.549112946732902, 2.629241352123832, 2.3378822803195356, 1.9904461113159944, 2.8492923414943343, 1.1551747675622777, 0.9001129237196728, 0.5331431145136282, 0.0, 7.432488393334058, 5.864574259649909, 4.500564618598363, 3.4655243026868323, 5.698584682988669, 2.7866245558423923, 2.3378822803195356, 1.8780295372313083, 2.774556473366451, 2.1136621456061393, 1.2052293904185383, 0.49721023859831837, 0.0), # 123 (7.225000389209324, 5.441882903884891, 6.012739249621247, 6.323566464452393, 5.536754863871753, 2.624473565006412, 2.327857479836928, 1.9866447520186423, 2.844941639909897, 1.1511995858711925, 0.897184318714016, 0.5315906023816185, 0.0, 7.4152606682749695, 5.847496626197802, 4.4859215935700805, 3.4535987576135767, 5.689883279819794, 2.781302652826099, 2.327857479836928, 1.87462397500458, 2.7683774319358765, 2.107855488150798, 1.2025478499242495, 0.49471662762589924, 0.0), # 124 (7.199542146350767, 5.414561438405035, 5.99921774559195, 6.306032315524057, 5.524127667070411, 2.619718856835246, 2.3178704722778956, 1.9829661600630304, 2.840619394197865, 1.147240633157027, 0.8942696823914004, 0.5300345216689567, 0.0, 7.397710357855863, 5.8303797383585225, 4.471348411957002, 3.4417218994710805, 5.68123878839573, 2.7761526240882426, 2.3178704722778956, 1.8712277548823186, 2.7620638335352057, 2.1020107718413525, 1.19984354911839, 0.49223285803682143, 0.0), # 125 (7.1737057493783425, 5.387303947299629, 5.985556165787933, 6.288352199670033, 5.511215290325276, 2.614964345821132, 2.307903069053708, 1.9793948553816976, 2.8363124574521112, 1.1432895377419687, 0.8913625483754153, 0.5284718076853291, 0.0, 7.379813227206063, 5.813189884538619, 4.4568127418770755, 3.4298686132259055, 5.6726249149042225, 2.7711527975343766, 2.307903069053708, 1.8678316755865225, 2.755607645162638, 2.0961173998900113, 1.1971112331575866, 0.4897549042999664, 0.0), # 126 (7.147462105670289, 5.360066149726364, 5.9717282359923365, 6.27049432652694, 5.498001667632746, 2.610197150174864, 2.2979370815756375, 1.975915357907182, 2.832007682766508, 1.139337927948205, 0.8884564502896507, 0.5268993957404212, 0.0, 7.361545041454879, 5.795893353144632, 4.442282251448253, 3.4180137838446143, 5.664015365533016, 2.766281501070055, 2.2979370815756375, 1.8644265358391885, 2.749000833816373, 2.0901647755089803, 1.1943456471984675, 0.487278740884215, 0.0), # 127 (7.120782122604837, 5.332803764842939, 5.957707681988301, 6.252426905731399, 5.484470732989221, 2.6054043881072406, 2.287954321254953, 1.9725121875720208, 2.827691923234929, 1.1353774320979229, 0.8855449217576967, 0.5253142211439193, 0.0, 7.34288156573163, 5.778456432583111, 4.427724608788483, 3.4061322962937677, 5.655383846469858, 2.7615170626008294, 2.287954321254953, 1.8610031343623146, 2.7422353664946106, 2.084142301910467, 1.1915415363976603, 0.4848003422584491, 0.0), # 128 (7.093636707560226, 5.305472511807044, 5.9434682295589605, 6.2341181469200295, 5.4706064203911, 2.600573177829058, 2.2779365995029255, 1.9691698643087534, 2.823352031951247, 1.1313996785133094, 0.882621496403143, 0.5237132192055092, 0.0, 7.323798565165631, 5.7608454112606, 4.413107482015715, 3.3941990355399274, 5.646704063902494, 2.756837810032255, 2.2779365995029255, 1.8575522698778983, 2.73530321019555, 2.078039382306677, 1.188693645911792, 0.48231568289154947, 0.0), # 129 (7.065996767914694, 5.2780281097763755, 5.9289836044874535, 6.215536259729452, 5.45639266383478, 2.595690637551111, 2.267865727730825, 1.9658729080499169, 2.818974862009333, 1.1273962955165517, 0.8796797078495794, 0.522093325234877, 0.0, 7.3042718048861985, 5.743026577583645, 4.398398539247896, 3.3821888865496543, 5.637949724018666, 2.7522220712698835, 2.267865727730825, 1.8540647411079363, 2.72819633191739, 2.0718454199098177, 1.1857967208974907, 0.4798207372523978, 0.0), # 130 (7.037833211046475, 5.250426277908626, 5.914227532556921, 6.196649453796286, 5.441813397316663, 2.590743885484198, 2.2577235173499237, 1.9626058387280498, 2.814547266503063, 1.1233589114298372, 0.8767130897205959, 0.5204514745417084, 0.0, 7.2842770500226495, 5.724966219958791, 4.383565448602979, 3.370076734289511, 5.629094533006126, 2.74764817421927, 2.2577235173499237, 1.850531346774427, 2.7209066986583315, 2.0655498179320957, 1.1828455065113843, 0.4773114798098752, 0.0), # 131 (7.009116944333808, 5.222622735361492, 5.8991737395504975, 6.1774259387571515, 5.4268525548331485, 2.5857200398391145, 2.24749177977149, 1.959353176275691, 2.8100560985263074, 1.119279154575353, 0.8737151756397821, 0.5187846024356896, 0.0, 7.263790065704301, 5.706630626792584, 4.36857587819891, 3.3578374637260584, 5.620112197052615, 2.7430944467859675, 2.24749177977149, 1.8469428855993675, 2.7134262774165743, 2.0591419795857178, 1.1798347479100997, 0.474783885032863, 0.0), # 132 (6.979818875154931, 5.194573201292665, 5.883795951251323, 6.1578339242486715, 5.411494070380632, 2.5806062188266576, 2.237152326406796, 1.9560994406253773, 2.80548821117294, 1.1151486532752868, 0.8706794992307283, 0.5170896442265063, 0.0, 7.242786617060469, 5.687986086491568, 4.353397496153641, 3.3454459598258595, 5.61097642234588, 2.7385392168755285, 2.237152326406796, 1.8432901563047555, 2.705747035190316, 2.052611308082891, 1.1767591902502648, 0.4722339273902424, 0.0), # 133 (6.949909910888076, 5.166233394859844, 5.868067893442536, 6.137841619907462, 5.395721877955516, 2.575389540657624, 2.2266869686671114, 1.9528291517096479, 2.8008304575368346, 1.1109590358518249, 0.8675995941170239, 0.5153635352238445, 0.0, 7.221242469220467, 5.668998887462289, 4.3379979705851195, 3.3328771075554737, 5.601660915073669, 2.7339608123935073, 2.2266869686671114, 1.8395639576125886, 2.697860938977758, 2.0459472066358213, 1.1736135786885074, 0.46965758135089497, 0.0), # 134 (6.919360958911483, 5.137559035220717, 5.851963291907273, 6.117417235370148, 5.379519911554198, 2.57005712354281, 2.2160775179637073, 1.9495268294610402, 2.796069690711861, 1.1067019306271555, 0.8644689939222592, 0.5136032107373902, 0.0, 7.199133387313616, 5.649635318111292, 4.322344969611295, 3.320105791881466, 5.592139381423722, 2.7293375612454565, 2.2160775179637073, 1.835755088244864, 2.689759955777099, 2.0391390784567163, 1.1703926583814546, 0.4670508213837017, 0.0), # 135 (6.888142926603388, 5.108505841532984, 5.835455872428673, 6.096528980273343, 5.362872105173076, 2.564596085693012, 2.205305785707854, 1.9461769938120925, 2.7911927637918947, 1.1023689659234648, 0.8612812322700237, 0.5118056060768296, 0.0, 7.176435136469229, 5.629861666845124, 4.306406161350118, 3.3071068977703937, 5.5823855275837895, 2.72464779133693, 2.205305785707854, 1.8318543469235802, 2.681436052586538, 2.0321763267577815, 1.1670911744857346, 0.46440962195754404, 0.0), # 136 (6.856226721342027, 5.079029532954335, 5.818519360789875, 6.075145064253675, 5.345762392808551, 2.558993545319026, 2.1943535833108223, 1.942764164695343, 2.7861865298708084, 1.0979517700629406, 0.8580298427839075, 0.5099676565518481, 0.0, 7.153123481816621, 5.609644222070328, 4.290149213919538, 3.293855310188821, 5.572373059741617, 2.7198698305734803, 2.1943535833108223, 1.8278525323707329, 2.6728811964042754, 2.0250483547512257, 1.1637038721579749, 0.46172995754130325, 0.0), # 137 (6.823583250505639, 5.0490858286424665, 5.801127482774012, 6.053233696947759, 5.3281747084570235, 2.5532366206316497, 2.1832027221838817, 1.9392728620433302, 2.781037842042475, 1.0934419713677697, 0.8547083590875004, 0.508086297472132, 0.0, 7.129174188485113, 5.58894927219345, 4.273541795437502, 3.280325914103308, 5.56207568408495, 2.7149820068606623, 2.1832027221838817, 1.8237404433083213, 2.6640873542285117, 2.017744565649253, 1.1602254965548024, 0.45900780260386065, 0.0), # 138 (6.790183421472455, 5.018630447755072, 5.783253964164227, 6.030763087992216, 5.3100929861148884, 2.547312429841679, 2.171835013738304, 1.9356876057885917, 2.775733553400766, 1.0888311981601397, 0.8513103148043922, 0.5061584641473672, 0.0, 7.104563021604015, 5.567743105621037, 4.256551574021961, 3.2664935944804183, 5.551467106801532, 2.709962648104028, 2.171835013738304, 1.8195088784583422, 2.6550464930574442, 2.0102543626640723, 1.1566507928328456, 0.4562391316140975, 0.0), # 139 (6.755998141620719, 4.987619109449845, 5.764872530743658, 6.007701447023667, 5.291501159778549, 2.5412080911599104, 2.1602322693853586, 1.9319929158636655, 2.770260517039555, 1.0841110787622374, 0.8478292435581727, 0.5041810918872395, 0.0, 7.079265746302652, 5.545992010759633, 4.2391462177908625, 3.2523332362867117, 5.54052103407911, 2.704790082209132, 2.1602322693853586, 1.8151486365427931, 2.6457505798892744, 2.0025671490078896, 1.1529745061487318, 0.45341991904089507, 0.0), # 140 (6.720998318328665, 4.956007532884482, 5.745956908295441, 5.984016983678732, 5.272383163444402, 2.5349107227971404, 2.148376300536318, 1.9281733122010902, 2.7646055860527143, 1.0792732414962505, 0.844258678972432, 0.502151116001435, 0.0, 7.053258127710331, 5.523662276015784, 4.221293394862159, 3.2378197244887508, 5.529211172105429, 2.6994426370815265, 2.148376300536318, 1.8106505162836717, 2.636191581722201, 1.994672327892911, 1.1491913816590882, 0.4505461393531348, 0.0), # 141 (6.685154858974525, 4.923751437216675, 5.726480822602714, 5.959677907594033, 5.252722931108846, 2.5284074429641663, 2.1362489186024507, 1.924213314733404, 2.7587556135341176, 1.0743093146843659, 0.8405921546707598, 0.5000654717996397, 0.0, 7.026515930956373, 5.500720189796036, 4.202960773353798, 3.222927944053097, 5.517511227068235, 2.6938986406267658, 2.1362489186024507, 1.806005316402976, 2.626361465554423, 1.9865593025313446, 1.1452961645205428, 0.4476137670196978, 0.0), # 142 (6.64843867093654, 4.890806541604119, 5.706417999448617, 5.934652428406185, 5.232504396768282, 2.521685369871783, 2.1238319349950276, 1.920097443393144, 2.7526974525776393, 1.0692109266487708, 0.8368232042767458, 0.4979210945915394, 0.0, 6.999014921170094, 5.477132040506932, 4.184116021383729, 3.207632779946312, 5.505394905155279, 2.6881364207504017, 2.1238319349950276, 1.8012038356227023, 2.616252198384141, 1.9782174761353954, 1.1412835998897235, 0.44461877650946546, 0.0), # 143 (6.610820661592948, 4.857128565204509, 5.685742164616285, 5.908908755751814, 5.2117114944191085, 2.5147316217307885, 2.1111071611253194, 1.9158102181128498, 2.746417956277149, 1.0639697057116522, 0.8329453614139802, 0.49571491968682, 0.0, 6.970730863480812, 5.452864116555019, 4.164726807069901, 3.191909117134956, 5.492835912554298, 2.6821343053579896, 2.1111071611253194, 1.796236872664849, 2.6058557472095543, 1.9696362519172719, 1.1371484329232573, 0.44155714229131915, 0.0), # 144 (6.572271738321982, 4.82267322717554, 5.6644270438888595, 5.882415099267537, 5.190328158057724, 2.507533316751979, 2.0980564084045974, 1.9113361588250588, 2.739903977726521, 1.0585772801951978, 0.8289521597060527, 0.4934438823951677, 0.0, 6.94163952301784, 5.4278827063468436, 4.144760798530264, 3.175731840585593, 5.479807955453042, 2.6758706223550823, 2.0980564084045974, 1.7910952262514135, 2.595164079028862, 1.9608050330891795, 1.132885408777772, 0.4384248388341401, 0.0), # 145 (6.5327628085018805, 4.787396246674904, 5.642446363049478, 5.855139668589976, 5.16833832168053, 2.5000775731461515, 2.084661488244132, 1.906659785462309, 2.7331423700196282, 1.0530252784215943, 0.8248371327765532, 0.4911049180262681, 0.0, 6.911716664910495, 5.402154098288948, 4.124185663882766, 3.1590758352647823, 5.4662847400392565, 2.669323699647233, 2.084661488244132, 1.7857696951043938, 2.584169160840265, 1.9517132228633256, 1.1284892726098958, 0.4352178406068095, 0.0), # 146 (6.49226477951088, 4.751253342860296, 5.619773847881273, 5.827050673355748, 5.145725919283921, 2.4923515091241004, 2.0709042120551926, 1.9017656179571385, 2.7261199862503442, 1.0473053287130294, 0.8205938142490716, 0.48869496188980743, 0.0, 6.8809380542880945, 5.375644580787881, 4.102969071245358, 3.1419159861390877, 5.4522399725006885, 2.662471865139994, 2.0709042120551926, 1.7802510779457859, 2.5728629596419603, 1.9423502244519164, 1.1239547695762548, 0.43193212207820875, 0.0), # 147 (6.450748558727217, 4.714200234889411, 5.596383224167389, 5.798116323201478, 5.1224748848643, 2.4843422428966253, 2.0567663912490506, 1.8966381762420859, 2.718823679512541, 1.0414090593916896, 0.8162157377471978, 0.48621094929547143, 0.0, 6.8492794562799535, 5.348320442250185, 4.081078688735989, 3.124227178175068, 5.437647359025082, 2.6552934467389204, 2.0567663912490506, 1.7745301734975893, 2.56123744243215, 1.9327054410671598, 1.1192766448334779, 0.42856365771721927, 0.0), # 148 (6.40818505352913, 4.676192641919942, 5.572248217690963, 5.768304827763782, 5.098569152418064, 2.4760368926745198, 2.0422298372369765, 1.8912619802496888, 2.71124030290009, 1.0353280987797628, 0.8116964368945213, 0.48364981555294617, 0.0, 6.81671663601539, 5.320147971082407, 4.058482184472607, 3.1059842963392876, 5.42248060580018, 2.6477667723495646, 2.0422298372369765, 1.7685977804817998, 2.549284576209032, 1.922768275921261, 1.1144496435381928, 0.42510842199272214, 0.0), # 149 (6.364545171294852, 4.6371862831095845, 5.54734255423513, 5.737584396679283, 5.0739926559416135, 2.467422576668583, 2.0272763614302405, 1.8856215499124855, 2.7033567095068674, 1.0290540751994355, 0.8070294453146325, 0.48100849597191764, 0.0, 6.783225358623717, 5.291093455691093, 4.035147226573162, 3.0871622255983056, 5.406713419013735, 2.63987016987748, 2.0272763614302405, 1.7624446976204164, 2.5369963279708068, 1.912528132226428, 1.1094685108470261, 0.4215623893735987, 0.0), # 150 (6.31979981940262, 4.597136877616033, 5.521639959583029, 5.705923239584598, 5.048729329431348, 2.4584864130896094, 2.011887775240113, 1.8797014051630145, 2.695159752426744, 1.0225786169728959, 0.8022082966311207, 0.4782839258620715, 0.0, 6.748781389234255, 5.261123184482786, 4.011041483155603, 3.067735850918687, 5.390319504853488, 2.6315819672282204, 2.011887775240113, 1.7560617236354352, 2.524364664715674, 1.9019744131948664, 1.1043279919166058, 0.41792153432873036, 0.0), # 151 (6.273919905230675, 4.55600014459698, 5.495114159517802, 5.673289566116352, 5.022763106883663, 2.4492155201483965, 1.996045890077866, 1.8734860659338137, 2.686636284753592, 1.0158933524223301, 0.7972265244675764, 0.475473040533094, 0.0, 6.713360492976318, 5.230203445864033, 3.9861326223378812, 3.04768005726699, 5.373272569507184, 2.622880492307339, 1.996045890077866, 1.7494396572488546, 2.5113815534418316, 1.8910965220387843, 1.0990228319035604, 0.4141818313269982, 0.0), # 152 (6.226876336157249, 4.5137318032101215, 5.467738879822579, 5.63965158591116, 4.996077922294963, 2.4395970160557408, 1.9797325173547677, 1.8669600521574208, 2.677773159581286, 1.008989909869926, 0.7920776624475889, 0.472572775294671, 0.0, 6.676938434979222, 5.19830052824138, 3.9603883122379444, 3.0269697296097773, 5.355546319162572, 2.6137440730203894, 1.9797325173547677, 1.742569297182672, 2.4980389611474814, 1.879883861970387, 1.093547775964516, 0.41033925483728384, 0.0), # 153 (6.178640019560583, 4.4702875726131515, 5.439487846280506, 5.604977508605646, 4.968657709661643, 2.429618019022439, 1.9629294684820913, 1.8601078837663743, 2.6685572300036977, 1.0018599176378709, 0.7867552441947484, 0.4695800654564884, 0.0, 6.639490980372286, 5.165380720021371, 3.9337762209737415, 3.005579752913612, 5.337114460007395, 2.604151037272924, 1.9629294684820913, 1.7354414421588849, 2.4843288548308213, 1.8683258362018824, 1.0878975692561013, 0.40638977932846837, 0.0), # 154 (6.129181862818909, 4.425623171963762, 5.410334784674718, 5.569235543836427, 4.940486402980104, 2.419265647259287, 1.9456185548711045, 1.852914080693212, 2.6589753491147006, 0.9944950040483511, 0.7812528033326445, 0.4664918463282322, 0.0, 6.600993894284821, 5.131410309610554, 3.906264016663222, 2.983485012145053, 5.317950698229401, 2.594079712970497, 1.9456185548711045, 1.7280468908994906, 2.470243201490052, 1.856411847945476, 1.0820669569349437, 0.402329379269433, 0.0), # 155 (6.078472773310465, 4.3796943204196515, 5.3802534207883514, 5.532393901240125, 4.911547936246746, 2.408527018977082, 1.92778158793308, 1.845363162870473, 2.649014370008167, 0.9868867974235548, 0.7755638734848673, 0.46330505321958826, 0.0, 6.561422941846148, 5.09635558541547, 3.8778193674243364, 2.960660392270664, 5.298028740016334, 2.5835084280186624, 1.92778158793308, 1.720376442126487, 2.455773968123373, 1.8441313004133755, 1.0760506841576702, 0.39815402912905923, 0.0), # 156 (6.02648365841349, 4.332456737138511, 5.349217480404546, 5.494420790453363, 4.881826243457965, 2.39738925238662, 1.9094003790792877, 1.8374396502306942, 2.63866114577797, 0.9790269260856685, 0.7696819882750067, 0.4600166214402426, 0.0, 6.520753888185581, 5.060182835842667, 3.848409941375033, 2.937080778257005, 5.27732229155594, 2.5724155103229718, 1.9094003790792877, 1.7124208945618713, 2.4409131217289826, 1.831473596817788, 1.0698434960809091, 0.3938597033762283, 0.0), # 157 (5.971744757124192, 4.28299895523299, 5.315727969268237, 5.453861748990747, 4.849963256464532, 2.3851447556146512, 1.890042688371143, 1.8285989841164574, 2.6271098910930926, 0.9706731832582289, 0.7634127670051923, 0.45650663761295607, 0.0, 6.477188687532276, 5.021573013742516, 3.817063835025962, 2.912019549774686, 5.254219782186185, 2.5600385777630406, 1.890042688371143, 1.7036748254390366, 2.424981628232266, 1.8179539163302492, 1.0631455938536476, 0.38936354138481727, 0.0), # 158 (5.9058294135827225, 4.226247901039617, 5.271158545601992, 5.402386295273073, 4.808102031883535, 2.3677218357366487, 1.8672851053542865, 1.8157378442547942, 2.609713936325905, 0.9604561988197493, 0.7556555914158659, 0.4520908349122073, 0.0, 6.420342117536156, 4.97299918403428, 3.7782779570793297, 2.8813685964592475, 5.21942787265181, 2.542032981956712, 1.8672851053542865, 1.6912298826690346, 2.4040510159417674, 1.8007954317576913, 1.0542317091203985, 0.3842043546399652, 0.0), # 159 (5.827897675923448, 4.161737600929857, 5.214613971970593, 5.339146506245316, 4.755424070051625, 2.344692604822253, 1.8408974993535137, 1.7985330631757823, 2.5859800605943066, 0.948241130372579, 0.7463012678146054, 0.4467001299258565, 0.0, 6.349136487114865, 4.913701429184421, 3.731506339073027, 2.844723391117736, 5.171960121188613, 2.5179462884460952, 1.8408974993535137, 1.6747804320158948, 2.3777120350258123, 1.7797155020817725, 1.0429227943941186, 0.3783397819027143, 0.0), # 160 (5.738577643668768, 4.0898886365923435, 5.146697981273539, 5.264743502254037, 4.69247633295046, 2.3163360460661466, 1.8110725784027506, 1.7772001777032602, 2.556221271199738, 0.9341316386341878, 0.7354322206132944, 0.44038449792717144, 0.0, 6.264299235855278, 4.844229477198885, 3.6771611030664717, 2.8023949159025627, 5.112442542399476, 2.4880802487845646, 1.8110725784027506, 1.6545257471901047, 2.34623816647523, 1.754914500751346, 1.029339596254708, 0.37180805787203125, 0.0), # 161 (5.638497416341085, 4.011121589715708, 5.068014306410331, 5.179778403645797, 4.619805782561709, 2.282931142663013, 1.7780030505359237, 1.7519547246610676, 2.5207505754436363, 0.9182313843220465, 0.7231308742238162, 0.43319391418941966, 0.0, 6.166557803344267, 4.765133056083616, 3.615654371119081, 2.754694152966139, 5.041501150887273, 2.4527366145254947, 1.7780030505359237, 1.630665101902152, 2.3099028912808546, 1.7265928012152658, 1.0136028612820662, 0.36464741724688265, 0.0), # 162 (5.528285093462799, 3.9258570419885843, 4.979166680280469, 5.084852330767161, 4.537959380867034, 2.244756877807534, 1.7418816237869603, 1.7230122408730417, 2.4798809806274416, 0.9006440281536252, 0.7094796530580545, 0.42517835398586895, 0.0, 6.0566396291687035, 4.676961893844558, 3.5473982652902722, 2.701932084460875, 4.959761961254883, 2.4122171372222585, 1.7418816237869603, 1.6033977698625244, 2.268979690433517, 1.6949507769223873, 0.9958333360560938, 0.356896094726235, 0.0), # 163 (5.408568774556308, 3.834515575099602, 4.8807588357834515, 4.980566403964691, 4.447484089848101, 2.2020922346943936, 1.7029010061897865, 1.6905882631630231, 2.433925494052593, 0.881473230846394, 0.6945609815278929, 0.4163877925897869, 0.0, 5.935272152915463, 4.580265718487656, 3.472804907639464, 2.644419692539181, 4.867850988105186, 2.3668235684282326, 1.7029010061897865, 1.5729230247817099, 2.2237420449240504, 1.660188801321564, 0.9761517671566904, 0.34859232500905474, 0.0), # 164 (5.279976559144014, 3.7375177707373965, 4.773394505818779, 4.867521743584952, 4.348926871486572, 2.155216196518274, 1.6612539057783289, 1.6548983283548488, 2.383197123020528, 0.8608226531178229, 0.678457284045215, 0.4068722052744414, 0.0, 5.803182814171416, 4.475594258018854, 3.3922864202260747, 2.582467959353468, 4.766394246041056, 2.3168576596967885, 1.6612539057783289, 1.5394401403701956, 2.174463435743286, 1.622507247861651, 0.954678901163756, 0.33977434279430885, 0.0), # 165 (5.143136546748318, 3.6352842105905996, 4.657677423285953, 4.746319469974501, 4.242834687764114, 2.1044077464738575, 1.6171330305865146, 1.6161579732723592, 2.328008874832686, 0.8387959556853827, 0.661250985021904, 0.39668156731310017, 0.0, 5.661099052523436, 4.363497240444101, 3.3062549251095197, 2.5163878670561473, 4.656017749665372, 2.262621162581303, 1.6171330305865146, 1.5031483903384697, 2.121417343882057, 1.5821064899915007, 0.9315354846571906, 0.33048038278096364, 0.0), # 166 (4.998676836891619, 3.528235476347844, 4.53421132108447, 4.617560703479906, 4.129754500662389, 2.0499458677558273, 1.57073108864827, 1.5745827347393924, 2.2686737567905064, 0.8154967992665431, 0.6430245088698437, 0.3858658539790306, 0.0, 5.509748307558397, 4.244524393769336, 3.215122544349218, 2.4464903977996286, 4.537347513581013, 2.2044158286351494, 1.57073108864827, 1.4642470483970196, 2.0648772503311945, 1.5391869011599693, 0.9068422642168941, 0.32074867966798587, 0.0), # 167 (4.847225529096317, 3.416792149697761, 4.403599932113832, 4.481846564447728, 4.010233272163062, 1.9921095435588663, 1.5222407879975217, 1.5303881495797866, 2.205504776195428, 0.7910288445787746, 0.6238602800009175, 0.3744750405455008, 0.0, 5.34985801886317, 4.119225446000509, 3.1193014000045878, 2.3730865337363234, 4.411009552390856, 2.1425434094117013, 1.5222407879975217, 1.4229353882563331, 2.005116636081531, 1.4939488548159094, 0.8807199864227666, 0.31061746815434194, 0.0), # 168 (4.689410722884812, 3.3013748123289846, 4.26644698927354, 4.33977817322453, 3.884817964247797, 1.9311777570776578, 1.4718548366681967, 1.4837897546173817, 2.1388149403488903, 0.7654957523395476, 0.6038407228270092, 0.3625591022857782, 0.0, 5.182155626024628, 3.9881501251435596, 3.019203614135046, 2.296487257018642, 4.277629880697781, 2.0773056564643344, 1.4718548366681967, 1.3794126836268983, 1.9424089821238986, 1.4465927244081769, 0.853289397854708, 0.30012498293899864, 0.0), # 169 (4.525860517779507, 3.1824040459301473, 4.12335622546309, 4.191956650156872, 3.7540555388982577, 1.8674294915068832, 1.4197659426942213, 1.435003086676016, 2.0689172565523304, 0.7390011832663317, 0.5830482617600022, 0.3501680144731306, 0.0, 5.007368568629644, 3.8518481592044362, 2.9152413088000113, 2.217003549798995, 4.137834513104661, 2.0090043213464224, 1.4197659426942213, 1.3338782082192022, 1.8770277694491289, 1.3973188833856243, 0.824671245092618, 0.28930945872092256, 0.0), # 170 (4.3572030133028, 3.06030043218988, 3.9749313735819856, 4.038983115591321, 3.61849295809611, 1.801143730041226, 1.3661668141095222, 1.3842436825795277, 1.9961247321071884, 0.7116487980765979, 0.5615653212117798, 0.33735175238082576, 0.0, 4.826224286265092, 3.710869276189083, 2.807826606058899, 2.134946394229793, 3.992249464214377, 1.9379411556113388, 1.3661668141095222, 1.2865312357437328, 1.809246479048055, 1.3463277051971074, 0.7949862747163972, 0.27820913019908006, 0.0), # 171 (4.184066308977092, 2.9354845527968174, 3.8217761665297245, 3.881458689874438, 3.4786771838230153, 1.7325994558753692, 1.3112501589480263, 1.331727079151757, 1.9207503743149028, 0.6835422574878162, 0.5394743255942259, 0.3241602912821315, 0.0, 4.639450218517843, 3.5657632041034453, 2.6973716279711297, 2.050626772463448, 3.8415007486298056, 1.8644179108124599, 1.3112501589480263, 1.237571039910978, 1.7393385919115076, 1.2938195632914795, 0.764355233305945, 0.26686223207243803, 0.0), # 172 (4.007078504324784, 2.808376989439591, 3.664494337205808, 3.7199844933527855, 3.3351551780606408, 1.6620756522039952, 1.25520868524366, 1.2776688132165412, 1.8431071904769127, 0.6547852222174565, 0.5168576993192239, 0.310643606450315, 0.0, 4.44777380497477, 3.417079670953465, 2.584288496596119, 1.9643556666523692, 3.6862143809538255, 1.7887363385031578, 1.25520868524366, 1.187196894431425, 1.6675775890303204, 1.2399948311175955, 0.7328988674411617, 0.25530699903996285, 0.0), # 173 (3.8268676988682753, 2.6793983238068333, 3.503689618509735, 3.5551616463729245, 3.1884739027906486, 1.5898513022217866, 1.1982351010303502, 1.2222844215977202, 1.763508187894657, 0.6254813529829895, 0.4937978667986571, 0.2968516731586446, 0.0, 4.251922485222747, 3.26536840474509, 2.468989333993285, 1.8764440589489682, 3.527016375789314, 1.7111981902368083, 1.1982351010303502, 1.1356080730155618, 1.5942369513953243, 1.1850538821243084, 0.700737923701947, 0.24358166580062124, 0.0), # 174 (3.6440619921299646, 2.548969137587176, 3.3399657433410055, 3.3875912692814207, 3.039180319994703, 1.5162053891234268, 1.1405221143420232, 1.165789441119132, 1.682266373869575, 0.595734310501885, 0.4703772524444093, 0.28283446668038764, 0.0, 4.052623698848646, 3.1111791334842636, 2.3518862622220467, 1.7872029315056546, 3.36453274773915, 1.632105217566785, 1.1405221143420232, 1.0830038493738763, 1.5195901599973516, 1.1291970897604737, 0.6679931486682011, 0.23172446705337968, 0.0), # 175 (3.459289483632255, 2.4175100124692537, 3.173926444599119, 3.2178744824248353, 2.8878213916544695, 1.441416896103598, 1.082262433212606, 1.1083994086046165, 1.5996947557031045, 0.5656477554916135, 0.44667828066836407, 0.268641962288812, 0.0, 3.8506048854393393, 2.9550615851769315, 2.23339140334182, 1.69694326647484, 3.199389511406209, 1.551759172046463, 1.082262433212606, 1.0295834972168558, 1.4439106958272347, 1.0726248274749453, 0.6347852889198239, 0.2197736374972049, 0.0), # 176 (3.273178272897546, 2.2854415301416977, 3.006175455183576, 3.0466124061497295, 2.7349440797516125, 1.365764806356983, 1.0236487656760251, 1.050329860878011, 1.5161063406966853, 0.535325348669645, 0.4227833758824049, 0.2543241352571853, 0.0, 3.6465934845817, 2.7975654878290377, 2.113916879412024, 1.6059760460089345, 3.0322126813933705, 1.4704618052292153, 1.0236487656760251, 0.9755462902549877, 1.3674720398758062, 1.0155374687165768, 0.6012350910367152, 0.20776741183106345, 0.0), # 177 (3.0863564594482376, 2.153184272293141, 2.8373165079938762, 2.87440616080267, 2.581095346267794, 1.2895281030782653, 0.964873819766207, 0.9917963347631552, 1.431814136151756, 0.5048707507534501, 0.39877496249841504, 0.2399309608587752, 0.0, 3.4413169358626017, 2.6392405694465264, 1.993874812492075, 1.51461225226035, 2.863628272303512, 1.3885148686684172, 0.964873819766207, 0.9210915021987609, 1.290547673133897, 0.9581353869342235, 0.5674633015987752, 0.1957440247539219, 0.0), # 178 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 179 ) passenger_allighting_rate = ( (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 0 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 1 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 2 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 3 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 4 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 5 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 6 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 7 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 8 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 9 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 10 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 11 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 12 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 13 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 14 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 15 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 16 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 17 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 18 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 19 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 20 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 21 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 22 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 23 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 24 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 25 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 26 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 27 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 28 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 29 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 30 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 31 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 32 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 33 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 34 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 35 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 36 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 37 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 38 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 39 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 40 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 41 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 42 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 43 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 44 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 45 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 46 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 47 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 48 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 49 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 50 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 51 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 52 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 53 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 54 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 55 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 56 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 57 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 58 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 59 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 60 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 61 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 62 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 63 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 64 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 65 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 66 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 67 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 68 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 69 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 70 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 71 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 72 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 73 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 74 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 75 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 76 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 77 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 78 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 79 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 80 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 81 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 82 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 83 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 84 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 85 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 86 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 87 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 88 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 89 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 90 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 91 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 92 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 93 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 94 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 95 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 96 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 97 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 98 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 99 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 100 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 101 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 102 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 103 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 104 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 105 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 106 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 107 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 108 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 109 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 110 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 111 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 112 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 113 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 114 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 115 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 116 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 117 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 118 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 119 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 120 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 121 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 122 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 123 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 124 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 125 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 126 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 127 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 128 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 129 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 130 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 131 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 132 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 133 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 134 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 135 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 136 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 137 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 138 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 139 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 140 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 141 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 142 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 143 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 144 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 145 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 146 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 147 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 148 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 149 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 150 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 151 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 152 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 153 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 154 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 155 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 156 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 157 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 158 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 159 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 160 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 161 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 162 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 163 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 164 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 165 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 166 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 167 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 168 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 169 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 170 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 171 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 172 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 173 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 174 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 175 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 176 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 177 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 178 (0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1, 0, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 0.07692307692307693, 1), # 179 ) """ parameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html """ #initial entropy entropy = 8991598675325360468762009371570610170 #index for seed sequence child child_seed_index = ( 1, # 0 89, # 1 )
class FastaParser(object): def __init__(self, in_file): self.in_file = in_file try: (".fasta" in in_file) == True except ValueError: raise Exception("%s is not a .fasta file." % (in_file)) try: os.path.exists(in_file) == True except IOError: raise Exception("%s can not be found." % (in_file))
class Shape: def __init__(self): self.__matrix = [[1]] self.color = '' self.xy = [0, 0] def set_matrix(self, new_matrix): self.__matrix = new_matrix[:] def is_colored_block(self, x, y): return self.__matrix[y][x] == 1 def is_shape(self, x, y): x -= self.xy[0] y -= self.xy[1] if x < 0 or y < 0 or x >= self.width or y >= self.height: return False return self.__matrix[y][x] == 1 @property def width(self): return len(self.__matrix[0]) @property def height(self): return len(self.__matrix) def go_left(self): self.xy[0] -= 1 def go_right(self): self.xy[0] += 1 def go_down(self): self.xy[1] += 1 def go_up(self): self.xy[1] -= 1 # Rotate Matrix to Left # [x0:y0] [x1:y0] [x2:y0] # [x0:y1] [x1:y1] [x2:y1] # [x0:y2] [x1:y2] [x2:y2] # [x0:y3] [x1:y3] [x2:y3] # [x0:y0]=[x2:y0] [x1:y0]=[x2:y1] [x2:y0]=[x2:y2] [x3:y0]=[x2:y3] # [x0:y1]=[x1:y0] [x1:y1]=[x1:y1] [x2:y1]=[x1:y2] [x3:y1]=[x1:y3] # [x0:y2]=[x0:y0] [x1:y2]=[x0:y1] [x2:y2]=[x0:y2] [x3:y2]=[x0:y3] def rotate_left(self): new_matrix = self.__get_empty_rotated_matrix() for y in range(self.height): for x in range(self.width): nx = y ny = (self.width - 1) - x new_matrix[ny][nx] = self.__matrix[y][x] self.set_matrix(new_matrix) # Rotate Matrix to Right # [x0:y0] [x1:y0] [x2:y0] # [x0:y1] [x1:y1] [x2:y1] # [x0:y2] [x1:y2] [x2:y2] # [x0:y3] [x1:y3] [x2:y3] # [x0,y0]=[x0:y3] [x1,y0]=[x0:y2] [x2,y0]=[x0:y1] [x3,y0]=[x0:y0] # [x0,y1]=[x1:y3] [x1,y1]=[x1:y2] [x2,y1]=[x1:y1] [x3,y1]=[x1:y0] # [x0,y2]=[x2:y3] [x1,y2]=[x2:y2] [x2,y2]=[x2:y1] [x3,y2]=[x2:y0] def rotate_right(self): new_matrix = self.__get_empty_rotated_matrix() for y in range(self.height): for x in range(self.width): nx = (self.height - 1) - y ny = x new_matrix[ny][nx] = self.__matrix[y][x] self.set_matrix(new_matrix) def get_block(self, x, y): try: return self.__matrix[y][x] except IndexError: return None def __get_empty_rotated_matrix(self): matrix = [] for y in range(self.width): matrix.append([]) for x in range(self.height): matrix[y].append(0) return matrix
"""LeetCode, 937 1. The first word in log is the identifier. 2. The letter logs come before all digit logs. 3. The letter-logs are sorted lexicographically by their contents. If their contents are the same, then sort them lexicographically by their identifiers. 4. The digit-logs maintain their relative ordering.""" def reorder_log_file(logs: list) -> list: """Reorder a list of logs""" digits = [] letters = [] # Classifiy digits and letters. for log in logs: if log.split()[1].isdigit(): digits.append(log) else: letters.append(log) # Sort the letters letters.sort(key=lambda x: (x.split()[1], x.split()[0])) return letters + digits if __name__ == "__main__": input1 = [ "dig1 8 1 5 1", "let1 art can", "dig2 3 6", "let2 own kit dog", "let3 art zero" ] reorder_log_file(input1)
# -*- coding: utf-8 -*- """ This exercise is from the book "Think Python: How to Think Like a Computer Scientist" by Allen B. Downey """ def right_justify(string): """ Takes a string as a parameter and prints the string with enough leading spaces so that the last letter of the string is in column 70 of the display. Example: >>> right_justify('monty') monty """ width = 70 spaces_count = width-len(string) spaces = " " * spaces_count print(spaces + string) right_justify("monty")
# fizzbuzz in python for i in range(1, 101): printed = False if i % 3 == 0: printed = True print('Fizz', end='') if i % 5 == 0: printed = True print('Buzz', end='') if not printed: print(i, end='') print()
# noinspection PyUnusedLocal def fizz_buzz(number): if (number % 3 == 0 or '3' in str(number)) and (number % 5 == 0 or '5' in str(number)): delux = deluxe(number) if delux: return "fizz buzz " + delux return "fizz buzz" if number % 3 == 0 or '3' in str(number): delux = deluxe(number) if delux: return "fizz " + delux return "fizz" if number % 5 == 0 or '5' in str(number): delux = deluxe(number) if delux: return "buzz " + delux return "buzz" delux = deluxe(number) if delux: return delux return str(number) def deluxe(number): if (number % 3 == 0 and '3' in str(number)) or (number % 5 == 0 and '5' in str(number)): if number % 2 == 0: return "deluxe" return "fake deluxe"
# @file Validate Binary Search Tree # @brief Given a binary tree, check if it is a valid binary search tree (BST). # https://leetcode.com/problems/validate-binary-search-tree ''' Assume a BST is defined as follows: Left subtree of a node contains only nodes with keys lesser than node's key. Right subtree of a node contains only nodes with keys greater than node's key. Both the left and right subtrees must also be binary search trees. ''' def isValidBST(self, root, min_val=float('-inf'), max_val=float('inf')): if not root: return True if root.val <= min_val or root.val >= max_val: return False return (self.isValidBST(root.left, min_val, root.val) and self.isValidBST(root.right, root.val, max_val))
class BatchTaskCreateOutDTO(object): def __init__(self): self.taskID = None def getTaskID(self): return self.taskID def setTaskID(self, taskID): self.taskID = taskID
#Escreva um programa que leia dois números inteiros e compare-os # indicando qual o maior número, menor ou se são iguais num1 = int(input('Digite um número: ')) num2 = int(input('Digite outro número: ')) if num1 > num2: print(f'O número {num1} é maior que o número {num2}') elif num2 > num1: print(f'O número: {num2} é maior que o número {num1}') else: print('os dois valores são IGUAIS')
def resolve_path2d(seq1, seq2, path): ''' Given path dictionary, resolve the aligned sequence pair (which means it supports only DP2d) #! NOTE: path[(i, j)] = ('prev_step', (prev_x, prev_y)) @param: seq1 & seq2: sequences used to generate the path dictionary in method DP2d() #! seq1: x #! seq2: y path: The dictionary saving the path taken each step in dp @output: seq1_out & seq2_out: Aligned Sequences ''' m, n = len(seq1), len(seq2) point = (m, n) moves = [] while point != (0, 0): prev_step, point = path[point] moves.insert(0, prev_step) # now generate the aligned sequence based on "moves" seq1_out, seq2_out = "", "" # ptr1 and ptr2 respectively points at the position waiting to be appended ptr1 = ptr2 = 0 for move in moves: if move == 'xy': seq1_out += seq1[ptr1] seq2_out += seq2[ptr2] ptr1 += 1 ptr2 += 1 elif move == 'x': seq1_out += seq1[ptr1] seq2_out += '-' ptr1 += 1 elif move == 'y': seq1_out += '-' seq2_out += seq2[ptr2] ptr2 += 1 return (seq1_out, seq2_out) def resolve_path3d(seq1, seq2, seq3, path): ''' Given path dictionary, resolve the aligned sequence pair (which means it supports only DP2d) #! NOTE: path[(x, y, z)] = ('prev_step', (prev_x, prev_y, prev_z)) @param: seq1 & seq2 & seq3: sequences used to generate the path dictionary in method DP3d() #! seq1: x seq2:y seq3:z path: The dictionary saving the path taken each step in dp @output: seq1_out & seq2_out & seq3_out: Aligned sequences ''' m, n, p = len(seq1), len(seq2), len(seq3) point = (m, n, p) moves = [] while point != (0, 0, 0): prev_step, point = path[point] moves.insert(0, prev_step) seq1_o, seq2_o, seq3_o = "", "", "" ptr1, ptr2, ptr3 = 0, 0, 0 for move in moves: if move == 'x': seq1_o += seq1[ptr1] ptr1 += 1 seq2_o += '-' seq3_o += '-' elif move == 'y': seq2_o += seq2[ptr2] ptr2 += 1 seq1_o += '-' seq3_o += '-' elif move == 'z': seq3_o += seq3[ptr3] ptr3 += 1 seq1_o += '-' seq2_o += '-' elif move == 'xy': seq1_o += seq1[ptr1] ptr1 += 1 seq2_o += seq2[ptr2] ptr2 += 1 seq3_o += '-' elif move == 'xz': seq1_o += seq1[ptr1] ptr1 += 1 seq3_o += seq3[ptr3] ptr3 += 1 seq2_o += '-' elif move == 'yz': seq2_o += seq2[ptr2] ptr2 += 1 seq3_o += seq3[ptr3] ptr3 += 1 seq1_o += '-' elif move == 'xyz': seq1_o += seq1[ptr1] ptr1 += 1 seq2_o += seq2[ptr2] ptr2 += 1 seq3_o += seq3[ptr3] ptr3 += 1 else: pass return seq1_o, seq2_o, seq3_o
# # PySNMP MIB module TRAPEZE-NETWORKS-SYSTEM-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TRAPEZE-NETWORKS-SYSTEM-MIB # Produced by pysmi-0.3.4 at Wed May 1 15:27:26 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) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") TimeTicks, Unsigned32, Counter64, iso, Integer32, ObjectIdentity, ModuleIdentity, Counter32, NotificationType, Gauge32, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "Unsigned32", "Counter64", "iso", "Integer32", "ObjectIdentity", "ModuleIdentity", "Counter32", "NotificationType", "Gauge32", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Bits") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") trpzMibs, = mibBuilder.importSymbols("TRAPEZE-NETWORKS-ROOT-MIB", "trpzMibs") trpzSystemMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 14525, 4, 8)) trpzSystemMib.setRevisions(('2007-08-14 00:12', '2007-05-04 00:10', '2007-03-14 00:07', '2006-11-09 00:04', '2006-06-06 00:03',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: trpzSystemMib.setRevisionsDescriptions(('v3.0.1: Added new objects to support Power Supply status. (for 6.2 release)', 'v2.1.0: Obsoleted two previously deprecated objects (for 6.2 release)', "v2.0.0: Added new objects to support CPU load and memory (RAM) usage details: for last few seconds (''instant''), minute, 5 minutes, hour, day, 3 days (for 6.0 release)", 'v1.0.3: Removed unused imports', 'v1.0.2: Initial version, for 5.0 release',)) if mibBuilder.loadTexts: trpzSystemMib.setLastUpdated('200708140012Z') if mibBuilder.loadTexts: trpzSystemMib.setOrganization('Trapeze Networks') if mibBuilder.loadTexts: trpzSystemMib.setContactInfo('Trapeze Networks Technical Support www.trapezenetworks.com US: 866.TRPZ.TAC International: 925.474.2400 support@trapezenetworks.com') if mibBuilder.loadTexts: trpzSystemMib.setDescription("System objects for Trapeze Networks wireless switches. Copyright 2007 Trapeze Networks, Inc. All rights reserved. This Trapeze Networks SNMP Management Information Base Specification (Specification) embodies Trapeze Networks' confidential and proprietary intellectual property. Trapeze Networks retains all title and ownership in the Specification, including any revisions. This Specification is supplied 'AS IS' and Trapeze Networks makes no warranty, either express or implied, as to the use, operation, condition, or performance of the Specification.") class TrpzSysCpuLoad(TextualConvention, Unsigned32): description = 'CPU load in percents' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 100) class TrpzSysMemoryAmount(TextualConvention, Unsigned32): description = 'Memory amount in KBytes (1024 octets)' status = 'current' class TrpzSysPowerSupplyStatus(TextualConvention, Integer32): description = 'The status of a Power Supply.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5)) namedValues = NamedValues(("other", 1), ("unknown", 2), ("ac-failed", 3), ("dc-failed", 4), ("ac-ok-dc-ok", 5)) trpzSysObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1)) trpzSysDataObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1)) trpzSysCpuMemoryUsedBytes = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryUsedBytes.setStatus('obsolete') if mibBuilder.loadTexts: trpzSysCpuMemoryUsedBytes.setDescription('CPU memory used in bytes. Obsoleted by trpzSysCpuMemoryInstantUsage.') trpzSysCpuMemoryTotalBytes = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryTotalBytes.setStatus('obsolete') if mibBuilder.loadTexts: trpzSysCpuMemoryTotalBytes.setDescription('CPU total physical memory in bytes. Obsoleted by trpzSysCpuMemorySize.') trpzSysFlashMemoryUsedBytes = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysFlashMemoryUsedBytes.setStatus('current') if mibBuilder.loadTexts: trpzSysFlashMemoryUsedBytes.setDescription('Flash memory used in bytes.') trpzSysFlashMemoryTotalBytes = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysFlashMemoryTotalBytes.setStatus('current') if mibBuilder.loadTexts: trpzSysFlashMemoryTotalBytes.setDescription('Flash memory available in bytes.') trpzSysCpuAverageLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 5), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuAverageLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuAverageLoad.setDescription('CPU load average since system startup.') trpzSysCpuMemorySize = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 6), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemorySize.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemorySize.setDescription('Maximum available CPU Memory (RAM) in KBytes. This is the memory available to the Wireless Switch software. May be less than physical RAM size.') trpzSysCpuLoadDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11)) trpzSysCpuMemoryUsageDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12)) trpzSysChassisComponents = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13)) trpzSysCpuInstantLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 1), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuInstantLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuInstantLoad.setDescription('CPU instant load (for last few seconds).') trpzSysCpuLastMinuteLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 2), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuLastMinuteLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLastMinuteLoad.setDescription('CPU load for last minute.') trpzSysCpuLast5MinutesLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 3), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuLast5MinutesLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLast5MinutesLoad.setDescription('CPU load for last 5 minutes.') trpzSysCpuLastHourLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 4), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuLastHourLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLastHourLoad.setDescription('CPU load for last hour.') trpzSysCpuLastDayLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 5), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuLastDayLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLastDayLoad.setDescription('CPU load for last day.') trpzSysCpuLast3DaysLoad = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 6), TrpzSysCpuLoad()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuLast3DaysLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLast3DaysLoad.setDescription('CPU load for last 3 days.') trpzSysCpuMemoryInstantUsage = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 1), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryInstantUsage.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemoryInstantUsage.setDescription('Instant memory usage (RAM) in KBytes (for last few seconds). Ranges between 0 and trpzSysCpuMemorySize.') trpzSysCpuMemoryLastMinuteUsage = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 2), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryLastMinuteUsage.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemoryLastMinuteUsage.setDescription('Memory usage (RAM) for last minute in KBytes. Ranges between 0 and trpzSysCpuMemorySize.') trpzSysCpuMemoryLast5MinutesUsage = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 3), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryLast5MinutesUsage.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemoryLast5MinutesUsage.setDescription('Memory usage (RAM) for last 5 minutes in KBytes. Ranges between 0 and trpzSysCpuMemorySize.') trpzSysCpuMemoryLastHourUsage = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 4), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryLastHourUsage.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemoryLastHourUsage.setDescription('Memory usage (RAM) for last hour in KBytes. Ranges between 0 and trpzSysCpuMemorySize.') trpzSysCpuMemoryLastDayUsage = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 5), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryLastDayUsage.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemoryLastDayUsage.setDescription('Memory usage (RAM) for last day in KBytes. Ranges between 0 and trpzSysCpuMemorySize.') trpzSysCpuMemoryLast3DaysUsage = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 6), TrpzSysMemoryAmount()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysCpuMemoryLast3DaysUsage.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuMemoryLast3DaysUsage.setDescription('Memory usage (RAM) for last 3 days in KBytes. Ranges between 0 and trpzSysCpuMemorySize.') trpzSysChasCompPowerSupplies = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1)) trpzSysNumPowerSuppliesSupported = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysNumPowerSuppliesSupported.setStatus('current') if mibBuilder.loadTexts: trpzSysNumPowerSuppliesSupported.setDescription('The number of power supplies supported by the Wireless Switch. This is the upper limit of the number of entries in the power supply table, trpzSysPowerSupplyTable.') trpzSysPowerSupplyTable = MibTable((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2), ) if mibBuilder.loadTexts: trpzSysPowerSupplyTable.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyTable.setDescription('Table of power supplies actually installed on the Wireless Switch.') trpzSysPowerSupplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1), ).setIndexNames((0, "TRAPEZE-NETWORKS-SYSTEM-MIB", "trpzSysPowerSupplyDeviceOID")) if mibBuilder.loadTexts: trpzSysPowerSupplyEntry.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyEntry.setDescription('An entry in the trpzSysPowerSupplyTable table.') trpzSysPowerSupplyDeviceOID = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1, 1), ObjectIdentifier()) if mibBuilder.loadTexts: trpzSysPowerSupplyDeviceOID.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyDeviceOID.setDescription('OID value used to identify this chassis component as indicated in Registration MIB.') trpzSysPowerSupplyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1, 2), TrpzSysPowerSupplyStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysPowerSupplyStatus.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyStatus.setDescription('Status of the power supply.') trpzSysPowerSupplyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: trpzSysPowerSupplyDescr.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyDescr.setDescription("A human interpretable description of this power supply, for example 'Left Power Supply'.") mibBuilder.exportSymbols("TRAPEZE-NETWORKS-SYSTEM-MIB", trpzSysCpuMemoryLastDayUsage=trpzSysCpuMemoryLastDayUsage, trpzSystemMib=trpzSystemMib, trpzSysPowerSupplyStatus=trpzSysPowerSupplyStatus, trpzSysCpuMemoryLast5MinutesUsage=trpzSysCpuMemoryLast5MinutesUsage, trpzSysCpuMemorySize=trpzSysCpuMemorySize, trpzSysCpuMemoryTotalBytes=trpzSysCpuMemoryTotalBytes, trpzSysPowerSupplyDescr=trpzSysPowerSupplyDescr, trpzSysPowerSupplyEntry=trpzSysPowerSupplyEntry, trpzSysCpuMemoryUsageDetail=trpzSysCpuMemoryUsageDetail, trpzSysNumPowerSuppliesSupported=trpzSysNumPowerSuppliesSupported, trpzSysCpuMemoryUsedBytes=trpzSysCpuMemoryUsedBytes, trpzSysCpuInstantLoad=trpzSysCpuInstantLoad, TrpzSysMemoryAmount=TrpzSysMemoryAmount, trpzSysPowerSupplyTable=trpzSysPowerSupplyTable, trpzSysPowerSupplyDeviceOID=trpzSysPowerSupplyDeviceOID, trpzSysCpuLastMinuteLoad=trpzSysCpuLastMinuteLoad, trpzSysCpuMemoryLast3DaysUsage=trpzSysCpuMemoryLast3DaysUsage, trpzSysCpuLoadDetail=trpzSysCpuLoadDetail, trpzSysCpuLastDayLoad=trpzSysCpuLastDayLoad, trpzSysObjects=trpzSysObjects, trpzSysFlashMemoryTotalBytes=trpzSysFlashMemoryTotalBytes, trpzSysCpuLast3DaysLoad=trpzSysCpuLast3DaysLoad, TrpzSysPowerSupplyStatus=TrpzSysPowerSupplyStatus, trpzSysChassisComponents=trpzSysChassisComponents, trpzSysCpuAverageLoad=trpzSysCpuAverageLoad, trpzSysDataObjects=trpzSysDataObjects, trpzSysChasCompPowerSupplies=trpzSysChasCompPowerSupplies, trpzSysCpuLast5MinutesLoad=trpzSysCpuLast5MinutesLoad, PYSNMP_MODULE_ID=trpzSystemMib, trpzSysCpuMemoryLastMinuteUsage=trpzSysCpuMemoryLastMinuteUsage, TrpzSysCpuLoad=TrpzSysCpuLoad, trpzSysFlashMemoryUsedBytes=trpzSysFlashMemoryUsedBytes, trpzSysCpuMemoryLastHourUsage=trpzSysCpuMemoryLastHourUsage, trpzSysCpuMemoryInstantUsage=trpzSysCpuMemoryInstantUsage, trpzSysCpuLastHourLoad=trpzSysCpuLastHourLoad)
""" Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transformation sequence from beginWord to endWord, such that: Only one letter can be changed at a time Each intermediate word must exist in the word list For example, Given: beginWord = "hit" endWord = "cog" wordList = ["hot","dot","dog","lot","log"] As one shortest transformation is "hit" -> "hot" -> "dot" -> "dog" -> "cog", return its length 5. . Note: Return 0 if there is no such transformation sequence. All words have the same length. All words contain only lowercase alphabetic characters. """ def ladderLength(beginWord, endWord, wordList): """ Bidirectional BFS!!! :type beginWord: str :type endWord: str :type wordList: Set[str] :rtype: int """ beginSet = set() endSet = set() beginSet.add(beginWord) endSet.add(endWord) result = 2 while len(beginSet) != 0 and len(endSet) != 0: if len(beginSet) > len(endSet): beginSet, endSet = endSet, beginSet nextBeginSet = set() for word in beginSet: for ladderWord in wordRange(word): if ladderWord in endSet: return result if ladderWord in wordList: nextBeginSet.add(ladderWord) wordList.remove(ladderWord) beginSet = nextBeginSet result += 1 print(beginSet) print(result) return 0 def wordRange(word): for ind in range(len(word)): tempC = word[ind] for c in [chr(x) for x in range(ord('a'), ord('z')+1)]: if c != tempC: yield word[:ind] + c + word[ind+1:] beginWord = "hit" endWord = "cog" wordList = ["hot","dot","dog","lot","log"] print(ladderLength(beginWord, endWord, wordList))
"""Errors for PyGLEIF.""" class PyGLEIFError(Exception): """Base Error""" pass class NoMatchError(PyGLEIFError): """An error happened sending or receiving a command.""" pass
#!/usr/bin/python3 # python实现队列 # Date: 2020-07-13 class Queue(): """列表实现队列""" def __init__(self): self.items = [] def isEmpty(self): return [] == self.items def size(self): return len(self.items) def isExist(self, item): return item in self.items def pickItem(self, index): return self.items[index] def enqueue(self, item): self.items.insert(0, item) def dequeue(self): return self.items.pop() if __name__ == "__main__": q = Queue() q.enqueue(1) q.enqueue(2) q.enqueue(3) q.enqueue(4) q.enqueue(5) print(q.isExist(0)) print(q.pickItem(3)) print(q.size())
# model model = dict(type='ResNet', depth=18, num_classes=10, maxpool=False) loss = dict(type='CrossEntropyLoss') # dataset root = '/path/to/your/dataset' mean = (0.4914, 0.4822, 0.4465) std = (0.2023, 0.1994, 0.2010) batch_size = 512 num_workers = 4 data = dict( train=dict( ds_dict=dict( type='CIFAR10', root=root, train=True, ), trans_dict=dict( type='cifar_linear', mean=mean, std=std ), ), test=dict( ds_dict=dict( type='CIFAR10', root=root, train=False, ), trans_dict=dict( type='cifar_test', mean=mean, std=std ), ), ) # training optimizer & scheduler epochs = 100 lr = 10.0 optimizer = dict(type='SGD', lr=lr, momentum=0.9, weight_decay=0) lr_cfg = dict( # passed to adjust_learning_rate() type='MultiStep', steps=epochs, lr=lr, decay_rate=0.1, decay_steps=[60, 80], ) # log, load & save log_interval = 20 work_dir = None resume = None load = None port = 10001
# Copyright (c) 2018-2019 Simons Observatory. # Full license can be found in the top level "LICENSE" file. """Test Suite for Simons Observatory TOD Simulation and Processing. This directory contains the unittest suite. """
#Felipe Lima #Linguagem: Python #Exercício 02 do site: https://wiki.python.org.br/EstruturaSequencial #Entra com um número numero = float(input("Digite um número: ")) #Imprime o número digitado print("O número digitado foi {}.".format(numero))
#!/usr/bin/env python # encoding: utf-8 """ binary_tree_level_order_traversal.py Created by Shengwei on 2014-07-29. """ # https://oj.leetcode.com/problems/binary-tree-level-order-traversal/ # tags: easy, tree, traversal, bfs """ Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level). For example: Given binary tree {3,9,20,#,#,15,7}, 3 / \ 9 20 / \ 15 7 return its level order traversal as: [ [3], [9,20], [15,7] ] """ # Definition for a binary tree node # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: # @param root, a tree node # @return a list of lists of integers def levelOrder(self, root): if root is None: return [] def generator(): queue = [root, None] level = [] while queue: node = queue.pop(0) if node is None: # yield the data before doing anything yield level level = [] if not queue: break queue.append(None) continue level.append(node.val) if node.left: queue.append(node.left) if node.right: queue.append(node.right) return list(generator())
class DNSError(Exception): """Raised when the resolv cannot be done""" pass class TimeExceeded(Exception): """Raised when the packet cannot reach the destination""" pass class UnknownError(Exception): """Raised when the error is unknown (not implemented yet)""" pass
# -*- coding: utf-8 -*- """ exceptions.py ~~~~~~~~~~~~~ <Add description of the module here>. :copyright: (c) 2015-2020 by Jochen Gerhaeusser. :license: BSD, see LICENSE for details """ class ByteOrderTypeError(TypeError): """ Raised if an inappropriate byte order type is assigned to a field class. """ def __init__(self, field, byte_order): message = ( f"{field.__class__.__name__}: Inappropriate byte order type " f"'{type(byte_order).__name__1}'.") super().__init__(message) class ByteOrderValueError(ValueError): """ Raised if an inappropriate byte order value is assigned to a field class. """ def __init__(self, field, index, byte_order): message = (f"{field.__class__.__name__}: " f"Invalid field byte order value '{byte_order}' " f"at index ({index.byte}, {index.bit}).") super().__init__(message) class EnumTypeError(TypeError): """ Raised if an inappropriate enum type is assigned to a field class. """ def __init__(self, field, enumeration): message = "{0}: Inappropriate enum type '{1}'.".format( field.__class__.__name__, type(enumeration).__name__) super().__init__(message) class FactoryTypeError(TypeError): """ Raised if an inappropriate member type is produced by a factory class. """ def __init__(self, field, factory, item, member=None, index=None): message = (f"{field.__class__.__name__}: Inappropriate member type " f"'{type(item).__name__}'") if member is not None: message += f" assigned to member [{member}]" if index is not None: message += f" at index ({index.byte}, {index.bit})" message += f" by factory {factory.__name__}." super().__init__(message) class MemberTypeError(TypeError): """ Raised if an inappropriate member type is assigned to any container class. """ def __init__(self, field, item, member=None, index=None): message = f"{field.__class__.__name__}: Inappropriate member type " if callable(item): message += f"'{item.__name__}'" else: message += f"'{type(item).__name__}'" if member is not None: message += f" assigned to member [{member}]" if index is not None: message += f" at index ({index.byte}, {index.bit})" super().__init__(message + ".") class ProviderTypeError(TypeError): """ Raised if an inappropriate data provider type is assigned to a pointer class. """ def __init__(self, field, provider): message = ( f"{field.__class__.__name__}: Inappropriate data provider type " f"'{type(provider).__name__}'.") super().__init__(message) class ContainerLengthError(ValueError): """ Raised if a container class has an inappropriate field length. """ def __init__(self, field, length): message = ( f"{field.__class__.__name__}: Inappropriate field length " f"({length[0]}, {length[1]}).") super().__init__(message) class FieldAddressError(ValueError): """ Raised if an inappropriate address is assigned to a field class. """ def __init__(self, field, index, address): message = ( f"{field.__class__.__name__}: Inappropriate field address value " f"'{address}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldAlignmentError(ValueError): """ Raised if an inappropriate alignment value is assigned to a field class. """ def __init__(self, field, index, alignment): message = ( f"{field.__class__.__name__}: Invalid field alignment value " f"'({alignment.byte_size,}, {alignment.bit_offset})' " f"at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldByteOrderError(ValueError): """ Raised if an inappropriate byte order value is assigned to a field class. """ def __init__(self, field, index, byte_order): message = ( f"{field.__class__.__name__}: Inappropriate field byte order value " f"'{byte_order.name}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldIndexError(ValueError): """ Raised if an inappropriate index value is assigned to a field class. """ def __init__(self, field, index): message = ( f"{field.__class__.__name__}: Inappropriate field index " f"({index.byte}, {index.bit}).") super().__init__(message) class FieldSizeError(ValueError): """ Raised if an inappropriate bit size value is assigned to a field class. """ def __init__(self, field, index, size): message = ( f"{field.__class__.__name__}: Inappropriate field size value " f"'{size}' at index ({index.byte}, {index.bit})") super().__init__(message) class FieldTypeError(TypeError): """ Raised if an inappropriate argument type is assigned to a field class. """ def __init__(self, field, index, value): message = ( f"{field.__class__.__name__}: Inappropriate argument type " f"'{type(value).__name__}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldValueError(ValueError): """ Raised if an inappropriate argument value is assigned to a field class. """ def __init__(self, field, index, value): message = ( f"{field.__class__.__name__,}: Inappropriate argument value " f"'{value}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldValueEncodingError(ValueError): """ Raised if an inappropriate value encoding is assigned to a field class. """ def __init__(self, field, index, encoding): message = ( f"{field.__class__.__name__}: Inappropriate value encoding " f"'{encoding}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldGroupByteOrderError(Exception): """ Raised if the byte order of a field contradicts its aligned field group. """ def __init__(self, field, index, byte_order): message = ( f"{field.__class__.__name__}: Field byte order " f"'{field.byte_order.name}' contradicts the field group byte order " f"'{byte_order.name}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldGroupOffsetError(Exception): """ Raised if the alignment offset of a field does not match with its field group. """ def __init__(self, field, index, alignment): message = ( f"{field.__class__.__name__}: Field alignment offset " f"'{field.alignment.bit_offset}' does not match field group offset " f"'{alignment.bit_offset}' at index ({index.byte}, {index.bit}).") super().__init__(message) class FieldGroupSizeError(Exception): """ Raised if the alignment size of a field does not match with its field group. """ def __init__(self, field, index, alignment): message = ( f"{field.__class__.__name__}: Field alignment size " f"'{field.alignment.byte_size}' does not match field group size " f"'{alignment.byte_size}' at index ({index.byte}, {index.bit}).") super().__init__(message)
# d.update((['two', 'II'], ['four', 4])) d = {'one': 1, 'two': 2, 'three': 3} print(d.update((['two', 'II'], ['four', 4]))) print(d)
""" File: boggle.py Name: Justin Huang ---------------------------------------- TODO: Boggle Mission """ # This is the file name of the dictionary txt file # we will be checking if a word exists by searching through it FILE = 'dictionary.txt' dic_list = [] time = 0 def main(): """ TODO: """ boggle = [] read_dictionary() for i in range(4): print((i+1), end='') cha = input(' row of letters: ').strip() if len(cha) != 7: print('illegal input') break elif cha[1] != ' ' or cha[3] != ' ' or cha[5] != ' ': print('illegal input') break elif cha[0].isalpha() is False or cha[2].isalpha() is False or cha[4].isalpha() is False or cha[6].isalpha() is False: print('illegal input') break else: low_cha = cha.lower().split(' ') boggle.append(low_cha) word_collection = [] for i in range(len(boggle[0])): for j in range(len(boggle)): center_word = boggle[i][j] current_center = (i, j) boggle_make( boggle, [current_center], len(boggle), word_collection, len(boggle[0]), current_center, center_word, ) print(f'There are {time} words in total.') def boggle_make(boggle, cur_position_list, row, word_collection, column, center, start_word): global time if has_prefix(start_word) is False: return else: for x in range(-1, 2, 1): for y in range(-1, 2, 1): current_index = (center[0]+x, center[1]+y) if x == 0 and y == 0: pass else: if 0 <= current_index[0] < column: if 0 <= current_index[1] < row: if current_index not in cur_position_list: cur = start_word + boggle[current_index[0]][current_index[1]] cur_position_list.append(current_index) if len(cur) >= column and cur not in word_collection: if cur in dic_list: word_collection.append(cur) time += 1 print(f'Found "{cur}"') boggle_make(boggle, cur_position_list, row, word_collection, column, current_index, cur) else: boggle_make(boggle, cur_position_list, row, word_collection, column, current_index, cur) cur_position_list.pop() def read_dictionary(): """ This function reads file "dictionary.txt" stored in FILE and appends words in each line into a Python list """ with open(FILE, 'r') as f: for line in f: sp_l = line.strip() dic_list.append(sp_l) def has_prefix(sub_s): """ :param sub_s: (str) A substring that is constructed by neighboring letters on a 4x4 square grid :return: (bool) If there is any words with prefix stored in sub_s """ for i in range(len(dic_list)): if dic_list[i].startswith(sub_s): return True return False if __name__ == '__main__': main()
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: # @param head, a ListNode # @return a list node def detectCycle(self, head): if head is None or head.next is None: return None slow = head fast = head while fast is not None and fast.next is not None: slow = slow.next fast = fast.next.next if fast == slow: break # No cycle if fast is None or fast.next is None: return None # Has a cycle, put `slow` back to head slow = head while True: if fast == slow: break slow = slow.next fast = fast.next return slow
''' Дополните приведенный код, так чтобы он вывел сумму минимального и максимального элементов списка numbers. numbers = [12.5, 3.1415, 2.718, 9.8, 1.414, 1.1618, 1.324] print() ''' numbers = [12.5, 3.1415, 2.718, 9.8, 1.414, 1.1618, 1.324] print(min(numbers) + max(numbers))
BASE_URL = 'https://storyweaver.org.in/api/v1/illustrations-search' DEFAULT_PAGE_NUM = 1 DEFAULT_PER_PAGE = 10 MAX_PAGE_NUM = 1164 DATA_FOLDER_PATH = '\\Documents\\Github\\Storyweaver\\static\\data\\' MODEL_FOLDER_PATH = '\\Documents\\Github\\Storyweaver\\model\\' DETECTED_OBJECT_OUTPUT_PATH = '\\Documents\\Github\\Storyweaver\\static\\detected\\' WORD_TO_VEC_MODEL_NAME = 'word2vec.magnitude' DETECTOR_MODEL_NAME = 'resnet50.h5' TITLE_HASH_MAP = '\\Documents\\Github\\Storyweaver\\download\\title_hash_map.txt' HASH_WORD_VECTOR_MAP = '\\Documents\\Github\\Storyweaver\\model\\hash_word_vec.pkl' INDEX_HASH_MAP = '\Documents\\Github\\Storyweaver\\model\\index_hash_map.pkl' NEAREST_NEIGHBOR_MODEL = '\\Documents\\Github\\Storyweaver\\model\\nearest_neighbor_model.pkl' IMAGE_PATH_PREFIX = '/static/data/' DETECT_OUTPUT_PREFIX = '/static/detected/' IMAGE_EXTENSION = '.jpg'
class JobService: def update_status(self): pass
try: name, surname = input().split() print(f"Welcome to our party, {name} {surname}") except ValueError: print("You need to enter exactly 2 words. Try again!")
class Status: def __init__(self, x, y): self.x = x self.y = y self.active = False def max_y(self): # Het maximale ei gehalte is # 1 stapje = 0.30mm # max = 3 meter max_mm = 3 * 1000 max_steps = max_mm / 0.30 return max_steps def set_y(self, y): self.y = y f = open('/boot/y.txt', 'w') f.write(str(y)) f.close() return def set_x(self, x): self.x = x f = open('/boot/x.txt', 'w') f.write(str(x)) f.close() return status = Status(1, 5)
r = 's' c = media = menor = maior = soma = 0 while r in 'Ss': n = int(input('Digite um valor: ')) soma += n c += 1 if c == 1: maior = menor = n # Faz o maior e o menor valerem N elif n > maior: maior = n elif n < menor: menor = n r = str(input('Quer continuar? [S/N]: ')).upper().strip()[0] media = soma / c print('''Foram digitados {} números, a média entre eles foi {:.2f}, o MENOR valor lido foi {} e o MAIOR valor lido foi {}'''.format(c, media, menor, maior))
ENTRY_POINT = 'total_match' FIX = """ Add test case when two list have equal number of chars. """ #[PROMPT] def total_match(lst1, lst2): ''' Write a function that accepts two lists of strings and returns the list that has total number of chars in the all strings of the list less than the other list. if the two lists have the same number of chars, return the first list. Examples total_match([], []) ➞ [] total_match(['hi', 'admin'], ['hI', 'Hi']) ➞ ['hI', 'Hi'] total_match(['hi', 'admin'], ['hi', 'hi', 'admin', 'project']) ➞ ['hi', 'admin'] total_match(['hi', 'admin'], ['hI', 'hi', 'hi']) ➞ ['hI', 'hi', 'hi'] total_match(['4'], ['1', '2', '3', '4', '5']) ➞ ['4'] ''' #[SOLUTION] l1 = 0 for st in lst1: l1 += len(st) l2 = 0 for st in lst2: l2 += len(st) if l1 <= l2: return lst1 else: return lst2 #[CHECK] def check(candidate): # Check some simple cases assert True, "This prints if this assert fails 1 (good for debugging!)" assert candidate([], []) == [] assert candidate(['hi', 'admin'], ['hi', 'hi']) == ['hi', 'hi'] assert candidate(['hi', 'admin'], ['hi', 'hi', 'admin', 'project']) == ['hi', 'admin'] assert candidate(['4'], ['1', '2', '3', '4', '5']) == ['4'] assert candidate(['hi', 'admin'], ['hI', 'Hi']) == ['hI', 'Hi'] assert candidate(['hi', 'admin'], ['hI', 'hi', 'hi']) == ['hI', 'hi', 'hi'] assert candidate(['hi', 'admin'], ['hI', 'hi', 'hii']) == ['hi', 'admin'] # Check some edge cases that are easy to work out by hand. assert True, "This prints if this assert fails 2 (also good for debugging!)" assert candidate([], ['this']) == [] assert candidate(['this'], []) == []
""" Database module """ class Database(object): """ Defines data structures and methods to store article content. """ # pylint: disable=W0613 def merge(self, url, ids): """ Merges the results of an existing database into the current database. This method returns a list of ids not merged, which means there is a newer version available in the source data. Args: url: database connection ids: dict of id - entry date Returns: list of eligible ids NOT merged """ return [] def save(self, article): """ Saves an article. Args: article: article metadata and text content """ def complete(self): """ Signals processing is complete and runs final storage methods. """ def close(self): """ Commits and closes the database. """
def MAIN(Number): if Number > 0: return Number return 0 if __name__ == "__main__": print( "Hello, World") MAIN(0)
returnedDate = [ int( x ) for x in input( ).split( ' ' ) ] dueDate = [ int( x ) for x in input( ).split( ' ' ) ] fine = 0 if returnedDate[ 2 ] > dueDate[ 2 ]: fine = 10000 elif returnedDate[ 2 ] < dueDate[ 2 ]: fine = 0 elif returnedDate[ 2 ] == dueDate[ 2 ] and returnedDate[ 1 ] > dueDate[ 1 ]: fine = 500 * ( returnedDate[ 1 ] - dueDate[ 1 ] ) elif returnedDate[ 1 ] == dueDate[ 1 ] and returnedDate[ 0 ] > dueDate[ 0 ]: fine = 15 * ( returnedDate[ 0 ] - dueDate[ 0 ] ) print( fine )
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2021 by DeepLn # Distributed under the MIT software license, see the accompanying KLINE_INTERVAL = [ "1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "6h", "8h", "12h", "1d", "3d", "1w", "1m"] DEPTH = [5, 10, 20, 50, 100, 500, 1000] CONTRACT_TYPE = ["PERPETUAL", "CURRENT_MONTH", "NEXT_MONTH", "CURRENT_QUARTER", "NEXT_QUARTER"] PERIOD = [ "5m", "15m", "30m", "1h", "2h", "4h", "6h", "12h", "1d"] INCOME_TYPE = [ "TRANSFER", "WELCOME_BONUS", "REALIZED_PNL", "FUNDING_FEE", "COMMISSION", "INSURANCE_CLEAR", "REFERRAL_KICKBACK", "COMMISSION_REBATE", "DELIVERED_SETTELMENT", "COIN_SWAP_DEPOSIT", "COIN_SWAP_WITHDRAW"]
num = int(input('Digite um número para calcular seu Faotorial:')) c = num cont = 0 f = 1 for n in range(1,num): cont = cont + 1 num = num * cont print(f'O fatorial do número digitado é de {num}') while c > 0: f = f * c c = c - 1 print(f'O fatorial do número digitado é de {f}')
def color(cor): """ Função para colorir as saídas no terminal :param cor: # LIMPA FORMATAÇÃO: "limpa" # FUNDOS: "FdBranco" "FdVerm" "FdVerde" "FdAmarelo" "FdAzul" "FdRoxo" "FdAzulClaro" "FdCinza" # LETRAS: "LtBranca" "LtVerm" "LtVerde" "LtAmarelo" "LtAzul" "LtRoxo" "LtAzulClaro" "LtCinza" # LETRA + FUNDO: "LtBrancaFdVerm" "LtVermFdBranco" "LtBrancaFdAzul" # ESTILO: # 0 - Sem formtação # 1 - Negrito # 4 - Sublinhado # 7 - Inverte Cores # COR_TEXTO COR_BACK # Branco 30 40 # Vermelho 31 41 # Verde 32 42 # Amarelo 33 43 # Azul 34 44 # Roxo 35 45 # Azul Claro 36 46 # Cinza 37 47 :return: """ #LIMPA FORMATAÇÃO if cor == "limpa": return "\033[m" #FUNDOS elif cor == "FdBranco": return "\033[40m" elif cor == "FdVerm": return "\033[41m" elif cor == "FdVerde": return "\033[42m" elif cor == "FdAmarelo": return "\033[1;37;43m" elif cor == "FdAzul": return "\033[44m" elif cor == "FdRoxo": return "\033[45m" elif cor == "FdAzulClaro": return "\033[46m" elif cor == "FdCinza": return "\033[47m" #LETRAS elif cor == "LtBranca": return "\033[30m" elif cor == "LtVerm": return "\033[31m" elif cor == "LtVerde": return "\033[32m" elif cor == "LtAmarelo": return "\033[33m" elif cor == "LtAzul": return "\033[34m" elif cor == "LtRoxo": return "\033[35m" elif cor == "LtAzulClaro": return "\33[36m" elif cor == "LtCinza": return "\33[37m" #LETRA + FUNDO elif cor == "LtBrancaFdVerm": return "\33[1;30;41m" elif cor == "LtVermFdBranco": return "\33[1;31;40m" elif cor == "LtBrancaFdAzul": return "\33[1;30;44m"
# Copyright Notice: # Copyright 2017, Fitbit, Inc. # 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 ThriftService(object): """ Provides a representation of a service declared in thrift. """ class Endpoint(object): def __init__(self, return_type, name, fields=None, oneway=False): self.return_type = return_type self.name = name self.fields = fields if fields is not None else {} self.oneway = True if oneway else False def __eq__(self, other): return type(other) is type(self) and self.__dict__ == other.__dict__ def __ne__(self, other): return not self.__eq__(other) def __str__(self): fields_list = ', '.join([str(field) for field in self.fields.values()]) str_params = ('oneway ' if self.oneway else '', self.return_type, self.name, fields_list) return '%s%s %s(%s)' % str_params def __init__(self, reference, endpoints, extends=None): """ :param reference: a unique reference to the service, defined as 'Namespace.name'. :param endpoints: a dictionary from endpoint names to endpoint objects that compromise the service. :param extends: a unique reference to the service that this service extends, or None. """ self.reference = reference self.endpoints = endpoints self.extends = extends def __eq__(self, other): return type(other) is type(self) and self.__dict__ == other.__dict__ def __ne__(self, other): return not self.__eq__(other) def __str__(self): return self.reference + (' extends %s' % self.extends if self.extends is not None else '') + \ ''.join(['\n\t%s' % str(endpoint) for endpoint in self.endpoints.values()])
# -*- coding: utf-8 -*- # Author: XuMing <shibing624@126.com> # Data: 17/10/15 # Brief: with open("1.txt", "r", encoding="utf-8") as f: for i in f: parts = i.strip().split("\t") print(parts[22])
donor_dict = \ { 1: 3, 2: 6, 3: 9, 4: 12, 5: 11, 6: 8, 7: 5, 8: 2, 9: 1, 10: 4, 11: 7, 12: 10, } cell_dict = { 'CD68': { 'legend': "Macrophage (CD68+)", 'full': "Macrophage (CD68+)", 'short': "Macrophage", 'group': "Immune Cells", 'color': "gold", 'marker': 'circle', 'size': 15.89, 'histogram_location': [3, 1], }, 'CD31': { 'legend': "Endothelial cell", 'full': "Endothelial cell (CD31)", 'short': "CD31", 'group': 'Vessel & Skin', 'color': "red", 'marker': 'circle', 'size': 16.83, 'histogram_location': [0, 0], }, 'T-Helper': { 'legend': "T helper (CD4)", 'full': "T-Helper Cells (CD4)", 'short': "T-Helper", 'group': "Immune Cells", 'color': "blue", 'marker': 'circle', 'size': 16.96, 'histogram_location': [2, 2], }, 'T-Reg': { 'legend': "T reg (FOXP3)", 'full': "T-Regulatory Cells (FOXP3)", 'short': "T-Reg", 'group': "Immune Cells", 'color': "mediumspringgreen", 'marker': 'circle', 'size': 17.75, 'histogram_location': [2, 3], }, 'T-Killer': { 'legend': "T killer (CD8)", 'full': "T-Killer Cells (CD8)", 'short': "T-Killer", 'group': "Immune Cells", 'color': "purple", 'marker': 'circle', 'size': 16, 'histogram_location': [2, 4], }, 'P53': { 'legend': "P53", 'full': "P53", 'short': "P53", 'group': "UV Damage", 'color': "chocolate", 'marker': 'cross', 'size': 16, 'histogram_location': [3, 2], }, 'KI67': { 'legend': "KI67", 'full': "KI67", 'short': "KI67", 'group': 'Proliferation', 'color': "cyan", 'marker': 'cross', 'size': 16, 'histogram_location': [3, 3], }, 'DDB2': { 'legend': "DDB2", 'full': "DDB2", 'short': "DDB2", 'group': "UV Damage", 'color': "olivedrab", 'marker': 'cross', 'size': 16, 'histogram_location': [3, 4], }, 'Skin': { 'legend': "Skin surface", 'full': "Skin Surface", 'short': "Skin", 'group': 'Vessel & Skin', 'color': "darkgrey", 'marker': 'diamond', 'size': 5, 'histogram_location': [0, 0], }, } cell_dict['Macrophage'] = cell_dict['CD68'] cell_dict['Blood Vessel'] = cell_dict['CD31'] cell_dict['T-Regulatory'] = cell_dict['T-Reg'] cell_dict['T-Regulator'] = cell_dict['T-Reg']
# File type implements the Context Manager Protocol # can therefore use a file in a with as statement with open('myfile.txt', 'r') as f: lines = f.readlines() for line in lines: print(line, end='') print('Done')
# -*- coding:utf-8 -*- """ @author: Alden @email: sunzhenhy@gmail.com @date: 2018/4/6 @version: 1.0.0.0 """ # Definition for singly-linked list. class ListNode(object): def __init__(self, x): self.val = x self.next = None class Solution(object): def getIntersectionNode(self, headA, headB): """ :type head1, head1: ListNode :rtype: ListNode """ if __name__ == "__main__": s = Solution() s.getIntersectionNode()
class Solution: def numberOfSubarrays(self, nums: 'List[int]', k: int) -> int: odds = [] x = 0 for i, num in enumerate(nums): if num % 2 == 1: odds.append(x) x = 0 else: x += 1 odds.append(x) res = 0 for i in range(len(odds) - k): res += (odds[i] + 1) * (odds[i + k] + 1) return res s = Solution() print(s.numberOfSubarrays([1,1,2,1,1], 3))
""" DAG (Directed Acyclic Graph) """ class Node: _id = 0 def __init__(self, weights, # parent: list = [], # edges: list = [], _id=None, creator=None): # id if _id != None: self._id = _id else: self._id = Node._id Node._id += 1 # TODO: rounds self.weights = weights # self.parent = parent # self.edges = edges self.creator = creator def get_id(self): return self._id def get_weights(self): return self.weights
# the following file holds meta information about the sunpy package sunpy_releases = {'0.9': '2018/04/22', '0.8': '2017/08/17', '0.7': '2016/05/24', '0.6': '2015/07/21', '0.5': '2014/06/13', '0.4': '2014/02/14', '0.3': '2013/08/30', '0.2': '2012/11/26', '0.1': '2011/09/28'} repo_path = "/Users/sdchris1/Developer/repositories/sunpy/"
def parse(filename: str): with open(filename) as file: fileLines = file.read().split('\n') width, height = len(fileLines[0]), len(fileLines) eastHerd, southHerd = set(), set() for y, line in enumerate(fileLines): for x, char in enumerate(line): if char == '>': eastHerd.add((x, y)) elif char == 'v': southHerd.add((x, y)) return ((width, height), (eastHerd, southHerd)) def pp(seafloor): (width, height), (eastHerd, southHerd) = seafloor for y in range(height): for x in range(width): if (x, y) in eastHerd: char = '>' elif (x, y) in southHerd: char = 'v' else: char = '.' print(char, end='') print() print('------------------') def moveSeaCucumbers(seafloor): (width, height), (eastHerd, southHerd) = seafloor eastHerdAfterMove, southHerdAfterMove = set(), set() moving = False for cucumber in eastHerd: x, y = cucumber cucumberAfterMove = ((x + 1) % width, y) if (not cucumberAfterMove in eastHerd) and (not cucumberAfterMove in southHerd): moving = True eastHerdAfterMove.add(cucumberAfterMove) else: eastHerdAfterMove.add(cucumber) for cucumber in southHerd: x, y = cucumber cucumberAfterMove = (x, (y + 1) % height) if (not cucumberAfterMove in eastHerdAfterMove) and (not cucumberAfterMove in southHerd): moving = True southHerdAfterMove.add(cucumberAfterMove) else: southHerdAfterMove.add(cucumber) return (moving, ((width, height), (eastHerdAfterMove, southHerdAfterMove))) def solve(seafloor) -> int: steps = 0 moving = True while moving: moving, seafloor = moveSeaCucumbers(seafloor) steps += 1 pp(seafloor) return steps def main(): input = parse('data/day25.txt') result = solve(input) print(result) if __name__ == '__main__': main()
# coding=utf-8 """ 两个链表的交叉 描述: 请写一个程序,找到两个单链表最开始的交叉节点。 思路: 我一开始的解法做了一个错误示范 我一开始想的是 把两个链表翻转 然后从头开始对比,不一致时。 那之前一个元素就是起点。 然后会发现一个问题就是 A:6->7->。。。->13->null B:1->2->3->。。。->13->null RA: 13->12->。。。->6->null 这对B的就有影响了 RB: 6->5->4->3->2->1->null B的结构都变了 """ """ Definition of ListNode class ListNode(object): def __init__(self, val, next=None): self.val = val self.next = next """ class Solution: """ @param headA: the first list @param headB: the second list @return: a ListNode """ def getIntersectionNode(self, headA, headB): # write your code here len_a, len_b = 0, 0 tail_a, tail_b = headA, headB while tail_a: len_a += 1 tail_a = tail_a.next while tail_b: len_b += 1 tail_b = tail_b.next node_a, node_b = headA, headB while len_a > len_b: node_a = node_a.next len_a -= 1 while len_a < len_b: node_b = node_b.next len_b -= 1 while node_a is not node_b: node_a = node_a.next node_b = node_b.next return node_a """ 错误示范 """ class Solution: """ @param headA: the first list @param headB: the second list @return: a ListNode """ def getIntersectionNode(self, headA, headB): # write your code here # 先翻转,然后向前读 if headA is None or headB is None: return None head_b = self.reverseList(headB) head_a = self.reverseList(headA) print(head_a.val, head_b.val) xpoint = None while head_a and head_b: if head_a.val == head_b.val: xpoint = head_a.val head_a, head_b = head_a.next, head_b.next # 然后找到这段列表 if xpoint: while True: if tail.val == xpoint: break tail = tail.next return tail else: return None def reverseList(self, node): if node is None: return node cur = None while node: tmp = node.next node.next = cur cur = node node = tmp return cur
preco = float(input("Entre com o preço da mercadoria R$ ")) desconto = int(input("Entre com o percentual de desconto: ")) print(f"O valor do desconto será de R${preco * (desconto/100):.2f}") print(f"O preço da mercadoria com desconto será de R${preco - preco * (desconto/100):.2f}")
USES_BASE64 = True REDIRECT = None AUTHOR = 'BrocaProgs' APPNAME = 'PyQt_Socius'
# Lista ordenada sem repetições lista = [] for i in range(5): n = int(input("Digite um valor: ")) if i == 0 or n > lista[-1]: lista.append(n) print("O numero foi adicionado no final da lista ...") else: for i in range(5): if n <= lista[i]: lista.insert(i, n) print(f"O numero foi adicionado na posicao {i} ") break print(lista)
"""profile_ex This module contains supporting code to be used by cProfile The cProfile can be run on this file (from the commandline) as: $python -m cProfile profile_ex.py This module is compatible with Python 3.5.x. It contains supporting code for the book, Learning Python Application Development, Packt Publishing. :copyright: 2016, Ninad Sathaye :license: The MIT License (MIT) . See LICENSE file for further details. """ def test_1(): return 100*100 def test_2(): x = [] for i in range(10000): temp = i/1000.0 x.append(temp*temp) return x def test_3(condition=False): """Trivial recursion example""" if condition: test_3() if __name__ == "__main__": a = test_1() b = test_2() c = test_3(True)
#!/usr/bin/env python # encoding: utf-8 def run(whatweb, pluginname): whatweb.recog_from_content(pluginname, "dedecms") whatweb.recog_from_file(pluginname, "templets/default/style/dedecms.css", "DedeCMS")
# Python function to print leaders in array def printLeaders(l, size): m=[] max_element = l[size-1] m.append(max_element) for i in range(size-2, -1, -1): if max_element <= l[i]: m.append(l[i]) max_element = l[i] for k in range(len(m)-1,-1,-1): #get the elements according to their first occurence in the arr print(m[k],end=" ") # Driver function arr = [16, 17, 4, 3, 5, 2] printLeaders(arr, len(arr))
class Parser: def __init__(self): pass def parse(self, record): raise NotImplementedError('the parse method should be implemented by subclasses') class Success(Parser): def __init__(self): super().__init__() def parse(self, record): return [('', record)] class Predicate(Parser): def __init__(self, predicate): super().__init__() self.predicate = predicate def parse(self, record): if len(record) > 0 and self.predicate(record[0]): return [(record[0], record[1:])] else: return [] class Word(Parser): def __init__(self, word): super().__init__() self.word = word def parse(self, record): if record.startswith(self.word): return [(self.word[:], record[len(self.word):])] else: return [] class Any(Parser): def __init__(self, parsers): super().__init__() self.parsers = parsers def parse(self, record): return [(result, rest) for parser in self.parsers for (result, rest) in parser.parse(record)] class Sequence(Parser): def __init__(self, parsers): super().__init__() self.parsers = parsers def parse(self, record): return parse_sequence(self.parsers, record) def parse_sequence(parsers, record): if not parsers: return [([], record)] else: parser = parsers[0] return [([intermediate_result] + result, rest) for (intermediate_result, intermediate_rest) in parser.parse(record) for (result, rest) in parse_sequence(parsers[1:], intermediate_rest)] class Map(Parser): def __init__(self, transform, parser): super().__init__() self.parser = parser self.transform = transform def parse(self, record): return [(self.transform(result), rest) for (result, rest) in self.parser.parse(record)] class Lazy(Parser): def __init__(self, parser_producer): super().__init__() self.parser_producer = parser_producer def parse(self, record): parser = self.parser_producer() return parser.parse(record) class Filter(Parser): def __init__(self, predicate, parser): super().__init__() self.predicate = predicate self.parser = parser def parse(self, record): return [(result, rest) for (result, rest) in self.parser.parse(record) if self.predicate((result, rest))] class Avoid(Parser): def __init__(self, word): super().__init__() self.word = word def parse(self, record): index = 0 while index < len(record) and not record[index:].startswith(self.word): index += 1 return [(record[0:index], record[index:])] class Chain(Parser): def __init__(self, first, second): super().__init__() self.first = first self.second = second def parse(self, record): return [(result, second_rest + first_rest) for (intermediate, first_rest) in self.first.parse(record) for (result, second_rest) in self.second.parse(intermediate)] class Producing(Parser): def __init__(self, parser): super().__init__() self.parser = parser def parse(self, record): return [(result, rest) for (result, rest) in self.parser.parse(record) if not rest == record] def complete(parser): return Filter(lambda pair: pair[1] == '', parser) def many(parser): return Many(parser) # Below would be the combinatorial implementation. Unfortunately this easily blows the stack due to recursion. Therefore, we have chosen to implement that by hand. # return Any([ # Map(lambda result: [result[0]] + result[1], Sequence([parser, Lazy(lambda : many(parser))])), # Map(lambda result: [], Success()), # ]) class Many(Parser): def __init__(self, parser): super().__init__() self. parser = parser def parse(self, record): accumulator = [([], record)] last = accumulator while True: new = [(prefix + [result], rest) for (prefix, remaining) in last for (result, rest) in self.parser.parse(remaining)] accumulator.extend(new) last = new if len(new) == 0: break parses = sorted(accumulator, key=lambda p: len(p[1])) return parses def atleast(number, parser): return Filter(lambda pair: len(pair[0]) >= number, many(parser)) def optionally(parser): return Any([ parser, Success(), ])
a < b < c x in y x not in y x is y x is not y x < y x > y x >= y x <= y x == y x != y
VERSION = '0.0.1' WELCOME_MSG = """\ Kite REPL, version: {}\ """.format(VERSION) REPL_USAGE = """\ ?, :h, :help - Show help message :e, :env - Show current dynamic environment :d, :del <name> - Delete name from the environment (todo) :b, :builtin - Show built-in environment :l, :load - Load source file\ """ CMD_USAGE = """\ """ PROMPT = '$' DEPTH_MARK = '.' HISTORY_FILE = '/home/siegmeyer/.lisphistory' BUILTIN = ('atom', 'car', 'cdr', 'cons', 'eq', 'cond', 'label', 'lambda', 'quote', 't', 'f', 'nil') HELP = { 'atom': 'help for atom', 'car': 'dasdsad' }
# url -> https://onlinejudge.u-aizu.ac.jp/courses/lesson/1/ALDS1/11/ALDS1_11_A N = int(input().rstrip()) def generateGraph(N): graph = [[0]*N for _ in range(N)] for _ in range(N): U, A, *B = map(int, input().rstrip().split()) for i in range(A): graph[U-1][B[i]-1] = 1 return graph result = generateGraph(N) for i in range(len(result)): print(*result[i])
# Copyright 2016 Anselm Binninger, Thomas Maier, Ralph Schaumann # # 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. __author__ = 'Anselm Binninger, Thomas Maier, Ralph Schaumann' MESSAGE_CODE_ANNOUNCE = 500 MESSAGE_CODE_NOTIFY = 501 MESSAGE_CODE_NOTIFICATION = 502 MESSAGE_CODE_VALIDATION = 503 MESSAGE_CODE_PEER_REQUEST = 510 MESSAGE_CODE_PEER_RESPONSE = 511 MESSAGE_CODE_PEER_UPDATE = 512 MESSAGE_CODE_PEER_INIT = 513 MESSAGE_CODE_GOSSIP_MIN = 500 MESSAGE_CODE_GOSSIP_MAX = 520
#! Metanit.com - Python: Chapter 2, lesson 3 "Operations with Numbers". y = 0x0a # hexadecimal system, 11 a = 0o11 # octal system, 9 x = 0b101 # binary system, 5 z = x + y # Awesome string formatters. print("{0} in binary {0:08b}; in hex {0:02x} in octal {0:02o}".format(z)) # {:n} - 'n' indicates how many characters are displayed, empty ones are # replaced by zeros. # Order of operations: degree, multiplication, addition. number = 3 + 4 * 5 ** 2 + 7 print(number) # Redistribution of operations order. number = (3 + 4) * (5 ** 2 + 7) print(number) # Augmented assignment operators or compound assignment operators. number = 12 number += 5 print(number) number -= 3 print(number) number *= 4 print(number) number //= 9 print(number) number **= 4 print(number) # Bringing to the desired data type. first_number, second_number = "2", 3 third_number = int(first_number) + second_number print(third_number) # Rounding. The second parameter is the number of decimal places. first_number = 2.00001 second_number = 5 third_number = first_number / second_number print(round(third_number, 4)) print(round(2.0001 + 1, 4))
# Python - 3.6.0 test.assert_equals(string_to_number('1234'), 1234) test.assert_equals(string_to_number('605'), 605) test.assert_equals(string_to_number('1405'), 1405) test.assert_equals(string_to_number('1234'), 1234)
"""Calculate the simple edit distance. Calculates the simple edit distance by calculating a Longest Common Subsequence (LCS) alignment [1]_. The implementation is adapted from [2]_. This method is useful when only the simple edit distance is needed (not an or all alignments). See Also -------- algebra.lcs.all_lcs : Calculates all LCS alignments. References ---------- [1] S. Wu, U. Manber, G. Myers and W. Miller. "An O(NP) Sequence Comparison Algorithm". In: Information Processing Letters, 35.6 (1990), pp. 317-323. [2] https://github.com/cubicdaiya/onp/blob/master/python/onp.py. """ def edit(a, b): """Calculate the simple edit distance between two strings.""" def snake(m, n, k, pp, ppp): y = max(pp, ppp) x = y - k while x < m and y < n and a[x] == b[y]: x += 1 y += 1 return y m = len(a) n = len(b) if m >= n: a, b = b, a m, n = n, m offset = m + 1 delta = n - m size = m + n + 3 fp = [-1] * size p = -1 while True: p += 1 for k in range(-p, delta): fp[k + offset] = snake(m, n, k, fp[k - 1 + offset] + 1, fp[k + 1 + offset]) for k in range(delta + p, delta, -1): fp[k + offset] = snake(m, n, k, fp[k - 1 + offset] + 1, fp[k + 1 + offset]) fp[delta + offset] = snake(m, n, delta, fp[delta - 1 + offset] + 1, fp[delta + 1 + offset]) if fp[delta + offset] >= n: break return delta + 2 * p
def get_formatted(first_name, last_name): full_name = first_name + ' ' + last_name return full_name.title() while True: print('Please tell me your name:') # print('Press "q" to quit') f_name = input('Fist Name: ') l_name = input('Last Name: ') formatted_name = get_formatted(f_name, l_name) print('Hello, ' + formatted_name) exit_prompt = input('Press "q" to quit the program: ') if exit_prompt == 'q': break
find_sum_of_squearse = lambda x, y: x**2 + y**2 print(find_sum_of_squearse(3, 5)) words = ["hello", "monkey", "python"] wordsSort = max(words, key = lambda x: x.count("1")) print(wordsSort)
# -*- coding:utf-8 -*- # 信息门户账号密码 username = '' password = '' # 邮箱账号密码 emailUsername = '' emailPassword = ''
class KomodoRPC: node_addr = '127.0.0.1' rpc_port = 7777 req_method = 'POST' rpc_username = '' rpc_password = '' req_auth = { 'user': rpc_username, 'pass': rpc_password } req_url = 'http://{0}:{1}/'.format(str(node_addr), str(rpc_port)) req_headers = { 'content-type': 'text/plain;' } jsonrpc_ver = '1.0' rpc_req_id = 'curltest' def __new__(cls, node_addr='127.0.0.1', rpc_port=7777, req_method='POST', rpc_username='', rpc_password='', jsonrpc_ver = '1.0', rpc_req_id = 'curltest'): ''' Create an instance of KomodoRPC class to populate RPC-request options and authentication parameters. :param node_addr: (string, default='127.0.0.1') IP address of node where komodod is listening for RPCs. :param rpc_port: (numeric) RPC-Port of running asset-chain :param req_method: (string, default='POST') HTTP request method :param rpc_username: (string) Username for RPC authentication :param rpc_password: (string) Password for RPC authentication :param jsonrpc_ver: (string, default='1.0') JSON RPC version :param rpc_req_id: (string) ID for RPC requests :return: Object of KomodoRPC class ''' cls.node_addr = node_addr cls.rpc_port = rpc_port cls.req_method = req_method cls.rpc_username = rpc_username cls.rpc_password = rpc_password cls.req_auth = { 'user': rpc_username, 'pass': rpc_password } cls.req_url = 'http://{0}:{1}/'.format(str(cls.node_addr), str(cls.rpc_port)) cls.req_headers = { 'content-type': 'text/plain;' } cls.jsonrpc_ver = jsonrpc_ver cls.rpc_req_id = rpc_req_id
def josephus(n, k): q = [i for i in range(1, n + 1)] j = 0 while len(q) > 1: j = (j + k - 1) % len(q) q.pop(j) return q[0] print(josephus(41, 3))
# Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order. # # Example 1: # # Input: "Let's take LeetCode contest" # Output: "s'teL ekat edoCteeL tsetnoc" # # # # Note: # In the string, each word is separated by single space and there will not be any extra space in the string. # class Solution: def reverseWords(self, s: str) -> str: if not s or s == ' ' or len(s) is 1: return s result = '' tmp = '' for c in s: if c == ' ': result += tmp[::-1] + ' ' tmp = '' else: tmp += c return result + tmp[::-1]
#python program to print strings and type str1 = "Hi my name is Matthew. I am String" str2 = 'Hi my name is Precious. I am also String' #displaying string str1 and its type print(str1) print(type(str1)) #displaying string str1 and its type print(str2) print(type(str2))
# Define a String str = "python" # Convert String in Upper Case and assign to variable strupper strupper = str.upper(); # Print both the original and the converted fields print(str+ " is converted to the Upper Case as "+ strupper);
Search_Amish={ 'Amish+Romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance&page=20'], 'Amish+Romance+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Romance+Fiction&page=20'], 'Christian+Romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=20'], 'Christian+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Fiction&page=20'], 'Christian+Literature':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Literature&page=20'], 'Christian+Romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AChristian+Romance&page=20'], 'Contemporary+Christian+Romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance&page=20'], 'Contemporary+Religious+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Religious+Fiction&page=20'], 'Inspirational+Religious+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Religious+Fiction&page=20'], 'Religious+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Fiction&page=20'], 'Religious+Romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AReligious+Romance&page=20'], 'Womens+Christian+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=20'], 'Womens+Christian+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Christian+Fiction&page=20'], 'Womens+Religious+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=20'], 'Womens+Religious+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AWomens+Religious+Fiction&page=20'], 'Contemporary+Christian+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Fiction&page=20'], 'Contemporary+Christian+Romance+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AContemporary+Christian+Romance+Fiction&page=20'], 'Inspirational+Spiritual+Fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AInspirational+Spiritual+Fiction&page=20'], 'Amish+Christianity':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AAmish+Christianity&page=20'], 'amish+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+fiction&page=20'], 'christian+reads':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+reads&page=20'], 'clean+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+fiction&page=20'], 'clean+reads':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+reads&page=20'], 'clean+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean+romance&page=20'], 'inspirational+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+romance&page=20'], 'inspirational+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational+fiction&page=20'], 'mennonite+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+fiction&page=20'], 'mennonite+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite+romance&page=20'], 'religious':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious&page=20'], 'amish+':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+&page=20'], 'clean':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aclean&page=20'], 'christian':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian&page=20'], 'romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aromance&page=20'], 'womens+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+fiction&page=20'], 'womens+literature':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awomens+literature&page=20'], 'mennonite':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amennonite&page=20'], 'Mennonite+Christianity':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMennonite+Christianity&page=20'], 'inspirational':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ainspirational&page=20'], 'bonnet':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet&page=20'], 'Plain':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3APlain&page=20'], 'buggy':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy&page=20'], 'Kapp':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKapp&page=20'], 'Englischer':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer&page=20'], 'Old+Order+Amish':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Amish&page=20'], 'Old+Order+Mennonite':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOld+Order+Mennonite&page=20'], 'Maine':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AMaine&page=20'], 'Orchard':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AOrchard&page=20'], 'apple':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple&page=20'], 'apple+orchard':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aapple+orchard&page=20'], 'love+triangle':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle&page=20'], 'psychic':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apsychic&page=20'], 'premonitions':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Apremonitions&page=20'], 'amish+cooking':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+cooking&page=20'], 'amish+recipes':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+recipes&page=20'], 'gardening':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agardening&page=20'], 'garden':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Agarden&page=20'], 'prayer':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aprayer&page=20'], 'rape':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arape&page=20'], 'shunning':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Ashunning&page=20'], 'amish+quilt':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aamish+quilt&page=20'], 'culture+clash':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aculture+clash&page=20'], 'single+parent':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Asingle+parent&page=20'], 'parenthood':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aparenthood&page=20'], 'widowhood':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awidowhood&page=20'], 'conversion':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aconversion&page=20'], 'florida':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aflorida&page=20'], 'spring+brothers':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aspring+brothers&page=20'], 'restaurant':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Arestaurant&page=20'], 'diner':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Adiner&page=20'], 'novella':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Anovella&page=20'], 'holiday':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday&page=20'], 'christmas':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas&page=20'], 'advent':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aadvent&page=20'], 'mistaken+identity':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity&page=20'], 'arts+and+crafts':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts+and+crafts&page=20'], 'arts&crafts':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aarts&crafts&page=20'], 'woodworking':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworking&page=20'], 'woodworker':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Awoodworker&page=20'], 'twins':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Atwins&page=20'], 'switched+at+birth':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aswitched+at+birth&page=20'], 'B&B':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AB&B&page=20'], 'BNB':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3ABNB&page=20'], 'bed+and+breakfast':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+and+breakfast&page=20'], 'bed+&+breakfast':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abed+&+breakfast&page=20'], 'Kansas':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AKansas&page=20'], 'holiday+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aholiday+romance&page=20'], 'christmas+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristmas+romance&page=20'], 'mistaken+identity+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Amistaken+identity+romance&page=20'], 'christian+holiday+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+holiday+romance&page=20'], 'religious+conversion':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Areligious+conversion&page=20'], 'christian+conversion':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Achristian+conversion&page=20'], 'love+triangle+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Alove+triangle+romance&page=20'], 'buggy+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+romance&page=20'], 'buggy+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abuggy+fiction&page=20'], 'bonnet+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+romance&page=20'], 'bonnet+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Abonnet+fiction&page=20'], 'plain+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+romance&page=20'], 'plain+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3Aplain+fiction&page=20'], 'Englischer+fiction':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglischer+fiction&page=20'], 'Englisher+romance':['http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=1','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=2','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=3','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=4','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=5','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=6','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=7','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=8','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=9','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=10','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=11','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=12','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=13','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=14','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=15','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=16','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=17','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=18','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=19','http://www.amazon.com/s/ref=sr_pg_5?rh=i%3Aaps%2Ck%3AEnglisher+romance&page=20'] } Category_Amish={ 'BooksAmishRomance':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259436011&page=42'], 'BooksChristianRomance':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011&page=42'], 'BooksChristianLiterature&Fiction':['http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=1','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=2','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=3','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=4','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=5','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=6','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=7','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=8','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=9','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=10','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=11','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=12','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=13','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=14','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=15','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=16','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=17','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=18','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=19','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=20','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=21','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=22','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=23','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=24','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=25','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=26','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=27','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=28','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=29','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=30','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=31','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=32','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=33','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=34','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=35','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=36','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=37','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=38','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=39','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=40','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=41','http://www.amazon.com/s/ref=lp_172806_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806&page=42'], 'BooksContemporaryChristianRomance':['http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=1','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=2','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=3','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=4','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=5','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=6','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=7','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=8','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=9','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=10','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=11','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=12','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=13','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=14','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=15','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=16','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=17','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=18','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=19','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=20','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=21','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=22','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=23','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=24','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=25','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=26','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=27','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=28','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=29','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=30','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=31','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=32','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=33','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=34','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=35','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=36','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=37','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=38','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=39','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=40','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=41','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A172806%2Cn%3A332930011%2Cn%3A7259437011&page=42'], 'BooksReligion&SpirtualityFicition':['http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=1','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=2','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=3','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=4','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=5','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=6','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=7','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=8','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=9','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=10','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=11','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=12','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=13','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=14','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=15','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=16','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=17','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=18','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=19','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=20','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=21','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=22','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=23','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=24','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=25','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=26','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=27','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=28','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=29','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=30','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=31','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=32','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=33','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=34','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=35','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=36','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=37','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=38','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=39','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=40','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=41','http://www.amazon.com/s/ref=lp_12489_pg_2?rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489&page=42'], 'BooksReligiousRomance':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A283155%2Cn%3A%211000%2Cn%3A22%2Cn%3A12489%2Cn%3A12500&page=42'], 'BooksAmishDenomination':['http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=1','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=2','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=3','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=4','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=5','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=6','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=7','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=8','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=9','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=10','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=11','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=12','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=13','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=14','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=15','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=16','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=17','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=18','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=19','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=20','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=21','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=22','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=23','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=24','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=25','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=26','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=27','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=28','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=29','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=30','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=31','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=32','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=33','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=34','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=35','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=36','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=37','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=38','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=39','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=40','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=41','http://www.amazon.com/s/ref=sr_pg_3?rh=n%3A283155%2Cn%3A%211000%2Cn%3A12290%2Cn%3A16009761%2Cn%3A12406&page=42'], 'KindleeBooksAmishRomanceFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917422011&page=42'], 'KindleeBooksChristianFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011&page=42'], 'KindleeBooksChristianRomance':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011&page=42'], 'KindleeBooksContemporaryChristianFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A157052011%2Cn%3A7588745011&page=42'], 'KindleeBooksContemporaryChristianRomance':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=42'], 'KindleeBooksContemporaryChristianRomanceFiction':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A6190467011%2Cn%3A6190472011%2Cn%3A8917424011&page=42'], 'KindleeBooksInspirationalReligiousFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011%2Cn%3A7588874011&page=42'], 'KindleeBooksInspirationalSpiritualFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158551011%2Cn%3A158559011%2Cn%3A8917489011&page=42'], 'KindleeBooksReligious&InspirationalFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A158434011&page=42'], 'KindleeBooksWomensChristianFiction':['http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=1','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=2','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=3','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=4','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=5','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=6','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=7','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=8','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=9','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=10','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=11','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=12','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=13','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=14','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=15','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=16','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=17','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=18','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=19','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=20','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=21','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=22','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=23','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=24','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=25','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=26','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=27','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=28','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=29','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=30','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=31','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=32','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=33','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=34','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=35','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=36','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=37','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=38','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=39','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=40','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=41','http://www.amazon.com/s/ref=sr_pg_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588886011&page=42'], 'KindleeBooksWomensReligiousFiction':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A157028011%2Cn%3A6190492011%2Cn%3A7588897011&page=42'], 'KindleeBooksAmishChristianity':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158280011%2Cn%3A158296011%2Cn%3A8917419011%2Cn%3A158365011&page=42'], 'KindleeBooksAmishRomance':['http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=1','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=2','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=3','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=4','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=5','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=6','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=7','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=8','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=9','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=10','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=11','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=12','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=13','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=14','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=15','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=16','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=17','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=18','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=19','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=20','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=21','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=22','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=23','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=24','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=25','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=26','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=27','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=28','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=29','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=30','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=31','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=32','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=33','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=34','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=35','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=36','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=37','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=38','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=39','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=40','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=41','http://www.amazon.com/s/ref=sr_pg_2?rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011&page=42'], 'KindleStore_KindleeBooks_Romance_LoveTriangle':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=42'], 'KindleStore_KindleeBooks_Romance_SecondChances':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=42'], 'KindleStore_KindleeBooks_Romance_SecretBaby':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=42'], 'KindleStore_KindleeBooks_Romance_Contemporary_LoveTriangle':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=42'], 'KindleStore_KindleeBooks_Romance_Contemporary_SecondChances':['http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=1','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=2','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=3','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=4','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=5','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=6','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=7','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=8','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=9','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=10','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=11','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=12','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=13','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=14','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=15','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=16','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=17','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=18','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=19','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=20','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=21','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=22','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=23','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=24','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=25','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=26','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=27','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=28','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=29','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=30','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=31','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=32','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=33','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=34','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=35','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=36','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=37','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=38','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=39','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=40','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=41','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=42'], 'KindleStore_KindleeBooks_Romance_Contemporary_SecretBaby':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A158568011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_LoveTriangle':['http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=1','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=2','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=3','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=4','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=5','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=6','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=7','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=8','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=9','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=10','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=11','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=12','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=13','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=14','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=15','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=16','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=17','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=18','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=19','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=20','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=21','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=22','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=23','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=24','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=25','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=26','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=27','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=28','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=29','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=30','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=31','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=32','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=33','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=34','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=35','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=36','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=37','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=38','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=39','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=40','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=41','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_SecondChances':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_SecretBaby':['http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=1','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=2','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=3','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=4','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=5','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=6','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=7','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=8','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=9','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=10','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=11','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=12','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=13','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=14','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=15','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=16','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=17','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=18','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=19','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=20','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=21','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=22','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=23','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=24','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=25','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=26','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=27','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=28','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=29','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=30','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=31','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=32','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=33','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=34','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=35','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=36','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=37','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=38','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=39','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=40','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=41','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Amish_LoveTriangle':['http://www.amazon.com/s/ref=sr_nr_p_n_feature_seven_br_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707016011&bbn=6487833011&ie=UTF8&qid=1431541750&rnid=6707011011','http://www.amazon.com/s/ref=sr_nr_p_n_feature_seven_br_3?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707016011&bbn=6487833011&ie=UTF8&qid=1431541750&rnid=67070110111'], 'KindleStore_KindleeBooks_Romance_Inspirational_Amish_SecondChances':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Amish_SecretBaby':['http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=1','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=2','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=3','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=4','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=5','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=6','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=7','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=8','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=9','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=10','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=11','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=12','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=13','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=14','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=15','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=16','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=17','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=18','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=19','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=20','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=21','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=22','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=23','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=24','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=25','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=26','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=27','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=28','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=29','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=30','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=31','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=32','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=33','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=34','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=35','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=36','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=37','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=38','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=39','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=40','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=41','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6487833011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Christian_LoveTriangle':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707016011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Christian_SecondChances':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Christian_SecretBaby':['http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=1','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=2','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=3','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=4','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=5','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=6','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=7','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=8','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=9','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=10','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=11','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=12','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=13','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=14','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=15','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=16','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=17','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=18','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=19','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=20','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=21','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=22','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=23','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=24','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=25','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=26','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=27','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=28','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=29','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=30','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=31','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=32','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=33','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=34','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=35','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=36','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=37','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=38','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=39','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=40','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=41','http://www.amazon.com/gp/search/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Christian_Contemporary_LoveTriangle':['http://www.amazon.com/s/ref=sr_nr_p_n_feature_seven_br_4?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707016011&bbn=8917424011&ie=UTF8&qid=1431545057&rnid=6707011011','http://www.amazon.com/s/ref=sr_nr_p_n_feature_seven_br_4?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707016011&bbn=8917424011&ie=UTF8&qid=1431545057&rnid=67070110111'], 'KindleStore_KindleeBooks_Romance_Inspirational_Christian_Contemporary_SecondChances':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A7627997011&page=42'], 'KindleStore_KindleeBooks_Romance_Inspirational_Christian_Contemporary_SecretBaby':['http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=1','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=2','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=3','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=4','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=5','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=6','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=7','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=8','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=9','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=10','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=11','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=12','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=13','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=14','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=15','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=16','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=17','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=18','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=19','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=20','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=21','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=22','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=23','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=24','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=25','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=26','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=27','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=28','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=29','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=30','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=31','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=32','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=33','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=34','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=35','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=36','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=37','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=38','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=39','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=40','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=41','http://www.amazon.com/s/ref=sr_pg_2?fst=as%3Aoff&rh=n%3A133140011%2Cn%3A%21133141011%2Cn%3A154606011%2Cn%3A158566011%2Cn%3A6487832011%2Cn%3A6190472011%2Cn%3A8917424011%2Cp_n_feature_seven_browse-bin%3A6707020011&page=42'] } Best_Amish={ 'BooksAmishRomance':['http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Books-Amish-Romance/zgbs/books/7259436011/ref=zg_bs_7259436011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'BooksChristianRomance':['http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Romance/zgbs/books/332930011/ref=zg_bs_332930011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'BooksChristianLiterature&Fiction':['http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Books-Christian-Literature-Fiction/zgbs/books/172806/ref=zg_bs_172806_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'BooksContemporaryChristianRomance':['http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Books-Contemporary-Christian-Romance/zgbs/books/7259437011/ref=zg_bs_7259437011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'BooksReligion&SpirtualityFicition':['http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Literature-Fiction/zgbs/books/12489/ref=zg_bs_12489_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'BooksReligiousRomance':['http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Books-Religious-Romance/zgbs/books/12500/ref=zg_bs_12500_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksAmishRomanceFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Amish-Romance-Fiction/zgbs/digital-text/8917422011/ref=zg_bs_8917422011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksChristianFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Christian-Romance/zgbs/digital-text/6190472011/ref=zg_bs_6190472011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksContemporaryChristianFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Fiction/zgbs/digital-text/7588745011/ref=zg_bs_7588745011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksContemporaryChristianRomance':['http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Contemporary-Christian-Romance/zgbs/digital-text/8917424011/ref=zg_bs_8917424011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksInspirationalReligiousFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Religious-Fiction/zgbs/digital-text/7588874011/ref=zg_bs_7588874011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksInspirationalSpiritualFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Inspirational-Spiritual-Fiction/zgbs/digital-text/8917489011/ref=zg_bs_8917489011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksReligious&InspirationalFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Inspirational-Fiction/zgbs/digital-text/158434011/ref=zg_bs_158434011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksReligiousRomance':['http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Religious-Romance/zgbs/digital-text/158439011/ref=zg_bs_158439011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksWomensChristianFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Christian-Fiction/zgbs/digital-text/7588886011/ref=zg_bs_7588886011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'], 'KindleeBooksWomensReligiousFiction':['http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_1?_encoding=UTF8&pg=1&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_1?_encoding=UTF8&pg=1&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_2?_encoding=UTF8&pg=2&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_2?_encoding=UTF8&pg=2&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_3?_encoding=UTF8&pg=3&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_3?_encoding=UTF8&pg=3&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_4?_encoding=UTF8&pg=4&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_4?_encoding=UTF8&pg=4&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_5?_encoding=UTF8&pg=5&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_5?_encoding=UTF8&pg=5&ajax=1&isAboveTheFold=0','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_6?_encoding=UTF8&pg=6&ajax=1','http://www.amazon.com/Best-Sellers-Kindle-Store-Womens-Religious-Fiction/zgbs/digital-text/7588897011/ref=zg_bs_7588897011_pg_6?_encoding=UTF8&pg=6&ajax=1&isAboveTheFold=0'] } Search_Business={'adapt+to+the+future':['http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=1','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=2','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=3','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=4','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=5','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=6','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=7','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=8','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=9','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=10','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=11','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=12','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=13','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=14','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=15','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=16','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=17','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=18','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=19','http://www.amazon.com/s/rh=%2Ck%3Aadapt+to+the+future&page=20'], 'invest+in+yourself':['http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=1','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=2','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=3','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=4','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=5','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=6','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=7','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=8','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=9','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=10','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=11','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=12','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=13','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=14','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=15','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=16','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=17','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=18','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=19','http://www.amazon.com/s/rh=%2Ck%3Ainvest+in+yourself&page=20'], 'transform+your+career':['http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=1','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=2','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=3','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=4','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=5','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=6','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=7','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=8','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=9','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=10','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=11','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=12','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=13','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=14','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=15','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=16','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=17','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=18','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=19','http://www.amazon.com/s/rh=%2Ck%3Atransform+your+career&page=20'], 'building+a+career':['http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=1','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=2','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=3','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=4','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=5','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=6','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=7','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=8','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=9','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=10','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=11','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=12','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=13','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=14','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=15','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=16','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=17','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=18','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=19','http://www.amazon.com/s/rh=%2Ck%3Abuilding+a+career&page=20'], 'build+a+career':['http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=1','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=2','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=3','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=4','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=5','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=6','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=7','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=8','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=9','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=10','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=11','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=12','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=13','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=14','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=15','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=16','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=17','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=18','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=19','http://www.amazon.com/s/rh=%2Ck%3Abuild+a+career&page=20'], 'career+growth':['http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+growth&page=20'], 'career+plans':['http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+plans&page=20'], 'adding+value':['http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=1','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=2','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=3','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=4','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=5','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=6','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=7','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=8','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=9','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=10','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=11','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=12','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=13','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=14','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=15','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=16','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=17','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=18','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=19','http://www.amazon.com/s/rh=%2Ck%3Aadding+value&page=20'], 'add+value':['http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=1','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=2','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=3','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=4','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=5','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=6','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=7','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=8','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=9','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=10','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=11','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=12','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=13','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=14','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=15','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=16','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=17','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=18','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=19','http://www.amazon.com/s/rh=%2Ck%3Aadd+value&page=20'], 'job+for+tomorrow':['http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=1','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=2','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=3','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=4','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=5','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=6','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=7','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=8','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=9','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=10','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=11','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=12','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=13','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=14','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=15','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=16','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=17','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=18','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=19','http://www.amazon.com/s/rh=%2Ck%3Ajob+for+tomorrow&page=20'], 'professional+development':['http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=1','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=2','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=3','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=4','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=5','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=6','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=7','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=8','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=9','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=10','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=11','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=12','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=13','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=14','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=15','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=16','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=17','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=18','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=19','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+development&page=20'], 'professional+growth':['http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=1','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=2','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=3','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=4','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=5','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=6','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=7','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=8','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=9','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=10','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=11','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=12','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=13','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=14','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=15','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=16','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=17','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=18','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=19','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=20'], 'intelligent+risk':['http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=1','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=2','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=3','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=4','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=5','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=6','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=7','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=8','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=9','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=10','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=11','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=12','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=13','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=14','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=15','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=16','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=17','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=18','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=19','http://www.amazon.com/s/rh=%2Ck%3Aintelligent+risk&page=20'], 'personal+brand':['http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=1','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=2','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=3','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=4','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=5','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=6','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=7','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=8','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=9','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=10','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=11','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=12','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=13','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=14','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=15','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=16','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=17','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=18','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=19','http://www.amazon.com/s/rh=%2Ck%3Apersonal+brand&page=20'], 'personal+branding':['http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=1','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=2','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=3','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=4','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=5','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=6','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=7','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=8','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=9','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=10','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=11','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=12','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=13','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=14','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=15','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=16','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=17','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=18','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=19','http://www.amazon.com/s/rh=%2Ck%3Apersonal+branding&page=20'], 'your+brand':['http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=1','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=2','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=3','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=4','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=5','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=6','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=7','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=8','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=9','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=10','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=11','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=12','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=13','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=14','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=15','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=16','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=17','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=18','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=19','http://www.amazon.com/s/rh=%2Ck%3Ayour+brand&page=20'], 'personal+development':['http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=1','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=2','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=3','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=4','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=5','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=6','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=7','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=8','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=9','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=10','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=11','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=12','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=13','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=14','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=15','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=16','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=17','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=18','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=19','http://www.amazon.com/s/rh=%2Ck%3Apersonal+development&page=20'], 'entrepreneurship':['http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=1','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=2','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=3','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=4','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=5','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=6','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=7','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=8','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=9','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=10','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=11','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=12','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=13','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=14','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=15','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=16','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=17','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=18','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=19','http://www.amazon.com/s/rh=%2Ck%3Aentrepreneurship&page=20'], 'business+inspiration':['http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=1','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=2','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=3','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=4','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=5','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=6','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=7','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=8','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=9','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=10','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=11','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=12','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=13','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=14','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=15','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=16','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=17','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=18','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=19','http://www.amazon.com/s/rh=%2Ck%3Abusiness+inspiration&page=20'], 'professional+inspiration':['http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=1','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=2','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=3','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=4','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=5','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=6','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=7','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=8','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=9','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=10','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=11','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=12','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=13','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=14','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=15','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=16','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=17','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=18','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=19','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+inspiration&page=20'], 'success+stories':['http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=1','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=2','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=3','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=4','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=5','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=6','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=7','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=8','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=9','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=10','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=11','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=12','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=13','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=14','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=15','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=16','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=17','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=18','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=19','http://www.amazon.com/s/rh=%2Ck%3Asuccess+stories&page=20'], 'career+guide':['http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+guide&page=20'], 'career+guides':['http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+guides&page=20'], 'personal+success':['http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Apersonal+success&page=20'], 'personal+growth':['http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=1','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=2','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=3','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=4','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=5','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=6','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=7','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=8','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=9','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=10','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=11','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=12','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=13','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=14','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=15','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=16','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=17','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=18','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=19','http://www.amazon.com/s/rh=%2Ck%3Apersonal+growth&page=20'], 'startup':['http://www.amazon.com/s/rh=%2Ck%3Astartup&page=1','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=2','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=3','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=4','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=5','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=6','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=7','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=8','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=9','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=10','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=11','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=12','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=13','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=14','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=15','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=16','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=17','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=18','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=19','http://www.amazon.com/s/rh=%2Ck%3Astartup&page=20'], 'founders':['http://www.amazon.com/s/rh=%2Ck%3Afounders&page=1','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=2','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=3','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=4','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=5','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=6','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=7','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=8','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=9','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=10','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=11','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=12','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=13','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=14','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=15','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=16','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=17','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=18','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=19','http://www.amazon.com/s/rh=%2Ck%3Afounders&page=20'], 'startup+founders':['http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=1','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=2','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=3','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=4','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=5','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=6','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=7','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=8','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=9','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=10','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=11','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=12','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=13','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=14','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=15','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=16','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=17','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=18','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=19','http://www.amazon.com/s/rh=%2Ck%3Astartup+founders&page=20'], 'startup+success':['http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Astartup+success&page=20'], 'achieving+success':['http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=20'], 'spreading+happiness':['http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=1','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=2','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=3','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=4','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=5','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=6','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=7','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=8','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=9','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=10','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=11','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=12','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=13','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=14','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=15','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=16','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=17','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=18','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=19','http://www.amazon.com/s/rh=%2Ck%3Aspreading+happiness&page=20'], 'achieving+happiness':['http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=1','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=2','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=3','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=4','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=5','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=6','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=7','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=8','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=9','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=10','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=11','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=12','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=13','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=14','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=15','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=16','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=17','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=18','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=19','http://www.amazon.com/s/rh=%2Ck%3Aachieving+happiness&page=20'], 'finding+happiness':['http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=1','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=2','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=3','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=4','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=5','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=6','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=7','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=8','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=9','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=10','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=11','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=12','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=13','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=14','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=15','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=16','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=17','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=18','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=19','http://www.amazon.com/s/rh=%2Ck%3Afinding+happiness&page=20'], 'after+happiness':['http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=1','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=2','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=3','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=4','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=5','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=6','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=7','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=8','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=9','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=10','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=11','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=12','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=13','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=14','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=15','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=16','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=17','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=18','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=19','http://www.amazon.com/s/rh=%2Ck%3Aafter+happiness&page=20'], 'positive+change':['http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=1','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=2','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=3','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=4','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=5','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=6','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=7','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=8','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=9','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=10','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=11','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=12','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=13','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=14','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=15','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=16','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=17','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=18','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=19','http://www.amazon.com/s/rh=%2Ck%3Apositive+change&page=20'], 'professional+success':['http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+success&page=20'], 'career+advancement':['http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+advancement&page=20'], 'success+accelerants':['http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=1','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=2','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=3','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=4','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=5','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=6','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=7','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=8','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=9','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=10','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=11','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=12','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=13','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=14','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=15','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=16','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=17','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=18','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=19','http://www.amazon.com/s/rh=%2Ck%3Asuccess+accelerants&page=20'], 'positive+inception':['http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=1','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=2','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=3','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=4','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=5','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=6','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=7','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=8','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=9','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=10','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=11','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=12','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=13','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=14','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=15','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=16','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=17','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=18','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=19','http://www.amazon.com/s/rh=%2Ck%3Apositive+inception&page=20'], 'fullest+potential':['http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=1','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=2','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=3','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=4','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=5','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=6','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=7','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=8','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=9','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=10','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=11','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=12','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=13','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=14','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=15','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=16','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=17','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=18','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=19','http://www.amazon.com/s/rh=%2Ck%3Afullest+potential&page=20'], 'positive+genius':['http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=1','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=2','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=3','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=4','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=5','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=6','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=7','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=8','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=9','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=10','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=11','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=12','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=13','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=14','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=15','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=16','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=17','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=18','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=19','http://www.amazon.com/s/rh=%2Ck%3Apositive+genius&page=20'], 'positive+psychology':['http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=1','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=2','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=3','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=4','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=5','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=6','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=7','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=8','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=9','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=10','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=11','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=12','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=13','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=14','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=15','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=16','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=17','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=18','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=19','http://www.amazon.com/s/rh=%2Ck%3Apositive+psychology&page=20'], 'science+of+happiness':['http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=1','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=2','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=3','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=4','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=5','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=6','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=7','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=8','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=9','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=10','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=11','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=12','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=13','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=14','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=15','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=16','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=17','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=18','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=19','http://www.amazon.com/s/rh=%2Ck%3Ascience+of+happiness&page=20'], 'self+improvement':['http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=1','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=2','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=3','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=4','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=5','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=6','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=7','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=8','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=9','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=10','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=11','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=12','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=13','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=14','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=15','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=16','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=17','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=18','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=19','http://www.amazon.com/s/rh=%2Ck%3Aself+improvement&page=20'], 'self-improvement':['http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=1','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=2','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=3','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=4','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=5','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=6','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=7','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=8','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=9','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=10','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=11','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=12','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=13','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=14','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=15','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=16','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=17','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=18','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=19','http://www.amazon.com/s/rh=%2Ck%3Aself-improvement&page=20'], 'positive+inspiration':['http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=1','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=2','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=3','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=4','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=5','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=6','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=7','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=8','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=9','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=10','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=11','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=12','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=13','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=14','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=15','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=16','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=17','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=18','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=19','http://www.amazon.com/s/rh=%2Ck%3Apositive+inspiration&page=20'], 'success+formula':['http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=1','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=2','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=3','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=4','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=5','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=6','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=7','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=8','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=9','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=10','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=11','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=12','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=13','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=14','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=15','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=16','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=17','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=18','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=19','http://www.amazon.com/s/rh=%2Ck%3Asuccess+formula&page=20'], 'formula+for+success':['http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Aformula+for+success&page=20'], 'self-help':['http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=1','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=2','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=3','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=4','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=5','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=6','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=7','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=8','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=9','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=10','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=11','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=12','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=13','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=14','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=15','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=16','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=17','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=18','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=19','http://www.amazon.com/s/rh=%2Ck%3Aself-help&page=20'], 'achieving+success':['http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Aachieving+success&page=20'], 'positive+thinking':['http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=1','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=2','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=3','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=4','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=5','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=6','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=7','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=8','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=9','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=10','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=11','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=12','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=13','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=14','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=15','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=16','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=17','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=18','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=19','http://www.amazon.com/s/rh=%2Ck%3Apositive+thinking&page=20'], 'motivational+books':['http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=1','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=2','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=3','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=4','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=5','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=6','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=7','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=8','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=9','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=10','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=11','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=12','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=13','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=14','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=15','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=16','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=17','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=18','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=19','http://www.amazon.com/s/rh=%2Ck%3Amotivational+books&page=20'], 'change+your+thinking':['http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=1','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=2','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=3','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=4','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=5','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=6','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=7','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=8','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=9','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=10','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=11','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=12','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=13','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=14','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=15','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=16','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=17','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=18','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=19','http://www.amazon.com/s/rh=%2Ck%3Achange+your+thinking&page=20'], 'professional+growth':['http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=1','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=2','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=3','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=4','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=5','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=6','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=7','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=8','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=9','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=10','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=11','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=12','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=13','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=14','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=15','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=16','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=17','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=18','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=19','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+growth&page=20'], 'navigating+the+workplace':['http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=1','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=2','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=3','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=4','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=5','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=6','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=7','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=8','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=9','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=10','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=11','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=12','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=13','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=14','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=15','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=16','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=17','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=18','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=19','http://www.amazon.com/s/rh=%2Ck%3Anavigating+the+workplace&page=20'], 'college+graduation+gift':['http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=1','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=2','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=3','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=4','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=5','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=6','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=7','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=8','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=9','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=10','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=11','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=12','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=13','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=14','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=15','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=16','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=17','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=18','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=19','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gift&page=20'], 'college+graduation+gifts':['http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=1','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=2','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=3','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=4','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=5','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=6','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=7','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=8','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=9','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=10','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=11','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=12','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=13','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=14','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=15','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=16','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=17','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=18','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=19','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+gifts&page=20'], 'graduation+books':['http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=1','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=2','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=3','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=4','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=5','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=6','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=7','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=8','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=9','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=10','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=11','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=12','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=13','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=14','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=15','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=16','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=17','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=18','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=19','http://www.amazon.com/s/rh=%2Ck%3Agraduation+books&page=20'], 'college+graduation+books':['http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=1','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=2','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=3','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=4','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=5','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=6','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=7','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=8','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=9','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=10','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=11','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=12','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=13','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=14','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=15','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=16','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=17','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=18','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=19','http://www.amazon.com/s/rh=%2Ck%3Acollege+graduation+books&page=20'], 'getting+ahead':['http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=1','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=2','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=3','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=4','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=5','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=6','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=7','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=8','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=9','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=10','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=11','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=12','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=13','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=14','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=15','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=16','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=17','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=18','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=19','http://www.amazon.com/s/rh=%2Ck%3Agetting+ahead&page=20'], 'getting+what+you+want':['http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=1','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=2','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=3','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=4','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=5','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=6','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=7','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=8','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=9','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=10','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=11','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=12','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=13','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=14','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=15','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=16','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=17','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=18','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=19','http://www.amazon.com/s/rh=%2Ck%3Agetting+what+you+want&page=20'], 'AEI':['http://www.amazon.com/s/rh=%2Ck%3AAEI&page=1','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=2','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=3','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=4','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=5','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=6','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=7','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=8','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=9','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=10','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=11','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=12','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=13','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=14','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=15','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=16','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=17','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=18','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=19','http://www.amazon.com/s/rh=%2Ck%3AAEI&page=20'], 'American+Enterprise+Institute':['http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=1','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=2','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=3','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=4','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=5','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=6','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=7','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=8','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=9','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=10','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=11','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=12','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=13','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=14','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=15','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=16','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=17','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=18','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=19','http://www.amazon.com/s/rh=%2Ck%3AAmerican+Enterprise+Institute&page=20'], 'career+success':['http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+success&page=20'], 'first+job+after+college':['http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=1','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=2','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=3','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=4','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=5','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=6','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=7','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=8','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=9','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=10','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=11','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=12','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=13','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=14','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=15','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=16','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=17','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=18','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=19','http://www.amazon.com/s/rh=%2Ck%3Afirst+job+after+college&page=20'], 'career+advice':['http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=1','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=2','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=3','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=4','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=5','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=6','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=7','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=8','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=9','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=10','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=11','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=12','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=13','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=14','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=15','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=16','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=17','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=18','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=19','http://www.amazon.com/s/rh=%2Ck%3Acareer+advice&page=20'], 'living+well':['http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=1','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=2','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=3','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=4','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=5','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=6','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=7','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=8','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=9','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=10','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=11','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=12','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=13','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=14','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=15','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=16','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=17','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=18','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=19','http://www.amazon.com/s/rh=%2Ck%3Aliving+well&page=20'], 'office+manners':['http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=1','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=2','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=3','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=4','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=5','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=6','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=7','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=8','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=9','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=10','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=11','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=12','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=13','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=14','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=15','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=16','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=17','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=18','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=19','http://www.amazon.com/s/rh=%2Ck%3Aoffice+manners&page=20'], 'professional+writing':['http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=1','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=2','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=3','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=4','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=5','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=6','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=7','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=8','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=9','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=10','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=11','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=12','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=13','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=14','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=15','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=16','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=17','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=18','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=19','http://www.amazon.com/s/rh=%2Ck%3Aprofessional+writing&page=20'], 'adult+life':['http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=1','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=2','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=3','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=4','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=5','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=6','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=7','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=8','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=9','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=10','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=11','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=12','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=13','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=14','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=15','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=16','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=17','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=18','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=19','http://www.amazon.com/s/rh=%2Ck%3Aadult+life&page=20'], 'workplace+culture':['http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=1','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=2','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=3','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=4','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=5','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=6','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=7','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=8','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=9','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=10','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=11','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=12','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=13','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=14','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=15','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=16','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=17','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=18','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=19','http://www.amazon.com/s/rh=%2Ck%3Aworkplace+culture&page=20'], 'communication+skills':['http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=1','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=2','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=3','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=4','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=5','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=6','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=7','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=8','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=9','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=10','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=11','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=12','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=13','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=14','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=15','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=16','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=17','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=18','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=19','http://www.amazon.com/s/rh=%2Ck%3Acommunication+skills&page=20'], 'soft+skills':['http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=1','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=2','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=3','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=4','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=5','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=6','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=7','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=8','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=9','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=10','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=11','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=12','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=13','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=14','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=15','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=16','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=17','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=18','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=19','http://www.amazon.com/s/rh=%2Ck%3Asoft+skills&page=20'], 'living+a+good+life':['http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=1','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=2','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=3','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=4','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=5','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=6','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=7','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=8','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=9','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=10','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=11','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=12','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=13','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=14','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=15','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=16','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=17','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=18','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=19','http://www.amazon.com/s/rh=%2Ck%3Aliving+a+good+life&page=20'], 'bad+boss':['http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=1','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=2','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=3','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=4','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=5','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=6','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=7','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=8','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=9','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=10','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=11','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=12','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=13','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=14','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=15','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=16','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=17','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=18','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=19','http://www.amazon.com/s/rh=%2Ck%3Abad+boss&page=20'], 'business+classic':['http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=1','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=2','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=3','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=4','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=5','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=6','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=7','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=8','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=9','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=10','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=11','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=12','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=13','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=14','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=15','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=16','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=17','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=18','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=19','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classic&page=20'], 'business+classics':['http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=1','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=2','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=3','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=4','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=5','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=6','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=7','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=8','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=9','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=10','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=11','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=12','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=13','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=14','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=15','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=16','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=17','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=18','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=19','http://www.amazon.com/s/rh=%2Ck%3Abusiness+classics&page=20'], 'power+of+relationships':['http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=1','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=2','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=3','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=4','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=5','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=6','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=7','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=8','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=9','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=10','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=11','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=12','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=13','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=14','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=15','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=16','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=17','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=18','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=19','http://www.amazon.com/s/rh=%2Ck%3Apower+of+relationships&page=20'], 'networking':['http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=1','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=2','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=3','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=4','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=5','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=6','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=7','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=8','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=9','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=10','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=11','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=12','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=13','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=14','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=15','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=16','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=17','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=18','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=19','http://www.amazon.com/s/rh=%2Ck%3Anetworking&page=20'], 'making+connections':['http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=1','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=2','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=3','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=4','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=5','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=6','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=7','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=8','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=9','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=10','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=11','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=12','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=13','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=14','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=15','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=16','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=17','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=18','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=19','http://www.amazon.com/s/rh=%2Ck%3Amaking+connections&page=20'], 'collaborative+management':['http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=1','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=2','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=3','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=4','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=5','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=6','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=7','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=8','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=9','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=10','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=11','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=12','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=13','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=14','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=15','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=16','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=17','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=18','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=19','http://www.amazon.com/s/rh=%2Ck%3Acollaborative+management&page=20'], 'connecting':['http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=1','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=2','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=3','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=4','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=5','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=6','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=7','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=8','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=9','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=10','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=11','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=12','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=13','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=14','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=15','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=16','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=17','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=18','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=19','http://www.amazon.com/s/rh=%2Ck%3Aconnecting&page=20'], 'connecting+to+people':['http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=1','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=2','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=3','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=4','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=5','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=6','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=7','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=8','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=9','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=10','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=11','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=12','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=13','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=14','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=15','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=16','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=17','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=18','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=19','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+people&page=20'], 'connecting+to+the+world':['http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=1','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=2','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=3','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=4','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=5','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=6','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=7','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=8','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=9','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=10','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=11','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=12','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=13','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=14','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=15','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=16','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=17','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=18','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=19','http://www.amazon.com/s/rh=%2Ck%3Aconnecting+to+the+world&page=20'], 'relationship+building':['http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=1','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=2','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=3','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=4','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=5','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=6','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=7','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=8','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=9','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=10','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=11','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=12','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=13','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=14','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=15','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=16','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=17','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=18','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=19','http://www.amazon.com/s/rh=%2Ck%3Arelationship+building&page=20'], 'meaningful+connections':['http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=1','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=2','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=3','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=4','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=5','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=6','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=7','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=8','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=9','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=10','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=11','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=12','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=13','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=14','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=15','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=16','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=17','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=18','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=19','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+connections&page=20'], 'corporate+ladder':['http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=1','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=2','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=3','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=4','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=5','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=6','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=7','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=8','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=9','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=10','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=11','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=12','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=13','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=14','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=15','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=16','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=17','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=18','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=19','http://www.amazon.com/s/rh=%2Ck%3Acorporate+ladder&page=20'], 'business+relationships':['http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=1','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=2','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=3','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=4','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=5','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=6','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=7','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=8','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=9','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=10','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=11','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=12','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=13','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=14','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=15','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=16','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=17','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=18','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=19','http://www.amazon.com/s/rh=%2Ck%3Abusiness+relationships&page=20'], 'meaningful+relationships':['http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=1','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=2','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=3','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=4','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=5','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=6','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=7','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=8','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=9','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=10','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=11','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=12','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=13','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=14','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=15','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=16','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=17','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=18','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=19','http://www.amazon.com/s/rh=%2Ck%3Ameaningful+relationships&page=20'], 'business+success':['http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=1','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=2','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=3','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=4','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=5','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=6','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=7','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=8','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=9','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=10','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=11','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=12','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=13','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=14','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=15','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=16','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=17','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=18','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=19','http://www.amazon.com/s/rh=%2Ck%3Abusiness+success&page=20'], 'social+media+networking':['http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=1','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=2','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=3','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=4','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=5','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=6','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=7','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=8','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=9','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=10','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=11','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=12','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=13','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=14','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=15','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=16','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=17','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=18','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=19','http://www.amazon.com/s/rh=%2Ck%3Asocial+media+networking&page=20'], 'making+friends':['http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=1','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=2','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=3','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=4','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=5','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=6','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=7','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=8','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=9','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=10','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=11','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=12','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=13','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=14','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=15','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=16','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=17','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=18','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=19','http://www.amazon.com/s/rh=%2Ck%3Amaking+friends&page=20'], 'get+what+you+want':['http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=1','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=2','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=3','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=4','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=5','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=6','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=7','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=8','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=9','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=10','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=11','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=12','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=13','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=14','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=15','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=16','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=17','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=18','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=19','http://www.amazon.com/s/rh=%2Ck%3Aget+what+you+want&page=20'], 'business+psychology':['http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=1','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=2','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=3','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=4','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=5','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=6','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=7','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=8','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=9','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=10','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=11','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=12','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=13','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=14','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=15','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=16','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=17','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=18','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=19','http://www.amazon.com/s/rh=%2Ck%3Abusiness+psychology&page=20'], 'decision-making':['http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=1','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=2','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=3','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=4','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=5','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=6','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=7','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=8','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=9','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=10','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=11','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=12','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=13','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=14','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=15','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=16','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=17','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=18','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=19','http://www.amazon.com/s/rh=%2Ck%3Adecision-making&page=20'], 'decision+making':['http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=1','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=2','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=3','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=4','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=5','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=6','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=7','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=8','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=9','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=10','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=11','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=12','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=13','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=14','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=15','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=16','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=17','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=18','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=19','http://www.amazon.com/s/rh=%2Ck%3Adecision+making&page=20'], 'personal+improvement':['http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=1','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=2','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=3','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=4','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=5','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=6','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=7','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=8','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=9','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=10','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=11','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=12','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=13','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=14','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=15','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=16','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=17','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=18','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=19','http://www.amazon.com/s/rh=%2Ck%3Apersonal+improvement&page=20'], 'self+help':['http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=1','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=2','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=3','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=4','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=5','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=6','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=7','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=8','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=9','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=10','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=11','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=12','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=13','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=14','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=15','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=16','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=17','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=18','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=19','http://www.amazon.com/s/rh=%2Ck%3Aself+help&page=20'], 'overcoming+obstacles':['http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=1','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=2','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=3','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=4','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=5','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=6','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=7','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=8','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=9','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=10','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=11','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=12','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=13','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=14','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=15','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=16','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=17','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=18','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=19','http://www.amazon.com/s/rh=%2Ck%3Aovercoming+obstacles&page=20'], 'pressure+management':['http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=1','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=2','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=3','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=4','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=5','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=6','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=7','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=8','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=9','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=10','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=11','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=12','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=13','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=14','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=15','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=16','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=17','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=18','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=19','http://www.amazon.com/s/rh=%2Ck%3Apressure+management&page=20'], 'performance+under+pressure':['http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Aperformance+under+pressure&page=20'], 'stress+management':['http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=1','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=2','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=3','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=4','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=5','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=6','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=7','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=8','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=9','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=10','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=11','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=12','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=13','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=14','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=15','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=16','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=17','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=18','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=19','http://www.amazon.com/s/rh=%2Ck%3Astress+management&page=20'], 'decisions+under+pressure':['http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Adecisions+under+pressure&page=20'], 'success+under+pressure':['http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Asuccess+under+pressure&page=20'], 'interview+stress':['http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=1','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=2','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=3','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=4','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=5','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=6','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=7','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=8','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=9','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=10','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=11','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=12','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=13','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=14','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=15','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=16','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=17','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=18','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=19','http://www.amazon.com/s/rh=%2Ck%3Ainterview+stress&page=20'], 'performance+anxiety':['http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=1','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=2','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=3','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=4','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=5','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=6','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=7','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=8','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=9','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=10','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=11','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=12','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=13','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=14','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=15','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=16','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=17','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=18','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=19','http://www.amazon.com/s/rh=%2Ck%3Aperformance+anxiety&page=20'], 'nerves+of+steel':['http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=1','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=2','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=3','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=4','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=5','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=6','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=7','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=8','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=9','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=10','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=11','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=12','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=13','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=14','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=15','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=16','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=17','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=18','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=19','http://www.amazon.com/s/rh=%2Ck%3Anerves+of+steel&page=20'], 'COTE':['http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=1','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=2','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=3','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=4','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=5','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=6','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=7','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=8','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=9','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=10','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=11','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=12','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=13','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=14','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=15','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=16','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=17','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=18','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=19','http://www.amazon.com/s/rh=%2Ck%3ACOTE&page=20'], 'pressure+solutions':['http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=1','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=2','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=3','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=4','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=5','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=6','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=7','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=8','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=9','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=10','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=11','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=12','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=13','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=14','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=15','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=16','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=17','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=18','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=19','http://www.amazon.com/s/rh=%2Ck%3Apressure+solutions&page=20'], 'power+of+pressure':['http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Apower+of+pressure&page=20'], 'nature+of+pressure':['http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Anature+of+pressure&page=20'], 'pressure+traps':['http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=1','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=2','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=3','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=4','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=5','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=6','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=7','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=8','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=9','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=10','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=11','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=12','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=13','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=14','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=15','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=16','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=17','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=18','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=19','http://www.amazon.com/s/rh=%2Ck%3Apressure+traps&page=20'], 'handling+pressure':['http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Ahandling+pressure&page=20'], 'handling+stress':['http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=1','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=2','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=3','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=4','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=5','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=6','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=7','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=8','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=9','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=10','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=11','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=12','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=13','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=14','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=15','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=16','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=17','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=18','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=19','http://www.amazon.com/s/rh=%2Ck%3Ahandling+stress&page=20'], 'face+pressure':['http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=1','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=2','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=3','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=4','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=5','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=6','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=7','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=8','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=9','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=10','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=11','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=12','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=13','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=14','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=15','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=16','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=17','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=18','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=19','http://www.amazon.com/s/rh=%2Ck%3Aface+pressure&page=20'], 'health+and+human+potential':['http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=1','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=2','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=3','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=4','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=5','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=6','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=7','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=8','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=9','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=10','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=11','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=12','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=13','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=14','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=15','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=16','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=17','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=18','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=19','http://www.amazon.com/s/rh=%2Ck%3Ahealth+and+human+potential&page=20'], 'IHHP':['http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=1','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=2','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=3','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=4','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=5','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=6','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=7','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=8','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=9','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=10','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=11','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=12','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=13','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=14','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=15','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=16','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=17','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=18','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=19','http://www.amazon.com/s/rh=%2Ck%3AIHHP&page=20'] }
class Solution: def coinChange(self, coins, amount): """ :type coins: List[int] :type amount: int :rtype: int """ dp = [0] + [float('inf')] * amount for i in range(1, amount + 1): dp[i] = min([dp[i - c] if i - c >= 0 else float('inf') for c in coins]) + 1 return dp[amount] if dp[amount] != float('inf') else -1
def find(searchList, elem): endList = [] for indElem in range(0,len(elem)): resultList = [] for ind in range(0, len(searchList)): if searchList[ind] == elem[indElem]: resultList.append(ind) endList.extend([resultList]) return endList
#!/usr/bin/env python # vim: ai ts=4 sts=4 et sw=4 title = "AJAX Helper" host = "localhost" port = 8001
Names = ["John","Steve","Brian","Jim","Alex","Paul","Micheal","Bruce","Alfred","Buzz","Eric","Gary"] Nombre = [i for i in range(1,1000000)] def affiche(names): for name in names: yield name def nextSquare(): i = 1; # An Infinite loop to generate squares while True: yield i*i i += 1 # Next execution resumes # from this point def main(): Test = affiche(Names) for nb in Test: print (nb) for nb in affiche(Nombre): print(nb) for num in nextSquare(): if num > 100: break print(num) if __name__=="__main__": main()