@adtrackify/at-service-common 1.2.37 → 1.2.999

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (282) hide show
  1. package/dist/cjs/__tests__/helpers/subscription-helper.spec.js +53 -0
  2. package/dist/cjs/__tests__/helpers/subscription-helper.spec.js.map +1 -0
  3. package/dist/cjs/__tests__/s3-client/s3-client.spec.js +27 -0
  4. package/dist/cjs/__tests__/s3-client/s3-client.spec.js.map +1 -0
  5. package/dist/cjs/clients/generic/cognito-client.js +145 -0
  6. package/dist/cjs/clients/generic/cognito-client.js.map +1 -0
  7. package/dist/cjs/clients/generic/dynamodb-client.js +127 -0
  8. package/dist/cjs/clients/generic/dynamodb-client.js.map +1 -0
  9. package/dist/cjs/clients/generic/eventbridge-client.js +50 -0
  10. package/dist/cjs/clients/generic/eventbridge-client.js.map +1 -0
  11. package/dist/cjs/clients/generic/http-client.js +36 -0
  12. package/dist/cjs/clients/generic/http-client.js.map +1 -0
  13. package/dist/cjs/clients/generic/index.js +23 -0
  14. package/dist/cjs/clients/generic/index.js.map +1 -0
  15. package/dist/cjs/clients/generic/s3-client.js +83 -0
  16. package/dist/cjs/clients/generic/s3-client.js.map +1 -0
  17. package/dist/cjs/clients/generic/sqs-client.js +39 -0
  18. package/dist/cjs/clients/generic/sqs-client.js.map +1 -0
  19. package/dist/cjs/clients/index.js +20 -0
  20. package/dist/cjs/clients/index.js.map +1 -0
  21. package/dist/cjs/clients/internal-api/accounts-client.js +83 -0
  22. package/dist/cjs/clients/internal-api/accounts-client.js.map +1 -0
  23. package/dist/cjs/clients/internal-api/destinations-client.js +41 -0
  24. package/dist/cjs/clients/internal-api/destinations-client.js.map +1 -0
  25. package/dist/cjs/clients/internal-api/index.js +21 -0
  26. package/dist/cjs/clients/internal-api/index.js.map +1 -0
  27. package/dist/cjs/clients/internal-api/shopify-app-install-client.js +50 -0
  28. package/dist/cjs/clients/internal-api/shopify-app-install-client.js.map +1 -0
  29. package/dist/cjs/clients/internal-api/users-auth-client.js +78 -0
  30. package/dist/cjs/clients/internal-api/users-auth-client.js.map +1 -0
  31. package/dist/cjs/clients/third-party/index.js +18 -0
  32. package/dist/cjs/clients/third-party/index.js.map +1 -0
  33. package/dist/cjs/clients/third-party/shopify-client.js +126 -0
  34. package/dist/cjs/clients/third-party/shopify-client.js.map +1 -0
  35. package/dist/cjs/helpers/index.js +22 -0
  36. package/dist/cjs/helpers/index.js.map +1 -0
  37. package/dist/cjs/helpers/input-validation-helper.js +23 -0
  38. package/dist/cjs/helpers/input-validation-helper.js.map +1 -0
  39. package/dist/cjs/helpers/logging-helper.js +81 -0
  40. package/dist/cjs/helpers/logging-helper.js.map +1 -0
  41. package/dist/cjs/helpers/response-helper.js +42 -0
  42. package/dist/cjs/helpers/response-helper.js.map +1 -0
  43. package/dist/cjs/helpers/shopify-helper.js +29 -0
  44. package/dist/cjs/helpers/shopify-helper.js.map +1 -0
  45. package/dist/cjs/helpers/subscription-helper.js +187 -0
  46. package/dist/cjs/helpers/subscription-helper.js.map +1 -0
  47. package/dist/cjs/index.js +22 -0
  48. package/dist/cjs/index.js.map +1 -0
  49. package/dist/cjs/libs/clickId-parser.js +32 -0
  50. package/dist/cjs/libs/clickId-parser.js.map +1 -0
  51. package/dist/cjs/libs/crypto.js +13 -0
  52. package/dist/cjs/libs/crypto.js.map +1 -0
  53. package/dist/cjs/libs/dates.js +17 -0
  54. package/dist/cjs/libs/dates.js.map +1 -0
  55. package/dist/cjs/libs/http-error.js +60 -0
  56. package/dist/cjs/libs/http-error.js.map +1 -0
  57. package/dist/cjs/libs/http-status-codes.js +63 -0
  58. package/dist/cjs/libs/http-status-codes.js.map +1 -0
  59. package/dist/cjs/libs/index.js +25 -0
  60. package/dist/cjs/libs/index.js.map +1 -0
  61. package/dist/cjs/libs/referrer-parser/index.js +19 -0
  62. package/dist/cjs/libs/referrer-parser/index.js.map +1 -0
  63. package/dist/cjs/libs/referrer-parser/referrer-data.js +4713 -0
  64. package/dist/cjs/libs/referrer-parser/referrer-data.js.map +1 -0
  65. package/dist/{libs → cjs/libs}/referrer-parser/referrer-parser-util.d.ts +1 -1
  66. package/dist/cjs/libs/referrer-parser/referrer-parser-util.js +124 -0
  67. package/dist/cjs/libs/referrer-parser/referrer-parser-util.js.map +1 -0
  68. package/dist/cjs/libs/url.js +14 -0
  69. package/dist/cjs/libs/url.js.map +1 -0
  70. package/dist/cjs/services/eventbridge-integration-service.js +29 -0
  71. package/dist/cjs/services/eventbridge-integration-service.js.map +1 -0
  72. package/dist/cjs/services/index.js +18 -0
  73. package/dist/cjs/services/index.js.map +1 -0
  74. package/dist/cjs/types/api-response.js +3 -0
  75. package/dist/{types → cjs/types}/api-response.js.map +1 -1
  76. package/dist/cjs/types/index.js +18 -0
  77. package/dist/cjs/types/index.js.map +1 -0
  78. package/dist/cjs/types/internal-events/event-detail-types.js +28 -0
  79. package/dist/cjs/types/internal-events/event-detail-types.js.map +1 -0
  80. package/dist/cjs/types/internal-events/index.js +18 -0
  81. package/dist/cjs/types/internal-events/index.js.map +1 -0
  82. package/dist/esm/__tests__/helpers/subscription-helper.spec.d.ts +1 -0
  83. package/dist/esm/__tests__/helpers/subscription-helper.spec.js.map +1 -0
  84. package/dist/esm/__tests__/s3-client/s3-client.spec.d.ts +1 -0
  85. package/dist/esm/__tests__/s3-client/s3-client.spec.js.map +1 -0
  86. package/dist/esm/clients/generic/cognito-client.d.ts +19 -0
  87. package/dist/esm/clients/generic/cognito-client.js.map +1 -0
  88. package/dist/esm/clients/generic/dynamodb-client.d.ts +15 -0
  89. package/dist/esm/clients/generic/dynamodb-client.js.map +1 -0
  90. package/dist/esm/clients/generic/eventbridge-client.d.ts +14 -0
  91. package/dist/esm/clients/generic/eventbridge-client.js.map +1 -0
  92. package/dist/esm/clients/generic/http-client.d.ts +30 -0
  93. package/dist/esm/clients/generic/http-client.js.map +1 -0
  94. package/dist/esm/clients/generic/index.d.ts +6 -0
  95. package/dist/esm/clients/generic/index.js.map +1 -0
  96. package/dist/esm/clients/generic/s3-client.d.ts +14 -0
  97. package/dist/esm/clients/generic/s3-client.js.map +1 -0
  98. package/dist/esm/clients/generic/sqs-client.d.ts +14 -0
  99. package/dist/esm/clients/generic/sqs-client.js.map +1 -0
  100. package/dist/esm/clients/index.d.ts +3 -0
  101. package/dist/esm/clients/index.js.map +1 -0
  102. package/dist/esm/clients/internal-api/accounts-client.d.ts +82 -0
  103. package/dist/esm/clients/internal-api/accounts-client.js.map +1 -0
  104. package/dist/esm/clients/internal-api/destinations-client.d.ts +54 -0
  105. package/dist/esm/clients/internal-api/destinations-client.js.map +1 -0
  106. package/dist/esm/clients/internal-api/index.d.ts +4 -0
  107. package/dist/esm/clients/internal-api/index.js.map +1 -0
  108. package/dist/esm/clients/internal-api/shopify-app-install-client.d.ts +57 -0
  109. package/dist/esm/clients/internal-api/shopify-app-install-client.js.map +1 -0
  110. package/dist/esm/clients/internal-api/users-auth-client.d.ts +61 -0
  111. package/dist/esm/clients/internal-api/users-auth-client.js.map +1 -0
  112. package/dist/esm/clients/third-party/index.d.ts +1 -0
  113. package/dist/esm/clients/third-party/index.js.map +1 -0
  114. package/dist/esm/clients/third-party/shopify-client.d.ts +90 -0
  115. package/dist/esm/clients/third-party/shopify-client.js.map +1 -0
  116. package/dist/esm/helpers/index.d.ts +5 -0
  117. package/dist/esm/helpers/index.js.map +1 -0
  118. package/dist/esm/helpers/input-validation-helper.d.ts +2 -0
  119. package/dist/esm/helpers/input-validation-helper.js.map +1 -0
  120. package/dist/esm/helpers/logging-helper.d.ts +15 -0
  121. package/dist/esm/helpers/logging-helper.js.map +1 -0
  122. package/dist/esm/helpers/response-helper.d.ts +36 -0
  123. package/dist/esm/helpers/response-helper.js.map +1 -0
  124. package/dist/esm/helpers/shopify-helper.d.ts +9 -0
  125. package/dist/esm/helpers/shopify-helper.js.map +1 -0
  126. package/dist/esm/helpers/subscription-helper.d.ts +8 -0
  127. package/dist/esm/helpers/subscription-helper.js.map +1 -0
  128. package/dist/esm/index.d.ts +5 -0
  129. package/dist/esm/index.js.map +1 -0
  130. package/dist/esm/libs/clickId-parser.d.ts +18 -0
  131. package/dist/esm/libs/clickId-parser.js.map +1 -0
  132. package/dist/esm/libs/crypto.d.ts +1 -0
  133. package/dist/esm/libs/crypto.js.map +1 -0
  134. package/dist/esm/libs/dates.d.ts +3 -0
  135. package/dist/esm/libs/dates.js.map +1 -0
  136. package/dist/esm/libs/http-error.d.ts +21 -0
  137. package/dist/esm/libs/http-error.js.map +1 -0
  138. package/dist/esm/libs/http-status-codes.d.ts +58 -0
  139. package/dist/esm/libs/http-status-codes.js.map +1 -0
  140. package/dist/esm/libs/index.d.ts +8 -0
  141. package/dist/esm/libs/index.js.map +1 -0
  142. package/dist/esm/libs/referrer-parser/index.d.ts +2 -0
  143. package/dist/esm/libs/referrer-parser/index.js.map +1 -0
  144. package/dist/esm/libs/referrer-parser/referrer-data.d.ts +9 -0
  145. package/dist/esm/libs/referrer-parser/referrer-data.js.map +1 -0
  146. package/dist/esm/libs/referrer-parser/referrer-parser-util.d.ts +20 -0
  147. package/dist/esm/libs/referrer-parser/referrer-parser-util.js.map +1 -0
  148. package/dist/esm/libs/url.d.ts +1 -0
  149. package/dist/esm/libs/url.js.map +1 -0
  150. package/dist/esm/services/eventbridge-integration-service.d.ts +9 -0
  151. package/dist/esm/services/eventbridge-integration-service.js.map +1 -0
  152. package/dist/esm/services/index.d.ts +1 -0
  153. package/dist/esm/services/index.js.map +1 -0
  154. package/dist/esm/types/api-response.d.ts +6 -0
  155. package/dist/esm/types/api-response.js.map +1 -0
  156. package/dist/esm/types/index.d.ts +1 -0
  157. package/dist/esm/types/index.js.map +1 -0
  158. package/dist/esm/types/internal-events/event-detail-types.d.ts +20 -0
  159. package/dist/esm/types/internal-events/event-detail-types.js.map +1 -0
  160. package/dist/esm/types/internal-events/index.d.ts +1 -0
  161. package/dist/esm/types/internal-events/index.js.map +1 -0
  162. package/package.json +9 -9
  163. package/dist/__tests__/helpers/subscription-helper.spec.js.map +0 -1
  164. package/dist/__tests__/s3-client/s3-client.spec.js.map +0 -1
  165. package/dist/clients/generic/cognito-client.js.map +0 -1
  166. package/dist/clients/generic/dynamodb-client.js.map +0 -1
  167. package/dist/clients/generic/eventbridge-client.js.map +0 -1
  168. package/dist/clients/generic/http-client.js.map +0 -1
  169. package/dist/clients/generic/index.js.map +0 -1
  170. package/dist/clients/generic/s3-client.js.map +0 -1
  171. package/dist/clients/generic/sqs-client.js.map +0 -1
  172. package/dist/clients/index.js.map +0 -1
  173. package/dist/clients/internal-api/accounts-client.js.map +0 -1
  174. package/dist/clients/internal-api/destinations-client.js.map +0 -1
  175. package/dist/clients/internal-api/index.js.map +0 -1
  176. package/dist/clients/internal-api/shopify-app-install-client.js.map +0 -1
  177. package/dist/clients/internal-api/users-auth-client.js.map +0 -1
  178. package/dist/clients/third-party/index.js.map +0 -1
  179. package/dist/clients/third-party/shopify-client.js.map +0 -1
  180. package/dist/helpers/index.js.map +0 -1
  181. package/dist/helpers/input-validation-helper.js.map +0 -1
  182. package/dist/helpers/logging-helper.js.map +0 -1
  183. package/dist/helpers/response-helper.js.map +0 -1
  184. package/dist/helpers/shopify-helper.js.map +0 -1
  185. package/dist/helpers/subscription-helper.js.map +0 -1
  186. package/dist/index.esm.js +0 -9432
  187. package/dist/index.esm.js.map +0 -7
  188. package/dist/index.js.map +0 -1
  189. package/dist/libs/clickId-parser.js.map +0 -1
  190. package/dist/libs/crypto.js.map +0 -1
  191. package/dist/libs/dates.js.map +0 -1
  192. package/dist/libs/http-error.js.map +0 -1
  193. package/dist/libs/http-status-codes.js.map +0 -1
  194. package/dist/libs/index.js.map +0 -1
  195. package/dist/libs/referrer-parser/index.js.map +0 -1
  196. package/dist/libs/referrer-parser/referrer-data.js.map +0 -1
  197. package/dist/libs/referrer-parser/referrer-parser-util.js.map +0 -1
  198. package/dist/libs/url.js.map +0 -1
  199. package/dist/services/eventbridge-integration-service.js.map +0 -1
  200. package/dist/services/index.js.map +0 -1
  201. package/dist/types/index.js.map +0 -1
  202. package/dist/types/internal-events/event-detail-types.js.map +0 -1
  203. package/dist/types/internal-events/index.js.map +0 -1
  204. /package/dist/{__tests__ → cjs/__tests__}/helpers/subscription-helper.spec.d.ts +0 -0
  205. /package/dist/{__tests__ → cjs/__tests__}/s3-client/s3-client.spec.d.ts +0 -0
  206. /package/dist/{clients → cjs/clients}/generic/cognito-client.d.ts +0 -0
  207. /package/dist/{clients → cjs/clients}/generic/dynamodb-client.d.ts +0 -0
  208. /package/dist/{clients → cjs/clients}/generic/eventbridge-client.d.ts +0 -0
  209. /package/dist/{clients → cjs/clients}/generic/http-client.d.ts +0 -0
  210. /package/dist/{clients → cjs/clients}/generic/index.d.ts +0 -0
  211. /package/dist/{clients → cjs/clients}/generic/s3-client.d.ts +0 -0
  212. /package/dist/{clients → cjs/clients}/generic/sqs-client.d.ts +0 -0
  213. /package/dist/{clients → cjs/clients}/index.d.ts +0 -0
  214. /package/dist/{clients → cjs/clients}/internal-api/accounts-client.d.ts +0 -0
  215. /package/dist/{clients → cjs/clients}/internal-api/destinations-client.d.ts +0 -0
  216. /package/dist/{clients → cjs/clients}/internal-api/index.d.ts +0 -0
  217. /package/dist/{clients → cjs/clients}/internal-api/shopify-app-install-client.d.ts +0 -0
  218. /package/dist/{clients → cjs/clients}/internal-api/users-auth-client.d.ts +0 -0
  219. /package/dist/{clients → cjs/clients}/third-party/index.d.ts +0 -0
  220. /package/dist/{clients → cjs/clients}/third-party/shopify-client.d.ts +0 -0
  221. /package/dist/{helpers → cjs/helpers}/index.d.ts +0 -0
  222. /package/dist/{helpers → cjs/helpers}/input-validation-helper.d.ts +0 -0
  223. /package/dist/{helpers → cjs/helpers}/logging-helper.d.ts +0 -0
  224. /package/dist/{helpers → cjs/helpers}/response-helper.d.ts +0 -0
  225. /package/dist/{helpers → cjs/helpers}/shopify-helper.d.ts +0 -0
  226. /package/dist/{helpers → cjs/helpers}/subscription-helper.d.ts +0 -0
  227. /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
  228. /package/dist/{libs → cjs/libs}/clickId-parser.d.ts +0 -0
  229. /package/dist/{libs → cjs/libs}/crypto.d.ts +0 -0
  230. /package/dist/{libs → cjs/libs}/dates.d.ts +0 -0
  231. /package/dist/{libs → cjs/libs}/http-error.d.ts +0 -0
  232. /package/dist/{libs → cjs/libs}/http-status-codes.d.ts +0 -0
  233. /package/dist/{libs → cjs/libs}/index.d.ts +0 -0
  234. /package/dist/{libs → cjs/libs}/referrer-parser/index.d.ts +0 -0
  235. /package/dist/{libs → cjs/libs}/referrer-parser/referrer-data.d.ts +0 -0
  236. /package/dist/{libs → cjs/libs}/url.d.ts +0 -0
  237. /package/dist/{services → cjs/services}/eventbridge-integration-service.d.ts +0 -0
  238. /package/dist/{services → cjs/services}/index.d.ts +0 -0
  239. /package/dist/{types → cjs/types}/api-response.d.ts +0 -0
  240. /package/dist/{types → cjs/types}/index.d.ts +0 -0
  241. /package/dist/{types → cjs/types}/internal-events/event-detail-types.d.ts +0 -0
  242. /package/dist/{types → cjs/types}/internal-events/index.d.ts +0 -0
  243. /package/dist/{__tests__ → esm/__tests__}/helpers/subscription-helper.spec.js +0 -0
  244. /package/dist/{__tests__ → esm/__tests__}/s3-client/s3-client.spec.js +0 -0
  245. /package/dist/{clients → esm/clients}/generic/cognito-client.js +0 -0
  246. /package/dist/{clients → esm/clients}/generic/dynamodb-client.js +0 -0
  247. /package/dist/{clients → esm/clients}/generic/eventbridge-client.js +0 -0
  248. /package/dist/{clients → esm/clients}/generic/http-client.js +0 -0
  249. /package/dist/{clients → esm/clients}/generic/index.js +0 -0
  250. /package/dist/{clients → esm/clients}/generic/s3-client.js +0 -0
  251. /package/dist/{clients → esm/clients}/generic/sqs-client.js +0 -0
  252. /package/dist/{clients → esm/clients}/index.js +0 -0
  253. /package/dist/{clients → esm/clients}/internal-api/accounts-client.js +0 -0
  254. /package/dist/{clients → esm/clients}/internal-api/destinations-client.js +0 -0
  255. /package/dist/{clients → esm/clients}/internal-api/index.js +0 -0
  256. /package/dist/{clients → esm/clients}/internal-api/shopify-app-install-client.js +0 -0
  257. /package/dist/{clients → esm/clients}/internal-api/users-auth-client.js +0 -0
  258. /package/dist/{clients → esm/clients}/third-party/index.js +0 -0
  259. /package/dist/{clients → esm/clients}/third-party/shopify-client.js +0 -0
  260. /package/dist/{helpers → esm/helpers}/index.js +0 -0
  261. /package/dist/{helpers → esm/helpers}/input-validation-helper.js +0 -0
  262. /package/dist/{helpers → esm/helpers}/logging-helper.js +0 -0
  263. /package/dist/{helpers → esm/helpers}/response-helper.js +0 -0
  264. /package/dist/{helpers → esm/helpers}/shopify-helper.js +0 -0
  265. /package/dist/{helpers → esm/helpers}/subscription-helper.js +0 -0
  266. /package/dist/{index.js → esm/index.js} +0 -0
  267. /package/dist/{libs → esm/libs}/clickId-parser.js +0 -0
  268. /package/dist/{libs → esm/libs}/crypto.js +0 -0
  269. /package/dist/{libs → esm/libs}/dates.js +0 -0
  270. /package/dist/{libs → esm/libs}/http-error.js +0 -0
  271. /package/dist/{libs → esm/libs}/http-status-codes.js +0 -0
  272. /package/dist/{libs → esm/libs}/index.js +0 -0
  273. /package/dist/{libs → esm/libs}/referrer-parser/index.js +0 -0
  274. /package/dist/{libs → esm/libs}/referrer-parser/referrer-data.js +0 -0
  275. /package/dist/{libs → esm/libs}/referrer-parser/referrer-parser-util.js +0 -0
  276. /package/dist/{libs → esm/libs}/url.js +0 -0
  277. /package/dist/{services → esm/services}/eventbridge-integration-service.js +0 -0
  278. /package/dist/{services → esm/services}/index.js +0 -0
  279. /package/dist/{types → esm/types}/api-response.js +0 -0
  280. /package/dist/{types → esm/types}/index.js +0 -0
  281. /package/dist/{types → esm/types}/internal-events/event-detail-types.js +0 -0
  282. /package/dist/{types → esm/types}/internal-events/index.js +0 -0
