content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
def print_formatted(number): # your code goes here if number in range (1,100): l = len(bin(number)[2:]) for i in range (1,n+1): decimal = str(i).rjust(l) octal = str(oct(i)[2:]).rjust(l) hexadecimal = hex(i)[2:].rjust(l) binary = bin(i)[2:].rjust(l) print (decimal + ' ' + octal + ' ' + hexadecimal.upper() + ' ' + binary) else: print ("Input not valid. Retry") if __name__ == '__main__': n = int(input()) print_formatted(n)
def print_formatted(number): if number in range(1, 100): l = len(bin(number)[2:]) for i in range(1, n + 1): decimal = str(i).rjust(l) octal = str(oct(i)[2:]).rjust(l) hexadecimal = hex(i)[2:].rjust(l) binary = bin(i)[2:].rjust(l) print(decimal + ' ' + octal + ' ' + hexadecimal.upper() + ' ' + binary) else: print('Input not valid. Retry') if __name__ == '__main__': n = int(input()) print_formatted(n)
def get_city_year(p0, perc, delta, p): years = 1 curr = p0 + p0 * (0.01 * perc) + delta if curr <= p0: # remember == would imply stagnation return -1 else: while curr < p: curr = curr + curr * (0.01 * perc) + delta years += 1 return years print(get_city_year(1000, 2, -50, 5000)) print(get_city_year(1500, 5, 100, 5000)) print(get_city_year(1500000, 2.5, 10000, 2000000)) print(get_city_year(1000, 2, -20, 2000))
def get_city_year(p0, perc, delta, p): years = 1 curr = p0 + p0 * (0.01 * perc) + delta if curr <= p0: return -1 else: while curr < p: curr = curr + curr * (0.01 * perc) + delta years += 1 return years print(get_city_year(1000, 2, -50, 5000)) print(get_city_year(1500, 5, 100, 5000)) print(get_city_year(1500000, 2.5, 10000, 2000000)) print(get_city_year(1000, 2, -20, 2000))
#First Example - uncomment lines or change values to test the code phone_balance = 7.62 bank_balance = 104.39 #phone_balance = 12.34 #bank_balance = 25 if phone_balance < 10: phone_balance += 10 bank_balance -= 10 print(phone_balance) print(bank_balance) #Second Example #change the number to experiment! number = 145346334 #number = 5 #3 sir if number % 2 == 0: print("The number " + str(number) + " is even.") else: print("The number " + str(number) + " is odd.") #Third Example #change the age to experiment with the pricing age = 35 #set the age limits for bus fares free_up_to_age = 4 child_up_to_age = 18 senior_from_age = 65 #set bus fares concession_ticket = 1.25 adult_ticket = 2.50 #ticket price logic if age <= free_up_to_age: ticket_price = 0 elif age <= child_up_to_age: ticket_price = concession_ticket elif age >= senior_from_age: ticket_price = concession_ticket else: ticket_price = adult_ticket message = "Somebody who is {} years old will pay ${} to ride the bus.".format(age,ticket_price) print(message)
phone_balance = 7.62 bank_balance = 104.39 if phone_balance < 10: phone_balance += 10 bank_balance -= 10 print(phone_balance) print(bank_balance) number = 145346334 if number % 2 == 0: print('The number ' + str(number) + ' is even.') else: print('The number ' + str(number) + ' is odd.') age = 35 free_up_to_age = 4 child_up_to_age = 18 senior_from_age = 65 concession_ticket = 1.25 adult_ticket = 2.5 if age <= free_up_to_age: ticket_price = 0 elif age <= child_up_to_age: ticket_price = concession_ticket elif age >= senior_from_age: ticket_price = concession_ticket else: ticket_price = adult_ticket message = 'Somebody who is {} years old will pay ${} to ride the bus.'.format(age, ticket_price) print(message)
print('pypypy') print('pypypy111') print('pycharm1111') print('pycharm222') print('pypypy222') print('pycharm3333') print('pypypy333') hheheheh # zuishuaidezishi ssshhhhhhh
print('pypypy') print('pypypy111') print('pycharm1111') print('pycharm222') print('pypypy222') print('pycharm3333') print('pypypy333') hheheheh ssshhhhhhh
# Design # a # stack # that # supports # push, pop, top, and retrieving # the # minimum # element in constant # time. # # Implement # the # MinStack # # # class: # # # MinStack() # initializes # the # stack # object. # void # push(int # val) pushes # the # element # val # onto # the # stack. # void # pop() # removes # the # element # on # the # top # of # the # stack. # int # top() # gets # the # top # element # of # the # stack. # int # getMin() # retrieves # the # minimum # element in the # stack. # # Example # 1: # # Input # ["MinStack", "push", "push", "push", "getMin", "pop", "top", "getMin"] # [[], [-2], [0], [-3], [], [], [], []] # # Output # [null, null, null, null, -3, null, 0, -2] # # Explanation # MinStack # minStack = new # MinStack(); # minStack.push(-2); # minStack.push(0); # minStack.push(-3); # minStack.getMin(); // return -3 # minStack.pop(); # minStack.top(); // return 0 # minStack.getMin(); // return -2 # # Constraints: # # -231 <= val <= 231 - 1 # Methods # pop, top and getMin # operations # will # always # be # called # on # non - empty # stacks. # At # most # 3 * 104 # calls # will # be # made # to # push, pop, top, and getMin. class MinStack: def __init__(self): self.stack = [] def push(self, val: int) -> None: self.stack.append(val) def pop(self) -> None: if (len(self.stack) > 0): self.stack.pop() def top(self) -> int: if (len(self.stack) > 0): return self.stack[-1] def getMin(self) -> int: if (len(self.stack) > 0): return min(self.stack) # Your MinStack object will be instantiated and called as such: # obj = MinStack() # obj.push(val) # obj.pop() # param_3 = obj.top() # param_4 = obj.getMin()
class Minstack: def __init__(self): self.stack = [] def push(self, val: int) -> None: self.stack.append(val) def pop(self) -> None: if len(self.stack) > 0: self.stack.pop() def top(self) -> int: if len(self.stack) > 0: return self.stack[-1] def get_min(self) -> int: if len(self.stack) > 0: return min(self.stack)
def baseline_opt_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 if prob_type == 'simple': defaults['corrEps'] = 1e-4 elif prob_type == 'nonconvex': defaults['corrEps'] = 1e-4 elif 'acopf' in prob_type: defaults['corrEps'] = 1e-4 return defaults def baseline_nn_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 defaults['saveAllStats'] = True defaults['resultsSaveFreq'] = 50 if prob_type == 'simple': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-4 defaults['hiddenSize'] = 200 defaults['softWeight'] = 100 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-7 defaults['corrMomentum'] = 0.5 elif prob_type == 'nonconvex': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-4 defaults['hiddenSize'] = 200 defaults['softWeight'] = 100 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-7 defaults['corrMomentum'] = 0.5 elif 'acopf' in prob_type: defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-3 defaults['hiddenSize'] = 200 defaults['softWeight'] = 100 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrTestMaxSteps'] = 5 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-5 defaults['corrMomentum'] = 0.5 else: raise NotImplementedError return defaults def baseline_eq_nn_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 defaults['saveAllStats'] = True defaults['resultsSaveFreq'] = 50 if prob_type == 'simple': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-4 defaults['hiddenSize'] = 200 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-7 defaults['corrMomentum'] = 0.5 elif prob_type == 'nonconvex': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-4 defaults['hiddenSize'] = 200 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-7 defaults['corrMomentum'] = 0.5 elif 'acopf' in prob_type: defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-3 defaults['hiddenSize'] = 200 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrMode'] = 'full' defaults['corrTestMaxSteps'] = 5 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-5 defaults['corrMomentum'] = 0.5 else: raise NotImplementedError return defaults def method_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 defaults['saveAllStats'] = True defaults['resultsSaveFreq'] = 50 if prob_type == 'simple': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-4 defaults['hiddenSize'] = 200 defaults['softWeight'] = 10 # use 100 if useCompl=False defaults['softWeightEqFrac'] = 0.5 defaults['useCompl'] = True defaults['useTrainCorr'] = True defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' # use 'full' if useCompl=False defaults['corrTrainSteps'] = 10 defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-7 defaults['corrMomentum'] = 0.5 elif prob_type == 'nonconvex': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-4 defaults['hiddenSize'] = 200 defaults['softWeight'] = 10 # use 100 if useCompl=False defaults['softWeightEqFrac'] = 0.5 defaults['useCompl'] = True defaults['useTrainCorr'] = True defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' # use 'full' if useCompl=False defaults['corrTrainSteps'] = 10 defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-7 defaults['corrMomentum'] = 0.5 elif 'acopf' in prob_type: defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 1e-3 defaults['hiddenSize'] = 200 defaults['softWeight'] = 10 # use 100 if useCompl=False defaults['softWeightEqFrac'] = 0.5 defaults['useCompl'] = True defaults['useTrainCorr'] = True defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' # use 'full' if useCompl=False defaults['corrTrainSteps'] = 5 defaults['corrTestMaxSteps'] = 5 defaults['corrEps'] = 1e-4 defaults['corrLr'] = 1e-4 # use 1e-5 if useCompl=False defaults['corrMomentum'] = 0.5 else: raise NotImplementedError return defaults
def baseline_opt_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 if prob_type == 'simple': defaults['corrEps'] = 0.0001 elif prob_type == 'nonconvex': defaults['corrEps'] = 0.0001 elif 'acopf' in prob_type: defaults['corrEps'] = 0.0001 return defaults def baseline_nn_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 defaults['saveAllStats'] = True defaults['resultsSaveFreq'] = 50 if prob_type == 'simple': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.0001 defaults['hiddenSize'] = 200 defaults['softWeight'] = 100 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-07 defaults['corrMomentum'] = 0.5 elif prob_type == 'nonconvex': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.0001 defaults['hiddenSize'] = 200 defaults['softWeight'] = 100 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-07 defaults['corrMomentum'] = 0.5 elif 'acopf' in prob_type: defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.001 defaults['hiddenSize'] = 200 defaults['softWeight'] = 100 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrTestMaxSteps'] = 5 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-05 defaults['corrMomentum'] = 0.5 else: raise NotImplementedError return defaults def baseline_eq_nn_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 defaults['saveAllStats'] = True defaults['resultsSaveFreq'] = 50 if prob_type == 'simple': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.0001 defaults['hiddenSize'] = 200 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-07 defaults['corrMomentum'] = 0.5 elif prob_type == 'nonconvex': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.0001 defaults['hiddenSize'] = 200 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-07 defaults['corrMomentum'] = 0.5 elif 'acopf' in prob_type: defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.001 defaults['hiddenSize'] = 200 defaults['softWeightEqFrac'] = 0.5 defaults['useTestCorr'] = True defaults['corrMode'] = 'full' defaults['corrTestMaxSteps'] = 5 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-05 defaults['corrMomentum'] = 0.5 else: raise NotImplementedError return defaults def method_default_args(prob_type): defaults = {} defaults['simpleVar'] = 100 defaults['simpleIneq'] = 50 defaults['simpleEq'] = 50 defaults['simpleEx'] = 10000 defaults['nonconvexVar'] = 100 defaults['nonconvexIneq'] = 50 defaults['nonconvexEq'] = 50 defaults['nonconvexEx'] = 10000 defaults['saveAllStats'] = True defaults['resultsSaveFreq'] = 50 if prob_type == 'simple': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.0001 defaults['hiddenSize'] = 200 defaults['softWeight'] = 10 defaults['softWeightEqFrac'] = 0.5 defaults['useCompl'] = True defaults['useTrainCorr'] = True defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTrainSteps'] = 10 defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-07 defaults['corrMomentum'] = 0.5 elif prob_type == 'nonconvex': defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.0001 defaults['hiddenSize'] = 200 defaults['softWeight'] = 10 defaults['softWeightEqFrac'] = 0.5 defaults['useCompl'] = True defaults['useTrainCorr'] = True defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTrainSteps'] = 10 defaults['corrTestMaxSteps'] = 10 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 1e-07 defaults['corrMomentum'] = 0.5 elif 'acopf' in prob_type: defaults['epochs'] = 1000 defaults['batchSize'] = 200 defaults['lr'] = 0.001 defaults['hiddenSize'] = 200 defaults['softWeight'] = 10 defaults['softWeightEqFrac'] = 0.5 defaults['useCompl'] = True defaults['useTrainCorr'] = True defaults['useTestCorr'] = True defaults['corrMode'] = 'partial' defaults['corrTrainSteps'] = 5 defaults['corrTestMaxSteps'] = 5 defaults['corrEps'] = 0.0001 defaults['corrLr'] = 0.0001 defaults['corrMomentum'] = 0.5 else: raise NotImplementedError return defaults
class S1C1(): @staticmethod def ret_true(): return True @staticmethod def hex_to_base64(hx): return "x"
class S1C1: @staticmethod def ret_true(): return True @staticmethod def hex_to_base64(hx): return 'x'
s = input() answer = len(s) k = s.count('a') for i in range(len(s)): cnt = 0 for j in range(k): if s[(i+j)%len(s)] == 'b': cnt+=1 if cnt < answer: answer = cnt print(answer)
s = input() answer = len(s) k = s.count('a') for i in range(len(s)): cnt = 0 for j in range(k): if s[(i + j) % len(s)] == 'b': cnt += 1 if cnt < answer: answer = cnt print(answer)
def math(): i_put = input() if len(i_put) <= 140: print('TWEET') else: print('MUTE') if __name__ == '__main__': math()
def math(): i_put = input() if len(i_put) <= 140: print('TWEET') else: print('MUTE') if __name__ == '__main__': math()
''' A better way to implement the fibonacci series T(n) = 2n + 2 ''' def fibonacci(n): # Taking 1st two fibonacci nubers as 0 and 1 FibArray = [0, 1] while len(FibArray) < n + 1: FibArray.append(0) if n <= 1: return n else: if FibArray[n - 1] == 0: FibArray[n - 1] = fibonacci(n - 1) if FibArray[n - 2] == 0: FibArray[n - 2] = fibonacci(n - 2) FibArray[n] = FibArray[n - 2] + FibArray[n - 1] return FibArray[n] print(fibonacci(9))
""" A better way to implement the fibonacci series T(n) = 2n + 2 """ def fibonacci(n): fib_array = [0, 1] while len(FibArray) < n + 1: FibArray.append(0) if n <= 1: return n else: if FibArray[n - 1] == 0: FibArray[n - 1] = fibonacci(n - 1) if FibArray[n - 2] == 0: FibArray[n - 2] = fibonacci(n - 2) FibArray[n] = FibArray[n - 2] + FibArray[n - 1] return FibArray[n] print(fibonacci(9))
eval_cfgs = [ dict( metrics=dict(type='OPE'), dataset=dict(type='OTB100'), hypers=dict( epoch=list(range(31, 51, 2)), window=dict( weight=[0.200, 0.300, 0.400] ) ) ), ]
eval_cfgs = [dict(metrics=dict(type='OPE'), dataset=dict(type='OTB100'), hypers=dict(epoch=list(range(31, 51, 2)), window=dict(weight=[0.2, 0.3, 0.4])))]
class Solution: # Enumerate shortest length (Accepted), O(n*l) time, O(l) space (n = len(strs), l = len(shortest str)) def longestCommonPrefix(self, strs: List[str]) -> str: min_len = min(len(s) for s in strs) res = "" for i in range(min_len): c = strs[0][i] for s in strs: if s[i] != c: return res res += c return res # Enumerate shortest (Top Voted), O(n*l) time, O(l) space def longestCommonPrefix(self, strs: List[str]) -> str: if not strs: return "" shortest = min(strs, key=len) for i, ch in enumerate(shortest): for other in strs: if other[i] != ch: return shortest[:i] return shortest
class Solution: def longest_common_prefix(self, strs: List[str]) -> str: min_len = min((len(s) for s in strs)) res = '' for i in range(min_len): c = strs[0][i] for s in strs: if s[i] != c: return res res += c return res def longest_common_prefix(self, strs: List[str]) -> str: if not strs: return '' shortest = min(strs, key=len) for (i, ch) in enumerate(shortest): for other in strs: if other[i] != ch: return shortest[:i] return shortest
n = int(input("Please enter the size of the table: ")) # print the first row (header) print(" ", end = "") for i in range(1, n + 1): print(" ", i, end = "") print() # new line # print the actual table for row in range(1, n + 1): # print row number at the beginning of each row print(" ", row, end = "") # print Xs if column number divides row number for col in range(1, n + 1): if col % row == 0: print(" X", end = "") else: print(" ", end = "") print() # new line at the end of each line
n = int(input('Please enter the size of the table: ')) print(' ', end='') for i in range(1, n + 1): print(' ', i, end='') print() for row in range(1, n + 1): print(' ', row, end='') for col in range(1, n + 1): if col % row == 0: print(' X', end='') else: print(' ', end='') print()
# Copyright 2018 The Fuchsia Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # DO NOT MANUALLY EDIT! # Generated by //scripts/sdk/bazel/generate.py. load("@io_bazel_rules_dart//dart/build_rules/internal:pub.bzl", "pub_repository") def setup_dart(): pub_repository( name = "vendor_meta", output = ".", package = "meta", version = "1.1.6", pub_deps = [], ) pub_repository( name = "vendor_logging", output = ".", package = "logging", version = "0.11.3+2", pub_deps = [], ) pub_repository( name = "vendor_uuid", output = ".", package = "uuid", version = "1.0.3", pub_deps = [], )
load('@io_bazel_rules_dart//dart/build_rules/internal:pub.bzl', 'pub_repository') def setup_dart(): pub_repository(name='vendor_meta', output='.', package='meta', version='1.1.6', pub_deps=[]) pub_repository(name='vendor_logging', output='.', package='logging', version='0.11.3+2', pub_deps=[]) pub_repository(name='vendor_uuid', output='.', package='uuid', version='1.0.3', pub_deps=[])
def split(list): n = len(list) if n == 1: return list, [] middle = int(n/2) return list[0:middle], list[middle:n] def merge_sort(list): if len(list) == 0: return list a, b = split(list) if a == list: return a else: new_a = merge_sort(a) new_b = merge_sort(b) a_len = len(new_a) b_len = len(new_b) a_iter = 0 b_iter = 0 result = [] while a_iter < a_len and b_iter < b_len: if new_a[a_iter] < new_b[b_iter]: result.append(new_a[a_iter]) a_iter += 1 else: result.append(new_b[b_iter]) b_iter += 1 while a_iter < a_len: result.append(new_a[a_iter]) a_iter += 1 while b_iter < b_len: result.append(new_b[b_iter]) b_iter += 1 return result
def split(list): n = len(list) if n == 1: return (list, []) middle = int(n / 2) return (list[0:middle], list[middle:n]) def merge_sort(list): if len(list) == 0: return list (a, b) = split(list) if a == list: return a else: new_a = merge_sort(a) new_b = merge_sort(b) a_len = len(new_a) b_len = len(new_b) a_iter = 0 b_iter = 0 result = [] while a_iter < a_len and b_iter < b_len: if new_a[a_iter] < new_b[b_iter]: result.append(new_a[a_iter]) a_iter += 1 else: result.append(new_b[b_iter]) b_iter += 1 while a_iter < a_len: result.append(new_a[a_iter]) a_iter += 1 while b_iter < b_len: result.append(new_b[b_iter]) b_iter += 1 return result
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right # We would need to create an map out of in-order array to access index easily class Solution: # Faster solution def buildTree(self, preorder: List[int], inorder: List[int]) -> TreeNode: def helper(in_left=0, in_right=len(inorder)): # Using index in preorder list. nonlocal pre_idx # base cases if in_right <= in_left: return None # Preorder element left set as the curr node. node_val = preorder[pre_idx] node = TreeNode(node_val) # We find where this element in in_idx = inorderMap[node_val] # Finally increase to the next index in preorder pre_idx += 1 # left node.left = helper(in_left, in_idx) # right node.right = helper(in_idx + 1, in_right) # Finally return the node as root for that level return node # Index element to set to zeroth element of preorder. pre_idx = 0 # Hashmap of value to index of inOrder array. inorderMap = {v:k for k,v in enumerate(inorder)} return helper() # def buildTree(self, preorder, inorder): # if inorder: # ind = inorder.index(preorder.pop(0)) # root = TreeNode(inorder[ind]) # root.left = self.buildTree(preorder, inorder[0:ind]) # root.right = self.buildTree(preorder, inorder[ind+1:]) # return root
class Solution: def build_tree(self, preorder: List[int], inorder: List[int]) -> TreeNode: def helper(in_left=0, in_right=len(inorder)): nonlocal pre_idx if in_right <= in_left: return None node_val = preorder[pre_idx] node = tree_node(node_val) in_idx = inorderMap[node_val] pre_idx += 1 node.left = helper(in_left, in_idx) node.right = helper(in_idx + 1, in_right) return node pre_idx = 0 inorder_map = {v: k for (k, v) in enumerate(inorder)} return helper()
a = 3 b = 4 z = a + b print(z)
a = 3 b = 4 z = a + b print(z)
expected = 'Jana III Sobieskiego' a = ' Jana III Sobieskiego ' b = 'ul Jana III SobIESkiego' c = '\tul. Jana trzeciego Sobieskiego' d = 'ulicaJana III Sobieskiego' e = 'UL. JA\tNA 3 SOBIES\tKIEGO' f = 'UL. jana III SOBiesKIEGO' g = 'ULICA JANA III SOBIESKIEGO ' h = 'ULICA. JANA III SOBIeskieGO' i = ' Jana 3 Sobieskiego ' j = 'Jana III\tSobieskiego ' k = 'ul.Jana III Sob\n\nieskiego\n' a = a.strip() b = b.upper().replace('UL', '').strip().title().replace('Iii', 'III') c = c.upper().replace('UL.', '').strip().title().replace('Trzeciego', 'III') d = d.upper().replace('ULICA', '').strip().title().replace('Iii', 'III') e = e.upper().replace('UL.', '').strip().replace('\t', '').title().replace('3', 'III') f = f.upper().replace('UL.', '').strip().title().replace('Iii', 'III') g = g.upper().replace('ULICA', '').strip().title().replace('Iii', 'III') h = h.upper().replace('ULICA.', '').strip().title().replace('Iii', 'III') i = i.strip().replace('3', 'III') j = j.strip().replace('\t', ' ') k = k.upper().replace('UL.', '').replace('\n', '').title().replace('Iii', 'III') expected = 'Jana III Sobieskiego' print(f'{a == expected}\t a: "{a}"') print(f'{b == expected}\t b: "{b}"') print(f'{c == expected}\t c: "{c}"') print(f'{d == expected}\t d: "{d}"') print(f'{e == expected}\t e: "{e}"') print(f'{f == expected}\t f: "{f}"') print(f'{g == expected}\t g: "{g}"') print(f'{h == expected}\t h: "{h}"') print(f'{i == expected}\t i: "{i}"') print(f'{j == expected}\t j: "{j}"') print(f'{k == expected}\t k: "{k}"')
expected = 'Jana III Sobieskiego' a = ' Jana III Sobieskiego ' b = 'ul Jana III SobIESkiego' c = '\tul. Jana trzeciego Sobieskiego' d = 'ulicaJana III Sobieskiego' e = 'UL. JA\tNA 3 SOBIES\tKIEGO' f = 'UL. jana III SOBiesKIEGO' g = 'ULICA JANA III SOBIESKIEGO ' h = 'ULICA. JANA III SOBIeskieGO' i = ' Jana 3 Sobieskiego ' j = 'Jana III\tSobieskiego ' k = 'ul.Jana III Sob\n\nieskiego\n' a = a.strip() b = b.upper().replace('UL', '').strip().title().replace('Iii', 'III') c = c.upper().replace('UL.', '').strip().title().replace('Trzeciego', 'III') d = d.upper().replace('ULICA', '').strip().title().replace('Iii', 'III') e = e.upper().replace('UL.', '').strip().replace('\t', '').title().replace('3', 'III') f = f.upper().replace('UL.', '').strip().title().replace('Iii', 'III') g = g.upper().replace('ULICA', '').strip().title().replace('Iii', 'III') h = h.upper().replace('ULICA.', '').strip().title().replace('Iii', 'III') i = i.strip().replace('3', 'III') j = j.strip().replace('\t', ' ') k = k.upper().replace('UL.', '').replace('\n', '').title().replace('Iii', 'III') expected = 'Jana III Sobieskiego' print(f'{a == expected}\t a: "{a}"') print(f'{b == expected}\t b: "{b}"') print(f'{c == expected}\t c: "{c}"') print(f'{d == expected}\t d: "{d}"') print(f'{e == expected}\t e: "{e}"') print(f'{f == expected}\t f: "{f}"') print(f'{g == expected}\t g: "{g}"') print(f'{h == expected}\t h: "{h}"') print(f'{i == expected}\t i: "{i}"') print(f'{j == expected}\t j: "{j}"') print(f'{k == expected}\t k: "{k}"')
# # PySNMP MIB module CISCO-CALL-TRACKER-TCP-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-CALL-TRACKER-TCP-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:34:55 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) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection", "SingleValueConstraint") cctActiveCallId, cctHistoryIndex = mibBuilder.importSymbols("CISCO-CALL-TRACKER-MIB", "cctActiveCallId", "cctHistoryIndex") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") CiscoPort, = mibBuilder.importSymbols("CISCO-TC", "CiscoPort") NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance") iso, NotificationType, Counter32, TimeTicks, MibIdentifier, Counter64, Unsigned32, Bits, Gauge32, ModuleIdentity, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "NotificationType", "Counter32", "TimeTicks", "MibIdentifier", "Counter64", "Unsigned32", "Bits", "Gauge32", "ModuleIdentity", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "ObjectIdentity") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") ciscoCallTrackerTCPMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 164)) ciscoCallTrackerTCPMIB.setRevisions(('2005-12-06 00:00', '2000-06-07 00:00',)) if mibBuilder.loadTexts: ciscoCallTrackerTCPMIB.setLastUpdated('200512060000Z') if mibBuilder.loadTexts: ciscoCallTrackerTCPMIB.setOrganization('Cisco Systems, Inc.') ccttMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 1)) ccttActive = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1)) ccttHistory = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2)) ccttActiveTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1), ) if mibBuilder.loadTexts: ccttActiveTable.setStatus('current') ccttActiveEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1), ).setIndexNames((0, "CISCO-CALL-TRACKER-MIB", "cctActiveCallId")) if mibBuilder.loadTexts: ccttActiveEntry.setStatus('current') ccttActiveLocalIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttActiveLocalIpAddress.setStatus('current') ccttActiveLocalTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 2), CiscoPort()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttActiveLocalTcpPort.setStatus('current') ccttActiveRemoteIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttActiveRemoteIpAddress.setStatus('current') ccttActiveRemoteTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 4), CiscoPort()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttActiveRemoteTcpPort.setStatus('current') ccttActiveDestinationFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttActiveDestinationFailures.setStatus('current') ccttHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1), ) if mibBuilder.loadTexts: ccttHistoryTable.setStatus('current') ccttHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1), ).setIndexNames((0, "CISCO-CALL-TRACKER-MIB", "cctHistoryIndex")) if mibBuilder.loadTexts: ccttHistoryEntry.setStatus('current') ccttHistoryLocalIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttHistoryLocalIpAddress.setStatus('current') ccttHistoryLocalTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 2), CiscoPort()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttHistoryLocalTcpPort.setStatus('current') ccttHistoryRemoteIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttHistoryRemoteIpAddress.setStatus('current') ccttHistoryRemoteTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 4), CiscoPort()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttHistoryRemoteTcpPort.setStatus('current') ccttHistoryDestinationFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ccttHistoryDestinationFailures.setStatus('current') ccttMIBNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 2)) ccttMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 2, 0)) ccttMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 3)) ccttMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 1)) ccttMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 2)) ccttMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 1, 1)).setObjects(("CISCO-CALL-TRACKER-TCP-MIB", "ccttActiveGroup"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttHistoryGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ccttMIBCompliance = ccttMIBCompliance.setStatus('current') ccttActiveGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 2, 2)).setObjects(("CISCO-CALL-TRACKER-TCP-MIB", "ccttActiveLocalIpAddress"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttActiveLocalTcpPort"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttActiveRemoteIpAddress"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttActiveRemoteTcpPort"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttActiveDestinationFailures")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ccttActiveGroup = ccttActiveGroup.setStatus('current') ccttHistoryGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 2, 3)).setObjects(("CISCO-CALL-TRACKER-TCP-MIB", "ccttHistoryLocalIpAddress"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttHistoryLocalTcpPort"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttHistoryRemoteIpAddress"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttHistoryRemoteTcpPort"), ("CISCO-CALL-TRACKER-TCP-MIB", "ccttHistoryDestinationFailures")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ccttHistoryGroup = ccttHistoryGroup.setStatus('current') mibBuilder.exportSymbols("CISCO-CALL-TRACKER-TCP-MIB", PYSNMP_MODULE_ID=ciscoCallTrackerTCPMIB, ccttActiveDestinationFailures=ccttActiveDestinationFailures, ccttMIBObjects=ccttMIBObjects, ciscoCallTrackerTCPMIB=ciscoCallTrackerTCPMIB, ccttActiveLocalIpAddress=ccttActiveLocalIpAddress, ccttMIBCompliance=ccttMIBCompliance, ccttActive=ccttActive, ccttActiveRemoteTcpPort=ccttActiveRemoteTcpPort, ccttHistoryTable=ccttHistoryTable, ccttHistory=ccttHistory, ccttMIBCompliances=ccttMIBCompliances, ccttActiveEntry=ccttActiveEntry, ccttMIBNotificationPrefix=ccttMIBNotificationPrefix, ccttHistoryDestinationFailures=ccttHistoryDestinationFailures, ccttHistoryRemoteIpAddress=ccttHistoryRemoteIpAddress, ccttActiveLocalTcpPort=ccttActiveLocalTcpPort, ccttActiveGroup=ccttActiveGroup, ccttActiveTable=ccttActiveTable, ccttHistoryEntry=ccttHistoryEntry, ccttMIBConformance=ccttMIBConformance, ccttHistoryRemoteTcpPort=ccttHistoryRemoteTcpPort, ccttHistoryLocalTcpPort=ccttHistoryLocalTcpPort, ccttHistoryGroup=ccttHistoryGroup, ccttMIBNotifications=ccttMIBNotifications, ccttMIBGroups=ccttMIBGroups, ccttHistoryLocalIpAddress=ccttHistoryLocalIpAddress, ccttActiveRemoteIpAddress=ccttActiveRemoteIpAddress)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_union, value_size_constraint, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint') (cct_active_call_id, cct_history_index) = mibBuilder.importSymbols('CISCO-CALL-TRACKER-MIB', 'cctActiveCallId', 'cctHistoryIndex') (cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt') (cisco_port,) = mibBuilder.importSymbols('CISCO-TC', 'CiscoPort') (notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance') (iso, notification_type, counter32, time_ticks, mib_identifier, counter64, unsigned32, bits, gauge32, module_identity, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'NotificationType', 'Counter32', 'TimeTicks', 'MibIdentifier', 'Counter64', 'Unsigned32', 'Bits', 'Gauge32', 'ModuleIdentity', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'ObjectIdentity') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') cisco_call_tracker_tcpmib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 164)) ciscoCallTrackerTCPMIB.setRevisions(('2005-12-06 00:00', '2000-06-07 00:00')) if mibBuilder.loadTexts: ciscoCallTrackerTCPMIB.setLastUpdated('200512060000Z') if mibBuilder.loadTexts: ciscoCallTrackerTCPMIB.setOrganization('Cisco Systems, Inc.') cctt_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 1)) cctt_active = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1)) cctt_history = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2)) cctt_active_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1)) if mibBuilder.loadTexts: ccttActiveTable.setStatus('current') cctt_active_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1)).setIndexNames((0, 'CISCO-CALL-TRACKER-MIB', 'cctActiveCallId')) if mibBuilder.loadTexts: ccttActiveEntry.setStatus('current') cctt_active_local_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttActiveLocalIpAddress.setStatus('current') cctt_active_local_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 2), cisco_port()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttActiveLocalTcpPort.setStatus('current') cctt_active_remote_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttActiveRemoteIpAddress.setStatus('current') cctt_active_remote_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 4), cisco_port()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttActiveRemoteTcpPort.setStatus('current') cctt_active_destination_failures = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 1, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttActiveDestinationFailures.setStatus('current') cctt_history_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1)) if mibBuilder.loadTexts: ccttHistoryTable.setStatus('current') cctt_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1)).setIndexNames((0, 'CISCO-CALL-TRACKER-MIB', 'cctHistoryIndex')) if mibBuilder.loadTexts: ccttHistoryEntry.setStatus('current') cctt_history_local_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttHistoryLocalIpAddress.setStatus('current') cctt_history_local_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 2), cisco_port()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttHistoryLocalTcpPort.setStatus('current') cctt_history_remote_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttHistoryRemoteIpAddress.setStatus('current') cctt_history_remote_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 4), cisco_port()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttHistoryRemoteTcpPort.setStatus('current') cctt_history_destination_failures = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 164, 1, 2, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ccttHistoryDestinationFailures.setStatus('current') cctt_mib_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 2)) cctt_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 2, 0)) cctt_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 3)) cctt_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 1)) cctt_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 2)) cctt_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 1, 1)).setObjects(('CISCO-CALL-TRACKER-TCP-MIB', 'ccttActiveGroup'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttHistoryGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cctt_mib_compliance = ccttMIBCompliance.setStatus('current') cctt_active_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 2, 2)).setObjects(('CISCO-CALL-TRACKER-TCP-MIB', 'ccttActiveLocalIpAddress'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttActiveLocalTcpPort'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttActiveRemoteIpAddress'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttActiveRemoteTcpPort'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttActiveDestinationFailures')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cctt_active_group = ccttActiveGroup.setStatus('current') cctt_history_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 164, 3, 2, 3)).setObjects(('CISCO-CALL-TRACKER-TCP-MIB', 'ccttHistoryLocalIpAddress'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttHistoryLocalTcpPort'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttHistoryRemoteIpAddress'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttHistoryRemoteTcpPort'), ('CISCO-CALL-TRACKER-TCP-MIB', 'ccttHistoryDestinationFailures')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cctt_history_group = ccttHistoryGroup.setStatus('current') mibBuilder.exportSymbols('CISCO-CALL-TRACKER-TCP-MIB', PYSNMP_MODULE_ID=ciscoCallTrackerTCPMIB, ccttActiveDestinationFailures=ccttActiveDestinationFailures, ccttMIBObjects=ccttMIBObjects, ciscoCallTrackerTCPMIB=ciscoCallTrackerTCPMIB, ccttActiveLocalIpAddress=ccttActiveLocalIpAddress, ccttMIBCompliance=ccttMIBCompliance, ccttActive=ccttActive, ccttActiveRemoteTcpPort=ccttActiveRemoteTcpPort, ccttHistoryTable=ccttHistoryTable, ccttHistory=ccttHistory, ccttMIBCompliances=ccttMIBCompliances, ccttActiveEntry=ccttActiveEntry, ccttMIBNotificationPrefix=ccttMIBNotificationPrefix, ccttHistoryDestinationFailures=ccttHistoryDestinationFailures, ccttHistoryRemoteIpAddress=ccttHistoryRemoteIpAddress, ccttActiveLocalTcpPort=ccttActiveLocalTcpPort, ccttActiveGroup=ccttActiveGroup, ccttActiveTable=ccttActiveTable, ccttHistoryEntry=ccttHistoryEntry, ccttMIBConformance=ccttMIBConformance, ccttHistoryRemoteTcpPort=ccttHistoryRemoteTcpPort, ccttHistoryLocalTcpPort=ccttHistoryLocalTcpPort, ccttHistoryGroup=ccttHistoryGroup, ccttMIBNotifications=ccttMIBNotifications, ccttMIBGroups=ccttMIBGroups, ccttHistoryLocalIpAddress=ccttHistoryLocalIpAddress, ccttActiveRemoteIpAddress=ccttActiveRemoteIpAddress)
def test_index(client): res = client.get("/") json_data = res.get_json() assert json_data["msg"] == "Don't panic" assert res.status_code == 200
def test_index(client): res = client.get('/') json_data = res.get_json() assert json_data['msg'] == "Don't panic" assert res.status_code == 200
#!/usr/bin/env python numbers = [1,2,3,4,5,8,3,2,3,1,1,1] def bubblesort(numbers): # Keep a boolean to determine if we switched switched = True # One round of sorting while switched: switched = False indexA = 0 indexB = 1 while indexB < len(numbers): numberA = numbers[indexA] numberB = numbers[indexB] # If the two numbers are our of order, change them if numberA > numberB: holder = numbers[indexA] numbers[indexA] = numbers[indexB] numbers[indexB] = holder switched = True indexA+=1 indexB+=1 print('Sorted numbers are %s' % numbers) return numbers bubblesort(numbers)
numbers = [1, 2, 3, 4, 5, 8, 3, 2, 3, 1, 1, 1] def bubblesort(numbers): switched = True while switched: switched = False index_a = 0 index_b = 1 while indexB < len(numbers): number_a = numbers[indexA] number_b = numbers[indexB] if numberA > numberB: holder = numbers[indexA] numbers[indexA] = numbers[indexB] numbers[indexB] = holder switched = True index_a += 1 index_b += 1 print('Sorted numbers are %s' % numbers) return numbers bubblesort(numbers)
class Solution: def transpose(self, A: List[List[int]]) -> List[List[int]]: output=[] rows=len(A) cols=len(A[0]) output=[[0]*rows for i in range(cols)] for i in range(0,len(A)): for j in range(0,len(A[0])): output[j][i]=A[i][j] return output
class Solution: def transpose(self, A: List[List[int]]) -> List[List[int]]: output = [] rows = len(A) cols = len(A[0]) output = [[0] * rows for i in range(cols)] for i in range(0, len(A)): for j in range(0, len(A[0])): output[j][i] = A[i][j] return output
def Settings( **kwargs ): return { 'flags': [ '-O3', '-std=gnu11', '-fms-extensions', '-Wno-microsoft-anon-tag', '-Iinclude/', '-Ilib/', '-pthread', '-Wall', '-Werror', '-pedantic'] }
def settings(**kwargs): return {'flags': ['-O3', '-std=gnu11', '-fms-extensions', '-Wno-microsoft-anon-tag', '-Iinclude/', '-Ilib/', '-pthread', '-Wall', '-Werror', '-pedantic']}
schema = { # Schema definition, of the CLARA items. 'main_scale': { 'type': 'string', 'minlength': 1, 'maxlength': 20, 'required': True }, 'itembank_id': { 'type': 'string', 'minlength': 1, 'maxlength': 4, 'required': True }, 'presenting_order': { 'type': 'integer', 'required': True }, 'clara_item': { 'type': 'string', 'minlength': 1, 'maxlength': 255, 'required': True }, 'language': { 'type': 'string', 'minlength': 2, 'maxlength': 2, 'required': True }, } clara_items = { # 'title' tag used in item links. Defaults to the resource title minus # the final, plural 's' (works fine in most cases but not for 'people') # 'item_title': 'person', # by default the standard item entry point is defined as # '/people/<ObjectId>'. We leave it untouched, and we also enable an # additional read-only entry point. This way consumers can also perform # GET requests at '/people/<lastname>'. # 'additional_lookup': { # 'url': 'regex("[\w]+")', # 'field': 'language' # }, # We choose to override global cache-control directives for this resource. 'cache_control': 'max-age=10,must-revalidate', 'cache_expires': 10, # most global settings can be overridden at resource level 'resource_methods': ['GET'], 'schema': schema }
schema = {'main_scale': {'type': 'string', 'minlength': 1, 'maxlength': 20, 'required': True}, 'itembank_id': {'type': 'string', 'minlength': 1, 'maxlength': 4, 'required': True}, 'presenting_order': {'type': 'integer', 'required': True}, 'clara_item': {'type': 'string', 'minlength': 1, 'maxlength': 255, 'required': True}, 'language': {'type': 'string', 'minlength': 2, 'maxlength': 2, 'required': True}} clara_items = {'cache_control': 'max-age=10,must-revalidate', 'cache_expires': 10, 'resource_methods': ['GET'], 'schema': schema}
n,d = map(int,raw_input().split()) c = map(int,raw_input().split(' ')) gc = 0 for i in range(len(c)): if c[i]+d in c and c[i]+2*d in c: gc+=1 print (gc)
(n, d) = map(int, raw_input().split()) c = map(int, raw_input().split(' ')) gc = 0 for i in range(len(c)): if c[i] + d in c and c[i] + 2 * d in c: gc += 1 print(gc)
{ "targets": [ { "target_name": "glace", "sources": [ "target/glace.cc", ], "include_dirs": [ "target/deps/include", ], "libraries": [], "library_dirs": [ "/usr/local/lib" ] } ] }
{'targets': [{'target_name': 'glace', 'sources': ['target/glace.cc'], 'include_dirs': ['target/deps/include'], 'libraries': [], 'library_dirs': ['/usr/local/lib']}]}
OUT_FORMAT_CONVERSION = { "t": "", "b": "b", "u": "bu", }
out_format_conversion = {'t': '', 'b': 'b', 'u': 'bu'}
Scale.default = Scale.egyptian Root.default = 0 Clock.bpm = 110 ~p1 >> play('m', dur=PDur(3,16), sample=[0,2,3]) ~p2 >> play('V', dur=1, pan=[-1,1], sample=var([0,2],[24,8])) ~p3 >> play('n', dur=var([.5,.25,.125,2/3],[24,4,2,2])) p_all.lpf = 0 p_all.rate = .5 ~s1 >> space(P[0,3,5,1]+(0,3), dur=4, chop=6, slide=0, echo=.5, room=.5, mix=.5) ~s2 >> glass(P[0,3,5,var([1,8,7],[16,8,8])], oct=4, amp=2)
Scale.default = Scale.egyptian Root.default = 0 Clock.bpm = 110 ~p1 >> play('m', dur=p_dur(3, 16), sample=[0, 2, 3]) ~p2 >> play('V', dur=1, pan=[-1, 1], sample=var([0, 2], [24, 8])) ~p3 >> play('n', dur=var([0.5, 0.25, 0.125, 2 / 3], [24, 4, 2, 2])) p_all.lpf = 0 p_all.rate = 0.5 ~s1 >> space(P[0, 3, 5, 1] + (0, 3), dur=4, chop=6, slide=0, echo=0.5, room=0.5, mix=0.5) ~s2 >> glass(P[0, 3, 5, var([1, 8, 7], [16, 8, 8])], oct=4, amp=2)
params = { # file to load wav from 'file': 'C:/Users/qweis/Documents/GitHub/unknown-pleasures/wavs/famous.wav', # output file for images 'save_loc': 'covers/frame.png', # save location for video 'vid_save': 'time_test.mp4', # number of spacers between each data point 'spacers': 5, # number of pixels added as offset per wave 'offset': 10, # how many amp data points per line 'data_line': 40, # number of lines 'n_lines': 80, # percentage of actual data that is added as noise at end 'noise_frac': 1, # min ticks to reach mean when drawing connecting line 'min_ticks': 5, # how much range does the random noise have 'random_noise_range': 1, # noise range for connecting line 'connecting_line_range': 6, # frames per second 'fps': 30, # thickness of waveform lines 'line_width': 3, # value to scale amplitudes to 'scale_val': 125, }
params = {'file': 'C:/Users/qweis/Documents/GitHub/unknown-pleasures/wavs/famous.wav', 'save_loc': 'covers/frame.png', 'vid_save': 'time_test.mp4', 'spacers': 5, 'offset': 10, 'data_line': 40, 'n_lines': 80, 'noise_frac': 1, 'min_ticks': 5, 'random_noise_range': 1, 'connecting_line_range': 6, 'fps': 30, 'line_width': 3, 'scale_val': 125}
# The Twitter API keys needed to send tweets # Two applications for the same account are needed, # since two streamers can't be run on the same account # main account. needs all privileges CONSUMER_KEY = "enter your consumer key here" CONSUMER_SECRET = "enter your secret consumer key here" ACCESS_TOKEN = "enter your access token here" ACCESS_TOKEN_SECRET = "enter your secret access token here" # account for mining users. needs all privileges MINE_CONSUMER_KEY = "enter your consumer key here" MINE_CONSUMER_SECRET = "enter your secret consumer key here" MINE_ACCESS_TOKEN = "enter your access token here" MINE_ACCESS_TOKEN_SECRET = "enter your secret access token here"
consumer_key = 'enter your consumer key here' consumer_secret = 'enter your secret consumer key here' access_token = 'enter your access token here' access_token_secret = 'enter your secret access token here' mine_consumer_key = 'enter your consumer key here' mine_consumer_secret = 'enter your secret consumer key here' mine_access_token = 'enter your access token here' mine_access_token_secret = 'enter your secret access token here'
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"), ]
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')]
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)
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
equator_radius = 6378137 flattening = 1 / 298.257223563 ee2 = FLATTENING * (2 - FLATTENING) n_max = 12
# -*- coding: utf-8 -*- def suma(num1, num2): sm = num1 + num2 return sm print(suma(2,3))
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)
my_variable = 0 def when_started1(): global myVariable fork_motor_group.spin_to_position(1100, DEGREES, wait=False) drivetrain.turn_for(RIGHT, 22, DEGREES, wait=True) 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) 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) 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) 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)
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 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)
#!/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()
class H2O: def __init__(self): pass def hydrogen(self, releaseHydrogen: 'Callable[[], None]') -> None: release_hydrogen() def oxygen(self, releaseOxygen: 'Callable[[], None]') -> None: release_oxygen()
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)
def longest_valid_parentheses(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 = longest_valid_parentheses(s) print(result)
#!/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
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)
def greet(name): print(f'Good Day, {name}') name = input('Enter your name: ') greet(name)
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
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
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("")
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
class Solution: def solve(self, node): count = 0 current_node = node while currentNode: count += 1 current_node = currentNode.next return count
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 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
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 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) 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
# 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()
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"
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))
""" 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 is_valid_bst(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
class Batchtaskcreateoutdto(object): def __init__(self): self.taskID = None def get_task_id(self): return self.taskID def set_task_id(self, taskID): self.taskID = taskID
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
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) (seq1_out, seq2_out) = ('', '') 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 [email protected]') 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)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_intersection, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (time_ticks, unsigned32, counter64, iso, integer32, object_identity, module_identity, counter32, notification_type, gauge32, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'Unsigned32', 'Counter64', 'iso', 'Integer32', 'ObjectIdentity', 'ModuleIdentity', 'Counter32', 'NotificationType', 'Gauge32', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Bits') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') (trpz_mibs,) = mibBuilder.importSymbols('TRAPEZE-NETWORKS-ROOT-MIB', 'trpzMibs') trpz_system_mib = module_identity((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 [email protected]') 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' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(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' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5)) named_values = named_values(('other', 1), ('unknown', 2), ('ac-failed', 3), ('dc-failed', 4), ('ac-ok-dc-ok', 5)) trpz_sys_objects = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1)) trpz_sys_data_objects = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1)) trpz_sys_cpu_memory_used_bytes = mib_scalar((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.') trpz_sys_cpu_memory_total_bytes = mib_scalar((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.') trpz_sys_flash_memory_used_bytes = mib_scalar((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.') trpz_sys_flash_memory_total_bytes = mib_scalar((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.') trpz_sys_cpu_average_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 5), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuAverageLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuAverageLoad.setDescription('CPU load average since system startup.') trpz_sys_cpu_memory_size = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 6), trpz_sys_memory_amount()).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.') trpz_sys_cpu_load_detail = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11)) trpz_sys_cpu_memory_usage_detail = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12)) trpz_sys_chassis_components = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13)) trpz_sys_cpu_instant_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 1), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuInstantLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuInstantLoad.setDescription('CPU instant load (for last few seconds).') trpz_sys_cpu_last_minute_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 2), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuLastMinuteLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLastMinuteLoad.setDescription('CPU load for last minute.') trpz_sys_cpu_last5_minutes_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 3), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuLast5MinutesLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLast5MinutesLoad.setDescription('CPU load for last 5 minutes.') trpz_sys_cpu_last_hour_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 4), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuLastHourLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLastHourLoad.setDescription('CPU load for last hour.') trpz_sys_cpu_last_day_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 5), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuLastDayLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLastDayLoad.setDescription('CPU load for last day.') trpz_sys_cpu_last3_days_load = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 11, 6), trpz_sys_cpu_load()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysCpuLast3DaysLoad.setStatus('current') if mibBuilder.loadTexts: trpzSysCpuLast3DaysLoad.setDescription('CPU load for last 3 days.') trpz_sys_cpu_memory_instant_usage = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 1), trpz_sys_memory_amount()).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.') trpz_sys_cpu_memory_last_minute_usage = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 2), trpz_sys_memory_amount()).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.') trpz_sys_cpu_memory_last5_minutes_usage = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 3), trpz_sys_memory_amount()).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.') trpz_sys_cpu_memory_last_hour_usage = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 4), trpz_sys_memory_amount()).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.') trpz_sys_cpu_memory_last_day_usage = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 5), trpz_sys_memory_amount()).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.') trpz_sys_cpu_memory_last3_days_usage = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 12, 6), trpz_sys_memory_amount()).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.') trpz_sys_chas_comp_power_supplies = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1)) trpz_sys_num_power_supplies_supported = mib_scalar((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.') trpz_sys_power_supply_table = mib_table((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.') trpz_sys_power_supply_entry = mib_table_row((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.') trpz_sys_power_supply_device_oid = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1, 1), object_identifier()) if mibBuilder.loadTexts: trpzSysPowerSupplyDeviceOID.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyDeviceOID.setDescription('OID value used to identify this chassis component as indicated in Registration MIB.') trpz_sys_power_supply_status = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1, 2), trpz_sys_power_supply_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: trpzSysPowerSupplyStatus.setStatus('current') if mibBuilder.loadTexts: trpzSysPowerSupplyStatus.setDescription('Status of the power supply.') trpz_sys_power_supply_descr = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 8, 1, 1, 13, 1, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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)
# 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
model = dict(type='ResNet', depth=18, num_classes=10, maxpool=False) loss = dict(type='CrossEntropyLoss') root = '/path/to/your/dataset' mean = (0.4914, 0.4822, 0.4465) std = (0.2023, 0.1994, 0.201) 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))) epochs = 100 lr = 10.0 optimizer = dict(type='SGD', lr=lr, momentum=0.9, weight_decay=0) lr_cfg = dict(type='MultiStep', steps=epochs, lr=lr, decay_rate=0.1, decay_steps=[60, 80]) log_interval = 20 work_dir = None resume = None load = None port = 10001
# d.update((['two', 'II'], ['four', 4])) d = {'one': 1, 'two': 2, 'three': 3} print(d.update((['two', 'II'], ['four', 4]))) print(d)
d = {'one': 1, 'two': 2, 'three': 3} print(d.update((['two', 'II'], ['four', 4]))) print(d)
# 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
class Solution: def detect_cycle(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 if fast is None or fast.next is None: return None slow = head while True: if fast == slow: break slow = slow.next fast = fast.next return slow
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'
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
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!")
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)
class Status: def __init__(self, x, y): self.x = x self.y = y self.active = False def max_y(self): max_mm = 3 * 1000 max_steps = max_mm / 0.3 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)
def MAIN(Number): if Number > 0: return Number return 0 if __name__ == "__main__": print( "Hello, World") MAIN(0)
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 )
returned_date = [int(x) for x in input().split(' ')] due_date = [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"]
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']
# -*- coding: utf-8 -*- # Author: XuMing <[email protected]> # 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])
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']
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')
with open('myfile.txt', 'r') as f: lines = f.readlines() for line in lines: print(line, end='') print('Done')
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))
class Solution: def number_of_subarrays(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))
# 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/"
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()
def parse(filename: str): with open(filename) as file: file_lines = file.read().split('\n') (width, height) = (len(fileLines[0]), len(fileLines)) (east_herd, south_herd) = (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), (east_herd, south_herd)) = 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 move_sea_cucumbers(seafloor): ((width, height), (east_herd, south_herd)) = seafloor (east_herd_after_move, south_herd_after_move) = (set(), set()) moving = False for cucumber in eastHerd: (x, y) = cucumber cucumber_after_move = ((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 cucumber_after_move = (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) = move_sea_cucumbers(seafloor) steps += 1 pp(seafloor) return steps def main(): input = parse('data/day25.txt') result = solve(input) print(result) if __name__ == '__main__': main()
USES_BASE64 = True REDIRECT = None AUTHOR = 'BrocaProgs' APPNAME = 'PyQt_Socius'
uses_base64 = True redirect = None author = 'BrocaProgs' appname = 'PyQt_Socius'
#!/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")
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))
def print_leaders(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): print(m[k], end=' ') arr = [16, 17, 4, 3, 5, 2] print_leaders(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(), ])
class Parser: def __init__(self): pass def parse(self, record): raise not_implemented_error('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) 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
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
# 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])
n = int(input().rstrip()) def generate_graph(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 = generate_graph(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
__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))
y = 10 a = 9 x = 5 z = x + y print('{0} in binary {0:08b}; in hex {0:02x} in octal {0:02o}'.format(z)) number = 3 + 4 * 5 ** 2 + 7 print(number) number = (3 + 4) * (5 ** 2 + 7) print(number) number = 12 number += 5 print(number) number -= 3 print(number) number *= 4 print(number) number //= 9 print(number) number **= 4 print(number) (first_number, second_number) = ('2', 3) third_number = int(first_number) + second_number print(third_number) 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)
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)
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
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:') 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)
find_sum_of_squearse = lambda x, y: x ** 2 + y ** 2 print(find_sum_of_squearse(3, 5)) words = ['hello', 'monkey', 'python'] words_sort = max(words, key=lambda x: x.count('1')) print(wordsSort)
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
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))
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]
class Solution: def reverse_words(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))
str1 = 'Hi my name is Matthew. I am String' str2 = 'Hi my name is Precious. I am also String' print(str1) print(type(str1)) 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);
str = 'python' strupper = str.upper() 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'] }
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']}
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
def find(searchList, elem): end_list = [] for ind_elem in range(0, len(elem)): result_list = [] 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
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()
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 next_square(): i = 1 while True: yield (i * i) i += 1 def main(): test = affiche(Names) for nb in Test: print(nb) for nb in affiche(Nombre): print(nb) for num in next_square(): if num > 100: break print(num) if __name__ == '__main__': main()
# # # def palindrom(word): try: word = word[::-1] except TypeError: print("I execute myself only if an exception happens") print("You can't type only strings") else: print("I just execute myself only if no exceptions happens") print(word) finally: print("I always execute myself") def run(): word = input("Please, type a word: ") palindrom(word) if __name__ == "__main__": run()
def palindrom(word): try: word = word[::-1] except TypeError: print('I execute myself only if an exception happens') print("You can't type only strings") else: print('I just execute myself only if no exceptions happens') print(word) finally: print('I always execute myself') def run(): word = input('Please, type a word: ') palindrom(word) if __name__ == '__main__': run()
def normal_function(func): print(func(10)) normal_function(lambda value: 10 + value) def normal_function2(func, *args): for argument in args: print(func(argument)) normal_function2(lambda value: value / 5, 10, 15, 20, 25, 30, 35, 40, 45, 50) def normal_function3(func, *args): for argument in args: print("Result: {:^20.2f}".format(func(argument))) normal_function3(lambda value: value / 2, 10, 15, 20, 25, 30, 35, 40, 45, 50)
def normal_function(func): print(func(10)) normal_function(lambda value: 10 + value) def normal_function2(func, *args): for argument in args: print(func(argument)) normal_function2(lambda value: value / 5, 10, 15, 20, 25, 30, 35, 40, 45, 50) def normal_function3(func, *args): for argument in args: print('Result: {:^20.2f}'.format(func(argument))) normal_function3(lambda value: value / 2, 10, 15, 20, 25, 30, 35, 40, 45, 50)
# Theory: Class instances # By now, you already know what classes are and how they're # created and used in Python, Now let's get into the details about # class instances. # A class instance is an object of the class. If, for example, there # was a class River, we could create such instances as Volga, # Seine, and Nile. They would all have the same structure and # share all class attributes defined within the class River. # However, initially, all instances of the class would be identical to # one another. Most of the time that is not what we want. To # customize the initial state of an instance, the __init__ method # is used. # 1. def __init__() # The __init__ method is a constructor. Constructors are a # concept from the object-oriented programming. A class can # have one and only one constructor. If __init__ is defined within # a class, it is automatically invoked when we create a new class # instance. Take our class River as an example: class River: # list of all river all_rivers = [] def __init__(self, name, length): self.name = name self.length = length # add current river to the list of all river River.all_rivers.append(self) volga = River("Volga", 3530) seine = River("Seine", 776) nile = River("Nile", 6852) # print all river names for river in River.all_rivers: print(river.name) # Output: # Volga # Seine # Nile # We created three instances (or objects) of the class River: # volga, seine, and nile. Since we defined name and length # parameters for the __init__, they must be explicitly passed # when creating new instances. So something like volga = # River() would cause an error. Look at this visualization of the # code to see how it works almost in real-time! # The __init__ method specifies what attributes we want the # instances of our class to have from the very beginning. In our # example, they are name and length. # 2. self # You may have noticed that our __init__ method had another # argument besides name and length: self. The self argument # represents a particular instance of the class and allows us to # access its attributes and methods. In the example with # __init__, we basically create attributes for the particular # instance and assign the values of method arguments to them. It # is important to use the self parameter inside the method if we # want to save the values of the instance for later use. # Most of the time we also need to write the self parameter in # other methods because when the method is called the first # argument is passed to the method is the object itself. Let's # add a method to our River class and see how it works. The # syntax of the methods is not of importance at the moment, just # pay attention to the use of the self: class River: all_rivers = [] def __init__(self, name, length): self.name = name self.length = length River.all_river.append(self) def get_info(self): print("The length of the {0} is {1} km".format(self.name, self.length)) # Now if we call this method with the object we've created we # will get this: volga.get_info() # The length of the Volga is 3530 km seine.get_info() # The length of the Seine is 776 km nile.get_info() # The length of the Nile is 6852 km # As you can see, for each object the get_info() method printed # particular values and that was possible because we used the # self keyword in the method. # Note that when we actually call an object's method we don't # write the self argument in the brackets. The self parameter # (that represents a particular instance of the class) is passed to # the instance method implicitly when it is called. So there are # actually two ways to call an instance method: self.method() or # class.method(self). In our example it would look like this: # self.method() volga.get_info() # The length of the Volga is 3530 km # class.method(self) River.get_info(volga) # The length of the Volga is 3530 km # 3. Instance attributes # Classes in Python have two types of attributes: class attributes # and instance attributes. You should already know what class # attributes are so here we'll focus on the instance attributes. # Instance attributes are defined within methods and they store # instance-specific information. # In the class River, the attributes name and length are instance # attributes since they are defined within a method (__init__) # and have self before them. Usually, instance attributes are # created within the __init__ method since it's the constructor, # but you can define instance attributes in other methods as well. # However, it's not recommended so we advise you to stick to the # __init__. # Instance attributes are available only from the scope of the # object which is why this code will product a mistake: print(River.name) # AttributeError # Instance attributes, naturally, are used to distinguish object: # their values are different for different instances. volga.name # "Volga" seine.name # "Seine" nile.name # "Nile" # So when deciding which attributes to choose in your program, # you should first decide whether you want it to store values # unique to each object of the class or, on the contrary, the ones # shared by all instances. # 4. Summary # In this topic, you've learned about class instances. # If classes are an abstraction, a template for similar objects, a # class instance is a sort of example of that class, a particular # object that follows the structure outlined in the class. In your # program, you can create as many objects of your class as you # need. # To create objects with different initial states, classes have a # constructor __init__ that allows us to define necessary # parameters. Reference to a particular instance within methods # is done through the self keyword. Within the __init__ # method, we define instance attributes that are different for all # instances. # Most of the time in our program we'll deal not with the classes # directly, but rather with their instances, so knowing how to # create them and work with them is very important!
class River: all_rivers = [] def __init__(self, name, length): self.name = name self.length = length River.all_rivers.append(self) volga = river('Volga', 3530) seine = river('Seine', 776) nile = river('Nile', 6852) for river in River.all_rivers: print(river.name) class River: all_rivers = [] def __init__(self, name, length): self.name = name self.length = length River.all_river.append(self) def get_info(self): print('The length of the {0} is {1} km'.format(self.name, self.length)) volga.get_info() seine.get_info() nile.get_info() volga.get_info() River.get_info(volga) print(River.name) volga.name seine.name nile.name
#From https://notepad-plus-plus.org/community/topic/14501/has-a-plugin-like-sublime-plugin-brackethighlighter/7 try: BH__dict except NameError: BH__dict = dict() BH__dict['indic_for_box_at_caret'] = 10 # pick a free indicator number def indicatorOptionsSet(indicator_number, indicator_style, rgb_color_tup, alpha, outline_alpha, draw_under_text, which_editor=editor): which_editor.indicSetStyle(indicator_number, indicator_style) # e.g. INDICATORSTYLE.ROUNDBOX which_editor.indicSetFore(indicator_number, rgb_color_tup) which_editor.indicSetAlpha(indicator_number, alpha) # integer which_editor.indicSetOutlineAlpha(indicator_number, outline_alpha) # integer which_editor.indicSetUnder(indicator_number, draw_under_text) # boolean for editorX in (editor1, editor2): indicatorOptionsSet(BH__dict['indic_for_box_at_caret'], INDICATORSTYLE.STRAIGHTBOX, (238,121,159), 0, 255, True, editorX) # white box rimmed in "pale violet red 2" BH__dict['last_modificationType_for_hack'] = None def BH__containing_box_indices_into_string(str_containing_caret, caret_index_into_str): class Stack: def __init__(self): self.clear() def isEmpty(self): return self.size() == 0 def push(self, item): self.items.append(item) def pop(self): return None if self.size() == 0 else self.items.pop() def peek(self): return None if self.size() == 0 else self.items[self.size() - 1] def size(self): return len(self.items) def clear(self): self.items = [] retval = (None, None) # default to no valid box get_opening_char_via_closing_char_dict = { ')' : '(', ']' : '[', '}' : '{', } get_closing_char_via_opening_char_dict = dict((v, k) for (k, v) in get_opening_char_via_closing_char_dict.items()) closing_chars = get_opening_char_via_closing_char_dict.keys() opening_chars = get_opening_char_via_closing_char_dict.values() box_ending_index = -1 box_starting_index = -1 stack = Stack() for j in range(caret_index_into_str, len(str_containing_caret)): c = str_containing_caret[j] if c in closing_chars: if stack.isEmpty(): box_ending_index = j break else: if stack.peek() == get_opening_char_via_closing_char_dict[c]: stack.pop() else: break # unbalanced elif c in opening_chars: stack.push(c) if box_ending_index != -1: stack.clear() box_starting_index = -1 for j in range(caret_index_into_str - 1, -1, -1): c = str_containing_caret[j] if c in opening_chars: if stack.isEmpty(): box_starting_index = j break else: if stack.peek() == get_closing_char_via_opening_char_dict[c]: stack.pop() else: break # unbalanced elif c in closing_chars: stack.push(c) if box_ending_index != -1: if box_starting_index != -1: if str_containing_caret[box_ending_index] == get_closing_char_via_opening_char_dict[str_containing_caret[box_starting_index]]: retval = (box_starting_index, box_ending_index + 1) return retval def BH__callback_sci_MODIFIED(args): global BH__dict BH__dict['last_modificationType_for_hack'] = args['modificationType'] def BH__fileIsCloned(file_name_to_test): retval = False clone_detect_dict = {} file_tup_list = notepad.getFiles() for tup in file_tup_list: (filename, _, _, _) = tup if filename not in clone_detect_dict: clone_detect_dict[filename] = 0 else: clone_detect_dict[filename] += 1 if filename == file_name_to_test: break if file_name_to_test in clone_detect_dict: if clone_detect_dict[file_name_to_test] >= 1: retval = True return retval def BH__fileIsClonedAndIsActiveInBothViews(file_name_to_test): retval = False if editor1 and editor2: # both views are in use if BH__fileIsCloned(file_name_to_test): curr_doc_index_main_view = notepad.getCurrentDocIndex(0) curr_doc_index_2nd_view = notepad.getCurrentDocIndex(1) main_view_active_doc_bool = False secondary_view_active_doc_bool = False file_tup_list = notepad.getFiles() for tup in file_tup_list: (filename, _, index_in_view, view_number) = tup if filename == file_name_to_test: if view_number == 0: if index_in_view == curr_doc_index_main_view: main_view_active_doc_bool = True elif view_number == 1: if index_in_view == curr_doc_index_2nd_view: secondary_view_active_doc_bool = True if main_view_active_doc_bool and secondary_view_active_doc_bool: retval = True break return retval def BH__getViewableEditorAndRangeTupleListList(work_across_both_views): retval = [] # retval looks like these examples: # [ ( editor, [ (0, 1000), (2020, 3000) ] ) ] # [ ( editor1, [ (0, 1000), (2020, 3000) ] ), ( editor2, [ (4000, 5000), (6020, 7000) ] ) ] def consolidate_range_tuple_list(range_tup_list): sorted_range_tup_list = sorted(range_tup_list) # sort criteria is first element of tuple in list saved_2element_list = list(sorted_range_tup_list[0]) for (start, end) in sorted_range_tup_list: if start <= saved_2element_list[1]: saved_2element_list[1] = max(saved_2element_list[1], end) else: yield tuple(saved_2element_list) saved_2element_list[0] = start saved_2element_list[1] = end yield tuple(saved_2element_list) def get_onscreen_pos_tup_list(which_editor): # which_editor is editor1 or editor2 (or maybe even just plain editor) # loosely based upon the N++ source for SmartHighlighter::highlightViewWithWord() retval_tup_list = list() temp_tup_list = [] MAXLINEHIGHLIGHT = 400 firstLine = which_editor.getFirstVisibleLine() currentLine = firstLine nbLineOnScreen = which_editor.linesOnScreen() nrLines = min(nbLineOnScreen, MAXLINEHIGHLIGHT) + 1 lastLine = firstLine + nrLines prevDocLineChecked = -1 break_out = False while currentLine < lastLine: docLine = which_editor.docLineFromVisible(currentLine) if docLine != prevDocLineChecked: prevDocLineChecked = docLine startPos = which_editor.positionFromLine(docLine) endPos = which_editor.positionFromLine(docLine + 1) if endPos == -1: endPos = which_editor.getTextLength() - 1 break_out = True if endPos > startPos: temp_tup_list.append((startPos, endPos)) if break_out: break currentLine += 1 if len(temp_tup_list) > 0: retval_tup_list = list(consolidate_range_tuple_list(temp_tup_list)) return retval_tup_list both_views_open = True if editor1 and editor2 else False curr_file_active_in_both_views = BH__fileIsClonedAndIsActiveInBothViews(notepad.getCurrentFilename()) if both_views_open else False if both_views_open: ed1_range_tup_list = get_onscreen_pos_tup_list(editor1) ed2_range_tup_list = get_onscreen_pos_tup_list(editor2) if curr_file_active_in_both_views: range_tup_list = list(consolidate_range_tuple_list(ed1_range_tup_list + ed2_range_tup_list)) retval.append((editor, range_tup_list)) elif both_views_open and work_across_both_views: retval.append((editor1, ed1_range_tup_list)) retval.append((editor2, ed2_range_tup_list)) else: range_tup_list = get_onscreen_pos_tup_list(editor) retval.append((editor, range_tup_list)) return retval def BH__callback_sci_UPDATEUI(args): # hack, see https://notepad-plus-plus.org/community/topic/12360/vi-simulator-how-to-highlight-a-word/27, look for "16400" in code: if args['updated'] == UPDATE.CONTENT and BH__dict['last_modificationType_for_hack'] == (MODIFICATIONFLAGS.CHANGEINDICATOR | MODIFICATIONFLAGS.USER): return for (editorX, pos_range_tuple_list) in BH__getViewableEditorAndRangeTupleListList(True): # clear out any existing highlighting in areas the user can currently see for (start_pos, end_pos) in pos_range_tuple_list: editorX.setIndicatorCurrent(BH__dict['indic_for_box_at_caret']) editorX.indicatorClearRange(start_pos, end_pos - start_pos) for (start_pos, end_pos) in pos_range_tuple_list: if start_pos <= editorX.getCurrentPos() <= end_pos: (box_start_offset, box_end_offset) = BH__containing_box_indices_into_string( editorX.getTextRange(start_pos, end_pos), editorX.getCurrentPos() - start_pos ) if box_start_offset != None: size_of_box_in_chars = box_end_offset - box_start_offset if size_of_box_in_chars <= 2: pass # rather pointless to box in if the opening and closing delims are right next to each other else: editorX.setIndicatorCurrent(BH__dict['indic_for_box_at_caret']) editorX.indicatorFillRange(start_pos + box_start_offset, size_of_box_in_chars) editor.callbackSync(BH__callback_sci_UPDATEUI, [SCINTILLANOTIFICATION.UPDATEUI]) # install callback editor.callbackSync(BH__callback_sci_MODIFIED, [SCINTILLANOTIFICATION.MODIFIED]) # may not need to be "Sync", but for now we'll make it that way else: editor.setSelectionMode(editor.getSelectionMode()) # force manual UPDATEUI to happen
try: BH__dict except NameError: bh__dict = dict() BH__dict['indic_for_box_at_caret'] = 10 def indicator_options_set(indicator_number, indicator_style, rgb_color_tup, alpha, outline_alpha, draw_under_text, which_editor=editor): which_editor.indicSetStyle(indicator_number, indicator_style) which_editor.indicSetFore(indicator_number, rgb_color_tup) which_editor.indicSetAlpha(indicator_number, alpha) which_editor.indicSetOutlineAlpha(indicator_number, outline_alpha) which_editor.indicSetUnder(indicator_number, draw_under_text) for editor_x in (editor1, editor2): indicator_options_set(BH__dict['indic_for_box_at_caret'], INDICATORSTYLE.STRAIGHTBOX, (238, 121, 159), 0, 255, True, editorX) BH__dict['last_modificationType_for_hack'] = None def bh__containing_box_indices_into_string(str_containing_caret, caret_index_into_str): class Stack: def __init__(self): self.clear() def is_empty(self): return self.size() == 0 def push(self, item): self.items.append(item) def pop(self): return None if self.size() == 0 else self.items.pop() def peek(self): return None if self.size() == 0 else self.items[self.size() - 1] def size(self): return len(self.items) def clear(self): self.items = [] retval = (None, None) get_opening_char_via_closing_char_dict = {')': '(', ']': '[', '}': '{'} get_closing_char_via_opening_char_dict = dict(((v, k) for (k, v) in get_opening_char_via_closing_char_dict.items())) closing_chars = get_opening_char_via_closing_char_dict.keys() opening_chars = get_opening_char_via_closing_char_dict.values() box_ending_index = -1 box_starting_index = -1 stack = stack() for j in range(caret_index_into_str, len(str_containing_caret)): c = str_containing_caret[j] if c in closing_chars: if stack.isEmpty(): box_ending_index = j break elif stack.peek() == get_opening_char_via_closing_char_dict[c]: stack.pop() else: break elif c in opening_chars: stack.push(c) if box_ending_index != -1: stack.clear() box_starting_index = -1 for j in range(caret_index_into_str - 1, -1, -1): c = str_containing_caret[j] if c in opening_chars: if stack.isEmpty(): box_starting_index = j break elif stack.peek() == get_closing_char_via_opening_char_dict[c]: stack.pop() else: break elif c in closing_chars: stack.push(c) if box_ending_index != -1: if box_starting_index != -1: if str_containing_caret[box_ending_index] == get_closing_char_via_opening_char_dict[str_containing_caret[box_starting_index]]: retval = (box_starting_index, box_ending_index + 1) return retval def bh__callback_sci_modified(args): global BH__dict BH__dict['last_modificationType_for_hack'] = args['modificationType'] def bh__file_is_cloned(file_name_to_test): retval = False clone_detect_dict = {} file_tup_list = notepad.getFiles() for tup in file_tup_list: (filename, _, _, _) = tup if filename not in clone_detect_dict: clone_detect_dict[filename] = 0 else: clone_detect_dict[filename] += 1 if filename == file_name_to_test: break if file_name_to_test in clone_detect_dict: if clone_detect_dict[file_name_to_test] >= 1: retval = True return retval def bh__file_is_cloned_and_is_active_in_both_views(file_name_to_test): retval = False if editor1 and editor2: if bh__file_is_cloned(file_name_to_test): curr_doc_index_main_view = notepad.getCurrentDocIndex(0) curr_doc_index_2nd_view = notepad.getCurrentDocIndex(1) main_view_active_doc_bool = False secondary_view_active_doc_bool = False file_tup_list = notepad.getFiles() for tup in file_tup_list: (filename, _, index_in_view, view_number) = tup if filename == file_name_to_test: if view_number == 0: if index_in_view == curr_doc_index_main_view: main_view_active_doc_bool = True elif view_number == 1: if index_in_view == curr_doc_index_2nd_view: secondary_view_active_doc_bool = True if main_view_active_doc_bool and secondary_view_active_doc_bool: retval = True break return retval def bh__get_viewable_editor_and_range_tuple_list_list(work_across_both_views): retval = [] def consolidate_range_tuple_list(range_tup_list): sorted_range_tup_list = sorted(range_tup_list) saved_2element_list = list(sorted_range_tup_list[0]) for (start, end) in sorted_range_tup_list: if start <= saved_2element_list[1]: saved_2element_list[1] = max(saved_2element_list[1], end) else: yield tuple(saved_2element_list) saved_2element_list[0] = start saved_2element_list[1] = end yield tuple(saved_2element_list) def get_onscreen_pos_tup_list(which_editor): retval_tup_list = list() temp_tup_list = [] maxlinehighlight = 400 first_line = which_editor.getFirstVisibleLine() current_line = firstLine nb_line_on_screen = which_editor.linesOnScreen() nr_lines = min(nbLineOnScreen, MAXLINEHIGHLIGHT) + 1 last_line = firstLine + nrLines prev_doc_line_checked = -1 break_out = False while currentLine < lastLine: doc_line = which_editor.docLineFromVisible(currentLine) if docLine != prevDocLineChecked: prev_doc_line_checked = docLine start_pos = which_editor.positionFromLine(docLine) end_pos = which_editor.positionFromLine(docLine + 1) if endPos == -1: end_pos = which_editor.getTextLength() - 1 break_out = True if endPos > startPos: temp_tup_list.append((startPos, endPos)) if break_out: break current_line += 1 if len(temp_tup_list) > 0: retval_tup_list = list(consolidate_range_tuple_list(temp_tup_list)) return retval_tup_list both_views_open = True if editor1 and editor2 else False curr_file_active_in_both_views = bh__file_is_cloned_and_is_active_in_both_views(notepad.getCurrentFilename()) if both_views_open else False if both_views_open: ed1_range_tup_list = get_onscreen_pos_tup_list(editor1) ed2_range_tup_list = get_onscreen_pos_tup_list(editor2) if curr_file_active_in_both_views: range_tup_list = list(consolidate_range_tuple_list(ed1_range_tup_list + ed2_range_tup_list)) retval.append((editor, range_tup_list)) elif both_views_open and work_across_both_views: retval.append((editor1, ed1_range_tup_list)) retval.append((editor2, ed2_range_tup_list)) else: range_tup_list = get_onscreen_pos_tup_list(editor) retval.append((editor, range_tup_list)) return retval def bh__callback_sci_updateui(args): if args['updated'] == UPDATE.CONTENT and BH__dict['last_modificationType_for_hack'] == MODIFICATIONFLAGS.CHANGEINDICATOR | MODIFICATIONFLAGS.USER: return for (editor_x, pos_range_tuple_list) in bh__get_viewable_editor_and_range_tuple_list_list(True): for (start_pos, end_pos) in pos_range_tuple_list: editorX.setIndicatorCurrent(BH__dict['indic_for_box_at_caret']) editorX.indicatorClearRange(start_pos, end_pos - start_pos) for (start_pos, end_pos) in pos_range_tuple_list: if start_pos <= editorX.getCurrentPos() <= end_pos: (box_start_offset, box_end_offset) = bh__containing_box_indices_into_string(editorX.getTextRange(start_pos, end_pos), editorX.getCurrentPos() - start_pos) if box_start_offset != None: size_of_box_in_chars = box_end_offset - box_start_offset if size_of_box_in_chars <= 2: pass else: editorX.setIndicatorCurrent(BH__dict['indic_for_box_at_caret']) editorX.indicatorFillRange(start_pos + box_start_offset, size_of_box_in_chars) editor.callbackSync(BH__callback_sci_UPDATEUI, [SCINTILLANOTIFICATION.UPDATEUI]) editor.callbackSync(BH__callback_sci_MODIFIED, [SCINTILLANOTIFICATION.MODIFIED]) else: editor.setSelectionMode(editor.getSelectionMode())
class Solution: def evalRPN(self, tokens: List[str]) -> int: num_stack = [] for token in tokens: if token in "+-*/": num2, num1 = num_stack.pop(), num_stack.pop() if token == "+": num_stack.append(num1 + num2) elif token == "-": num_stack.append(num1 - num2) elif token == "*": num_stack.append(num1 * num2) elif token == "/": if num1 % num2 != 0 and num1 * num2 < 0: num_stack.append(num1 // num2 + 1) else: num_stack.append(num1 // num2) else: num_stack.append(int(token)) return num_stack.pop()
class Solution: def eval_rpn(self, tokens: List[str]) -> int: num_stack = [] for token in tokens: if token in '+-*/': (num2, num1) = (num_stack.pop(), num_stack.pop()) if token == '+': num_stack.append(num1 + num2) elif token == '-': num_stack.append(num1 - num2) elif token == '*': num_stack.append(num1 * num2) elif token == '/': if num1 % num2 != 0 and num1 * num2 < 0: num_stack.append(num1 // num2 + 1) else: num_stack.append(num1 // num2) else: num_stack.append(int(token)) return num_stack.pop()
# # @lc app=leetcode id=221 lang=python3 # # [221] Maximal Square # # @lc code=start class Solution: def maximalSquare(self, matrix: List[List[str]]) -> int: for i in range(len(matrix)): for j in range(len(matrix[0])): matrix[i][j] = int(matrix[i][j]) if i and j and matrix[i][j]: matrix[i][j] = min(matrix[i - 1][j - 1], matrix[i - 1][j], matrix[i][j - 1]) + 1 return len(matrix) and max(map(max, matrix)) ** 2 # @lc code=end # Accepted # 68/68 cases passed(216 ms) # Your runtime beats 57.95 % of python3 submissions # Your memory usage beats 95.45 % of python3 submissions(13.8 MB)
class Solution: def maximal_square(self, matrix: List[List[str]]) -> int: for i in range(len(matrix)): for j in range(len(matrix[0])): matrix[i][j] = int(matrix[i][j]) if i and j and matrix[i][j]: matrix[i][j] = min(matrix[i - 1][j - 1], matrix[i - 1][j], matrix[i][j - 1]) + 1 return len(matrix) and max(map(max, matrix)) ** 2
seq_to_protein = dict( AUG="Methionine", UUU="Phenylalanine", UUC="Phenylalanine", UUA="Leucine", UUG="Leucine", UCU="Serine", UCC="Serine", UCA="Serine", UCG="Serine", UAU="Tyrosine", UAC="Tyrosine", UGU="Cysteine", UGC="Cysteine", UGG="Tryptophan", UAA="STOP", UAG="STOP", UGA="STOP", ) def get_sequences(strand: str): sequence_len = 3 cursor = 0 while cursor < len(strand): cursor += sequence_len yield strand[cursor - sequence_len : cursor] def proteins(strand): result = [] for seq in get_sequences(strand): mapped_seq = seq_to_protein[seq] if mapped_seq == "STOP": return result result.append(mapped_seq) return result
seq_to_protein = dict(AUG='Methionine', UUU='Phenylalanine', UUC='Phenylalanine', UUA='Leucine', UUG='Leucine', UCU='Serine', UCC='Serine', UCA='Serine', UCG='Serine', UAU='Tyrosine', UAC='Tyrosine', UGU='Cysteine', UGC='Cysteine', UGG='Tryptophan', UAA='STOP', UAG='STOP', UGA='STOP') def get_sequences(strand: str): sequence_len = 3 cursor = 0 while cursor < len(strand): cursor += sequence_len yield strand[cursor - sequence_len:cursor] def proteins(strand): result = [] for seq in get_sequences(strand): mapped_seq = seq_to_protein[seq] if mapped_seq == 'STOP': return result result.append(mapped_seq) return result
poly = [2, 8] const = 5 out = [const] for index in range(len(poly)): out.append(poly[index] / (index + 1)) print(out)
poly = [2, 8] const = 5 out = [const] for index in range(len(poly)): out.append(poly[index] / (index + 1)) print(out)
token = '1111:example' # @ShowJsonBot chat_ids = [12345] games = [ 'monopoly', ]
token = '1111:example' chat_ids = [12345] games = ['monopoly']
# # Write a query that returns all the species in the zoo, and how many animals of # each species there are, sorted with the most populous species at the top. # # The result should have two columns: species and number. # # The animals table has columns (name, species, birthdate) for each individual. # QUERY = "select species, count(species) number from animals group by species order by number desc"
query = 'select species, count(species) number from animals group by species order by number desc'
while True: numero=int(input("")) if(numero==2002): print("Accceso Permitido") break else: print("Senha Invalida")
while True: numero = int(input('')) if numero == 2002: print('Accceso Permitido') break else: print('Senha Invalida')
x = 25 epsilon = 0.01 #step = epsilon ** 2 numGuesses = 0 low = 0 high = max(1, x) ans = (high + low) / 2 while abs(ans**2 - x) >= epsilon: print(f"low = {low}, high ={high} , ans = {ans}") numGuesses += 1 if ans**2 < x : low = ans else: high = ans ans = (high + low) / 2 print(numGuesses) print(f" {ans} is close to square root of {x}")
x = 25 epsilon = 0.01 num_guesses = 0 low = 0 high = max(1, x) ans = (high + low) / 2 while abs(ans ** 2 - x) >= epsilon: print(f'low = {low}, high ={high} , ans = {ans}') num_guesses += 1 if ans ** 2 < x: low = ans else: high = ans ans = (high + low) / 2 print(numGuesses) print(f' {ans} is close to square root of {x}')
# The optimized implementation def fib(n): if (n == 1 or n == 2): return 1 prev = 1 curr = 1 for i in range(2, n): sums = prev + curr prev = curr curr = sums return curr print(fib(50))
def fib(n): if n == 1 or n == 2: return 1 prev = 1 curr = 1 for i in range(2, n): sums = prev + curr prev = curr curr = sums return curr print(fib(50))