@@ -0,0 +1,4713 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.REFERRER_DATA = void 0;
4
+ exports.REFERRER_DATA = {
5
+ 'unknown': {
6
+ 'Google': {
7
+ 'domains': [
8
+ 'support.google.com',
9
+ 'developers.google.com',
10
+ 'maps.google.com',
11
+ 'accounts.google.com',
12
+ 'drive.google.com',
13
+ 'sites.google.com',
14
+ 'groups.google.com',
15
+ 'groups.google.co.uk'
16
+ ]
17
+ },
18
+ 'Yandex Maps': {
19
+ 'domains': [
20
+ 'maps.yandex.ru',
21
+ 'maps.yandex.ua',
22
+ 'maps.yandex.com',
23
+ 'maps.yandex.by',
24
+ 'n.maps.yandex.ru'
25
+ ],
26
+ 'parameters': [
27
+ 'text'
28
+ ]
29
+ },
30
+ 'Yahoo!': {
31
+ 'domains': [
32
+ 'finance.yahoo.com',
33
+ 'news.yahoo.com',
34
+ 'eurosport.yahoo.com',
35
+ 'sports.yahoo.com',
36
+ 'astrology.yahoo.com',
37
+ 'travel.yahoo.com',
38
+ 'answers.yahoo.com',
39
+ 'screen.yahoo.com',
40
+ 'weather.yahoo.com',
41
+ 'messenger.yahoo.com',
42
+ 'games.yahoo.com',
43
+ 'shopping.yahoo.net',
44
+ 'movies.yahoo.com',
45
+ 'cars.yahoo.com',
46
+ 'lifestyle.yahoo.com',
47
+ 'omg.yahoo.com',
48
+ 'match.yahoo.net'
49
+ ]
50
+ }
51
+ },
52
+ 'search': {
53
+ 'TalkTalk': {
54
+ 'domains': [
55
+ 'www.talktalk.co.uk'
56
+ ],
57
+ 'parameters': [
58
+ 'query'
59
+ ]
60
+ },
61
+ '1.cz': {
62
+ 'domains': [
63
+ '1.cz'
64
+ ],
65
+ 'parameters': [
66
+ 'q'
67
+ ]
68
+ },
69
+ 'Softonic': {
70
+ 'domains': [
71
+ 'search.softonic.com'
72
+ ],
73
+ 'parameters': [
74
+ 'q'
75
+ ]
76
+ },
77
+ 'GAIS': {
78
+ 'domains': [
79
+ 'gais.cs.ccu.edu.tw'
80
+ ],
81
+ 'parameters': [
82
+ 'q'
83
+ ]
84
+ },
85
+ 'Freecause': {
86
+ 'domains': [
87
+ 'search.freecause.com'
88
+ ],
89
+ 'parameters': [
90
+ 'p'
91
+ ]
92
+ },
93
+ '360.cn': {
94
+ 'domains': [
95
+ 'so.360.cn',
96
+ 'www.so.com'
97
+ ],
98
+ 'parameters': [
99
+ 'q'
100
+ ]
101
+ },
102
+ 'RPMFind': {
103
+ 'domains': [
104
+ 'rpmfind.net',
105
+ 'fr2.rpmfind.net'
106
+ ],
107
+ 'parameters': [
108
+ 'query'
109
+ ]
110
+ },
111
+ 'Comcast': {
112
+ 'domains': [
113
+ 'serach.comcast.net'
114
+ ],
115
+ 'parameters': [
116
+ 'q'
117
+ ]
118
+ },
119
+ 'Voila': {
120
+ 'domains': [
121
+ 'search.ke.voila.fr',
122
+ 'www.lemoteur.fr'
123
+ ],
124
+ 'parameters': [
125
+ 'rdata',
126
+ 'kw'
127
+ ]
128
+ },
129
+ 'Nifty': {
130
+ 'domains': [
131
+ 'search.nifty.com'
132
+ ],
133
+ 'parameters': [
134
+ 'q'
135
+ ]
136
+ },
137
+ 'Atlas': {
138
+ 'domains': [
139
+ 'searchatlas.centrum.cz'
140
+ ],
141
+ 'parameters': [
142
+ 'q'
143
+ ]
144
+ },
145
+ '2gis': {
146
+ 'domains': [
147
+ '2gis.ru',
148
+ 'www.2gis.ru',
149
+ 'link.2gis.ru',
150
+ 'www.link.2gis.ru'
151
+ ]
152
+ },
153
+ 'Lo.st': {
154
+ 'domains': [
155
+ 'lo.st'
156
+ ],
157
+ 'parameters': [
158
+ 'x_query'
159
+ ]
160
+ },
161
+ 'DasTelefonbuch': {
162
+ 'domains': [
163
+ 'www1.dastelefonbuch.de'
164
+ ],
165
+ 'parameters': [
166
+ 'kw'
167
+ ]
168
+ },
169
+ 'Fireball': {
170
+ 'domains': [
171
+ 'www.fireball.de'
172
+ ],
173
+ 'parameters': [
174
+ 'q'
175
+ ]
176
+ },
177
+ '1und1': {
178
+ 'domains': [
179
+ 'search.1und1.de'
180
+ ],
181
+ 'parameters': [
182
+ 'su'
183
+ ]
184
+ },
185
+ 'Virgilio': {
186
+ 'domains': [
187
+ 'ricerca.virgilio.it',
188
+ 'ricercaimmagini.virgilio.it',
189
+ 'ricercavideo.virgilio.it',
190
+ 'ricercanews.virgilio.it',
191
+ 'mobile.virgilio.it'
192
+ ],
193
+ 'parameters': [
194
+ 'qs'
195
+ ]
196
+ },
197
+ 'Telstra': {
198
+ 'domains': [
199
+ 'search.media.telstra.com.au'
200
+ ],
201
+ 'parameters': [
202
+ 'find'
203
+ ]
204
+ },
205
+ 'Web.nl': {
206
+ 'domains': [
207
+ 'www.web.nl'
208
+ ],
209
+ 'parameters': [
210
+ 'zoekwoord'
211
+ ]
212
+ },
213
+ 'Plazoo': {
214
+ 'domains': [
215
+ 'www.plazoo.com'
216
+ ],
217
+ 'parameters': [
218
+ 'q'
219
+ ]
220
+ },
221
+ 'Goyellow.de': {
222
+ 'domains': [
223
+ 'www.goyellow.de'
224
+ ],
225
+ 'parameters': [
226
+ 'MDN'
227
+ ]
228
+ },
229
+ 'AOL': {
230
+ 'domains': [
231
+ 'search.aol.com',
232
+ 'search.aol.it',
233
+ 'aolsearch.aol.com',
234
+ 'aolsearch.com',
235
+ 'www.aolrecherche.aol.fr',
236
+ 'www.aolrecherches.aol.fr',
237
+ 'www.aolimages.aol.fr',
238
+ 'aim.search.aol.com',
239
+ 'www.recherche.aol.fr',
240
+ 'recherche.aol.fr',
241
+ 'find.web.aol.com',
242
+ 'recherche.aol.ca',
243
+ 'aolsearch.aol.co.uk',
244
+ 'search.aol.co.uk',
245
+ 'aolrecherche.aol.fr',
246
+ 'sucheaol.aol.de',
247
+ 'suche.aol.de',
248
+ 'suche.aolsvc.de',
249
+ 'aolbusqueda.aol.com.mx',
250
+ 'alicesuche.aol.de',
251
+ 'alicesuchet.aol.de',
252
+ 'suchet2.aol.de',
253
+ 'search.hp.my.aol.com.au',
254
+ 'search.hp.my.aol.de',
255
+ 'search.hp.my.aol.it',
256
+ 'search-intl.netscape.com'
257
+ ],
258
+ 'parameters': [
259
+ 'q',
260
+ 'query'
261
+ ]
262
+ },
263
+ 'Acoon': {
264
+ 'domains': [
265
+ 'www.acoon.de'
266
+ ],
267
+ 'parameters': [
268
+ 'begriff'
269
+ ]
270
+ },
271
+ 'Free': {
272
+ 'domains': [
273
+ 'search.free.fr',
274
+ 'search1-2.free.fr',
275
+ 'search1-1.free.fr'
276
+ ],
277
+ 'parameters': [
278
+ 'q'
279
+ ]
280
+ },
281
+ 'Apollo Latvia': {
282
+ 'domains': [
283
+ 'apollo.lv/portal/search/'
284
+ ],
285
+ 'parameters': [
286
+ 'q'
287
+ ]
288
+ },
289
+ 'HighBeam': {
290
+ 'domains': [
291
+ 'www.highbeam.com'
292
+ ],
293
+ 'parameters': [
294
+ 'q'
295
+ ]
296
+ },
297
+ 'I-play': {
298
+ 'domains': [
299
+ 'start.iplay.com'
300
+ ],
301
+ 'parameters': [
302
+ 'q'
303
+ ]
304
+ },
305
+ 'FriendFeed': {
306
+ 'domains': [
307
+ 'friendfeed.com'
308
+ ],
309
+ 'parameters': [
310
+ 'q'
311
+ ]
312
+ },
313
+ 'Yasni': {
314
+ 'domains': [
315
+ 'www.yasni.de',
316
+ 'www.yasni.com',
317
+ 'www.yasni.co.uk',
318
+ 'www.yasni.ch',
319
+ 'www.yasni.at'
320
+ ],
321
+ 'parameters': [
322
+ 'query'
323
+ ]
324
+ },
325
+ 'Gigablast': {
326
+ 'domains': [
327
+ 'www.gigablast.com',
328
+ 'dir.gigablast.com'
329
+ ],
330
+ 'parameters': [
331
+ 'q'
332
+ ]
333
+ },
334
+ 'Arcor': {
335
+ 'domains': [
336
+ 'www.arcor.de'
337
+ ],
338
+ 'parameters': [
339
+ 'Keywords'
340
+ ]
341
+ },
342
+ 'arama': {
343
+ 'domains': [
344
+ 'arama.com'
345
+ ],
346
+ 'parameters': [
347
+ 'q'
348
+ ]
349
+ },
350
+ 'Fixsuche': {
351
+ 'domains': [
352
+ 'www.fixsuche.de'
353
+ ],
354
+ 'parameters': [
355
+ 'q'
356
+ ]
357
+ },
358
+ 'Apontador': {
359
+ 'domains': [
360
+ 'apontador.com.br',
361
+ 'www.apontador.com.br'
362
+ ],
363
+ 'parameters': [
364
+ 'q'
365
+ ]
366
+ },
367
+ 'Search.com': {
368
+ 'domains': [
369
+ 'www.search.com'
370
+ ],
371
+ 'parameters': [
372
+ 'q'
373
+ ]
374
+ },
375
+ 'Monstercrawler': {
376
+ 'domains': [
377
+ 'www.monstercrawler.com'
378
+ ],
379
+ 'parameters': [
380
+ 'qry'
381
+ ]
382
+ },
383
+ 'Google Images': {
384
+ 'domains': [
385
+ 'google.ac/imgres',
386
+ 'google.ad/imgres',
387
+ 'google.ae/imgres',
388
+ 'google.am/imgres',
389
+ 'google.as/imgres',
390
+ 'google.at/imgres',
391
+ 'google.az/imgres',
392
+ 'google.ba/imgres',
393
+ 'google.be/imgres',
394
+ 'google.bf/imgres',
395
+ 'google.bg/imgres',
396
+ 'google.bi/imgres',
397
+ 'google.bj/imgres',
398
+ 'google.bs/imgres',
399
+ 'google.by/imgres',
400
+ 'google.ca/imgres',
401
+ 'google.cat/imgres',
402
+ 'google.cc/imgres',
403
+ 'google.cd/imgres',
404
+ 'google.cf/imgres',
405
+ 'google.cg/imgres',
406
+ 'google.ch/imgres',
407
+ 'google.ci/imgres',
408
+ 'google.cl/imgres',
409
+ 'google.cm/imgres',
410
+ 'google.cn/imgres',
411
+ 'google.co.bw/imgres',
412
+ 'google.co.ck/imgres',
413
+ 'google.co.cr/imgres',
414
+ 'google.co.id/imgres',
415
+ 'google.co.il/imgres',
416
+ 'google.co.in/imgres',
417
+ 'google.co.jp/imgres',
418
+ 'google.co.ke/imgres',
419
+ 'google.co.kr/imgres',
420
+ 'google.co.ls/imgres',
421
+ 'google.co.ma/imgres',
422
+ 'google.co.mz/imgres',
423
+ 'google.co.nz/imgres',
424
+ 'google.co.th/imgres',
425
+ 'google.co.tz/imgres',
426
+ 'google.co.ug/imgres',
427
+ 'google.co.uk/imgres',
428
+ 'google.co.uz/imgres',
429
+ 'google.co.ve/imgres',
430
+ 'google.co.vi/imgres',
431
+ 'google.co.za/imgres',
432
+ 'google.co.zm/imgres',
433
+ 'google.co.zw/imgres',
434
+ 'google.com/imgres',
435
+ 'google.com.af/imgres',
436
+ 'google.com.ag/imgres',
437
+ 'google.com.ai/imgres',
438
+ 'google.com.ar/imgres',
439
+ 'google.com.au/imgres',
440
+ 'google.com.bd/imgres',
441
+ 'google.com.bh/imgres',
442
+ 'google.com.bn/imgres',
443
+ 'google.com.bo/imgres',
444
+ 'google.com.br/imgres',
445
+ 'google.com.by/imgres',
446
+ 'google.com.bz/imgres',
447
+ 'google.com.co/imgres',
448
+ 'google.com.cu/imgres',
449
+ 'google.com.cy/imgres',
450
+ 'google.com.do/imgres',
451
+ 'google.com.ec/imgres',
452
+ 'google.com.eg/imgres',
453
+ 'google.com.et/imgres',
454
+ 'google.com.fj/imgres',
455
+ 'google.com.gh/imgres',
456
+ 'google.com.gi/imgres',
457
+ 'google.com.gt/imgres',
458
+ 'google.com.hk/imgres',
459
+ 'google.com.jm/imgres',
460
+ 'google.com.kh/imgres',
461
+ 'google.com.kw/imgres',
462
+ 'google.com.lb/imgres',
463
+ 'google.com.lc/imgres',
464
+ 'google.com.ly/imgres',
465
+ 'google.com.mt/imgres',
466
+ 'google.com.mx/imgres',
467
+ 'google.com.my/imgres',
468
+ 'google.com.na/imgres',
469
+ 'google.com.nf/imgres',
470
+ 'google.com.ng/imgres',
471
+ 'google.com.ni/imgres',
472
+ 'google.com.np/imgres',
473
+ 'google.com.om/imgres',
474
+ 'google.com.pa/imgres',
475
+ 'google.com.pe/imgres',
476
+ 'google.com.ph/imgres',
477
+ 'google.com.pk/imgres',
478
+ 'google.com.pr/imgres',
479
+ 'google.com.py/imgres',
480
+ 'google.com.qa/imgres',
481
+ 'google.com.sa/imgres',
482
+ 'google.com.sb/imgres',
483
+ 'google.com.sg/imgres',
484
+ 'google.com.sl/imgres',
485
+ 'google.com.sv/imgres',
486
+ 'google.com.tj/imgres',
487
+ 'google.com.tn/imgres',
488
+ 'google.com.tr/imgres',
489
+ 'google.com.tw/imgres',
490
+ 'google.com.ua/imgres',
491
+ 'google.com.uy/imgres',
492
+ 'google.com.vc/imgres',
493
+ 'google.com.vn/imgres',
494
+ 'google.cv/imgres',
495
+ 'google.cz/imgres',
496
+ 'google.de/imgres',
497
+ 'google.dj/imgres',
498
+ 'google.dk/imgres',
499
+ 'google.dm/imgres',
500
+ 'google.dz/imgres',
501
+ 'google.ee/imgres',
502
+ 'google.es/imgres',
503
+ 'google.fi/imgres',
504
+ 'google.fm/imgres',
505
+ 'google.fr/imgres',
506
+ 'google.ga/imgres',
507
+ 'google.gd/imgres',
508
+ 'google.ge/imgres',
509
+ 'google.gf/imgres',
510
+ 'google.gg/imgres',
511
+ 'google.gl/imgres',
512
+ 'google.gm/imgres',
513
+ 'google.gp/imgres',
514
+ 'google.gr/imgres',
515
+ 'google.gy/imgres',
516
+ 'google.hn/imgres',
517
+ 'google.hr/imgres',
518
+ 'google.ht/imgres',
519
+ 'google.hu/imgres',
520
+ 'google.ie/imgres',
521
+ 'google.im/imgres',
522
+ 'google.io/imgres',
523
+ 'google.iq/imgres',
524
+ 'google.is/imgres',
525
+ 'google.it/imgres',
526
+ 'google.it.ao/imgres',
527
+ 'google.je/imgres',
528
+ 'google.jo/imgres',
529
+ 'google.kg/imgres',
530
+ 'google.ki/imgres',
531
+ 'google.kz/imgres',
532
+ 'google.la/imgres',
533
+ 'google.li/imgres',
534
+ 'google.lk/imgres',
535
+ 'google.lt/imgres',
536
+ 'google.lu/imgres',
537
+ 'google.lv/imgres',
538
+ 'google.md/imgres',
539
+ 'google.me/imgres',
540
+ 'google.mg/imgres',
541
+ 'google.mk/imgres',
542
+ 'google.ml/imgres',
543
+ 'google.mn/imgres',
544
+ 'google.ms/imgres',
545
+ 'google.mu/imgres',
546
+ 'google.mv/imgres',
547
+ 'google.mw/imgres',
548
+ 'google.ne/imgres',
549
+ 'google.nl/imgres',
550
+ 'google.no/imgres',
551
+ 'google.nr/imgres',
552
+ 'google.nu/imgres',
553
+ 'google.pl/imgres',
554
+ 'google.pn/imgres',
555
+ 'google.ps/imgres',
556
+ 'google.pt/imgres',
557
+ 'google.ro/imgres',
558
+ 'google.rs/imgres',
559
+ 'google.ru/imgres',
560
+ 'google.rw/imgres',
561
+ 'google.sc/imgres',
562
+ 'google.se/imgres',
563
+ 'google.sh/imgres',
564
+ 'google.si/imgres',
565
+ 'google.sk/imgres',
566
+ 'google.sm/imgres',
567
+ 'google.sn/imgres',
568
+ 'google.so/imgres',
569
+ 'google.st/imgres',
570
+ 'google.td/imgres',
571
+ 'google.tg/imgres',
572
+ 'google.tk/imgres',
573
+ 'google.tl/imgres',
574
+ 'google.tm/imgres',
575
+ 'google.to/imgres',
576
+ 'google.tt/imgres',
577
+ 'google.us/imgres',
578
+ 'google.vg/imgres',
579
+ 'google.vu/imgres',
580
+ 'images.google.ws',
581
+ 'images.google.ac',
582
+ 'images.google.ad',
583
+ 'images.google.ae',
584
+ 'images.google.am',
585
+ 'images.google.as',
586
+ 'images.google.at',
587
+ 'images.google.az',
588
+ 'images.google.ba',
589
+ 'images.google.be',
590
+ 'images.google.bf',
591
+ 'images.google.bg',
592
+ 'images.google.bi',
593
+ 'images.google.bj',
594
+ 'images.google.bs',
595
+ 'images.google.by',
596
+ 'images.google.ca',
597
+ 'images.google.cat',
598
+ 'images.google.cc',
599
+ 'images.google.cd',
600
+ 'images.google.cf',
601
+ 'images.google.cg',
602
+ 'images.google.ch',
603
+ 'images.google.ci',
604
+ 'images.google.cl',
605
+ 'images.google.cm',
606
+ 'images.google.cn',
607
+ 'images.google.co.bw',
608
+ 'images.google.co.ck',
609
+ 'images.google.co.cr',
610
+ 'images.google.co.id',
611
+ 'images.google.co.il',
612
+ 'images.google.co.in',
613
+ 'images.google.co.jp',
614
+ 'images.google.co.ke',
615
+ 'images.google.co.kr',
616
+ 'images.google.co.ls',
617
+ 'images.google.co.ma',
618
+ 'images.google.co.mz',
619
+ 'images.google.co.nz',
620
+ 'images.google.co.th',
621
+ 'images.google.co.tz',
622
+ 'images.google.co.ug',
623
+ 'images.google.co.uk',
624
+ 'images.google.co.uz',
625
+ 'images.google.co.ve',
626
+ 'images.google.co.vi',
627
+ 'images.google.co.za',
628
+ 'images.google.co.zm',
629
+ 'images.google.co.zw',
630
+ 'images.google.com',
631
+ 'images.google.com.af',
632
+ 'images.google.com.ag',
633
+ 'images.google.com.ai',
634
+ 'images.google.com.ar',
635
+ 'images.google.com.au',
636
+ 'images.google.com.bd',
637
+ 'images.google.com.bh',
638
+ 'images.google.com.bn',
639
+ 'images.google.com.bo',
640
+ 'images.google.com.br',
641
+ 'images.google.com.by',
642
+ 'images.google.com.bz',
643
+ 'images.google.com.co',
644
+ 'images.google.com.cu',
645
+ 'images.google.com.cy',
646
+ 'images.google.com.do',
647
+ 'images.google.com.ec',
648
+ 'images.google.com.eg',
649
+ 'images.google.com.et',
650
+ 'images.google.com.fj',
651
+ 'images.google.com.gh',
652
+ 'images.google.com.gi',
653
+ 'images.google.com.gt',
654
+ 'images.google.com.hk',
655
+ 'images.google.com.jm',
656
+ 'images.google.com.kh',
657
+ 'images.google.com.kw',
658
+ 'images.google.com.lb',
659
+ 'images.google.com.lc',
660
+ 'images.google.com.ly',
661
+ 'images.google.com.mt',
662
+ 'images.google.com.mx',
663
+ 'images.google.com.my',
664
+ 'images.google.com.na',
665
+ 'images.google.com.nf',
666
+ 'images.google.com.ng',
667
+ 'images.google.com.ni',
668
+ 'images.google.com.np',
669
+ 'images.google.com.om',
670
+ 'images.google.com.pa',
671
+ 'images.google.com.pe',
672
+ 'images.google.com.ph',
673
+ 'images.google.com.pk',
674
+ 'images.google.com.pr',
675
+ 'images.google.com.py',
676
+ 'images.google.com.qa',
677
+ 'images.google.com.sa',
678
+ 'images.google.com.sb',
679
+ 'images.google.com.sg',
680
+ 'images.google.com.sl',
681
+ 'images.google.com.sv',
682
+ 'images.google.com.tj',
683
+ 'images.google.com.tn',
684
+ 'images.google.com.tr',
685
+ 'images.google.com.tw',
686
+ 'images.google.com.ua',
687
+ 'images.google.com.uy',
688
+ 'images.google.com.vc',
689
+ 'images.google.com.vn',
690
+ 'images.google.cv',
691
+ 'images.google.cz',
692
+ 'images.google.de',
693
+ 'images.google.dj',
694
+ 'images.google.dk',
695
+ 'images.google.dm',
696
+ 'images.google.dz',
697
+ 'images.google.ee',
698
+ 'images.google.es',
699
+ 'images.google.fi',
700
+ 'images.google.fm',
701
+ 'images.google.fr',
702
+ 'images.google.ga',
703
+ 'images.google.gd',
704
+ 'images.google.ge',
705
+ 'images.google.gf',
706
+ 'images.google.gg',
707
+ 'images.google.gl',
708
+ 'images.google.gm',
709
+ 'images.google.gp',
710
+ 'images.google.gr',
711
+ 'images.google.gy',
712
+ 'images.google.hn',
713
+ 'images.google.hr',
714
+ 'images.google.ht',
715
+ 'images.google.hu',
716
+ 'images.google.ie',
717
+ 'images.google.im',
718
+ 'images.google.io',
719
+ 'images.google.iq',
720
+ 'images.google.is',
721
+ 'images.google.it',
722
+ 'images.google.it.ao',
723
+ 'images.google.je',
724
+ 'images.google.jo',
725
+ 'images.google.kg',
726
+ 'images.google.ki',
727
+ 'images.google.kz',
728
+ 'images.google.la',
729
+ 'images.google.li',
730
+ 'images.google.lk',
731
+ 'images.google.lt',
732
+ 'images.google.lu',
733
+ 'images.google.lv',
734
+ 'images.google.md',
735
+ 'images.google.me',
736
+ 'images.google.mg',
737
+ 'images.google.mk',
738
+ 'images.google.ml',
739
+ 'images.google.mn',
740
+ 'images.google.ms',
741
+ 'images.google.mu',
742
+ 'images.google.mv',
743
+ 'images.google.mw',
744
+ 'images.google.ne',
745
+ 'images.google.nl',
746
+ 'images.google.no',
747
+ 'images.google.nr',
748
+ 'images.google.nu',
749
+ 'images.google.pl',
750
+ 'images.google.pn',
751
+ 'images.google.ps',
752
+ 'images.google.pt',
753
+ 'images.google.ro',
754
+ 'images.google.rs',
755
+ 'images.google.ru',
756
+ 'images.google.rw',
757
+ 'images.google.sc',
758
+ 'images.google.se',
759
+ 'images.google.sh',
760
+ 'images.google.si',
761
+ 'images.google.sk',
762
+ 'images.google.sm',
763
+ 'images.google.sn',
764
+ 'images.google.so',
765
+ 'images.google.st',
766
+ 'images.google.td',
767
+ 'images.google.tg',
768
+ 'images.google.tk',
769
+ 'images.google.tl',
770
+ 'images.google.tm',
771
+ 'images.google.to',
772
+ 'images.google.tt',
773
+ 'images.google.us',
774
+ 'images.google.vg',
775
+ 'images.google.vu'
776
+ ],
777
+ 'parameters': [
778
+ 'q'
779
+ ]
780
+ },
781
+ 'ABCsøk': {
782
+ 'domains': [
783
+ 'abcsolk.no',
784
+ 'verden.abcsok.no'
785
+ ],
786
+ 'parameters': [
787
+ 'q'
788
+ ]
789
+ },
790
+ 'Google Product Search': {
791
+ 'domains': [
792
+ 'google.ac/products',
793
+ 'google.ad/products',
794
+ 'google.ae/products',
795
+ 'google.am/products',
796
+ 'google.as/products',
797
+ 'google.at/products',
798
+ 'google.az/products',
799
+ 'google.ba/products',
800
+ 'google.be/products',
801
+ 'google.bf/products',
802
+ 'google.bg/products',
803
+ 'google.bi/products',
804
+ 'google.bj/products',
805
+ 'google.bs/products',
806
+ 'google.by/products',
807
+ 'google.ca/products',
808
+ 'google.cat/products',
809
+ 'google.cc/products',
810
+ 'google.cd/products',
811
+ 'google.cf/products',
812
+ 'google.cg/products',
813
+ 'google.ch/products',
814
+ 'google.ci/products',
815
+ 'google.cl/products',
816
+ 'google.cm/products',
817
+ 'google.cn/products',
818
+ 'google.co.bw/products',
819
+ 'google.co.ck/products',
820
+ 'google.co.cr/products',
821
+ 'google.co.id/products',
822
+ 'google.co.il/products',
823
+ 'google.co.in/products',
824
+ 'google.co.jp/products',
825
+ 'google.co.ke/products',
826
+ 'google.co.kr/products',
827
+ 'google.co.ls/products',
828
+ 'google.co.ma/products',
829
+ 'google.co.mz/products',
830
+ 'google.co.nz/products',
831
+ 'google.co.th/products',
832
+ 'google.co.tz/products',
833
+ 'google.co.ug/products',
834
+ 'google.co.uk/products',
835
+ 'google.co.uz/products',
836
+ 'google.co.ve/products',
837
+ 'google.co.vi/products',
838
+ 'google.co.za/products',
839
+ 'google.co.zm/products',
840
+ 'google.co.zw/products',
841
+ 'google.com/products',
842
+ 'google.com.af/products',
843
+ 'google.com.ag/products',
844
+ 'google.com.ai/products',
845
+ 'google.com.ar/products',
846
+ 'google.com.au/products',
847
+ 'google.com.bd/products',
848
+ 'google.com.bh/products',
849
+ 'google.com.bn/products',
850
+ 'google.com.bo/products',
851
+ 'google.com.br/products',
852
+ 'google.com.by/products',
853
+ 'google.com.bz/products',
854
+ 'google.com.co/products',
855
+ 'google.com.cu/products',
856
+ 'google.com.cy/products',
857
+ 'google.com.do/products',
858
+ 'google.com.ec/products',
859
+ 'google.com.eg/products',
860
+ 'google.com.et/products',
861
+ 'google.com.fj/products',
862
+ 'google.com.gh/products',
863
+ 'google.com.gi/products',
864
+ 'google.com.gt/products',
865
+ 'google.com.hk/products',
866
+ 'google.com.jm/products',
867
+ 'google.com.kh/products',
868
+ 'google.com.kw/products',
869
+ 'google.com.lb/products',
870
+ 'google.com.lc/products',
871
+ 'google.com.ly/products',
872
+ 'google.com.mt/products',
873
+ 'google.com.mx/products',
874
+ 'google.com.my/products',
875
+ 'google.com.na/products',
876
+ 'google.com.nf/products',
877
+ 'google.com.ng/products',
878
+ 'google.com.ni/products',
879
+ 'google.com.np/products',
880
+ 'google.com.om/products',
881
+ 'google.com.pa/products',
882
+ 'google.com.pe/products',
883
+ 'google.com.ph/products',
884
+ 'google.com.pk/products',
885
+ 'google.com.pr/products',
886
+ 'google.com.py/products',
887
+ 'google.com.qa/products',
888
+ 'google.com.sa/products',
889
+ 'google.com.sb/products',
890
+ 'google.com.sg/products',
891
+ 'google.com.sl/products',
892
+ 'google.com.sv/products',
893
+ 'google.com.tj/products',
894
+ 'google.com.tn/products',
895
+ 'google.com.tr/products',
896
+ 'google.com.tw/products',
897
+ 'google.com.ua/products',
898
+ 'google.com.uy/products',
899
+ 'google.com.vc/products',
900
+ 'google.com.vn/products',
901
+ 'google.cv/products',
902
+ 'google.cz/products',
903
+ 'google.de/products',
904
+ 'google.dj/products',
905
+ 'google.dk/products',
906
+ 'google.dm/products',
907
+ 'google.dz/products',
908
+ 'google.ee/products',
909
+ 'google.es/products',
910
+ 'google.fi/products',
911
+ 'google.fm/products',
912
+ 'google.fr/products',
913
+ 'google.ga/products',
914
+ 'google.gd/products',
915
+ 'google.ge/products',
916
+ 'google.gf/products',
917
+ 'google.gg/products',
918
+ 'google.gl/products',
919
+ 'google.gm/products',
920
+ 'google.gp/products',
921
+ 'google.gr/products',
922
+ 'google.gy/products',
923
+ 'google.hn/products',
924
+ 'google.hr/products',
925
+ 'google.ht/products',
926
+ 'google.hu/products',
927
+ 'google.ie/products',
928
+ 'google.im/products',
929
+ 'google.io/products',
930
+ 'google.iq/products',
931
+ 'google.is/products',
932
+ 'google.it/products',
933
+ 'google.it.ao/products',
934
+ 'google.je/products',
935
+ 'google.jo/products',
936
+ 'google.kg/products',
937
+ 'google.ki/products',
938
+ 'google.kz/products',
939
+ 'google.la/products',
940
+ 'google.li/products',
941
+ 'google.lk/products',
942
+ 'google.lt/products',
943
+ 'google.lu/products',
944
+ 'google.lv/products',
945
+ 'google.md/products',
946
+ 'google.me/products',
947
+ 'google.mg/products',
948
+ 'google.mk/products',
949
+ 'google.ml/products',
950
+ 'google.mn/products',
951
+ 'google.ms/products',
952
+ 'google.mu/products',
953
+ 'google.mv/products',
954
+ 'google.mw/products',
955
+ 'google.ne/products',
956
+ 'google.nl/products',
957
+ 'google.no/products',
958
+ 'google.nr/products',
959
+ 'google.nu/products',
960
+ 'google.pl/products',
961
+ 'google.pn/products',
962
+ 'google.ps/products',
963
+ 'google.pt/products',
964
+ 'google.ro/products',
965
+ 'google.rs/products',
966
+ 'google.ru/products',
967
+ 'google.rw/products',
968
+ 'google.sc/products',
969
+ 'google.se/products',
970
+ 'google.sh/products',
971
+ 'google.si/products',
972
+ 'google.sk/products',
973
+ 'google.sm/products',
974
+ 'google.sn/products',
975
+ 'google.so/products',
976
+ 'google.st/products',
977
+ 'google.td/products',
978
+ 'google.tg/products',
979
+ 'google.tk/products',
980
+ 'google.tl/products',
981
+ 'google.tm/products',
982
+ 'google.to/products',
983
+ 'google.tt/products',
984
+ 'google.us/products',
985
+ 'google.vg/products',
986
+ 'google.vu/products',
987
+ 'google.ws/products',
988
+ 'www.google.ac/products',
989
+ 'www.google.ad/products',
990
+ 'www.google.ae/products',
991
+ 'www.google.am/products',
992
+ 'www.google.as/products',
993
+ 'www.google.at/products',
994
+ 'www.google.az/products',
995
+ 'www.google.ba/products',
996
+ 'www.google.be/products',
997
+ 'www.google.bf/products',
998
+ 'www.google.bg/products',
999
+ 'www.google.bi/products',
1000
+ 'www.google.bj/products',
1001
+ 'www.google.bs/products',
1002
+ 'www.google.by/products',
1003
+ 'www.google.ca/products',
1004
+ 'www.google.cat/products',
1005
+ 'www.google.cc/products',
1006
+ 'www.google.cd/products',
1007
+ 'www.google.cf/products',
1008
+ 'www.google.cg/products',
1009
+ 'www.google.ch/products',
1010
+ 'www.google.ci/products',
1011
+ 'www.google.cl/products',
1012
+ 'www.google.cm/products',
1013
+ 'www.google.cn/products',
1014
+ 'www.google.co.bw/products',
1015
+ 'www.google.co.ck/products',
1016
+ 'www.google.co.cr/products',
1017
+ 'www.google.co.id/products',
1018
+ 'www.google.co.il/products',
1019
+ 'www.google.co.in/products',
1020
+ 'www.google.co.jp/products',
1021
+ 'www.google.co.ke/products',
1022
+ 'www.google.co.kr/products',
1023
+ 'www.google.co.ls/products',
1024
+ 'www.google.co.ma/products',
1025
+ 'www.google.co.mz/products',
1026
+ 'www.google.co.nz/products',
1027
+ 'www.google.co.th/products',
1028
+ 'www.google.co.tz/products',
1029
+ 'www.google.co.ug/products',
1030
+ 'www.google.co.uk/products',
1031
+ 'www.google.co.uz/products',
1032
+ 'www.google.co.ve/products',
1033
+ 'www.google.co.vi/products',
1034
+ 'www.google.co.za/products',
1035
+ 'www.google.co.zm/products',
1036
+ 'www.google.co.zw/products',
1037
+ 'www.google.com/products',
1038
+ 'www.google.com.af/products',
1039
+ 'www.google.com.ag/products',
1040
+ 'www.google.com.ai/products',
1041
+ 'www.google.com.ar/products',
1042
+ 'www.google.com.au/products',
1043
+ 'www.google.com.bd/products',
1044
+ 'www.google.com.bh/products',
1045
+ 'www.google.com.bn/products',
1046
+ 'www.google.com.bo/products',
1047
+ 'www.google.com.br/products',
1048
+ 'www.google.com.by/products',
1049
+ 'www.google.com.bz/products',
1050
+ 'www.google.com.co/products',
1051
+ 'www.google.com.cu/products',
1052
+ 'www.google.com.cy/products',
1053
+ 'www.google.com.do/products',
1054
+ 'www.google.com.ec/products',
1055
+ 'www.google.com.eg/products',
1056
+ 'www.google.com.et/products',
1057
+ 'www.google.com.fj/products',
1058
+ 'www.google.com.gh/products',
1059
+ 'www.google.com.gi/products',
1060
+ 'www.google.com.gt/products',
1061
+ 'www.google.com.hk/products',
1062
+ 'www.google.com.jm/products',
1063
+ 'www.google.com.kh/products',
1064
+ 'www.google.com.kw/products',
1065
+ 'www.google.com.lb/products',
1066
+ 'www.google.com.lc/products',
1067
+ 'www.google.com.ly/products',
1068
+ 'www.google.com.mt/products',
1069
+ 'www.google.com.mx/products',
1070
+ 'www.google.com.my/products',
1071
+ 'www.google.com.na/products',
1072
+ 'www.google.com.nf/products',
1073
+ 'www.google.com.ng/products',
1074
+ 'www.google.com.ni/products',
1075
+ 'www.google.com.np/products',
1076
+ 'www.google.com.om/products',
1077
+ 'www.google.com.pa/products',
1078
+ 'www.google.com.pe/products',
1079
+ 'www.google.com.ph/products',
1080
+ 'www.google.com.pk/products',
1081
+ 'www.google.com.pr/products',
1082
+ 'www.google.com.py/products',
1083
+ 'www.google.com.qa/products',
1084
+ 'www.google.com.sa/products',
1085
+ 'www.google.com.sb/products',
1086
+ 'www.google.com.sg/products',
1087
+ 'www.google.com.sl/products',
1088
+ 'www.google.com.sv/products',
1089
+ 'www.google.com.tj/products',
1090
+ 'www.google.com.tn/products',
1091
+ 'www.google.com.tr/products',
1092
+ 'www.google.com.tw/products',
1093
+ 'www.google.com.ua/products',
1094
+ 'www.google.com.uy/products',
1095
+ 'www.google.com.vc/products',
1096
+ 'www.google.com.vn/products',
1097
+ 'www.google.cv/products',
1098
+ 'www.google.cz/products',
1099
+ 'www.google.de/products',
1100
+ 'www.google.dj/products',
1101
+ 'www.google.dk/products',
1102
+ 'www.google.dm/products',
1103
+ 'www.google.dz/products',
1104
+ 'www.google.ee/products',
1105
+ 'www.google.es/products',
1106
+ 'www.google.fi/products',
1107
+ 'www.google.fm/products',
1108
+ 'www.google.fr/products',
1109
+ 'www.google.ga/products',
1110
+ 'www.google.gd/products',
1111
+ 'www.google.ge/products',
1112
+ 'www.google.gf/products',
1113
+ 'www.google.gg/products',
1114
+ 'www.google.gl/products',
1115
+ 'www.google.gm/products',
1116
+ 'www.google.gp/products',
1117
+ 'www.google.gr/products',
1118
+ 'www.google.gy/products',
1119
+ 'www.google.hn/products',
1120
+ 'www.google.hr/products',
1121
+ 'www.google.ht/products',
1122
+ 'www.google.hu/products',
1123
+ 'www.google.ie/products',
1124
+ 'www.google.im/products',
1125
+ 'www.google.io/products',
1126
+ 'www.google.iq/products',
1127
+ 'www.google.is/products',
1128
+ 'www.google.it/products',
1129
+ 'www.google.it.ao/products',
1130
+ 'www.google.je/products',
1131
+ 'www.google.jo/products',
1132
+ 'www.google.kg/products',
1133
+ 'www.google.ki/products',
1134
+ 'www.google.kz/products',
1135
+ 'www.google.la/products',
1136
+ 'www.google.li/products',
1137
+ 'www.google.lk/products',
1138
+ 'www.google.lt/products',
1139
+ 'www.google.lu/products',
1140
+ 'www.google.lv/products',
1141
+ 'www.google.md/products',
1142
+ 'www.google.me/products',
1143
+ 'www.google.mg/products',
1144
+ 'www.google.mk/products',
1145
+ 'www.google.ml/products',
1146
+ 'www.google.mn/products',
1147
+ 'www.google.ms/products',
1148
+ 'www.google.mu/products',
1149
+ 'www.google.mv/products',
1150
+ 'www.google.mw/products',
1151
+ 'www.google.ne/products',
1152
+ 'www.google.nl/products',
1153
+ 'www.google.no/products',
1154
+ 'www.google.nr/products',
1155
+ 'www.google.nu/products',
1156
+ 'www.google.pl/products',
1157
+ 'www.google.pn/products',
1158
+ 'www.google.ps/products',
1159
+ 'www.google.pt/products',
1160
+ 'www.google.ro/products',
1161
+ 'www.google.rs/products',
1162
+ 'www.google.ru/products',
1163
+ 'www.google.rw/products',
1164
+ 'www.google.sc/products',
1165
+ 'www.google.se/products',
1166
+ 'www.google.sh/products',
1167
+ 'www.google.si/products',
1168
+ 'www.google.sk/products',
1169
+ 'www.google.sm/products',
1170
+ 'www.google.sn/products',
1171
+ 'www.google.so/products',
1172
+ 'www.google.st/products',
1173
+ 'www.google.td/products',
1174
+ 'www.google.tg/products',
1175
+ 'www.google.tk/products',
1176
+ 'www.google.tl/products',
1177
+ 'www.google.tm/products',
1178
+ 'www.google.to/products',
1179
+ 'www.google.tt/products',
1180
+ 'www.google.us/products',
1181
+ 'www.google.vg/products',
1182
+ 'www.google.vu/products',
1183
+ 'www.google.ws/products'
1184
+ ],
1185
+ 'parameters': [
1186
+ 'q'
1187
+ ]
1188
+ },
1189
+ 'DasOertliche': {
1190
+ 'domains': [
1191
+ 'www.dasoertliche.de'
1192
+ ],
1193
+ 'parameters': [
1194
+ 'kw'
1195
+ ]
1196
+ },
1197
+ 'InfoSpace': {
1198
+ 'domains': [
1199
+ 'infospace.com',
1200
+ 'dogpile.com',
1201
+ 'www.dogpile.com',
1202
+ 'metacrawler.com',
1203
+ 'webfetch.com',
1204
+ 'webcrawler.com',
1205
+ 'search.kiwee.com',
1206
+ 'isearch.babylon.com',
1207
+ 'start.facemoods.com',
1208
+ 'search.magnetic.com',
1209
+ 'search.searchcompletion.com',
1210
+ 'clusty.com'
1211
+ ],
1212
+ 'parameters': [
1213
+ 'q',
1214
+ 's'
1215
+ ]
1216
+ },
1217
+ 'Weborama': {
1218
+ 'domains': [
1219
+ 'www.weborama.com'
1220
+ ],
1221
+ 'parameters': [
1222
+ 'QUERY'
1223
+ ]
1224
+ },
1225
+ 'Bluewin': {
1226
+ 'domains': [
1227
+ 'search.bluewin.ch'
1228
+ ],
1229
+ 'parameters': [
1230
+ 'searchTerm'
1231
+ ]
1232
+ },
1233
+ 'British Telecommunications': {
1234
+ 'domains': [
1235
+ 'search.bt.com'
1236
+ ],
1237
+ 'parameters': [
1238
+ 'p'
1239
+ ]
1240
+ },
1241
+ 'Neti': {
1242
+ 'domains': [
1243
+ 'www.neti.ee'
1244
+ ],
1245
+ 'parameters': [
1246
+ 'query'
1247
+ ]
1248
+ },
1249
+ 'Nigma': {
1250
+ 'domains': [
1251
+ 'nigma.ru'
1252
+ ],
1253
+ 'parameters': [
1254
+ 's'
1255
+ ]
1256
+ },
1257
+ 'Yahoo! Images': {
1258
+ 'domains': [
1259
+ 'image.yahoo.cn',
1260
+ 'images.search.yahoo.com'
1261
+ ],
1262
+ 'parameters': [
1263
+ 'p',
1264
+ 'q'
1265
+ ]
1266
+ },
1267
+ 'Exalead': {
1268
+ 'domains': [
1269
+ 'www.exalead.fr',
1270
+ 'www.exalead.com'
1271
+ ],
1272
+ 'parameters': [
1273
+ 'q'
1274
+ ]
1275
+ },
1276
+ 'Teoma': {
1277
+ 'domains': [
1278
+ 'www.teoma.com'
1279
+ ],
1280
+ 'parameters': [
1281
+ 'q'
1282
+ ]
1283
+ },
1284
+ 'Needtofind': {
1285
+ 'domains': [
1286
+ 'ko.search.need2find.com'
1287
+ ],
1288
+ 'parameters': [
1289
+ 'searchfor'
1290
+ ]
1291
+ },
1292
+ 'Looksmart': {
1293
+ 'domains': [
1294
+ 'www.looksmart.com'
1295
+ ],
1296
+ 'parameters': [
1297
+ 'key'
1298
+ ]
1299
+ },
1300
+ 'Flyingbird': {
1301
+ 'domains': [
1302
+ 'inspsearch.com',
1303
+ 'viview.inspsearch.com'
1304
+ ],
1305
+ 'parameters': [
1306
+ 'q'
1307
+ ]
1308
+ },
1309
+ 'Everyclick': {
1310
+ 'domains': [
1311
+ 'www.everyclick.com'
1312
+ ],
1313
+ 'parameters': [
1314
+ 'keyword'
1315
+ ]
1316
+ },
1317
+ 'Wirtualna Polska': {
1318
+ 'domains': [
1319
+ 'szukaj.wp.pl'
1320
+ ],
1321
+ 'parameters': [
1322
+ 'szukaj'
1323
+ ]
1324
+ },
1325
+ 'Toolbarhome': {
1326
+ 'domains': [
1327
+ 'www.toolbarhome.com',
1328
+ 'vshare.toolbarhome.com'
1329
+ ],
1330
+ 'parameters': [
1331
+ 'q'
1332
+ ]
1333
+ },
1334
+ 'Searchalot': {
1335
+ 'domains': [
1336
+ 'searchalot.com'
1337
+ ],
1338
+ 'parameters': [
1339
+ 'q'
1340
+ ]
1341
+ },
1342
+ 'Yandex': {
1343
+ 'domains': [
1344
+ 'yandex.ru',
1345
+ 'yandex.ua',
1346
+ 'yandex.com',
1347
+ 'yandex.by',
1348
+ 'www.yandex.ru',
1349
+ 'www.yandex.ua',
1350
+ 'www.yandex.com',
1351
+ 'www.yandex.by',
1352
+ 'clck.yandex.ru',
1353
+ 'clck.yandex.ua',
1354
+ 'clck.yandex.com',
1355
+ 'clck.yandex.by'
1356
+ ],
1357
+ 'parameters': [
1358
+ 'text'
1359
+ ]
1360
+ },
1361
+ 'Indeed': {
1362
+ 'domains': [
1363
+ 'de.indeed.com',
1364
+ 'at.indeed.com',
1365
+ 'fr.indeed.com',
1366
+ 'it.indeed.com',
1367
+ 'ch.indeed.com',
1368
+ 'au.indeed.com'
1369
+ ]
1370
+ },
1371
+ 'canoe.ca': {
1372
+ 'domains': [
1373
+ 'web.canoe.ca'
1374
+ ],
1375
+ 'parameters': [
1376
+ 'q'
1377
+ ]
1378
+ },
1379
+ 'Compuserve': {
1380
+ 'domains': [
1381
+ 'websearch.cs.com'
1382
+ ],
1383
+ 'parameters': [
1384
+ 'query'
1385
+ ]
1386
+ },
1387
+ 'Blogdigger': {
1388
+ 'domains': [
1389
+ 'www.blogdigger.com'
1390
+ ],
1391
+ 'parameters': [
1392
+ 'q'
1393
+ ]
1394
+ },
1395
+ 'Startpagina': {
1396
+ 'domains': [
1397
+ 'startgoogle.startpagina.nl'
1398
+ ],
1399
+ 'parameters': [
1400
+ 'q'
1401
+ ]
1402
+ },
1403
+ 'eo': {
1404
+ 'domains': [
1405
+ 'eo.st'
1406
+ ],
1407
+ 'parameters': [
1408
+ 'x_query'
1409
+ ]
1410
+ },
1411
+ 'Zhongsou': {
1412
+ 'domains': [
1413
+ 'p.zhongsou.com'
1414
+ ],
1415
+ 'parameters': [
1416
+ 'w'
1417
+ ]
1418
+ },
1419
+ 'La Toile Du Quebec Via Google': {
1420
+ 'domains': [
1421
+ 'www.toile.com',
1422
+ 'web.toile.com'
1423
+ ],
1424
+ 'parameters': [
1425
+ 'q'
1426
+ ]
1427
+ },
1428
+ 'Paperball': {
1429
+ 'domains': [
1430
+ 'www.paperball.de'
1431
+ ],
1432
+ 'parameters': [
1433
+ 'q'
1434
+ ]
1435
+ },
1436
+ 'StepStone': {
1437
+ 'domains': [
1438
+ 'www.stepstone.de',
1439
+ 'www.stepstone.at',
1440
+ 'www.stepstone.be',
1441
+ 'www.stepstone.fr',
1442
+ 'www.stepstone.nl',
1443
+ 'www.stepstone.dk',
1444
+ 'www.stepstone.se'
1445
+ ]
1446
+ },
1447
+ 'Jungle Spider': {
1448
+ 'domains': [
1449
+ 'www.jungle-spider.de'
1450
+ ],
1451
+ 'parameters': [
1452
+ 'q'
1453
+ ]
1454
+ },
1455
+ 'PeoplePC': {
1456
+ 'domains': [
1457
+ 'search.peoplepc.com'
1458
+ ],
1459
+ 'parameters': [
1460
+ 'q'
1461
+ ]
1462
+ },
1463
+ 'The Smart Search': {
1464
+ 'domains': [
1465
+ 'thesmartsearch.net',
1466
+ 'www.thesmartsearch.net'
1467
+ ],
1468
+ 'parameters': [
1469
+ 'q'
1470
+ ]
1471
+ },
1472
+ 'MetaCrawler.de': {
1473
+ 'domains': [
1474
+ 's1.metacrawler.de',
1475
+ 's2.metacrawler.de',
1476
+ 's3.metacrawler.de'
1477
+ ],
1478
+ 'parameters': [
1479
+ 'qry'
1480
+ ]
1481
+ },
1482
+ 'Orange': {
1483
+ 'domains': [
1484
+ 'busca.orange.es',
1485
+ 'search.orange.co.uk',
1486
+ 'lemoteur.orange.fr'
1487
+ ],
1488
+ 'parameters': [
1489
+ 'q',
1490
+ 'kw'
1491
+ ]
1492
+ },
1493
+ 'Gule Sider': {
1494
+ 'domains': [
1495
+ 'www.gulesider.no'
1496
+ ],
1497
+ 'parameters': [
1498
+ 'q'
1499
+ ]
1500
+ },
1501
+ 'I.ua': {
1502
+ 'domains': [
1503
+ 'search.i.ua'
1504
+ ],
1505
+ 'parameters': [
1506
+ 'q'
1507
+ ]
1508
+ },
1509
+ 'Francite': {
1510
+ 'domains': [
1511
+ 'recherche.francite.com'
1512
+ ],
1513
+ 'parameters': [
1514
+ 'name'
1515
+ ]
1516
+ },
1517
+ 'Ask Toolbar': {
1518
+ 'domains': [
1519
+ 'search.tb.ask.com'
1520
+ ],
1521
+ 'parameters': [
1522
+ 'searchfor'
1523
+ ]
1524
+ },
1525
+ 'Tut.by': {
1526
+ 'domains': [
1527
+ 'search.tut.by'
1528
+ ],
1529
+ 'parameters': [
1530
+ 'query'
1531
+ ]
1532
+ },
1533
+ 'Trusted-Search': {
1534
+ 'domains': [
1535
+ 'www.trusted--search.com'
1536
+ ],
1537
+ 'parameters': [
1538
+ 'w'
1539
+ ]
1540
+ },
1541
+ 'goo': {
1542
+ 'domains': [
1543
+ 'search.goo.ne.jp',
1544
+ 'ocnsearch.goo.ne.jp'
1545
+ ],
1546
+ 'parameters': [
1547
+ 'MT'
1548
+ ]
1549
+ },
1550
+ 'Fast Browser Search': {
1551
+ 'domains': [
1552
+ 'www.fastbrowsersearch.com'
1553
+ ],
1554
+ 'parameters': [
1555
+ 'q'
1556
+ ]
1557
+ },
1558
+ 'kununu': {
1559
+ 'domains': [
1560
+ 'kununu.com'
1561
+ ],
1562
+ 'parameters': [
1563
+ 'q'
1564
+ ]
1565
+ },
1566
+ 'Volny': {
1567
+ 'domains': [
1568
+ 'web.volny.cz'
1569
+ ],
1570
+ 'parameters': [
1571
+ 'search'
1572
+ ]
1573
+ },
1574
+ 'Icerockeet': {
1575
+ 'domains': [
1576
+ 'blogs.icerocket.com'
1577
+ ],
1578
+ 'parameters': [
1579
+ 'q'
1580
+ ]
1581
+ },
1582
+ 'Terra': {
1583
+ 'domains': [
1584
+ 'buscador.terra.es',
1585
+ 'buscador.terra.cl',
1586
+ 'buscador.terra.com.br'
1587
+ ],
1588
+ 'parameters': [
1589
+ 'query'
1590
+ ]
1591
+ },
1592
+ 'Amazon': {
1593
+ 'domains': [
1594
+ 'amazon.com',
1595
+ 'www.amazon.com'
1596
+ ],
1597
+ 'parameters': [
1598
+ 'keywords'
1599
+ ]
1600
+ },
1601
+ 'Onet': {
1602
+ 'domains': [
1603
+ 'szukaj.onet.pl'
1604
+ ],
1605
+ 'parameters': [
1606
+ 'qt'
1607
+ ]
1608
+ },
1609
+ 'Digg': {
1610
+ 'domains': [
1611
+ 'digg.com'
1612
+ ],
1613
+ 'parameters': [
1614
+ 's'
1615
+ ]
1616
+ },
1617
+ 'Abacho': {
1618
+ 'domains': [
1619
+ 'www.abacho.de',
1620
+ 'www.abacho.com',
1621
+ 'www.abacho.co.uk',
1622
+ 'www.se.abacho.com',
1623
+ 'www.tr.abacho.com',
1624
+ 'www.abacho.at',
1625
+ 'www.abacho.fr',
1626
+ 'www.abacho.es',
1627
+ 'www.abacho.ch',
1628
+ 'www.abacho.it'
1629
+ ],
1630
+ 'parameters': [
1631
+ 'q'
1632
+ ]
1633
+ },
1634
+ 'maailm': {
1635
+ 'domains': [
1636
+ 'www.maailm.com'
1637
+ ],
1638
+ 'parameters': [
1639
+ 'tekst'
1640
+ ]
1641
+ },
1642
+ 'Flix': {
1643
+ 'domains': [
1644
+ 'www.flix.de'
1645
+ ],
1646
+ 'parameters': [
1647
+ 'keyword'
1648
+ ]
1649
+ },
1650
+ 'Inbox.com': {
1651
+ 'domains': [
1652
+ 'inbox.com/search/'
1653
+ ],
1654
+ 'parameters': [
1655
+ 'q'
1656
+ ]
1657
+ },
1658
+ 'Freenet': {
1659
+ 'domains': [
1660
+ 'suche.freenet.de'
1661
+ ],
1662
+ 'parameters': [
1663
+ 'query',
1664
+ 'Keywords'
1665
+ ]
1666
+ },
1667
+ 'Suchnase': {
1668
+ 'domains': [
1669
+ 'www.suchnase.de'
1670
+ ],
1671
+ 'parameters': [
1672
+ 'q'
1673
+ ]
1674
+ },
1675
+ 'Dodo': {
1676
+ 'domains': [
1677
+ 'google.dodo.com.au'
1678
+ ],
1679
+ 'parameters': [
1680
+ 'q'
1681
+ ]
1682
+ },
1683
+ 'Google Blogsearch': {
1684
+ 'domains': [
1685
+ 'blogsearch.google.ac',
1686
+ 'blogsearch.google.ad',
1687
+ 'blogsearch.google.ae',
1688
+ 'blogsearch.google.am',
1689
+ 'blogsearch.google.as',
1690
+ 'blogsearch.google.at',
1691
+ 'blogsearch.google.az',
1692
+ 'blogsearch.google.ba',
1693
+ 'blogsearch.google.be',
1694
+ 'blogsearch.google.bf',
1695
+ 'blogsearch.google.bg',
1696
+ 'blogsearch.google.bi',
1697
+ 'blogsearch.google.bj',
1698
+ 'blogsearch.google.bs',
1699
+ 'blogsearch.google.by',
1700
+ 'blogsearch.google.ca',
1701
+ 'blogsearch.google.cat',
1702
+ 'blogsearch.google.cc',
1703
+ 'blogsearch.google.cd',
1704
+ 'blogsearch.google.cf',
1705
+ 'blogsearch.google.cg',
1706
+ 'blogsearch.google.ch',
1707
+ 'blogsearch.google.ci',
1708
+ 'blogsearch.google.cl',
1709
+ 'blogsearch.google.cm',
1710
+ 'blogsearch.google.cn',
1711
+ 'blogsearch.google.co.bw',
1712
+ 'blogsearch.google.co.ck',
1713
+ 'blogsearch.google.co.cr',
1714
+ 'blogsearch.google.co.id',
1715
+ 'blogsearch.google.co.il',
1716
+ 'blogsearch.google.co.in',
1717
+ 'blogsearch.google.co.jp',
1718
+ 'blogsearch.google.co.ke',
1719
+ 'blogsearch.google.co.kr',
1720
+ 'blogsearch.google.co.ls',
1721
+ 'blogsearch.google.co.ma',
1722
+ 'blogsearch.google.co.mz',
1723
+ 'blogsearch.google.co.nz',
1724
+ 'blogsearch.google.co.th',
1725
+ 'blogsearch.google.co.tz',
1726
+ 'blogsearch.google.co.ug',
1727
+ 'blogsearch.google.co.uk',
1728
+ 'blogsearch.google.co.uz',
1729
+ 'blogsearch.google.co.ve',
1730
+ 'blogsearch.google.co.vi',
1731
+ 'blogsearch.google.co.za',
1732
+ 'blogsearch.google.co.zm',
1733
+ 'blogsearch.google.co.zw',
1734
+ 'blogsearch.google.com',
1735
+ 'blogsearch.google.com.af',
1736
+ 'blogsearch.google.com.ag',
1737
+ 'blogsearch.google.com.ai',
1738
+ 'blogsearch.google.com.ar',
1739
+ 'blogsearch.google.com.au',
1740
+ 'blogsearch.google.com.bd',
1741
+ 'blogsearch.google.com.bh',
1742
+ 'blogsearch.google.com.bn',
1743
+ 'blogsearch.google.com.bo',
1744
+ 'blogsearch.google.com.br',
1745
+ 'blogsearch.google.com.by',
1746
+ 'blogsearch.google.com.bz',
1747
+ 'blogsearch.google.com.co',
1748
+ 'blogsearch.google.com.cu',
1749
+ 'blogsearch.google.com.cy',
1750
+ 'blogsearch.google.com.do',
1751
+ 'blogsearch.google.com.ec',
1752
+ 'blogsearch.google.com.eg',
1753
+ 'blogsearch.google.com.et',
1754
+ 'blogsearch.google.com.fj',
1755
+ 'blogsearch.google.com.gh',
1756
+ 'blogsearch.google.com.gi',
1757
+ 'blogsearch.google.com.gt',
1758
+ 'blogsearch.google.com.hk',
1759
+ 'blogsearch.google.com.jm',
1760
+ 'blogsearch.google.com.kh',
1761
+ 'blogsearch.google.com.kw',
1762
+ 'blogsearch.google.com.lb',
1763
+ 'blogsearch.google.com.lc',
1764
+ 'blogsearch.google.com.ly',
1765
+ 'blogsearch.google.com.mt',
1766
+ 'blogsearch.google.com.mx',
1767
+ 'blogsearch.google.com.my',
1768
+ 'blogsearch.google.com.na',
1769
+ 'blogsearch.google.com.nf',
1770
+ 'blogsearch.google.com.ng',
1771
+ 'blogsearch.google.com.ni',
1772
+ 'blogsearch.google.com.np',
1773
+ 'blogsearch.google.com.om',
1774
+ 'blogsearch.google.com.pa',
1775
+ 'blogsearch.google.com.pe',
1776
+ 'blogsearch.google.com.ph',
1777
+ 'blogsearch.google.com.pk',
1778
+ 'blogsearch.google.com.pr',
1779
+ 'blogsearch.google.com.py',
1780
+ 'blogsearch.google.com.qa',
1781
+ 'blogsearch.google.com.sa',
1782
+ 'blogsearch.google.com.sb',
1783
+ 'blogsearch.google.com.sg',
1784
+ 'blogsearch.google.com.sl',
1785
+ 'blogsearch.google.com.sv',
1786
+ 'blogsearch.google.com.tj',
1787
+ 'blogsearch.google.com.tn',
1788
+ 'blogsearch.google.com.tr',
1789
+ 'blogsearch.google.com.tw',
1790
+ 'blogsearch.google.com.ua',
1791
+ 'blogsearch.google.com.uy',
1792
+ 'blogsearch.google.com.vc',
1793
+ 'blogsearch.google.com.vn',
1794
+ 'blogsearch.google.cv',
1795
+ 'blogsearch.google.cz',
1796
+ 'blogsearch.google.de',
1797
+ 'blogsearch.google.dj',
1798
+ 'blogsearch.google.dk',
1799
+ 'blogsearch.google.dm',
1800
+ 'blogsearch.google.dz',
1801
+ 'blogsearch.google.ee',
1802
+ 'blogsearch.google.es',
1803
+ 'blogsearch.google.fi',
1804
+ 'blogsearch.google.fm',
1805
+ 'blogsearch.google.fr',
1806
+ 'blogsearch.google.ga',
1807
+ 'blogsearch.google.gd',
1808
+ 'blogsearch.google.ge',
1809
+ 'blogsearch.google.gf',
1810
+ 'blogsearch.google.gg',
1811
+ 'blogsearch.google.gl',
1812
+ 'blogsearch.google.gm',
1813
+ 'blogsearch.google.gp',
1814
+ 'blogsearch.google.gr',
1815
+ 'blogsearch.google.gy',
1816
+ 'blogsearch.google.hn',
1817
+ 'blogsearch.google.hr',
1818
+ 'blogsearch.google.ht',
1819
+ 'blogsearch.google.hu',
1820
+ 'blogsearch.google.ie',
1821
+ 'blogsearch.google.im',
1822
+ 'blogsearch.google.io',
1823
+ 'blogsearch.google.iq',
1824
+ 'blogsearch.google.is',
1825
+ 'blogsearch.google.it',
1826
+ 'blogsearch.google.it.ao',
1827
+ 'blogsearch.google.je',
1828
+ 'blogsearch.google.jo',
1829
+ 'blogsearch.google.kg',
1830
+ 'blogsearch.google.ki',
1831
+ 'blogsearch.google.kz',
1832
+ 'blogsearch.google.la',
1833
+ 'blogsearch.google.li',
1834
+ 'blogsearch.google.lk',
1835
+ 'blogsearch.google.lt',
1836
+ 'blogsearch.google.lu',
1837
+ 'blogsearch.google.lv',
1838
+ 'blogsearch.google.md',
1839
+ 'blogsearch.google.me',
1840
+ 'blogsearch.google.mg',
1841
+ 'blogsearch.google.mk',
1842
+ 'blogsearch.google.ml',
1843
+ 'blogsearch.google.mn',
1844
+ 'blogsearch.google.ms',
1845
+ 'blogsearch.google.mu',
1846
+ 'blogsearch.google.mv',
1847
+ 'blogsearch.google.mw',
1848
+ 'blogsearch.google.ne',
1849
+ 'blogsearch.google.nl',
1850
+ 'blogsearch.google.no',
1851
+ 'blogsearch.google.nr',
1852
+ 'blogsearch.google.nu',
1853
+ 'blogsearch.google.pl',
1854
+ 'blogsearch.google.pn',
1855
+ 'blogsearch.google.ps',
1856
+ 'blogsearch.google.pt',
1857
+ 'blogsearch.google.ro',
1858
+ 'blogsearch.google.rs',
1859
+ 'blogsearch.google.ru',
1860
+ 'blogsearch.google.rw',
1861
+ 'blogsearch.google.sc',
1862
+ 'blogsearch.google.se',
1863
+ 'blogsearch.google.sh',
1864
+ 'blogsearch.google.si',
1865
+ 'blogsearch.google.sk',
1866
+ 'blogsearch.google.sm',
1867
+ 'blogsearch.google.sn',
1868
+ 'blogsearch.google.so',
1869
+ 'blogsearch.google.st',
1870
+ 'blogsearch.google.td',
1871
+ 'blogsearch.google.tg',
1872
+ 'blogsearch.google.tk',
1873
+ 'blogsearch.google.tl',
1874
+ 'blogsearch.google.tm',
1875
+ 'blogsearch.google.to',
1876
+ 'blogsearch.google.tt',
1877
+ 'blogsearch.google.us',
1878
+ 'blogsearch.google.vg',
1879
+ 'blogsearch.google.vu',
1880
+ 'blogsearch.google.ws'
1881
+ ],
1882
+ 'parameters': [
1883
+ 'q'
1884
+ ]
1885
+ },
1886
+ 'Poisk.ru': {
1887
+ 'domains': [
1888
+ 'poisk.ru'
1889
+ ],
1890
+ 'parameters': [
1891
+ 'q'
1892
+ ]
1893
+ },
1894
+ 'Sharelook': {
1895
+ 'domains': [
1896
+ 'www.sharelook.fr'
1897
+ ],
1898
+ 'parameters': [
1899
+ 'keyword'
1900
+ ]
1901
+ },
1902
+ 'Finderoo': {
1903
+ 'domains': [
1904
+ 'www.finderoo.com'
1905
+ ],
1906
+ 'parameters': [
1907
+ 'q'
1908
+ ]
1909
+ },
1910
+ 'Najdi': {
1911
+ 'domains': [
1912
+ 'www.najdi.si'
1913
+ ],
1914
+ 'parameters': [
1915
+ 'q'
1916
+ ]
1917
+ },
1918
+ 'Picsearch': {
1919
+ 'domains': [
1920
+ 'www.picsearch.com'
1921
+ ],
1922
+ 'parameters': [
1923
+ 'q'
1924
+ ]
1925
+ },
1926
+ 'Mail.ru': {
1927
+ 'domains': [
1928
+ 'mail.ru',
1929
+ 'm.mail.ru',
1930
+ 'go.mail.ru'
1931
+ ],
1932
+ 'parameters': [
1933
+ 'q'
1934
+ ]
1935
+ },
1936
+ 'Alexa': {
1937
+ 'domains': [
1938
+ 'alexa.com',
1939
+ 'search.toolbars.alexa.com'
1940
+ ],
1941
+ 'parameters': [
1942
+ 'q'
1943
+ ]
1944
+ },
1945
+ 'Metager': {
1946
+ 'domains': [
1947
+ 'meta.rrzn.uni-hannover.de',
1948
+ 'www.metager.de'
1949
+ ],
1950
+ 'parameters': [
1951
+ 'eingabe'
1952
+ ]
1953
+ },
1954
+ 'Technorati': {
1955
+ 'domains': [
1956
+ 'technorati.com'
1957
+ ],
1958
+ 'parameters': [
1959
+ 'q'
1960
+ ]
1961
+ },
1962
+ 'Globososo': {
1963
+ 'domains': [
1964
+ 'searches.globososo.com',
1965
+ 'search.globososo.com'
1966
+ ],
1967
+ 'parameters': [
1968
+ 'q'
1969
+ ]
1970
+ },
1971
+ 'WWW': {
1972
+ 'domains': [
1973
+ 'search.www.ee'
1974
+ ],
1975
+ 'parameters': [
1976
+ 'query'
1977
+ ]
1978
+ },
1979
+ 'Trouvez.com': {
1980
+ 'domains': [
1981
+ 'www.trouvez.com'
1982
+ ],
1983
+ 'parameters': [
1984
+ 'query'
1985
+ ]
1986
+ },
1987
+ 'IXquick': {
1988
+ 'domains': [
1989
+ 'ixquick.com',
1990
+ 'www.eu.ixquick.com',
1991
+ 'ixquick.de',
1992
+ 'www.ixquick.de',
1993
+ 'us.ixquick.com',
1994
+ 's1.us.ixquick.com',
1995
+ 's2.us.ixquick.com',
1996
+ 's3.us.ixquick.com',
1997
+ 's4.us.ixquick.com',
1998
+ 's5.us.ixquick.com',
1999
+ 'eu.ixquick.com',
2000
+ 's8-eu.ixquick.com',
2001
+ 's1-eu.ixquick.de'
2002
+ ],
2003
+ 'parameters': [
2004
+ 'query'
2005
+ ]
2006
+ },
2007
+ 'Naver Images': {
2008
+ 'domains': [
2009
+ 'image.search.naver.com',
2010
+ 'imagesearch.naver.com'
2011
+ ],
2012
+ 'parameters': [
2013
+ 'query'
2014
+ ]
2015
+ },
2016
+ 'Zapmeta': {
2017
+ 'domains': [
2018
+ 'www.zapmeta.com',
2019
+ 'www.zapmeta.nl',
2020
+ 'www.zapmeta.de',
2021
+ 'uk.zapmeta.com'
2022
+ ],
2023
+ 'parameters': [
2024
+ 'q',
2025
+ 'query'
2026
+ ]
2027
+ },
2028
+ 'Yippy': {
2029
+ 'domains': [
2030
+ 'search.yippy.com'
2031
+ ],
2032
+ 'parameters': [
2033
+ 'q',
2034
+ 'query'
2035
+ ]
2036
+ },
2037
+ 'Clix': {
2038
+ 'domains': [
2039
+ 'pesquisa.clix.pt'
2040
+ ],
2041
+ 'parameters': [
2042
+ 'question'
2043
+ ]
2044
+ },
2045
+ 'Walhello': {
2046
+ 'domains': [
2047
+ 'www.walhello.info',
2048
+ 'www.walhello.com',
2049
+ 'www.walhello.de',
2050
+ 'www.walhello.nl'
2051
+ ],
2052
+ 'parameters': [
2053
+ 'key'
2054
+ ]
2055
+ },
2056
+ 'Meta': {
2057
+ 'domains': [
2058
+ 'meta.ua'
2059
+ ],
2060
+ 'parameters': [
2061
+ 'q'
2062
+ ]
2063
+ },
2064
+ 'Skynet': {
2065
+ 'domains': [
2066
+ 'www.skynet.be'
2067
+ ],
2068
+ 'parameters': [
2069
+ 'q'
2070
+ ]
2071
+ },
2072
+ 'Searchy': {
2073
+ 'domains': [
2074
+ 'www.searchy.co.uk'
2075
+ ],
2076
+ 'parameters': [
2077
+ 'q'
2078
+ ]
2079
+ },
2080
+ 'Findwide': {
2081
+ 'domains': [
2082
+ 'search.findwide.com'
2083
+ ],
2084
+ 'parameters': [
2085
+ 'k'
2086
+ ]
2087
+ },
2088
+ 'WebSearch': {
2089
+ 'domains': [
2090
+ 'www.websearch.com'
2091
+ ],
2092
+ 'parameters': [
2093
+ 'qkw',
2094
+ 'q'
2095
+ ]
2096
+ },
2097
+ 'Rambler': {
2098
+ 'domains': [
2099
+ 'nova.rambler.ru'
2100
+ ],
2101
+ 'parameters': [
2102
+ 'query',
2103
+ 'words'
2104
+ ]
2105
+ },
2106
+ 'Latne': {
2107
+ 'domains': [
2108
+ 'www.latne.lv'
2109
+ ],
2110
+ 'parameters': [
2111
+ 'q'
2112
+ ]
2113
+ },
2114
+ 'MySearch': {
2115
+ 'domains': [
2116
+ 'mysearch.com',
2117
+ 'www.mysearch.com',
2118
+ 'ms114.mysearch.com',
2119
+ 'ms146.mysearch.com',
2120
+ 'kf.mysearch.myway.com',
2121
+ 'ki.mysearch.myway.com',
2122
+ 'search.myway.com',
2123
+ 'search.mywebsearch.com'
2124
+ ],
2125
+ 'parameters': [
2126
+ 'searchfor',
2127
+ 'searchFor'
2128
+ ]
2129
+ },
2130
+ 'Cuil': {
2131
+ 'domains': [
2132
+ 'www.cuil.com'
2133
+ ],
2134
+ 'parameters': [
2135
+ 'q'
2136
+ ]
2137
+ },
2138
+ 'Tixuma': {
2139
+ 'domains': [
2140
+ 'www.tixuma.de'
2141
+ ],
2142
+ 'parameters': [
2143
+ 'sc'
2144
+ ]
2145
+ },
2146
+ 'Sapo': {
2147
+ 'domains': [
2148
+ 'pesquisa.sapo.pt'
2149
+ ],
2150
+ 'parameters': [
2151
+ 'q'
2152
+ ]
2153
+ },
2154
+ 'Gnadenmeer': {
2155
+ 'domains': [
2156
+ 'www.gnadenmeer.de'
2157
+ ],
2158
+ 'parameters': [
2159
+ 'keyword'
2160
+ ]
2161
+ },
2162
+ 'Lilo': {
2163
+ 'domains': [
2164
+ 'search.lilo.org'
2165
+ ],
2166
+ 'parameters': [
2167
+ 'q'
2168
+ ]
2169
+ },
2170
+ 'Naver': {
2171
+ 'domains': [
2172
+ 'search.naver.com'
2173
+ ],
2174
+ 'parameters': [
2175
+ 'query'
2176
+ ]
2177
+ },
2178
+ 'Zoeken': {
2179
+ 'domains': [
2180
+ 'www.zoeken.nl'
2181
+ ],
2182
+ 'parameters': [
2183
+ 'q'
2184
+ ]
2185
+ },
2186
+ 'Startsiden': {
2187
+ 'domains': [
2188
+ 'www.startsiden.no'
2189
+ ],
2190
+ 'parameters': [
2191
+ 'q'
2192
+ ]
2193
+ },
2194
+ 'Yam': {
2195
+ 'domains': [
2196
+ 'search.yam.com'
2197
+ ],
2198
+ 'parameters': [
2199
+ 'k'
2200
+ ]
2201
+ },
2202
+ 'Eniro': {
2203
+ 'domains': [
2204
+ 'www.eniro.se'
2205
+ ],
2206
+ 'parameters': [
2207
+ 'q',
2208
+ 'search_word'
2209
+ ]
2210
+ },
2211
+ 'APOLL07': {
2212
+ 'domains': [
2213
+ 'apollo7.de'
2214
+ ],
2215
+ 'parameters': [
2216
+ 'query'
2217
+ ]
2218
+ },
2219
+ 'Biglobe': {
2220
+ 'domains': [
2221
+ 'cgi.search.biglobe.ne.jp'
2222
+ ],
2223
+ 'parameters': [
2224
+ 'q'
2225
+ ]
2226
+ },
2227
+ 'Mozbot': {
2228
+ 'domains': [
2229
+ 'www.mozbot.fr',
2230
+ 'www.mozbot.co.uk',
2231
+ 'www.mozbot.com'
2232
+ ],
2233
+ 'parameters': [
2234
+ 'q'
2235
+ ]
2236
+ },
2237
+ 'ICQ': {
2238
+ 'domains': [
2239
+ 'www.icq.com',
2240
+ 'search.icq.com'
2241
+ ],
2242
+ 'parameters': [
2243
+ 'q'
2244
+ ]
2245
+ },
2246
+ 'Baidu': {
2247
+ 'domains': [
2248
+ 'www.baidu.com',
2249
+ 'www1.baidu.com',
2250
+ 'zhidao.baidu.com',
2251
+ 'tieba.baidu.com',
2252
+ 'news.baidu.com',
2253
+ 'web.gougou.com',
2254
+ 'm.baidu.com'
2255
+ ],
2256
+ 'parameters': [
2257
+ 'wd',
2258
+ 'word',
2259
+ 'kw',
2260
+ 'k'
2261
+ ]
2262
+ },
2263
+ 'Conduit': {
2264
+ 'domains': [
2265
+ 'search.conduit.com'
2266
+ ],
2267
+ 'parameters': [
2268
+ 'q'
2269
+ ]
2270
+ },
2271
+ 'Vindex': {
2272
+ 'domains': [
2273
+ 'www.vindex.nl',
2274
+ 'search.vindex.nl'
2275
+ ],
2276
+ 'parameters': [
2277
+ 'search_for'
2278
+ ]
2279
+ },
2280
+ 'Babylon': {
2281
+ 'domains': [
2282
+ 'search.babylon.com',
2283
+ 'searchassist.babylon.com'
2284
+ ],
2285
+ 'parameters': [
2286
+ 'q'
2287
+ ]
2288
+ },
2289
+ 'TrovaRapido': {
2290
+ 'domains': [
2291
+ 'www.trovarapido.com'
2292
+ ],
2293
+ 'parameters': [
2294
+ 'q'
2295
+ ]
2296
+ },
2297
+ 'Winamp': {
2298
+ 'domains': [
2299
+ 'search.winamp.com'
2300
+ ],
2301
+ 'parameters': [
2302
+ 'q'
2303
+ ]
2304
+ },
2305
+ 'Suchmaschine.com': {
2306
+ 'domains': [
2307
+ 'www.suchmaschine.com'
2308
+ ],
2309
+ 'parameters': [
2310
+ 'suchstr'
2311
+ ]
2312
+ },
2313
+ 'Lycos': {
2314
+ 'domains': [
2315
+ 'search.lycos.com',
2316
+ 'www.lycos.com',
2317
+ 'lycos.com'
2318
+ ],
2319
+ 'parameters': [
2320
+ 'query'
2321
+ ]
2322
+ },
2323
+ 'Vinden': {
2324
+ 'domains': [
2325
+ 'www.vinden.nl'
2326
+ ],
2327
+ 'parameters': [
2328
+ 'q'
2329
+ ]
2330
+ },
2331
+ 'Altavista': {
2332
+ 'domains': [
2333
+ 'www.altavista.com',
2334
+ 'search.altavista.com',
2335
+ 'listings.altavista.com',
2336
+ 'altavista.de',
2337
+ 'altavista.fr',
2338
+ 'be-nl.altavista.com',
2339
+ 'be-fr.altavista.com'
2340
+ ],
2341
+ 'parameters': [
2342
+ 'q'
2343
+ ]
2344
+ },
2345
+ 'dmoz': {
2346
+ 'domains': [
2347
+ 'dmoz.org',
2348
+ 'editors.dmoz.org'
2349
+ ],
2350
+ 'parameters': [
2351
+ 'q'
2352
+ ]
2353
+ },
2354
+ 'Ecosia': {
2355
+ 'domains': [
2356
+ 'ecosia.org'
2357
+ ],
2358
+ 'parameters': [
2359
+ 'q'
2360
+ ]
2361
+ },
2362
+ 'Maxwebsearch': {
2363
+ 'domains': [
2364
+ 'maxwebsearch.com'
2365
+ ],
2366
+ 'parameters': [
2367
+ 'query'
2368
+ ]
2369
+ },
2370
+ 'Euroseek': {
2371
+ 'domains': [
2372
+ 'www.euroseek.com'
2373
+ ],
2374
+ 'parameters': [
2375
+ 'string'
2376
+ ]
2377
+ },
2378
+ 'Qwant': {
2379
+ 'domains': [
2380
+ 'www.qwant.com',
2381
+ 'lite.qwant.com'
2382
+ ],
2383
+ 'parameters': [
2384
+ 'q'
2385
+ ]
2386
+ },
2387
+ 'X-recherche': {
2388
+ 'domains': [
2389
+ 'www.x-recherche.com'
2390
+ ],
2391
+ 'parameters': [
2392
+ 'MOTS'
2393
+ ]
2394
+ },
2395
+ 'Yandex Images': {
2396
+ 'domains': [
2397
+ 'images.yandex.ru',
2398
+ 'images.yandex.ua',
2399
+ 'images.yandex.com',
2400
+ 'images.yandex.by'
2401
+ ],
2402
+ 'parameters': [
2403
+ 'text'
2404
+ ]
2405
+ },
2406
+ 'GMX': {
2407
+ 'domains': [
2408
+ 'suche.gmx.net'
2409
+ ],
2410
+ 'parameters': [
2411
+ 'su'
2412
+ ]
2413
+ },
2414
+ 'Daemon search': {
2415
+ 'domains': [
2416
+ 'daemon-search.com',
2417
+ 'my.daemon-search.com'
2418
+ ],
2419
+ 'parameters': [
2420
+ 'q'
2421
+ ]
2422
+ },
2423
+ 'Shenma': {
2424
+ 'domains': [
2425
+ 'so.m.sm.cn',
2426
+ 'yz.m.sm.cn',
2427
+ 'm.sm.cn',
2428
+ 'quark.sm.cn',
2429
+ 'm.sp.sm.cn',
2430
+ 'm.yz2.sm.cn',
2431
+ 'm.yz.sm.cn'
2432
+ ],
2433
+ 'parameters': [
2434
+ 'q'
2435
+ ]
2436
+ },
2437
+ 'Firstfind': {
2438
+ 'domains': [
2439
+ 'www.firstsfind.com'
2440
+ ],
2441
+ 'parameters': [
2442
+ 'qry'
2443
+ ]
2444
+ },
2445
+ 'Crawler': {
2446
+ 'domains': [
2447
+ 'www.crawler.com'
2448
+ ],
2449
+ 'parameters': [
2450
+ 'q'
2451
+ ]
2452
+ },
2453
+ 'Holmes': {
2454
+ 'domains': [
2455
+ 'holmes.ge'
2456
+ ],
2457
+ 'parameters': [
2458
+ 'q'
2459
+ ]
2460
+ },
2461
+ 'Charter': {
2462
+ 'domains': [
2463
+ 'www.charter.net'
2464
+ ],
2465
+ 'parameters': [
2466
+ 'q'
2467
+ ]
2468
+ },
2469
+ 'Ilse': {
2470
+ 'domains': [
2471
+ 'www.ilse.nl'
2472
+ ],
2473
+ 'parameters': [
2474
+ 'search_for'
2475
+ ]
2476
+ },
2477
+ 'earthlink': {
2478
+ 'domains': [
2479
+ 'search.earthlink.net'
2480
+ ],
2481
+ 'parameters': [
2482
+ 'q'
2483
+ ]
2484
+ },
2485
+ 'Qualigo': {
2486
+ 'domains': [
2487
+ 'www.qualigo.at',
2488
+ 'www.qualigo.ch',
2489
+ 'www.qualigo.de',
2490
+ 'www.qualigo.nl'
2491
+ ],
2492
+ 'parameters': [
2493
+ 'q'
2494
+ ]
2495
+ },
2496
+ 'El Mundo': {
2497
+ 'domains': [
2498
+ 'ariadna.elmundo.es'
2499
+ ],
2500
+ 'parameters': [
2501
+ 'q'
2502
+ ]
2503
+ },
2504
+ 'Metager2': {
2505
+ 'domains': [
2506
+ 'metager2.de'
2507
+ ],
2508
+ 'parameters': [
2509
+ 'q'
2510
+ ]
2511
+ },
2512
+ 'Forestle': {
2513
+ 'domains': [
2514
+ 'forestle.org',
2515
+ 'www.forestle.org',
2516
+ 'forestle.mobi'
2517
+ ],
2518
+ 'parameters': [
2519
+ 'q'
2520
+ ]
2521
+ },
2522
+ 'Search.ch': {
2523
+ 'domains': [
2524
+ 'www.search.ch'
2525
+ ],
2526
+ 'parameters': [
2527
+ 'q'
2528
+ ]
2529
+ },
2530
+ 'Liveinternet': {
2531
+ 'domains': [
2532
+ 'liveinternet.ru'
2533
+ ],
2534
+ 'parameters': [
2535
+ 'q'
2536
+ ]
2537
+ },
2538
+ 'Meinestadt': {
2539
+ 'domains': [
2540
+ 'www.meinestadt.de'
2541
+ ],
2542
+ 'parameters': [
2543
+ 'words'
2544
+ ]
2545
+ },
2546
+ 'Freshweather': {
2547
+ 'domains': [
2548
+ 'www.fresh-weather.com'
2549
+ ],
2550
+ 'parameters': [
2551
+ 'q'
2552
+ ]
2553
+ },
2554
+ 'AllTheWeb': {
2555
+ 'domains': [
2556
+ 'www.alltheweb.com'
2557
+ ],
2558
+ 'parameters': [
2559
+ 'q'
2560
+ ]
2561
+ },
2562
+ 'Snapdo': {
2563
+ 'domains': [
2564
+ 'search.snapdo.com'
2565
+ ],
2566
+ 'parameters': [
2567
+ 'q'
2568
+ ]
2569
+ },
2570
+ 'UKR.net': {
2571
+ 'domains': [
2572
+ 'search.ukr.net'
2573
+ ],
2574
+ 'parameters': [
2575
+ 'q'
2576
+ ]
2577
+ },
2578
+ 'Zoek': {
2579
+ 'domains': [
2580
+ 'www3.zoek.nl'
2581
+ ],
2582
+ 'parameters': [
2583
+ 'q'
2584
+ ]
2585
+ },
2586
+ 'Daum': {
2587
+ 'domains': [
2588
+ 'search.daum.net'
2589
+ ],
2590
+ 'parameters': [
2591
+ 'q'
2592
+ ]
2593
+ },
2594
+ 'Marktplaats': {
2595
+ 'domains': [
2596
+ 'www.marktplaats.nl'
2597
+ ],
2598
+ 'parameters': [
2599
+ 'query'
2600
+ ]
2601
+ },
2602
+ 'suche.info': {
2603
+ 'domains': [
2604
+ 'suche.info'
2605
+ ],
2606
+ 'parameters': [
2607
+ 'q'
2608
+ ]
2609
+ },
2610
+ 'Google News': {
2611
+ 'domains': [
2612
+ 'news.google.ac',
2613
+ 'news.google.ad',
2614
+ 'news.google.ae',
2615
+ 'news.google.am',
2616
+ 'news.google.as',
2617
+ 'news.google.at',
2618
+ 'news.google.az',
2619
+ 'news.google.ba',
2620
+ 'news.google.be',
2621
+ 'news.google.bf',
2622
+ 'news.google.bg',
2623
+ 'news.google.bi',
2624
+ 'news.google.bj',
2625
+ 'news.google.bs',
2626
+ 'news.google.by',
2627
+ 'news.google.ca',
2628
+ 'news.google.cat',
2629
+ 'news.google.cc',
2630
+ 'news.google.cd',
2631
+ 'news.google.cf',
2632
+ 'news.google.cg',
2633
+ 'news.google.ch',
2634
+ 'news.google.ci',
2635
+ 'news.google.cl',
2636
+ 'news.google.cm',
2637
+ 'news.google.cn',
2638
+ 'news.google.co.bw',
2639
+ 'news.google.co.ck',
2640
+ 'news.google.co.cr',
2641
+ 'news.google.co.id',
2642
+ 'news.google.co.il',
2643
+ 'news.google.co.in',
2644
+ 'news.google.co.jp',
2645
+ 'news.google.co.ke',
2646
+ 'news.google.co.kr',
2647
+ 'news.google.co.ls',
2648
+ 'news.google.co.ma',
2649
+ 'news.google.co.mz',
2650
+ 'news.google.co.nz',
2651
+ 'news.google.co.th',
2652
+ 'news.google.co.tz',
2653
+ 'news.google.co.ug',
2654
+ 'news.google.co.uk',
2655
+ 'news.google.co.uz',
2656
+ 'news.google.co.ve',
2657
+ 'news.google.co.vi',
2658
+ 'news.google.co.za',
2659
+ 'news.google.co.zm',
2660
+ 'news.google.co.zw',
2661
+ 'news.google.com',
2662
+ 'news.google.com.af',
2663
+ 'news.google.com.ag',
2664
+ 'news.google.com.ai',
2665
+ 'news.google.com.ar',
2666
+ 'news.google.com.au',
2667
+ 'news.google.com.bd',
2668
+ 'news.google.com.bh',
2669
+ 'news.google.com.bn',
2670
+ 'news.google.com.bo',
2671
+ 'news.google.com.br',
2672
+ 'news.google.com.by',
2673
+ 'news.google.com.bz',
2674
+ 'news.google.com.co',
2675
+ 'news.google.com.cu',
2676
+ 'news.google.com.cy',
2677
+ 'news.google.com.do',
2678
+ 'news.google.com.ec',
2679
+ 'news.google.com.eg',
2680
+ 'news.google.com.et',
2681
+ 'news.google.com.fj',
2682
+ 'news.google.com.gh',
2683
+ 'news.google.com.gi',
2684
+ 'news.google.com.gt',
2685
+ 'news.google.com.hk',
2686
+ 'news.google.com.jm',
2687
+ 'news.google.com.kh',
2688
+ 'news.google.com.kw',
2689
+ 'news.google.com.lb',
2690
+ 'news.google.com.lc',
2691
+ 'news.google.com.ly',
2692
+ 'news.google.com.mt',
2693
+ 'news.google.com.mx',
2694
+ 'news.google.com.my',
2695
+ 'news.google.com.na',
2696
+ 'news.google.com.nf',
2697
+ 'news.google.com.ng',
2698
+ 'news.google.com.ni',
2699
+ 'news.google.com.np',
2700
+ 'news.google.com.om',
2701
+ 'news.google.com.pa',
2702
+ 'news.google.com.pe',
2703
+ 'news.google.com.ph',
2704
+ 'news.google.com.pk',
2705
+ 'news.google.com.pr',
2706
+ 'news.google.com.py',
2707
+ 'news.google.com.qa',
2708
+ 'news.google.com.sa',
2709
+ 'news.google.com.sb',
2710
+ 'news.google.com.sg',
2711
+ 'news.google.com.sl',
2712
+ 'news.google.com.sv',
2713
+ 'news.google.com.tj',
2714
+ 'news.google.com.tn',
2715
+ 'news.google.com.tr',
2716
+ 'news.google.com.tw',
2717
+ 'news.google.com.ua',
2718
+ 'news.google.com.uy',
2719
+ 'news.google.com.vc',
2720
+ 'news.google.com.vn',
2721
+ 'news.google.cv',
2722
+ 'news.google.cz',
2723
+ 'news.google.de',
2724
+ 'news.google.dj',
2725
+ 'news.google.dk',
2726
+ 'news.google.dm',
2727
+ 'news.google.dz',
2728
+ 'news.google.ee',
2729
+ 'news.google.es',
2730
+ 'news.google.fi',
2731
+ 'news.google.fm',
2732
+ 'news.google.fr',
2733
+ 'news.google.ga',
2734
+ 'news.google.gd',
2735
+ 'news.google.ge',
2736
+ 'news.google.gf',
2737
+ 'news.google.gg',
2738
+ 'news.google.gl',
2739
+ 'news.google.gm',
2740
+ 'news.google.gp',
2741
+ 'news.google.gr',
2742
+ 'news.google.gy',
2743
+ 'news.google.hn',
2744
+ 'news.google.hr',
2745
+ 'news.google.ht',
2746
+ 'news.google.hu',
2747
+ 'news.google.ie',
2748
+ 'news.google.im',
2749
+ 'news.google.io',
2750
+ 'news.google.iq',
2751
+ 'news.google.is',
2752
+ 'news.google.it',
2753
+ 'news.google.it.ao',
2754
+ 'news.google.je',
2755
+ 'news.google.jo',
2756
+ 'news.google.kg',
2757
+ 'news.google.ki',
2758
+ 'news.google.kz',
2759
+ 'news.google.la',
2760
+ 'news.google.li',
2761
+ 'news.google.lk',
2762
+ 'news.google.lt',
2763
+ 'news.google.lu',
2764
+ 'news.google.lv',
2765
+ 'news.google.md',
2766
+ 'news.google.me',
2767
+ 'news.google.mg',
2768
+ 'news.google.mk',
2769
+ 'news.google.ml',
2770
+ 'news.google.mn',
2771
+ 'news.google.ms',
2772
+ 'news.google.mu',
2773
+ 'news.google.mv',
2774
+ 'news.google.mw',
2775
+ 'news.google.ne',
2776
+ 'news.google.nl',
2777
+ 'news.google.no',
2778
+ 'news.google.nr',
2779
+ 'news.google.nu',
2780
+ 'news.google.pl',
2781
+ 'news.google.pn',
2782
+ 'news.google.ps',
2783
+ 'news.google.pt',
2784
+ 'news.google.ro',
2785
+ 'news.google.rs',
2786
+ 'news.google.ru',
2787
+ 'news.google.rw',
2788
+ 'news.google.sc',
2789
+ 'news.google.se',
2790
+ 'news.google.sh',
2791
+ 'news.google.si',
2792
+ 'news.google.sk',
2793
+ 'news.google.sm',
2794
+ 'news.google.sn',
2795
+ 'news.google.so',
2796
+ 'news.google.st',
2797
+ 'news.google.td',
2798
+ 'news.google.tg',
2799
+ 'news.google.tk',
2800
+ 'news.google.tl',
2801
+ 'news.google.tm',
2802
+ 'news.google.to',
2803
+ 'news.google.tt',
2804
+ 'news.google.us',
2805
+ 'news.google.vg',
2806
+ 'news.google.vu',
2807
+ 'news.google.ws'
2808
+ ],
2809
+ 'parameters': [
2810
+ 'q'
2811
+ ]
2812
+ },
2813
+ 'Zoohoo': {
2814
+ 'domains': [
2815
+ 'zoohoo.cz'
2816
+ ],
2817
+ 'parameters': [
2818
+ 'q'
2819
+ ]
2820
+ },
2821
+ 'Seznam': {
2822
+ 'domains': [
2823
+ 'search.seznam.cz'
2824
+ ],
2825
+ 'parameters': [
2826
+ 'q'
2827
+ ]
2828
+ },
2829
+ 'Online.no': {
2830
+ 'domains': [
2831
+ 'online.no'
2832
+ ],
2833
+ 'parameters': [
2834
+ 'q'
2835
+ ]
2836
+ },
2837
+ 'Eurip': {
2838
+ 'domains': [
2839
+ 'www.eurip.com'
2840
+ ],
2841
+ 'parameters': [
2842
+ 'q'
2843
+ ]
2844
+ },
2845
+ 'all.by': {
2846
+ 'domains': [
2847
+ 'all.by'
2848
+ ],
2849
+ 'parameters': [
2850
+ 'query'
2851
+ ]
2852
+ },
2853
+ 'Road Runner Search': {
2854
+ 'domains': [
2855
+ 'search.rr.com'
2856
+ ],
2857
+ 'parameters': [
2858
+ 'q'
2859
+ ]
2860
+ },
2861
+ 'Opplysningen 1881': {
2862
+ 'domains': [
2863
+ 'www.1881.no'
2864
+ ],
2865
+ 'parameters': [
2866
+ 'Query'
2867
+ ]
2868
+ },
2869
+ 'YouGoo': {
2870
+ 'domains': [
2871
+ 'www.yougoo.fr'
2872
+ ],
2873
+ 'parameters': [
2874
+ 'q'
2875
+ ]
2876
+ },
2877
+ 'Bing Images': {
2878
+ 'domains': [
2879
+ 'bing.com/images/search',
2880
+ 'www.bing.com/images/search'
2881
+ ],
2882
+ 'parameters': [
2883
+ 'q',
2884
+ 'Q'
2885
+ ]
2886
+ },
2887
+ 'Geona': {
2888
+ 'domains': [
2889
+ 'geona.net'
2890
+ ],
2891
+ 'parameters': [
2892
+ 'q'
2893
+ ]
2894
+ },
2895
+ 'Nate': {
2896
+ 'domains': [
2897
+ 'search.nate.com'
2898
+ ],
2899
+ 'parameters': [
2900
+ 'q'
2901
+ ]
2902
+ },
2903
+ 'Search This': {
2904
+ 'domains': [
2905
+ 'www.searchthis.com'
2906
+ ],
2907
+ 'parameters': [
2908
+ 'q'
2909
+ ]
2910
+ },
2911
+ 'DuckDuckGo': {
2912
+ 'domains': [
2913
+ 'duckduckgo.com'
2914
+ ],
2915
+ 'parameters': [
2916
+ 'q'
2917
+ ]
2918
+ },
2919
+ 'Monster': {
2920
+ 'domains': [
2921
+ 'www.monster.be',
2922
+ 'www.monster.cz',
2923
+ 'www.monster.de',
2924
+ 'www.monster.fi',
2925
+ 'www.monster.fr',
2926
+ 'www.monster.ie',
2927
+ 'www.monster.it',
2928
+ 'www.monster.lu',
2929
+ 'www.monster.ch',
2930
+ 'www.monster.co.uk'
2931
+ ],
2932
+ 'parameters': [
2933
+ 'q'
2934
+ ]
2935
+ },
2936
+ 'Hotbot': {
2937
+ 'domains': [
2938
+ 'www.hotbot.com'
2939
+ ],
2940
+ 'parameters': [
2941
+ 'query'
2942
+ ]
2943
+ },
2944
+ 'Kvasir': {
2945
+ 'domains': [
2946
+ 'www.kvasir.no'
2947
+ ],
2948
+ 'parameters': [
2949
+ 'q'
2950
+ ]
2951
+ },
2952
+ 'Austronaut': {
2953
+ 'domains': [
2954
+ 'www2.austronaut.at',
2955
+ 'www1.astronaut.at'
2956
+ ],
2957
+ 'parameters': [
2958
+ 'q'
2959
+ ]
2960
+ },
2961
+ 'SoSoDesk': {
2962
+ 'domains': [
2963
+ 'sosodesktop.com',
2964
+ 'search.sosodesktop.com'
2965
+ ],
2966
+ 'parameters': [
2967
+ 'q'
2968
+ ]
2969
+ },
2970
+ 'Excite': {
2971
+ 'domains': [
2972
+ 'search.excite.it',
2973
+ 'search.excite.fr',
2974
+ 'search.excite.de',
2975
+ 'search.excite.co.uk',
2976
+ 'serach.excite.es',
2977
+ 'search.excite.nl',
2978
+ 'msxml.excite.com',
2979
+ 'www.excite.co.jp'
2980
+ ],
2981
+ 'parameters': [
2982
+ 'q',
2983
+ 'search'
2984
+ ]
2985
+ },
2986
+ '1&1': {
2987
+ 'domains': [
2988
+ 'search.1and1.com'
2989
+ ],
2990
+ 'parameters': [
2991
+ 'q'
2992
+ ]
2993
+ },
2994
+ 'qip': {
2995
+ 'domains': [
2996
+ 'search.qip.ru'
2997
+ ],
2998
+ 'parameters': [
2999
+ 'query'
3000
+ ]
3001
+ },
3002
+ 'Certified-Toolbar': {
3003
+ 'domains': [
3004
+ 'search.certified-toolbar.com'
3005
+ ],
3006
+ 'parameters': [
3007
+ 'q'
3008
+ ]
3009
+ },
3010
+ 'Yahoo!': {
3011
+ 'domains': [
3012
+ 'search.yahoo.com',
3013
+ 'yahoo.com',
3014
+ 'ar.search.yahoo.com',
3015
+ 'ar.yahoo.com',
3016
+ 'au.search.yahoo.com',
3017
+ 'au.yahoo.com',
3018
+ 'br.search.yahoo.com',
3019
+ 'br.yahoo.com',
3020
+ 'ca.search.yahoo.com',
3021
+ 'ca.yahoo.com',
3022
+ 'cade.searchde.yahoo.com',
3023
+ 'cade.yahoo.com',
3024
+ 'chinese.searchinese.yahoo.com',
3025
+ 'chinese.yahoo.com',
3026
+ 'cn.search.yahoo.com',
3027
+ 'cn.yahoo.com',
3028
+ 'de.search.yahoo.com',
3029
+ 'de.yahoo.com',
3030
+ 'dk.search.yahoo.com',
3031
+ 'dk.yahoo.com',
3032
+ 'es.search.yahoo.com',
3033
+ 'es.yahoo.com',
3034
+ 'espanol.searchpanol.yahoo.com',
3035
+ 'espanol.yahoo.com',
3036
+ 'fr.search.yahoo.com',
3037
+ 'fr.yahoo.com',
3038
+ 'hk.search.yahoo.com',
3039
+ 'hk.yahoo.com',
3040
+ 'ie.search.yahoo.com',
3041
+ 'ie.yahoo.com',
3042
+ 'in.search.yahoo.com',
3043
+ 'in.yahoo.com',
3044
+ 'it.search.yahoo.com',
3045
+ 'it.yahoo.com',
3046
+ 'kr.search.yahoo.com',
3047
+ 'kr.yahoo.com',
3048
+ 'mx.search.yahoo.com',
3049
+ 'mx.yahoo.com',
3050
+ 'no.search.yahoo.com',
3051
+ 'no.yahoo.com',
3052
+ 'nz.search.yahoo.com',
3053
+ 'nz.yahoo.com',
3054
+ 'one.cn.yahoo.com',
3055
+ 'one.searchn.yahoo.com',
3056
+ 'qc.search.yahoo.com',
3057
+ 'qc.yahoo.com',
3058
+ 'ru.search.yahoo.com',
3059
+ 'ru.yahoo.com',
3060
+ 'se.search.yahoo.com',
3061
+ 'se.yahoo.com',
3062
+ 'search.searcharch.yahoo.com',
3063
+ 'tw.search.yahoo.com',
3064
+ 'tw.yahoo.com',
3065
+ 'uk.search.yahoo.com',
3066
+ 'uk.yahoo.com',
3067
+ 'us.search.yahoo.com',
3068
+ 'us.yahoo.com',
3069
+ 'www.yahoo.co.jp',
3070
+ 'search.yahoo.co.jp',
3071
+ 'www.cercato.it',
3072
+ 'search.offerbox.com',
3073
+ 'ys.mirostart.com'
3074
+ ],
3075
+ 'parameters': [
3076
+ 'p',
3077
+ 'q'
3078
+ ]
3079
+ },
3080
+ 'URL.ORGanizier': {
3081
+ 'domains': [
3082
+ 'www.url.org'
3083
+ ],
3084
+ 'parameters': [
3085
+ 'q'
3086
+ ]
3087
+ },
3088
+ 'Witch': {
3089
+ 'domains': [
3090
+ 'www.witch.de'
3091
+ ],
3092
+ 'parameters': [
3093
+ 'search'
3094
+ ]
3095
+ },
3096
+ 'Mister Wong': {
3097
+ 'domains': [
3098
+ 'www.mister-wong.com',
3099
+ 'www.mister-wong.de'
3100
+ ],
3101
+ 'parameters': [
3102
+ 'Keywords'
3103
+ ]
3104
+ },
3105
+ 'Aport': {
3106
+ 'domains': [
3107
+ 'sm.aport.ru'
3108
+ ],
3109
+ 'parameters': [
3110
+ 'r'
3111
+ ]
3112
+ },
3113
+ 'Web.de': {
3114
+ 'domains': [
3115
+ 'suche.web.de'
3116
+ ],
3117
+ 'parameters': [
3118
+ 'su'
3119
+ ]
3120
+ },
3121
+ 'Ask': {
3122
+ 'domains': [
3123
+ 'ask.com',
3124
+ 'www.ask.com',
3125
+ 'web.ask.com',
3126
+ 'int.ask.com',
3127
+ 'mws.ask.com',
3128
+ 'uk.ask.com',
3129
+ 'images.ask.com',
3130
+ 'ask.reference.com',
3131
+ 'www.askkids.com',
3132
+ 'iwon.ask.com',
3133
+ 'www.ask.co.uk',
3134
+ 'www.qbyrd.com',
3135
+ 'search-results.com',
3136
+ 'uk.search-results.com',
3137
+ 'www.search-results.com',
3138
+ 'int.search-results.com'
3139
+ ],
3140
+ 'parameters': [
3141
+ 'q'
3142
+ ]
3143
+ },
3144
+ 'Centrum': {
3145
+ 'domains': [
3146
+ 'serach.centrum.cz',
3147
+ 'morfeo.centrum.cz'
3148
+ ],
3149
+ 'parameters': [
3150
+ 'q'
3151
+ ]
3152
+ },
3153
+ 'Bing': {
3154
+ 'domains': [
3155
+ 'bing.com',
3156
+ 'www.bing.com',
3157
+ 'msnbc.msn.com',
3158
+ 'dizionario.it.msn.com',
3159
+ 'cc.bingj.com',
3160
+ 'm.bing.com'
3161
+ ],
3162
+ 'parameters': [
3163
+ 'q',
3164
+ 'Q'
3165
+ ]
3166
+ },
3167
+ 'Google Video': {
3168
+ 'domains': [
3169
+ 'video.google.com'
3170
+ ],
3171
+ 'parameters': [
3172
+ 'q'
3173
+ ]
3174
+ },
3175
+ 'Delfi': {
3176
+ 'domains': [
3177
+ 'otsing.delfi.ee'
3178
+ ],
3179
+ 'parameters': [
3180
+ 'q'
3181
+ ]
3182
+ },
3183
+ 'blekko': {
3184
+ 'domains': [
3185
+ 'blekko.com'
3186
+ ],
3187
+ 'parameters': [
3188
+ 'q'
3189
+ ]
3190
+ },
3191
+ 'Jyxo': {
3192
+ 'domains': [
3193
+ 'jyxo.1188.cz'
3194
+ ],
3195
+ 'parameters': [
3196
+ 'q'
3197
+ ]
3198
+ },
3199
+ 'Kataweb': {
3200
+ 'domains': [
3201
+ 'www.kataweb.it'
3202
+ ],
3203
+ 'parameters': [
3204
+ 'q'
3205
+ ]
3206
+ },
3207
+ 'uol.com.br': {
3208
+ 'domains': [
3209
+ 'busca.uol.com.br'
3210
+ ],
3211
+ 'parameters': [
3212
+ 'q'
3213
+ ]
3214
+ },
3215
+ 'Arianna': {
3216
+ 'domains': [
3217
+ 'arianna.libero.it',
3218
+ 'www.arianna.com'
3219
+ ],
3220
+ 'parameters': [
3221
+ 'query'
3222
+ ]
3223
+ },
3224
+ 'Mamma': {
3225
+ 'domains': [
3226
+ 'www.mamma.com',
3227
+ 'mamma75.mamma.com'
3228
+ ],
3229
+ 'parameters': [
3230
+ 'query'
3231
+ ]
3232
+ },
3233
+ 'Yatedo': {
3234
+ 'domains': [
3235
+ 'www.yatedo.com',
3236
+ 'www.yatedo.fr'
3237
+ ],
3238
+ 'parameters': [
3239
+ 'q'
3240
+ ]
3241
+ },
3242
+ 'Twingly': {
3243
+ 'domains': [
3244
+ 'www.twingly.com'
3245
+ ],
3246
+ 'parameters': [
3247
+ 'q'
3248
+ ]
3249
+ },
3250
+ 'Delfi latvia': {
3251
+ 'domains': [
3252
+ 'smart.delfi.lv'
3253
+ ],
3254
+ 'parameters': [
3255
+ 'q'
3256
+ ]
3257
+ },
3258
+ 'PriceRunner': {
3259
+ 'domains': [
3260
+ 'www.pricerunner.co.uk'
3261
+ ],
3262
+ 'parameters': [
3263
+ 'q'
3264
+ ]
3265
+ },
3266
+ 'Rakuten': {
3267
+ 'domains': [
3268
+ 'websearch.rakuten.co.jp'
3269
+ ],
3270
+ 'parameters': [
3271
+ 'qt'
3272
+ ]
3273
+ },
3274
+ 'Google': {
3275
+ 'domains': [
3276
+ 'www.google.com',
3277
+ 'www.google.ac',
3278
+ 'www.google.ad',
3279
+ 'www.google.com.af',
3280
+ 'www.google.com.ag',
3281
+ 'www.google.com.ai',
3282
+ 'www.google.am',
3283
+ 'www.google.it.ao',
3284
+ 'www.google.com.ar',
3285
+ 'www.google.as',
3286
+ 'www.google.at',
3287
+ 'www.google.com.au',
3288
+ 'www.google.az',
3289
+ 'www.google.ba',
3290
+ 'www.google.com.bd',
3291
+ 'www.google.be',
3292
+ 'www.google.bf',
3293
+ 'www.google.bg',
3294
+ 'www.google.com.bh',
3295
+ 'www.google.bi',
3296
+ 'www.google.bj',
3297
+ 'www.google.com.bn',
3298
+ 'www.google.com.bo',
3299
+ 'www.google.com.br',
3300
+ 'www.google.bs',
3301
+ 'www.google.co.bw',
3302
+ 'www.google.com.by',
3303
+ 'www.google.by',
3304
+ 'www.google.com.bz',
3305
+ 'www.google.ca',
3306
+ 'www.google.com.kh',
3307
+ 'www.google.cc',
3308
+ 'www.google.cd',
3309
+ 'www.google.cf',
3310
+ 'www.google.cat',
3311
+ 'www.google.cg',
3312
+ 'www.google.ch',
3313
+ 'www.google.ci',
3314
+ 'www.google.co.ck',
3315
+ 'www.google.cl',
3316
+ 'www.google.cm',
3317
+ 'www.google.cn',
3318
+ 'www.google.com.co',
3319
+ 'www.google.co.cr',
3320
+ 'www.google.com.cu',
3321
+ 'www.google.cv',
3322
+ 'www.google.com.cy',
3323
+ 'www.google.cz',
3324
+ 'www.google.de',
3325
+ 'www.google.dj',
3326
+ 'www.google.dk',
3327
+ 'www.google.dm',
3328
+ 'www.google.com.do',
3329
+ 'www.google.dz',
3330
+ 'www.google.com.ec',
3331
+ 'www.google.ee',
3332
+ 'www.google.com.eg',
3333
+ 'www.google.es',
3334
+ 'www.google.com.et',
3335
+ 'www.google.fi',
3336
+ 'www.google.com.fj',
3337
+ 'www.google.fm',
3338
+ 'www.google.fr',
3339
+ 'www.google.ga',
3340
+ 'www.google.gd',
3341
+ 'www.google.ge',
3342
+ 'www.google.gf',
3343
+ 'www.google.gg',
3344
+ 'www.google.com.gh',
3345
+ 'www.google.com.gi',
3346
+ 'www.google.gl',
3347
+ 'www.google.gm',
3348
+ 'www.google.gp',
3349
+ 'www.google.gr',
3350
+ 'www.google.com.gt',
3351
+ 'www.google.gy',
3352
+ 'www.google.com.hk',
3353
+ 'www.google.hn',
3354
+ 'www.google.hr',
3355
+ 'www.google.ht',
3356
+ 'www.google.hu',
3357
+ 'www.google.co.id',
3358
+ 'www.google.iq',
3359
+ 'www.google.ie',
3360
+ 'www.google.co.il',
3361
+ 'www.google.im',
3362
+ 'www.google.co.in',
3363
+ 'www.google.io',
3364
+ 'www.google.is',
3365
+ 'www.google.it',
3366
+ 'www.google.je',
3367
+ 'www.google.com.jm',
3368
+ 'www.google.jo',
3369
+ 'www.google.co.jp',
3370
+ 'www.google.co.ke',
3371
+ 'www.google.ki',
3372
+ 'www.google.kg',
3373
+ 'www.google.co.kr',
3374
+ 'www.google.com.kw',
3375
+ 'www.google.kz',
3376
+ 'www.google.la',
3377
+ 'www.google.com.lb',
3378
+ 'www.google.com.lc',
3379
+ 'www.google.li',
3380
+ 'www.google.lk',
3381
+ 'www.google.co.ls',
3382
+ 'www.google.lt',
3383
+ 'www.google.lu',
3384
+ 'www.google.lv',
3385
+ 'www.google.com.ly',
3386
+ 'www.google.co.ma',
3387
+ 'www.google.md',
3388
+ 'www.google.me',
3389
+ 'www.google.mg',
3390
+ 'www.google.mk',
3391
+ 'www.google.ml',
3392
+ 'www.google.mn',
3393
+ 'www.google.ms',
3394
+ 'www.google.com.mt',
3395
+ 'www.google.mu',
3396
+ 'www.google.mv',
3397
+ 'www.google.mw',
3398
+ 'www.google.com.mx',
3399
+ 'www.google.com.my',
3400
+ 'www.google.co.mz',
3401
+ 'www.google.com.na',
3402
+ 'www.google.ne',
3403
+ 'www.google.com.nf',
3404
+ 'www.google.com.ng',
3405
+ 'www.google.com.ni',
3406
+ 'www.google.nl',
3407
+ 'www.google.no',
3408
+ 'www.google.com.np',
3409
+ 'www.google.nr',
3410
+ 'www.google.nu',
3411
+ 'www.google.co.nz',
3412
+ 'www.google.com.om',
3413
+ 'www.google.com.pa',
3414
+ 'www.google.com.pe',
3415
+ 'www.google.com.ph',
3416
+ 'www.google.com.pk',
3417
+ 'www.google.pl',
3418
+ 'www.google.pn',
3419
+ 'www.google.com.pr',
3420
+ 'www.google.ps',
3421
+ 'www.google.pt',
3422
+ 'www.google.com.py',
3423
+ 'www.google.com.qa',
3424
+ 'www.google.ro',
3425
+ 'www.google.rs',
3426
+ 'www.google.ru',
3427
+ 'www.google.rw',
3428
+ 'www.google.com.sa',
3429
+ 'www.google.com.sb',
3430
+ 'www.google.sc',
3431
+ 'www.google.se',
3432
+ 'www.google.com.sg',
3433
+ 'www.google.sh',
3434
+ 'www.google.si',
3435
+ 'www.google.sk',
3436
+ 'www.google.com.sl',
3437
+ 'www.google.sn',
3438
+ 'www.google.sm',
3439
+ 'www.google.so',
3440
+ 'www.google.st',
3441
+ 'www.google.com.sv',
3442
+ 'www.google.td',
3443
+ 'www.google.tg',
3444
+ 'www.google.co.th',
3445
+ 'www.google.com.tj',
3446
+ 'www.google.tk',
3447
+ 'www.google.tl',
3448
+ 'www.google.tm',
3449
+ 'www.google.to',
3450
+ 'www.google.com.tn',
3451
+ 'www.google.tn',
3452
+ 'www.google.com.tr',
3453
+ 'www.google.tt',
3454
+ 'www.google.com.tw',
3455
+ 'www.google.co.tz',
3456
+ 'www.google.com.ua',
3457
+ 'www.google.co.ug',
3458
+ 'www.google.ae',
3459
+ 'www.google.co.uk',
3460
+ 'www.google.us',
3461
+ 'www.google.com.uy',
3462
+ 'www.google.co.uz',
3463
+ 'www.google.com.vc',
3464
+ 'www.google.co.ve',
3465
+ 'www.google.vg',
3466
+ 'www.google.co.vi',
3467
+ 'www.google.com.vn',
3468
+ 'www.google.vu',
3469
+ 'www.google.ws',
3470
+ 'www.google.co.za',
3471
+ 'www.google.co.zm',
3472
+ 'www.google.co.zw',
3473
+ 'google.com',
3474
+ 'google.ac',
3475
+ 'google.ad',
3476
+ 'google.com.af',
3477
+ 'google.com.ag',
3478
+ 'google.com.ai',
3479
+ 'google.am',
3480
+ 'google.it.ao',
3481
+ 'google.com.ar',
3482
+ 'google.as',
3483
+ 'google.at',
3484
+ 'google.com.au',
3485
+ 'google.az',
3486
+ 'google.ba',
3487
+ 'google.com.bd',
3488
+ 'google.be',
3489
+ 'google.bf',
3490
+ 'google.bg',
3491
+ 'google.com.bh',
3492
+ 'google.bi',
3493
+ 'google.bj',
3494
+ 'google.com.bn',
3495
+ 'google.com.bo',
3496
+ 'google.com.br',
3497
+ 'google.bs',
3498
+ 'google.co.bw',
3499
+ 'google.com.by',
3500
+ 'google.by',
3501
+ 'google.com.bz',
3502
+ 'google.ca',
3503
+ 'google.com.kh',
3504
+ 'google.cc',
3505
+ 'google.cd',
3506
+ 'google.cf',
3507
+ 'google.cat',
3508
+ 'google.cg',
3509
+ 'google.ch',
3510
+ 'google.ci',
3511
+ 'google.co.ck',
3512
+ 'google.cl',
3513
+ 'google.cm',
3514
+ 'google.cn',
3515
+ 'google.com.co',
3516
+ 'google.co.cr',
3517
+ 'google.com.cu',
3518
+ 'google.cv',
3519
+ 'google.com.cy',
3520
+ 'google.cz',
3521
+ 'google.de',
3522
+ 'google.dj',
3523
+ 'google.dk',
3524
+ 'google.dm',
3525
+ 'google.com.do',
3526
+ 'google.dz',
3527
+ 'google.com.ec',
3528
+ 'google.ee',
3529
+ 'google.com.eg',
3530
+ 'google.es',
3531
+ 'google.com.et',
3532
+ 'google.fi',
3533
+ 'google.com.fj',
3534
+ 'google.fm',
3535
+ 'google.fr',
3536
+ 'google.ga',
3537
+ 'google.gd',
3538
+ 'google.ge',
3539
+ 'google.gf',
3540
+ 'google.gg',
3541
+ 'google.com.gh',
3542
+ 'google.com.gi',
3543
+ 'google.gl',
3544
+ 'google.gm',
3545
+ 'google.gp',
3546
+ 'google.gr',
3547
+ 'google.com.gt',
3548
+ 'google.gy',
3549
+ 'google.com.hk',
3550
+ 'google.hn',
3551
+ 'google.hr',
3552
+ 'google.ht',
3553
+ 'google.hu',
3554
+ 'google.co.id',
3555
+ 'google.iq',
3556
+ 'google.ie',
3557
+ 'google.co.il',
3558
+ 'google.im',
3559
+ 'google.co.in',
3560
+ 'google.io',
3561
+ 'google.is',
3562
+ 'google.it',
3563
+ 'google.je',
3564
+ 'google.com.jm',
3565
+ 'google.jo',
3566
+ 'google.co.jp',
3567
+ 'google.co.ke',
3568
+ 'google.ki',
3569
+ 'google.kg',
3570
+ 'google.co.kr',
3571
+ 'google.com.kw',
3572
+ 'google.kz',
3573
+ 'google.la',
3574
+ 'google.com.lb',
3575
+ 'google.com.lc',
3576
+ 'google.li',
3577
+ 'google.lk',
3578
+ 'google.co.ls',
3579
+ 'google.lt',
3580
+ 'google.lu',
3581
+ 'google.lv',
3582
+ 'google.com.ly',
3583
+ 'google.co.ma',
3584
+ 'google.md',
3585
+ 'google.me',
3586
+ 'google.mg',
3587
+ 'google.mk',
3588
+ 'google.ml',
3589
+ 'google.mn',
3590
+ 'google.ms',
3591
+ 'google.com.mt',
3592
+ 'google.mu',
3593
+ 'google.mv',
3594
+ 'google.mw',
3595
+ 'google.com.mx',
3596
+ 'google.com.my',
3597
+ 'google.co.mz',
3598
+ 'google.com.na',
3599
+ 'google.ne',
3600
+ 'google.com.nf',
3601
+ 'google.com.ng',
3602
+ 'google.com.ni',
3603
+ 'google.nl',
3604
+ 'google.no',
3605
+ 'google.com.np',
3606
+ 'google.nr',
3607
+ 'google.nu',
3608
+ 'google.co.nz',
3609
+ 'google.com.om',
3610
+ 'google.com.pa',
3611
+ 'google.com.pe',
3612
+ 'google.com.ph',
3613
+ 'google.com.pk',
3614
+ 'google.pl',
3615
+ 'google.pn',
3616
+ 'google.com.pr',
3617
+ 'google.ps',
3618
+ 'google.pt',
3619
+ 'google.com.py',
3620
+ 'google.com.qa',
3621
+ 'google.ro',
3622
+ 'google.rs',
3623
+ 'google.ru',
3624
+ 'google.rw',
3625
+ 'google.com.sa',
3626
+ 'google.com.sb',
3627
+ 'google.sc',
3628
+ 'google.se',
3629
+ 'google.com.sg',
3630
+ 'google.sh',
3631
+ 'google.si',
3632
+ 'google.sk',
3633
+ 'google.com.sl',
3634
+ 'google.sn',
3635
+ 'google.sm',
3636
+ 'google.so',
3637
+ 'google.st',
3638
+ 'google.com.sv',
3639
+ 'google.td',
3640
+ 'google.tg',
3641
+ 'google.co.th',
3642
+ 'google.com.tj',
3643
+ 'google.tk',
3644
+ 'google.tl',
3645
+ 'google.tm',
3646
+ 'google.to',
3647
+ 'google.com.tn',
3648
+ 'google.com.tr',
3649
+ 'google.tt',
3650
+ 'google.com.tw',
3651
+ 'google.co.tz',
3652
+ 'google.com.ua',
3653
+ 'google.co.ug',
3654
+ 'google.ae',
3655
+ 'google.co.uk',
3656
+ 'google.us',
3657
+ 'google.com.uy',
3658
+ 'google.co.uz',
3659
+ 'google.com.vc',
3660
+ 'google.co.ve',
3661
+ 'google.vg',
3662
+ 'google.co.vi',
3663
+ 'google.com.vn',
3664
+ 'google.vu',
3665
+ 'google.ws',
3666
+ 'google.co.za',
3667
+ 'google.co.zm',
3668
+ 'google.co.zw',
3669
+ 'google.tn',
3670
+ 'search.avg.com',
3671
+ 'isearch.avg.com',
3672
+ 'www.cnn.com',
3673
+ 'darkoogle.com',
3674
+ 'search.darkoogle.com',
3675
+ 'search.foxtab.com',
3676
+ 'www.gooofullsearch.com',
3677
+ 'search.hiyo.com',
3678
+ 'search.incredimail.com',
3679
+ 'search1.incredimail.com',
3680
+ 'search2.incredimail.com',
3681
+ 'search3.incredimail.com',
3682
+ 'search4.incredimail.com',
3683
+ 'search.incredibar.com',
3684
+ 'search.sweetim.com',
3685
+ 'www.fastweb.it',
3686
+ 'search.juno.com',
3687
+ 'find.tdc.dk',
3688
+ 'searchresults.verizon.com',
3689
+ 'search.walla.co.il',
3690
+ 'search.alot.com',
3691
+ 'www.googleearth.de',
3692
+ 'www.googleearth.fr',
3693
+ 'webcache.googleusercontent.com',
3694
+ 'encrypted.google.com',
3695
+ 'googlesyndicatedsearch.com'
3696
+ ],
3697
+ 'parameters': [
3698
+ 'q',
3699
+ 'query',
3700
+ 'Keywords'
3701
+ ]
3702
+ },
3703
+ 'Blogpulse': {
3704
+ 'domains': [
3705
+ 'www.blogpulse.com'
3706
+ ],
3707
+ 'parameters': [
3708
+ 'query'
3709
+ ]
3710
+ },
3711
+ 'Hooseek.com': {
3712
+ 'domains': [
3713
+ 'www.hooseek.com'
3714
+ ],
3715
+ 'parameters': [
3716
+ 'recherche'
3717
+ ]
3718
+ },
3719
+ 'Dalesearch': {
3720
+ 'domains': [
3721
+ 'www.dalesearch.com'
3722
+ ],
3723
+ 'parameters': [
3724
+ 'q'
3725
+ ]
3726
+ },
3727
+ 'Alice Adsl': {
3728
+ 'domains': [
3729
+ 'rechercher.aliceadsl.fr'
3730
+ ],
3731
+ 'parameters': [
3732
+ 'q'
3733
+ ]
3734
+ },
3735
+ 'T-Online': {
3736
+ 'domains': [
3737
+ 'suche.t-online.de',
3738
+ 'brisbane.t-online.de',
3739
+ 'navigationshilfe.t-online.de'
3740
+ ],
3741
+ 'parameters': [
3742
+ 'q'
3743
+ ]
3744
+ },
3745
+ 'Sogou': {
3746
+ 'domains': [
3747
+ 'www.sougou.com',
3748
+ 'www.soso.com'
3749
+ ],
3750
+ 'parameters': [
3751
+ 'query',
3752
+ 'w'
3753
+ ]
3754
+ },
3755
+ 'Hit-Parade': {
3756
+ 'domains': [
3757
+ 'req.-hit-parade.com',
3758
+ 'class.hit-parade.com',
3759
+ 'www.hit-parade.com'
3760
+ ],
3761
+ 'parameters': [
3762
+ 'p7'
3763
+ ]
3764
+ },
3765
+ 'SearchCanvas': {
3766
+ 'domains': [
3767
+ 'www.searchcanvas.com'
3768
+ ],
3769
+ 'parameters': [
3770
+ 'q'
3771
+ ]
3772
+ },
3773
+ 'Jungle Key': {
3774
+ 'domains': [
3775
+ 'junglekey.com',
3776
+ 'junglekey.fr'
3777
+ ],
3778
+ 'parameters': [
3779
+ 'query'
3780
+ ]
3781
+ },
3782
+ 'Interia': {
3783
+ 'domains': [
3784
+ 'www.google.interia.pl'
3785
+ ],
3786
+ 'parameters': [
3787
+ 'q'
3788
+ ]
3789
+ },
3790
+ 'Genieo': {
3791
+ 'domains': [
3792
+ 'search.genieo.com'
3793
+ ],
3794
+ 'parameters': [
3795
+ 'q'
3796
+ ]
3797
+ },
3798
+ 'Tiscali': {
3799
+ 'domains': [
3800
+ 'search.tiscali.it',
3801
+ 'search-dyn.tiscali.it',
3802
+ 'hledani.tiscali.cz'
3803
+ ],
3804
+ 'parameters': [
3805
+ 'q',
3806
+ 'key'
3807
+ ]
3808
+ },
3809
+ 'Gomeo': {
3810
+ 'domains': [
3811
+ 'www.gomeo.com'
3812
+ ],
3813
+ 'parameters': [
3814
+ 'Keywords'
3815
+ ]
3816
+ }
3817
+ },
3818
+ 'email': {
3819
+ 'Bigpond': {
3820
+ 'domains': [
3821
+ 'webmail.bigpond.com',
3822
+ 'webmail2.bigpond.com',
3823
+ 'email.telstra.com',
3824
+ 'basic.messaging.bigpond.com'
3825
+ ]
3826
+ },
3827
+ 'Naver Mail': {
3828
+ 'domains': [
3829
+ 'mail.naver.com'
3830
+ ]
3831
+ },
3832
+ 'Zoho': {
3833
+ 'domains': [
3834
+ 'mail.zoho.com'
3835
+ ]
3836
+ },
3837
+ 'Virgin': {
3838
+ 'domains': [
3839
+ 'webmail.virginbroadband.com.au'
3840
+ ]
3841
+ },
3842
+ 'Yahoo! Mail': {
3843
+ 'domains': [
3844
+ 'mail.yahoo.net',
3845
+ 'mail.yahoo.com',
3846
+ 'mail.yahoo.co.uk',
3847
+ 'mail.yahoo.co.jp'
3848
+ ]
3849
+ },
3850
+ 'iiNet': {
3851
+ 'domains': [
3852
+ 'webmail.iinet.net.au',
3853
+ 'mail.iinet.net.au'
3854
+ ]
3855
+ },
3856
+ 'E1.ru': {
3857
+ 'domains': [
3858
+ 'mail.e1.ru'
3859
+ ]
3860
+ },
3861
+ 'Vodafone': {
3862
+ 'domains': [
3863
+ 'webmail.vodafone.co.nz'
3864
+ ]
3865
+ },
3866
+ '126 Mail': {
3867
+ 'domains': [
3868
+ 'mail.126.com'
3869
+ ]
3870
+ },
3871
+ 'Inbox.com': {
3872
+ 'domains': [
3873
+ 'inbox.com'
3874
+ ]
3875
+ },
3876
+ 'iPrimus': {
3877
+ 'domains': [
3878
+ 'webmail.iprimus.com.au'
3879
+ ]
3880
+ },
3881
+ 'QQ Mail': {
3882
+ 'domains': [
3883
+ 'mail.qq.com',
3884
+ 'exmail.qq.com'
3885
+ ]
3886
+ },
3887
+ 'QIP': {
3888
+ 'domains': [
3889
+ 'mail.qip.ru'
3890
+ ]
3891
+ },
3892
+ 'Sibmail': {
3893
+ 'domains': [
3894
+ 'sibmail.com'
3895
+ ]
3896
+ },
3897
+ 'Freenet': {
3898
+ 'domains': [
3899
+ 'webmail.freenet.de'
3900
+ ]
3901
+ },
3902
+ 'Seznam Mail': {
3903
+ 'domains': [
3904
+ 'email.seznam.cz'
3905
+ ]
3906
+ },
3907
+ 'Westnet': {
3908
+ 'domains': [
3909
+ 'webmail.westnet.com.au'
3910
+ ]
3911
+ },
3912
+ 'Outlook.com': {
3913
+ 'domains': [
3914
+ 'mail.live.com',
3915
+ 'outlook.live.com'
3916
+ ]
3917
+ },
3918
+ 'Dodo': {
3919
+ 'domains': [
3920
+ 'webmail.dodo.com.au'
3921
+ ]
3922
+ },
3923
+ '2degrees': {
3924
+ 'domains': [
3925
+ 'webmail.2degreesbroadband.co.nz'
3926
+ ]
3927
+ },
3928
+ 'Daum Mail': {
3929
+ 'domains': [
3930
+ 'mail2.daum.net',
3931
+ 'mail.daum.net'
3932
+ ]
3933
+ },
3934
+ 'Beeline': {
3935
+ 'domains': [
3936
+ 'post.ru'
3937
+ ]
3938
+ },
3939
+ 'Mail.ru': {
3940
+ 'domains': [
3941
+ 'e.mail.ru',
3942
+ 'touch.mail.ru'
3943
+ ]
3944
+ },
3945
+ 'Adam Internet': {
3946
+ 'domains': [
3947
+ 'webmail.adam.com.au'
3948
+ ]
3949
+ },
3950
+ 'Orange Webmail': {
3951
+ 'domains': [
3952
+ 'orange.fr/webmail'
3953
+ ]
3954
+ },
3955
+ 'AOL Mail': {
3956
+ 'domains': [
3957
+ 'mail.aol.com'
3958
+ ]
3959
+ },
3960
+ 'Netspace': {
3961
+ 'domains': [
3962
+ 'webmail.netspace.net.au'
3963
+ ]
3964
+ },
3965
+ 'Optus Zoo': {
3966
+ 'domains': [
3967
+ 'webmail.optuszoo.com.au',
3968
+ 'webmail.optusnet.com.au'
3969
+ ]
3970
+ },
3971
+ 'Commander': {
3972
+ 'domains': [
3973
+ 'webmail.commander.net.au'
3974
+ ]
3975
+ },
3976
+ 'Mastermail': {
3977
+ 'domains': [
3978
+ 'mastermail.ru',
3979
+ 'm.mastermail.ru'
3980
+ ]
3981
+ },
3982
+ 'Yandex': {
3983
+ 'domains': [
3984
+ 'mail.yandex.ru',
3985
+ 'mail.yandex.com',
3986
+ 'mail.yandex.kz',
3987
+ 'mail.yandex.ua',
3988
+ 'mail.yandex.by'
3989
+ ]
3990
+ },
3991
+ '163 Mail': {
3992
+ 'domains': [
3993
+ 'mail.163.com'
3994
+ ]
3995
+ },
3996
+ 'Ukr.net': {
3997
+ 'domains': [
3998
+ 'mail.ukr.net'
3999
+ ]
4000
+ },
4001
+ 'Rambler': {
4002
+ 'domains': [
4003
+ 'mail.rambler.ru'
4004
+ ]
4005
+ },
4006
+ 'Mynet Mail': {
4007
+ 'domains': [
4008
+ 'mail.mynet.com'
4009
+ ]
4010
+ },
4011
+ 'Gmail': {
4012
+ 'domains': [
4013
+ 'mail.google.com',
4014
+ 'inbox.google.com'
4015
+ ]
4016
+ }
4017
+ },
4018
+ 'paid': {
4019
+ 'AdSpirit': {
4020
+ 'domains': [
4021
+ 'adspirit.de',
4022
+ 'rtbcity.com',
4023
+ 'plusperformance.com'
4024
+ ]
4025
+ },
4026
+ 'Flashtalking': {
4027
+ 'domains': [
4028
+ 'flashtalking.com',
4029
+ 'servedby.flashtalking.com'
4030
+ ]
4031
+ },
4032
+ 'AudienceScience': {
4033
+ 'domains': [
4034
+ 'wunderloop.net'
4035
+ ]
4036
+ },
4037
+ 'Outbrain': {
4038
+ 'domains': [
4039
+ 'paid.outbrain.com'
4040
+ ]
4041
+ },
4042
+ 'Yieldmo': {
4043
+ 'domains': [
4044
+ 'yieldmo.com'
4045
+ ]
4046
+ },
4047
+ 'Mozo': {
4048
+ 'domains': [
4049
+ 'mozo.com.au',
4050
+ 'a.mozo.com.au'
4051
+ ]
4052
+ },
4053
+ 'Acuity Ads': {
4054
+ 'domains': [
4055
+ 'acuityplatform.com'
4056
+ ]
4057
+ },
4058
+ 'LifeStreet': {
4059
+ 'domains': [
4060
+ 'lfstmedia.com'
4061
+ ]
4062
+ },
4063
+ 'MicroAd': {
4064
+ 'domains': [
4065
+ 'microad.jp'
4066
+ ]
4067
+ },
4068
+ 'Taboola': {
4069
+ 'domains': [
4070
+ 'trc.taboola.com',
4071
+ 'api.taboola.com',
4072
+ 'taboola.com'
4073
+ ]
4074
+ },
4075
+ 'Doubleclick': {
4076
+ 'domains': [
4077
+ 'ad.doubleclick.net',
4078
+ 'ad-apac.doubleclick.net',
4079
+ 's0.2mdn.net',
4080
+ 's1.2mdn.net',
4081
+ 'dp.g.doubleclick.net',
4082
+ 'pubads.g.doubleclick.net'
4083
+ ]
4084
+ },
4085
+ 'Adform': {
4086
+ 'domains': [
4087
+ 'adform.net'
4088
+ ]
4089
+ },
4090
+ 'Sizmek': {
4091
+ 'domains': [
4092
+ 'bs.serving-sys.com'
4093
+ ]
4094
+ },
4095
+ 'Criteo': {
4096
+ 'domains': [
4097
+ 'cas.jp.as.criteo.com',
4098
+ 'cas.criteo.com'
4099
+ ]
4100
+ },
4101
+ 'Fluct': {
4102
+ 'domains': [
4103
+ 'adingo.jp'
4104
+ ]
4105
+ },
4106
+ 'LowerMyBills': {
4107
+ 'domains': [
4108
+ 'lowermybills.com'
4109
+ ],
4110
+ 'parameters': [
4111
+ 'leadid'
4112
+ ]
4113
+ },
4114
+ 'White Pages': {
4115
+ 'domains': [
4116
+ 'www.whitepages.com.au',
4117
+ 'mobile.whitepages.com.au'
4118
+ ]
4119
+ },
4120
+ 'Neustar AdAdvisor': {
4121
+ 'domains': [
4122
+ 'adadvisor.net'
4123
+ ]
4124
+ },
4125
+ 'ONE by AOL': {
4126
+ 'domains': [
4127
+ 'nexage.com'
4128
+ ]
4129
+ },
4130
+ 'Mixpo': {
4131
+ 'domains': [
4132
+ 'mixpo.com'
4133
+ ]
4134
+ },
4135
+ 'Rubicon Project': {
4136
+ 'domains': [
4137
+ 'optimized-by.rubiconproject.com'
4138
+ ]
4139
+ },
4140
+ 'PubMatic': {
4141
+ 'domains': [
4142
+ 'sshowads.pubmatic.com'
4143
+ ]
4144
+ },
4145
+ 'Jivox': {
4146
+ 'domains': [
4147
+ 'jivox.com'
4148
+ ]
4149
+ },
4150
+ 'BidSwitch': {
4151
+ 'domains': [
4152
+ 'bidswitch.net'
4153
+ ]
4154
+ },
4155
+ 'Sonobi': {
4156
+ 'domains': [
4157
+ 'sonobi.com'
4158
+ ]
4159
+ },
4160
+ 'SteelHouse': {
4161
+ 'domains': [
4162
+ 'steelhousemedia.com'
4163
+ ]
4164
+ },
4165
+ 'AdRoll': {
4166
+ 'domains': [
4167
+ 'adroll.com'
4168
+ ]
4169
+ },
4170
+ 'AdNET': {
4171
+ 'domains': [
4172
+ 'adnet.de'
4173
+ ]
4174
+ },
4175
+ 'Tribal Fusion': {
4176
+ 'domains': [
4177
+ 'cdnx.tribalfusion.com'
4178
+ ]
4179
+ },
4180
+ 'Yandex.Market': {
4181
+ 'domains': [
4182
+ 'market.yandex.ru',
4183
+ 'm.market.yandex.ru'
4184
+ ]
4185
+ },
4186
+ 'StickyADS.tv': {
4187
+ 'domains': [
4188
+ 'stickyadstv.com',
4189
+ 'sfx.stickyadstv.com'
4190
+ ]
4191
+ },
4192
+ 'ZEDO': {
4193
+ 'domains': [
4194
+ 'zedo.com',
4195
+ 'z1.zedo.com'
4196
+ ]
4197
+ },
4198
+ 'Plista': {
4199
+ 'domains': [
4200
+ 'farm.plista.com'
4201
+ ]
4202
+ },
4203
+ 'AppNexus': {
4204
+ 'domains': [
4205
+ 'ib.adnxs.com',
4206
+ 'adnxs.com',
4207
+ '247realmedia.com'
4208
+ ]
4209
+ },
4210
+ 'Sovrn': {
4211
+ 'domains': [
4212
+ 'lijit.com'
4213
+ ]
4214
+ },
4215
+ 'Google': {
4216
+ 'domains': [
4217
+ 'www.googleadservices.com',
4218
+ 'partner.googleadservices.com',
4219
+ 'googleads.g.doubleclick.net',
4220
+ 'tpc.googlesyndication.com',
4221
+ 'googleadservices.com',
4222
+ 'imasdk.googleapis.com'
4223
+ ]
4224
+ },
4225
+ 'Eyeota': {
4226
+ 'domains': [
4227
+ 'eyeota.net'
4228
+ ]
4229
+ },
4230
+ 'Price.ru': {
4231
+ 'domains': [
4232
+ 'price.ru',
4233
+ 'v.price.ru'
4234
+ ]
4235
+ },
4236
+ 'OpenX': {
4237
+ 'domains': [
4238
+ 'us-ads.openx.net',
4239
+ 'openx.net',
4240
+ 'servedbyopenx.com',
4241
+ 'openxenterprise.com'
4242
+ ]
4243
+ },
4244
+ 'Casale Media': {
4245
+ 'domains': [
4246
+ 'casalemedia.com'
4247
+ ]
4248
+ },
4249
+ 'Adition': {
4250
+ 'domains': [
4251
+ 'adition.com'
4252
+ ]
4253
+ },
4254
+ 'Yandex.Direct': {
4255
+ 'domains': [
4256
+ 'an.yandex.ru',
4257
+ 'yabs.yandex.ru',
4258
+ 'yabs.yandex.ua',
4259
+ 'yabs.yandex.com',
4260
+ 'yabs.yandex.by'
4261
+ ]
4262
+ },
4263
+ 'ADFOX': {
4264
+ 'domains': [
4265
+ 'adfox.ru',
4266
+ 'www.adfox.ru',
4267
+ 'ads.adfox.ru',
4268
+ 'www.ads.adfox.ru'
4269
+ ]
4270
+ },
4271
+ 'Torg.Mail.ru': {
4272
+ 'domains': [
4273
+ 'torg.mail.ru'
4274
+ ]
4275
+ },
4276
+ 'Sociomantic Labs': {
4277
+ 'domains': [
4278
+ 'sociomantic.com'
4279
+ ]
4280
+ }
4281
+ },
4282
+ 'social': {
4283
+ 'hi5': {
4284
+ 'domains': [
4285
+ 'hi5.com'
4286
+ ]
4287
+ },
4288
+ 'Friendster': {
4289
+ 'domains': [
4290
+ 'friendster.com'
4291
+ ]
4292
+ },
4293
+ 'Weibo': {
4294
+ 'domains': [
4295
+ 'weibo.com',
4296
+ 't.cn'
4297
+ ]
4298
+ },
4299
+ 'Xanga': {
4300
+ 'domains': [
4301
+ 'xanga.com'
4302
+ ]
4303
+ },
4304
+ 'Myspace': {
4305
+ 'domains': [
4306
+ 'myspace.com'
4307
+ ]
4308
+ },
4309
+ 'Buzznet': {
4310
+ 'domains': [
4311
+ 'buzznet.com'
4312
+ ]
4313
+ },
4314
+ 'MyLife': {
4315
+ 'domains': [
4316
+ 'mylife.ru'
4317
+ ]
4318
+ },
4319
+ 'Flickr': {
4320
+ 'domains': [
4321
+ 'flickr.com'
4322
+ ]
4323
+ },
4324
+ 'Whirlpool': {
4325
+ 'domains': [
4326
+ 'forums.whirlpool.net.au'
4327
+ ]
4328
+ },
4329
+ 'Sonico.com': {
4330
+ 'domains': [
4331
+ 'sonico.com'
4332
+ ]
4333
+ },
4334
+ 'Odnoklassniki': {
4335
+ 'domains': [
4336
+ 'odnoklassniki.ru',
4337
+ 'ok.ru'
4338
+ ]
4339
+ },
4340
+ 'GitHub': {
4341
+ 'domains': [
4342
+ 'github.com'
4343
+ ]
4344
+ },
4345
+ 'Classmates': {
4346
+ 'domains': [
4347
+ 'classmates.com'
4348
+ ]
4349
+ },
4350
+ 'Friends Reunited': {
4351
+ 'domains': [
4352
+ 'friendsreunited.com'
4353
+ ]
4354
+ },
4355
+ 'Renren': {
4356
+ 'domains': [
4357
+ 'renren.com'
4358
+ ]
4359
+ },
4360
+ 'Quora': {
4361
+ 'domains': [
4362
+ 'quora.com'
4363
+ ]
4364
+ },
4365
+ 'Gaia Online': {
4366
+ 'domains': [
4367
+ 'gaiaonline.com'
4368
+ ]
4369
+ },
4370
+ 'Netlog': {
4371
+ 'domains': [
4372
+ 'netlog.com'
4373
+ ]
4374
+ },
4375
+ 'Orkut': {
4376
+ 'domains': [
4377
+ 'orkut.com'
4378
+ ]
4379
+ },
4380
+ 'MyHeritage': {
4381
+ 'domains': [
4382
+ 'myheritage.com'
4383
+ ]
4384
+ },
4385
+ 'Multiply': {
4386
+ 'domains': [
4387
+ 'multiply.com'
4388
+ ]
4389
+ },
4390
+ 'myYearbook': {
4391
+ 'domains': [
4392
+ 'myyearbook.com'
4393
+ ]
4394
+ },
4395
+ 'WeeWorld': {
4396
+ 'domains': [
4397
+ 'weeworld.com'
4398
+ ]
4399
+ },
4400
+ 'Vimeo': {
4401
+ 'domains': [
4402
+ 'vimeo.com'
4403
+ ]
4404
+ },
4405
+ 'Eksi Sozluk': {
4406
+ 'domains': [
4407
+ 'Sozluk.com',
4408
+ 'sourtimes.org'
4409
+ ]
4410
+ },
4411
+ 'Geni': {
4412
+ 'domains': [
4413
+ 'geni.com'
4414
+ ]
4415
+ },
4416
+ 'Uludag Sozluk': {
4417
+ 'domains': [
4418
+ 'uludagsozluk.com',
4419
+ 'ulusozluk.com'
4420
+ ]
4421
+ },
4422
+ 'SourceForge': {
4423
+ 'domains': [
4424
+ 'sourceforge.net'
4425
+ ]
4426
+ },
4427
+ 'Plaxo': {
4428
+ 'domains': [
4429
+ 'plaxo.com'
4430
+ ]
4431
+ },
4432
+ 'Taringa!': {
4433
+ 'domains': [
4434
+ 'taringa.net'
4435
+ ]
4436
+ },
4437
+ 'Tagged': {
4438
+ 'domains': [
4439
+ 'login.tagged.com'
4440
+ ]
4441
+ },
4442
+ 'XING': {
4443
+ 'domains': [
4444
+ 'xing.com'
4445
+ ]
4446
+ },
4447
+ 'Instagram': {
4448
+ 'domains': [
4449
+ 'instagram.com',
4450
+ 'l.instagram.com'
4451
+ ]
4452
+ },
4453
+ 'Vkontakte': {
4454
+ 'domains': [
4455
+ 'm.vk.com',
4456
+ 'vk.com',
4457
+ 'away.vk.com',
4458
+ 'vkontakte.ru'
4459
+ ]
4460
+ },
4461
+ 'Twitter': {
4462
+ 'domains': [
4463
+ 'twitter.com',
4464
+ 't.co'
4465
+ ]
4466
+ },
4467
+ 'vKruguDruzei.ru': {
4468
+ 'domains': [
4469
+ 'vkrugudruzei.ru'
4470
+ ]
4471
+ },
4472
+ 'Donanimhaber': {
4473
+ 'domains': [
4474
+ 'donanimhaber.com'
4475
+ ]
4476
+ },
4477
+ 'WAYN': {
4478
+ 'domains': [
4479
+ 'wayn.com'
4480
+ ]
4481
+ },
4482
+ 'Skype': {
4483
+ 'domains': [
4484
+ 'web.skype.com'
4485
+ ]
4486
+ },
4487
+ 'Mail.ru': {
4488
+ 'domains': [
4489
+ 'my.mail.ru'
4490
+ ]
4491
+ },
4492
+ 'Badoo': {
4493
+ 'domains': [
4494
+ 'badoo.com'
4495
+ ]
4496
+ },
4497
+ 'Instela': {
4498
+ 'domains': [
4499
+ 'instela.com'
4500
+ ]
4501
+ },
4502
+ 'Habbo': {
4503
+ 'domains': [
4504
+ 'habbo.com'
4505
+ ]
4506
+ },
4507
+ 'Pinterest': {
4508
+ 'domains': [
4509
+ 'pinterest.com',
4510
+ 'pinterest.ca',
4511
+ 'pinterest.com.au'
4512
+ ]
4513
+ },
4514
+ 'LinkedIn': {
4515
+ 'domains': [
4516
+ 'linkedin.com',
4517
+ 'lnkd.in'
4518
+ ]
4519
+ },
4520
+ 'Foursquare': {
4521
+ 'domains': [
4522
+ 'foursquare.com'
4523
+ ]
4524
+ },
4525
+ 'Flixster': {
4526
+ 'domains': [
4527
+ 'flixster.com'
4528
+ ]
4529
+ },
4530
+ 'Windows Live Spaces': {
4531
+ 'domains': [
4532
+ 'login.live.com'
4533
+ ]
4534
+ },
4535
+ 'BlackPlanet': {
4536
+ 'domains': [
4537
+ 'blackplanet.com'
4538
+ ]
4539
+ },
4540
+ 'Cyworld': {
4541
+ 'domains': [
4542
+ 'global.cyworld.com'
4543
+ ]
4544
+ },
4545
+ 'Pocket': {
4546
+ 'domains': [
4547
+ 'getpocket.com'
4548
+ ]
4549
+ },
4550
+ 'Skyrock': {
4551
+ 'domains': [
4552
+ 'skyrock.com'
4553
+ ]
4554
+ },
4555
+ 'Facebook': {
4556
+ 'domains': [
4557
+ 'facebook.com',
4558
+ 'fb.me',
4559
+ 'm.facebook.com',
4560
+ 'l.facebook.com',
4561
+ 'lm.facebook.com'
4562
+ ]
4563
+ },
4564
+ 'WhatsApp': {
4565
+ 'domains': [
4566
+ 'web.whatsapp.com'
4567
+ ]
4568
+ },
4569
+ 'Disqus': {
4570
+ 'domains': [
4571
+ 'redirect.disqus.com',
4572
+ 'disq.us',
4573
+ 'disqus.com'
4574
+ ]
4575
+ },
4576
+ 'StudiVZ': {
4577
+ 'domains': [
4578
+ 'studivz.net'
4579
+ ]
4580
+ },
4581
+ 'Fotolog': {
4582
+ 'domains': [
4583
+ 'fotolog.com'
4584
+ ]
4585
+ },
4586
+ 'ITU Sozluk': {
4587
+ 'domains': [
4588
+ 'itusozluk.com'
4589
+ ]
4590
+ },
4591
+ 'Google+': {
4592
+ 'domains': [
4593
+ 'url.google.com',
4594
+ 'plus.google.com'
4595
+ ]
4596
+ },
4597
+ 'Nasza-klasa.pl': {
4598
+ 'domains': [
4599
+ 'nk.pl'
4600
+ ]
4601
+ },
4602
+ 'Qzone': {
4603
+ 'domains': [
4604
+ 'qzone.qq.com'
4605
+ ]
4606
+ },
4607
+ 'Douban': {
4608
+ 'domains': [
4609
+ 'douban.com'
4610
+ ]
4611
+ },
4612
+ 'Bebo': {
4613
+ 'domains': [
4614
+ 'bebo.com'
4615
+ ]
4616
+ },
4617
+ 'Tuenti': {
4618
+ 'domains': [
4619
+ 'tuenti.com'
4620
+ ]
4621
+ },
4622
+ 'Youtube': {
4623
+ 'domains': [
4624
+ 'youtube.com',
4625
+ 'youtu.be'
4626
+ ]
4627
+ },
4628
+ 'Reddit': {
4629
+ 'domains': [
4630
+ 'reddit.com'
4631
+ ]
4632
+ },
4633
+ 'Identi.ca': {
4634
+ 'domains': [
4635
+ 'identi.ca'
4636
+ ]
4637
+ },
4638
+ 'StackOverflow': {
4639
+ 'domains': [
4640
+ 'stackoverflow.com'
4641
+ ]
4642
+ },
4643
+ 'Mixi': {
4644
+ 'domains': [
4645
+ 'mixi.jp'
4646
+ ]
4647
+ },
4648
+ 'StumbleUpon': {
4649
+ 'domains': [
4650
+ 'stumbleupon.com'
4651
+ ]
4652
+ },
4653
+ 'Inci Sozluk': {
4654
+ 'domains': [
4655
+ 'inci.sozlukspot.com',
4656
+ 'incisozluk.com',
4657
+ 'incisozluk.cc'
4658
+ ]
4659
+ },
4660
+ 'Viadeo': {
4661
+ 'domains': [
4662
+ 'viadeo.com'
4663
+ ]
4664
+ },
4665
+ 'Last.fm': {
4666
+ 'domains': [
4667
+ 'lastfm.ru'
4668
+ ]
4669
+ },
4670
+ 'LiveJournal': {
4671
+ 'domains': [
4672
+ 'livejournal.ru'
4673
+ ]
4674
+ },
4675
+ 'Tumblr': {
4676
+ 'domains': [
4677
+ 'tumblr.com',
4678
+ 't.umblr.com'
4679
+ ]
4680
+ },
4681
+ 'Hacker News': {
4682
+ 'domains': [
4683
+ 'news.ycombinator.com'
4684
+ ]
4685
+ },
4686
+ 'Hocam.com': {
4687
+ 'domains': [
4688
+ 'hocam.com'
4689
+ ]
4690
+ },
4691
+ 'Delicious': {
4692
+ 'domains': [
4693
+ 'delicious.com'
4694
+ ]
4695
+ },
4696
+ 'Hyves': {
4697
+ 'domains': [
4698
+ 'hyves.nl'
4699
+ ]
4700
+ },
4701
+ 'Paper.li': {
4702
+ 'domains': [
4703
+ 'paper.li'
4704
+ ]
4705
+ },
4706
+ 'MoiKrug.ru': {
4707
+ 'domains': [
4708
+ 'moikrug.ru'
4709
+ ]
4710
+ }
4711
+ }
4712
+ };
4713
+ //# sourceMappingURL=referrer-data.js.map