From 5bf7c94b9a81c7922471b2fb885ed09413bf35c2 Mon Sep 17 00:00:00 2001 From: Nikolai Tschacher Date: Tue, 11 Jun 2019 22:01:27 +0200 Subject: [PATCH] new version --- README.md | 62 +- TODO.md | 2 +- examples/quickstart.js | 7 + examples/results/advanced.json | 3266 +++++++++++++++++++++++++++----- output.json | 3206 +++++++++++++++++++++++++++++++ package.json | 2 +- run.js | 57 +- src/node_scraper.js | 20 +- test/test_amazon.js | 4 - test/test_baidu.js | 2 - test/test_bing.js | 6 - test/test_duckduckgo.js | 4 - test/test_google.js | 6 - test/test_googleimage.js | 2 - test/test_queryargs_google.js | 2 - test/test_ticker_search.js | 6 - 16 files changed, 6128 insertions(+), 526 deletions(-) create mode 100644 output.json diff --git a/README.md b/README.md index 0f453f5..82c355c 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,13 @@ const se_scraper = require('se-scraper'); search_engine: 'google', keywords: ['news', 'se-scraper'], num_pages: 1, + // add some cool google search settings + google_settings: { + gl: 'us', // The gl parameter determines the Google country to use for the query. + hl: 'en', // The hl parameter determines the Google UI language to return results. + start: 0, // Determines the results offset to use, defaults to 0. + num: 100, // Determines the number of results to show, defaults to 10. Maximum is 100. + }, }; var scraper = new se_scraper.ScrapeManager(browser_config); @@ -286,14 +293,13 @@ Use **se-scraper** by calling it with a script such as the one below. ```js const se_scraper = require('se-scraper'); -let config = { +// those options need to be provided on startup +// and cannot give to se-scraper on scrape() calls +let browser_config = { // the user agent to scrape with user_agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36', // if random_user_agent is set to True, a random user agent is chosen - random_user_agent: true, - // how long to sleep between requests. a random sleep interval within the range [a,b] - // is drawn before every request. empty string for no sleeping. - sleep_range: '', + random_user_agent: false, // whether to start the browser in headless mode headless: true, // whether debug information should be printed @@ -304,11 +310,6 @@ let config = { debug_level: 1, // specify flags passed to chrome here chrome_flags: [], - // path to output file, data will be stored in JSON - output_file: 'examples/results/baidu.json', - // whether to prevent images, css, fonts from being loaded - // will speed up scraping a great deal - block_assets: false, // path to js module that extends functionality // this module should export the functions: // get_browser, handle_metadata, close_browser @@ -323,14 +324,6 @@ let config = { // socks5://78.94.172.42:1080 // http://118.174.233.10:48400 proxy_file: '', - // check if headless chrome escapes common detection techniques - // this is a quick test and should be used for debugging - test_evasion: false, - apply_evasion_techniques: true, - // log ip address data - log_ip_address: false, - // log http headers - log_http_headers: false, puppeteer_cluster_config: { timeout: 10 * 60 * 1000, // max timeout set to 10 minutes monitor: false, @@ -340,18 +333,43 @@ let config = { }; (async () => { + // scrape config can change on each scrape() call let scrape_config = { // which search engine to scrape - search_engine: 'bing', + search_engine: 'google', // an array of keywords to scrape keywords: ['cat', 'mouse'], - // alternatively you can specify a keyword_file. this overwrites the keywords array - keyword_file: '', // the number of pages to scrape for each keyword num_pages: 2, + + // OPTIONAL PARAMS BELOW: + google_settings: { + gl: 'us', // The gl parameter determines the Google country to use for the query. + hl: 'fr', // The hl parameter determines the Google UI language to return results. + start: 0, // Determines the results offset to use, defaults to 0. + num: 100, // Determines the number of results to show, defaults to 10. Maximum is 100. + }, + // instead of keywords you can specify a keyword_file. this overwrites the keywords array + keyword_file: '', + // how long to sleep between requests. a random sleep interval within the range [a,b] + // is drawn before every request. empty string for no sleeping. + sleep_range: '', + // path to output file, data will be stored in JSON + output_file: 'output.json', + // whether to prevent images, css, fonts from being loaded + // will speed up scraping a great deal + block_assets: false, + // check if headless chrome escapes common detection techniques + // this is a quick test and should be used for debugging + test_evasion: false, + apply_evasion_techniques: true, + // log ip address data + log_ip_address: false, + // log http headers + log_http_headers: false, }; - let results = await se_scraper.scrape(config, scrape_config); + let results = await se_scraper.scrape(browser_config, scrape_config); console.dir(results, {depth: null, colors: true}); })(); ``` diff --git a/TODO.md b/TODO.md index 8d682f7..e7ef781 100644 --- a/TODO.md +++ b/TODO.md @@ -42,7 +42,7 @@ ### 11.6.2019 - TODO: fix amazon scraping - - change api of remaining test cases + - change api of remaining test cases [done] - TODO: implement custom search engine parameters on scrape() ### TODO: diff --git a/examples/quickstart.js b/examples/quickstart.js index 516f3e9..139b3d8 100644 --- a/examples/quickstart.js +++ b/examples/quickstart.js @@ -10,6 +10,13 @@ const se_scraper = require('./../src/node_scraper.js'); search_engine: 'google', keywords: ['news', 'se-scraper'], num_pages: 1, + // add some cool google search settings + google_settings: { + gl: 'us', // The gl parameter determines the Google country to use for the query. + hl: 'en', // The hl parameter determines the Google UI language to return results. + start: 0, // Determines the results offset to use, defaults to 0. + num: 100, // Determines the number of results to show, defaults to 10. Maximum is 100. + }, }; var scraper = new se_scraper.ScrapeManager(browser_config); diff --git a/examples/results/advanced.json b/examples/results/advanced.json index 5380165..382f795 100644 --- a/examples/results/advanced.json +++ b/examples/results/advanced.json @@ -1,812 +1,3206 @@ { - "good news": { + "cat": { "1": { - "time": "Thu, 07 Mar 2019 14:50:12 GMT", - "num_results": "Yaklaşık 13.140.000.000 sonuç bulundu (0,56 saniye) ", + "time": "Tue, 11 Jun 2019 19:59:14 GMT", + "num_results": "Environ 4 280 000 000 résultats (0,56 secondes) ", "no_results": false, "effective_query": "", "results": [ { - "link": "https://tureng.com/tr/turkce-ingilizce/good%20news", - "title": "Tureng - good news - Türkçe İngilizce Sözlükhttps://tureng.com/tr/turkce-ingilizce/good%20newsÖnbellek", - "snippet": "İngilizce Türkçe online sözlük Tureng. Kelime ve terimleri çevir ve farklı aksanlarda sesli dinleme. good news erim announce good news müjdelemek good ...", - "visible_link": "https://tureng.com/tr/turkce-ingilizce/good%20news", + "link": "https://fr.wikipedia.org/wiki/CAT", + "title": "CAT — Wikipédiahttps://fr.wikipedia.org/wiki/CATEn cachePages similaires", + "snippet": "Le sigle ou l'acronyme CAT peut signifier : cellule anti-terroriste, dans les journées successives du feuilleton télévisé 24 heures chrono ;; Central Africa Time (en ...", + "visible_link": "https://fr.wikipedia.org/wiki/CAT", "date": "", "rank": 1 }, { - "link": "https://tureng.com/tr/turkce-ingilizce/a%20good%20news", - "title": "Tureng - a good news - Türkçe İngilizce Sözlükhttps://tureng.com/tr/turkce-ingilizce/a%20good%20newsÖnbellek", - "snippet": "İngilizce Türkçe online sözlük Tureng. Kelime ve terimleri çevir ve farklı aksanlarda sesli dinleme. a good news güzel bir haber give somebody a piece of good ...", - "visible_link": "https://tureng.com/tr/turkce-ingilizce/a%20good%20news", + "link": "https://en.wikipedia.org/wiki/Cat", + "title": "Cat - Wikipediahttps://en.wikipedia.org/wiki/CatEn cachePages similairesTraduire cette page", + "snippet": "The cat (Felis catus) is a small carnivorous mammal. It is the only domesticated species in the family Felidae and often referred to as the domestic cat to ...", + "visible_link": "https://en.wikipedia.org/wiki/Cat", "date": "", "rank": 2 }, { - "link": "https://www.goodnewsnetwork.org/", - "title": "Good News Network: Good News, Inspiring, Positive Storieshttps://www.goodnewsnetwork.org/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "The #1 source for good news! For 20 years, our positive news from around the world has uplifted and inspired millions to become more optimistic.", - "visible_link": "https://www.goodnewsnetwork.org/", + "link": "https://www.cat.com/", + "title": "Cat | global-selector | Caterpillarhttps://www.cat.com/En cacheTraduire cette page", + "snippet": "Genuine enabler of sustainable world progress and opportunity, defined by the brand attributes of global leadership, innovation and sustainability.", + "visible_link": "https://www.cat.com/", "date": "", "rank": 3 }, { - "link": "https://www.msn.com/en-us/news/good-news", - "title": "Good News - MSN.comhttps://www.msn.com/en-us/news/good-newsÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Teacher wins $10K for reading fine print in insurance policy. Associated Press Logo Associated Press News · Good Samaritan donates new roof to Gaston ...", - "visible_link": "https://www.msn.com/en-us/news/good-news", + "link": "https://www.purina.com/cats/cat-breeds", + "title": "Cat Breed Collection | Purinahttps://www.purina.com › CatsEn cachePages similairesTraduire cette page", + "snippet": "Trying to decide what type of cat is right for you and your family? Browse through our list of popular cat breeds, and find the best breed for your lifestyle.", + "visible_link": "https://www.purina.com › Cats", "date": "", "rank": 4 }, { - "link": "https://canoe.com/category/news/good-news", - "title": "Good News | Latest Positive & Inspiring Stories | Canoehttps://canoe.com/category/news/good-newsBu sayfanın çevirisini yap", - "snippet": "Would you like to read some good news? Canoe has Good News for you! Read only positive, inspiring news from Canada and around the world.", - "visible_link": "https://canoe.com/category/news/good-news", + "link": "https://www.petfinder.com/cats/", + "title": "Cats: Adoption, Bringing A Cat Home and Care - Petfinderhttps://www.petfinder.com/cats/En cachePages similairesTraduire cette page", + "snippet": "Everything you need to know about how to adopt a cat, bringing your new cat home, cat health and care and more!", + "visible_link": "https://www.petfinder.com/cats/", "date": "", "rank": 5 }, { - "link": "https://www.positive.news/", - "title": "Home - Positive News - Positive Newshttps://www.positive.news/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Keeping the mountains alive: saving the Apuan Alps. In Italy, people are reclaiming the once-magnificent Apuan Alps. They are trying to put a stop to destructive ...", - "visible_link": "https://www.positive.news/", + "link": "https://www.petco.com/shop/en/petcostore/category/cat", + "title": "Cat: Cat Food, Litter Boxes and Accessories | Petcohttps://www.petco.com/shop/en/petcostore/category/catEn cacheTraduire cette page", + "snippet": "Shop for cat and kitten supplies and accessories including cat food, scratching posts, climbing towers, litter boxes and more available at Petco.", + "visible_link": "https://www.petco.com/shop/en/petcostore/category/cat", "date": "", "rank": 6 }, { - "link": "https://www.today.com/news/good-news", - "title": "Good News | TODAY - Today Showhttps://www.today.com/news/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Inspirational, uplifting, funny and happy news, photos, videos and more.", - "visible_link": "https://www.today.com/news/good-news", + "link": "http://www.vetstreet.com/cats/", + "title": "Complete Guide to Caring for Cats | Cat Breed Information, Cat ...www.vetstreet.com/cats/En cachePages similairesTraduire cette page", + "snippet": "Your cat's online owners manual, featuring articles about breed information, cat selection, training, grooming and care for cats and kittens.", + "visible_link": "www.vetstreet.com/cats/", "date": "", "rank": 7 }, { - "link": "https://www.sunnyskyz.com/positive-good-news.php?week=pastweek", - "title": "Good News | Positive News Stories | Happy News - Sunny Skyzhttps://www.sunnyskyz.com/positive-good-news.php?week...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Want some Good news for a change? View only positive, uplifting and inspiring news stories from around the world.", - "visible_link": "https://www.sunnyskyz.com/positive-good-news.php?week...", + "link": "https://www.webmd.com/pets/cats/default.htm", + "title": "Cat Health Center | Cat Care and Information from WebMDhttps://www.webmd.com › Healthy CatsEn cacheTraduire cette page", + "snippet": "WebMD veterinary experts provide comprehensive information about cat health care, offer nutrition and feeding tips, and help you identify illnesses in cats.", + "visible_link": "https://www.webmd.com › Healthy Cats", "date": "", "rank": 8 }, { - "link": "https://www.huffpost.com/impact/topic/good-news", - "title": "Good News | HuffPosthttps://www.huffpost.com/impact/topic/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Jeff Allen rewarded Dave Cochran for his random act of kindness with tickets to next Sunday's AFC Championship Game against the New England Patriots.", - "visible_link": "https://www.huffpost.com/impact/topic/good-news", + "link": "https://www.azhumane.org/adopt/find-a-pet/adopt-a-cat/", + "title": "Adopt a Cat - Kitten Adoptions - Arizona Humane Societyhttps://www.azhumane.org/adopt/find-a-pet/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Looking for cats and kittens for adoption? AHS has adorable, adoptable kitties waiting to meet you. We can help you find the perfect kitten or cat.", + "visible_link": "https://www.azhumane.org/adopt/find-a-pet/adopt-a-cat/", "date": "", "rank": 9 }, { - "link": "https://www.boredpanda.com/good-news/", - "title": "Good News | Bored Pandahttps://www.boredpanda.com/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "They say that no beauty shines brighter than that of a good heart. After all, good deeds always pay off! Amarildo Silva is certainly one with a good heart, as the.", - "visible_link": "https://www.boredpanda.com/good-news/", + "link": "https://www.austinpetsalive.org/adopt/cats", + "title": "Available Cats - Austin Pets Alive!https://www.austinpetsalive.org › AdoptEn cacheTraduire cette page", + "snippet": "Available Cats Check out all of the cats in APA!'s care who are looking for their forever home! Use the search tool below to find your purrfect match.", + "visible_link": "https://www.austinpetsalive.org › Adopt", "date": "", "rank": 10 }, { - "link": "https://www.goodnews.ch/", - "title": "Home - Good Newshttps://www.goodnews.ch/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good News Events. März. Godsmack. 6. März 2019 · Jaakko Eino Kalevi. 6. März 2019 · AUSVERKAUFT - Slash. 7. März 2019 · 3 Events. Catalyst & Velvet Two ...", - "visible_link": "https://www.goodnews.ch/", + "link": "https://www.petsmart.com/cat/", + "title": "Cat Supplies: Kitten Accessories & Products | PetSmarthttps://www.petsmart.com/cat/En cacheTraduire cette page", + "snippet": "With the latest cat supplies and accessories, including beds, bowls and litter boxes, PetSmart makes shopping simple. From kittens to adult cats, you'll find ...", + "visible_link": "https://www.petsmart.com/cat/", "date": "", "rank": 11 }, { - "link": "https://www.telegraph.co.uk/good-news/", - "title": "A bit of good news - The Telegraphhttps://www.telegraph.co.uk/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "To that end, the Telegraph has teamed with Seven Seas to bring you uplifting, feel-good news stories each day. Take a few minutes to read something happy.", - "visible_link": "https://www.telegraph.co.uk/good-news/", + "link": "https://catadoptionteam.org/adopt/", + "title": "Adopt a Cat in Portland | Cats For Adoptionhttps://catadoptionteam.org/adopt/En cacheTraduire cette page", + "snippet": "Whether you want to adopt a playmate or a snuggle buddy, the cats and kittens for adoption from CAT are ready to join your family. Let the matchmaking begin!", + "visible_link": "https://catadoptionteam.org/adopt/", "date": "", "rank": 12 }, { - "link": "https://www.foxnews.com/category/good-news", - "title": "GOOD NEWS | Fox Newshttps://www.foxnews.com/category/good-newsBu sayfanın çevirisini yap", - "snippet": "Good News. ... before a performance of the Chicken Dance, Jeff Harville knew just what to do. Bull sadly deflates yoga ball while playing, gets new one. just in ...", - "visible_link": "https://www.foxnews.com/category/good-news", + "link": "https://mashable.com/category/cats/", + "title": "Cats - Mashablehttps://mashable.com/category/cats/En cacheTraduire cette page", + "snippet": "Cats are the furry felines we all know and love... even if they're a little aloof. The term can refer to house cats -- smaller, domesticated mammals -- or wild cats, ...", + "visible_link": "https://mashable.com/category/cats/", "date": "", "rank": 13 }, { - "link": "https://timesofindia.indiatimes.com/goodnews/48953550.cms", - "title": "Good News Stories, Inspiring News and Positive Stories | Times of Indiahttps://timesofindia.indiatimes.com › Good NewsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Feel happy by reading the Good News stories from around the world at Times of India of Good News section containing inspiring stories, positive, uplifting and ...", - "visible_link": "https://timesofindia.indiatimes.com › Good News", - "date": "", + "link": "https://www.nationalgeographic.com/animals/2019/04/cats-recognize-names-dogs-pets/", + "title": "Cats know their names—why it's harder for them than dogshttps://www.nationalgeographic.com/.../cats-recognize-names-dogs...En cacheTraduire cette page", + "snippet": "4 avr. 2019 - New research in Japan's cat cafes reveals our pet felines are more attuned to us than we thought.", + "visible_link": "https://www.nationalgeographic.com/.../cats-recognize-names-dogs...", + "date": "4 avr. 2019 - ", "rank": 14 }, { - "link": "https://eksisozluk.com/no-news-is-good-news--473881", - "title": "no news is good news - ekşi sözlükhttps://eksisozluk.com/no-news-is-good-news--473881ÖnbellekBenzer", - "snippet": "'birinden haber alamadıysanız, merak etmeyin telaşa kapılmayın sakin olun, eğer kötü bişey olsaydı zaten duyardınız' yorumunu yapabileceğiniz, benimsenmesi ...", - "visible_link": "https://eksisozluk.com/no-news-is-good-news--473881", + "link": "http://placerspca.org/adopt-home/cats/", + "title": "Adoptable Cats at the Placer SPCAplacerspca.org/adopt-home/cats/En cacheTraduire cette page", + "snippet": "View the adoptable cats at the Placer SPCA. This page shows all available cats across all three of our adoption centers.", + "visible_link": "placerspca.org/adopt-home/cats/", "date": "", "rank": 15 }, { - "link": "https://www.seslisozluk.net/good-news-nedir-ne-demek/", - "title": "Sesli Sözlük - good newshttps://www.seslisozluk.net/good-news-nedir-ne-demek/Önbellek", - "snippet": "good news çevirisi anlamı nedir nasıl telaffuz ediliz.", - "visible_link": "https://www.seslisozluk.net/good-news-nedir-ne-demek/", - "date": "", + "link": "https://www.theguardian.com/film/2019/jun/11/nicole-kidman-animal-rights-ethics-hiking-cats-backpack", + "title": "Cat lovers question ethics of Nicole Kidman hiking with pets in ...https://www.theguardian.com/.../nicole-kidman-animal-rights-ethics-hiking-cats-backpac...", + "snippet": "Il y a 5 heures - The actor's revelations that she often goes for walks toting cats – and that she ate ants – have been met with scepticism by animal rights groups.", + "visible_link": "https://www.theguardian.com/.../nicole-kidman-animal-rights-ethics-hiking-cats-backpac...", + "date": "Il y a 5 heures - ", "rank": 16 }, { - "link": "https://tr.bab.la/sozluk/ingilizce-turkce/good-news", - "title": "good news - Türkçe Çeviri – bab.la İngilizce-Türkçe Sözlükhttps://tr.bab.la/sozluk/ingilizce-turkce/good-newsÖnbellek", - "snippet": "Ücretsiz İngilizce-Türkçe sözlükte 'good news' ın karşılığı ve başka pek çok Türkçe çeviri.", - "visible_link": "https://tr.bab.la/sozluk/ingilizce-turkce/good-news", + "link": "https://www.caterpillar.com/", + "title": "Caterpillar | Caterpillarhttps://www.caterpillar.com/En cacheTraduire cette page", + "snippet": "Caterpillar Inc. Company information, investor information, news and careers. Cat products and services. Dow Jones Top 30. NYSE Symbol CAT.", + "visible_link": "https://www.caterpillar.com/", "date": "", "rank": 17 }, { - "link": "https://goodnewsmag.org/", - "title": "Good News Magazine - Leading United Methodists to a Faithful Futurehttps://goodnewsmag.org/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "... a fresh burst of color beckons people from near and far. A new United Methodist church in Gouabo, Côte d'Ivoire – painted an almost-iridescent green – fills .", - "visible_link": "https://goodnewsmag.org/", + "link": "https://www.jaxhumane.org/adopt/available-pets/humane-society-pets/humanesocietypetscatsnew/", + "title": "Adopt A Cat or Kitten | Jacksonville Humane Societyhttps://www.jaxhumane.org/adopt/.../humanesocietypetscatsnew/En cacheTraduire cette page", + "snippet": "The Jacksonville Humane Society has a wide variety of cats and kittens, of all ages and colors, waiting to meet you at 8464 Beach Blvd. All pets are.", + "visible_link": "https://www.jaxhumane.org/adopt/.../humanesocietypetscatsnew/", "date": "", "rank": 18 }, { - "link": "http://goodnewsshared.com/", - "title": "Good News Shared - uplifting charitable stories to inspire yougoodnewsshared.com/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Good News Shared highlights positive charitable stories from around the world. Read about inspirational people and amazing animals to enhance your mood.", - "visible_link": "goodnewsshared.com/", + "link": "https://arlgp.org/adopt/cats/", + "title": "Cats - Animal Refuge League of Greater Portland - Maine Animal Shelterhttps://arlgp.org › AdoptEn cacheTraduire cette page", + "snippet": "Listed below are our currently available cats. To learn more about the adoption process, please visit our ADOPT information page. We look forward to meeting ...", + "visible_link": "https://arlgp.org › Adopt", "date": "", "rank": 19 }, { - "link": "https://www.sagoodnews.co.za/", - "title": "SA Good News: The Home Of Great South African Newshttps://www.sagoodnews.co.za/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "SA Good News is a news website that highlights the positive developments in South Africa.", - "visible_link": "https://www.sagoodnews.co.za/", - "date": "", + "link": "https://www.boulderhumane.org/cats/", + "title": "Cats – Humane Society of Boulder Valleyhttps://www.boulderhumane.org/cats/En cacheTraduire cette page", + "snippet": "24 mai 2019 - June is Adopt a Shelter Cat month! All cat (ages 6 months and older) adoption fees are waived June 1 – 30. Sort by Age Sort by Breed", + "visible_link": "https://www.boulderhumane.org/cats/", + "date": "24 mai 2019 - ", "rank": 20 }, { - "link": "https://goodnews.click/", - "title": "Good Newshttps://goodnews.click/", - "snippet": "Your personal news stream. ... Good News helps you discover and share the latest news on your favorite topics from the sources you trust. OK. I forgot my ...", - "visible_link": "https://goodnews.click/", + "link": "https://hsnaples.org/adopt-a-cat/", + "title": "Adopt A Cat | Humane Society Naples No-Kill Animal Shelterhttps://hsnaples.org/adopt-a-cat/En cacheTraduire cette page", + "snippet": "There are many adoptable cats available at the Humane Society Naples. A non-profit, no kill animal shelter in Collier County. Adopt a Cat Today!", + "visible_link": "https://hsnaples.org/adopt-a-cat/", "date": "", "rank": 21 }, { - "link": "https://www.abc.net.au/news/good-news/", - "title": "Good News - ABC News (Australian Broadcasting Corporation)https://www.abc.net.au/news/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Country town's Great Quack Quest to attract more doctors ... A small town in south-west New South Wales hopes a music video featuring jazz hands and a ...", - "visible_link": "https://www.abc.net.au/news/good-news/", + "link": "https://maxfund.org/Adopt-a-Cat", + "title": "Adopt a Cat - MaxFundhttps://maxfund.org/Adopt-a-CatEn cacheTraduire cette page", + "snippet": "MaxFund has cats of all ages available for adoption in Denver, come visit our cat shelter and check out all of our furry feline friends.", + "visible_link": "https://maxfund.org/Adopt-a-Cat", "date": "", "rank": 22 }, { - "link": "https://www.cnn.com/2019/03/02/us/the-good-stuff-march-2-trnd/index.html", - "title": "The week in good news: A record-breaking baby, a giant sloth and ...https://www.cnn.com/2019/03/02/us/the-good-stuff-march-2-trnd/index.html", - "snippet": "3 gün önce - Pour yourself a little of whatever beverage you prefer, and let this week's crop of good news soothe your soul.", - "visible_link": "https://www.cnn.com/2019/03/02/us/the-good-stuff-march-2-trnd/index.html", - "date": "3 gün önce - ", + "link": "https://finance.yahoo.com/quote/CAT/", + "title": "Caterpillar, Inc. (CAT) Stock Price, Quote, History & Newshttps://finance.yahoo.com/quote/CAT/En cacheTraduire cette page", + "snippet": "Find the latest Caterpillar, Inc. (CAT) stock quote, history, news and other vital information to help you with your stock trading and investing.", + "visible_link": "https://finance.yahoo.com/quote/CAT/", + "date": "", "rank": 23 }, { - "link": "https://www.news.com.au/lifestyle/real-life/good-news", - "title": "Good News | Real Life | news.com.au — Australia's #1 news sitehttps://www.news.com.au/lifestyle/real-life/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "An uplifting source for positive, heart-warming news. For more inspiring Good News visit News.com.au.", - "visible_link": "https://www.news.com.au/lifestyle/real-life/good-news", + "link": "https://www.aspca.org/pet-care/cat-care/general-cat-care", + "title": "General Cat Care | ASPCAhttps://www.aspca.org/pet-care/cat-care/general-cat-careEn cachePages similairesTraduire cette page", + "snippet": "Get a host of handy information about your feline companion in our general cat care guide. It also comes in an easy-to-print PDF for tacking on your fridge and ...", + "visible_link": "https://www.aspca.org/pet-care/cat-care/general-cat-care", "date": "", "rank": 24 }, { - "link": "https://dictionary.cambridge.org/tr/s%C3%B6zl%C3%BCk/ingilizce/no-news-is-good-news", - "title": "NO NEWS IS GOOD NEWS | Cambridge İngilizce Sözlüğü'ndeki anlamıhttps://dictionary.cambridge.org/tr/sözlük/ingilizce/no-news-is-good-newsÖnbellek", - "snippet": "no news is good news anlam, tanım, no news is good news nedir: 1. said to make someone feel less worried when they have not received information about ...", - "visible_link": "https://dictionary.cambridge.org/tr/sözlük/ingilizce/no-news-is-good-news", + "link": "https://www.reddit.com/r/cats/", + "title": "Cats - Reddithttps://www.reddit.com/r/cats/En cachePages similairesTraduire cette page", + "snippet": "Please do us mods a favor and if you report something for \"Claiming ownership of another person's cat\", make a post in the post you're reporting linking to the ...", + "visible_link": "https://www.reddit.com/r/cats/", "date": "", "rank": 25 }, { - "link": "https://www.news24.com/Tags/Topics/good_news", - "title": "good news on News24https://www.news24.com/Tags/Topics/good_newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "good news articles on News24. ... There is a new movement in South Africa led by \"climate kids\" who will join a global school strike to call for climate action from ...", - "visible_link": "https://www.news24.com/Tags/Topics/good_news", + "link": "https://www.ikea.com/us/en/catalog/categories/departments/pets/39569/", + "title": "Cats - IKEAhttps://www.ikea.com/us/en/catalog/categories/departments/.../3956...En cacheTraduire cette page", + "snippet": "Whether you need a comfy cat bed, a fun toy or just a new scoop for the litter tray, with the LURVIG product range we have you covered. There are all the basic ...", + "visible_link": "https://www.ikea.com/us/en/catalog/categories/departments/.../3956...", "date": "", "rank": 26 }, { - "link": "https://www.booking.com/hotel/rw/good-news-guest-house.tr.html", - "title": "Good News Guest House (Ruanda Kigali) - Booking.comhttps://www.booking.com › Ruanda › Kigali otelleriÖnbellek", - "snippet": "Kigali Uluslararası Havaalanı'na 6 kilometre mesafede yer alan Good News Guest House, ücretsiz Wi-Fi erişimine sahip konaklama birimleriyle hizmet...", - "visible_link": "https://www.booking.com › Ruanda › Kigali otelleri", + "link": "https://www.adoptapet.com/cat-adoption", + "title": "Cat Adoption :: Search by color, age, breed, location and more.https://www.adoptapet.com/cat-adoptionEn cacheTraduire cette page", + "snippet": "Cat Adoption - Save a life, adopt a cat. We are a non-profit helping promote cat adoption by working with local cat rescues.", + "visible_link": "https://www.adoptapet.com/cat-adoption", "date": "", "rank": 27 }, { - "link": "https://www.9news.com.au/good-news", - "title": "Good news headlines - 9Newshttps://www.9news.com.au/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Beagle and baby possum's unlikely friendship after heartbreak. After losing her litter of puppies at birth, Molly the beagle was having a 'ruff' time. good news ...", - "visible_link": "https://www.9news.com.au/good-news", + "link": "https://www.animalhumanesociety.org/adoption?f%5B0%5D=animal_type%3ACat", + "title": "Cats & Kittens - Animal Humane Societyhttps://www.animalhumanesociety.org/adoption?...type%3ACatEn cacheTraduire cette page", + "snippet": "Breadcrumb. Home; Adoption; Adoptable Animals · Cats & Kittens ... All Types, Dog · Rabbits & Small Animals, Cat. Facet Animal Type. All Sexes · Male · Female.", + "visible_link": "https://www.animalhumanesociety.org/adoption?...type%3ACat", "date": "", "rank": 28 }, { - "link": "http://www.sanko.k12.tr/the_good_news_of_sanko-311-5-1", - "title": "The Good News of SANKO - Özel Sanko Okullarıwww.sanko.k12.tr/the_good_news_of_sanko-311-5-1Önbellek", - "snippet": "The Good News of SANKO. Ana Sayfa; /; Yayınlarımız; /; The Good News of SANKO; /. Year-1. The Good News of SANKO. © Copyright Özel Sanko Okulları, Tüm ...", - "visible_link": "www.sanko.k12.tr/the_good_news_of_sanko-311-5-1", + "link": "https://www.seattlehumane.org/adoption/cats/", + "title": "Cats – Seattle Humanehttps://www.seattlehumane.org/adoption/cats/En cacheTraduire cette page", + "snippet": "We always have an abundance of lovable cats ready for adoption. In fact, we've got one just purrfect for you. Just click on a furry face or name below to learn ...", + "visible_link": "https://www.seattlehumane.org/adoption/cats/", "date": "", "rank": 29 }, { - "link": "https://www.huffingtonpost.ca/news/good-news/", - "title": "Good News | HuffPost Canadahttps://www.huffingtonpost.ca/news/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "B.C., Those Were Some Amazing Good News Stories. WIN-Initiative via Getty Images. Calgary Cab Driver Returns $10,000 To Passenger · William Alcopra.", - "visible_link": "https://www.huffingtonpost.ca/news/good-news/", + "link": "http://www.acctphilly.org/adopt/available/cats/", + "title": "Adoptable Cats | ACCT Phillywww.acctphilly.org/adopt/available/cats/En cachePages similairesTraduire cette page", + "snippet": "Most of our cats are located at our Main Shelter. However, we also have cats at our Everyday Adoption Center, several Offsite Locations and in foster care that ...", + "visible_link": "www.acctphilly.org/adopt/available/cats/", "date": "", "rank": 30 }, { - "link": "https://www.jw.org/en/publications/books/good-news-from-god/", - "title": "Good News From God! - jw.orghttps://www.jw.org/en/publications/books/good-news-from-god/ÖnbellekBenzer", - "snippet": "What is the good news from God? Why can we believe it? This brochure answers common Bible questions.", - "visible_link": "https://www.jw.org/en/publications/books/good-news-from-god/", + "link": "https://www.thenoahcenter.org/what-we-do/adopt_a_pet/adopt_a_cat.html", + "title": "Adopt a Cat | Stanwood - Noahhttps://www.thenoahcenter.org/what-we-do/.../adopt_a_cat.htmlEn cacheTraduire cette page", + "snippet": "Search through our available cats and kittens to find your newest furry friend! Click photos for more details. Some of our available cats are housed at off-site ...", + "visible_link": "https://www.thenoahcenter.org/what-we-do/.../adopt_a_cat.html", "date": "", "rank": 31 }, { - "link": "https://www.nytimes.com/spotlight/the-week-in-good-news", - "title": "The Week in Good News - The New York Timeshttps://www.nytimes.com/spotlight/the-week-in-good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "The Week in Good News: Katelyn Ohashi, a 'Rail Delay' Scarf, a Giant Ice Disk. Start your weekend with a smile, or at least a lighter heart. January 17, 2019 By ...", - "visible_link": "https://www.nytimes.com/spotlight/the-week-in-good-news", + "link": "https://www.sfspca.org/adoptions/cats", + "title": "Adopt a Cat or Kitten | Cuddly Companions Ready for a Loving Home ...https://www.sfspca.org/adoptions/catsEn cachePages similairesTraduire cette page", + "snippet": "Visit our Adoption Center to find a cat or kitten and we'll work with you to ensure the right fit. All of our animals have received a pre-adoption veterinary exam and ...", + "visible_link": "https://www.sfspca.org/adoptions/cats", "date": "", "rank": 32 }, { - "link": "https://www.mynews13.com/fl/orlando/community/good-news", - "title": "Community | Good News | Spectrum News 13https://www.mynews13.com/fl/orlando/.../good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Tired of crime, taxes and accidents? If so, bookmark our Good News page for stories that will make you feel good about the world.", - "visible_link": "https://www.mynews13.com/fl/orlando/.../good-news", + "link": "https://www.catsthemusical.com/", + "title": "Cats the Musical • Official Website and Ticketshttps://www.catsthemusical.com/En cacheTraduire cette page", + "snippet": "Andrew Lloyd Webber's record-breaking, award-winning, family favourite West End and Broadway musical CATS - book your tickets today!", + "visible_link": "https://www.catsthemusical.com/", "date": "", "rank": 33 }, { - "link": "http://www.goodnewsfinland.com/", - "title": "Good News from Finlandwww.goodnewsfinland.com/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Good News from Finland is a news service that covers positive and globally interesting company, business and innovation-related news topics from Finland.", - "visible_link": "www.goodnewsfinland.com/", + "link": "http://www.nehumanesociety.org/adopt/cats/", + "title": "Cats and Kittens - Nebraska Humane Societywww.nehumanesociety.org/adopt/cats/En cacheTraduire cette page", + "snippet": "Cats and Kittens. Cats and kittens currently available for adoption at the Nebraska Humane Society. ... Adopt a Cat. Any Gender, Male ... Show PetSmart Cats ...", + "visible_link": "www.nehumanesociety.org/adopt/cats/", "date": "", "rank": 34 }, { - "link": "https://www.poynter.org/reporting-editing/2019/good-news-these-newspapers-added-a-print-section-on-good-news/", - "title": "Good news: These newspapers added a print section on good news ...https://www.poynter.org/.../good-news-these-newspapers-ad...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "1 gün önce - The Philadelphia Inquirer got an idea from the (Minneapolis) Star Tribune – focus on the good stuff, too. In April, the Inquirer will launch a new ...", - "visible_link": "https://www.poynter.org/.../good-news-these-newspapers-ad...", - "date": "1 gün önce - ", + "link": "https://www.arl-iowa.org/adopt/find-a-pet/pet-list/cat/", + "title": "Adopt a Cat | Animal Rescue League of Iowahttps://www.arl-iowa.org/adopt/find-a-pet/pet-list/cat/En cacheTraduire cette page", + "snippet": "Whisker Male / 11 years. ARL Main - Purriatrics Precious -- Bonded Buddy With Frisky Precious -- Bonded Buddy With Frisky Female / 9 years. Shelter Cat ...", + "visible_link": "https://www.arl-iowa.org/adopt/find-a-pet/pet-list/cat/", + "date": "", "rank": 35 }, { - "link": "https://goodnewsventures.com/", - "title": "Good News Ventures: Homehttps://goodnewsventures.com/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "At Good News Ventures, we invest in early stage technology companies founded by true grit entrepreneurs. We back passionate and determined founders as ...", - "visible_link": "https://goodnewsventures.com/", + "link": "https://www.hawaiianhumane.org/cat-adoptions/", + "title": "Cat Adoptions | Hawaiian Humane Societyhttps://www.hawaiianhumane.org/cat-adoptions/En cacheTraduire cette page", + "snippet": "Cat Adoptions ... Domestic Shorthair/Mix. 5 months. Cat House Green. Photo · Avery. Cat. Male. Domestic Shorthair/Mix. 1 year 1 month. Special Event. Photo.", + "visible_link": "https://www.hawaiianhumane.org/cat-adoptions/", "date": "", "rank": 36 }, { - "link": "https://www.bible.com/tr/versions/296-gnb-good-news-bible", - "title": "Good News Bible (GNB) - Kutsal Kitap Uygulamasını ücretsiz indirin ...https://www.bible.com/tr/versions/296-gnb-good-news-bibleÖnbellek", - "snippet": "Good News Bible (GNB) - 900 ve daha birçok dilde yüzlerce Kutsal Kitap tercümesi bulunduğunuz her yerde elinizin altında. Şimdi indirin ya da çevrimiçi ...", - "visible_link": "https://www.bible.com/tr/versions/296-gnb-good-news-bible", + "link": "https://theoatmeal.com/tag/cats", + "title": "Comics :: Cats - The Oatmealhttps://theoatmeal.com/tag/catsEn cacheTraduire cette page", + "snippet": "Comics :: Cats. Why now, cat? AT-AT versus Cat-Cat. View ... View · Bro Cat would like to hang out. View · Is your cat plotting to kill you? This app will scan your ...", + "visible_link": "https://theoatmeal.com/tag/cats", "date": "", "rank": 37 }, { - "link": "https://rendcollective.com/", - "title": "Rend Collective | Good Newshttps://rendcollective.com/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Rend Collective is an Irish folk worship band from Northern Ireland. \"Good News\" hits the streets on January 19th, featuring the hit single 'Rescuer.'", - "visible_link": "https://rendcollective.com/", + "link": "https://www.kshumane.org/adopt/cats.html", + "title": "Cat Adoption | Kansas Humane Society | Animal Shelterhttps://www.kshumane.org/adopt/cats.htmlEn cacheTraduire cette page", + "snippet": "These cats are ready for adoption at Kansas Humane Society. Note the cats name and ID number to assist us in locating them for you. Cats listed behind the ...", + "visible_link": "https://www.kshumane.org/adopt/cats.html", "date": "", "rank": 38 }, { - "link": "https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/", - "title": "Goodnews - Slider Revolutionhttps://revolution.themepunch.com/goodnews-responsive-w...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Slider Revolution can also be used to create a Responsive WordPress Theme with an intuitive, visual editor. Find out what else Slider Revolution can do!", - "visible_link": "https://revolution.themepunch.com/goodnews-responsive-w...", + "link": "https://www.banfield.com/pet-healthcare/optimum-wellness-plans/cat-wellness-plans", + "title": "Cat Wellness Plans - Banfield Pet Hospitalhttps://www.banfield.com/pet-healthcare/.../cat-wellness-plansEn cachePages similairesTraduire cette page", + "snippet": "Cat wellness plans are preventive pet healthcare plans designed to provide excellent and affordable veterinary care throughout your cat's life. Learn more.", + "visible_link": "https://www.banfield.com/pet-healthcare/.../cat-wellness-plans", "date": "", "rank": 39 }, { - "link": "https://www.newyorker.com/news/our-columnists/the-good-news-about-a-green-new-deal", - "title": "The Good News About a Green New Deal | The New Yorkerhttps://www.newyorker.com/news/our.../the-good-news-about-a-green-new-deal", - "snippet": "3 gün önce - Rapidly advancing technology and the falling costs of clean energy make the Green New Deal's goal of transforming the U.S. economy to zero ...", - "visible_link": "https://www.newyorker.com/news/our.../the-good-news-about-a-green-new-deal", - "date": "3 gün önce - ", + "link": "https://en.wiktionary.org/wiki/cat", + "title": "cat - Wiktionaryhttps://en.wiktionary.org/wiki/catEn cachePages similairesTraduire cette page", + "snippet": "From Middle English cat, catte, from Old English catt (“male cat”), catte ... Synonyms: puss, pussy, malkin, kitty, pussy-cat, grimalkin; see also Thesaurus:cat.", + "visible_link": "https://en.wiktionary.org/wiki/cat", + "date": "", "rank": 40 }, { - "link": "https://www.wral.com/goodnews", - "title": "Good News Coverage :: WRAL.comhttps://www.wral.com/goodnewsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Get the latest articles, videos, photo galleries and blogposts related to WRAL's coverage of good news.", - "visible_link": "https://www.wral.com/goodnews", + "link": "https://www.heartofthevalleyshelter.org/pets/cats/", + "title": "Cats - Heart of the Valley Animal Shelterhttps://www.heartofthevalleyshelter.org/pets/cats/En cacheTraduire cette page", + "snippet": "Cat. Female/Spayed. Domestic Shorthair/Mix. 7 years 9 months. Cat Adopt. Photo. Lucy Love. 21558988. Cat. Female/Spayed. Domestic Shorthair/Mix. 12 years ...", + "visible_link": "https://www.heartofthevalleyshelter.org/pets/cats/", "date": "", "rank": 41 }, { - "link": "https://en.wikipedia.org/wiki/Great_News", - "title": "Great News - Wikipediahttps://en.wikipedia.org/wiki/Great_NewsÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Great News is an American sitcom television series. It was created and written by Tracey Wigfield, and co-executive produced with Tina Fey, Robert Carlock, and ...", - "visible_link": "https://en.wikipedia.org/wiki/Great_News", + "link": "https://chrome.google.com/webstore/detail/meow-the-cat-pet/ejgnolahdlcimijhloboakpjogbfdkkp", + "title": "Meow, The Cat Pet - Google Chromehttps://chrome.google.com/...cat.../ejgnolahdlcimijhloboakpjogbfd...En cacheTraduire cette page", + "snippet": "A sweet game about Meow, A virtual Cat pet that walks on your screen while you're browsing the web.", + "visible_link": "https://chrome.google.com/...cat.../ejgnolahdlcimijhloboakpjogbfd...", "date": "", "rank": 42 }, { - "link": "https://www.biblestudytools.com/gnt/", - "title": "Read the Good News Translation Free Online - Bible Study Toolshttps://www.biblestudytools.com/gnt/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "This modern version of the Bible in mid-20th century American English, prepared by a group of American biblical scholars, is also known as the Good News ...", - "visible_link": "https://www.biblestudytools.com/gnt/", + "link": "https://spcawake.org/adopt/adopt-a-cat/", + "title": "Adopt a Cat - Cats | SPCA of Wake Countyhttps://spcawake.org/adopt/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Come see us! We can't wait for you to visit us at our adoption center! All of our adoptable pets can be viewed on our website, but there's nothing like a face to ...", + "visible_link": "https://spcawake.org/adopt/adopt-a-cat/", "date": "", "rank": 43 }, { - "link": "https://www.mlive.com/weather/2019/03/disrupted-polar-vortex-is-getting-back-together-thats-good-news-for-spring.html", - "title": "Disrupted Polar Vortex is getting back together, that's good news for ...https://www.mlive.com/.../disrupted-polar-vortex-is-getting-...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "1 gün önce - The split up Polar Vortex is consolidating back into one big circulation. That will have a weather effect you might not expect.", - "visible_link": "https://www.mlive.com/.../disrupted-polar-vortex-is-getting-...", - "date": "1 gün önce - ", + "link": "https://richmondspca.org/how-you-can-help/adopt/cats/", + "title": "Adopt a Cat - Richmond SPCAhttps://richmondspca.org/how-you-can-help/adopt/cats/En cacheTraduire cette page", + "snippet": "Adopt a Cat. Your purrfect pal is waiting for you at the Richmond SPCA! Special thanks to our volunteer photographers Brittany Rose Photography, Alex Coyle, ...", + "visible_link": "https://richmondspca.org/how-you-can-help/adopt/cats/", + "date": "", "rank": 44 }, { - "link": "https://wtkr.com/category/good-news/", - "title": "Good News | WTKR.comhttps://wtkr.com/category/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good News · Politics · Military · Podcasts · Health · Military Base Forecasts · Food & Entertainment · Photo Galleries · App Center · Closings · Email Alerts · Watch ...", - "visible_link": "https://wtkr.com/category/good-news/", - "date": "", + "link": "https://www.oregonhumane.org/adopt/?type=cats", + "title": "Adopt a Pet | Oregon Humane Societyhttps://www.oregonhumane.org/adopt/?type=catsEn cacheTraduire cette page", + "snippet": "71 results - Adopt a pet at the Oregon Humane Society in Portland. View available dogs, cats, rabbits, horses and more. Outreach locations across the metro area ...", + "visible_link": "https://www.oregonhumane.org/adopt/?type=cats", + "date": "71 results - ", "rank": 45 }, { - "link": "https://causebox.com/blog", - "title": "Get CAUSEBOX Today | CAUSEBOXhttps://causebox.com/blogÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good News. Online Magazine. Feature ... Every product was curated to make you look good, feel good, and help you do good. Meet the limited-edition Spring ...", - "visible_link": "https://causebox.com/blog", + "link": "https://www.amazon.com/cats-supplies-kittens-catnip-tree-litter/b?ie=UTF8&node=2975241011", + "title": "Cat Supplies | Amazon.comhttps://www.amazon.com/cats-supplies-kittens-catnip-tree.../b?...En cachePages similairesTraduire cette page", + "snippet": "Online shopping for Pet Supplies from a great selection of Collars, Harnesses & Leashes, Beds & Furniture, Apparel, Toys, Feeding & Watering Supplies, Food ...", + "visible_link": "https://www.amazon.com/cats-supplies-kittens-catnip-tree.../b?...", "date": "", "rank": 46 }, { - "link": "https://www.indiatoday.in/good-news", - "title": "Good News - India Todayhttps://www.indiatoday.in/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "In good news, we have a story of a Muslim man, Ghulam Qadir, from Jammu and Kashmir's Shopian district who is taking care of a temple in freezing cold and ...", - "visible_link": "https://www.indiatoday.in/good-news", + "link": "https://www.facebook.com/thedodosite/videos/wild-monkey-cant-stop-visiting-her-cat-best-friend/321440391863969/", + "title": "The Dodo - Wild Monkey Can't Stop Visiting Her Cat Best Friend ...https://www.facebook.com/.../videos/...cat.../321440391863969/Traduire cette page", + "snippet": "This wild baby monkey is obsessed with a cat. ... Cat Purring Has To Be The Most Relaxing Sound Ever. 3:28 ...", + "visible_link": "https://www.facebook.com/.../videos/...cat.../321440391863969/", "date": "", "rank": 47 }, { - "link": "http://www.goodnews.ie/", - "title": "Today's Good Newswww.goodnews.ie/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Today's Good News, brought to you from the Dominicans in Tallaght Dublin, & Popesquay Co.Cork, offers thoughtful reflections on spirituality and social issues.", - "visible_link": "www.goodnews.ie/", + "link": "https://www.humanesociety.org/resources/cat-chat-understanding-feline-language", + "title": "Cat chat: Understanding feline language | The Humane Society of the ...https://www.humanesociety.org/.../cat-chat-understanding-feline-la...En cacheTraduire cette page", + "snippet": "You and your cat might speak different languages, but you can still communicate with each other. Important clues such as the look in your cat's eyes, the tone of ...", + "visible_link": "https://www.humanesociety.org/.../cat-chat-understanding-feline-la...", "date": "", "rank": 48 }, { - "link": "https://www.financialexpress.com/industry/good-news-employees-may-get-average-salary-hike-of-10-this-year-says-survey/1505769/", - "title": "Good news: Employees may get average salary hike of 10% this year ...https://www.financialexpress.com › INDUSTRYÖnbellekBu sayfanın çevirisini yap", - "snippet": "2 gün önce - The employees are expected to get an average salary hike of 9.7 per cent across industries this year, a marginal increase from the last year, ...", - "visible_link": "https://www.financialexpress.com › INDUSTRY", - "date": "2 gün önce - ", - "rank": 49 - } - ] - }, - "2": { - "time": "Thu, 07 Mar 2019 14:50:17 GMT", - "num_results": "Sayfa 2 / 13.140.000.000 sonuç (0,44 saniye) ", - "no_results": false, - "effective_query": "", - "results": [ - { - "link": "https://www.youtube.com/watch?v=YJ7a3Z7kN6Y", - "title": "Apashe - Good News - YouTubehttps://www.youtube.com/watch?v=YJ7a3Z7kN6YBu sayfanın çevirisini yap", - "snippet": "Follow our Spotify playlist: http://trapcity.tv/Spotify Subscribe here: http://trapcity.tv/subscribe Download here ...", - "visible_link": "https://www.youtube.com/watch?v=YJ7a3Z7kN6Y", + "link": "https://giphy.com/explore/cat", + "title": "Cat GIFs - Get the best GIF on GIPHYhttps://giphy.com/explore/catEn cacheTraduire cette page", + "snippet": "Explore and share the best Cat GIFs and most popular animated GIFs here on GIPHY. Find Funny GIFs, Cute GIFs, Reaction GIFs and more.", + "visible_link": "https://giphy.com/explore/cat", "date": "", + "rank": 49 + }, + { + "link": "https://www.sciencemag.org/news/2019/05/cats-rival-dogs-many-tests-social-smarts-anyone-brave-enough-study-them", + "title": "Cats rival dogs on many tests of social smarts. But is anyone brave ...https://www.sciencemag.org/.../cats-rival-dogs-many-tests-social-s...En cacheTraduire cette page", + "snippet": "9 mai 2019 - CORVALLIS, OREGON—Carl the cat was born to beat the odds. Abandoned on the side of the road in a Rubbermaid container, the scrawny ...", + "visible_link": "https://www.sciencemag.org/.../cats-rival-dogs-many-tests-social-s...", + "date": "9 mai 2019 - ", "rank": 50 }, { - "link": "https://www.imdb.com/title/tt8504014/", - "title": "Good News (2019) - IMDbhttps://www.imdb.com/title/tt8504014/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Directed by Raj Mehta. With Kareena Kapoor, Akshay Kumar, Kiara Advani, Diljit Dosanjh.", - "visible_link": "https://www.imdb.com/title/tt8504014/", + "link": "https://berkeleyhumane.org/adopt-a-cat", + "title": "Adoptable Cats at Berkeley Humane - Berkeley Humane Societyhttps://berkeleyhumane.org/adopt-a-catEn cachePages similairesTraduire cette page", + "snippet": "Cats available for adoption. Save a life, and find a new best friend at Berkeley Humane.", + "visible_link": "https://berkeleyhumane.org/adopt-a-cat", "date": "", "rank": 51 }, { - "link": "http://www.goodnews.ie/", - "title": "Today's Good Newswww.goodnews.ie/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Today's Good News, brought to you from the Dominicans in Tallaght Dublin, & Popesquay Co.Cork, offers thoughtful reflections on spirituality and social issues.", - "visible_link": "www.goodnews.ie/", + "link": "https://www.merriam-webster.com/dictionary/cat", + "title": "Cat | Definition of Cat by Merriam-Websterhttps://www.merriam-webster.com/dictionary/catEn cachePages similairesTraduire cette page", + "snippet": "Cat definition is - a carnivorous mammal (Felis catus) long domesticated as a pet and for catching rats and mice. How to use cat in a sentence.", + "visible_link": "https://www.merriam-webster.com/dictionary/cat", "date": "", "rank": 52 }, { - "link": "https://www.financialexpress.com/industry/good-news-employees-may-get-average-salary-hike-of-10-this-year-says-survey/1505769/", - "title": "Good news: Employees may get average salary hike of 10% this year ...https://www.financialexpress.com › INDUSTRYÖnbellekBu sayfanın çevirisini yap", - "snippet": "2 gün önce - The employees are expected to get an average salary hike of 9.7 per cent across industries this year, a marginal increase from the last year, ...", - "visible_link": "https://www.financialexpress.com › INDUSTRY", - "date": "2 gün önce - ", + "link": "http://www.laanimalservices.com/looking-for-a-cat/", + "title": "Looking for a cat | Los Angeles Animal Serviceswww.laanimalservices.com/looking-for-a-cat/Pages similairesTraduire cette page", + "snippet": "Contact Us · Commission · Statistics · Requests for Proposals · Notes from the GM · Citywide Cat Program · Press Releases · SMART · Careers · FAQ · Pet Care.", + "visible_link": "www.laanimalservices.com/looking-for-a-cat/", + "date": "", "rank": 53 }, { - "link": "https://www.omaha.com/news/goodnews/", - "title": "Good News | omaha.comhttps://www.omaha.com/news/goodnews/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Neighborhood news and community events from Omaha and surrounding communities.", - "visible_link": "https://www.omaha.com/news/goodnews/", + "link": "https://indyhumane.org/adoptable-cats/", + "title": "Adoptable Cats – IndyHumane - Humane Society of Indianapolishttps://indyhumane.org/adoptable-cats/En cacheTraduire cette page", + "snippet": "Some cats will be at our shelter, some will be in foster care, some might be on our Pet Awareness Wagon (PAW), and some might be at the Nine Lives Cat Cafe.", + "visible_link": "https://indyhumane.org/adoptable-cats/", "date": "", "rank": 54 }, { - "link": "https://www.wbtv.com/programming/good-news/", - "title": "Good News - WBTVhttps://www.wbtv.com/programming/good-news/Bu sayfanın çevirisini yap", - "snippet": "An incredible update to a story we brought you on Friday. We introduced you to an elderly couple in Gaston County -- dealing with rain and cold air flowing into ...", - "visible_link": "https://www.wbtv.com/programming/good-news/", - "date": "", + "link": "https://www.cnn.com/2019/05/17/celebrities/grumpy-cat-dead-intl-scli/index.html", + "title": "Grumpy Cat, the internet's most famous cat, dead at 7 - CNN - CNN.comhttps://www.cnn.com/2019/05/17/celebrities/grumpy-cat-dead-intl-scli/index.html", + "snippet": "17 mai 2019 - Grumpy Cat, arguably the internet's most popular cat and one of its first viral memes, has died aged 7.", + "visible_link": "https://www.cnn.com/2019/05/17/celebrities/grumpy-cat-dead-intl-scli/index.html", + "date": "17 mai 2019 - ", "rank": 55 }, { - "link": "https://www.theregister.co.uk/2019/03/04/congress_net_neutrality/", - "title": "Good news: Congress has solutions to end net neutrality brouhaha ...https://www.theregister.co.uk/2019/.../congress_net_neutrali...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "3 gün önce - Analysis An effort in Congress to end the United States' net neutrality nightmare appears to have fallen apart before it began. Last month ...", - "visible_link": "https://www.theregister.co.uk/2019/.../congress_net_neutrali...", - "date": "3 gün önce - ", + "link": "https://www.instagram.com/explore/tags/cats/?hl=fr", + "title": "#cats hashtag on Instagram • Photos and Videoshttps://www.instagram.com/explore/tags/cats/?hl=frPages similairesTraduire cette page", + "snippet": "85.2m Posts - See Instagram photos and videos from 'cats' hashtag.", + "visible_link": "https://www.instagram.com/explore/tags/cats/?hl=fr", + "date": "", "rank": 56 }, { - "link": "https://www.theglobeandmail.com/featured-reports/article-more-good-news/", - "title": "More Good News - The Globe and Mailhttps://www.theglobeandmail.com/.../article-more-good-new...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "A tour of hidden Montreal, set to music. Montreal jazz-based singer-songwriter Elizabeth Shepherd, a four-time Juno Award nominee, embarked on an ode to the ...", - "visible_link": "https://www.theglobeandmail.com/.../article-more-good-new...", + "link": "https://www.gsmarena.com/cat-phones-89.php", + "title": "All Cat phones - GSMArena.comhttps://www.gsmarena.com/cat-phones-89.phpEn cacheTraduire cette page", + "snippet": "List of Cat phones, smartphones and tablets. ... Cat phones. Popularity; Time of release; Compare. B35; S41; S31; S61; S60; S30; S40; B30; B15 Q; S50; B15 ...", + "visible_link": "https://www.gsmarena.com/cat-phones-89.php", "date": "", "rank": 57 }, { - "link": "https://electrathemes.com/wordpress-themes/good-news-lite/", - "title": "Good News Lite WordPress Theme | ElectraThemeshttps://electrathemes.com/wordpress-themes/good-news-lite/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good News Lite is a WordPress theme for news, affiliate blog and magazine websites. It is a mobile responsive WordPress theme and home page is driven by ...", - "visible_link": "https://electrathemes.com/wordpress-themes/good-news-lite/", - "date": "", + "link": "https://www.nytimes.com/2019/06/04/nyregion/cats-declawing-law-ban.html", + "title": "Cat Declawing Ban Is Passed by N.Y. Lawmakers - The New York Timeshttps://www.nytimes.com/2019/06/.../cats-declawing-law-ban.htmlTraduire cette page", + "snippet": "Il y a 7 jours - ALBANY — New York lawmakers on Tuesday passed a ban on cat declawing, putting the state on the cusp of being the first to outlaw the ...", + "visible_link": "https://www.nytimes.com/2019/06/.../cats-declawing-law-ban.html", + "date": "Il y a 7 jours - ", "rank": 58 }, { - "link": "https://www.thegoodnewsemail.com/", - "title": "The Good News Emailhttps://www.thegoodnewsemail.com/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "The Good News Email is an email newsletter that delivers positive and inspirational news.", - "visible_link": "https://www.thegoodnewsemail.com/", - "date": "", + "link": "https://coleandmarmalade.com/2019/06/10/your-cat-is-an-obligate-carnivore-heres-why-they-want-you-to-remember-that/", + "title": "Your Cat Is An Obligate Carnivore. Here's Why They Want You To ...https://coleandmarmalade.com › Mews › AwwdorableEn cacheTraduire cette page", + "snippet": "Il y a 20 heures - Since the beginning of time, cats of all sizes have relied on their hunting skills to catch prey. Here's why your cat is an obligate carnivore.", + "visible_link": "https://coleandmarmalade.com › Mews › Awwdorable", + "date": "Il y a 20 heures - ", "rank": 59 }, { - "link": "https://in.bookmyshow.com/plays/dada-ek-good-news-aahe/ET00090017", - "title": "Dada Ek Good News Aahe Marathi Drama Play in Mumbai Tickets ...https://in.bookmyshow.com/...ek-good-news.../ET0009001...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Book tickets online for Dada Ek Good News Aahe in Mumbai on BookMyShow which is a Marathi Drama play.", - "visible_link": "https://in.bookmyshow.com/...ek-good-news.../ET0009001...", + "link": "https://pbskids.org/peg/", + "title": "Home . peg + cat | PBS KIDShttps://pbskids.org/peg/En cacheTraduire cette page", + "snippet": "Play PEG + CAT games, watch videos, and download printable activities! PEG + CAT follows the adorable, spirited Peg and her sidekick Cat as they embark on ...", + "visible_link": "https://pbskids.org/peg/", "date": "", "rank": 60 }, { - "link": "https://soundcloud.com/g00dnews", - "title": "good news | Free Listening on SoundCloudhttps://soundcloud.com/g00dnewsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Nachti Pudel 3.10. Leipzig ManaHour 3. Hamburg. 2 Tracks. 411 Followers. Stream Tracks and Playlists from good news on your desktop or mobile device.", - "visible_link": "https://soundcloud.com/g00dnews", + "link": "https://typelevel.org/cats/", + "title": "Cats: Home - Typelevel.scalahttps://typelevel.org/cats/En cacheTraduire cette page", + "snippet": "Cats is a library which provides abstractions for functional programming in the Scala programming language. The name is a playful shortening of the word ...", + "visible_link": "https://typelevel.org/cats/", "date": "", "rank": 61 }, { - "link": "https://www.merriam-webster.com/dictionary/good%20news%20for%20(someone)", - "title": "Good News For (someone) - Merriam-Websterhttps://www.merriam-webster.com/.../good%20news%20for...ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "something new that will be useful to (someone) Lower ticket prices are good news for sports fans. The new dog park is good news for dog lovers.", - "visible_link": "https://www.merriam-webster.com/.../good%20news%20for...", - "date": "", + "link": "https://atlantahumane.org/adopt/cats/", + "title": "Adopt a Cat or Kitten - Atlanta Humane Societyhttps://atlantahumane.org/adopt/cats/En cacheTraduire cette page", + "snippet": "26 avr. 2019 - Live in Atlanta? Adopting a rescue cat or kitten from AHS is easy. Our cat adoption counselors help you adopt the purr-fect cat or kitten as a ...", + "visible_link": "https://atlantahumane.org/adopt/cats/", + "date": "26 avr. 2019 - ", "rank": 62 }, { - "link": "https://www.hemmings.com/blog/2019/03/06/1966-chevrolet-corvair-homecoming-the-good-news-and-the-bad-news/", - "title": "1966 Chevrolet Corvair homecoming – The good news an ...https://www.hemmings.com/.../1966-chevrolet-corvair-hom...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "19 saat önce - The Corvair's body shell awaits bead blasting. I have some good news… and some bad news. First the good news: I now know exactly what I ...", - "visible_link": "https://www.hemmings.com/.../1966-chevrolet-corvair-hom...", - "date": "19 saat önce - ", + "link": "https://www.catphones.com/en-us/cat-s61-smartphone/", + "title": "Cat® S61 Smartphone | Cat Phoneshttps://www.catphones.com/en-us/cat-s61-smartphone/En cacheTraduire cette page", + "snippet": "Get the Cat® S61 smartphone to make your work easier. With an integrated thermal imaging camera, indoor air quality sensor, and laser assisted distance ...", + "visible_link": "https://www.catphones.com/en-us/cat-s61-smartphone/", + "date": "", "rank": 63 }, { - "link": "https://www.linkedin.com/company/goodnewsservices", - "title": "Good News Services | LinkedInhttps://www.linkedin.com/company/goodnewsservicesBu sayfanın çevirisini yap", - "snippet": "Learn about working at Good News Services. Join LinkedIn today for free. See who you know at Good News Services, leverage your professional network, and ...", - "visible_link": "https://www.linkedin.com/company/goodnewsservices", + "link": "https://www.dictionary.com/browse/cat", + "title": "Cat | Definition of Cat at Dictionary.comhttps://www.dictionary.com/browse/catEn cacheTraduire cette page", + "snippet": "Cat definition, a small domesticated carnivore, Felis domestica or F. catus, bred in a number of varieties. See more.", + "visible_link": "https://www.dictionary.com/browse/cat", "date": "", "rank": 64 }, { - "link": "https://www.nst.com.my/sports/football/2019/03/466749/epl-title-race-good-news-liverpool", - "title": "EPL title race: Good news for Liverpool | New Straits Times | Malaysia ...https://www.nst.com.my/.../epl-title-race-good-news-liverpo...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "14 saat önce - KUALA LUMPUR: The boffins, who base their work on statistics and analyses, have come up with some good news for Liverpool fans from ...", - "visible_link": "https://www.nst.com.my/.../epl-title-race-good-news-liverpo...", - "date": "14 saat önce - ", + "link": "https://www.catfinancial.com/en_US.html", + "title": "Cat Financial | Finance & Extended Protection Solutionshttps://www.catfinancial.com/en_US.htmlEn cachePages similairesTraduire cette page", + "snippet": "The Cat Card Program. Running a business requires flexibility and resources you can count on to be there when you need them. With the Cat Card Program, ...", + "visible_link": "https://www.catfinancial.com/en_US.html", + "date": "", "rank": 65 }, { - "link": "https://designtoimprovelife.dk/good-news/", - "title": "GOOD NEWS - INDEX: Design to Improve Life®https://designtoimprovelife.dk/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "LATEST GOOD NEWS. INDEX: Design to Improve Life. NOMINATION OF THE WEEK: THE HOLMENE PROJECT. February 28, 2019. This ambitious project ...", - "visible_link": "https://designtoimprovelife.dk/good-news/", + "link": "https://www.charlestonanimalsociety.org/adopt-a-cat/", + "title": "Adopt a Cat - Charleston Animal Societyhttps://www.charlestonanimalsociety.org/adopt-a-cat/En cachePages similairesTraduire cette page", + "snippet": "A recent hoarding case has brought more than 50 cats to Charleston Animal Society in desperate need of adoption. Their lack of socialization growing up in ...", + "visible_link": "https://www.charlestonanimalsociety.org/adopt-a-cat/", "date": "", "rank": 66 }, { - "link": "https://www.signetsealed.com/good-news-calendar/good-news-calendar", - "title": "Good News Calendar — Signet Sealedhttps://www.signetsealed.com/good-news.../good-news-cale...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "There were a lot of reasons why I wanted to create this product, but at the end of the day - we all just need some good, good news. This calendar is absolutely ...", - "visible_link": "https://www.signetsealed.com/good-news.../good-news-cale...", - "date": "", + "link": "https://twitter.com/realgrumpycat/status/1129310647458467840", + "title": "Grumpy Cat on Twitter: \"Some days are grumpier than others...… \"https://twitter.com/realgrumpycat/status/1129310647458467840En cacheTraduire cette page", + "snippet": "17 mai 2019 - @RealGrumpyCat. The Official Twitter for Grumpy Cat The World's grumpiest cat! #TeamGrumpy http://Instagram.com/realgrumpycat ...", + "visible_link": "https://twitter.com/realgrumpycat/status/1129310647458467840", + "date": "17 mai 2019 - ", "rank": 67 }, { - "link": "http://www.wtoc.com/community/good-news/", - "title": "Good News - WTOC.comwww.wtoc.com/community/good-news/Bu sayfanın çevirisini yap", - "snippet": "Good News: Richmond Hill High students launch campaign against cancer. Patricia George, Isabella Martinez, and Tennessee Sack have launched a campaign ...", - "visible_link": "www.wtoc.com/community/good-news/", - "date": "", + "link": "https://www.lovemeow.com/cat-ginger-campus-students-notes-2638762023.html", + "title": "Students Post Notes about Their Beloved Cat After He's Been Getting ...https://www.lovemeow.com/cat-ginger-campus-students-notes-263...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - Cheeto, a ginger cat, came to be the fixture of the Physics Building at UC Davis many years ago. The friendly feline has made the place his ...", + "visible_link": "https://www.lovemeow.com/cat-ginger-campus-students-notes-263...", + "date": "Il y a 1 jour - ", "rank": 68 }, { - "link": "https://abc13.com/goodnews/", - "title": "Good News | abc13.com | abc13.comhttps://abc13.com/goodnews/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Explore recently published Good News news stories from abc13.com.", - "visible_link": "https://abc13.com/goodnews/", + "link": "https://www.paws.org/library/cats/home-life/helping-your-cat-adjust/", + "title": "Helping Your Cat Adjust to a New Home » PAWShttps://www.paws.org/library/cats/home.../helping-your-cat-adjust/En cachePages similairesTraduire cette page", + "snippet": "Allow your cat several weeks to adapt. During this period, the cat or kitten should be carefully confined indoors. He needs to get used to you as the provider of ...", + "visible_link": "https://www.paws.org/library/cats/home.../helping-your-cat-adjust/", "date": "", "rank": 69 }, { - "link": "https://sportsday.dallasnews.com/texas-rangers/rangers/2019/03/06/rangers-opening-day-roster-projection-30-good-news-texas", - "title": "Rangers opening day roster projection 3.0: Here's the good news for ...https://sportsday.dallasnews.com/.../rangers-opening-day-ros...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "21 saat önce - These spring training roster projections are always fun for readers, but the truth is, the less movement, the better. Movement comes from...", - "visible_link": "https://sportsday.dallasnews.com/.../rangers-opening-day-ros...", - "date": "21 saat önce - ", + "link": "https://www.gopetplan.com/cat-insurance", + "title": "Cat Insurance | Pet Insurance For Cats & Kittens | Petplanhttps://www.gopetplan.com/cat-insuranceEn cachePages similairesTraduire cette page", + "snippet": "Protect your feline friend from the unexpected with cat insurance by Petplan. From kitten insurance to pet insurance for senior cats, Petplan has your back.", + "visible_link": "https://www.gopetplan.com/cat-insurance", + "date": "", "rank": 70 }, { - "link": "https://itunes.apple.com/us/app/good-news-network/id1044963284?mt=8", - "title": " Good News Network on the App Store - iTunes - Applehttps://itunes.apple.com/us/app/good-news.../id1044963284...ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Read reviews, compare customer ratings, see screenshots, and learn more about Good News Network. Download Good News Network and enjoy it on your ...", - "visible_link": "https://itunes.apple.com/us/app/good-news.../id1044963284...", + "link": "https://geneseehumane.org/adopting-a-pet/browse-cats.html", + "title": "Adopting a Pet : Browse Cats - Humane Society of Genesee Countyhttps://geneseehumane.org/adopting-a-pet/browse-cats.htmlEn cacheTraduire cette page", + "snippet": "24126348. Cat. Female/Spayed. Domestic Shorthair/Mix. 4 years 9 months. Intake. Photo. La'Lue. 30705163. Cat. Female/Spayed. Domestic Medium Hair/Mix.", + "visible_link": "https://geneseehumane.org/adopting-a-pet/browse-cats.html", "date": "", "rank": 71 }, { - "link": "https://www.residentadvisor.net/dj/goodnews", - "title": "RA: Good Newshttps://www.residentadvisor.net/dj/goodnewsÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Fri, 18 Jan 2019. Post a comment · Nachtdigital reveals first names for 2019 edition. The German festival will put on three shows from Vril alongside Deena ...", - "visible_link": "https://www.residentadvisor.net/dj/goodnews", + "link": "https://www.embracepetinsurance.com/cat-insurance", + "title": "Cat Insurance Plans & Coverage - Protect your Cat | Embracehttps://www.embracepetinsurance.com/cat-insuranceEn cacheTraduire cette page", + "snippet": "Cats become more prone to expensive accidents and illnesses as they age. Protect your cat now with an Embrace pet insurance plan and never worry about ...", + "visible_link": "https://www.embracepetinsurance.com/cat-insurance", "date": "", "rank": 72 }, { - "link": "https://issuu.com/goodnewsdalton", - "title": "GoodNews Dalton - Issuuhttps://issuu.com/goodnewsdaltonÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Publications from GoodNews Dalton. ... by GoodNews Dalton. Published 27 days ago. Cover of \"January 2019\" · January 2019. by GoodNews Dalton. Published ...", - "visible_link": "https://issuu.com/goodnewsdalton", + "link": "https://catandcloud.com/", + "title": "Cat and Cloud Coffee – Cat & Cloudhttps://catandcloud.com/En cachePages similairesTraduire cette page", + "snippet": "Cat & Cloud Coffee Subscription. from $ 14.50 ... Cat & Cloud Seed to Cup Klean Kanteen by Kevin Tudball. $ 29.00 ... Cupping Spoon | Cat & Cloud Exclusive.", + "visible_link": "https://catandcloud.com/", "date": "", "rank": 73 }, { - "link": "https://www.thejournal.ie/good-news/news/", - "title": "Good News · TheJournal.iehttps://www.thejournal.ie/good-news/news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "good-news - Friday 25 January, 2019 ... good-news - Sunday 23 December, 2018 ... 'This is a great news day for Castletroy': Limerick selected as base for 600 ...", - "visible_link": "https://www.thejournal.ie/good-news/news/", + "link": "https://www.mathworks.com/help/matlab/ref/cat.html", + "title": "Concatenate arrays - MATLAB cat - MathWorkshttps://www.mathworks.com › ... › Matrices and ArraysEn cachePages similairesTraduire cette page", + "snippet": "C = cat( dim , A , B ) concatenates B to the end of A along dimension dim when A and B have compatible sizes (the lengths of the dimensions match except for ...", + "visible_link": "https://www.mathworks.com › ... › Matrices and Arrays", "date": "", "rank": 74 }, { - "link": "https://www.wptv.com/news/good-news", - "title": "Good News - WPTV.comhttps://www.wptv.com/news/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "A group of teens and good Samaritans rescued a boy dangling from a ski lift in Canada. CNN Newsource ... Palm Beach County veteran gets new home.", - "visible_link": "https://www.wptv.com/news/good-news", + "link": "https://bmorehumane.org/adopt/adopt-cat/", + "title": "Companion Cats for Adoption | Baltimore Humane Societyhttps://bmorehumane.org/adopt/adopt-cat/En cachePages similairesTraduire cette page", + "snippet": "Got a cat fancy? We don't blame you! Listed below are all of our wonderful cats that are currently available for adoption. Looking for that special companion?", + "visible_link": "https://bmorehumane.org/adopt/adopt-cat/", "date": "", "rank": 75 }, { - "link": "https://www.facebook.com/positive.news.uk/", - "title": "Positive News - Home | Facebookhttps://www.facebook.com › Places › London, United Kingdom › PublisherBenzer", - "snippet": "Positive News, London, United Kingdom. 269K likes. www.positive.news | Good journalism about good things.", - "visible_link": "https://www.facebook.com › Places › London, United Kingdom › Publisher", + "link": "https://www.healthypawspetinsurance.com/cat-and-kitten-insurance", + "title": "Cat Insurance & Kitten Insurance | Healthy Paws Pet Insurancehttps://www.healthypawspetinsurance.com/cat-and-kitten-insuranceEn cachePages similairesTraduire cette page", + "snippet": "Healthy Paws Pet Insurance & Foundation covers your cat from nose to tail. Our cat insurance plan pays on your actual veterinary bill and covers new accidents ...", + "visible_link": "https://www.healthypawspetinsurance.com/cat-and-kitten-insurance", "date": "", "rank": 76 }, { - "link": "https://www.facebook.com/goodnewswi/", - "title": "Good News Project, Inc. - Home | Facebookhttps://www.facebook.com › Places › Wausau, Wisconsin › Charity OrganizationBenzer", - "snippet": "Good News Project, Inc., Wausau, WI. 1291 likes · 61 talking about this · 56 were here. We are a nonprofit organization offering meaningful service...", - "visible_link": "https://www.facebook.com › Places › Wausau, Wisconsin › Charity Organization", - "date": "", + "link": "https://www.sfanimalcare.org/adoptable-animals/cats/", + "title": "Cats for Adoption - San Francisco Animal Care and Control : San ...https://www.sfanimalcare.org/adoptable-animals/cats/En cacheTraduire cette page", + "snippet": "23 matches - Adopt a cat from San Francisco Animal Control & Care. Search our database for a cat to adopt from our animal shelter.", + "visible_link": "https://www.sfanimalcare.org/adoptable-animals/cats/", + "date": "23 matches - ", "rank": 77 }, { - "link": "https://www.baynews9.com/fl/tampa/community/good-news", - "title": "Community | Good News | Spectrum Bay News 9https://www.baynews9.com/fl/tampa/community/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Tired of reading about bad news like crime, taxes, and accidents? If so, bookmark this Good News page for a daily dose of stories that will make you feel good ...", - "visible_link": "https://www.baynews9.com/fl/tampa/community/good-news", + "link": "https://www.lifeprint.com/asl101/pages-signs/c/cat.htm", + "title": "\"cat\" American Sign Language (ASL) - Lifeprinthttps://www.lifeprint.com/asl101/pages-signs/c/cat.htmEn cacheTraduire cette page", + "snippet": "CAT (version). The general version of the sign for cat starts with an \"open F.\" This handshape looks like a normal \"F\" except that the index finger and thumb are ...", + "visible_link": "https://www.lifeprint.com/asl101/pages-signs/c/cat.htm", "date": "", "rank": 78 }, { - "link": "https://futurecrun.ch/goodnews", - "title": "Good News — Future Crunchhttps://futurecrun.ch/goodnewsÖnbellekBu sayfanın çevirisini yap", - "snippet": "The world isn't falling apart. You're just getting your news from the wrong places.", - "visible_link": "https://futurecrun.ch/goodnews", + "link": "https://www.chewy.com/b/cat-325", + "title": "Cat Supplies: Best Cat & Kitten Products - Free Shipping | Chewyhttps://www.chewy.com/b/cat-325En cachePages similairesTraduire cette page", + "snippet": "Shop Chewy for cat supplies ranging from the best cat food and treats to litter and cat toys, supplements, cat beds and so much more. Low prices and *FREE* ...", + "visible_link": "https://www.chewy.com/b/cat-325", "date": "", "rank": 79 }, { - "link": "https://unsplash.com/search/photos/good-news", - "title": "Good News Pictures | Download Free Images on Unsplashhttps://unsplash.com/search/photos/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Download the perfect good news pictures. Find over 100+ of the best free good news images. Free for commercial use ✓ No attribution required ...", - "visible_link": "https://unsplash.com/search/photos/good-news", + "link": "https://tricountyhumanesociety.org/adopt-a-pet/adopt-a-cat.html", + "title": "Adopt : Adopt a Cat - Tri-County Humane Societyhttps://tricountyhumanesociety.org/adopt-a-pet/adopt-a-cat.htmlEn cacheTraduire cette page", + "snippet": "That means as soon as a new cat or kitten arrives and is processed for adoption, they immediately appear on this page! At times you may need to scroll to see all ...", + "visible_link": "https://tricountyhumanesociety.org/adopt-a-pet/adopt-a-cat.html", "date": "", "rank": 80 }, { - "link": "https://www.biblegateway.com/versions/Good-News-Translation-GNT-Bible/", - "title": "Good News Translation (GNT) - Version Information - BibleGateway.comhttps://www.biblegateway.com/.../Good-News-Translation-G...ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "Version Information. The Good News Translation (GNT), formerly called the Good News Bible or Today's English Version, was first published as a full Bible in ...", - "visible_link": "https://www.biblegateway.com/.../Good-News-Translation-G...", + "link": "https://www.green-hill.org/adopt_cat/", + "title": "Cats | Greenhill Humane Societyhttps://www.green-hill.org/adopt_cat/En cacheTraduire cette page", + "snippet": "Adoptable and Found Cats Cats marked \"Not Available\" have been recently found and are awaiting reunion with their families. Please click on their profile or.", + "visible_link": "https://www.green-hill.org/adopt_cat/", "date": "", "rank": 81 }, { - "link": "https://www.hubergroup.com.tr/tr/ueruenler/ueruen-gruplari/fountain-solution-concentrates/nkredible-good-news-fix/", - "title": "hubergroup TR - Hazne suyu konsantresi !NKREDIBLE GOOD NEWS ...https://www.hubergroup.com.tr/tr/ueruenler/ueruen.../nkredible-good-news-fix/", - "snippet": "NKREDIBLE GOOD NEWS FIX özellikle nemlendirme sistemlerinin her türü için çeşitli formülasyonlarda gazete uygulamaları için tasarlanmıştır.", - "visible_link": "https://www.hubergroup.com.tr/tr/ueruenler/ueruen.../nkredible-good-news-fix/", + "link": "https://www.catcampnyc.com/", + "title": "Jackson Galaxy's Cat Camphttps://www.catcampnyc.com/En cacheTraduire cette page", + "snippet": "Jackson Galaxy's Cat Camp is a weekend-long adventure all about exploring and celebrating your love for cats. The immersive experience with a summer ...", + "visible_link": "https://www.catcampnyc.com/", "date": "", "rank": 82 }, { - "link": "https://www.goodnewscentrekenya.nl/about-english/", - "title": "About English - Good News Center Kenyahttps://www.goodnewscentrekenya.nl/about-english/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "When confronted with the dire needs and the positive results that Sister Wanjiru achieved in a very challenging environment, they decided that they wanted to ...", - "visible_link": "https://www.goodnewscentrekenya.nl/about-english/", + "link": "https://myperks.catchow.com/", + "title": "My Cat Chow Perkshttps://myperks.catchow.com/En cachePages similairesTraduire cette page", + "snippet": "And we want to reward you for all the ways you're sharing a better life with your cat. Join our community of Cat People and earn points for taking part, then use ...", + "visible_link": "https://myperks.catchow.com/", "date": "", "rank": 83 }, { - "link": "https://www.thegoodnewspodcast.fm/", - "title": "The Good News Podcasthttps://www.thegoodnewspodcast.fm/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "The Good News Podcast is your daily reminder that not all news is bad, produced by Colleen and Neil.", - "visible_link": "https://www.thegoodnewspodcast.fm/", + "link": "https://pixabay.com/images/search/cat/", + "title": "20,000+ Cat Pictures & Images [HD] - Pixabay - Pixabayhttps://pixabay.com/images/search/cat/En cacheTraduire cette page", + "snippet": "Mischievous, playful and graceful, choose from among these adorable cat pictures and images and download your favorite, HD-quality photo for free!", + "visible_link": "https://pixabay.com/images/search/cat/", "date": "", "rank": 84 }, { - "link": "https://miami.cbslocal.com/tag/good-news/", - "title": "Good News – CBS Miamihttps://miami.cbslocal.com/tag/good-news/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "WWII Vet Finally Gets Much-Needed New Roof Thanks To Generosity Of CBS4 ViewersThere is now a happy ending to the story of an elderly war veteran who ...", - "visible_link": "https://miami.cbslocal.com/tag/good-news/", + "link": "https://southwesthumane.org/adopt/cats/", + "title": "Adopt a cat | Humane Society for SW Washingtonhttps://southwesthumane.org/adopt/cats/En cachePages similairesTraduire cette page", + "snippet": "Cats available for adoption at the Humane Society for Southwest Washington.", + "visible_link": "https://southwesthumane.org/adopt/cats/", "date": "", "rank": 85 }, { - "link": "https://www.barrons.com/articles/vale-dam-break-iron-ore-ceo-resign-good-u-s-steel-stocks-51551721665", - "title": "Vale's Woes Could Be Good News for U.S. Steel Stocks - Barron'shttps://www.barrons.com/.../vale-dam-break-iron-ore-ceo-re...Bu sayfanın çevirisini yap", - "snippet": "The drama surrounding the tragic dam collapse in Brazil's Minas Gerais province continued to unfold on Monday. Over the weekend, Vale (VALE) CEO Fabio ...", - "visible_link": "https://www.barrons.com/.../vale-dam-break-iron-ore-ceo-re...", + "link": "https://www.hemingwayhome.com/cats/", + "title": "Cats - hemingwayhome.comhttps://www.hemingwayhome.com/cats/En cacheTraduire cette page", + "snippet": "/uploads/images/cat-pic-Fats-Waller.jpg. /uploads/images/Cat-Pic-Hairy-Truman.jpg. /uploads/images/cat-pic-Ivan.jpg. /uploads/images/cat-pic-Shine-Forbes.jpg.", + "visible_link": "https://www.hemingwayhome.com/cats/", "date": "", "rank": 86 }, { - "link": "http://www.christchurchcharlotte.org/goodnews/", - "title": "GoodNews Shop | Christ Church Charlottewww.christchurchcharlotte.org/goodnews/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "GoodNews, the Shop@Christ Church is a mission of the Episcopal Church Women (ECW) at Christ Church. We proudly feature books, cards, candles, lotions, ...", - "visible_link": "www.christchurchcharlotte.org/goodnews/", - "date": "", + "link": "https://www.npr.org/2019/05/17/724262019/grumpy-cat-dies-her-spirit-will-live-on-family-says", + "title": "Grumpy Cat, Permafrowning Internet Darling, Dies At Age 7 : NPRhttps://www.npr.org/.../grumpy-cat-dies-her-spirit-will-live-on-fam...Traduire cette page", + "snippet": "17 mai 2019 - Grumpy Cat — the blue-eyed cat with the withering stare and permafrown that suggested perpetual irritation — has died, her family announced ...", + "visible_link": "https://www.npr.org/.../grumpy-cat-dies-her-spirit-will-live-on-fam...", + "date": "17 mai 2019 - ", "rank": 87 }, { - "link": "https://www.taschen.com/pages/en/catalogue/photography/all/05331/facts.david_lachapelle_good_news_part_ii.htm", - "title": "David LaChapelle. Good News. Part II - TASCHEN Bookshttps://www.taschen.com › Books › PhotographyÖnbellekBu sayfanın çevirisini yap", - "snippet": "Move beyond the material world in a quest for paradise with David LaChapelle. Good News, the fifth installment of his book anthology by TASCHEN Books..", - "visible_link": "https://www.taschen.com › Books › Photography", + "link": "https://www.wayfair.com/pet/cat/cat-c409563.html", + "title": "Cat Furniture | Wayfairhttps://www.wayfair.com/pet/cat/cat-c409563.htmlEn cacheTraduire cette page", + "snippet": "Shop Cat Furniture and Supplies at Wayfair. Enjoy Free Shipping & browse our great selection of Cat Trees, Cat Houses, Cat Carriers, Cat Toys and more!", + "visible_link": "https://www.wayfair.com/pet/cat/cat-c409563.html", "date": "", "rank": 88 }, { - "link": "https://www.nj.com/news/2019/03/nj-factories-and-refineries-release-6-million-pounds-of-toxic-chemicals-and-thats-good-news.html", - "title": "Good news! N.J. factories and refineries only released 6 million ...https://www.nj.com/news/.../nj-factories-and-refineries-release-6-million-pounds-of-toxi...", - "snippet": "1 gün önce - Factories, refineries and other industrial facilities in New Jersey released almost six million pounds of toxic chemicals into the state's air, water ...", - "visible_link": "https://www.nj.com/news/.../nj-factories-and-refineries-release-6-million-pounds-of-toxi...", - "date": "1 gün önce - ", + "link": "https://www.setontesting.com/cat/", + "title": "California Achievement Test (CAT) - Seton Testing Serviceshttps://www.setontesting.com/cat/En cacheTraduire cette page", + "snippet": "The California Achievement Test, CAT E/Survey (Grades 3-12), is a nationally normed standardized test that measures achievement in the areas of Reading, ...", + "visible_link": "https://www.setontesting.com/cat/", + "date": "", "rank": 89 }, { - "link": "http://www.wmcactionnews5.com/news/good-news/", - "title": "Good News - WMC Action News 5 - Memphis, Tennesseewww.wmcactionnews5.com/news/good-news/Bu sayfanın çevirisini yap", - "snippet": "The Memphis Police and Fire 911 Dispatch centers takes thousands of calls a day and soon, they will be the first in the state of Tennessee to implement a \"text to ...", - "visible_link": "www.wmcactionnews5.com/news/good-news/", + "link": "https://www.instinctpetfood.com/cats", + "title": "For Cats | Instinct Pet Foodhttps://www.instinctpetfood.com/catsEn cacheTraduire cette page", + "snippet": "We understand the power of raw nutrition. We believe in it. And we know the good it can do. That's why we're committed to making raw accessible and simple for ...", + "visible_link": "https://www.instinctpetfood.com/cats", "date": "", "rank": 90 }, { - "link": "http://www.goodnews.gr/", - "title": "GoodNewswww.goodnews.gr/ÖnbellekBenzerBu sayfanın çevirisini yap", - "snippet": "REQUEST YOUR INVITATION. We will contact you shortly! Oops! Something went wrong while submitting the form. :( © 2015 GoodNews© All right reserved.", - "visible_link": "www.goodnews.gr/", - "date": "", + "link": "https://frommfamily.com/products/cat/", + "title": "Cat Products - Fromm Family Foodshttps://frommfamily.com/products/cat/En cacheTraduire cette page", + "snippet": "25 Products - Fromm Family Foods A fifth generation family owned & operated artisan pet food company.", + "visible_link": "https://frommfamily.com/products/cat/", + "date": "25 Products - ", "rank": 91 }, { - "link": "https://goodnews.london/collections/all", - "title": "Good News Sneakers | Shop Unisex Sneakers – Good News Londonhttps://goodnews.london/collections/allÖnbellekBu sayfanın çevirisini yap", - "snippet": "Baseball-inspired designs and ethical production. Classic high and low top sneakers in a playful range of canvas, corduroy and fly-knit fabrics for AW17.", - "visible_link": "https://goodnews.london/collections/all", + "link": "https://www.homewardpet.org/available-cats-kittens/", + "title": "Available Cats & Kittens - Homeward Pethttps://www.homewardpet.org/available-cats-kittens/En cacheTraduire cette page", + "snippet": "Below are the cats and kittens currently available for adoption at Homeward Pet. At the shelter, you may also see other cats that will be available for adoption as ...", + "visible_link": "https://www.homewardpet.org/available-cats-kittens/", "date": "", "rank": 92 }, { - "link": "http://kokomoperspective.com/kp/news/fca-s-billion-investment-could-spell-good-news-for-kokomo/article_8ab4ffa0-3ea6-11e9-929f-4b272fc1dff8.html", - "title": "FCA's $4.5 billion investment could spell good news for Kokomo ...kokomoperspective.com/.../news/...good-news.../article_8ab...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "3 gün önce - Last week FCA US unveiled plans to invest $4.5 billion in Detroit, adding production to facilities in Michigan to bolster production of Jeep- and ...", - "visible_link": "kokomoperspective.com/.../news/...good-news.../article_8ab...", - "date": "3 gün önce - ", + "link": "https://www.hillspet.com/prescription-diet/cat-food", + "title": "Prescription Diet Cat Food - Therapeutic Nutrition | Hill's Pethttps://www.hillspet.com › prescription-dietEn cacheTraduire cette page", + "snippet": "Discover the power of Hill's Prescription Diet cat food products, specially formulated to help improve the quality of your cat's life.", + "visible_link": "https://www.hillspet.com › prescription-diet", + "date": "", "rank": 93 }, { - "link": "https://www.theindychannel.com/news/good-news", - "title": "Good News - RTV6https://www.theindychannel.com/news/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Indianapolis. IFD dispatcher coaches young girl through CPR, saves her mom. Shakkira Harris. 10:33 PM, Feb 22, 2019 · Indianapolis. Junior League of ...", - "visible_link": "https://www.theindychannel.com/news/good-news", - "date": "", + "link": "https://www.allure.com/story/cat-viral-haircut", + "title": "This Cat's Bizarre Haircut Is Going Viral on Social Media | Allurehttps://www.allure.com/story/cat-viral-haircutEn cacheTraduire cette page", + "snippet": "Il y a 3 jours - A cat named Oliver is currently going viral on social media for getting a seriously hilarious haircut, which was requested by one of the cat's ...", + "visible_link": "https://www.allure.com/story/cat-viral-haircut", + "date": "Il y a 3 jours - ", "rank": 94 }, { - "link": "https://www.allaboutgod.com/common/good-news.htm", - "title": "All About GOD Good News - AllAboutGOD.comhttps://www.allaboutgod.com/common/good-news.htmÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good News. ... Skip Heitzig - Old Testament · Skip Heitzig - New Testament · Videos that ROCK! Download Free Worship MP3s. BEEN BLESSED? Give a Buck ...", - "visible_link": "https://www.allaboutgod.com/common/good-news.htm", + "link": "https://www.capitalhumanesociety.org/adopt/cats-kittens.html", + "title": "Lincoln Cat & Kitten Adoption - Capital Humane Societyhttps://www.capitalhumanesociety.org/adopt/cats-kittens.htmlEn cacheTraduire cette page", + "snippet": "These are pictures of some of the beautiful cats & kittens available for adoption. Please come to Capital Humane Society to see all of the pets in the adoption ...", + "visible_link": "https://www.capitalhumanesociety.org/adopt/cats-kittens.html", "date": "", "rank": 95 }, { - "link": "https://www.dictionary.com/browse/good-news", - "title": "Good news | Define Good news at Dictionary.comhttps://www.dictionary.com/browse/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good news definition, someone or something that is positive, encouraging, uplifting, desirable, or the like. See more.", - "visible_link": "https://www.dictionary.com/browse/good-news", + "link": "http://www.animalplanet.com/pets/cats/", + "title": "Cats | Animal Planetwww.animalplanet.com/pets/cats/En cachePages similairesTraduire cette page", + "snippet": "Explore our guide to cats, kittens and their habitats. Learn about over a hundred different cat breeds and how to deal with troubled cats.", + "visible_link": "www.animalplanet.com/pets/cats/", "date": "", "rank": 96 }, { - "link": "https://spectrumlocalnews.com/nc/triangle-sandhills/news/Good_News", - "title": "Good News | Spectrum Newshttps://spectrumlocalnews.com/nc/triangle.../news/Good_Ne...ÖnbellekBu sayfanın çevirisini yap", - "snippet": "The latest good news stories from across North Carolina.", - "visible_link": "https://spectrumlocalnews.com/nc/triangle.../news/Good_Ne...", + "link": "http://www.catcaresociety.org/adoptions/cats-for-adoption", + "title": "Cats for Adoption - Cat Care Societywww.catcaresociety.org/adoptions/cats-for-adoptionEn cachePages similairesTraduire cette page", + "snippet": "Place your curser over the cat pictures to scroll through our adoptable cats. ... 39750840. Cat. Female/Spayed. Domestic Shorthair/Mix. 8 years 8 months.", + "visible_link": "www.catcaresociety.org/adoptions/cats-for-adoption", "date": "", "rank": 97 }, { - "link": "https://www.cefonline.com/ministries/goodnewsclub/", - "title": "Good News Club - Child Evangelism Fellowshiphttps://www.cefonline.com/ministries/goodnewsclub/ÖnbellekBu sayfanın çevirisini yap", - "snippet": "Good News Club® is a ministry of Child Evangelism Fellowship in which trained teachers meet with groups of children in schools, homes, community centers, ...", - "visible_link": "https://www.cefonline.com/ministries/goodnewsclub/", + "link": "https://foothillsanimalshelter.org/services/adopt/cats/", + "title": "Adopt a Cat - Foothills Animal Shelterhttps://foothillsanimalshelter.org/services/adopt/cats/En cacheTraduire cette page", + "snippet": "Whether you are looking for a cat that is incredibly affectionate or more independent, calm or active, curious or cool – we have a match for you! We often have ...", + "visible_link": "https://foothillsanimalshelter.org/services/adopt/cats/", "date": "", "rank": 98 }, { - "link": "https://pia.gov.ph/news/categories/good-news", - "title": "Good News | News Center | Philippine Information Agencyhttps://pia.gov.ph/news/categories/good-newsÖnbellekBu sayfanın çevirisini yap", - "snippet": "MPC-Baras invents Flood Early Warning device. Published On March 6, 2019 By Ana-Liza S. Macatangay. NAGA CITY, Mar.5 (PIA) -- A flood early warning ...", - "visible_link": "https://pia.gov.ph/news/categories/good-news", + "link": "https://www.ohchr.org/en/hrbodies/cat/pages/catindex.aspx", + "title": "Committee against Torture - OHCHRhttps://www.ohchr.org/en/hrbodies/cat/pages/catindex.aspxEn cacheTraduire cette page", + "snippet": "The Committee Against Torture (CAT) is the body of 10 independent experts that monitors implementation of the Convention against Torture and Other Cruel, ...", + "visible_link": "https://www.ohchr.org/en/hrbodies/cat/pages/catindex.aspx", "date": "", "rank": 99 } ] + }, + "2": { + "time": "Tue, 11 Jun 2019 19:59:16 GMT", + "num_results": "Page 2 d'environ 4 280 000 000 résultats (0,65 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.youtube.com/watch?v=5dsGWM5XGdg", + "title": "Cats are so funny you will die laughing - Funny cat compilation ...https://www.youtube.com/watch?v=5dsGWM5XGdgPages similairesTraduire cette page", + "snippet": "Cats are simply the funniest and most hilarious pets, they make us laugh all the time! Just look how all these ...", + "visible_link": "https://www.youtube.com/watch?v=5dsGWM5XGdg", + "date": "", + "rank": 100 + }, + { + "link": "https://www.marketwatch.com/investing/stock/cat", + "title": "CAT - MarketWatchhttps://www.marketwatch.com/investing/stock/catTraduire cette page", + "snippet": "CAT | Complete Caterpillar Inc. stock news by MarketWatch. View real-time stock prices and stock quotes for a full financial overview.", + "visible_link": "https://www.marketwatch.com/investing/stock/cat", + "date": "", + "rank": 101 + }, + { + "link": "https://www.flickr.com/photos/tags/cat/", + "title": "cat photos on Flickr | Flickrhttps://www.flickr.com/photos/tags/cat/Pages similaires", + "snippet": "Flickr photos, groups, and tags related to the \"cat\" Flickr tag.", + "visible_link": "https://www.flickr.com/photos/tags/cat/", + "date": "", + "rank": 102 + }, + { + "link": "https://www.cathouseonthekings.com/", + "title": "The Cat House on the Kingshttps://www.cathouseonthekings.com/En cachePages similairesTraduire cette page", + "snippet": "The Cat House on the Kings - California's largest no-cage, no-kill lifetime cat sanctuary and adoption center.", + "visible_link": "https://www.cathouseonthekings.com/", + "date": "", + "rank": 103 + }, + { + "link": "https://www.ferries.ca/thecat/fares/", + "title": "Maine to Nova Scotia Ferry Fares | The CAT | Bay Ferrieshttps://www.ferries.ca/thecat/fares/En cachePages similairesTraduire cette page", + "snippet": "Il y a 5 jours - Walk-on and vehicle fares for The CAT ferry service between Bar Harbor, ME and Yarmouth, NS. All prices are in USD.", + "visible_link": "https://www.ferries.ca/thecat/fares/", + "date": "Il y a 5 jours - ", + "rank": 104 + }, + { + "link": "https://www.petbarn.com.au/cats", + "title": "Cat Supplies, Products & Food | Afterpay Available | Petbarnhttps://www.petbarn.com.au/catsEn cachePages similairesTraduire cette page", + "snippet": "View our excellent selection of Cat Supplies, Products & Food. Afterpay now available. Sign up for exclusive Petbarn offers and rewards. Shop online now!", + "visible_link": "https://www.petbarn.com.au/cats", + "date": "", + "rank": 105 + }, + { + "link": "http://cfa.org/", + "title": "The Cat Fanciers' Association - The World's Largest Registry for ...cfa.org/En cachePages similairesTraduire cette page", + "snippet": "The Cat Fanciers' Association - The World's Largest Registry for Pedigreed Cats.", + "visible_link": "cfa.org/", + "date": "", + "rank": 106 + }, + { + "link": "https://www.royalcanin.com/us/cats/products", + "title": "Cat & Kitten Food - Royal Caninhttps://www.royalcanin.com/us/cats/productsEn cacheTraduire cette page", + "snippet": "We have an outstanding array of feline products to help our customers find the right food for their cats & kittens - Browse our ranges today!", + "visible_link": "https://www.royalcanin.com/us/cats/products", + "date": "", + "rank": 107 + }, + { + "link": "https://explodingkittens.com/kittyconvict/", + "title": "Why you should put an orange collar on your cat - The Kitty Convict ...https://explodingkittens.com/kittyconvict/En cacheTraduire cette page", + "snippet": "FAQ. Can I make my own shirts, party hats, logos, etc to support this project? Yes! All the images above are free to download and use/modify as you wish. If you ...", + "visible_link": "https://explodingkittens.com/kittyconvict/", + "date": "", + "rank": 108 + }, + { + "link": "https://catstevens.com/", + "title": "Yusuf / Cat Stevens: Homehttps://catstevens.com/En cacheTraduire cette page", + "snippet": "The new album, The Laughing Apple, available for pre-order now.", + "visible_link": "https://catstevens.com/", + "date": "", + "rank": 109 + }, + { + "link": "https://www.humane.org/adoptions/adoptable-cats/", + "title": "Adoptable Cats - Suncoast Humane Societyhttps://www.humane.org/adoptions/adoptable-cats/En cacheTraduire cette page", + "snippet": "23624598. Cat. Female/Spayed. Domestic Shorthair/Mix. 6 years 9 months ... 39046744. Cat. Male/Neutered. Domestic Shorthair/Mix. 7 years 11 months.", + "visible_link": "https://www.humane.org/adoptions/adoptable-cats/", + "date": "", + "rank": 110 + }, + { + "link": "https://thecatempire.com/", + "title": "The Cat Empirehttps://thecatempire.com/En cachePages similairesTraduire cette page", + "snippet": "Official Website of The Cat Empire – News, Tour Information, Photos, Videos, Music, Store, Subscribe.", + "visible_link": "https://thecatempire.com/", + "date": "", + "rank": 111 + }, + { + "link": "https://www.alleycat.org/", + "title": "Alley Cat Allies | An Advocacy Organization for Stray, Feral, and ...https://www.alleycat.org/En cachePages similairesTraduire cette page", + "snippet": "Are You From Paradise, CA and Looking for Your Cat? ... Trap Neuter Return - cat being released after neuter ... stray cats that have been spay or neutered ...", + "visible_link": "https://www.alleycat.org/", + "date": "", + "rank": 112 + }, + { + "link": "http://www.sspca.org/cats", + "title": "Cats - Sacramento SPCAwww.sspca.org/catsEn cachePages similairesTraduire cette page", + "snippet": "Come down to the Sacramento SPCA to meet your new best friend! All cats over 9 years of age are currently sponsored thanks to the friends of Jack Healy!", + "visible_link": "www.sspca.org/cats", + "date": "", + "rank": 113 + }, + { + "link": "https://www.rd.com/advice/pets/how-to-decode-your-cats-behavior/", + "title": "Cat Behavior: Things Your Cat Wants to Tell You | Reader's Digesthttps://www.rd.com/advice/pets/how-to-decode-your-cats-behavior/En cacheTraduire cette page", + "snippet": "Wish you had a secret decoder guide to cat behavior and cat language? Here's a primer to things your cat wishes you understood.", + "visible_link": "https://www.rd.com/advice/pets/how-to-decode-your-cats-behavior/", + "date": "", + "rank": 114 + }, + { + "link": "https://www.awanj.org/adopt-a-cat/", + "title": "Adopt a Cat - Animal Welfare Association of NJhttps://www.awanj.org/adopt-a-cat/En cacheTraduire cette page", + "snippet": "AWA is a no-kill animal shelter and low cost spay/neuter clinic in South Jersey with a venerable cat and puppy adoption program. Meet your furry companion.", + "visible_link": "https://www.awanj.org/adopt-a-cat/", + "date": "", + "rank": 115 + }, + { + "link": "https://www.spcaflorida.org/adopt-a-cat/", + "title": "Adopt a Cat - SPCA Floridahttps://www.spcaflorida.org/adopt-a-cat/En cachePages similairesTraduire cette page", + "snippet": "Having trouble viewing our adoptable cats? Petango is best optimized using Internet Explorer; try using Internet Explorer to view our pets. If you are still unable ...", + "visible_link": "https://www.spcaflorida.org/adopt-a-cat/", + "date": "", + "rank": 116 + }, + { + "link": "https://www.kyhumane.org/adopt/cats", + "title": "Adoptable Cats - Kentucky Humane Societyhttps://www.kyhumane.org/adopt/catsEn cacheTraduire cette page", + "snippet": "FIV+ cats are available for an adoption fee of $5. The cats identified as positive for FIV or Feline Immunodeficiency Virus include \"Fabulous FIVe\" with their name ...", + "visible_link": "https://www.kyhumane.org/adopt/cats", + "date": "", + "rank": 117 + }, + { + "link": "https://tenor.com/search/cat-gifs", + "title": "Cat GIFs | Tenorhttps://tenor.com/search/cat-gifsEn cacheTraduire cette page", + "snippet": "With Tenor, maker of GIF Keyboard, add popular Cat animated GIFs to your conversations. Share the best GIFs now >>>", + "visible_link": "https://tenor.com/search/cat-gifs", + "date": "", + "rank": 118 + }, + { + "link": "https://www.petmd.com/cat/emergency/common-emergencies/e_ct_excessive_sneezing_nasal_discharge", + "title": "Sneezing in Cats: Excessive Cat Sneezing & Nasal Discharge | petMD ...https://www.petmd.com/cat/.../e_ct_excessive_sneezing_nasal_disc...En cacheTraduire cette page", + "snippet": "If your cat sneezes a lot & has nasal discharge, it may be an upper respiratory infection. Learn about cat sneezing and how to treat a cat with a cold on petMD.", + "visible_link": "https://www.petmd.com/cat/.../e_ct_excessive_sneezing_nasal_disc...", + "date": "", + "rank": 119 + }, + { + "link": "https://www.centrecountypaws.org/cats", + "title": "Adopt A Cat or Kitten | Centre County PAWShttps://www.centrecountypaws.org/catsEn cacheTraduire cette page", + "snippet": "Centre County PAWS is the premiere animal shelter in central Pennsylvania for adopting and rehoming cats and kittens. Learn more about our current cats ...", + "visible_link": "https://www.centrecountypaws.org/cats", + "date": "", + "rank": 120 + }, + { + "link": "https://www.groupecat.com/?lang=fr", + "title": "Groupe CAT: Welcomehttps://www.groupecat.com/?lang=frEn cacheTraduire cette page", + "snippet": "Groupe CAT is one of the European independent leaders in transport and vehicle logistics. Present in the market for more than 60 years in 27 countries with over ...", + "visible_link": "https://www.groupecat.com/?lang=fr", + "date": "", + "rank": 121 + }, + { + "link": "https://spcanevada.org/programs/adoptable-animals/cats/", + "title": "Cats - The SPCA of Northern Nevadahttps://spcanevada.org/programs/adoptable-animals/cats/En cachePages similairesTraduire cette page", + "snippet": "32143398. Cat. Female/Spayed. Domestic Shorthair/Mix. 6 years 10 months. Colony B. Photo · Skittles. 35085870. Cat. Female/Spayed. Domestic Shorthair/Mix.", + "visible_link": "https://spcanevada.org/programs/adoptable-animals/cats/", + "date": "", + "rank": 122 + }, + { + "link": "https://www.lollypop.org/adopt/adoptable-pets/", + "title": "Adopt a Pet | Lollypop Farmhttps://www.lollypop.org/adopt/adoptable-pets/En cacheTraduire cette page", + "snippet": "Adopt a pet -- dogs, cats, rabbits, small animals, birds, reptiles, and more -- at Lollypop Farm, the Humane Society of Greater Rochester.", + "visible_link": "https://www.lollypop.org/adopt/adoptable-pets/", + "date": "", + "rank": 123 + }, + { + "link": "http://www.swh.org/cat-adoptions.html", + "title": "Cat Adoptions - Humane Society Of Southwest Missouriwww.swh.org/cat-adoptions.htmlEn cachePages similairesTraduire cette page", + "snippet": "35598523. Cat. Male/Neutered. Domestic Shorthair/Mix. 2 years 1 month. Adoption Cats. Photo. Cersei. 35960629. Cat. Female/Spayed. Domestic Shorthair/Mix.", + "visible_link": "www.swh.org/cat-adoptions.html", + "date": "", + "rank": 124 + }, + { + "link": "https://www.wow-petopia.com/family.php?id=cat", + "title": "Cats - Petopiahttps://www.wow-petopia.com/family.php?id=catEn cacheTraduire cette page", + "snippet": "Panthara. Panthara require a trick to tame. Farm up some Fresh Talbuk Meat from talbuks on Argus; approach your target; throw a Freezing Trap; Feign Death to ...", + "visible_link": "https://www.wow-petopia.com/family.php?id=cat", + "date": "", + "rank": 125 + }, + { + "link": "https://upaws.org/animals/adopt-a-cat/", + "title": "Adopt a Cat - Upper Peninsula Animal Welfare Shelterhttps://upaws.org/animals/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Nolan - Lonely Heart. Domestic Medium Hair - Neutered Male 15 years, 5 months. In Shelter. Patsy. Domestic Shorthair - Spayed Female 4 years, 9 months", + "visible_link": "https://upaws.org/animals/adopt-a-cat/", + "date": "", + "rank": 126 + }, + { + "link": "https://www.bbc.com/news/world-us-canada-48308638", + "title": "Grumpy Cat internet legend dies - BBC Newshttps://www.bbc.com/news/world-us-canada-48308638En cacheTraduire cette page", + "snippet": "17 mai 2019 - Hers was the feline face that launched a thousand memes, but Grumpy Cat is no more.", + "visible_link": "https://www.bbc.com/news/world-us-canada-48308638", + "date": "17 mai 2019 - ", + "rank": 127 + }, + { + "link": "http://www.charlottesville.org/departments-and-services/city-services/charlottesville-area-transit-cat", + "title": "Charlottesville Area Transit (CAT) | City of Charlottesvillewww.charlottesville.org/...and.../charlottesville-area-transit-catEn cacheTraduire cette page", + "snippet": "CAT provides bus service to the greater Charlottesville area. Riders enjoy safe, clean, and comfortable service Sunday through Saturday. Download our Rider's ...", + "visible_link": "www.charlottesville.org/...and.../charlottesville-area-transit-cat", + "date": "", + "rank": 128 + }, + { + "link": "http://www.waysidewaifs.org/site/PageServer?pagename=Available_cats_new", + "title": "Cat and Kitten Available for Adoption in Kansas City - Wayside Waifs ...www.waysidewaifs.org/site/PageServer?pagename=Available_cats...En cachePages similairesTraduire cette page", + "snippet": "Available Cats. View Kitty Cam. Adoption Hours. Monday: Closed for adoptions. Tuesday–Friday: Noon–8pm. Saturday & Sunday: 10am–5pm. Visit Us.", + "visible_link": "www.waysidewaifs.org/site/PageServer?pagename=Available_cats...", + "date": "", + "rank": 129 + }, + { + "link": "http://www.niagaraspca.org/adoptable-cats.html", + "title": "Cats and Kittens Available for Adoption | Adopt a Cat | Niagara SPCAwww.niagaraspca.org/adoptable-cats.htmlEn cachePages similairesTraduire cette page", + "snippet": "The Niagara SPCA offers several Cats and Kittens for Adoption. Come see our facility today and find the 4 legged friend that's ready to come home with you!", + "visible_link": "www.niagaraspca.org/adoptable-cats.html", + "date": "", + "rank": 130 + }, + { + "link": "https://www.proplan.com/cat", + "title": "Cat | Purina® Pro Plan®https://www.proplan.com/catEn cacheTraduire cette page", + "snippet": "Purina Pro Plan pet food is trusted by professionals and crafted with pride to offer Nutrition That Performs for dogs and cats. Dog Food, Cat Food, and Treats.", + "visible_link": "https://www.proplan.com/cat", + "date": "", + "rank": 131 + }, + { + "link": "https://bschool.careers360.com/exams/cat", + "title": "CAT 2019 Exam - Dates, Notification, Eligibility, Application Form ...https://bschool.careers360.com/exams/catEn cacheTraduire cette page", + "snippet": "CAT or Common Admission Test, the most popular national level management entrance exam is expected to be conducted by Indian Institute of Management ...", + "visible_link": "https://bschool.careers360.com/exams/cat", + "date": "", + "rank": 132 + }, + { + "link": "https://cat.eduroam.org/", + "title": "eduroam CAThttps://cat.eduroam.org/Pages similairesTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://cat.eduroam.org/", + "date": "", + "rank": 133 + }, + { + "link": "https://rabbit.org/journal/2-11/cats-and-rabbits.html", + "title": "Cats and Rabbits - House Rabbit Societyhttps://rabbit.org/journal/2-11/cats-and-rabbits.htmlEn cacheTraduire cette page", + "snippet": "Cats and Rabbits Amy Shapiro A cat and a rabbit really can be friends. Yes, really. What seems an unlikely combination, given the predator-prey context that first ...", + "visible_link": "https://rabbit.org/journal/2-11/cats-and-rabbits.html", + "date": "", + "rank": 134 + }, + { + "link": "https://www.arflife.org/cats", + "title": "ARF | Catshttps://www.arflife.org/catsEn cachePages similairesTraduire cette page", + "snippet": "Cat - $75 2 Cats - $100. Kitten (< 6 months) - $125 2 Kittens - $200. Dog - $250. Puppy (< 6 months) - $300. Select animals have pre-paid fees. Credit card and ...", + "visible_link": "https://www.arflife.org/cats", + "date": "", + "rank": 135 + }, + { + "link": "http://www.austinhumanesociety.org/feline-friends/", + "title": "Available Cats - Austin Humane Societywww.austinhumanesociety.org/feline-friends/En cachePages similairesTraduire cette page", + "snippet": "Available Cats. Find your forever friend today! Take a look at the cats currently residing at the Austin Humane Society who are available for adoption. They can't ...", + "visible_link": "www.austinhumanesociety.org/feline-friends/", + "date": "", + "rank": 136 + }, + { + "link": "https://www.cnbc.com/quotes/?symbol=CAT", + "title": "CAT: Caterpillar Inc - Stock Quote and News - CNBChttps://www.cnbc.com/quotes/?symbol=CATEn cacheTraduire cette page", + "snippet": "Get Caterpillar Inc (CAT:NYSE) real-time stock quotes, news and financial information from CNBC.", + "visible_link": "https://www.cnbc.com/quotes/?symbol=CAT", + "date": "", + "rank": 137 + }, + { + "link": "https://www.ema.europa.eu/en/committees/committee-advanced-therapies-cat", + "title": "Committee for Advanced Therapies (CAT) | European Medicines Agencyhttps://www.ema.europa.eu/en/.../committee-advanced-therapies-ca...En cacheTraduire cette page", + "snippet": "The Committee for Advanced Therapies (CAT) is the European Medicines Agency's (EMA) committee responsible for assessing the quality, safety and efficacy of ...", + "visible_link": "https://www.ema.europa.eu/en/.../committee-advanced-therapies-ca...", + "date": "", + "rank": 138 + }, + { + "link": "https://www.meowfoundation.com/resources/new-cat/", + "title": "Integrating a New Cat in Your Home | MEOW Foundationhttps://www.meowfoundation.com/resources/new-cat/En cacheTraduire cette page", + "snippet": "Whether you're bringing home your first, second or fifth cat, it's extremely important to prepare ahead of time. Before making the decision to add a new cat to your ...", + "visible_link": "https://www.meowfoundation.com/resources/new-cat/", + "date": "", + "rank": 139 + }, + { + "link": "https://www.young-williams.org/adopt-a-pet/adopt-a-cat/", + "title": "Cats - Young-Williams Animal Centerhttps://www.young-williams.org/adopt-a-pet/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Adopt a Cat. Cat Adoption Application (NOTE: application does not place animals on hold or guarantee approval for adoption) · Daphne. Puma. Norley. Corlan.", + "visible_link": "https://www.young-williams.org/adopt-a-pet/adopt-a-cat/", + "date": "", + "rank": 140 + }, + { + "link": "https://www.thinkingoutsidethecage.org/meet-animals/adopt/cats/", + "title": "Cats - Animal Friends, Inc.https://www.thinkingoutsidethecage.org › Animals › AdoptEn cacheTraduire cette page", + "snippet": "Thank you for your interest in adopting a homeless cat! Before you get started, take a moment to read our adoption guidelines to learn more about adopting from ...", + "visible_link": "https://www.thinkingoutsidethecage.org › Animals › Adopt", + "date": "", + "rank": 141 + }, + { + "link": "https://westvalleyhumanesociety.org/adopt%20cat.htm", + "title": "Adopt Cat - West Valley Humane Societyhttps://westvalleyhumanesociety.org/adopt%20cat.htmEn cacheTraduire cette page", + "snippet": "ADOPTABLE CATS. ​The felines you see are ALL available for. adoption! Our website is updated in real time,. who you see on the page is who is in the shelter.", + "visible_link": "https://westvalleyhumanesociety.org/adopt%20cat.htm", + "date": "", + "rank": 142 + }, + { + "link": "https://www.catchacat.org/maps-and-schedules/current-schedules/", + "title": "Current Schedules | Chatham Area Transit (CAT)https://www.catchacat.org/maps-and-schedules/current-schedules/En cacheTraduire cette page", + "snippet": "System Map. Click image to enlarge Savannah-SystemMapPoster2018-cropped. or try out the new CAT Interactive transit system map to see our entire fixed ...", + "visible_link": "https://www.catchacat.org/maps-and-schedules/current-schedules/", + "date": "", + "rank": 143 + }, + { + "link": "https://www.zennioptical.com/cat-eye-glasses", + "title": "Cat-Eye Glasses | Zenni Opticalhttps://www.zennioptical.com/cat-eye-glassesEn cacheTraduire cette page", + "snippet": "Cat eye frames and cat eye reading glasses are currently one of our most popular styles available. Don't let our incredibly low prices pass you by. Buy now!", + "visible_link": "https://www.zennioptical.com/cat-eye-glasses", + "date": "", + "rank": 144 + }, + { + "link": "https://catcora.com/", + "title": "Cat Cora - First Female Iron Chefhttps://catcora.com/En cacheTraduire cette page", + "snippet": "Cat Cora is a world-renowned celebrity chef, author, restaurateur, contributing editor, television host and personality, actress, avid philanthropist, health and ...", + "visible_link": "https://catcora.com/", + "date": "", + "rank": 145 + }, + { + "link": "https://www.loc.gov/free-to-use/cats", + "title": "Cats - Library of Congresshttps://www.loc.gov/free-to-use/catsEn cacheTraduire cette page", + "snippet": "This free-to-use set features images of cats found in the Library's collections. Staff \"experts\" contributed their favorite photos, posters & illustrations. Enjoy!", + "visible_link": "https://www.loc.gov/free-to-use/cats", + "date": "", + "rank": 146 + }, + { + "link": "https://animalcenter.org/adopt-a-pet/adoptable-cats", + "title": "Cat & Kittens for Adoption in San Diego | Helen Woodward Animal ...https://animalcenter.org › Adopt a PetEn cachePages similairesTraduire cette page", + "snippet": "Adopt a kitten or cat from San Diego County's Helen Woodward Animal Center today! Our Counselors will help you choose the best feline for your lifestyle ...", + "visible_link": "https://animalcenter.org › Adopt a Pet", + "date": "", + "rank": 147 + }, + { + "link": "https://cat-bounce.com/", + "title": "CAT BOUNCE!https://cat-bounce.com/En cacheTraduire cette page", + "snippet": "Cat Bounce! A website of bouncing cats.", + "visible_link": "https://cat-bounce.com/", + "date": "", + "rank": 148 + }, + { + "link": "https://www.thehonestkitchen.com/cat-food", + "title": "Grain Free Dehydrated Cat Food - The Honest Kitchenhttps://www.thehonestkitchen.com/cat-foodEn cacheTraduire cette page", + "snippet": "Our grain free cat foods are minimally processed and are high in protein & moisture. They are free of any by products, preservatives and added sugars.", + "visible_link": "https://www.thehonestkitchen.com/cat-food", + "date": "", + "rank": 149 + }, + { + "link": "https://trupanion.com/pet-insurance/cat-insurance", + "title": "Cat & Kitten Insurance - Health Coverage for Injury & Illness | Trupanionhttps://trupanion.com/pet-insurance/cat-insuranceEn cacheTraduire cette page", + "snippet": "Trupanion cat and kitten insurance has 90% financial coverage for accidents and illnesses with no payout limit. Get a quick quote now.", + "visible_link": "https://trupanion.com/pet-insurance/cat-insurance", + "date": "", + "rank": 150 + }, + { + "link": "https://abcbirds.org/program/cats-indoors/", + "title": "Cats Indoors - American Bird Conservancyhttps://abcbirds.org/program/cats-indoors/En cachePages similairesTraduire cette page", + "snippet": "Looking for practical solutions to keep your cat safe while protecting birds? Check out ABC's Happy Cats, Healthy Birds campaign page.", + "visible_link": "https://abcbirds.org/program/cats-indoors/", + "date": "", + "rank": 151 + }, + { + "link": "https://www.cattownoakland.org/adopt", + "title": "Adopt a Cat - Adopt — Cat Townhttps://www.cattownoakland.org/adoptEn cacheTraduire cette page", + "snippet": "See all our current adoptable cats below. Please email info@cattownoakland.org so we can help you find your match! Cat Town adoption fees are $75 for a ...", + "visible_link": "https://www.cattownoakland.org/adopt", + "date": "", + "rank": 152 + }, + { + "link": "https://www.okhumane.org/adopt/cats/", + "title": "Cats for Adoption: Adopt a Cat or Kitten in OKC | OK Humane Societyhttps://www.okhumane.org › Adoption InformationEn cacheTraduire cette page", + "snippet": "Adopt a cat or kitten in OKC from the Central Oklahoma Humane Society! Come see our cats up for adoption, and meet your new best friend.", + "visible_link": "https://www.okhumane.org › Adoption Information", + "date": "", + "rank": 153 + }, + { + "link": "https://furkids.org/cat-adoptions", + "title": "Cat Adoptions | Atlanta Animal Shelter | Furkids | Furkids - Georgia's ...https://furkids.org/cat-adoptionsEn cachePages similairesTraduire cette page", + "snippet": "Learn more about how you can adopt a cat from the largest no kill animal shelter in Atlanta. Choose from hundreds of cats that are looking for a good home.", + "visible_link": "https://furkids.org/cat-adoptions", + "date": "", + "rank": 154 + }, + { + "link": "https://www.meowingtons.com/products/fruit-tart-cat-bed", + "title": "Fruit Tart Cat Bed – Meowingtonshttps://www.meowingtons.com › ProductsEn cacheTraduire cette page", + "snippet": "The only thing sweeter than your cat is this Fruit Tart Cat Bed! This playful novelty cat bed is ideal for the cat lover with a sense of whimsy and imagination.", + "visible_link": "https://www.meowingtons.com › Products", + "date": "", + "rank": 155 + }, + { + "link": "https://catfriendly.com/cat-care-at-home/what-your-cat-needs-to-feel-secure/", + "title": "What Your Cat Needs to Feel Secure | Cat Friendly Homeshttps://catfriendly.com/cat...at.../what-your-cat-needs-to-feel-secure...En cacheTraduire cette page", + "snippet": "Like humans, cats have needs in order to make them feel happy and secure. To help understand the “core resources” your cat needs, think about when you ...", + "visible_link": "https://catfriendly.com/cat...at.../what-your-cat-needs-to-feel-secure...", + "date": "", + "rank": 156 + }, + { + "link": "http://www.sciencekids.co.nz/sciencefacts/animals/cat.html", + "title": "Fun Cat Facts for Kids - Interesting Facts about Cats & Kittenswww.sciencekids.co.nz/sciencefacts/animals/cat.htmlEn cachePages similairesTraduire cette page", + "snippet": "Cats can be lethal hunters and very sneaky, when they walk their back paws step almost exactly in the same place as the front paws did beforehand, this keeps ...", + "visible_link": "www.sciencekids.co.nz/sciencefacts/animals/cat.html", + "date": "", + "rank": 157 + }, + { + "link": "https://http.cat/", + "title": "HTTP Catshttps://http.cat/En cachePages similairesTraduire cette page", + "snippet": "An API for the awesome HTTP Cats! Use it in your website to show funny error messages.", + "visible_link": "https://http.cat/", + "date": "", + "rank": 158 + }, + { + "link": "https://www.grumpycats.com/", + "title": "The world's grumpiest cat! | Grumpy Cat®https://www.grumpycats.com/En cachePages similairesTraduire cette page", + "snippet": "The world's grumpiest cat! ... Some days are grumpier than others...… May 17th, 2019. Grumpy Cat: No-It-All -- Everything You Need to No ...", + "visible_link": "https://www.grumpycats.com/", + "date": "", + "rank": 159 + }, + { + "link": "https://www.washingtonpost.com/science/2019/06/05/cat-paws-may-soon-be-safe-new-york-state-is-poised-become-first-ban-declawing/", + "title": "Cat declawing ban passed by New York state lawmakers - The ...https://www.washingtonpost.com/.../cat-paws-may-soon-be-safe-ne...Traduire cette page", + "snippet": "Il y a 7 jours - New York is one signature away from becoming the first state in the country to ban cat declawing, a practice advocates say serves no benefit to ...", + "visible_link": "https://www.washingtonpost.com/.../cat-paws-may-soon-be-safe-ne...", + "date": "Il y a 7 jours - ", + "rank": 160 + }, + { + "link": "https://www.freekibble.com/kat/", + "title": "Freekibble Kat – Freekibblehttps://www.freekibble.com/kat/En cacheTraduire cette page", + "snippet": "Right or wrong, you win! Click on an answer, and every day you do, we'll provide kibble to animal shelters to help feed their hungry cats. Play every day – the ...", + "visible_link": "https://www.freekibble.com/kat/", + "date": "", + "rank": 161 + }, + { + "link": "https://catvets.com/cfp/cfp", + "title": "Cat Friendly Practices® | American Association of Feline Practitionershttps://catvets.com/cfp/cfpEn cacheTraduire cette page", + "snippet": "Why create the Cat Friendly Practice® program? Included are trends and statistics.", + "visible_link": "https://catvets.com/cfp/cfp", + "date": "", + "rank": 162 + }, + { + "link": "https://www.cbc.ca/news/canada/british-columbia/bcspca-catio-tour-build-an-outdoor-enclosure-for-your-cat-1.5168682", + "title": "Outdoor digs for your cat: B.C. SPCA shows off 'catios' to inspire others ...https://www.cbc.ca/.../bcspca-catio-tour-build-an-outdoor-enclosur...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - The B.C. SPCA is hoping a made-in-Portland concept will catch on with cat owners here. It wants to convince people to build cat-specific ...", + "visible_link": "https://www.cbc.ca/.../bcspca-catio-tour-build-an-outdoor-enclosur...", + "date": "Il y a 1 jour - ", + "rank": 163 + }, + { + "link": "https://www.catfootwear.com/US/en/home", + "title": "Cat Footwear: Caterpillar Work Boots - Comfortable Work Shoeshttps://www.catfootwear.com/US/en/homeEn cacheTraduire cette page", + "snippet": "Official Cat Footwear Site - Shop Caterpillar work boots, steel toe work boots & shoes along with casual shoes & casual boots. Free shipping!", + "visible_link": "https://www.catfootwear.com/US/en/home", + "date": "", + "rank": 164 + }, + { + "link": "http://www.catstest.com/", + "title": "FAA test, Private Pilot Exam & Aviation Test | CATSwww.catstest.com/En cachePages similairesTraduire cette page", + "snippet": "Are you looking for information on FAA tests, private pilot exams or CATS testing centers locations? Find all you need to know about aviation tests here.", + "visible_link": "www.catstest.com/", + "date": "", + "rank": 165 + }, + { + "link": "https://catscradle.com/", + "title": "Cat's Cradlehttps://catscradle.com/En cacheTraduire cette page", + "snippet": "Buckshot Betty. Show | 8pm // Doors | 7pm. $16 / Day Of : $18. Cat's Cradle Back Room · Buy Tickets · More Info. Sat, June 15 ...", + "visible_link": "https://catscradle.com/", + "date": "", + "rank": 166 + }, + { + "link": "https://www.cdc.gov/importation/bringing-an-animal-into-the-united-states/cats.html", + "title": "Cats | Bringing an Animal into U.S. | Importation | CDChttps://www.cdc.gov/importation/bringing-an-animal.../cats.htmlEn cacheTraduire cette page", + "snippet": "A general certificate of health is not required by CDC for entry of pet cats into the United States, although some airlines or states may require them. However, pet ...", + "visible_link": "https://www.cdc.gov/importation/bringing-an-animal.../cats.html", + "date": "", + "rank": 167 + }, + { + "link": "https://minecraft.gamepedia.com/Cat", + "title": "Cat – Official Minecraft Wikihttps://minecraft.gamepedia.com/CatEn cacheTraduire cette page", + "snippet": "19 nov. 2018 - Cats typically spawn upon generation wandering around in villages as strays, though adult black cats can also spawn in swamp huts as strays.", + "visible_link": "https://minecraft.gamepedia.com/Cat", + "date": "19 nov. 2018 - ", + "rank": 168 + }, + { + "link": "https://www.thefreedictionary.com/cat", + "title": "Cat - definition of cat by The Free Dictionaryhttps://www.thefreedictionary.com/catEn cacheTraduire cette page", + "snippet": "(Animals) Also called: domestic cat a small domesticated feline mammal, Felis catus (or domesticus), having thick soft fur and occurring in many breeds in which ...", + "visible_link": "https://www.thefreedictionary.com/cat", + "date": "", + "rank": 169 + }, + { + "link": "https://www.abc.net.au/life/how-to-prevent-dog-cat-pet-from-ruining-your-sex-life/11159542", + "title": "Preventing your dog or cat from interrupting your sex life - ABC Lifehttps://www.abc.net.au/life/how-to-prevent...cat.../11159542En cacheTraduire cette page", + "snippet": "Il y a 22 heures - Image It's common for pet owners to allow their dog or cat stay in the bedroom when they have sex. (Unsplash: Giorgio Encinas / ABC Life: ...", + "visible_link": "https://www.abc.net.au/life/how-to-prevent...cat.../11159542", + "date": "Il y a 22 heures - ", + "rank": 170 + }, + { + "link": "https://metro.co.uk/2019/06/10/nicole-kidman-admits-shes-a-huge-cat-person-and-loves-popping-them-into-backpack-for-outings-9892303/", + "title": "Nicole Kidman admits she's a huge cat person and loves popping ...https://metro.co.uk/.../nicole-kidman-admits-shes-a-huge-cat-perso...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - Nicole Kidman has revealed that she enjoys taking her cats for out for a stroll. The 51-year-old actress owns a lot of pets with her husband, ...", + "visible_link": "https://metro.co.uk/.../nicole-kidman-admits-shes-a-huge-cat-perso...", + "date": "Il y a 1 jour - ", + "rank": 171 + }, + { + "link": "https://dictionary.cambridge.org/dictionary/english/cat", + "title": "CAT | meaning in the Cambridge English Dictionaryhttps://dictionary.cambridge.org/dictionary/english/catEn cacheTraduire cette page", + "snippet": "cat definition: 1. a small animal with fur, four legs, a tail, and claws, usually kept as a pet or for catching mice 2. any member of the group of animals similar to the ...", + "visible_link": "https://dictionary.cambridge.org/dictionary/english/cat", + "date": "", + "rank": 172 + }, + { + "link": "https://www.bbc.co.uk/news/world-us-canada-48528968", + "title": "Cat declawing: Should it be banned, and why does it happen in the ...https://www.bbc.co.uk/news/world-us-canada-48528968En cacheTraduire cette page", + "snippet": "Il y a 6 jours - New York might become the first US state to ban cat declawing - but it's been illegal in Europe for years.", + "visible_link": "https://www.bbc.co.uk/news/world-us-canada-48528968", + "date": "Il y a 6 jours - ", + "rank": 173 + }, + { + "link": "https://vcahospitals.com/sylvaniavet/know-your-pet/cat-care", + "title": "Cat Care - VCA Animal Hospitalshttps://vcahospitals.com/sylvaniavet/know-your-pet/cat-careEn cacheTraduire cette page", + "snippet": "We've Got Positive Cattitude! We Want to Make Cat Care Easier for You. Has traveling with your feline friend been a challenge? Put an end to the stress with ...", + "visible_link": "https://vcahospitals.com/sylvaniavet/know-your-pet/cat-care", + "date": "", + "rank": 174 + }, + { + "link": "https://catprotection.org.au/", + "title": "Cat Protection Society of NSWhttps://catprotection.org.au/En cacheTraduire cette page", + "snippet": "As a charity, Cat Protection depends on community support to do our work. Our costs include professional care and advisory staff; veterinary expenses including ...", + "visible_link": "https://catprotection.org.au/", + "date": "", + "rank": 175 + }, + { + "link": "https://www.catpowermusic.com/", + "title": "Cat Powerhttps://www.catpowermusic.com/En cacheTraduire cette page", + "snippet": "Official website for Cat Power. The new album Wanderer will be out October 5th, 2018.", + "visible_link": "https://www.catpowermusic.com/", + "date": "", + "rank": 176 + }, + { + "link": "https://feline-nutrition.org/nutrition/making-raw-cat-food-for-do-it-yourselfers", + "title": "Feline Nutrition's Easy Homemade Cat Food Recipehttps://feline-nutrition.org › NutritionEn cacheTraduire cette page", + "snippet": "2 juin 2019 - Homemade cat food gives you control over what you feed kitty. It's nutritionally sound and economical.", + "visible_link": "https://feline-nutrition.org › Nutrition", + "date": "2 juin 2019 - ", + "rank": 177 + }, + { + "link": "https://www.petinsurance.com/cat-insurance", + "title": "Cat Insurance | Nationwide Cat and Kitten Insurance Planshttps://www.petinsurance.com/cat-insuranceEn cachePages similairesTraduire cette page", + "snippet": "The best cat & kitten insurance ever by Nationwide. Plans that cover wellness, illness, emergency & more. Use any vet. Up to 90% back on vet bills.", + "visible_link": "https://www.petinsurance.com/cat-insurance", + "date": "", + "rank": 178 + }, + { + "link": "https://www.thestar.com.my/news/nation/2019/06/11/police-investigating-case-of-cat-hanged-at-wangsa-maju-apartment-staircase/", + "title": "Police investigating case of cat hanged at Wangsa Maju apartment ...https://www.thestar.com.my/.../police-investigating-case-of-cat-han...En cacheTraduire cette page", + "snippet": "Il y a 6 heures - PETALING JAYA: Police are investigating the killing of a cat by hanging at an apartment in Section 2, Wangsa Maju, Kuala Lumpur.", + "visible_link": "https://www.thestar.com.my/.../police-investigating-case-of-cat-han...", + "date": "Il y a 6 heures - ", + "rank": 179 + }, + { + "link": "https://books.google.com/books?id=D1wZuTutJbwC&pg=PA76&lpg=PA76&dq=cat&source=bl&ots=rOUmtMeM2C&sig=ACfU3U0TnMwZvo2il3a_5dN-jKLcUAqEag&hl=fr&sa=X&ved=2ahUKEwjJuLbZm-LiAhUOY1AKHY9mAME4ZBDoATBWegQIYBAB", + "title": "The Cat and the Human Imagination: Feline Images from Bast to Garfieldhttps://books.google.com/books?isbn=0472087509Traduire cette page", + "snippet": "At the same time, of course, Baldwin passes on folklore about cats' magical powers. He gives this a novel application, however; for Mouse-slayer's preternatural ...", + "visible_link": "https://books.google.com/books?isbn=0472087509", + "date": "", + "rank": 180 + }, + { + "link": "https://www.peta.org/blog/pringle-cat-fire-rescue/", + "title": "Cat Survives a Devastating Fire—and Then Things Get Worse | PETAhttps://www.peta.org/blog/pringle-cat-fire-rescue/En cacheTraduire cette page", + "snippet": "Il y a 1 jour - A group of cats was left with nowhere to go when their home was reduced to ashes. Fortunately, their caretaker knew just whom to call.", + "visible_link": "https://www.peta.org/blog/pringle-cat-fire-rescue/", + "date": "Il y a 1 jour - ", + "rank": 181 + }, + { + "link": "https://gizmodo.com/scientists-save-schrodingers-cat-1835208353", + "title": "Scientists Save Schrödinger's Cat - Gizmodohttps://gizmodo.com/scientists-save-schrodingers-cat-1835208353En cacheTraduire cette page", + "snippet": "3 juin 2019 - One of the hallmark predictions of quantum mechanics is that particles behave unpredictably—but a new experiment seems to complicate ...", + "visible_link": "https://gizmodo.com/scientists-save-schrodingers-cat-1835208353", + "date": "3 juin 2019 - ", + "rank": 182 + }, + { + "link": "https://www.jacksongalaxy.com/blog/the-dos-and-donts-of-introducing-cats/", + "title": "The Do's and Don'ts of Introducing Cats - Jackson Galaxy Storehttps://www.jacksongalaxy.com/.../the-dos-and-donts-of-introduci...En cacheTraduire cette page", + "snippet": "9 avr. 2018 - The host of Animal Planet's \"My Cat From Hell\" shows you how the right way to introduce two cats.", + "visible_link": "https://www.jacksongalaxy.com/.../the-dos-and-donts-of-introduci...", + "date": "9 avr. 2018 - ", + "rank": 183 + }, + { + "link": "https://www.newyorker.com/magazine/2017/12/11/cat-person", + "title": "“Cat Person” | The New Yorkerhttps://www.newyorker.com/magazine/2017/12/11/cat-person", + "snippet": "4 déc. 2017 - She learned that Robert had two cats, named Mu and Yan, and together they invented a complicated scenario in which her childhood cat, Pita, ...", + "visible_link": "https://www.newyorker.com/magazine/2017/12/11/cat-person", + "date": "4 déc. 2017 - ", + "rank": 184 + }, + { + "link": "https://www.thesun.co.uk/news/9265838/giant-liger-world-biggest-cat-sabre/", + "title": "Giant 319kg 'sabre-tooth' lion-tiger crossbreed dubbed 'world's biggest ...https://www.thesun.co.uk/news/.../giant-liger-world-biggest-cat-sab...Traduire cette page", + "snippet": "Il y a 20 heures - A GIANT beast dubbed the world's biggest cat is drawing comparisons with the terrifying prehistoric sabre-toothed tiger. Incredible clips of the ...", + "visible_link": "https://www.thesun.co.uk/news/.../giant-liger-world-biggest-cat-sab...", + "date": "Il y a 20 heures - ", + "rank": 185 + }, + { + "link": "https://www.shopcaterpillar.cl/", + "title": "Cat | Tienda Online Cat Chilehttps://www.shopcaterpillar.cl/En cacheTraduire cette page", + "snippet": "Cat Life Style: Zapatos, zapatillas, ropa y accesorios para hombre y mujer. Despachos a todo Chile y cambios sin costo.", + "visible_link": "https://www.shopcaterpillar.cl/", + "date": "", + "rank": 186 + }, + { + "link": "https://books.google.com/books?id=jEwvCwAAQBAJ&pg=PA25&lpg=PA25&dq=cat&source=bl&ots=piEVZLuvfq&sig=ACfU3U22jNCx115HE1yycWvD_548S9iveg&hl=fr&sa=X&ved=2ahUKEwjJuLbZm-LiAhUOY1AKHY9mAME4ZBDoATBdegQIYhAB", + "title": "Cat Care: Nutrition, Exercise, Grooming, and Morehttps://books.google.com/books?isbn=1491483997Traduire cette page", + "snippet": "If your cat has plaque, receding gums, or is drooling, it may have gum disease or tooth decay. Your vet can clean your cat's teeth, but it can be expensive and ...", + "visible_link": "https://books.google.com/books?isbn=1491483997", + "date": "", + "rank": 187 + }, + { + "link": "https://books.google.com/books?id=a0_HEOrcH5IC&pg=PA190&lpg=PA190&dq=cat&source=bl&ots=Az8vPMAG9F&sig=ACfU3U1_YNMpOh0o2ADkoL3BmMn9tXE8tA&hl=fr&sa=X&ved=2ahUKEwjJuLbZm-LiAhUOY1AKHY9mAME4ZBDoATBeegQIYxAB", + "title": "The Best Little Cat House in Maryland: The True and Mostly Accurate ...https://books.google.com/books?isbn=1449008844Traduire cette page", + "snippet": "Four more cats arrived that night that weren't in much better shape than Charlotte. One was Old Boy, a cat that appeared to be older than dirt. He was covered in ...", + "visible_link": "https://books.google.com/books?isbn=1449008844", + "date": "", + "rank": 188 + }, + { + "link": "https://books.google.com/books?id=1-7SCQAAQBAJ&pg=PA3&lpg=PA3&dq=cat&source=bl&ots=3wtCIXlgOp&sig=ACfU3U1UdhAcEqjQ50IW4aFY8xWBLWHqMw&hl=fr&sa=X&ved=2ahUKEwjJuLbZm-LiAhUOY1AKHY9mAME4ZBDoATBfegQIXxAB", + "title": "How to Understand and Take Care of Your Persian Kitten & Cathttps://books.google.com/books?isbn=1329174380Traduire cette page", + "snippet": "11. 12. 13. 14. 1. THE CHARACTERISTICS OF A PERSIAN CAT 2. ITEMS YOU SHOULD NEVER LET YOUR CAT EAT 3. HOW TO TRIM YOUR CATS NAILS 4.", + "visible_link": "https://books.google.com/books?isbn=1329174380", + "date": "", + "rank": 189 + }, + { + "link": "https://www.livescience.com/65652-schrodingers-cat-saved.html", + "title": "Physicists Turn Back Time on Doomed Schrödinger's Cat to Save Ithttps://www.livescience.com › Strange NewsEn cacheTraduire cette page", + "snippet": "Il y a 5 jours - There may be a grain of hope for physics' most famous doomed feline, Schrödinger's cat. But in a recent study, Yale physicists were able to ...", + "visible_link": "https://www.livescience.com › Strange News", + "date": "Il y a 5 jours - ", + "rank": 190 + }, + { + "link": "https://www.aphis.usda.gov/aphis/pet-travel/bring-pet-into-the-united-states/pet-travel-cats-into-us", + "title": "Pet Travel - Bringing Cats into the US - USDA APHIShttps://www.aphis.usda.gov/aphis/pet.../pet-travel-cats-into-usEn cachePages similairesTraduire cette page", + "snippet": "20 juil. 2016 - USDA APHIS Veterinary Services (VS) does not have any animal health requirements related to bringing (importing) a pet cat into the United ...", + "visible_link": "https://www.aphis.usda.gov/aphis/pet.../pet-travel-cats-into-us", + "date": "20 juil. 2016 - ", + "rank": 191 + }, + { + "link": "https://books.google.com/books?id=odtQCwAAQBAJ&pg=PP14&lpg=PP14&dq=cat&source=bl&ots=jhBlkpN3ZO&sig=ACfU3U2FHlVxBXdkRjsISGP1UqAjKBTfAA&hl=fr&sa=X&ved=2ahUKEwjJuLbZm-LiAhUOY1AKHY9mAME4ZBDoATBiegQIYRAB", + "title": "Caring For Your Cat: The Official Feline Guidehttps://books.google.com/books?isbn=3739615621Traduire cette page", + "snippet": "cats cats Publisher: BookRix GmbH & Co. KG Sonnenstraße 23 80331 Munich. cats cats cats cats cats cats cats cats cats cats cats cats cats cats cats cats cats ...", + "visible_link": "https://books.google.com/books?isbn=3739615621", + "date": "", + "rank": 192 + }, + { + "link": "https://shop4-h.org/collections/searchresults?type=product&q=cat+curriculum", + "title": "Cat Curriculum - Shop 4-Hhttps://shop4-h.org/collections/searchresults?type=product...cat...Traduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://shop4-h.org/collections/searchresults?type=product...cat...", + "date": "", + "rank": 193 + }, + { + "link": "https://www.msn.com/en-us/video/be-prepared/cat-plays-peekaboo-with-owner/vp-AACID0V", + "title": "Cat Plays Peekaboo with Owner - MSN.comhttps://www.msn.com/en-us/video/be.../cat-plays.../vp-AACID0VTraduire cette page", + "snippet": "Sheldon the cat loved to play peekaboo with his owner. Adorably, his owner repeatedly turned around and ...", + "visible_link": "https://www.msn.com/en-us/video/be.../cat-plays.../vp-AACID0V", + "date": "", + "rank": 194 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3317329/", + "title": "Cat ownership and the Risk of Fatal Cardiovascular Diseases. Results ...https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3317329/En cachePages similairesTraduire cette page", + "snippet": "There was also a trend for decreased risk for death due to cardiovascular diseases among participants with past cat ownership (RR, 0.74; 95% CI, 0.55 to 1.0).", + "visible_link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3317329/", + "date": "", + "rank": 195 + }, + { + "link": "https://www.americanhumane.org/fact-sheet/introducing-dogs-to-cats/", + "title": "Introducing Dogs to Cats - American Humanehttps://www.americanhumane.org/fact.../introducing-dogs-to-cats/En cachePages similairesTraduire cette page", + "snippet": "25 août 2016 - Whether you already have a dog and are considering getting a cat, or vice versa, it is very important to think about their first introduction.", + "visible_link": "https://www.americanhumane.org/fact.../introducing-dogs-to-cats/", + "date": "25 août 2016 - ", + "rank": 196 + }, + { + "link": "https://www.healthline.com/health/allergies/cats", + "title": "Cat Allergies: Symptoms and Treatment - Healthlinehttps://www.healthline.com/health/allergies/catsEn cacheTraduire cette page", + "snippet": "21 août 2017 - Nearly a third of Americans with allergies are allergic to cats and dogs. And twice as many people have cat allergies than dog allergies.", + "visible_link": "https://www.healthline.com/health/allergies/cats", + "date": "21 août 2017 - ", + "rank": 197 + }, + { + "link": "https://www.3pagansandacat.com/047", + "title": "3 Pagans and a Cat Episode 047: Solar Festivals: Lithahttps://www.3pagansandacat.com/047En cacheTraduire cette page", + "snippet": "Il y a 21 heures - The second year of holiday content, continuing with June's Sun Festival: Litha.", + "visible_link": "https://www.3pagansandacat.com/047", + "date": "Il y a 21 heures - ", + "rank": 198 + } + ] + } + }, + "mouse": { + "1": { + "time": "Tue, 11 Jun 2019 19:59:17 GMT", + "num_results": "Environ 1 160 000 000 résultats (0,53 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://en.wikipedia.org/wiki/Mouse", + "title": "Mouse - Wikipediahttps://en.wikipedia.org/wiki/MouseEn cachePages similairesTraduire cette page", + "snippet": "A mouse, plural mice, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail, and a high breeding rate. The best ...", + "visible_link": "https://en.wikipedia.org/wiki/Mouse", + "date": "", + "rank": 1 + }, + { + "link": "https://en.wikipedia.org/wiki/Computer_mouse", + "title": "Computer mouse - Wikipediahttps://en.wikipedia.org/wiki/Computer_mouseEn cachePages similairesTraduire cette page", + "snippet": "A computer mouse is a hand-held pointing device that detects two-dimensional motion relative to a surface. This motion is typically translated into the motion of a ...", + "visible_link": "https://en.wikipedia.org/wiki/Computer_mouse", + "date": "", + "rank": 2 + }, + { + "link": "https://www.amazon.com/AmazonBasics-3-Button-Wired-Mouse-Black/dp/B005EJH6RW", + "title": "AmazonBasics 3-Button USB Wired Computer Mouse ... - Amazon.comhttps://www.amazon.com/AmazonBasics...Mouse.../B005EJH6RWEn cachePages similairesTraduire cette page", + "snippet": "Buy AmazonBasics 3-Button USB Wired Computer Mouse (Black): Mice - Amazon.com ✓ FREE DELIVERY possible on eligible purchases.", + "visible_link": "https://www.amazon.com/AmazonBasics...Mouse.../B005EJH6RW", + "date": "", + "rank": 3 + }, + { + "link": "https://www.bestbuy.com/site/computer-accessories/mice-keyboards/abcat0513000.c?id=abcat0513000", + "title": "PC Mouse and Keyboard Options - Best Buyhttps://www.bestbuy.com › ... › Computer Accessories & PeripheralsEn cacheTraduire cette page", + "snippet": "Compare, review and shop at Best Buy for a great new keyboard or mouse for your computer.", + "visible_link": "https://www.bestbuy.com › ... › Computer Accessories & Peripherals", + "date": "", + "rank": 4 + }, + { + "link": "https://www.gearbest.com/mice-keyboards-c_11261/", + "title": "Mouse - Best Mouse Online shopping | Gearbest.comhttps://www.gearbest.com › ... › Computer PeripheralsEn cacheTraduire cette page", + "snippet": "Enjoy massive discounts on the best Mouse products: Hot Mouse, Mouse items & more. Shop sparkling deals at Gearbest.com with free delivery.", + "visible_link": "https://www.gearbest.com › ... › Computer Peripherals", + "date": "", + "rank": 5 + }, + { + "link": "https://www.computerhope.com/jargon/m/mouse.htm", + "title": "What is a Computer Mouse?https://www.computerhope.com › Dictionary › Mouse TermsEn cacheTraduire cette page", + "snippet": "5 avr. 2019 - Computer mouse definition on what computer mouse means, including pictures, types of mice, and the most common questions and help ...", + "visible_link": "https://www.computerhope.com › Dictionary › Mouse Terms", + "date": "5 avr. 2019 - ", + "rank": 6 + }, + { + "link": "https://mousemovement.com/", + "title": "MOUSE GRIPTAPE Official Site | MOUSE MOVEMENThttps://mousemovement.com/En cachePages similairesTraduire cette page", + "snippet": "Skateboarding griptape hand sprayed by artist Mouse in Oceanside California. Free shipping on US orders over $75.", + "visible_link": "https://mousemovement.com/", + "date": "", + "rank": 7 + }, + { + "link": "https://mouse.org/", + "title": "Mouse | Home Pagehttps://mouse.org/En cachePages similairesTraduire cette page", + "snippet": "Mouse is a national youth development nonprofit that empowers students to create with technology, solve real problems and make meaningful change in our…", + "visible_link": "https://mouse.org/", + "date": "", + "rank": 8 + }, + { + "link": "https://www.logitech.com/en-us/mice", + "title": "Mice, Computer Mice, Mac & PC Wireless Mice | Logitechhttps://www.logitech.com/en-us/miceEn cacheTraduire cette page", + "snippet": "Wireless Mouse M310 Full-size, Optical mouse $ 29.99. Compare. B100 Optical USB Mouse $ 8.99. Wireless Trackball M570 $ 59.99. Trackman Marble $ 29.99.", + "visible_link": "https://www.logitech.com/en-us/mice", + "date": "", + "rank": 9 + }, + { + "link": "https://www.logitechg.com/en-us/products/gaming-mice.html", + "title": "Gaming Mice, Wireless Gaming Mice, Mac & PC, MOBA & FPS ...https://www.logitechg.com/en-us/products/gaming-mice.htmlEn cacheTraduire cette page", + "snippet": "Logitech G professional gaming mice are engineered to compete. MOBA gaming mouse, Ultra-fast FPS gaming mouse, tunable gaming mouse, and many more ...", + "visible_link": "https://www.logitechg.com/en-us/products/gaming-mice.html", + "date": "", + "rank": 10 + }, + { + "link": "https://www.logitechg.com/en-us/products/gaming-mice/g502-lightspeed-wireless-gaming-mouse.html", + "title": "Logitech G502 LIGHTSPEED Wireless Gaming Mousehttps://www.logitechg.com/.../g502-lightspeed-wireless-gaming-m...En cacheTraduire cette page", + "snippet": "The iconic G502 gaming mouse from Logitech G now remastered with superfast LIGHTSPEED wireless, redesigned internals, and POWERPLAY compatibility.", + "visible_link": "https://www.logitechg.com/.../g502-lightspeed-wireless-gaming-m...", + "date": "", + "rank": 11 + }, + { + "link": "https://www.makeuseof.com/tag/finally-fix-windows-10-mouse-issues/", + "title": "Mouse Not Working in Windows 10? How to Fix Your Mouse Problemshttps://www.makeuseof.com › WindowsEn cacheTraduire cette page", + "snippet": "Your third mouse issue fix is another driver-related issue. Your mouse lags and emits a strange beeping sound. Microsoft first addressed these issues way back ...", + "visible_link": "https://www.makeuseof.com › Windows", + "date": "", + "rank": 12 + }, + { + "link": "https://www.corsair.com/ca/en/Categories/Products/Gaming-Mice/c/Cor_Products_Mice", + "title": "Gaming Mice | CORSAIRhttps://www.corsair.com/ca/en/Categories/.../Cor_Products_MiceEn cacheTraduire cette page", + "snippet": "15 Products - SCIMITAR PRO RGB Optical MOBA/MMO Gaming Mouse — Yellow. $119.99. $119.99. SCIMITAR PRO RGB Optical MOBA/MMO Gaming Mouse — ...", + "visible_link": "https://www.corsair.com/ca/en/Categories/.../Cor_Products_Mice", + "date": "15 Products - ", + "rank": 13 + }, + { + "link": "https://www.corsair.com/eu/en/Categories/Products/Gaming-Mice/c/Cor_Products_Mice", + "title": "Gaming Mice | CORSAIRhttps://www.corsair.com/eu/en/Categories/.../Cor_Products_MiceEn cacheTraduire cette page", + "snippet": "17 Products - Dark Core RGB Wireless Gaming Mouse · GLAIVE - RGB Gaming Mouse · SCIMITAR PRO Gaming Mouse. Be the first to know. Product releases ...", + "visible_link": "https://www.corsair.com/eu/en/Categories/.../Cor_Products_Mice", + "date": "17 Products - ", + "rank": 14 + }, + { + "link": "https://www.merriam-webster.com/dictionary/mouse", + "title": "Mouse | Definition of Mouse by Merriam-Websterhttps://www.merriam-webster.com/dictionary/mouseEn cachePages similairesTraduire cette page", + "snippet": "Mouse definition is - any of numerous small rodents (as of the genus Mus) with pointed snout, rather small ears, elongated body, and slender tail. How to use ...", + "visible_link": "https://www.merriam-webster.com/dictionary/mouse", + "date": "", + "rank": 15 + }, + { + "link": "https://pcpartpicker.com/products/mouse/", + "title": "Choose A Mouse - PCPartPickerhttps://pcpartpicker.com/products/mouse/En cachePages similairesTraduire cette page", + "snippet": "Tracking Method. Optical. Connection Type. Wired. Maximum DPI. 16000. Hand Orientation. Right. Color. Black / Green. (35), $44.99. Add. Corsair Harpoon ...", + "visible_link": "https://pcpartpicker.com/products/mouse/", + "date": "", + "rank": 16 + }, + { + "link": "https://www.logitech.com/en-us/combos", + "title": "Keyboard Mouse Combos, Wireless Keyboard & Mouse ... - Logitechhttps://www.logitech.com/en-us/combosEn cacheTraduire cette page", + "snippet": "Shop for keyboard-mouse combos for PC and Mac. Compare features and find the perfect combo for you. Learn more now.", + "visible_link": "https://www.logitech.com/en-us/combos", + "date": "", + "rank": 17 + }, + { + "link": "https://www.razer.com/gaming-mice-and-mats", + "title": "Razer Gaming Mouse and Mat: Wireless Mouse, Ergonomic Mouse ...https://www.razer.com/gaming-mice-and-matsEn cacheTraduire cette page", + "snippet": "Razer's best gaming mice - Razer DeathAdder, Lancehead, Mamba & more are designed and engineered with ergonomics, wireless technology & performance ...", + "visible_link": "https://www.razer.com/gaming-mice-and-mats", + "date": "", + "rank": 18 + }, + { + "link": "https://www.hyperxgaming.com/us/mice", + "title": "Pulsefire FPS Gaming Mouse - Designed for First Person Shooters ...https://www.hyperxgaming.com/us/miceEn cacheTraduire cette page", + "snippet": "The non-slip grip and fluid, responsive tracking makes the HyperX Pulsefire FPS Gaming Mouse perfect for FPS games such as CS:GO and Overwatch.", + "visible_link": "https://www.hyperxgaming.com/us/mice", + "date": "", + "rank": 19 + }, + { + "link": "https://www.petco.com/shop/en/petcostore/product/small-animal/live-small-animals/mouse-5004811--1", + "title": "Mouse | Petcohttps://www.petco.com/shop/en/petcostore/.../mouse-5004811--1En cacheTraduire cette page", + "snippet": "A mouse is a low maintenance mammal to keep as a companion animal. With cute and playful qualities, they are extremely active and social small animals.", + "visible_link": "https://www.petco.com/shop/en/petcostore/.../mouse-5004811--1", + "date": "", + "rank": 20 + }, + { + "link": "https://www.pcgamingrace.com/products/glorious-model-o-white", + "title": "Glorious Model O (Matte White) - The World's Lightest RGB Gaming ...https://www.pcgamingrace.com/products/glorious-model-o-whiteEn cacheTraduire cette page", + "snippet": "This is Model O the world's lightest, competetive-grade, RGB gaming mouse at 67 grams. Envisioned by a community of passionate gamers, and developed by a ...", + "visible_link": "https://www.pcgamingrace.com/products/glorious-model-o-white", + "date": "", + "rank": 21 + }, + { + "link": "https://www.theverge.com/2019/6/3/18647071/apple-ipad-os-mouse-support-wwdc-2019", + "title": "Apple's new iPadOS includes mouse support for iPads - The Vergehttps://www.theverge.com/.../apple-ipad-os-mouse-support-wwdc-...En cacheTraduire cette page", + "snippet": "3 juin 2019 - Apple is making a huge change to its new iPadOS, introducing mouse support for both USB and Bluetooth devices. iOS developer Steve ...", + "visible_link": "https://www.theverge.com/.../apple-ipad-os-mouse-support-wwdc-...", + "date": "3 juin 2019 - ", + "rank": 22 + }, + { + "link": "https://www.arduino.cc/reference/en/language/functions/usb/mouse/", + "title": "Mouse - Arduino Referencehttps://www.arduino.cc/reference/en/language/functions/.../mouse/En cacheTraduire cette page", + "snippet": "18 févr. 2019 - The mouse functions enable 32u4 or SAMD micro based boards to control cursor movement on a connected computer through their micro's ...", + "visible_link": "https://www.arduino.cc/reference/en/language/functions/.../mouse/", + "date": "18 févr. 2019 - ", + "rank": 23 + }, + { + "link": "https://www.apple.com/shop/product/MRME2LL/A/magic-mouse-2-space-gray", + "title": "Buy Magic Mouse 2 for Mac in Space Gray - Applehttps://www.apple.com › All Accessories › Mice & KeyboardsEn cacheTraduire cette page", + "snippet": "Easy tracking, multi-touch surface, and long battery life. Magic Mouse 2 looks and feels amazing in beautiful Space Gray. Buy now at apple.com.", + "visible_link": "https://www.apple.com › All Accessories › Mice & Keyboards", + "date": "", + "rank": 24 + }, + { + "link": "http://www.informatics.jax.org/", + "title": "MGI-Mouse Genome Informatics-The international database resource ...www.informatics.jax.org/En cachePages similairesTraduire cette page", + "snippet": "MGI: the international database resource for the laboratory mouse, providing integrated genetic, genomic, and biological data for researching human health and ...", + "visible_link": "www.informatics.jax.org/", + "date": "", + "rank": 25 + }, + { + "link": "https://www.ensembl.org/Mus_musculus/Info/Index", + "title": "Mouse - Ensemblhttps://www.ensembl.org/Mus_musculus/Info/IndexEn cacheTraduire cette page", + "snippet": "Genome assembly: GRCm38.p6 (GCA_000001635.8). More information and statistics · Download DNA sequence (FASTA). Convert your data to GRCm38 ...", + "visible_link": "https://www.ensembl.org/Mus_musculus/Info/Index", + "date": "", + "rank": 26 + }, + { + "link": "https://www.howtogeek.com/trivia/the-speed-of-a-computer-mouse-is-measured-in-what-unit/", + "title": "The Speed Of A Computer Mouse Is Measured In What Unit?https://www.howtogeek.com/.../the-speed-of-a-computer-mouse-is-...En cachePages similairesTraduire cette page", + "snippet": "Think you know the answer? Click through to see if you're right!", + "visible_link": "https://www.howtogeek.com/.../the-speed-of-a-computer-mouse-is-...", + "date": "", + "rank": 27 + }, + { + "link": "https://www.abcmouse.com/email/mouse-and-pointer", + "title": "ABCmouse.com Mouse and Pointer Tutorialhttps://www.abcmouse.com/email/mouse-and-pointerEn cachePages similairesTraduire cette page", + "snippet": "My children are excited to learn and they don't want to stop. I'm so glad that I made the decision to invest in my children's education by signing up with ...", + "visible_link": "https://www.abcmouse.com/email/mouse-and-pointer", + "date": "", + "rank": 28 + }, + { + "link": "https://developer.roblox.com/api-reference/class/Mouse", + "title": "Mouse - Roblox Developer Hubhttps://developer.roblox.com/api-reference/class/MouseEn cacheTraduire cette page", + "snippet": "A Mouse object is not createable, but can be obtained using the Player:GetMouse , Tool.Equipped . The PluginMouse object, which inherits from Mouse can be ...", + "visible_link": "https://developer.roblox.com/api-reference/class/Mouse", + "date": "", + "rank": 29 + }, + { + "link": "https://satechi.net/products/m1-wireless-mouse", + "title": "M1 Wireless Mouse | Computer Peripherals - Satechihttps://satechi.net/products/m1-wireless-mouse", + "snippet": "Complete your desktop with the Satechi M1 Bluetooth Wireless Mouse, featuring Bluetooth 4.0 connection, rechargeable Type-C port and a modern, ergonomic ...", + "visible_link": "https://satechi.net/products/m1-wireless-mouse", + "date": "", + "rank": 30 + }, + { + "link": "https://en.wiktionary.org/wiki/mouse", + "title": "mouse - Wiktionaryhttps://en.wiktionary.org/wiki/mouseEn cachePages similairesTraduire cette page", + "snippet": "(computing) (plural mice or, rarely, mouses) An input device that is moved over a pad or other flat surface to produce a corresponding movement of a pointer on ...", + "visible_link": "https://en.wiktionary.org/wiki/mouse", + "date": "", + "rank": 31 + }, + { + "link": "https://learn.genetics.utah.edu/content/addiction/mouse/", + "title": "Mouse Party - Learn Genetics @ Utah - University of Utahhttps://learn.genetics.utah.edu/content/addiction/mouse/En cacheTraduire cette page", + "snippet": "Like Mouse Party? Try Meth Mouse. Note: The simplified mechanisms of drug action presented here are just a small part of the story. When drugs enter the body ...", + "visible_link": "https://learn.genetics.utah.edu/content/addiction/mouse/", + "date": "", + "rank": 32 + }, + { + "link": "https://www.poetryfoundation.org/poems/43816/to-a-mouse-56d222ab36e33", + "title": "To a Mouse by Robert Burns | Poetry Foundationhttps://www.poetryfoundation.org/.../to-a-mouse-56d222ab36e33En cacheTraduire cette page", + "snippet": "To a Mouse. By Robert Burns. On Turning up in Her Nest with the Plough, November, 1785. Wee, sleeket, cowran, tim'rous beastie,. O, what a panic's in thy ...", + "visible_link": "https://www.poetryfoundation.org/.../to-a-mouse-56d222ab36e33", + "date": "", + "rank": 33 + }, + { + "link": "https://mousebookclub.com/", + "title": "Mouse Book Club: Mouse Bookshttps://mousebookclub.com/En cacheTraduire cette page", + "snippet": "Take a break from technology and distraction with phone-sized physical books. Mouse Books are approachable, carefully curated, beautiful, and durable.", + "visible_link": "https://mousebookclub.com/", + "date": "", + "rank": 34 + }, + { + "link": "https://www.uniprot.org/taxonomy/10090", + "title": "Mus musculus (Mouse) - UniProthttps://www.uniprot.org/taxonomy/10090En cacheTraduire cette page", + "snippet": "Common name, Mouse. Synonym, -. Other names, ›LK3 transgenic mice ›Mus musculus Linnaeus, 1758 ›Mus sp. 129SV ›house mouse", + "visible_link": "https://www.uniprot.org/taxonomy/10090", + "date": "", + "rank": 35 + }, + { + "link": "https://www.techradar.com/news/computing-components/peripherals/what-mouse-10-best-mice-compared-1027809", + "title": "Best mouse 2019: the best mice for work and play | TechRadarhttps://www.techradar.com/.../what-mouse-10-best-mice-compared...En cacheTraduire cette page", + "snippet": "9 mai 2019 - Buying a decent mouse is pretty easy to overlook. Read on to find the best mouse for your needs.", + "visible_link": "https://www.techradar.com/.../what-mouse-10-best-mice-compared...", + "date": "9 mai 2019 - ", + "rank": 36 + }, + { + "link": "https://www.mathplayground.com/logic_trap_the_mouse.html", + "title": "Trap the Mouse | Math Playgroundhttps://www.mathplayground.com/logic_trap_the_mouse.htmlEn cacheTraduire cette page", + "snippet": "Play Trap the Mouse at Math Playground! The mouse wants to escape. Can you trap him?", + "visible_link": "https://www.mathplayground.com/logic_trap_the_mouse.html", + "date": "", + "rank": 37 + }, + { + "link": "https://computer.howstuffworks.com/mouse.htm", + "title": "How Computer Mice Work | HowStuffWorkshttps://computer.howstuffworks.com › ... › Keyboards & MiceEn cacheTraduire cette page", + "snippet": "The mouse might just be the computer user's best friend. Every day of your computing life, you reach out for your mouse whenever you want to move your cursor ...", + "visible_link": "https://computer.howstuffworks.com › ... › Keyboards & Mice", + "date": "", + "rank": 38 + }, + { + "link": "https://www.sciencedaily.com/terms/mouse.htm", + "title": "Mouse - ScienceDailyhttps://www.sciencedaily.com/terms/mouse.htmEn cachePages similairesTraduire cette page", + "snippet": "A mouse is a mammal that belongs to one of numerous species of small rodents. The best known mouse species is the common house mouse. It is found in ...", + "visible_link": "https://www.sciencedaily.com/terms/mouse.htm", + "date": "", + "rank": 39 + }, + { + "link": "https://lol.disney.com/games/minnie-mouse-games", + "title": "Minnie Mouse Games | Disney LOLhttps://lol.disney.com/games/minnie-mouse-gamesEn cacheTraduire cette page", + "snippet": "Play games featuring iconic fashionista Minnie Mouse! Help Minnie connect the dots, walk the runway, and go on adventures with the one and only Mickey ...", + "visible_link": "https://lol.disney.com/games/minnie-mouse-games", + "date": "", + "rank": 40 + }, + { + "link": "https://www.microsoft.com/en-us/p/surface-mouse/8qbtdr3q4rpw", + "title": "Buy Surface Mouse - Microsoft Storehttps://www.microsoft.com/en-us/p/surface-mouse/8qbtdr3q4rpwEn cacheTraduire cette page", + "snippet": "Sculpted for your hand and designed for an elegantly simple work space, Mouse is the perfect partner to your docked Surface and Keyboard. It was designed to ...", + "visible_link": "https://www.microsoft.com/en-us/p/surface-mouse/8qbtdr3q4rpw", + "date": "", + "rank": 41 + }, + { + "link": "https://support.microsoft.com/en-us/help/4034170/which-devices-are-supported-by-microsoft-mouse-and-keyboard-center", + "title": "Which devices are supported by Microsoft Mouse and Keyboard ...https://support.microsoft.com/.../which-devices-are-supported-by-...En cacheTraduire cette page", + "snippet": "4 avr. 2019 - Find out if your device is or is not supported by Microsoft Mouse and Keyboard Center software, and what to do if it is not supported.", + "visible_link": "https://support.microsoft.com/.../which-devices-are-supported-by-...", + "date": "4 avr. 2019 - ", + "rank": 42 + }, + { + "link": "http://web.jhu.edu/animalcare/procedures/mouse.html", + "title": "Species Specific Information: Mouse - Johns Hopkins Universityweb.jhu.edu/animalcare/procedures/mouse.htmlEn cachePages similairesTraduire cette page", + "snippet": "The mouse has short hair, a long naked tail, rounded erect ears, protruding eyes, a pointed snout and five toes on each foot. Mice come in a variety of colors.", + "visible_link": "web.jhu.edu/animalcare/procedures/mouse.html", + "date": "", + "rank": 43 + }, + { + "link": "https://www.gigabyte.com/Mouse", + "title": "Mouse - GIGABYTE Globalhttps://www.gigabyte.com/MouseEn cacheTraduire cette page", + "snippet": "Browse GIGABYTE specialty and gaming mice powered by top-quality sensors with ergonomics and customizable features best for FPS and MOBA gaming!", + "visible_link": "https://www.gigabyte.com/Mouse", + "date": "", + "rank": 44 + }, + { + "link": "https://www.aol.com/games/play/masque-publishing/bubble-mouse-blast/", + "title": "Play Bubble Mouse Blast Online - AOL Games - AOL.comhttps://www.aol.com/games/play/masque.../bubble-mouse-blast/En cacheTraduire cette page", + "snippet": "Play this online match-3 game from Masque Publishing. Shoot bubbles while candy and cakes advance towards your mouse hero in this free fast-paced mat.", + "visible_link": "https://www.aol.com/games/play/masque.../bubble-mouse-blast/", + "date": "", + "rank": 45 + }, + { + "link": "https://www.khanacademy.org/computing/computer-programming/programming/logic-if-statements/pt/more-mouse-interaction", + "title": "More Mouse Interaction | Logic and if Statements | Intro to JS: Drawing ...https://www.khanacademy.org › ... › Logic and if StatementsEn cacheTraduire cette page", + "snippet": "Read and learn for free about the following scratchpad: More Mouse Interaction.", + "visible_link": "https://www.khanacademy.org › ... › Logic and if Statements", + "date": "", + "rank": 46 + }, + { + "link": "https://www.lifewire.com/what-is-a-mouse-2618156", + "title": "What is A Mouse? (Computer Mouse Definition) - Lifewirehttps://www.lifewire.com › ... › Key Concepts › Computer ConceptsEn cachePages similairesTraduire cette page", + "snippet": "The mouse is a computer input device used to move a cursor around a screen. The mouse buttons are used to interact with whatever is being pointed at.", + "visible_link": "https://www.lifewire.com › ... › Key Concepts › Computer Concepts", + "date": "", + "rank": 47 + }, + { + "link": "https://www.webopedia.com/TERM/M/mouse.html", + "title": "What is Mouse? Webopedia Definitionhttps://www.webopedia.com/TERM/M/mouse.htmlEn cacheTraduire cette page", + "snippet": "A device that controls the movement of the cursor or pointer on a display screen. A mouse is a small object you can roll along a hard, flat surface.", + "visible_link": "https://www.webopedia.com/TERM/M/mouse.html", + "date": "", + "rank": 48 + }, + { + "link": "https://steelseries.com/gaming-mice", + "title": "Gaming Mice for PC and Mac | SteelSerieshttps://steelseries.com/gaming-miceEn cachePages similairesTraduire cette page", + "snippet": "... are compatible with PC and Mac. Experience unrivaled performance, no matter which gaming mouse you choose. ... Mouse Bungee. $24.99. Rival 700/710 ...", + "visible_link": "https://steelseries.com/gaming-mice", + "date": "", + "rank": 49 + }, + { + "link": "https://www.osha.gov/SLTC/etools/computerworkstations/components_pointers.html", + "title": "Pointer/Mouse - OSHAhttps://www.osha.gov/SLTC/etools/.../components_pointers.htmlEn cachePages similairesTraduire cette page", + "snippet": "Computer Workstations eTool | Workstation Components - Pointer/Mouse.", + "visible_link": "https://www.osha.gov/SLTC/etools/.../components_pointers.html", + "date": "", + "rank": 50 + }, + { + "link": "https://www.raspberrypi.org/products/raspberry-pi-mouse/", + "title": "Buy a Raspberry Pi mouse – Raspberry Pihttps://www.raspberrypi.org/products/raspberry-pi-mouse/En cacheTraduire cette page", + "snippet": "Our official mouse has three buttons, which activate high-quality micro-switches. The wheel is for quick scrolling when browsing documents and web pages.", + "visible_link": "https://www.raspberrypi.org/products/raspberry-pi-mouse/", + "date": "", + "rank": 51 + }, + { + "link": "https://www.costco.com/Logitech-MK735-Wireless-Keyboard-and-Mouse-.product.100370548.html", + "title": "Logitech MK735 Wireless Keyboard and Mouse - Costco Wholesalehttps://www.costco.com/Logitech-MK735-Wireless-Keyboard-and...En cacheTraduire cette page", + "snippet": "Logitech MK735 Wireless Keyboard and Mouse Full Size Mouse with 5 Programmable Buttons Full Size Keyboard with Palm Rest Unified Receiver for Both ...", + "visible_link": "https://www.costco.com/Logitech-MK735-Wireless-Keyboard-and...", + "date": "", + "rank": 52 + }, + { + "link": "https://www.newegg.com/Keyboards-Mice/Category/ID-234", + "title": "Keyboard and Mice, Wireless Keyboard and Mouse Combo - Newegghttps://www.newegg.com/Keyboards-Mice/Category/ID-234En cachePages similairesTraduire cette page", + "snippet": "Devastator 3 Gaming Combo with RGB Keyboard and Mouse Featuring Seven ... Logitech G Pro Wireless Gaming Mouse with Esports Grade Performance and ...", + "visible_link": "https://www.newegg.com/Keyboards-Mice/Category/ID-234", + "date": "", + "rank": 53 + }, + { + "link": "https://www.ideo.com/case-study/creating-the-first-usable-mouse", + "title": "Creating the First Usable Mouse | ideo.comhttps://www.ideo.com/case-study/creating-the-first-usable-mouseEn cachePages similairesTraduire cette page", + "snippet": "In 1980, Apple asked IDEO to develop a mouse for their radical new computer, the Lisa. Previous attempts at mouse design, by Douglas Englebart and Xerox ...", + "visible_link": "https://www.ideo.com/case-study/creating-the-first-usable-mouse", + "date": "", + "rank": 54 + }, + { + "link": "https://www.lingokids.com/oxford/mouse", + "title": "Redeem your Lingokids and Oxford Mouse and Me! codehttps://www.lingokids.com/oxford/mouseEn cacheTraduire cette page", + "snippet": "The Lingokids app is game-based, with relevant and fun content. The learning is self-directed, a motivating factor for young learners.", + "visible_link": "https://www.lingokids.com/oxford/mouse", + "date": "", + "rank": 55 + }, + { + "link": "https://www.computerhistory.org/revolution/input-output/14/350", + "title": "The Mouse - CHM Revolutionhttps://www.computerhistory.org/revolution/input-output/14/350En cacheTraduire cette page", + "snippet": "The MouseTrackballs, light pens, and other clever pointing devices were widespread. Then the mouse was invented. Twice. (Well, at least twice.)Doug ...", + "visible_link": "https://www.computerhistory.org/revolution/input-output/14/350", + "date": "", + "rank": 56 + }, + { + "link": "https://zone.msn.com/en/bubblemouse/default.htm", + "title": "Bubble Mouse - MSN Games - Free Online Gameshttps://zone.msn.com/en/bubblemouse/default.htmEn cacheTraduire cette page", + "snippet": "When the cat's away the mouse will play! Fire bubbles from your trusty cannon to make matches of three or more and clear the board. Big plays give you coins ...", + "visible_link": "https://zone.msn.com/en/bubblemouse/default.htm", + "date": "", + "rank": 57 + }, + { + "link": "https://www.coolermaster.com/catalog/peripheral/?filter=28981/#!/Product=Mice", + "title": "Mice - Peripheral | Cooler Masterhttps://www.coolermaster.com › PeripheralEn cacheTraduire cette page", + "snippet": "This website is for consumer products of Cooler Master Technology Inc. only. For OEM/ODM products please go to Cooler Master Co. ltd. search. home; back ...", + "visible_link": "https://www.coolermaster.com › Peripheral", + "date": "", + "rank": 58 + }, + { + "link": "http://www.elofilms.com/mouse", + "title": "Mouse - ELOwww.elofilms.com/mouseEn cacheTraduire cette page", + "snippet": "MOUSE premiered at the 30th South by Southwest Film Festival in the Midnight Shorts Competition, and premiered internationally at the 25th Raindance ...", + "visible_link": "www.elofilms.com/mouse", + "date": "", + "rank": 59 + }, + { + "link": "https://finalmouse.com/products/air-red", + "title": "Air58 Ninja - Cherry Blossom Red – Finalmousehttps://finalmouse.com/products/air-redEn cacheTraduire cette page", + "snippet": "Hand painted and engraved Individualized Haiku Scrolls on every mouse. Beautiful Haikus from ancient masters. Some rare, some more common, your Haiku is ...", + "visible_link": "https://finalmouse.com/products/air-red", + "date": "", + "rank": 60 + }, + { + "link": "https://api.jquery.com/category/events/mouse-events/", + "title": "Mouse Events | jQuery API Documentationhttps://api.jquery.com/category/events/mouse-events/En cachePages similairesTraduire cette page", + "snippet": "Bind one or two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.", + "visible_link": "https://api.jquery.com/category/events/mouse-events/", + "date": "", + "rank": 61 + }, + { + "link": "https://www.datasci.com/products/implantable-telemetry/mouse-(miniature)", + "title": "DSI Mouse (Miniature) Telemetry - Data Sciences Internationalhttps://www.datasci.com/products/implantable.../mouse-(miniature)En cachePages similairesTraduire cette page", + "snippet": "DSI offers mouse telemetry implants for measuring physiologic signals such as pressure, biopotential, activity and temperature.", + "visible_link": "https://www.datasci.com/products/implantable.../mouse-(miniature)", + "date": "", + "rank": 62 + }, + { + "link": "http://www.mouseonmars.com/", + "title": "Mouse On Marswww.mouseonmars.com/En cachePages similairesTraduire cette page", + "snippet": "Mouse on Mars is recognised as one of Germany's most defining and versatile electronic music projects.", + "visible_link": "www.mouseonmars.com/", + "date": "", + "rank": 63 + }, + { + "link": "https://www.nc3rs.org.uk/mouse-decision-tree-blood-sampling", + "title": "Mouse : Decision tree for blood sampling | NC3Rshttps://www.nc3rs.org.uk/mouse-decision-tree-blood-samplingEn cachePages similairesTraduire cette page", + "snippet": "How much blood does a mouse have? On average, mice have around 58.5 ml of blood per kg of bodyweight. A mouse weighing 25 g would therefore have a ...", + "visible_link": "https://www.nc3rs.org.uk/mouse-decision-tree-blood-sampling", + "date": "", + "rank": 64 + }, + { + "link": "https://www.brainpop.com/technology/computerscience/computermouse/", + "title": "Computer Mouse - BrainPOPhttps://www.brainpop.com/technology/.../computermouse/En cachePages similairesTraduire cette page", + "snippet": "Eeek — a mouse! Okay, computer mice are pretty harmless. Now you can find out how they work! In this BrainPOP movie, Tim and Moby teach you all about the ...", + "visible_link": "https://www.brainpop.com/technology/.../computermouse/", + "date": "", + "rank": 65 + }, + { + "link": "https://www.remotemouse.net/", + "title": "Turn iPhone, iPad and Android into wireless mobile mouse / trackpad ...https://www.remotemouse.net/En cacheTraduire cette page", + "snippet": "Control at Your Fingertips. Turn your mobile phone or tablet into a set of wireless mouse, keyboard and trackpad. Watch Video ...", + "visible_link": "https://www.remotemouse.net/", + "date": "", + "rank": 66 + }, + { + "link": "https://www.ccohs.ca/oshanswers/ergonomics/office/mouse/mouse_problems.html", + "title": "Computer Mouse - Common Problems from Use : OSH Answershttps://www.ccohs.ca/oshanswers/.../mouse/mouse_problems.htmlEn cachePages similairesTraduire cette page", + "snippet": "Why has using the computer mouse become a problem? What makes using a computer mouse hazardous? What can be done to reduce the risk of injury from ...", + "visible_link": "https://www.ccohs.ca/oshanswers/.../mouse/mouse_problems.html", + "date": "", + "rank": 67 + }, + { + "link": "https://www.rndsystems.com/products/proteome-profiler-mouse-xl-cytokine-array_ary028", + "title": "Proteome Profiler Mouse XL Cytokine Array ARY028: R&D Systemshttps://www.rndsystems.com › Multiplex Cytokine Assay KitsEn cachePages similairesTraduire cette page", + "snippet": "Detect 111 mouse cytokines simultaneously with our Proteome Profiler Mouse XL Cytokine Array. No specialized equipment required.", + "visible_link": "https://www.rndsystems.com › Multiplex Cytokine Assay Kits", + "date": "", + "rank": 68 + }, + { + "link": "https://www.nature.com/subjects/mouse", + "title": "Mouse - Latest research and news | Naturehttps://www.nature.com › subjectsTraduire cette page", + "snippet": "An ATAC-seq atlas of chromatin accessibility in mouse tissues. Chuanyu Liu; , Mingyue Wang; , Xiaoyu Wei; , Liang Wu; , Jiangshan Xu; , Xi Dai; , Jun Xia ...", + "visible_link": "https://www.nature.com › subjects", + "date": "", + "rank": 69 + }, + { + "link": "https://besamecosmetics.com/collections/mickey-mouse", + "title": "Mickey Mouse – Besame Cosmeticshttps://besamecosmetics.com/collections/mickey-mouseEn cacheTraduire cette page", + "snippet": "Mickey Mouse. Mickey Mouse Makeup Collection. Filters. Filters. classic color ... Mickey Mouse Lipsticks and Mirror Set. 4.5 star rating 51 Reviews. $ 45 $ 50.", + "visible_link": "https://besamecosmetics.com/collections/mickey-mouse", + "date": "", + "rank": 70 + }, + { + "link": "https://thenounproject.com/term/mouse/890/", + "title": "Mouse icons | Noun Projecthttps://thenounproject.com/term/mouse/890/En cachePages similairesTraduire cette page", + "snippet": "Creating, Sharing and Celebrating the World's Visual Language.", + "visible_link": "https://thenounproject.com/term/mouse/890/", + "date": "", + "rank": 71 + }, + { + "link": "https://support.xbox.com/xbox-one/ease-of-access/mouse-keyboard", + "title": "Mouse and keyboard support on Xbox Onehttps://support.xbox.com/xbox-one/ease-of.../mouse-keyboardEn cacheTraduire cette page", + "snippet": "Note Xbox supports the use of mouse and keyboard in some games and apps, but it doesn't work for every game or app. The game or app publisher must ...", + "visible_link": "https://support.xbox.com/xbox-one/ease-of.../mouse-keyboard", + "date": "", + "rank": 72 + }, + { + "link": "https://zowie.benq.com/en/product/mouse.html", + "title": "Mouse | ZOWIE Global - BenQhttps://zowie.benq.com/en/product/mouse.htmlEn cacheTraduire cette page", + "snippet": "It allows the user's fingertips to hold/cover the mouse to move smoothly. EC Series comes in two sizes to fulfill different needs. EC-B is the version with 3360 ...", + "visible_link": "https://zowie.benq.com/en/product/mouse.html", + "date": "", + "rank": 73 + }, + { + "link": "https://stardewvalleywiki.com/Abandoned_House", + "title": "Abandoned House - Stardew Valley Wikihttps://stardewvalleywiki.com/Abandoned_HouseEn cacheTraduire cette page", + "snippet": "A mouse takes over the building and opens a shop there selling hats to the player after the first achievement is acquired. All hats are sold for 1000g. Hats are ...", + "visible_link": "https://stardewvalleywiki.com/Abandoned_House", + "date": "", + "rank": 74 + }, + { + "link": "https://www.shopdisney.com/characters/minnie-mouse", + "title": "Minnie Mouse | Mickey Mouse & Friends | shopDisneyhttps://www.shopdisney.com/characters/minnie-mouseEn cacheTraduire cette page", + "snippet": "Ears to Minnie Mouse. Shop oodles and oodles of Minnie Mouse merchandise at shopDisney.", + "visible_link": "https://www.shopdisney.com/characters/minnie-mouse", + "date": "", + "rank": 75 + }, + { + "link": "https://thewirecutter.com/reviews/best-wireless-mouse/", + "title": "The Best Wireless Mouse for 2019: Reviews by Wirecutter | A New ...https://thewirecutter.com/reviews/best-wireless-mouse/En cacheTraduire cette page", + "snippet": "5 avr. 2019 - After researching 42 wireless mice and testing 14, we found that the Logitech M720 Triathlon Multi-Device Wireless Mouse is the best wireless ...", + "visible_link": "https://thewirecutter.com/reviews/best-wireless-mouse/", + "date": "5 avr. 2019 - ", + "rank": 76 + }, + { + "link": "https://matrix.fandom.com/wiki/Mouse", + "title": "Mouse | Matrix Wiki | FANDOM powered by Wikiahttps://matrix.fandom.com/wiki/MouseEn cacheTraduire cette page", + "snippet": "Mouse appears to be the youngest and most diminutive crew member on the Zion hovercraft Nebuchadnezzar. He is a pod-born zionite and is later killed by ...", + "visible_link": "https://matrix.fandom.com/wiki/Mouse", + "date": "", + "rank": 77 + }, + { + "link": "https://www.redragonzone.com/collections/mice", + "title": "Mouse – REDRAGON ZONEhttps://www.redragonzone.com/collections/miceEn cacheTraduire cette page", + "snippet": "Redragon M908 IMPACT MMO Gaming Mouse up to 12,400 DPI High Precision Laser Mouse for PC, 18 Programmable Buttons, Weight Tuning Cartridge, ...", + "visible_link": "https://www.redragonzone.com/collections/mice", + "date": "", + "rank": 78 + }, + { + "link": "https://www.lenovo.com/us/en/accessories-and-monitors/keyboards-and-mice/c/keyboards-and-mice", + "title": "Lenovo Keyboards & Mice | Wireless, USB Laser, & Combo Options ...https://www.lenovo.com › Home › Accessories and MonitorsEn cacheTraduire cette page", + "snippet": "Experience first-hand the difference that a well-designed keyboard or mouse can make. Check out our range of wireless, USB laser and combo options today.", + "visible_link": "https://www.lenovo.com › Home › Accessories and Monitors", + "date": "", + "rank": 79 + }, + { + "link": "https://bronxzoo.com/exhibits/mouse-house", + "title": "Mouse House - Bronx Zoohttps://bronxzoo.com/exhibits/mouse-houseEn cachePages similairesTraduire cette page", + "snippet": "The lighting here allows us to see some of our nocturnal critters, like the acrobatic acouchi, out and about. We find the quieter we are, the more action we see.", + "visible_link": "https://bronxzoo.com/exhibits/mouse-house", + "date": "", + "rank": 80 + }, + { + "link": "http://www.cameramouse.org/", + "title": "Camera Mousewww.cameramouse.org/En cachePages similairesTraduire cette page", + "snippet": "Camera Mouse is a free program that enables you to control the mouse pointer on your computer screen just by moving your head.", + "visible_link": "www.cameramouse.org/", + "date": "", + "rank": 81 + }, + { + "link": "https://www.sciencemag.org/news/2019/02/singing-mouse-s-brain-could-reveal-keys-snappy-conversation", + "title": "This singing mouse's brain could reveal keys to snappy conversation ...https://www.sciencemag.org/.../singing-mouse-s-brain-could-reveal...En cacheTraduire cette page", + "snippet": "28 févr. 2019 - The back-and-forth songs of Alston's singing mouse (Scotinomys teguina) could share mechanisms with human conversation. Christopher ...", + "visible_link": "https://www.sciencemag.org/.../singing-mouse-s-brain-could-reveal...", + "date": "28 févr. 2019 - ", + "rank": 82 + }, + { + "link": "https://disneynow.go.com/shows/disney-mickey-mouse", + "title": "Watch Disney Mickey Mouse TV Show | Disney Channel on DisneyNOWhttps://disneynow.go.com/shows/disney-mickey-mouseEn cacheTraduire cette page", + "snippet": "Watch Disney Mickey Mouse online at DisneyNOW.com. Watch full episodes, video clips and more.", + "visible_link": "https://disneynow.go.com/shows/disney-mickey-mouse", + "date": "", + "rank": 83 + }, + { + "link": "https://www.mobilemouse.com/", + "title": "Mobile Mouse: Turn your iPhone, iPad, or Apple Watch into a Remote ...https://www.mobilemouse.com/En cacheTraduire cette page", + "snippet": "Mobile Mouse is the ultimate Remote & Trackpad for iPhone, iPod, iPad, Apple Watch, and Android.", + "visible_link": "https://www.mobilemouse.com/", + "date": "", + "rank": 84 + }, + { + "link": "https://www.scirra.com/manual/114/mouse", + "title": "Mouse - Construct 2 Manual - Scirrahttps://www.scirra.com/manual/114/mouseEn cachePages similairesTraduire cette page", + "snippet": "Mouse. The Mouse object allows projects to respond to mouse input. Note on the modern web it is naïve to assume all users have a mouse. Many users now ...", + "visible_link": "https://www.scirra.com/manual/114/mouse", + "date": "", + "rank": 85 + }, + { + "link": "https://www.pygame.org/docs/ref/mouse.html", + "title": "pygame.mouse — Pygame v1.9.5.dev0 documentationhttps://www.pygame.org/docs/ref/mouse.htmlEn cachePages similairesTraduire cette page", + "snippet": "When the display mode is set, the event queue will start receiving mouse events. The mouse buttons generate pygame.MOUSEBUTTONDOWN and pygame.", + "visible_link": "https://www.pygame.org/docs/ref/mouse.html", + "date": "", + "rank": 86 + }, + { + "link": "https://www.sfml-dev.org/documentation/2.5.1/classsf_1_1Mouse.php", + "title": "sf::Mouse Class Reference (SFML / Learn / 2.5.1 Documentation)https://www.sfml-dev.org/documentation/2.../classsf_1_1Mouse.ph...En cacheTraduire cette page", + "snippet": "This class allows users to query the mouse state at any time and directly, without having to deal with a window and its events. Compared to the MouseMoved, ...", + "visible_link": "https://www.sfml-dev.org/documentation/2.../classsf_1_1Mouse.ph...", + "date": "", + "rank": 87 + }, + { + "link": "https://www.instechlabs.com/products/buttons-tethers/vascular-access/mouse-one-channel", + "title": "One Channel Mouse Buttons | Vascular Access Buttons | Instech Labshttps://www.instechlabs.com/products/buttons.../mouse-one-channe...En cacheTraduire cette page", + "snippet": "Quick aseptic connection and disconnection of a catheterized mouse and infusion tether. This single channel VAB features a magnet for improved ease of use ...", + "visible_link": "https://www.instechlabs.com/products/buttons.../mouse-one-channe...", + "date": "", + "rank": 88 + }, + { + "link": "https://doseofcolors.com/collections/minnie-mouse-collection-1", + "title": "MINNIE MOUSE COLLECTION – Dose of Colorshttps://doseofcolors.com/collections/minnie-mouse-collection-1En cacheTraduire cette page", + "snippet": "Home › MINNIE MOUSE COLLECTION · MINNIE PALETTE + BLUSH. QUICK ADD. MINNIE PALETTE + BLUSH. Regular price $ 39.00 USD. QUICK ADD ».", + "visible_link": "https://doseofcolors.com/collections/minnie-mouse-collection-1", + "date": "", + "rank": 89 + }, + { + "link": "https://www.contourdesign.com/product/contour-mouse/", + "title": "Contour Mouse - Contour Design Inc.https://www.contourdesign.com/product/contour-mouse/En cacheTraduire cette page", + "snippet": "Battery Life 3 Months on a single charge*. Cursor Speed 800 | 1000 | 1200 | 1400 | 1600 | 1800 | 2000 | 2200 | 2400 | 2800. Sensor Type Pixart PMW3330, IR.", + "visible_link": "https://www.contourdesign.com/product/contour-mouse/", + "date": "", + "rank": 90 + }, + { + "link": "https://gizmodo.com/20-years-ago-microsoft-changed-how-we-mouse-forever-1834274151", + "title": "20 Years Ago, Microsoft Changed How We Mouse Forever - Gizmodohttps://gizmodo.com/20-years-ago-microsoft-changed-how-we-mo...En cacheTraduire cette page", + "snippet": "26 avr. 2019 - Twenty years ago, in April 1999, Microsoft introduced an update to its IntelliMouse line of input devices. On top it didn't look much different than ...", + "visible_link": "https://gizmodo.com/20-years-ago-microsoft-changed-how-we-mo...", + "date": "26 avr. 2019 - ", + "rank": 91 + }, + { + "link": "http://pyautogui.readthedocs.io/en/latest/mouse.html", + "title": "Mouse Control Functions — PyAutoGUI 1.0.0 documentationpyautogui.readthedocs.io/en/latest/mouse.htmlPages similairesTraduire cette page", + "snippet": "The screen resolution size is returned by the size() function as a tuple of two integers. The current X and Y coordinates of the mouse cursor are returned by the ...", + "visible_link": "pyautogui.readthedocs.io/en/latest/mouse.html", + "date": "", + "rank": 92 + }, + { + "link": "https://www.lofree.co/products/maus-mouse", + "title": "Maus Touch Gesture enabled Mouse for Mac and Windows – Lofree ...https://www.lofree.co/products/maus-mouseEn cacheTraduire cette page", + "snippet": "Lofree Maus is a retro-inspired Bluetooth touch mouse with built-in gesture control for Mac & Windows, just like using your trackpad. The mouse buttons are ...", + "visible_link": "https://www.lofree.co/products/maus-mouse", + "date": "", + "rank": 93 + }, + { + "link": "https://dictionary.cambridge.org/dictionary/english/mouse", + "title": "MOUSE | meaning in the Cambridge English Dictionaryhttps://dictionary.cambridge.org/dictionary/english/mouseEn cacheTraduire cette page", + "snippet": "mouse definition: 1. a small mammal with short fur, a pointed face, and a long tail: 2. a small device that you move across a surface in order to move a cursor on ...", + "visible_link": "https://dictionary.cambridge.org/dictionary/english/mouse", + "date": "", + "rank": 94 + }, + { + "link": "https://metacpan.org/release/Mouse", + "title": "Mouse-v2.5.6 - Moose minus the antlers - metacpan.orghttps://metacpan.org/release/MouseEn cachePages similairesTraduire cette page", + "snippet": "Modules. Mouse - Moose minus the antlers; Mouse::Exporter - make an import() and unimport() just like Mouse.pm; Mouse::Meta::Attribute - The Mouse attribute ...", + "visible_link": "https://metacpan.org/release/Mouse", + "date": "", + "rank": 95 + }, + { + "link": "http://www.pbclibrary.org/mousing/mousercise.htm", + "title": "Mousing Around: Mousercise!www.pbclibrary.org/mousing/mousercise.htmEn cachePages similairesTraduire cette page", + "snippet": "A mousing exercise to help beginning computer users learn how to use a mouse.", + "visible_link": "www.pbclibrary.org/mousing/mousercise.htm", + "date": "", + "rank": 96 + }, + { + "link": "https://www.spiked-online.com/2019/06/11/mickey-mouse-degrees-selling-out-education/", + "title": "Mickey Mouse degrees: selling out education - spikedhttps://www.spiked-online.com/.../mickey-mouse-degrees-selling-o...En cacheTraduire cette page", + "snippet": "Il y a 20 heures - Mickey Mouse degrees: selling out education. Universities must stop promising career prospects over intellectual enrichment. Mickey Mouse ...", + "visible_link": "https://www.spiked-online.com/.../mickey-mouse-degrees-selling-o...", + "date": "Il y a 20 heures - ", + "rank": 97 + }, + { + "link": "https://www.walmart.com/ip/6-Volt-Minnie-Mouse-Happy-Helpers-Scooter-with-Sidecar-Ride-On-by-Kid-Trax/113837398", + "title": "6-Volt Minnie Mouse Happy Helpers Scooter with Sidecar Ride-On by ...https://www.walmart.com › ... › Ride Ons › Ride On ToysEn cacheTraduire cette page", + "snippet": "Step aside Mickey Mouse, help is on the way! Kick playtime into gear with the 6-Volt Disney Minnie Mouse Happy Helpers Scooter with Sidecar Ride-On from ...", + "visible_link": "https://www.walmart.com › ... › Ride Ons › Ride On Toys", + "date": "", + "rank": 98 + }, + { + "link": "https://www.uniqlo.com/us/en/ut-graphic-tees/mickey-art", + "title": "Mickey Mouse Graphic Design T-Shirts for Men & Women | UNIQLO UShttps://www.uniqlo.com/us/en/ut-graphic-tees/mickey-artEn cacheTraduire cette page", + "snippet": "Check out our Mickey Mouse graphic design tees for men and women. These unique shirts are as comfortable as they are creative. Order online now! UNIQLO ...", + "visible_link": "https://www.uniqlo.com/us/en/ut-graphic-tees/mickey-art", + "date": "", + "rank": 99 + } + ] + }, + "2": { + "time": "Tue, 11 Jun 2019 19:59:19 GMT", + "num_results": "Page 2 d'environ 1 160 000 000 résultats (0,67 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.youtube.com/watch?v=l70UhhNalqA", + "title": "Mouse Videos for Cats to Watch Cat TV - YouTubehttps://www.youtube.com/watch?v=l70UhhNalqATraduire cette page", + "snippet": "Mouse Videos for Cats to Watch Cat TV Video Produced by Paul Dinning - Wildlife in Cornwall Filmed in ...", + "visible_link": "https://www.youtube.com/watch?v=l70UhhNalqA", + "date": "", + "rank": 100 + }, + { + "link": "http://www.epicgear.com/en/technologies/types-of-mouse-grip", + "title": "Technology: Types Of Mouse Grip » EpicGearwww.epicgear.com/en/technologies/types-of-mouse-gripEn cacheTraduire cette page", + "snippet": "When it comes to choosing the right gaming mouse based on its shape, size, weight and any other of the obvious attributes, there has not been one mouse that ...", + "visible_link": "www.epicgear.com/en/technologies/types-of-mouse-grip", + "date": "", + "rank": 101 + }, + { + "link": "http://www.read.gov/aesop/007.html", + "title": "The Lion and the Mouse - Library of Congress Aesop Fableswww.read.gov/aesop/007.htmlEn cacheTraduire cette page", + "snippet": "A Lion lay asleep in the forest, his great head resting on his paws. A timid little Mouse came upon him unexpectedly, and in her fright and haste to get away, ran ...", + "visible_link": "www.read.gov/aesop/007.html", + "date": "", + "rank": 102 + }, + { + "link": "http://www.idph.state.il.us/envhealth/pchousemouse.htm", + "title": "House Mouse Prevention and Controlwww.idph.state.il.us/envhealth/pchousemouse.htmEn cachePages similairesTraduire cette page", + "snippet": "The house mouse (Mus musculus) is considered one of the most troublesome and economically important pests in the United States. House mice live and thrive ...", + "visible_link": "www.idph.state.il.us/envhealth/pchousemouse.htm", + "date": "", + "rank": 103 + }, + { + "link": "https://chrome.google.com/webstore/detail/mouse-dictionary/dnclbikcihnpjohihfcmmldgkjnebgnj", + "title": "Mouse Dictionary - Google Chromehttps://chrome.google.com/.../mouse.../dnclbikcihnpjohihfcmmldg...En cacheTraduire cette page", + "snippet": "25 avr. 2019 - Mouse Dictionary is a super fast dictionary for Google Chrome. Features: * Blazing fast * Detect phrases in text intelligently * You can import ...", + "visible_link": "https://chrome.google.com/.../mouse.../dnclbikcihnpjohihfcmmldg...", + "date": "25 avr. 2019 - ", + "rank": 104 + }, + { + "link": "https://www.dell.com/en-us/shop/mice/ar/6593", + "title": "Computer Mouse: Wireless and Bluetooth Mouse | Dell United Stateshttps://www.dell.com › United States › For Home › Accessories", + "snippet": "Explore a variety gaming, optical and bluetooth mice brought out by top brands such as Dell and Logitech. Shop now to avail free shipping.", + "visible_link": "https://www.dell.com › United States › For Home › Accessories", + "date": "", + "rank": 105 + }, + { + "link": "https://www.target.com/p/apple-trackpad-magic-mouse-2/-/A-13323857", + "title": "Apple Trackpad Magic Mouse 2 : Targethttps://www.target.com › ... › Mice & KeyboardsEn cacheTraduire cette page", + "snippet": "Mouse Speed: 1500 dpi. System Requirements: Bluetooth Enabled Computer. Operating System Compatibility: Mac OS X. Connectivity: No wired connection ...", + "visible_link": "https://www.target.com › ... › Mice & Keyboards", + "date": "", + "rank": 106 + }, + { + "link": "https://www.cnet.com/news/apples-ipados-reportedly-adds-mouse-support/", + "title": "Apple adds mouse support with iPadOS, reports say - CNEThttps://www.cnet.com/.../apples-ipados-reportedly-adds-mouse-sup...En cacheTraduire cette page", + "snippet": "3 juin 2019 - A video appearing to show a mouse working on an iPad was tweeted out by Steve Troughton-Smith, an app developer, on Monday afternoon.", + "visible_link": "https://www.cnet.com/.../apples-ipados-reportedly-adds-mouse-sup...", + "date": "3 juin 2019 - ", + "rank": 107 + }, + { + "link": "https://www.bluedesigns.com/products/mouse/", + "title": "Mouse - Bluehttps://www.bluedesigns.com/products/mouse/En cacheTraduire cette page", + "snippet": "Blue offers premium USB and XLR microphones, and audiophile headphones for recording, podcasting, gaming, streaming, YouTube, and more.", + "visible_link": "https://www.bluedesigns.com/products/mouse/", + "date": "", + "rank": 108 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/genome/guide/mouse/", + "title": "Mouse Genome - NCBIhttps://www.ncbi.nlm.nih.gov/genome/guide/mouse/Pages similairesTraduire cette page", + "snippet": "Mus musculus The laboratory mouse is a major model organism for basic mammalian biology, human disease, and genome evolution, and its genome has been ...", + "visible_link": "https://www.ncbi.nlm.nih.gov/genome/guide/mouse/", + "date": "", + "rank": 109 + }, + { + "link": "https://www.beatsbydre.com/collaborations/disney", + "title": "Disney - Beats by Drehttps://www.beatsbydre.com/collaborations/disneyEn cacheTraduire cette page", + "snippet": "We all start somewhere. For Beats it was in the studio. And for Disney, it was all started by a mouse. But the undeniable link between the two is music. Both Beats ...", + "visible_link": "https://www.beatsbydre.com/collaborations/disney", + "date": "", + "rank": 110 + }, + { + "link": "https://www.pcgamer.com/the-best-gaming-mouse/", + "title": "Best gaming mouse for 2019 | PC Gamerhttps://www.pcgamer.com/the-best-gaming-mouse/En cacheTraduire cette page", + "snippet": "15 mai 2019 - In an increasingly crowded market, picking out the best gaming mouse can be a bit of a slog (not unlike the challenge of isolating the best ...", + "visible_link": "https://www.pcgamer.com/the-best-gaming-mouse/", + "date": "15 mai 2019 - ", + "rank": 111 + }, + { + "link": "https://www.facebook.com/thedodosite/videos/guy-finds-a-mouse-in-his-car/2330370790521086/", + "title": "The Dodo - Guy Finds A Mouse In His Car | Facebookhttps://www.facebook.com/.../guy...mouse.../2330370790521086/Traduire cette page", + "snippet": "This guy just found a mouse in his car and he CAN'T get her out.", + "visible_link": "https://www.facebook.com/.../guy...mouse.../2330370790521086/", + "date": "", + "rank": 112 + }, + { + "link": "https://processing.org/reference/mouseClicked_.html", + "title": "mouseClicked() \\ Language (API) \\ Processing 3+https://processing.org/reference/mouseClicked_.htmlEn cachePages similairesTraduire cette page", + "snippet": "11 févr. 2019 - Click within the image to change // the value of the rectangle after // after the mouse has been clicked int value = 0; void draw() { fill(value); ...", + "visible_link": "https://processing.org/reference/mouseClicked_.html", + "date": "11 févr. 2019 - ", + "rank": 113 + }, + { + "link": "https://mashable.com/category/mouse/", + "title": "mouse - Mashablehttps://mashable.com/category/mouse/En cacheTraduire cette page", + "snippet": "The latest articles about mouse from Mashable, the media and tech company.", + "visible_link": "https://mashable.com/category/mouse/", + "date": "", + "rank": 114 + }, + { + "link": "https://www.bbc.co.uk/bbcthree/article/5f72cfe2-5778-4657-befc-be1552a0f794", + "title": "Killing Eve: The 'cat-and-mouse' couples we fell in love with before ...https://www.bbc.co.uk/.../5f72cfe2-5778-4657-befc-be1552a0f79...En cacheTraduire cette page", + "snippet": "Il y a 4 jours - The cat-and-mouse relationship which saw Eve travel the world hunting down her murderous nemesis - real name: Oksana Astankova - in the ...", + "visible_link": "https://www.bbc.co.uk/.../5f72cfe2-5778-4657-befc-be1552a0f79...", + "date": "Il y a 4 jours - ", + "rank": 115 + }, + { + "link": "https://www.digitaltrends.com/computing/best-ergonomic-mouse/", + "title": "The Best Ergonomic Mouse for 2019 | Digital Trendshttps://www.digitaltrends.com/computing/best-ergonomic-mouse/En cacheTraduire cette page", + "snippet": "For people who use computers all day, wrist pain can be a huge issue. One of the best ways to alleviate it for your dominant hand is to use a mouse that guides it ...", + "visible_link": "https://www.digitaltrends.com/computing/best-ergonomic-mouse/", + "date": "", + "rank": 116 + }, + { + "link": "https://www.reuters.com/article/us-people-dennis-day/remains-of-former-mickey-mouse-club-actor-found-in-oregon-idUSKCN1T8296", + "title": "Remains of former 'Mickey Mouse Club' actor found in Oregon - Reutershttps://www.reuters.com/.../remains-of-former-mickey-mouse-club...En cacheTraduire cette page", + "snippet": "Il y a 4 jours - The body of former actor Dennis Day, who was a member of popular 1950s television show \"The Mickey Mouse Club,\" has been identified in ...", + "visible_link": "https://www.reuters.com/.../remains-of-former-mickey-mouse-club...", + "date": "Il y a 4 jours - ", + "rank": 117 + }, + { + "link": "https://www.goodnewsnetwork.org/photographer-builds-log-cabins-for-mice/", + "title": "Photographer Builds Adorable Tiny Log Cabins in His Backyard to ...https://www.goodnewsnetwork.org › All News › Arts & LeisureEn cacheTraduire cette page", + "snippet": "Il y a 1 jour - “I then put some wire fencing around the fence so there was no way the cats could get to the mouse,” he added, “and we decided to name him ...", + "visible_link": "https://www.goodnewsnetwork.org › All News › Arts & Leisure", + "date": "Il y a 1 jour - ", + "rank": 118 + }, + { + "link": "http://mouse.latercera.com/", + "title": "Mouse | Cultura pop, tecnología y videojuegosmouse.latercera.com/En cachePages similairesTraduire cette page", + "snippet": "Lo mejor de la ciencia, tecnología, tendencias y cultura pop.", + "visible_link": "mouse.latercera.com/", + "date": "", + "rank": 119 + }, + { + "link": "http://www.dougengelbart.org/firsts/mouse.html", + "title": "Firsts: The Mouse - Doug Engelbart Institutewww.dougengelbart.org/firsts/mouse.htmlEn cachePages similairesTraduire cette page", + "snippet": "Who invented the mouse? Learn how Doug Engelbart invented the mouse in 1963. Learn why.", + "visible_link": "www.dougengelbart.org/firsts/mouse.html", + "date": "", + "rank": 120 + }, + { + "link": "https://www.nationalgeographic.com/science/2018/10/news-gene-editing-crispr-mice-stem-cells/", + "title": "Mouse pups born from same-sex parents: Get the factshttps://www.nationalgeographic.com/.../news-gene-editing-crispr-...En cacheTraduire cette page", + "snippet": "11 oct. 2018 - While this feat has been accomplished before with mouse moms, the new study marks the first time that pups from pairs of male mice were also ...", + "visible_link": "https://www.nationalgeographic.com/.../news-gene-editing-crispr-...", + "date": "11 oct. 2018 - ", + "rank": 121 + }, + { + "link": "https://khn.org/news/a-fountain-of-youth-pill-sure-if-youre-a-mouse/", + "title": "A 'Fountain Of Youth' Pill? Sure, If You're A Mouse. | Kaiser Health Newshttps://khn.org/.../a-fountain-of-youth-pill-sure-if-youre-a-mouse/En cacheTraduire cette page", + "snippet": "11 févr. 2019 - Other substances such as 17 alpha estradiol and the diabetes drug Acarbose have been shown to be just as effective — in mouse studies.", + "visible_link": "https://khn.org/.../a-fountain-of-youth-pill-sure-if-youre-a-mouse/", + "date": "11 févr. 2019 - ", + "rank": 122 + }, + { + "link": "https://github.com/typelevel/mouse", + "title": "typelevel/mouse: A small companion to cats - GitHubhttps://github.com/typelevel/mouseEn cacheTraduire cette page", + "snippet": "A small companion to cats. Contribute to typelevel/mouse development by creating an account on GitHub.", + "visible_link": "https://github.com/typelevel/mouse", + "date": "", + "rank": 123 + }, + { + "link": "https://www.fastcompany.com/90324660/how-disney-grew-its-3-billion-mickey-mouse-business-by-selling-to-adults", + "title": "The big business of selling Mickey Mouse to adults - Fast Companyhttps://www.fastcompany.com/.../how-disney-grew-its-3-billion-mi...En cacheTraduire cette page", + "snippet": "1 avr. 2019 - In March of this year, Gucci began selling a $4,500 purse in the shape of Mickey Mouse's head. Between the creature's round black ears is a ...", + "visible_link": "https://www.fastcompany.com/.../how-disney-grew-its-3-billion-mi...", + "date": "1 avr. 2019 - ", + "rank": 124 + }, + { + "link": "https://www.teveocr.com/mouse", + "title": "Mouse Gaming - teveocrhttps://www.teveocr.com/mouseEn cacheTraduire cette page", + "snippet": "Direccion: 25 este CCSS, san jose, Edificio maria cristina local 23. Computech Seoul SA. TEVEOCR.COM 2019. Desing by JEDP CORP 2019.", + "visible_link": "https://www.teveocr.com/mouse", + "date": "", + "rank": 125 + }, + { + "link": "https://www.livescience.com/28028-mice.html", + "title": "Mouse Facts: Habits, Habitat & Types of Mice - Live Sciencehttps://www.livescience.com › AnimalsEn cacheTraduire cette page", + "snippet": "26 juin 2014 - A mouse is a small rodent with a pointed nose, furry round body, large ears and a long, often hairless, tail. There are hundreds of types of mice, ...", + "visible_link": "https://www.livescience.com › Animals", + "date": "26 juin 2014 - ", + "rank": 126 + }, + { + "link": "https://www.hltv.org/forums/threads/2066835/good-mouse", + "title": "Forum thread: Good mouse | HLTV.orghttps://www.hltv.org/forums/threads/2066835/good-mouseEn cacheTraduire cette page", + "snippet": "ec1-a or ec1-b by zowie they feel on your hand like no mouse can and not in a contrived shite way like ninja's mouse. 2019-06-11 07:19. #11.", + "visible_link": "https://www.hltv.org/forums/threads/2066835/good-mouse", + "date": "", + "rank": 127 + }, + { + "link": "https://www.nasa.gov/vision/earth/technologies/taylor_more.html", + "title": "Birth of the Mouse - NASAhttps://www.nasa.gov/vision/earth/technologies/taylor_more.htmlEn cachePages similairesTraduire cette page", + "snippet": "We take the computer mouse for granted now, using it countless times a day to do work or homework, to pay bills or buy things, or just to poke around looking for ...", + "visible_link": "https://www.nasa.gov/vision/earth/technologies/taylor_more.html", + "date": "", + "rank": 128 + }, + { + "link": "https://www.pcgamesn.com/roccat/kain-120-aimo-gaming-mouse-review-performance", + "title": "Roccat Kain 120 AIMO gaming mouse review: lightweight, accurate ...https://www.pcgamesn.com/.../kain-120-aimo-gaming-mouse-revie...En cacheTraduire cette page", + "snippet": "Il y a 8 heures - It may not necessarily be revolutionary, but Roccat is targeting the perfect click with its new Titan Click mouse design.", + "visible_link": "https://www.pcgamesn.com/.../kain-120-aimo-gaming-mouse-revie...", + "date": "Il y a 8 heures - ", + "rank": 129 + }, + { + "link": "https://store.newtek.com/index.php/accessories/newtek-mouse.html", + "title": "Mouse - NewTek Online Storehttps://store.newtek.com/index.php/accessories/newtek-mouse.htmlTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://store.newtek.com/index.php/accessories/newtek-mouse.html", + "date": "", + "rank": 130 + }, + { + "link": "https://www.mathworks.com/matlabcentral/fileexchange/71812-mouse-de-camera/?s_tid=LandingPageTabfx", + "title": "Mouse de Camera - File Exchange - MATLAB Central - MathWorkshttps://www.mathworks.com/.../71812-mouse-de-camera/?s_tid...En cacheTraduire cette page", + "snippet": "Il y a 6 heures - MATLAB EXPO 2019 JAPAN Lightnig talk demo (Part2). A mouse sensor can use as a micro camera. The document was written in japanese, ...", + "visible_link": "https://www.mathworks.com/.../71812-mouse-de-camera/?s_tid...", + "date": "Il y a 6 heures - ", + "rank": 131 + }, + { + "link": "https://www.pcworld.com/article/3258833/hands-on-how-one-mouse-can-control-multiple-pcs-with-microsofts-mouse-without-borders-app.html", + "title": "Hands on: How one mouse can control multiple PCs with Microsoft's ...https://www.pcworld.com/.../hands-on-how-one-mouse-can-contro...En cacheTraduire cette page", + "snippet": "1 mars 2018 - Microsoft's free Mouse without Borders app lets your mouse and keyboard control multiple PCs. That's a capability that Logitech's excellent ...", + "visible_link": "https://www.pcworld.com/.../hands-on-how-one-mouse-can-contro...", + "date": "1 mars 2018 - ", + "rank": 132 + }, + { + "link": "https://www.sri.com/work/timeline-innovation/timeline.php?timeline=computing-digital#!&innovation=computer-mouse-interactive-computing", + "title": "Computer Mouse and Interactive Computing | SRI Internationalhttps://www.sri.com/work/timeline.../timeline.php?...mouse...En cachePages similairesTraduire cette page", + "snippet": "Development of the mouse began in the early 1960s by SRI's Douglas Engelbart, while he was exploring the interactions between humans and computers.", + "visible_link": "https://www.sri.com/work/timeline.../timeline.php?...mouse...", + "date": "", + "rank": 133 + }, + { + "link": "https://www.nexusmods.com/stardewvalley/mods/4018", + "title": "Hat Mouse House Makeover at Stardew Valley Nexus - Mods and ...https://www.nexusmods.com/stardewvalley/mods/4018En cacheTraduire cette page", + "snippet": "Il y a 17 heures - About this mod. Gives Hat Mouse a fancy new stone house and some friends to help mind the store. Also fixes a vanilla texture bug for those ...", + "visible_link": "https://www.nexusmods.com/stardewvalley/mods/4018", + "date": "Il y a 17 heures - ", + "rank": 134 + }, + { + "link": "https://www.addgene.org/pooled-library/zhang-mouse-gecko-v2/", + "title": "Zhang Lab - GeCKO v2 Mouse CRISPR Knockout Pooled ... - Addgenehttps://www.addgene.org/pooled-library/zhang-mouse-gecko-v2/En cachePages similairesTraduire cette page", + "snippet": "Mouse GeCKO v2 lentiviral CRISPR pooled library from the lab of Feng Zhang.", + "visible_link": "https://www.addgene.org/pooled-library/zhang-mouse-gecko-v2/", + "date": "", + "rank": 135 + }, + { + "link": "https://www.newsweek.com/tissue-surgeon-ear-mouse-human-organs-transplant-cell-phones-666082", + "title": "Exclusive: Whatever Happened to the Mouse with the Ear on Its Back?https://www.newsweek.com › ... › Mice › Reconstructive SurgeryEn cacheTraduire cette page", + "snippet": "16 sept. 2017 - You may have seen it in a textbook or on TV: a mouse with a human ear on its back. You might have thought that the mouse was genetically ...", + "visible_link": "https://www.newsweek.com › ... › Mice › Reconstructive Surgery", + "date": "16 sept. 2017 - ", + "rank": 136 + }, + { + "link": "http://www.jneurosci.org/content/early/2019/06/06/JNEUROSCI.2367-18.2019", + "title": "The role of the anion in salt (NaCl) detection by mouse taste buds ...www.jneurosci.org/content/early/.../JNEUROSCI.2367-18.2019Traduire cette page", + "snippet": "Il y a 5 jours - The role of the anion in salt (NaCl) detection by mouse taste buds. Jennifer K. Roebber, Stephen D. Roper and Nirupa Chaudhari. Journal of ...", + "visible_link": "www.jneurosci.org/content/early/.../JNEUROSCI.2367-18.2019", + "date": "Il y a 5 jours - ", + "rank": 137 + }, + { + "link": "https://www.pnas.org/content/116/10/4567", + "title": "Mouse and human urothelial cancer organoids: A tool for bladder ...https://www.pnas.org/content/116/10/4567Traduire cette page", + "snippet": "20 févr. 2019 - Here we present a long-term culture system of the normal mouse urothelium and an efficient culture system of human bladder cancer cells.", + "visible_link": "https://www.pnas.org/content/116/10/4567", + "date": "20 févr. 2019 - ", + "rank": 138 + }, + { + "link": "https://www.eurogamer.net/articles/digitalfoundry-2019-06-10-best-gaming-mouse-2019-7010", + "title": "Best gaming mouse 2019: Digital Foundry's picks for the best wired ...https://www.eurogamer.net › GuidesEn cacheTraduire cette page", + "snippet": "Il y a 1 jour - Finding the best gaming mouse is a challenge, as dozens of new models are released each year by the biggest brands - but I've been keeping ...", + "visible_link": "https://www.eurogamer.net › Guides", + "date": "Il y a 1 jour - ", + "rank": 139 + }, + { + "link": "https://books.google.com/books?id=3eC3CgAAQBAJ&pg=PA348&lpg=PA348&dq=mouse&source=bl&ots=bArHPzv-nQ&sig=ACfU3U0qNOj1L92K47zIhY8DDu9-TmgMOA&hl=fr&sa=X&ved=2ahUKEwjm__7am-LiAhVLJFAKHanBCrs4ZBDoATAuegQIYRAB", + "title": "The Mouse In Animal Genetics And Breeding Researchhttps://books.google.com/books?isbn=1783260262Traduire cette page", + "snippet": "The Mouse Project Legacy The mouse genome project is a significant milestone in the genomic era and has already established an important research legacy.", + "visible_link": "https://books.google.com/books?isbn=1783260262", + "date": "", + "rank": 140 + }, + { + "link": "https://books.google.com/books?id=OboaDAAAQBAJ&pg=PA279&lpg=PA279&dq=mouse&source=bl&ots=bFCBn1pqvn&sig=ACfU3U0aEVq_Wp48EHeGPEELuL42VuRkiw&hl=fr&sa=X&ved=2ahUKEwjm__7am-LiAhVLJFAKHanBCrs4ZBDoATAvegQIYBAB", + "title": "The Dwarf and Mouse Lemurs of Madagascar: Biology, Behavior and ...https://books.google.com/books?isbn=1316552780Traduire cette page", + "snippet": "Hibernation in Malagasy mouse lemurs as a strategy to counter environmental challenge. Naturwissenschaften 96:1221–1227. Lahann P. 2007. Feeding ...", + "visible_link": "https://books.google.com/books?isbn=1316552780", + "date": "", + "rank": 141 + }, + { + "link": "https://books.google.com/books?id=p43KAwAAQBAJ&pg=PA17&lpg=PA17&dq=mouse&source=bl&ots=Uhbe_PZ-LL&sig=ACfU3U2yNdAMa467c3qmFD_E3ch1X_5Ulw&hl=fr&sa=X&ved=2ahUKEwjm__7am-LiAhVLJFAKHanBCrs4ZBDoATAwegQIXhAB", + "title": "Fireworks Fiasco: A Very Smelly Fourth of July (Rebekah, Mouse & RJ: ...https://books.google.com/books?id=p43KAwAAQBAJTraduire cette page", + "snippet": "Mouse a quick nod. In gym Mouse taped a note to a volleyball and bounced it in Amanda's direction. She caught it, read the note and sent the ball back with a ...", + "visible_link": "https://books.google.com/books?id=p43KAwAAQBAJ", + "date": "", + "rank": 142 + }, + { + "link": "https://books.google.com/books?id=QF50CgAAQBAJ&pg=PT8&lpg=PT8&dq=mouse&source=bl&ots=9cPMXbx-dZ&sig=ACfU3U3M0qP8XXcTRt3YZFzdy37QHBOOvg&hl=fr&sa=X&ved=2ahUKEwjm__7am-LiAhVLJFAKHanBCrs4ZBDoATAxegQIYhAB", + "title": "Mouse and Dragon - Résultats Google Recherche de Livreshttps://books.google.com/books?isbn=1482852780Traduire cette page", + "snippet": "Mouse lived in a little house next to a river and grew potatoes for a living. Dragon moved in next door and began fishing in the river. Mouse thought Dragon was ...", + "visible_link": "https://books.google.com/books?isbn=1482852780", + "date": "", + "rank": 143 + }, + { + "link": "https://whatis.techtarget.com/definition/mouse", + "title": "What is mouse? - Definition from WhatIs.comhttps://whatis.techtarget.com/definition/mouseEn cacheTraduire cette page", + "snippet": "A mouse is a small device that a computer user pushes across a desk surface in order to point to a place on a display screen and to select one or more actions to ...", + "visible_link": "https://whatis.techtarget.com/definition/mouse", + "date": "", + "rank": 144 + }, + { + "link": "https://www.nytimes.com/2013/07/04/technology/douglas-c-engelbart-inventor-of-the-computer-mouse-dies-at-88.html", + "title": "Computer Visionary Who Invented the Mouse - The New York Timeshttps://www.nytimes.com/.../douglas-c-engelbart-inventor-of-the-c...Traduire cette page", + "snippet": "3 juil. 2013 - For the event, he sat on stage in front of a mouse, a keyboard and other controls and projected the computer display onto a 22-foot-high video ...", + "visible_link": "https://www.nytimes.com/.../douglas-c-engelbart-inventor-of-the-c...", + "date": "3 juil. 2013 - ", + "rank": 145 + }, + { + "link": "https://books.google.com/books?id=4jqpDQAAQBAJ&pg=PA564&lpg=PA564&dq=mouse&source=bl&ots=ns9O34Wnq1&sig=ACfU3U1b-sluQgUj7-GdviERnkEDL49NjA&hl=fr&sa=X&ved=2ahUKEwjm__7am-LiAhVLJFAKHanBCrs4ZBDoATA0egQIXRAB", + "title": "Morphological Mouse Phenotyping: Anatomy, Histology and Imaginghttps://books.google.com/books?isbn=0128128771Traduire cette page", + "snippet": "Genealogies of mouse inbred strains. Nat Genet. 2000; 24: 23-25. Paigen K. One hundred years of mouse genetics: An intellectual history. I. The classical period ...", + "visible_link": "https://books.google.com/books?isbn=0128128771", + "date": "", + "rank": 146 + }, + { + "link": "https://us.letgo.com/en/scl/minnesota/hennepin-county-2/plymouth/mouse", + "title": "Used and new mouse in Plymouth - letgohttps://us.letgo.com/en/scl/minnesota/hennepin-county-2/.../mouseEn cacheTraduire cette page", + "snippet": "Used and new mouse in Plymouth, Minnesota - letgo is the best place to buy and sell used and new mouse in Plymouth, Minnesota.", + "visible_link": "https://us.letgo.com/en/scl/minnesota/hennepin-county-2/.../mouse", + "date": "", + "rank": 147 + }, + { + "link": "https://us.letgo.com/en/scl/michigan/kent-county/wyoming/mouse", + "title": "Used and new mouse in Wyoming - letgohttps://us.letgo.com/en/scl/michigan/kent-county/.../mouseEn cacheTraduire cette page", + "snippet": "Used and new mouse in Wyoming, Michigan - letgo is the best place to buy and sell used and new mouse in Wyoming, Michigan.", + "visible_link": "https://us.letgo.com/en/scl/michigan/kent-county/.../mouse", + "date": "", + "rank": 148 + }, + { + "link": "https://www.bleepingcomputer.com/forums/t/699203/mouse-keyboard-monitor-not-working-after-power-surge/", + "title": "Mouse, keyboard, monitor not working after power surge - Windows ...https://www.bleepingcomputer.com/.../mouse-keyboard-monitor-n...En cacheTraduire cette page", + "snippet": "It clearly is on because I can see the lights on inside of it and hear it, though my mouse, monitor, and keyboard all do not work or light up.", + "visible_link": "https://www.bleepingcomputer.com/.../mouse-keyboard-monitor-n...", + "date": "", + "rank": 149 + }, + { + "link": "https://www.ozbargain.com.au/node/462990", + "title": "Range Rover Evoque Wireless Click Car Mouse (Official) $99.95 Now ...https://www.ozbargain.com.au/node/462990En cacheTraduire cette page", + "snippet": "Il y a 7 heures - Deal: Range Rover Evoque Wireless Click Car Mouse (Official) $99.95 Now Only for $59.95 with Free Shipping @ Quirksy.com.au, Store: ...", + "visible_link": "https://www.ozbargain.com.au/node/462990", + "date": "Il y a 7 heures - ", + "rank": 150 + }, + { + "link": "https://pypi.org/project/plover-mouse/", + "title": "plover-mouse · PyPIhttps://pypi.org/project/plover-mouse/En cacheTraduire cette page", + "snippet": "Il y a 6 heures - Commands. {PLOVER:mouse_move:x,y}: Move the mouse cursor relative to its current position. {PLOVER:mouse_position:x,y}: Move the ...", + "visible_link": "https://pypi.org/project/plover-mouse/", + "date": "Il y a 6 heures - ", + "rank": 151 + }, + { + "link": "http://www.slate.com/articles/health_and_science/the_mouse_trap/2011/11/lab_mice_are_they_limiting_our_understanding_of_human_disease_.html", + "title": "The Mouse Trapwww.slate.com/...mouse.../lab_mice_are_they_limiting_our_under...En cachePages similairesTraduire cette page", + "snippet": "16 nov. 2011 - It might well be the case that a mouse can be starved into good health—that a deprived and skinny brain is more robust than one that's well-fed.", + "visible_link": "www.slate.com/...mouse.../lab_mice_are_they_limiting_our_under...", + "date": "16 nov. 2011 - ", + "rank": 152 + }, + { + "link": "https://supreme.findlaw.com/legal-commentary/the-mouse-that-ate-the-public-domain.html", + "title": "The Mouse That Ate The Public Domain | FindLawhttps://supreme.findlaw.com/.../the-mouse-that-ate-the-public-dom...En cacheTraduire cette page", + "snippet": "5 mars 2002 - Read Legal Commentary: The Mouse That Ate The Public Domain at FindLaw.com.", + "visible_link": "https://supreme.findlaw.com/.../the-mouse-that-ate-the-public-dom...", + "date": "5 mars 2002 - ", + "rank": 153 + }, + { + "link": "https://www.kwt80.com/mouse", + "title": "kwt80 | Mouse - Al Kuwaitia Computershttps://www.kwt80.com/mouseEn cacheTraduire cette page", + "snippet": "Computer Store Pc Games Store kuwiat Al Kuwaitia Computers Email: info@kwt80.com araufpkg@hotmail.com araufpkg@gmail.com Contect No: 97889738.", + "visible_link": "https://www.kwt80.com/mouse", + "date": "", + "rank": 154 + }, + { + "link": "https://marcelzweedijk.nl/ddtn/neby.php?world=5&looping=176&nm618=razer-mouse-not-working", + "title": "Razer mouse not working - Marcel Zweedijkhttps://marcelzweedijk.nl/ddtn/neby.php?world=5...mouse...En cacheTraduire cette page", + "snippet": "Ummmm, its a USB mouse. The cursor was in the middle of the screen and it was invisible. Though, this article isn't about news related to Razer Company.", + "visible_link": "https://marcelzweedijk.nl/ddtn/neby.php?world=5...mouse...", + "date": "", + "rank": 155 + }, + { + "link": "http://www.agrinews-pubs.com/lifestyles/health/how-old-are-your-organs-salk-ucsd-mouse-study-finds/article_7adbb1b2-1a23-5a61-8884-a7f069a812b7.html", + "title": "How old are your organs? Salk, UCSD mouse study finds human ...www.agrinews-pubs.com/...mouse.../article_7adbb1b2-1a23-5a61-...Traduire cette page", + "snippet": "Il y a 1 jour - Female mice were fed chow containing the isotope, then mated with a male mouse. They were given the isotope-containing chow during their ...", + "visible_link": "www.agrinews-pubs.com/...mouse.../article_7adbb1b2-1a23-5a61-...", + "date": "Il y a 1 jour - ", + "rank": 156 + }, + { + "link": "https://community.teamviewer.com/t5/TeamViewer-General/SOLVED-Mouse-doesn-t-work-on-remote-machine/td-p/63843", + "title": "[SOLVED] Mouse doesn't work on remote machine - TeamViewer ...https://community.teamviewer.com/t5/...Mouse-doesn.../63843En cacheTraduire cette page", + "snippet": "I solved my problem: Open the Task Manager on remote machine (If you cannot open this window with mouse, you can do that, clicking in the - 63843.", + "visible_link": "https://community.teamviewer.com/t5/...Mouse-doesn.../63843", + "date": "", + "rank": 157 + }, + { + "link": "https://www.storyberries.com/fairy-tales-the-little-good-mouse-countess-daulnoy-fairytales/", + "title": "The Little Good Mouse | Fairy Tales | Bedtime Stories - Storyberrieshttps://www.storyberries.com/fairy-tales-the-little-good-mouse-cou...En cacheTraduire cette page", + "snippet": "Il y a 21 heures - A mouse helps protect a happy queen from a jealous king. Read the best fairy tales, bedtime stories, poems for kids and short stories for kids at ...", + "visible_link": "https://www.storyberries.com/fairy-tales-the-little-good-mouse-cou...", + "date": "Il y a 21 heures - ", + "rank": 158 + }, + { + "link": "https://forum.workfusion.com/t/mouse-click-by-image-doesnt-work/60676", + "title": "Mouse click by image doesn't work - RPA Express - WorkFusion Forumhttps://forum.workfusion.com/t/mouse-click-by-image.../60676En cacheTraduire cette page", + "snippet": "First, i can't open app by launch application so i am using keystrokes win+r and it works. Second, the window app has opened but i can't click ...", + "visible_link": "https://forum.workfusion.com/t/mouse-click-by-image.../60676", + "date": "", + "rank": 159 + }, + { + "link": "https://www.telegraphindia.com/india/wounded-tiger-versus-cat-and-mouse-delhi/cid/1692197", + "title": "Wounded tiger versus cat-and-mouse Delhi - Telegraph Indiahttps://www.telegraphindia.com/india/...tiger...mouse.../1692197En cacheTraduire cette page", + "snippet": "Il y a 19 heures - Wounded tiger versus cat-and-mouse Delhi. Mamata accuses the BJP of hatching a larger conspiracy to give her government a bad name and ...", + "visible_link": "https://www.telegraphindia.com/india/...tiger...mouse.../1692197", + "date": "Il y a 19 heures - ", + "rank": 160 + }, + { + "link": "https://www.kxnet.com/tag/mouse-river-players/", + "title": "mouse river players | KX NEWShttps://www.kxnet.com/tag/mouse-river-players/En cacheTraduire cette page", + "snippet": "The Latest News and Updates in brought to you by the team at KX NEWS:", + "visible_link": "https://www.kxnet.com/tag/mouse-river-players/", + "date": "", + "rank": 161 + }, + { + "link": "http://coemle.org/lhvq/3jc1.php?world=5&looping=176&nm362=mouse-events-javascript", + "title": "Mouse events javascriptcoemle.org/lhvq/3jc1.php?world=5&looping=176...mouse...En cacheTraduire cette page", + "snippet": "In JavaScript, your primary way of dealing with the mouse is through events. When an event occurs on a target element, e. Whenever the mouse moves away ...", + "visible_link": "coemle.org/lhvq/3jc1.php?world=5&looping=176...mouse...", + "date": "", + "rank": 162 + }, + { + "link": "https://www.mi.com/gaming-mouse/?cfrom=search", + "title": "小米游戏鼠标 - Mi.comhttps://www.mi.com/gaming-mouse/?cfrom=searchTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://www.mi.com/gaming-mouse/?cfrom=search", + "date": "", + "rank": 163 + }, + { + "link": "https://www.newyorker.com/magazine/2008/07/21/the-lion-and-the-mouse", + "title": "The Battle Over E. B. White's “Stuart Little” | The New Yorkerhttps://www.newyorker.com/magazine/2008/07/21/the-lion-and-the-mouse", + "snippet": "14 juil. 2008 - He had a pet mouse; he thought he looked a little mousy himself. In 1909, when he was nine, he won a prize for a poem about a mouse.", + "visible_link": "https://www.newyorker.com/magazine/2008/07/21/the-lion-and-the-mouse", + "date": "14 juil. 2008 - ", + "rank": 164 + }, + { + "link": "https://www.claires.com/us/disney-minnie-mouse-baseball-cap---pink-246573.html", + "title": "Disney® Minnie Mouse Baseball Cap - Pink | Claire's UShttps://www.claires.com/.../disney-minnie-mouse-baseball-cap---pi...En cacheTraduire cette page", + "snippet": "This velvety baseball cap has pom pom Minnie Mouse ears with a pink sequin bow in the middle! You can see Minnie's signature above the snap back closure.", + "visible_link": "https://www.claires.com/.../disney-minnie-mouse-baseball-cap---pi...", + "date": "", + "rank": 165 + }, + { + "link": "https://www.reddit.com/r/MouseReview/comments/bz451v/starting_an_indiegogo_for_my_mouse/", + "title": "Starting an Indiegogo for my mouse : MouseReview - Reddithttps://www.reddit.com/.../MouseReview/.../starting_an_indiegogo...En cacheTraduire cette page", + "snippet": "I designed and created a mouse based off of the g100s shape with slightly straighter sides, and different side button placement. I found the ...", + "visible_link": "https://www.reddit.com/.../MouseReview/.../starting_an_indiegogo...", + "date": "", + "rank": 166 + }, + { + "link": "https://www.mouse-jp.co.jp/", + "title": "BTOパソコン・PC通販ショップのマウスコンピューター【公式】https://www.mouse-jp.co.jp/En cacheTraduire cette page", + "snippet": "製品を見る. mouse ノートPC · mouse デスクトップPC · mouse ゲームPC · mouse クリエイターPC · mouse 法人向けPC · 製品を見る ...", + "visible_link": "https://www.mouse-jp.co.jp/", + "date": "", + "rank": 167 + }, + { + "link": "https://www.marthastewart.com/shop/merchant-41-burgundy-mouse-tail-cord-1-8-pa1711781601e9514a0268cb4f955e075.html", + "title": "Shopping Special: Burgundy Mouse Tail Cord - 1/8\" - Martha Stewarthttps://www.marthastewart.com/.../merchant-41-burgundy-mouse-t...En cacheTraduire cette page", + "snippet": "Use Burgundy Mouse Tail Cord to bring your creative ideas to completion! This thin, round cording features a sleek surface in deep, dark red color. Cut it to size ...", + "visible_link": "https://www.marthastewart.com/.../merchant-41-burgundy-mouse-t...", + "date": "", + "rank": 168 + }, + { + "link": "https://www.marthastewart.com/shop/merchant-41-navy-mouse-tail-cord-1-8-p5c88af554bc9126c8175a705afb2ca99.html", + "title": "Summer Shopping Special: Navy Mouse Tail Cord - 1/8\"https://www.marthastewart.com/.../merchant-41-navy-mouse-tail-c...En cacheTraduire cette page", + "snippet": "Use Navy Mouse Tail Cord to bring your creative ideas to completion! This thin, round cording features a sleek surface in a deep navy blue color. Cut it to size ...", + "visible_link": "https://www.marthastewart.com/.../merchant-41-navy-mouse-tail-c...", + "date": "", + "rank": 169 + }, + { + "link": "http://www.twitter.com/mouse", + "title": "Mouse - Twitterwww.twitter.com/mouseTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "www.twitter.com/mouse", + "date": "", + "rank": 170 + }, + { + "link": "https://www.biorxiv.org/content/early/2019/06/11/666511.full.pdf", + "title": "Sperm quality parameters are increased and asymmetric in ... - bioRxivhttps://www.biorxiv.org/content/early/2019/06/.../666511.full.pdfEn cacheTraduire cette page", + "snippet": "Il y a 6 heures - To explore the effect of hybridization on sperm quality. 24 we produced F1 hybrids from 29 wild derived strains of two house mouse subspecies, ...", + "visible_link": "https://www.biorxiv.org/content/early/2019/06/.../666511.full.pdf", + "date": "Il y a 6 heures - ", + "rank": 171 + }, + { + "link": "https://www.cisbio.com/dd/by-category/biomarkers?attr_1486=Mouse", + "title": "Mouse - Cisbiohttps://www.cisbio.com/dd/by-category/biomarkers?attr...MouseTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://www.cisbio.com/dd/by-category/biomarkers?attr...Mouse", + "date": "", + "rank": 172 + }, + { + "link": "http://www.vinohrady-vladar.sk/u7tl/gazh.php?world=5&looping=176&nm419=logitech-mouse-auto-scroll", + "title": "Logitech mouse auto scrollwww.vinohrady-vladar.sk/u7tl/gazh.php?world=5...mouse...En cacheTraduire cette page", + "snippet": "The Logitech G5 Laser Mouse SE features a 2000 dpi laser engine. This is particularly annoying when I'm trying to click on a field to enter data such as login info ...", + "visible_link": "www.vinohrady-vladar.sk/u7tl/gazh.php?world=5...mouse...", + "date": "", + "rank": 173 + }, + { + "link": "https://visegradinsight.eu/orbans-cat-and-mouse-game/", + "title": "Orbán's Cat and Mouse Game - Visegrad Insighthttps://visegradinsight.eu/orbans-cat-and-mouse-game/En cacheTraduire cette page", + "snippet": "Il y a 6 heures - The EU Commission should stop accepting symbolic compliance from the Hungarian government and enforce substantive agreements by ...", + "visible_link": "https://visegradinsight.eu/orbans-cat-and-mouse-game/", + "date": "Il y a 6 heures - ", + "rank": 174 + }, + { + "link": "https://genome.ucsc.edu/cgi-bin/hgGateway?db=mm10", + "title": "GRCm38/mm10 - UCSC Genome Browser - UC Santa Cruzhttps://genome.ucsc.edu/cgi-bin/hgGateway?db=mm10Pages similairesTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://genome.ucsc.edu/cgi-bin/hgGateway?db=mm10", + "date": "", + "rank": 175 + }, + { + "link": "https://neurosciencenews.com/pten-glioblastoma-brain-cancer-14201/", + "title": "Study finds macrophages' pathway to nurture PTEN-deficient ...https://neurosciencenews.com/pten-glioblastoma-brain-cancer-142...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - LOX attracts macrophages which protect glioblastoma brain cancer cells and provide growth factor support for the tumor, a new mouse study ...", + "visible_link": "https://neurosciencenews.com/pten-glioblastoma-brain-cancer-142...", + "date": "Il y a 1 jour - ", + "rank": 176 + }, + { + "link": "https://www.cell.com/cell-reports/pdf/S2211-1247(19)30686-2.pdf", + "title": "Tumor Heterogeneity Underlies Differential Cisplatin ... - Cell Presshttps://www.cell.com/cell-reports/pdf/S2211-1247(19)30686-2.pdfTraduire cette page", + "snippet": "Il y a 3 heures - Tumor Heterogeneity Underlies Differential Cisplatin. Sensitivity in Mouse Models of Small-Cell Lung. Cancer. Graphical Abstract. Highlights d.", + "visible_link": "https://www.cell.com/cell-reports/pdf/S2211-1247(19)30686-2.pdf", + "date": "Il y a 3 heures - ", + "rank": 177 + }, + { + "link": "http://archive.macleans.ca/article/2019/7/1/fentanyl-at-the-click-of-a-mouse", + "title": "FENTANYL AT THE CLICK OF A MOUSE | Maclean's | JULY 2019archive.macleans.ca/article/2019/7/1/fentanyl-at-the-click-of-a-mouseEn cache", + "snippet": "1 juil. 2019 - FENTANYL AT THE CLICK OF A MOUSE. A former dealer illuminates the shadowy supply chain of a deadly drug. CLAIRE BROWNELL July 1 ...", + "visible_link": "archive.macleans.ca/article/2019/7/1/fentanyl-at-the-click-of-a-mouse", + "date": "1 juil. 2019 - ", + "rank": 178 + }, + { + "link": "https://gamingheadsetpros.com/collections/mouses", + "title": "Mouses - GamingHeadsetPros.comhttps://gamingheadsetpros.com/collections/mousesEn cacheTraduire cette page", + "snippet": "HUGE SALES ON ALL GAMING ACCESSORIES SHOP NOW accessories, clearance, combo, keyboard, mouse GamingHeadsetPros.com.", + "visible_link": "https://gamingheadsetpros.com/collections/mouses", + "date": "", + "rank": 179 + }, + { + "link": "https://inkbotdesign.com/best-mouse-for-designers/", + "title": "What is the Best Mouse for Web and Graphic Designers? - Inkbot Designhttps://inkbotdesign.com/best-mouse-for-designers/En cacheTraduire cette page", + "snippet": "Il y a 5 heures - This mouse was created to maximise productivity, and that's exactly what makes it the first preference of hundreds of designers out there.", + "visible_link": "https://inkbotdesign.com/best-mouse-for-designers/", + "date": "Il y a 5 heures - ", + "rank": 180 + }, + { + "link": "https://www.chrono24.com/rolex/1500-oyster-perpetual-date-mickey-mouse-b--p-sofort--id11439665.htm", + "title": "Rolex 1500 Oyster Perpetual Date\" Mickey Mouse\" B & P Sofort for ...https://www.chrono24.com › ... › Oyster Perpetual Date watchesEn cacheTraduire cette page", + "snippet": "Rolex Oyster Perpetual Date ad: $5706 Rolex 1500 Oyster Perpetual Date\" Mickey Mouse\" B & P Sofort Reference number 1500 Mickey Mouse Sofort verfügbar ...", + "visible_link": "https://www.chrono24.com › ... › Oyster Perpetual Date watches", + "date": "", + "rank": 181 + }, + { + "link": "https://www.mdpi.com/1420-3049/24/11/2192/pdf", + "title": "The PPAR Agonist Rosiglitazone Suppresses Syngeneic Mouse SCC ...https://www.mdpi.com/1420-3049/24/11/2192/pdfEn cacheTraduire cette page", + "snippet": "Il y a 6 heures - Syngeneic Mouse SCC (Squamous Cell Carcinoma). Tumor Growth through an. Immune-Mediated Mechanism. Raymond L. Konger 1,2,3,*, ...", + "visible_link": "https://www.mdpi.com/1420-3049/24/11/2192/pdf", + "date": "Il y a 6 heures - ", + "rank": 182 + }, + { + "link": "https://www.e-katec.com.br/mouse", + "title": "mouse......https://www.e-katec.com.br/mouse", + "snippet": "Mouse Gamer, sem fio e USB e Mouse RGB.", + "visible_link": "https://www.e-katec.com.br/mouse", + "date": "", + "rank": 183 + }, + { + "link": "http://www.vishnyakov.net/", + "title": "mousewww.vishnyakov.net/En cacheTraduire cette page", + "snippet": "", + "visible_link": "www.vishnyakov.net/", + "date": "", + "rank": 184 + }, + { + "link": "http://www.computerpart.in/Mouse", + "title": "Mousewww.computerpart.in/MouseTraduire cette page", + "snippet": "Mouse. Mouse. Categories. Accessories (19) · Computer (0) · Computer_Cabinet (0) · CPU (0) · CPU_Fan (0) · Display_Card (0) · DVD Writer (3) · Hard Disk ...", + "visible_link": "www.computerpart.in/Mouse", + "date": "", + "rank": 185 + }, + { + "link": "http://www.chromajet.com.br/mouse.htm", + "title": "mouse - Chromajetwww.chromajet.com.br/mouse.htmTraduire cette page", + "snippet": "", + "visible_link": "www.chromajet.com.br/mouse.htm", + "date": "", + "rank": 186 + }, + { + "link": "http://ashfash.com/product-category/mouse/", + "title": "Mouse – ashfash.comashfash.com/product-category/mouse/En cacheTraduire cette page", + "snippet": "... Keyboard · Laptop · Laptops & Tablets · Macbook · mango juice · Mouse · Organic · Potato chips · Salads · Saw · Smart TV · Smartphone · Speaker · Tablets ...", + "visible_link": "ashfash.com/product-category/mouse/", + "date": "", + "rank": 187 + }, + { + "link": "https://gadgetmac.com/news?tag=mouse", + "title": "mouse - Gadgetmachttps://gadgetmac.com/news?tag=mouseTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://gadgetmac.com/news?tag=mouse", + "date": "", + "rank": 188 + }, + { + "link": "http://www.pcmouse.com/", + "title": "www.pcmouse.com/En cache", + "snippet": "", + "visible_link": "", + "date": "", + "rank": 189 + }, + { + "link": "http://www.h24mighty-mouse.com/", + "title": "www.h24mighty-mouse.comwww.h24mighty-mouse.com/Traduire cette page", + "snippet": "", + "visible_link": "www.h24mighty-mouse.com/", + "date": "", + "rank": 190 + }, + { + "link": "http://www.bother.de/", + "title": "Running Mousewww.bother.de/En cacheTraduire cette page", + "snippet": "Running Mouse.", + "visible_link": "www.bother.de/", + "date": "", + "rank": 191 + }, + { + "link": "http://www.ironmouse.com/", + "title": "Iron Mousewww.ironmouse.com/En cacheTraduire cette page", + "snippet": "", + "visible_link": "www.ironmouse.com/", + "date": "", + "rank": 192 + }, + { + "link": "http://pcgamingmousehouse.com/", + "title": "PC Gaming Mousepcgamingmousehouse.com/En cacheTraduire cette page", + "snippet": "", + "visible_link": "pcgamingmousehouse.com/", + "date": "", + "rank": 193 + }, + { + "link": "http://mouse.click/", + "title": "Mouse.clickmouse.click/En cacheTraduire cette page", + "snippet": "", + "visible_link": "mouse.click/", + "date": "", + "rank": 194 + }, + { + "link": "http://athiresortsgoa.com/5tgu/vhhl.php?world=5&looping=176&nm290=increase-mouse-speed-linux-mint", + "title": "Increase mouse speed linux mint - Athi resortathiresortsgoa.com/5tgu/vhhl.php?world=5...176...mouse...En cacheTraduire cette page", + "snippet": "Adjust the Mouse Speed or Touchpad Speed slider until the pointer motion is comfortable for you. Hyper-V bug that affects Linux VM networking-- New Hyper-V ...", + "visible_link": "athiresortsgoa.com/5tgu/vhhl.php?world=5...176...mouse...", + "date": "", + "rank": 195 + }, + { + "link": "http://tarifabaja.com/4hff/lf2f.php?world=5&looping=176&nm386=reinstall-logitech-mouse-driver", + "title": "Reinstall logitech mouse driver - Tarifa Bajatarifabaja.com/4hff/lf2f.php?world=5&looping...mouse...En cacheTraduire cette page", + "snippet": "But if the HID-compliant mouse not working on Windows 10 remains on your computer, maybe it is the HID-compliant mouse driver issues that cause Windows ...", + "visible_link": "tarifabaja.com/4hff/lf2f.php?world=5&looping...mouse...", + "date": "", + "rank": 196 + }, + { + "link": "http://andyzou.com/dzz3/bvlf.php?world=5&looping=176&nm994=mouse-not-working-phoenix-os", + "title": "Mouse not working phoenix os - Andy Zouandyzou.com/dzz3/bvlf.php?world=5&looping...mouse...En cacheTraduire cette page", + "snippet": "Attention [Solution] (Kinda) Mouse not working on some games (self. What Notebook Should I Buy? Not sure which laptop you should buy? It's a tough decision, ...", + "visible_link": "andyzou.com/dzz3/bvlf.php?world=5&looping...mouse...", + "date": "", + "rank": 197 + }, + { + "link": "https://dswa.nl/mouse-wiring-diagram.html", + "title": "Mouse Wiring Diagram | Wiring Diagramhttps://dswa.nl/mouse-wiring-diagram.htmlEn cacheTraduire cette page", + "snippet": "Mouse Wiring Diagram - the standard ps 2 mouse with logitech mouse defaults to 160 cpi and can be switched to 40 80 160 or 320 cpi with software microsoft ...", + "visible_link": "https://dswa.nl/mouse-wiring-diagram.html", + "date": "", + "rank": 198 + } + ] } } } \ No newline at end of file diff --git a/output.json b/output.json new file mode 100644 index 0000000..16b861d --- /dev/null +++ b/output.json @@ -0,0 +1,3206 @@ +{ + "cat": { + "1": { + "time": "Tue, 11 Jun 2019 19:54:49 GMT", + "num_results": "Environ 4 280 000 000 résultats (0,64 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://fr.wikipedia.org/wiki/CAT", + "title": "CAT — Wikipédiahttps://fr.wikipedia.org/wiki/CATEn cachePages similaires", + "snippet": "Le sigle ou l'acronyme CAT peut signifier : cellule anti-terroriste, dans les journées successives du feuilleton télévisé 24 heures chrono ;; Central Africa Time (en ...", + "visible_link": "https://fr.wikipedia.org/wiki/CAT", + "date": "", + "rank": 1 + }, + { + "link": "https://en.wikipedia.org/wiki/Cat", + "title": "Cat - Wikipediahttps://en.wikipedia.org/wiki/CatEn cachePages similairesTraduire cette page", + "snippet": "The cat (Felis catus) is a small carnivorous mammal. It is the only domesticated species in the family Felidae and often referred to as the domestic cat to ...", + "visible_link": "https://en.wikipedia.org/wiki/Cat", + "date": "", + "rank": 2 + }, + { + "link": "https://www.cat.com/", + "title": "Cat | global-selector | Caterpillarhttps://www.cat.com/En cacheTraduire cette page", + "snippet": "Genuine enabler of sustainable world progress and opportunity, defined by the brand attributes of global leadership, innovation and sustainability.", + "visible_link": "https://www.cat.com/", + "date": "", + "rank": 3 + }, + { + "link": "https://www.purina.com/cats/cat-breeds", + "title": "Cat Breed Collection | Purinahttps://www.purina.com › CatsEn cachePages similairesTraduire cette page", + "snippet": "Trying to decide what type of cat is right for you and your family? Browse through our list of popular cat breeds, and find the best breed for your lifestyle.", + "visible_link": "https://www.purina.com › Cats", + "date": "", + "rank": 4 + }, + { + "link": "https://www.petfinder.com/cats/", + "title": "Cats: Adoption, Bringing A Cat Home and Care - Petfinderhttps://www.petfinder.com/cats/En cachePages similairesTraduire cette page", + "snippet": "Everything you need to know about how to adopt a cat, bringing your new cat home, cat health and care and more!", + "visible_link": "https://www.petfinder.com/cats/", + "date": "", + "rank": 5 + }, + { + "link": "https://www.petco.com/shop/en/petcostore/category/cat", + "title": "Cat: Cat Food, Litter Boxes and Accessories | Petcohttps://www.petco.com/shop/en/petcostore/category/catEn cacheTraduire cette page", + "snippet": "Shop for cat and kitten supplies and accessories including cat food, scratching posts, climbing towers, litter boxes and more available at Petco.", + "visible_link": "https://www.petco.com/shop/en/petcostore/category/cat", + "date": "", + "rank": 6 + }, + { + "link": "http://www.vetstreet.com/cats/", + "title": "Complete Guide to Caring for Cats | Cat Breed Information, Cat ...www.vetstreet.com/cats/En cachePages similairesTraduire cette page", + "snippet": "Your cat's online owners manual, featuring articles about breed information, cat selection, training, grooming and care for cats and kittens.", + "visible_link": "www.vetstreet.com/cats/", + "date": "", + "rank": 7 + }, + { + "link": "https://www.webmd.com/pets/cats/default.htm", + "title": "Cat Health Center | Cat Care and Information from WebMDhttps://www.webmd.com › Healthy CatsEn cacheTraduire cette page", + "snippet": "WebMD veterinary experts provide comprehensive information about cat health care, offer nutrition and feeding tips, and help you identify illnesses in cats.", + "visible_link": "https://www.webmd.com › Healthy Cats", + "date": "", + "rank": 8 + }, + { + "link": "https://www.azhumane.org/adopt/find-a-pet/adopt-a-cat/", + "title": "Adopt a Cat - Kitten Adoptions - Arizona Humane Societyhttps://www.azhumane.org/adopt/find-a-pet/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Looking for cats and kittens for adoption? AHS has adorable, adoptable kitties waiting to meet you. We can help you find the perfect kitten or cat.", + "visible_link": "https://www.azhumane.org/adopt/find-a-pet/adopt-a-cat/", + "date": "", + "rank": 9 + }, + { + "link": "https://www.austinpetsalive.org/adopt/cats", + "title": "Available Cats - Austin Pets Alive!https://www.austinpetsalive.org › AdoptEn cacheTraduire cette page", + "snippet": "Available Cats Check out all of the cats in APA!'s care who are looking for their forever home! Use the search tool below to find your purrfect match.", + "visible_link": "https://www.austinpetsalive.org › Adopt", + "date": "", + "rank": 10 + }, + { + "link": "https://www.petsmart.com/cat/", + "title": "Cat Supplies: Kitten Accessories & Products | PetSmarthttps://www.petsmart.com/cat/En cacheTraduire cette page", + "snippet": "With the latest cat supplies and accessories, including beds, bowls and litter boxes, PetSmart makes shopping simple. From kittens to adult cats, you'll find ...", + "visible_link": "https://www.petsmart.com/cat/", + "date": "", + "rank": 11 + }, + { + "link": "https://catadoptionteam.org/adopt/", + "title": "Adopt a Cat in Portland | Cats For Adoptionhttps://catadoptionteam.org/adopt/En cacheTraduire cette page", + "snippet": "Whether you want to adopt a playmate or a snuggle buddy, the cats and kittens for adoption from CAT are ready to join your family. Let the matchmaking begin!", + "visible_link": "https://catadoptionteam.org/adopt/", + "date": "", + "rank": 12 + }, + { + "link": "https://mashable.com/category/cats/", + "title": "Cats - Mashablehttps://mashable.com/category/cats/En cacheTraduire cette page", + "snippet": "Cats are the furry felines we all know and love... even if they're a little aloof. The term can refer to house cats -- smaller, domesticated mammals -- or wild cats, ...", + "visible_link": "https://mashable.com/category/cats/", + "date": "", + "rank": 13 + }, + { + "link": "https://www.nationalgeographic.com/animals/2019/04/cats-recognize-names-dogs-pets/", + "title": "Cats know their names—why it's harder for them than dogshttps://www.nationalgeographic.com/.../cats-recognize-names-dogs...En cacheTraduire cette page", + "snippet": "4 avr. 2019 - New research in Japan's cat cafes reveals our pet felines are more attuned to us than we thought.", + "visible_link": "https://www.nationalgeographic.com/.../cats-recognize-names-dogs...", + "date": "4 avr. 2019 - ", + "rank": 14 + }, + { + "link": "https://www.theguardian.com/film/2019/jun/11/nicole-kidman-animal-rights-ethics-hiking-cats-backpack", + "title": "Cat lovers question ethics of Nicole Kidman hiking with pets in ...https://www.theguardian.com/.../nicole-kidman-animal-rights-ethics-hiking-cats-backpac...", + "snippet": "Il y a 5 heures - The actor's revelations that she often goes for walks toting cats – and that she ate ants – have been met with scepticism by animal rights groups.", + "visible_link": "https://www.theguardian.com/.../nicole-kidman-animal-rights-ethics-hiking-cats-backpac...", + "date": "Il y a 5 heures - ", + "rank": 15 + }, + { + "link": "http://placerspca.org/adopt-home/cats/", + "title": "Adoptable Cats at the Placer SPCAplacerspca.org/adopt-home/cats/En cacheTraduire cette page", + "snippet": "View the adoptable cats at the Placer SPCA. This page shows all available cats across all three of our adoption centers.", + "visible_link": "placerspca.org/adopt-home/cats/", + "date": "", + "rank": 16 + }, + { + "link": "https://www.caterpillar.com/", + "title": "Caterpillar | Caterpillarhttps://www.caterpillar.com/En cacheTraduire cette page", + "snippet": "Caterpillar Inc. Company information, investor information, news and careers. Cat products and services. Dow Jones Top 30. NYSE Symbol CAT.", + "visible_link": "https://www.caterpillar.com/", + "date": "", + "rank": 17 + }, + { + "link": "https://www.jaxhumane.org/adopt/available-pets/humane-society-pets/humanesocietypetscatsnew/", + "title": "Adopt A Cat or Kitten | Jacksonville Humane Societyhttps://www.jaxhumane.org/adopt/.../humanesocietypetscatsnew/En cacheTraduire cette page", + "snippet": "The Jacksonville Humane Society has a wide variety of cats and kittens, of all ages and colors, waiting to meet you at 8464 Beach Blvd. All pets are.", + "visible_link": "https://www.jaxhumane.org/adopt/.../humanesocietypetscatsnew/", + "date": "", + "rank": 18 + }, + { + "link": "https://arlgp.org/adopt/cats/", + "title": "Cats - Animal Refuge League of Greater Portland - Maine Animal Shelterhttps://arlgp.org › AdoptEn cacheTraduire cette page", + "snippet": "Listed below are our currently available cats. To learn more about the adoption process, please visit our ADOPT information page. We look forward to meeting ...", + "visible_link": "https://arlgp.org › Adopt", + "date": "", + "rank": 19 + }, + { + "link": "https://www.boulderhumane.org/cats/", + "title": "Cats – Humane Society of Boulder Valleyhttps://www.boulderhumane.org/cats/En cacheTraduire cette page", + "snippet": "24 mai 2019 - June is Adopt a Shelter Cat month! All cat (ages 6 months and older) adoption fees are waived June 1 – 30. Sort by Age Sort by Breed", + "visible_link": "https://www.boulderhumane.org/cats/", + "date": "24 mai 2019 - ", + "rank": 20 + }, + { + "link": "https://hsnaples.org/adopt-a-cat/", + "title": "Adopt A Cat | Humane Society Naples No-Kill Animal Shelterhttps://hsnaples.org/adopt-a-cat/En cacheTraduire cette page", + "snippet": "There are many adoptable cats available at the Humane Society Naples. A non-profit, no kill animal shelter in Collier County. Adopt a Cat Today!", + "visible_link": "https://hsnaples.org/adopt-a-cat/", + "date": "", + "rank": 21 + }, + { + "link": "https://maxfund.org/Adopt-a-Cat", + "title": "Adopt a Cat - MaxFundhttps://maxfund.org/Adopt-a-CatEn cacheTraduire cette page", + "snippet": "MaxFund has cats of all ages available for adoption in Denver, come visit our cat shelter and check out all of our furry feline friends.", + "visible_link": "https://maxfund.org/Adopt-a-Cat", + "date": "", + "rank": 22 + }, + { + "link": "https://finance.yahoo.com/quote/CAT/", + "title": "Caterpillar, Inc. (CAT) Stock Price, Quote, History & Newshttps://finance.yahoo.com/quote/CAT/En cacheTraduire cette page", + "snippet": "Find the latest Caterpillar, Inc. (CAT) stock quote, history, news and other vital information to help you with your stock trading and investing.", + "visible_link": "https://finance.yahoo.com/quote/CAT/", + "date": "", + "rank": 23 + }, + { + "link": "https://www.aspca.org/pet-care/cat-care/general-cat-care", + "title": "General Cat Care | ASPCAhttps://www.aspca.org/pet-care/cat-care/general-cat-careEn cachePages similairesTraduire cette page", + "snippet": "Get a host of handy information about your feline companion in our general cat care guide. It also comes in an easy-to-print PDF for tacking on your fridge and ...", + "visible_link": "https://www.aspca.org/pet-care/cat-care/general-cat-care", + "date": "", + "rank": 24 + }, + { + "link": "https://www.reddit.com/r/cats/", + "title": "Cats - Reddithttps://www.reddit.com/r/cats/En cachePages similairesTraduire cette page", + "snippet": "Please do us mods a favor and if you report something for \"Claiming ownership of another person's cat\", make a post in the post you're reporting linking to the ...", + "visible_link": "https://www.reddit.com/r/cats/", + "date": "", + "rank": 25 + }, + { + "link": "https://www.ikea.com/us/en/catalog/categories/departments/pets/39569/", + "title": "Cats - IKEAhttps://www.ikea.com/us/en/catalog/categories/departments/.../3956...En cacheTraduire cette page", + "snippet": "Whether you need a comfy cat bed, a fun toy or just a new scoop for the litter tray, with the LURVIG product range we have you covered. There are all the basic ...", + "visible_link": "https://www.ikea.com/us/en/catalog/categories/departments/.../3956...", + "date": "", + "rank": 26 + }, + { + "link": "https://www.adoptapet.com/cat-adoption", + "title": "Cat Adoption :: Search by color, age, breed, location and more.https://www.adoptapet.com/cat-adoptionEn cacheTraduire cette page", + "snippet": "Cat Adoption - Save a life, adopt a cat. We are a non-profit helping promote cat adoption by working with local cat rescues.", + "visible_link": "https://www.adoptapet.com/cat-adoption", + "date": "", + "rank": 27 + }, + { + "link": "https://www.animalhumanesociety.org/adoption?f%5B0%5D=animal_type%3ACat", + "title": "Cats & Kittens - Animal Humane Societyhttps://www.animalhumanesociety.org/adoption?...type%3ACatEn cacheTraduire cette page", + "snippet": "Breadcrumb. Home; Adoption; Adoptable Animals · Cats & Kittens ... All Types, Dog · Rabbits & Small Animals, Cat. Facet Animal Type. All Sexes · Male · Female.", + "visible_link": "https://www.animalhumanesociety.org/adoption?...type%3ACat", + "date": "", + "rank": 28 + }, + { + "link": "https://www.seattlehumane.org/adoption/cats/", + "title": "Cats – Seattle Humanehttps://www.seattlehumane.org/adoption/cats/En cacheTraduire cette page", + "snippet": "We always have an abundance of lovable cats ready for adoption. In fact, we've got one just purrfect for you. Just click on a furry face or name below to learn ...", + "visible_link": "https://www.seattlehumane.org/adoption/cats/", + "date": "", + "rank": 29 + }, + { + "link": "http://www.acctphilly.org/adopt/available/cats/", + "title": "Adoptable Cats | ACCT Phillywww.acctphilly.org/adopt/available/cats/En cachePages similairesTraduire cette page", + "snippet": "Most of our cats are located at our Main Shelter. However, we also have cats at our Everyday Adoption Center, several Offsite Locations and in foster care that ...", + "visible_link": "www.acctphilly.org/adopt/available/cats/", + "date": "", + "rank": 30 + }, + { + "link": "https://www.thenoahcenter.org/what-we-do/adopt_a_pet/adopt_a_cat.html", + "title": "Adopt a Cat | Stanwood - Noahhttps://www.thenoahcenter.org/what-we-do/.../adopt_a_cat.htmlEn cacheTraduire cette page", + "snippet": "Search through our available cats and kittens to find your newest furry friend! Click photos for more details. Some of our available cats are housed at off-site ...", + "visible_link": "https://www.thenoahcenter.org/what-we-do/.../adopt_a_cat.html", + "date": "", + "rank": 31 + }, + { + "link": "https://www.sfspca.org/adoptions/cats", + "title": "Adopt a Cat or Kitten | Cuddly Companions Ready for a Loving Home ...https://www.sfspca.org/adoptions/catsEn cachePages similairesTraduire cette page", + "snippet": "Visit our Adoption Center to find a cat or kitten and we'll work with you to ensure the right fit. All of our animals have received a pre-adoption veterinary exam and ...", + "visible_link": "https://www.sfspca.org/adoptions/cats", + "date": "", + "rank": 32 + }, + { + "link": "https://www.catsthemusical.com/", + "title": "Cats the Musical • Official Website and Ticketshttps://www.catsthemusical.com/En cacheTraduire cette page", + "snippet": "Andrew Lloyd Webber's record-breaking, award-winning, family favourite West End and Broadway musical CATS - book your tickets today!", + "visible_link": "https://www.catsthemusical.com/", + "date": "", + "rank": 33 + }, + { + "link": "http://www.nehumanesociety.org/adopt/cats/", + "title": "Cats and Kittens - Nebraska Humane Societywww.nehumanesociety.org/adopt/cats/En cacheTraduire cette page", + "snippet": "Cats and Kittens. Cats and kittens currently available for adoption at the Nebraska Humane Society. ... Adopt a Cat. Any Gender, Male ... Show PetSmart Cats ...", + "visible_link": "www.nehumanesociety.org/adopt/cats/", + "date": "", + "rank": 34 + }, + { + "link": "https://www.arl-iowa.org/adopt/find-a-pet/pet-list/cat/", + "title": "Adopt a Cat | Animal Rescue League of Iowahttps://www.arl-iowa.org/adopt/find-a-pet/pet-list/cat/En cacheTraduire cette page", + "snippet": "Whisker Male / 11 years. ARL Main - Purriatrics Precious -- Bonded Buddy With Frisky Precious -- Bonded Buddy With Frisky Female / 9 years. Shelter Cat ...", + "visible_link": "https://www.arl-iowa.org/adopt/find-a-pet/pet-list/cat/", + "date": "", + "rank": 35 + }, + { + "link": "https://www.hawaiianhumane.org/cat-adoptions/", + "title": "Cat Adoptions | Hawaiian Humane Societyhttps://www.hawaiianhumane.org/cat-adoptions/En cacheTraduire cette page", + "snippet": "Cat Adoptions ... Domestic Shorthair/Mix. 5 months. Cat House Green. Photo · Avery. Cat. Male. Domestic Shorthair/Mix. 1 year 1 month. Special Event. Photo.", + "visible_link": "https://www.hawaiianhumane.org/cat-adoptions/", + "date": "", + "rank": 36 + }, + { + "link": "https://theoatmeal.com/tag/cats", + "title": "Comics :: Cats - The Oatmealhttps://theoatmeal.com/tag/catsEn cacheTraduire cette page", + "snippet": "Comics :: Cats. Why now, cat? AT-AT versus Cat-Cat. View ... View · Bro Cat would like to hang out. View · Is your cat plotting to kill you? This app will scan your ...", + "visible_link": "https://theoatmeal.com/tag/cats", + "date": "", + "rank": 37 + }, + { + "link": "https://www.kshumane.org/adopt/cats.html", + "title": "Cat Adoption | Kansas Humane Society | Animal Shelterhttps://www.kshumane.org/adopt/cats.htmlEn cacheTraduire cette page", + "snippet": "These cats are ready for adoption at Kansas Humane Society. Note the cats name and ID number to assist us in locating them for you. Cats listed behind the ...", + "visible_link": "https://www.kshumane.org/adopt/cats.html", + "date": "", + "rank": 38 + }, + { + "link": "https://www.heartofthevalleyshelter.org/pets/cats/", + "title": "Cats - Heart of the Valley Animal Shelterhttps://www.heartofthevalleyshelter.org/pets/cats/En cacheTraduire cette page", + "snippet": "Cat. Female/Spayed. Domestic Shorthair/Mix. 7 years 9 months. Cat Adopt. Photo. Lucy Love. 21558988. Cat. Female/Spayed. Domestic Shorthair/Mix. 12 years ...", + "visible_link": "https://www.heartofthevalleyshelter.org/pets/cats/", + "date": "", + "rank": 39 + }, + { + "link": "https://en.wiktionary.org/wiki/cat", + "title": "cat - Wiktionaryhttps://en.wiktionary.org/wiki/catEn cachePages similairesTraduire cette page", + "snippet": "From Middle English cat, catte, from Old English catt (“male cat”), catte ... Synonyms: puss, pussy, malkin, kitty, pussy-cat, grimalkin; see also Thesaurus:cat.", + "visible_link": "https://en.wiktionary.org/wiki/cat", + "date": "", + "rank": 40 + }, + { + "link": "https://www.banfield.com/pet-healthcare/optimum-wellness-plans/cat-wellness-plans", + "title": "Cat Wellness Plans - Banfield Pet Hospitalhttps://www.banfield.com/pet-healthcare/.../cat-wellness-plansEn cachePages similairesTraduire cette page", + "snippet": "Cat wellness plans are preventive pet healthcare plans designed to provide excellent and affordable veterinary care throughout your cat's life. Learn more.", + "visible_link": "https://www.banfield.com/pet-healthcare/.../cat-wellness-plans", + "date": "", + "rank": 41 + }, + { + "link": "https://chrome.google.com/webstore/detail/meow-the-cat-pet/ejgnolahdlcimijhloboakpjogbfdkkp", + "title": "Meow, The Cat Pet - Google Chromehttps://chrome.google.com/...cat.../ejgnolahdlcimijhloboakpjogbfd...En cacheTraduire cette page", + "snippet": "A sweet game about Meow, A virtual Cat pet that walks on your screen while you're browsing the web.", + "visible_link": "https://chrome.google.com/...cat.../ejgnolahdlcimijhloboakpjogbfd...", + "date": "", + "rank": 42 + }, + { + "link": "https://spcawake.org/adopt/adopt-a-cat/", + "title": "Adopt a Cat - Cats | SPCA of Wake Countyhttps://spcawake.org/adopt/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Come see us! We can't wait for you to visit us at our adoption center! All of our adoptable pets can be viewed on our website, but there's nothing like a face to ...", + "visible_link": "https://spcawake.org/adopt/adopt-a-cat/", + "date": "", + "rank": 43 + }, + { + "link": "https://richmondspca.org/how-you-can-help/adopt/cats/", + "title": "Adopt a Cat - Richmond SPCAhttps://richmondspca.org/how-you-can-help/adopt/cats/En cacheTraduire cette page", + "snippet": "Adopt a Cat. Your purrfect pal is waiting for you at the Richmond SPCA! Special thanks to our volunteer photographers Brittany Rose Photography, Alex Coyle, ...", + "visible_link": "https://richmondspca.org/how-you-can-help/adopt/cats/", + "date": "", + "rank": 44 + }, + { + "link": "https://www.oregonhumane.org/adopt/?type=cats", + "title": "Adopt a Pet | Oregon Humane Societyhttps://www.oregonhumane.org/adopt/?type=catsEn cacheTraduire cette page", + "snippet": "71 results - Adopt a pet at the Oregon Humane Society in Portland. View available dogs, cats, rabbits, horses and more. Outreach locations across the metro area ...", + "visible_link": "https://www.oregonhumane.org/adopt/?type=cats", + "date": "71 results - ", + "rank": 45 + }, + { + "link": "https://www.amazon.com/cats-supplies-kittens-catnip-tree-litter/b?ie=UTF8&node=2975241011", + "title": "Cat Supplies | Amazon.comhttps://www.amazon.com/cats-supplies-kittens-catnip-tree.../b?...En cachePages similairesTraduire cette page", + "snippet": "Online shopping for Pet Supplies from a great selection of Collars, Harnesses & Leashes, Beds & Furniture, Apparel, Toys, Feeding & Watering Supplies, Food ...", + "visible_link": "https://www.amazon.com/cats-supplies-kittens-catnip-tree.../b?...", + "date": "", + "rank": 46 + }, + { + "link": "https://www.facebook.com/thedodosite/videos/wild-monkey-cant-stop-visiting-her-cat-best-friend/321440391863969/", + "title": "The Dodo - Wild Monkey Can't Stop Visiting Her Cat Best Friend ...https://www.facebook.com/.../videos/...cat.../321440391863969/Traduire cette page", + "snippet": "This wild baby monkey is obsessed with a cat. ... Cat Purring Has To Be The Most Relaxing Sound Ever. 3:28 ...", + "visible_link": "https://www.facebook.com/.../videos/...cat.../321440391863969/", + "date": "", + "rank": 47 + }, + { + "link": "https://www.humanesociety.org/resources/cat-chat-understanding-feline-language", + "title": "Cat chat: Understanding feline language | The Humane Society of the ...https://www.humanesociety.org/.../cat-chat-understanding-feline-la...En cacheTraduire cette page", + "snippet": "You and your cat might speak different languages, but you can still communicate with each other. Important clues such as the look in your cat's eyes, the tone of ...", + "visible_link": "https://www.humanesociety.org/.../cat-chat-understanding-feline-la...", + "date": "", + "rank": 48 + }, + { + "link": "https://www.sciencemag.org/news/2019/05/cats-rival-dogs-many-tests-social-smarts-anyone-brave-enough-study-them", + "title": "Cats rival dogs on many tests of social smarts. But is anyone brave ...https://www.sciencemag.org/.../cats-rival-dogs-many-tests-social-s...En cacheTraduire cette page", + "snippet": "9 mai 2019 - CORVALLIS, OREGON—Carl the cat was born to beat the odds. Abandoned on the side of the road in a Rubbermaid container, the scrawny ...", + "visible_link": "https://www.sciencemag.org/.../cats-rival-dogs-many-tests-social-s...", + "date": "9 mai 2019 - ", + "rank": 49 + }, + { + "link": "https://giphy.com/explore/cat", + "title": "Cat GIFs - Get the best GIF on GIPHYhttps://giphy.com/explore/catEn cacheTraduire cette page", + "snippet": "Explore and share the best Cat GIFs and most popular animated GIFs here on GIPHY. Find Funny GIFs, Cute GIFs, Reaction GIFs and more.", + "visible_link": "https://giphy.com/explore/cat", + "date": "", + "rank": 50 + }, + { + "link": "https://berkeleyhumane.org/adopt-a-cat", + "title": "Adoptable Cats at Berkeley Humane - Berkeley Humane Societyhttps://berkeleyhumane.org/adopt-a-catEn cachePages similairesTraduire cette page", + "snippet": "Cats available for adoption. Save a life, and find a new best friend at Berkeley Humane.", + "visible_link": "https://berkeleyhumane.org/adopt-a-cat", + "date": "", + "rank": 51 + }, + { + "link": "https://www.merriam-webster.com/dictionary/cat", + "title": "Cat | Definition of Cat by Merriam-Websterhttps://www.merriam-webster.com/dictionary/catEn cachePages similairesTraduire cette page", + "snippet": "Cat definition is - a carnivorous mammal (Felis catus) long domesticated as a pet and for catching rats and mice. How to use cat in a sentence.", + "visible_link": "https://www.merriam-webster.com/dictionary/cat", + "date": "", + "rank": 52 + }, + { + "link": "http://www.laanimalservices.com/looking-for-a-cat/", + "title": "Looking for a cat | Los Angeles Animal Serviceswww.laanimalservices.com/looking-for-a-cat/Pages similairesTraduire cette page", + "snippet": "Contact Us · Commission · Statistics · Requests for Proposals · Notes from the GM · Citywide Cat Program · Press Releases · SMART · Careers · FAQ · Pet Care.", + "visible_link": "www.laanimalservices.com/looking-for-a-cat/", + "date": "", + "rank": 53 + }, + { + "link": "https://indyhumane.org/adoptable-cats/", + "title": "Adoptable Cats – IndyHumane - Humane Society of Indianapolishttps://indyhumane.org/adoptable-cats/En cacheTraduire cette page", + "snippet": "Some cats will be at our shelter, some will be in foster care, some might be on our Pet Awareness Wagon (PAW), and some might be at the Nine Lives Cat Cafe.", + "visible_link": "https://indyhumane.org/adoptable-cats/", + "date": "", + "rank": 54 + }, + { + "link": "https://www.instagram.com/explore/tags/cats/?hl=fr", + "title": "#cats hashtag on Instagram • Photos and Videoshttps://www.instagram.com/explore/tags/cats/?hl=frPages similairesTraduire cette page", + "snippet": "85.2m Posts - See Instagram photos and videos from 'cats' hashtag.", + "visible_link": "https://www.instagram.com/explore/tags/cats/?hl=fr", + "date": "", + "rank": 55 + }, + { + "link": "https://www.gsmarena.com/cat-phones-89.php", + "title": "All Cat phones - GSMArena.comhttps://www.gsmarena.com/cat-phones-89.phpEn cacheTraduire cette page", + "snippet": "List of Cat phones, smartphones and tablets. ... Cat phones. Popularity; Time of release; Compare. B35; S41; S31; S61; S60; S30; S40; B30; B15 Q; S50; B15 ...", + "visible_link": "https://www.gsmarena.com/cat-phones-89.php", + "date": "", + "rank": 56 + }, + { + "link": "https://www.cnn.com/2019/05/17/celebrities/grumpy-cat-dead-intl-scli/index.html", + "title": "Grumpy Cat, the internet's most famous cat, dead at 7 - CNN - CNN.comhttps://www.cnn.com/2019/05/17/celebrities/grumpy-cat-dead-intl-scli/index.html", + "snippet": "17 mai 2019 - Grumpy Cat, arguably the internet's most popular cat and one of its first viral memes, has died aged 7.", + "visible_link": "https://www.cnn.com/2019/05/17/celebrities/grumpy-cat-dead-intl-scli/index.html", + "date": "17 mai 2019 - ", + "rank": 57 + }, + { + "link": "https://www.nytimes.com/2019/06/04/nyregion/cats-declawing-law-ban.html", + "title": "Cat Declawing Ban Is Passed by N.Y. Lawmakers - The New York Timeshttps://www.nytimes.com/2019/06/.../cats-declawing-law-ban.htmlTraduire cette page", + "snippet": "Il y a 7 jours - ALBANY — New York lawmakers on Tuesday passed a ban on cat declawing, putting the state on the cusp of being the first to outlaw the ...", + "visible_link": "https://www.nytimes.com/2019/06/.../cats-declawing-law-ban.html", + "date": "Il y a 7 jours - ", + "rank": 58 + }, + { + "link": "https://coleandmarmalade.com/2019/06/10/your-cat-is-an-obligate-carnivore-heres-why-they-want-you-to-remember-that/", + "title": "Your Cat Is An Obligate Carnivore. Here's Why They Want You To ...https://coleandmarmalade.com › Mews › AwwdorableEn cacheTraduire cette page", + "snippet": "Il y a 20 heures - Since the beginning of time, cats of all sizes have relied on their hunting skills to catch prey. Here's why your cat is an obligate carnivore.", + "visible_link": "https://coleandmarmalade.com › Mews › Awwdorable", + "date": "Il y a 20 heures - ", + "rank": 59 + }, + { + "link": "https://pbskids.org/peg/", + "title": "Home . peg + cat | PBS KIDShttps://pbskids.org/peg/En cacheTraduire cette page", + "snippet": "Play PEG + CAT games, watch videos, and download printable activities! PEG + CAT follows the adorable, spirited Peg and her sidekick Cat as they embark on ...", + "visible_link": "https://pbskids.org/peg/", + "date": "", + "rank": 60 + }, + { + "link": "https://typelevel.org/cats/", + "title": "Cats: Home - Typelevel.scalahttps://typelevel.org/cats/En cacheTraduire cette page", + "snippet": "Cats is a library which provides abstractions for functional programming in the Scala programming language. The name is a playful shortening of the word ...", + "visible_link": "https://typelevel.org/cats/", + "date": "", + "rank": 61 + }, + { + "link": "https://www.catphones.com/en-us/cat-s61-smartphone/", + "title": "Cat® S61 Smartphone | Cat Phoneshttps://www.catphones.com/en-us/cat-s61-smartphone/En cacheTraduire cette page", + "snippet": "Get the Cat® S61 smartphone to make your work easier. With an integrated thermal imaging camera, indoor air quality sensor, and laser assisted distance ...", + "visible_link": "https://www.catphones.com/en-us/cat-s61-smartphone/", + "date": "", + "rank": 62 + }, + { + "link": "https://atlantahumane.org/adopt/cats/", + "title": "Adopt a Cat or Kitten - Atlanta Humane Societyhttps://atlantahumane.org/adopt/cats/En cacheTraduire cette page", + "snippet": "26 avr. 2019 - Live in Atlanta? Adopting a rescue cat or kitten from AHS is easy. Our cat adoption counselors help you adopt the purr-fect cat or kitten as a ...", + "visible_link": "https://atlantahumane.org/adopt/cats/", + "date": "26 avr. 2019 - ", + "rank": 63 + }, + { + "link": "https://www.dictionary.com/browse/cat", + "title": "Cat | Definition of Cat at Dictionary.comhttps://www.dictionary.com/browse/catEn cacheTraduire cette page", + "snippet": "Cat definition, a small domesticated carnivore, Felis domestica or F. catus, bred in a number of varieties. See more.", + "visible_link": "https://www.dictionary.com/browse/cat", + "date": "", + "rank": 64 + }, + { + "link": "https://www.catfinancial.com/en_US.html", + "title": "Cat Financial | Finance & Extended Protection Solutionshttps://www.catfinancial.com/en_US.htmlEn cachePages similairesTraduire cette page", + "snippet": "The Cat Card Program. Running a business requires flexibility and resources you can count on to be there when you need them. With the Cat Card Program, ...", + "visible_link": "https://www.catfinancial.com/en_US.html", + "date": "", + "rank": 65 + }, + { + "link": "https://www.charlestonanimalsociety.org/adopt-a-cat/", + "title": "Adopt a Cat - Charleston Animal Societyhttps://www.charlestonanimalsociety.org/adopt-a-cat/En cachePages similairesTraduire cette page", + "snippet": "A recent hoarding case has brought more than 50 cats to Charleston Animal Society in desperate need of adoption. Their lack of socialization growing up in ...", + "visible_link": "https://www.charlestonanimalsociety.org/adopt-a-cat/", + "date": "", + "rank": 66 + }, + { + "link": "https://twitter.com/realgrumpycat/status/1129310647458467840", + "title": "Grumpy Cat on Twitter: \"Some days are grumpier than others...… \"https://twitter.com/realgrumpycat/status/1129310647458467840En cacheTraduire cette page", + "snippet": "17 mai 2019 - @RealGrumpyCat. The Official Twitter for Grumpy Cat The World's grumpiest cat! #TeamGrumpy http://Instagram.com/realgrumpycat ...", + "visible_link": "https://twitter.com/realgrumpycat/status/1129310647458467840", + "date": "17 mai 2019 - ", + "rank": 67 + }, + { + "link": "https://www.lovemeow.com/cat-ginger-campus-students-notes-2638762023.html", + "title": "Students Post Notes about Their Beloved Cat After He's Been Getting ...https://www.lovemeow.com/cat-ginger-campus-students-notes-263...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - Cheeto, a ginger cat, came to be the fixture of the Physics Building at UC Davis many years ago. The friendly feline has made the place his ...", + "visible_link": "https://www.lovemeow.com/cat-ginger-campus-students-notes-263...", + "date": "Il y a 1 jour - ", + "rank": 68 + }, + { + "link": "https://www.paws.org/library/cats/home-life/helping-your-cat-adjust/", + "title": "Helping Your Cat Adjust to a New Home » PAWShttps://www.paws.org/library/cats/home.../helping-your-cat-adjust/En cachePages similairesTraduire cette page", + "snippet": "Allow your cat several weeks to adapt. During this period, the cat or kitten should be carefully confined indoors. He needs to get used to you as the provider of ...", + "visible_link": "https://www.paws.org/library/cats/home.../helping-your-cat-adjust/", + "date": "", + "rank": 69 + }, + { + "link": "https://www.gopetplan.com/cat-insurance", + "title": "Cat Insurance | Pet Insurance For Cats & Kittens | Petplanhttps://www.gopetplan.com/cat-insuranceEn cachePages similairesTraduire cette page", + "snippet": "Protect your feline friend from the unexpected with cat insurance by Petplan. From kitten insurance to pet insurance for senior cats, Petplan has your back.", + "visible_link": "https://www.gopetplan.com/cat-insurance", + "date": "", + "rank": 70 + }, + { + "link": "https://geneseehumane.org/adopting-a-pet/browse-cats.html", + "title": "Adopting a Pet : Browse Cats - Humane Society of Genesee Countyhttps://geneseehumane.org/adopting-a-pet/browse-cats.htmlEn cacheTraduire cette page", + "snippet": "24126348. Cat. Female/Spayed. Domestic Shorthair/Mix. 4 years 9 months. Intake. Photo. La'Lue. 30705163. Cat. Female/Spayed. Domestic Medium Hair/Mix.", + "visible_link": "https://geneseehumane.org/adopting-a-pet/browse-cats.html", + "date": "", + "rank": 71 + }, + { + "link": "https://www.embracepetinsurance.com/cat-insurance", + "title": "Cat Insurance Plans & Coverage - Protect your Cat | Embracehttps://www.embracepetinsurance.com/cat-insuranceEn cacheTraduire cette page", + "snippet": "Cats become more prone to expensive accidents and illnesses as they age. Protect your cat now with an Embrace pet insurance plan and never worry about ...", + "visible_link": "https://www.embracepetinsurance.com/cat-insurance", + "date": "", + "rank": 72 + }, + { + "link": "https://catandcloud.com/", + "title": "Cat and Cloud Coffee – Cat & Cloudhttps://catandcloud.com/En cachePages similairesTraduire cette page", + "snippet": "Cat & Cloud Coffee Subscription. from $ 14.50 ... Cat & Cloud Seed to Cup Klean Kanteen by Kevin Tudball. $ 29.00 ... Cupping Spoon | Cat & Cloud Exclusive.", + "visible_link": "https://catandcloud.com/", + "date": "", + "rank": 73 + }, + { + "link": "https://www.mathworks.com/help/matlab/ref/cat.html", + "title": "Concatenate arrays - MATLAB cat - MathWorkshttps://www.mathworks.com › ... › Matrices and ArraysEn cachePages similairesTraduire cette page", + "snippet": "C = cat( dim , A , B ) concatenates B to the end of A along dimension dim when A and B have compatible sizes (the lengths of the dimensions match except for ...", + "visible_link": "https://www.mathworks.com › ... › Matrices and Arrays", + "date": "", + "rank": 74 + }, + { + "link": "https://bmorehumane.org/adopt/adopt-cat/", + "title": "Companion Cats for Adoption | Baltimore Humane Societyhttps://bmorehumane.org/adopt/adopt-cat/En cachePages similairesTraduire cette page", + "snippet": "Got a cat fancy? We don't blame you! Listed below are all of our wonderful cats that are currently available for adoption. Looking for that special companion?", + "visible_link": "https://bmorehumane.org/adopt/adopt-cat/", + "date": "", + "rank": 75 + }, + { + "link": "https://www.healthypawspetinsurance.com/cat-and-kitten-insurance", + "title": "Cat Insurance & Kitten Insurance | Healthy Paws Pet Insurancehttps://www.healthypawspetinsurance.com/cat-and-kitten-insuranceEn cachePages similairesTraduire cette page", + "snippet": "Healthy Paws Pet Insurance & Foundation covers your cat from nose to tail. Our cat insurance plan pays on your actual veterinary bill and covers new accidents ...", + "visible_link": "https://www.healthypawspetinsurance.com/cat-and-kitten-insurance", + "date": "", + "rank": 76 + }, + { + "link": "https://www.sfanimalcare.org/adoptable-animals/cats/", + "title": "Cats for Adoption - San Francisco Animal Care and Control : San ...https://www.sfanimalcare.org/adoptable-animals/cats/En cacheTraduire cette page", + "snippet": "23 matches - Adopt a cat from San Francisco Animal Control & Care. Search our database for a cat to adopt from our animal shelter.", + "visible_link": "https://www.sfanimalcare.org/adoptable-animals/cats/", + "date": "23 matches - ", + "rank": 77 + }, + { + "link": "https://www.lifeprint.com/asl101/pages-signs/c/cat.htm", + "title": "\"cat\" American Sign Language (ASL) - Lifeprinthttps://www.lifeprint.com/asl101/pages-signs/c/cat.htmEn cacheTraduire cette page", + "snippet": "CAT (version). The general version of the sign for cat starts with an \"open F.\" This handshape looks like a normal \"F\" except that the index finger and thumb are ...", + "visible_link": "https://www.lifeprint.com/asl101/pages-signs/c/cat.htm", + "date": "", + "rank": 78 + }, + { + "link": "https://www.chewy.com/b/cat-325", + "title": "Cat Supplies: Best Cat & Kitten Products - Free Shipping | Chewyhttps://www.chewy.com/b/cat-325En cachePages similairesTraduire cette page", + "snippet": "Shop Chewy for cat supplies ranging from the best cat food and treats to litter and cat toys, supplements, cat beds and so much more. Low prices and *FREE* ...", + "visible_link": "https://www.chewy.com/b/cat-325", + "date": "", + "rank": 79 + }, + { + "link": "https://tricountyhumanesociety.org/adopt-a-pet/adopt-a-cat.html", + "title": "Adopt : Adopt a Cat - Tri-County Humane Societyhttps://tricountyhumanesociety.org/adopt-a-pet/adopt-a-cat.htmlEn cacheTraduire cette page", + "snippet": "That means as soon as a new cat or kitten arrives and is processed for adoption, they immediately appear on this page! At times you may need to scroll to see all ...", + "visible_link": "https://tricountyhumanesociety.org/adopt-a-pet/adopt-a-cat.html", + "date": "", + "rank": 80 + }, + { + "link": "https://www.green-hill.org/adopt_cat/", + "title": "Cats | Greenhill Humane Societyhttps://www.green-hill.org/adopt_cat/En cacheTraduire cette page", + "snippet": "Adoptable and Found Cats Cats marked \"Not Available\" have been recently found and are awaiting reunion with their families. Please click on their profile or.", + "visible_link": "https://www.green-hill.org/adopt_cat/", + "date": "", + "rank": 81 + }, + { + "link": "https://www.catcampnyc.com/", + "title": "Jackson Galaxy's Cat Camphttps://www.catcampnyc.com/En cacheTraduire cette page", + "snippet": "Jackson Galaxy's Cat Camp is a weekend-long adventure all about exploring and celebrating your love for cats. The immersive experience with a summer ...", + "visible_link": "https://www.catcampnyc.com/", + "date": "", + "rank": 82 + }, + { + "link": "https://myperks.catchow.com/", + "title": "My Cat Chow Perkshttps://myperks.catchow.com/En cachePages similairesTraduire cette page", + "snippet": "And we want to reward you for all the ways you're sharing a better life with your cat. Join our community of Cat People and earn points for taking part, then use ...", + "visible_link": "https://myperks.catchow.com/", + "date": "", + "rank": 83 + }, + { + "link": "https://pixabay.com/images/search/cat/", + "title": "20,000+ Cat Pictures & Images [HD] - Pixabay - Pixabayhttps://pixabay.com/images/search/cat/En cacheTraduire cette page", + "snippet": "Mischievous, playful and graceful, choose from among these adorable cat pictures and images and download your favorite, HD-quality photo for free!", + "visible_link": "https://pixabay.com/images/search/cat/", + "date": "", + "rank": 84 + }, + { + "link": "https://southwesthumane.org/adopt/cats/", + "title": "Adopt a cat | Humane Society for SW Washingtonhttps://southwesthumane.org/adopt/cats/En cachePages similairesTraduire cette page", + "snippet": "Cats available for adoption at the Humane Society for Southwest Washington.", + "visible_link": "https://southwesthumane.org/adopt/cats/", + "date": "", + "rank": 85 + }, + { + "link": "https://www.hemingwayhome.com/cats/", + "title": "Cats - hemingwayhome.comhttps://www.hemingwayhome.com/cats/En cacheTraduire cette page", + "snippet": "/uploads/images/cat-pic-Fats-Waller.jpg. /uploads/images/Cat-Pic-Hairy-Truman.jpg. /uploads/images/cat-pic-Ivan.jpg. /uploads/images/cat-pic-Shine-Forbes.jpg.", + "visible_link": "https://www.hemingwayhome.com/cats/", + "date": "", + "rank": 86 + }, + { + "link": "https://www.npr.org/2019/05/17/724262019/grumpy-cat-dies-her-spirit-will-live-on-family-says", + "title": "Grumpy Cat, Permafrowning Internet Darling, Dies At Age 7 : NPRhttps://www.npr.org/.../grumpy-cat-dies-her-spirit-will-live-on-fam...Traduire cette page", + "snippet": "17 mai 2019 - Grumpy Cat — the blue-eyed cat with the withering stare and permafrown that suggested perpetual irritation — has died, her family announced ...", + "visible_link": "https://www.npr.org/.../grumpy-cat-dies-her-spirit-will-live-on-fam...", + "date": "17 mai 2019 - ", + "rank": 87 + }, + { + "link": "https://www.wayfair.com/pet/cat/cat-c409563.html", + "title": "Cat Furniture | Wayfairhttps://www.wayfair.com/pet/cat/cat-c409563.htmlEn cacheTraduire cette page", + "snippet": "Shop Cat Furniture and Supplies at Wayfair. Enjoy Free Shipping & browse our great selection of Cat Trees, Cat Houses, Cat Carriers, Cat Toys and more!", + "visible_link": "https://www.wayfair.com/pet/cat/cat-c409563.html", + "date": "", + "rank": 88 + }, + { + "link": "https://www.setontesting.com/cat/", + "title": "California Achievement Test (CAT) - Seton Testing Serviceshttps://www.setontesting.com/cat/En cacheTraduire cette page", + "snippet": "The California Achievement Test, CAT E/Survey (Grades 3-12), is a nationally normed standardized test that measures achievement in the areas of Reading, ...", + "visible_link": "https://www.setontesting.com/cat/", + "date": "", + "rank": 89 + }, + { + "link": "https://www.instinctpetfood.com/cats", + "title": "For Cats | Instinct Pet Foodhttps://www.instinctpetfood.com/catsEn cacheTraduire cette page", + "snippet": "We understand the power of raw nutrition. We believe in it. And we know the good it can do. That's why we're committed to making raw accessible and simple for ...", + "visible_link": "https://www.instinctpetfood.com/cats", + "date": "", + "rank": 90 + }, + { + "link": "https://frommfamily.com/products/cat/", + "title": "Cat Products - Fromm Family Foodshttps://frommfamily.com/products/cat/En cacheTraduire cette page", + "snippet": "25 Products - Fromm Family Foods A fifth generation family owned & operated artisan pet food company.", + "visible_link": "https://frommfamily.com/products/cat/", + "date": "25 Products - ", + "rank": 91 + }, + { + "link": "https://www.homewardpet.org/available-cats-kittens/", + "title": "Available Cats & Kittens - Homeward Pethttps://www.homewardpet.org/available-cats-kittens/En cacheTraduire cette page", + "snippet": "Below are the cats and kittens currently available for adoption at Homeward Pet. At the shelter, you may also see other cats that will be available for adoption as ...", + "visible_link": "https://www.homewardpet.org/available-cats-kittens/", + "date": "", + "rank": 92 + }, + { + "link": "https://www.hillspet.com/prescription-diet/cat-food", + "title": "Prescription Diet Cat Food - Therapeutic Nutrition | Hill's Pethttps://www.hillspet.com › prescription-dietEn cacheTraduire cette page", + "snippet": "Discover the power of Hill's Prescription Diet cat food products, specially formulated to help improve the quality of your cat's life.", + "visible_link": "https://www.hillspet.com › prescription-diet", + "date": "", + "rank": 93 + }, + { + "link": "https://www.allure.com/story/cat-viral-haircut", + "title": "This Cat's Bizarre Haircut Is Going Viral on Social Media | Allurehttps://www.allure.com/story/cat-viral-haircutEn cacheTraduire cette page", + "snippet": "Il y a 3 jours - A cat named Oliver is currently going viral on social media for getting a seriously hilarious haircut, which was requested by one of the cat's ...", + "visible_link": "https://www.allure.com/story/cat-viral-haircut", + "date": "Il y a 3 jours - ", + "rank": 94 + }, + { + "link": "https://www.capitalhumanesociety.org/adopt/cats-kittens.html", + "title": "Lincoln Cat & Kitten Adoption - Capital Humane Societyhttps://www.capitalhumanesociety.org/adopt/cats-kittens.htmlEn cacheTraduire cette page", + "snippet": "These are pictures of some of the beautiful cats & kittens available for adoption. Please come to Capital Humane Society to see all of the pets in the adoption ...", + "visible_link": "https://www.capitalhumanesociety.org/adopt/cats-kittens.html", + "date": "", + "rank": 95 + }, + { + "link": "http://www.animalplanet.com/pets/cats/", + "title": "Cats | Animal Planetwww.animalplanet.com/pets/cats/En cachePages similairesTraduire cette page", + "snippet": "Explore our guide to cats, kittens and their habitats. Learn about over a hundred different cat breeds and how to deal with troubled cats.", + "visible_link": "www.animalplanet.com/pets/cats/", + "date": "", + "rank": 96 + }, + { + "link": "http://www.catcaresociety.org/adoptions/cats-for-adoption", + "title": "Cats for Adoption - Cat Care Societywww.catcaresociety.org/adoptions/cats-for-adoptionEn cachePages similairesTraduire cette page", + "snippet": "Place your curser over the cat pictures to scroll through our adoptable cats. ... 39750840. Cat. Female/Spayed. Domestic Shorthair/Mix. 8 years 8 months.", + "visible_link": "www.catcaresociety.org/adoptions/cats-for-adoption", + "date": "", + "rank": 97 + }, + { + "link": "https://foothillsanimalshelter.org/services/adopt/cats/", + "title": "Adopt a Cat - Foothills Animal Shelterhttps://foothillsanimalshelter.org/services/adopt/cats/En cacheTraduire cette page", + "snippet": "Whether you are looking for a cat that is incredibly affectionate or more independent, calm or active, curious or cool – we have a match for you! We often have ...", + "visible_link": "https://foothillsanimalshelter.org/services/adopt/cats/", + "date": "", + "rank": 98 + }, + { + "link": "https://www.ohchr.org/en/hrbodies/cat/pages/catindex.aspx", + "title": "Committee against Torture - OHCHRhttps://www.ohchr.org/en/hrbodies/cat/pages/catindex.aspxEn cacheTraduire cette page", + "snippet": "The Committee Against Torture (CAT) is the body of 10 independent experts that monitors implementation of the Convention against Torture and Other Cruel, ...", + "visible_link": "https://www.ohchr.org/en/hrbodies/cat/pages/catindex.aspx", + "date": "", + "rank": 99 + } + ] + }, + "2": { + "time": "Tue, 11 Jun 2019 19:54:51 GMT", + "num_results": "Page 2 d'environ 4 280 000 000 résultats (0,64 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.youtube.com/watch?v=5dsGWM5XGdg", + "title": "Cats are so funny you will die laughing - Funny cat compilation ...https://www.youtube.com/watch?v=5dsGWM5XGdgPages similairesTraduire cette page", + "snippet": "Cats are simply the funniest and most hilarious pets, they make us laugh all the time! Just look how all these ...", + "visible_link": "https://www.youtube.com/watch?v=5dsGWM5XGdg", + "date": "", + "rank": 100 + }, + { + "link": "https://www.marketwatch.com/investing/stock/cat", + "title": "CAT - MarketWatchhttps://www.marketwatch.com/investing/stock/catTraduire cette page", + "snippet": "CAT | Complete Caterpillar Inc. stock news by MarketWatch. View real-time stock prices and stock quotes for a full financial overview.", + "visible_link": "https://www.marketwatch.com/investing/stock/cat", + "date": "", + "rank": 101 + }, + { + "link": "https://www.flickr.com/photos/tags/cat/", + "title": "cat photos on Flickr | Flickrhttps://www.flickr.com/photos/tags/cat/Pages similaires", + "snippet": "Flickr photos, groups, and tags related to the \"cat\" Flickr tag.", + "visible_link": "https://www.flickr.com/photos/tags/cat/", + "date": "", + "rank": 102 + }, + { + "link": "https://www.cathouseonthekings.com/", + "title": "The Cat House on the Kingshttps://www.cathouseonthekings.com/En cachePages similairesTraduire cette page", + "snippet": "The Cat House on the Kings - California's largest no-cage, no-kill lifetime cat sanctuary and adoption center.", + "visible_link": "https://www.cathouseonthekings.com/", + "date": "", + "rank": 103 + }, + { + "link": "https://www.ferries.ca/thecat/fares/", + "title": "Maine to Nova Scotia Ferry Fares | The CAT | Bay Ferrieshttps://www.ferries.ca/thecat/fares/En cachePages similairesTraduire cette page", + "snippet": "Il y a 5 jours - Walk-on and vehicle fares for The CAT ferry service between Bar Harbor, ME and Yarmouth, NS. All prices are in USD.", + "visible_link": "https://www.ferries.ca/thecat/fares/", + "date": "Il y a 5 jours - ", + "rank": 104 + }, + { + "link": "https://www.petbarn.com.au/cats", + "title": "Cat Supplies, Products & Food | Afterpay Available | Petbarnhttps://www.petbarn.com.au/catsEn cachePages similairesTraduire cette page", + "snippet": "View our excellent selection of Cat Supplies, Products & Food. Afterpay now available. Sign up for exclusive Petbarn offers and rewards. Shop online now!", + "visible_link": "https://www.petbarn.com.au/cats", + "date": "", + "rank": 105 + }, + { + "link": "http://cfa.org/", + "title": "The Cat Fanciers' Association - The World's Largest Registry for ...cfa.org/En cachePages similairesTraduire cette page", + "snippet": "The Cat Fanciers' Association - The World's Largest Registry for Pedigreed Cats.", + "visible_link": "cfa.org/", + "date": "", + "rank": 106 + }, + { + "link": "https://www.royalcanin.com/us/cats/products", + "title": "Cat & Kitten Food - Royal Caninhttps://www.royalcanin.com/us/cats/productsEn cacheTraduire cette page", + "snippet": "We have an outstanding array of feline products to help our customers find the right food for their cats & kittens - Browse our ranges today!", + "visible_link": "https://www.royalcanin.com/us/cats/products", + "date": "", + "rank": 107 + }, + { + "link": "https://explodingkittens.com/kittyconvict/", + "title": "Why you should put an orange collar on your cat - The Kitty Convict ...https://explodingkittens.com/kittyconvict/En cacheTraduire cette page", + "snippet": "FAQ. Can I make my own shirts, party hats, logos, etc to support this project? Yes! All the images above are free to download and use/modify as you wish. If you ...", + "visible_link": "https://explodingkittens.com/kittyconvict/", + "date": "", + "rank": 108 + }, + { + "link": "https://catstevens.com/", + "title": "Yusuf / Cat Stevens: Homehttps://catstevens.com/En cacheTraduire cette page", + "snippet": "The new album, The Laughing Apple, available for pre-order now.", + "visible_link": "https://catstevens.com/", + "date": "", + "rank": 109 + }, + { + "link": "https://www.humane.org/adoptions/adoptable-cats/", + "title": "Adoptable Cats - Suncoast Humane Societyhttps://www.humane.org/adoptions/adoptable-cats/En cacheTraduire cette page", + "snippet": "23624598. Cat. Female/Spayed. Domestic Shorthair/Mix. 6 years 9 months ... 39046744. Cat. Male/Neutered. Domestic Shorthair/Mix. 7 years 11 months.", + "visible_link": "https://www.humane.org/adoptions/adoptable-cats/", + "date": "", + "rank": 110 + }, + { + "link": "https://thecatempire.com/", + "title": "The Cat Empirehttps://thecatempire.com/En cachePages similairesTraduire cette page", + "snippet": "Official Website of The Cat Empire – News, Tour Information, Photos, Videos, Music, Store, Subscribe.", + "visible_link": "https://thecatempire.com/", + "date": "", + "rank": 111 + }, + { + "link": "https://www.alleycat.org/", + "title": "Alley Cat Allies | An Advocacy Organization for Stray, Feral, and ...https://www.alleycat.org/En cachePages similairesTraduire cette page", + "snippet": "Are You From Paradise, CA and Looking for Your Cat? ... Trap Neuter Return - cat being released after neuter ... stray cats that have been spay or neutered ...", + "visible_link": "https://www.alleycat.org/", + "date": "", + "rank": 112 + }, + { + "link": "http://www.sspca.org/cats", + "title": "Cats - Sacramento SPCAwww.sspca.org/catsEn cachePages similairesTraduire cette page", + "snippet": "Come down to the Sacramento SPCA to meet your new best friend! All cats over 9 years of age are currently sponsored thanks to the friends of Jack Healy!", + "visible_link": "www.sspca.org/cats", + "date": "", + "rank": 113 + }, + { + "link": "https://www.rd.com/advice/pets/how-to-decode-your-cats-behavior/", + "title": "Cat Behavior: Things Your Cat Wants to Tell You | Reader's Digesthttps://www.rd.com/advice/pets/how-to-decode-your-cats-behavior/En cacheTraduire cette page", + "snippet": "Wish you had a secret decoder guide to cat behavior and cat language? Here's a primer to things your cat wishes you understood.", + "visible_link": "https://www.rd.com/advice/pets/how-to-decode-your-cats-behavior/", + "date": "", + "rank": 114 + }, + { + "link": "https://www.awanj.org/adopt-a-cat/", + "title": "Adopt a Cat - Animal Welfare Association of NJhttps://www.awanj.org/adopt-a-cat/En cacheTraduire cette page", + "snippet": "AWA is a no-kill animal shelter and low cost spay/neuter clinic in South Jersey with a venerable cat and puppy adoption program. Meet your furry companion.", + "visible_link": "https://www.awanj.org/adopt-a-cat/", + "date": "", + "rank": 115 + }, + { + "link": "https://www.spcaflorida.org/adopt-a-cat/", + "title": "Adopt a Cat - SPCA Floridahttps://www.spcaflorida.org/adopt-a-cat/En cachePages similairesTraduire cette page", + "snippet": "Having trouble viewing our adoptable cats? Petango is best optimized using Internet Explorer; try using Internet Explorer to view our pets. If you are still unable ...", + "visible_link": "https://www.spcaflorida.org/adopt-a-cat/", + "date": "", + "rank": 116 + }, + { + "link": "https://www.kyhumane.org/adopt/cats", + "title": "Adoptable Cats - Kentucky Humane Societyhttps://www.kyhumane.org/adopt/catsEn cacheTraduire cette page", + "snippet": "FIV+ cats are available for an adoption fee of $5. The cats identified as positive for FIV or Feline Immunodeficiency Virus include \"Fabulous FIVe\" with their name ...", + "visible_link": "https://www.kyhumane.org/adopt/cats", + "date": "", + "rank": 117 + }, + { + "link": "https://tenor.com/search/cat-gifs", + "title": "Cat GIFs | Tenorhttps://tenor.com/search/cat-gifsEn cacheTraduire cette page", + "snippet": "With Tenor, maker of GIF Keyboard, add popular Cat animated GIFs to your conversations. Share the best GIFs now >>>", + "visible_link": "https://tenor.com/search/cat-gifs", + "date": "", + "rank": 118 + }, + { + "link": "https://www.petmd.com/cat/emergency/common-emergencies/e_ct_excessive_sneezing_nasal_discharge", + "title": "Sneezing in Cats: Excessive Cat Sneezing & Nasal Discharge | petMD ...https://www.petmd.com/cat/.../e_ct_excessive_sneezing_nasal_disc...En cacheTraduire cette page", + "snippet": "If your cat sneezes a lot & has nasal discharge, it may be an upper respiratory infection. Learn about cat sneezing and how to treat a cat with a cold on petMD.", + "visible_link": "https://www.petmd.com/cat/.../e_ct_excessive_sneezing_nasal_disc...", + "date": "", + "rank": 119 + }, + { + "link": "https://www.centrecountypaws.org/cats", + "title": "Adopt A Cat or Kitten | Centre County PAWShttps://www.centrecountypaws.org/catsEn cacheTraduire cette page", + "snippet": "Centre County PAWS is the premiere animal shelter in central Pennsylvania for adopting and rehoming cats and kittens. Learn more about our current cats ...", + "visible_link": "https://www.centrecountypaws.org/cats", + "date": "", + "rank": 120 + }, + { + "link": "https://www.groupecat.com/?lang=fr", + "title": "Groupe CAT: Welcomehttps://www.groupecat.com/?lang=frEn cacheTraduire cette page", + "snippet": "Groupe CAT is one of the European independent leaders in transport and vehicle logistics. Present in the market for more than 60 years in 27 countries with over ...", + "visible_link": "https://www.groupecat.com/?lang=fr", + "date": "", + "rank": 121 + }, + { + "link": "https://spcanevada.org/programs/adoptable-animals/cats/", + "title": "Cats - The SPCA of Northern Nevadahttps://spcanevada.org/programs/adoptable-animals/cats/En cachePages similairesTraduire cette page", + "snippet": "32143398. Cat. Female/Spayed. Domestic Shorthair/Mix. 6 years 10 months. Colony B. Photo · Skittles. 35085870. Cat. Female/Spayed. Domestic Shorthair/Mix.", + "visible_link": "https://spcanevada.org/programs/adoptable-animals/cats/", + "date": "", + "rank": 122 + }, + { + "link": "https://www.lollypop.org/adopt/adoptable-pets/", + "title": "Adopt a Pet | Lollypop Farmhttps://www.lollypop.org/adopt/adoptable-pets/En cacheTraduire cette page", + "snippet": "Adopt a pet -- dogs, cats, rabbits, small animals, birds, reptiles, and more -- at Lollypop Farm, the Humane Society of Greater Rochester.", + "visible_link": "https://www.lollypop.org/adopt/adoptable-pets/", + "date": "", + "rank": 123 + }, + { + "link": "http://www.swh.org/cat-adoptions.html", + "title": "Cat Adoptions - Humane Society Of Southwest Missouriwww.swh.org/cat-adoptions.htmlEn cachePages similairesTraduire cette page", + "snippet": "35598523. Cat. Male/Neutered. Domestic Shorthair/Mix. 2 years 1 month. Adoption Cats. Photo. Cersei. 35960629. Cat. Female/Spayed. Domestic Shorthair/Mix.", + "visible_link": "www.swh.org/cat-adoptions.html", + "date": "", + "rank": 124 + }, + { + "link": "https://www.wow-petopia.com/family.php?id=cat", + "title": "Cats - Petopiahttps://www.wow-petopia.com/family.php?id=catEn cacheTraduire cette page", + "snippet": "Panthara. Panthara require a trick to tame. Farm up some Fresh Talbuk Meat from talbuks on Argus; approach your target; throw a Freezing Trap; Feign Death to ...", + "visible_link": "https://www.wow-petopia.com/family.php?id=cat", + "date": "", + "rank": 125 + }, + { + "link": "https://upaws.org/animals/adopt-a-cat/", + "title": "Adopt a Cat - Upper Peninsula Animal Welfare Shelterhttps://upaws.org/animals/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Nolan - Lonely Heart. Domestic Medium Hair - Neutered Male 15 years, 5 months. In Shelter. Patsy. Domestic Shorthair - Spayed Female 4 years, 9 months", + "visible_link": "https://upaws.org/animals/adopt-a-cat/", + "date": "", + "rank": 126 + }, + { + "link": "http://www.charlottesville.org/departments-and-services/city-services/charlottesville-area-transit-cat", + "title": "Charlottesville Area Transit (CAT) | City of Charlottesvillewww.charlottesville.org/...and.../charlottesville-area-transit-catEn cacheTraduire cette page", + "snippet": "CAT provides bus service to the greater Charlottesville area. Riders enjoy safe, clean, and comfortable service Sunday through Saturday. Download our Rider's ...", + "visible_link": "www.charlottesville.org/...and.../charlottesville-area-transit-cat", + "date": "", + "rank": 127 + }, + { + "link": "https://www.bbc.com/news/world-us-canada-48308638", + "title": "Grumpy Cat internet legend dies - BBC Newshttps://www.bbc.com/news/world-us-canada-48308638En cacheTraduire cette page", + "snippet": "17 mai 2019 - Hers was the feline face that launched a thousand memes, but Grumpy Cat is no more.", + "visible_link": "https://www.bbc.com/news/world-us-canada-48308638", + "date": "17 mai 2019 - ", + "rank": 128 + }, + { + "link": "http://www.waysidewaifs.org/site/PageServer?pagename=Available_cats_new", + "title": "Cat and Kitten Available for Adoption in Kansas City - Wayside Waifs ...www.waysidewaifs.org/site/PageServer?pagename=Available_cats...En cachePages similairesTraduire cette page", + "snippet": "Available Cats. View Kitty Cam. Adoption Hours. Monday: Closed for adoptions. Tuesday–Friday: Noon–8pm. Saturday & Sunday: 10am–5pm. Visit Us.", + "visible_link": "www.waysidewaifs.org/site/PageServer?pagename=Available_cats...", + "date": "", + "rank": 129 + }, + { + "link": "http://www.niagaraspca.org/adoptable-cats.html", + "title": "Cats and Kittens Available for Adoption | Adopt a Cat | Niagara SPCAwww.niagaraspca.org/adoptable-cats.htmlEn cachePages similairesTraduire cette page", + "snippet": "The Niagara SPCA offers several Cats and Kittens for Adoption. Come see our facility today and find the 4 legged friend that's ready to come home with you!", + "visible_link": "www.niagaraspca.org/adoptable-cats.html", + "date": "", + "rank": 130 + }, + { + "link": "https://www.proplan.com/cat", + "title": "Cat | Purina® Pro Plan®https://www.proplan.com/catEn cacheTraduire cette page", + "snippet": "Purina Pro Plan pet food is trusted by professionals and crafted with pride to offer Nutrition That Performs for dogs and cats. Dog Food, Cat Food, and Treats.", + "visible_link": "https://www.proplan.com/cat", + "date": "", + "rank": 131 + }, + { + "link": "https://bschool.careers360.com/exams/cat", + "title": "CAT 2019 Exam - Dates, Notification, Eligibility, Application Form ...https://bschool.careers360.com/exams/catEn cacheTraduire cette page", + "snippet": "CAT or Common Admission Test, the most popular national level management entrance exam is expected to be conducted by Indian Institute of Management ...", + "visible_link": "https://bschool.careers360.com/exams/cat", + "date": "", + "rank": 132 + }, + { + "link": "https://cat.eduroam.org/", + "title": "eduroam CAThttps://cat.eduroam.org/Pages similairesTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://cat.eduroam.org/", + "date": "", + "rank": 133 + }, + { + "link": "https://rabbit.org/journal/2-11/cats-and-rabbits.html", + "title": "Cats and Rabbits - House Rabbit Societyhttps://rabbit.org/journal/2-11/cats-and-rabbits.htmlEn cacheTraduire cette page", + "snippet": "Cats and Rabbits Amy Shapiro A cat and a rabbit really can be friends. Yes, really. What seems an unlikely combination, given the predator-prey context that first ...", + "visible_link": "https://rabbit.org/journal/2-11/cats-and-rabbits.html", + "date": "", + "rank": 134 + }, + { + "link": "https://www.arflife.org/cats", + "title": "ARF | Catshttps://www.arflife.org/catsEn cachePages similairesTraduire cette page", + "snippet": "Cat - $75 2 Cats - $100. Kitten (< 6 months) - $125 2 Kittens - $200. Dog - $250. Puppy (< 6 months) - $300. Select animals have pre-paid fees. Credit card and ...", + "visible_link": "https://www.arflife.org/cats", + "date": "", + "rank": 135 + }, + { + "link": "http://www.austinhumanesociety.org/feline-friends/", + "title": "Available Cats - Austin Humane Societywww.austinhumanesociety.org/feline-friends/En cachePages similairesTraduire cette page", + "snippet": "Available Cats. Find your forever friend today! Take a look at the cats currently residing at the Austin Humane Society who are available for adoption. They can't ...", + "visible_link": "www.austinhumanesociety.org/feline-friends/", + "date": "", + "rank": 136 + }, + { + "link": "https://www.cnbc.com/quotes/?symbol=CAT", + "title": "CAT: Caterpillar Inc - Stock Quote and News - CNBChttps://www.cnbc.com/quotes/?symbol=CATEn cacheTraduire cette page", + "snippet": "Get Caterpillar Inc (CAT:NYSE) real-time stock quotes, news and financial information from CNBC.", + "visible_link": "https://www.cnbc.com/quotes/?symbol=CAT", + "date": "", + "rank": 137 + }, + { + "link": "https://www.ema.europa.eu/en/committees/committee-advanced-therapies-cat", + "title": "Committee for Advanced Therapies (CAT) | European Medicines Agencyhttps://www.ema.europa.eu/en/.../committee-advanced-therapies-ca...En cacheTraduire cette page", + "snippet": "The Committee for Advanced Therapies (CAT) is the European Medicines Agency's (EMA) committee responsible for assessing the quality, safety and efficacy of ...", + "visible_link": "https://www.ema.europa.eu/en/.../committee-advanced-therapies-ca...", + "date": "", + "rank": 138 + }, + { + "link": "https://www.meowfoundation.com/resources/new-cat/", + "title": "Integrating a New Cat in Your Home | MEOW Foundationhttps://www.meowfoundation.com/resources/new-cat/En cacheTraduire cette page", + "snippet": "Whether you're bringing home your first, second or fifth cat, it's extremely important to prepare ahead of time. Before making the decision to add a new cat to your ...", + "visible_link": "https://www.meowfoundation.com/resources/new-cat/", + "date": "", + "rank": 139 + }, + { + "link": "https://www.young-williams.org/adopt-a-pet/adopt-a-cat/", + "title": "Cats - Young-Williams Animal Centerhttps://www.young-williams.org/adopt-a-pet/adopt-a-cat/En cacheTraduire cette page", + "snippet": "Adopt a Cat. Cat Adoption Application (NOTE: application does not place animals on hold or guarantee approval for adoption) · Daphne. Puma. Norley. Corlan.", + "visible_link": "https://www.young-williams.org/adopt-a-pet/adopt-a-cat/", + "date": "", + "rank": 140 + }, + { + "link": "https://www.thinkingoutsidethecage.org/meet-animals/adopt/cats/", + "title": "Cats - Animal Friends, Inc.https://www.thinkingoutsidethecage.org › Animals › AdoptEn cacheTraduire cette page", + "snippet": "Thank you for your interest in adopting a homeless cat! Before you get started, take a moment to read our adoption guidelines to learn more about adopting from ...", + "visible_link": "https://www.thinkingoutsidethecage.org › Animals › Adopt", + "date": "", + "rank": 141 + }, + { + "link": "https://westvalleyhumanesociety.org/adopt%20cat.htm", + "title": "Adopt Cat - West Valley Humane Societyhttps://westvalleyhumanesociety.org/adopt%20cat.htmEn cacheTraduire cette page", + "snippet": "ADOPTABLE CATS. ​The felines you see are ALL available for. adoption! Our website is updated in real time,. who you see on the page is who is in the shelter.", + "visible_link": "https://westvalleyhumanesociety.org/adopt%20cat.htm", + "date": "", + "rank": 142 + }, + { + "link": "https://www.catchacat.org/maps-and-schedules/current-schedules/", + "title": "Current Schedules | Chatham Area Transit (CAT)https://www.catchacat.org/maps-and-schedules/current-schedules/En cacheTraduire cette page", + "snippet": "System Map. Click image to enlarge Savannah-SystemMapPoster2018-cropped. or try out the new CAT Interactive transit system map to see our entire fixed ...", + "visible_link": "https://www.catchacat.org/maps-and-schedules/current-schedules/", + "date": "", + "rank": 143 + }, + { + "link": "https://www.zennioptical.com/cat-eye-glasses", + "title": "Cat-Eye Glasses | Zenni Opticalhttps://www.zennioptical.com/cat-eye-glassesEn cacheTraduire cette page", + "snippet": "Cat eye frames and cat eye reading glasses are currently one of our most popular styles available. Don't let our incredibly low prices pass you by. Buy now!", + "visible_link": "https://www.zennioptical.com/cat-eye-glasses", + "date": "", + "rank": 144 + }, + { + "link": "https://catcora.com/", + "title": "Cat Cora - First Female Iron Chefhttps://catcora.com/En cacheTraduire cette page", + "snippet": "Cat Cora is a world-renowned celebrity chef, author, restaurateur, contributing editor, television host and personality, actress, avid philanthropist, health and ...", + "visible_link": "https://catcora.com/", + "date": "", + "rank": 145 + }, + { + "link": "https://www.loc.gov/free-to-use/cats", + "title": "Cats - Library of Congresshttps://www.loc.gov/free-to-use/catsEn cacheTraduire cette page", + "snippet": "This free-to-use set features images of cats found in the Library's collections. Staff \"experts\" contributed their favorite photos, posters & illustrations. Enjoy!", + "visible_link": "https://www.loc.gov/free-to-use/cats", + "date": "", + "rank": 146 + }, + { + "link": "https://animalcenter.org/adopt-a-pet/adoptable-cats", + "title": "Cat & Kittens for Adoption in San Diego | Helen Woodward Animal ...https://animalcenter.org › Adopt a PetEn cachePages similairesTraduire cette page", + "snippet": "Adopt a kitten or cat from San Diego County's Helen Woodward Animal Center today! Our Counselors will help you choose the best feline for your lifestyle ...", + "visible_link": "https://animalcenter.org › Adopt a Pet", + "date": "", + "rank": 147 + }, + { + "link": "https://cat-bounce.com/", + "title": "CAT BOUNCE!https://cat-bounce.com/En cacheTraduire cette page", + "snippet": "Cat Bounce! A website of bouncing cats.", + "visible_link": "https://cat-bounce.com/", + "date": "", + "rank": 148 + }, + { + "link": "https://www.thehonestkitchen.com/cat-food", + "title": "Grain Free Dehydrated Cat Food - The Honest Kitchenhttps://www.thehonestkitchen.com/cat-foodEn cacheTraduire cette page", + "snippet": "Our grain free cat foods are minimally processed and are high in protein & moisture. They are free of any by products, preservatives and added sugars.", + "visible_link": "https://www.thehonestkitchen.com/cat-food", + "date": "", + "rank": 149 + }, + { + "link": "https://trupanion.com/pet-insurance/cat-insurance", + "title": "Cat & Kitten Insurance - Health Coverage for Injury & Illness | Trupanionhttps://trupanion.com/pet-insurance/cat-insuranceEn cacheTraduire cette page", + "snippet": "Trupanion cat and kitten insurance has 90% financial coverage for accidents and illnesses with no payout limit. Get a quick quote now.", + "visible_link": "https://trupanion.com/pet-insurance/cat-insurance", + "date": "", + "rank": 150 + }, + { + "link": "https://www.washingtonpost.com/science/2019/06/05/cat-paws-may-soon-be-safe-new-york-state-is-poised-become-first-ban-declawing/", + "title": "Cat declawing ban passed by New York state lawmakers - The ...https://www.washingtonpost.com/.../cat-paws-may-soon-be-safe-ne...Traduire cette page", + "snippet": "Il y a 7 jours - New York is one signature away from becoming the first state in the country to ban cat declawing, a practice advocates say serves no benefit to ...", + "visible_link": "https://www.washingtonpost.com/.../cat-paws-may-soon-be-safe-ne...", + "date": "Il y a 7 jours - ", + "rank": 151 + }, + { + "link": "https://abcbirds.org/program/cats-indoors/", + "title": "Cats Indoors - American Bird Conservancyhttps://abcbirds.org/program/cats-indoors/En cachePages similairesTraduire cette page", + "snippet": "Looking for practical solutions to keep your cat safe while protecting birds? Check out ABC's Happy Cats, Healthy Birds campaign page.", + "visible_link": "https://abcbirds.org/program/cats-indoors/", + "date": "", + "rank": 152 + }, + { + "link": "https://www.cattownoakland.org/adopt", + "title": "Adopt a Cat - Adopt — Cat Townhttps://www.cattownoakland.org/adoptEn cacheTraduire cette page", + "snippet": "See all our current adoptable cats below. Please email info@cattownoakland.org so we can help you find your match! Cat Town adoption fees are $75 for a ...", + "visible_link": "https://www.cattownoakland.org/adopt", + "date": "", + "rank": 153 + }, + { + "link": "https://www.okhumane.org/adopt/cats/", + "title": "Cats for Adoption: Adopt a Cat or Kitten in OKC | OK Humane Societyhttps://www.okhumane.org › Adoption InformationEn cacheTraduire cette page", + "snippet": "Adopt a cat or kitten in OKC from the Central Oklahoma Humane Society! Come see our cats up for adoption, and meet your new best friend.", + "visible_link": "https://www.okhumane.org › Adoption Information", + "date": "", + "rank": 154 + }, + { + "link": "https://furkids.org/cat-adoptions", + "title": "Cat Adoptions | Atlanta Animal Shelter | Furkids | Furkids - Georgia's ...https://furkids.org/cat-adoptionsEn cachePages similairesTraduire cette page", + "snippet": "Learn more about how you can adopt a cat from the largest no kill animal shelter in Atlanta. Choose from hundreds of cats that are looking for a good home.", + "visible_link": "https://furkids.org/cat-adoptions", + "date": "", + "rank": 155 + }, + { + "link": "https://www.meowingtons.com/products/fruit-tart-cat-bed", + "title": "Fruit Tart Cat Bed – Meowingtonshttps://www.meowingtons.com › ProductsEn cacheTraduire cette page", + "snippet": "The only thing sweeter than your cat is this Fruit Tart Cat Bed! This playful novelty cat bed is ideal for the cat lover with a sense of whimsy and imagination.", + "visible_link": "https://www.meowingtons.com › Products", + "date": "", + "rank": 156 + }, + { + "link": "https://catfriendly.com/cat-care-at-home/what-your-cat-needs-to-feel-secure/", + "title": "What Your Cat Needs to Feel Secure | Cat Friendly Homeshttps://catfriendly.com/cat...at.../what-your-cat-needs-to-feel-secure...En cacheTraduire cette page", + "snippet": "Like humans, cats have needs in order to make them feel happy and secure. To help understand the “core resources” your cat needs, think about when you ...", + "visible_link": "https://catfriendly.com/cat...at.../what-your-cat-needs-to-feel-secure...", + "date": "", + "rank": 157 + }, + { + "link": "http://www.sciencekids.co.nz/sciencefacts/animals/cat.html", + "title": "Fun Cat Facts for Kids - Interesting Facts about Cats & Kittenswww.sciencekids.co.nz/sciencefacts/animals/cat.htmlEn cachePages similairesTraduire cette page", + "snippet": "Cats can be lethal hunters and very sneaky, when they walk their back paws step almost exactly in the same place as the front paws did beforehand, this keeps ...", + "visible_link": "www.sciencekids.co.nz/sciencefacts/animals/cat.html", + "date": "", + "rank": 158 + }, + { + "link": "https://http.cat/", + "title": "HTTP Catshttps://http.cat/En cachePages similairesTraduire cette page", + "snippet": "An API for the awesome HTTP Cats! Use it in your website to show funny error messages.", + "visible_link": "https://http.cat/", + "date": "", + "rank": 159 + }, + { + "link": "https://www.grumpycats.com/", + "title": "The world's grumpiest cat! | Grumpy Cat®https://www.grumpycats.com/En cachePages similairesTraduire cette page", + "snippet": "The world's grumpiest cat! ... Some days are grumpier than others...… May 17th, 2019. Grumpy Cat: No-It-All -- Everything You Need to No ...", + "visible_link": "https://www.grumpycats.com/", + "date": "", + "rank": 160 + }, + { + "link": "https://www.freekibble.com/kat/", + "title": "Freekibble Kat – Freekibblehttps://www.freekibble.com/kat/En cacheTraduire cette page", + "snippet": "Right or wrong, you win! Click on an answer, and every day you do, we'll provide kibble to animal shelters to help feed their hungry cats. Play every day – the ...", + "visible_link": "https://www.freekibble.com/kat/", + "date": "", + "rank": 161 + }, + { + "link": "https://catvets.com/cfp/cfp", + "title": "Cat Friendly Practices® | American Association of Feline Practitionershttps://catvets.com/cfp/cfpEn cacheTraduire cette page", + "snippet": "Why create the Cat Friendly Practice® program? Included are trends and statistics.", + "visible_link": "https://catvets.com/cfp/cfp", + "date": "", + "rank": 162 + }, + { + "link": "https://www.cbc.ca/news/canada/british-columbia/bcspca-catio-tour-build-an-outdoor-enclosure-for-your-cat-1.5168682", + "title": "Outdoor digs for your cat: B.C. SPCA shows off 'catios' to inspire others ...https://www.cbc.ca/.../bcspca-catio-tour-build-an-outdoor-enclosur...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - The B.C. SPCA is hoping a made-in-Portland concept will catch on with cat owners here. It wants to convince people to build cat-specific ...", + "visible_link": "https://www.cbc.ca/.../bcspca-catio-tour-build-an-outdoor-enclosur...", + "date": "Il y a 1 jour - ", + "rank": 163 + }, + { + "link": "https://www.catfootwear.com/US/en/home", + "title": "Cat Footwear: Caterpillar Work Boots - Comfortable Work Shoeshttps://www.catfootwear.com/US/en/homeEn cacheTraduire cette page", + "snippet": "Official Cat Footwear Site - Shop Caterpillar work boots, steel toe work boots & shoes along with casual shoes & casual boots. Free shipping!", + "visible_link": "https://www.catfootwear.com/US/en/home", + "date": "", + "rank": 164 + }, + { + "link": "http://www.catstest.com/", + "title": "FAA test, Private Pilot Exam & Aviation Test | CATSwww.catstest.com/En cachePages similairesTraduire cette page", + "snippet": "Are you looking for information on FAA tests, private pilot exams or CATS testing centers locations? Find all you need to know about aviation tests here.", + "visible_link": "www.catstest.com/", + "date": "", + "rank": 165 + }, + { + "link": "https://catscradle.com/", + "title": "Cat's Cradlehttps://catscradle.com/En cacheTraduire cette page", + "snippet": "Buckshot Betty. Show | 8pm // Doors | 7pm. $16 / Day Of : $18. Cat's Cradle Back Room · Buy Tickets · More Info. Sat, June 15 ...", + "visible_link": "https://catscradle.com/", + "date": "", + "rank": 166 + }, + { + "link": "https://www.cdc.gov/importation/bringing-an-animal-into-the-united-states/cats.html", + "title": "Cats | Bringing an Animal into U.S. | Importation | CDChttps://www.cdc.gov/importation/bringing-an-animal.../cats.htmlEn cacheTraduire cette page", + "snippet": "A general certificate of health is not required by CDC for entry of pet cats into the United States, although some airlines or states may require them. However, pet ...", + "visible_link": "https://www.cdc.gov/importation/bringing-an-animal.../cats.html", + "date": "", + "rank": 167 + }, + { + "link": "https://minecraft.gamepedia.com/Cat", + "title": "Cat – Official Minecraft Wikihttps://minecraft.gamepedia.com/CatEn cacheTraduire cette page", + "snippet": "19 nov. 2018 - Cats typically spawn upon generation wandering around in villages as strays, though adult black cats can also spawn in swamp huts as strays.", + "visible_link": "https://minecraft.gamepedia.com/Cat", + "date": "19 nov. 2018 - ", + "rank": 168 + }, + { + "link": "https://www.thefreedictionary.com/cat", + "title": "Cat - definition of cat by The Free Dictionaryhttps://www.thefreedictionary.com/catEn cacheTraduire cette page", + "snippet": "(Animals) Also called: domestic cat a small domesticated feline mammal, Felis catus (or domesticus), having thick soft fur and occurring in many breeds in which ...", + "visible_link": "https://www.thefreedictionary.com/cat", + "date": "", + "rank": 169 + }, + { + "link": "https://www.abc.net.au/life/how-to-prevent-dog-cat-pet-from-ruining-your-sex-life/11159542", + "title": "Preventing your dog or cat from interrupting your sex life - ABC Lifehttps://www.abc.net.au/life/how-to-prevent...cat.../11159542En cacheTraduire cette page", + "snippet": "Il y a 22 heures - Image It's common for pet owners to allow their dog or cat stay in the bedroom when they have sex. (Unsplash: Giorgio Encinas / ABC Life: ...", + "visible_link": "https://www.abc.net.au/life/how-to-prevent...cat.../11159542", + "date": "Il y a 22 heures - ", + "rank": 170 + }, + { + "link": "https://dictionary.cambridge.org/dictionary/english/cat", + "title": "CAT | meaning in the Cambridge English Dictionaryhttps://dictionary.cambridge.org/dictionary/english/catEn cacheTraduire cette page", + "snippet": "cat definition: 1. a small animal with fur, four legs, a tail, and claws, usually kept as a pet or for catching mice 2. any member of the group of animals similar to the ...", + "visible_link": "https://dictionary.cambridge.org/dictionary/english/cat", + "date": "", + "rank": 171 + }, + { + "link": "https://www.bbc.co.uk/news/world-us-canada-48528968", + "title": "Cat declawing: Should it be banned, and why does it happen in the ...https://www.bbc.co.uk/news/world-us-canada-48528968En cacheTraduire cette page", + "snippet": "Il y a 6 jours - New York might become the first US state to ban cat declawing - but it's been illegal in Europe for years.", + "visible_link": "https://www.bbc.co.uk/news/world-us-canada-48528968", + "date": "Il y a 6 jours - ", + "rank": 172 + }, + { + "link": "https://vcahospitals.com/sylvaniavet/know-your-pet/cat-care", + "title": "Cat Care - VCA Animal Hospitalshttps://vcahospitals.com/sylvaniavet/know-your-pet/cat-careEn cacheTraduire cette page", + "snippet": "We've Got Positive Cattitude! We Want to Make Cat Care Easier for You. Has traveling with your feline friend been a challenge? Put an end to the stress with ...", + "visible_link": "https://vcahospitals.com/sylvaniavet/know-your-pet/cat-care", + "date": "", + "rank": 173 + }, + { + "link": "https://catprotection.org.au/", + "title": "Cat Protection Society of NSWhttps://catprotection.org.au/En cacheTraduire cette page", + "snippet": "As a charity, Cat Protection depends on community support to do our work. Our costs include professional care and advisory staff; veterinary expenses including ...", + "visible_link": "https://catprotection.org.au/", + "date": "", + "rank": 174 + }, + { + "link": "https://www.catpowermusic.com/", + "title": "Cat Powerhttps://www.catpowermusic.com/En cacheTraduire cette page", + "snippet": "Official website for Cat Power. The new album Wanderer will be out October 5th, 2018.", + "visible_link": "https://www.catpowermusic.com/", + "date": "", + "rank": 175 + }, + { + "link": "https://feline-nutrition.org/nutrition/making-raw-cat-food-for-do-it-yourselfers", + "title": "Feline Nutrition's Easy Homemade Cat Food Recipehttps://feline-nutrition.org › NutritionEn cacheTraduire cette page", + "snippet": "2 juin 2019 - Homemade cat food gives you control over what you feed kitty. It's nutritionally sound and economical.", + "visible_link": "https://feline-nutrition.org › Nutrition", + "date": "2 juin 2019 - ", + "rank": 176 + }, + { + "link": "https://www.petinsurance.com/cat-insurance", + "title": "Cat Insurance | Nationwide Cat and Kitten Insurance Planshttps://www.petinsurance.com/cat-insuranceEn cachePages similairesTraduire cette page", + "snippet": "The best cat & kitten insurance ever by Nationwide. Plans that cover wellness, illness, emergency & more. Use any vet. Up to 90% back on vet bills.", + "visible_link": "https://www.petinsurance.com/cat-insurance", + "date": "", + "rank": 177 + }, + { + "link": "https://www.thestar.com.my/news/nation/2019/06/11/police-investigating-case-of-cat-hanged-at-wangsa-maju-apartment-staircase/", + "title": "Police investigating case of cat hanged at Wangsa Maju apartment ...https://www.thestar.com.my/.../police-investigating-case-of-cat-han...En cacheTraduire cette page", + "snippet": "Il y a 5 heures - PETALING JAYA: Police are investigating the killing of a cat by hanging at an apartment in Section 2, Wangsa Maju, Kuala Lumpur.", + "visible_link": "https://www.thestar.com.my/.../police-investigating-case-of-cat-han...", + "date": "Il y a 5 heures - ", + "rank": 178 + }, + { + "link": "https://books.google.com/books?id=D1wZuTutJbwC&pg=PA76&lpg=PA76&dq=cat&source=bl&ots=rOUmtMdT6y&sig=ACfU3U0N3WdaCmp0TDKp32pGvmLGszZcwA&hl=fr&sa=X&ved=2ahUKEwi8vpnbmuLiAhWSUlAKHW0sDMY4ZBDoATBVegQIYxAB", + "title": "The Cat and the Human Imagination: Feline Images from Bast to Garfieldhttps://books.google.com/books?isbn=0472087509Traduire cette page", + "snippet": "At the same time, of course, Baldwin passes on folklore about cats' magical powers. He gives this a novel application, however; for Mouse-slayer's preternatural ...", + "visible_link": "https://books.google.com/books?isbn=0472087509", + "date": "", + "rank": 179 + }, + { + "link": "https://www.peta.org/blog/pringle-cat-fire-rescue/", + "title": "Cat Survives a Devastating Fire—and Then Things Get Worse | PETAhttps://www.peta.org/blog/pringle-cat-fire-rescue/En cacheTraduire cette page", + "snippet": "Il y a 1 jour - A group of cats was left with nowhere to go when their home was reduced to ashes. Fortunately, their caretaker knew just whom to call.", + "visible_link": "https://www.peta.org/blog/pringle-cat-fire-rescue/", + "date": "Il y a 1 jour - ", + "rank": 180 + }, + { + "link": "https://gizmodo.com/scientists-save-schrodingers-cat-1835208353", + "title": "Scientists Save Schrödinger's Cat - Gizmodohttps://gizmodo.com/scientists-save-schrodingers-cat-1835208353En cacheTraduire cette page", + "snippet": "3 juin 2019 - One of the hallmark predictions of quantum mechanics is that particles behave unpredictably—but a new experiment seems to complicate ...", + "visible_link": "https://gizmodo.com/scientists-save-schrodingers-cat-1835208353", + "date": "3 juin 2019 - ", + "rank": 181 + }, + { + "link": "https://www.jacksongalaxy.com/blog/the-dos-and-donts-of-introducing-cats/", + "title": "The Do's and Don'ts of Introducing Cats - Jackson Galaxy Storehttps://www.jacksongalaxy.com/.../the-dos-and-donts-of-introduci...En cacheTraduire cette page", + "snippet": "9 avr. 2018 - The host of Animal Planet's \"My Cat From Hell\" shows you how the right way to introduce two cats.", + "visible_link": "https://www.jacksongalaxy.com/.../the-dos-and-donts-of-introduci...", + "date": "9 avr. 2018 - ", + "rank": 182 + }, + { + "link": "https://www.newyorker.com/magazine/2017/12/11/cat-person", + "title": "“Cat Person” | The New Yorkerhttps://www.newyorker.com/magazine/2017/12/11/cat-person", + "snippet": "4 déc. 2017 - She learned that Robert had two cats, named Mu and Yan, and together they invented a complicated scenario in which her childhood cat, Pita, ...", + "visible_link": "https://www.newyorker.com/magazine/2017/12/11/cat-person", + "date": "4 déc. 2017 - ", + "rank": 183 + }, + { + "link": "https://www.thesun.co.uk/news/9265838/giant-liger-world-biggest-cat-sabre/", + "title": "Giant 319kg 'sabre-tooth' lion-tiger crossbreed dubbed 'world's biggest ...https://www.thesun.co.uk/news/.../giant-liger-world-biggest-cat-sab...Traduire cette page", + "snippet": "Il y a 20 heures - A GIANT beast dubbed the world's biggest cat is drawing comparisons with the terrifying prehistoric sabre-toothed tiger. Incredible clips of the ...", + "visible_link": "https://www.thesun.co.uk/news/.../giant-liger-world-biggest-cat-sab...", + "date": "Il y a 20 heures - ", + "rank": 184 + }, + { + "link": "https://www.shopcaterpillar.cl/", + "title": "Cat | Tienda Online Cat Chilehttps://www.shopcaterpillar.cl/En cacheTraduire cette page", + "snippet": "Cat Life Style: Zapatos, zapatillas, ropa y accesorios para hombre y mujer. Despachos a todo Chile y cambios sin costo.", + "visible_link": "https://www.shopcaterpillar.cl/", + "date": "", + "rank": 185 + }, + { + "link": "https://books.google.com/books?id=jEwvCwAAQBAJ&pg=PA25&lpg=PA25&dq=cat&source=bl&ots=piEVZLtCjm&sig=ACfU3U1PJmYGqu_u1lWZLj5Uhd07fTDK8A&hl=fr&sa=X&ved=2ahUKEwi8vpnbmuLiAhWSUlAKHW0sDMY4ZBDoATBcegQIYhAB", + "title": "Cat Care: Nutrition, Exercise, Grooming, and Morehttps://books.google.com/books?isbn=1491483997Traduire cette page", + "snippet": "If your cat has plaque, receding gums, or is drooling, it may have gum disease or tooth decay. Your vet can clean your cat's teeth, but it can be expensive and ...", + "visible_link": "https://books.google.com/books?isbn=1491483997", + "date": "", + "rank": 186 + }, + { + "link": "https://books.google.com/books?id=a0_HEOrcH5IC&pg=PA190&lpg=PA190&dq=cat&source=bl&ots=Az8vPMzNdB&sig=ACfU3U1JVIq6PFN8gXG7M1GXUoLB8yBm3g&hl=fr&sa=X&ved=2ahUKEwi8vpnbmuLiAhWSUlAKHW0sDMY4ZBDoATBdegQIYRAB", + "title": "The Best Little Cat House in Maryland: The True and Mostly Accurate ...https://books.google.com/books?isbn=1449008844Traduire cette page", + "snippet": "Four more cats arrived that night that weren't in much better shape than Charlotte. One was Old Boy, a cat that appeared to be older than dirt. He was covered in ...", + "visible_link": "https://books.google.com/books?isbn=1449008844", + "date": "", + "rank": 187 + }, + { + "link": "https://books.google.com/books?id=1-7SCQAAQBAJ&pg=PA3&lpg=PA3&dq=cat&source=bl&ots=3wtCIXknSl&sig=ACfU3U0nTSepzmAD7rH0WDYkCRwqwbdxgQ&hl=fr&sa=X&ved=2ahUKEwi8vpnbmuLiAhWSUlAKHW0sDMY4ZBDoATBeegQIXxAB", + "title": "How to Understand and Take Care of Your Persian Kitten & Cathttps://books.google.com/books?isbn=1329174380Traduire cette page", + "snippet": "11. 12. 13. 14. 1. THE CHARACTERISTICS OF A PERSIAN CAT 2. ITEMS YOU SHOULD NEVER LET YOUR CAT EAT 3. HOW TO TRIM YOUR CATS NAILS 4.", + "visible_link": "https://books.google.com/books?isbn=1329174380", + "date": "", + "rank": 188 + }, + { + "link": "https://www.livescience.com/65652-schrodingers-cat-saved.html", + "title": "Physicists Turn Back Time on Doomed Schrödinger's Cat to Save Ithttps://www.livescience.com › Strange NewsEn cacheTraduire cette page", + "snippet": "Il y a 5 jours - There may be a grain of hope for physics' most famous doomed feline, Schrödinger's cat. But in a recent study, Yale physicists were able to ...", + "visible_link": "https://www.livescience.com › Strange News", + "date": "Il y a 5 jours - ", + "rank": 189 + }, + { + "link": "https://www.aphis.usda.gov/aphis/pet-travel/bring-pet-into-the-united-states/pet-travel-cats-into-us", + "title": "Pet Travel - Bringing Cats into the US - USDA APHIShttps://www.aphis.usda.gov/aphis/pet.../pet-travel-cats-into-usEn cachePages similairesTraduire cette page", + "snippet": "20 juil. 2016 - USDA APHIS Veterinary Services (VS) does not have any animal health requirements related to bringing (importing) a pet cat into the United ...", + "visible_link": "https://www.aphis.usda.gov/aphis/pet.../pet-travel-cats-into-us", + "date": "20 juil. 2016 - ", + "rank": 190 + }, + { + "link": "https://books.google.com/books?id=odtQCwAAQBAJ&pg=PP14&lpg=PP14&dq=cat&source=bl&ots=jhBlkpMa1K&sig=ACfU3U29arDSUhOa4oetwssAuvPBZMB82g&hl=fr&sa=X&ved=2ahUKEwi8vpnbmuLiAhWSUlAKHW0sDMY4ZBDoATBhegQIYBAB", + "title": "Caring For Your Cat: The Official Feline Guidehttps://books.google.com/books?isbn=3739615621Traduire cette page", + "snippet": "cats cats Publisher: BookRix GmbH & Co. KG Sonnenstraße 23 80331 Munich. cats cats cats cats cats cats cats cats cats cats cats cats cats cats cats cats cats ...", + "visible_link": "https://books.google.com/books?isbn=3739615621", + "date": "", + "rank": 191 + }, + { + "link": "https://shop4-h.org/collections/searchresults?type=product&q=cat+curriculum", + "title": "Cat Curriculum - Shop 4-Hhttps://shop4-h.org/collections/searchresults?type=product...cat...Traduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://shop4-h.org/collections/searchresults?type=product...cat...", + "date": "", + "rank": 192 + }, + { + "link": "https://www.msn.com/en-us/video/be-prepared/cat-plays-peekaboo-with-owner/vp-AACID0V", + "title": "Cat Plays Peekaboo with Owner - MSN.comhttps://www.msn.com/en-us/video/be.../cat-plays.../vp-AACID0VTraduire cette page", + "snippet": "Sheldon the cat loved to play peekaboo with his owner. Adorably, his owner repeatedly turned around and ...", + "visible_link": "https://www.msn.com/en-us/video/be.../cat-plays.../vp-AACID0V", + "date": "", + "rank": 193 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3317329/", + "title": "Cat ownership and the Risk of Fatal Cardiovascular Diseases. Results ...https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3317329/En cachePages similairesTraduire cette page", + "snippet": "There was also a trend for decreased risk for death due to cardiovascular diseases among participants with past cat ownership (RR, 0.74; 95% CI, 0.55 to 1.0).", + "visible_link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3317329/", + "date": "", + "rank": 194 + }, + { + "link": "https://www.americanhumane.org/fact-sheet/introducing-dogs-to-cats/", + "title": "Introducing Dogs to Cats - American Humanehttps://www.americanhumane.org/fact.../introducing-dogs-to-cats/En cachePages similairesTraduire cette page", + "snippet": "25 août 2016 - Whether you already have a dog and are considering getting a cat, or vice versa, it is very important to think about their first introduction.", + "visible_link": "https://www.americanhumane.org/fact.../introducing-dogs-to-cats/", + "date": "25 août 2016 - ", + "rank": 195 + }, + { + "link": "https://www.healthline.com/health/allergies/cats", + "title": "Cat Allergies: Symptoms and Treatment - Healthlinehttps://www.healthline.com/health/allergies/catsEn cacheTraduire cette page", + "snippet": "21 août 2017 - Nearly a third of Americans with allergies are allergic to cats and dogs. And twice as many people have cat allergies than dog allergies.", + "visible_link": "https://www.healthline.com/health/allergies/cats", + "date": "21 août 2017 - ", + "rank": 196 + }, + { + "link": "https://www.3pagansandacat.com/047", + "title": "3 Pagans and a Cat Episode 047: Solar Festivals: Lithahttps://www.3pagansandacat.com/047En cacheTraduire cette page", + "snippet": "Il y a 21 heures - The second year of holiday content, continuing with June's Sun Festival: Litha.", + "visible_link": "https://www.3pagansandacat.com/047", + "date": "Il y a 21 heures - ", + "rank": 197 + }, + { + "link": "https://www.testingforschools.com/code", + "title": "Login - Testwisehttps://www.testingforschools.com/codeEn cacheTraduire cette page", + "snippet": "This site uses cookies. By closing this message you consent to the use of our cookies on this device in accordance with our cookie policy. Close. Error reference:.", + "visible_link": "https://www.testingforschools.com/code", + "date": "", + "rank": 198 + } + ] + } + }, + "mouse": { + "1": { + "time": "Tue, 11 Jun 2019 19:54:53 GMT", + "num_results": "Environ 1 160 000 000 résultats (0,59 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://en.wikipedia.org/wiki/Mouse", + "title": "Mouse - Wikipediahttps://en.wikipedia.org/wiki/MouseEn cachePages similairesTraduire cette page", + "snippet": "A mouse, plural mice, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail, and a high breeding rate. The best ...", + "visible_link": "https://en.wikipedia.org/wiki/Mouse", + "date": "", + "rank": 1 + }, + { + "link": "https://en.wikipedia.org/wiki/Computer_mouse", + "title": "Computer mouse - Wikipediahttps://en.wikipedia.org/wiki/Computer_mouseEn cachePages similairesTraduire cette page", + "snippet": "A computer mouse is a hand-held pointing device that detects two-dimensional motion relative to a surface. This motion is typically translated into the motion of a ...", + "visible_link": "https://en.wikipedia.org/wiki/Computer_mouse", + "date": "", + "rank": 2 + }, + { + "link": "https://www.amazon.com/AmazonBasics-3-Button-Wired-Mouse-Black/dp/B005EJH6RW", + "title": "AmazonBasics 3-Button USB Wired Computer Mouse ... - Amazon.comhttps://www.amazon.com/AmazonBasics...Mouse.../B005EJH6RWEn cachePages similairesTraduire cette page", + "snippet": "Buy AmazonBasics 3-Button USB Wired Computer Mouse (Black): Mice - Amazon.com ✓ FREE DELIVERY possible on eligible purchases.", + "visible_link": "https://www.amazon.com/AmazonBasics...Mouse.../B005EJH6RW", + "date": "", + "rank": 3 + }, + { + "link": "https://www.bestbuy.com/site/computer-accessories/mice-keyboards/abcat0513000.c?id=abcat0513000", + "title": "PC Mouse and Keyboard Options - Best Buyhttps://www.bestbuy.com › ... › Computer Accessories & PeripheralsEn cacheTraduire cette page", + "snippet": "Compare, review and shop at Best Buy for a great new keyboard or mouse for your computer.", + "visible_link": "https://www.bestbuy.com › ... › Computer Accessories & Peripherals", + "date": "", + "rank": 4 + }, + { + "link": "https://www.gearbest.com/mice-keyboards-c_11261/", + "title": "Mouse - Best Mouse Online shopping | Gearbest.comhttps://www.gearbest.com › ... › Computer PeripheralsEn cacheTraduire cette page", + "snippet": "Enjoy massive discounts on the best Mouse products: Hot Mouse, Mouse items & more. Shop sparkling deals at Gearbest.com with free delivery.", + "visible_link": "https://www.gearbest.com › ... › Computer Peripherals", + "date": "", + "rank": 5 + }, + { + "link": "https://www.computerhope.com/jargon/m/mouse.htm", + "title": "What is a Computer Mouse?https://www.computerhope.com › Dictionary › Mouse TermsEn cacheTraduire cette page", + "snippet": "5 avr. 2019 - Computer mouse definition on what computer mouse means, including pictures, types of mice, and the most common questions and help ...", + "visible_link": "https://www.computerhope.com › Dictionary › Mouse Terms", + "date": "5 avr. 2019 - ", + "rank": 6 + }, + { + "link": "https://mousemovement.com/", + "title": "MOUSE GRIPTAPE Official Site | MOUSE MOVEMENThttps://mousemovement.com/En cachePages similairesTraduire cette page", + "snippet": "Skateboarding griptape hand sprayed by artist Mouse in Oceanside California. Free shipping on US orders over $75.", + "visible_link": "https://mousemovement.com/", + "date": "", + "rank": 7 + }, + { + "link": "https://mouse.org/", + "title": "Mouse | Home Pagehttps://mouse.org/En cachePages similairesTraduire cette page", + "snippet": "Mouse is a national youth development nonprofit that empowers students to create with technology, solve real problems and make meaningful change in our…", + "visible_link": "https://mouse.org/", + "date": "", + "rank": 8 + }, + { + "link": "https://www.logitech.com/en-us/mice", + "title": "Mice, Computer Mice, Mac & PC Wireless Mice | Logitechhttps://www.logitech.com/en-us/miceEn cacheTraduire cette page", + "snippet": "Wireless Mouse M310 Full-size, Optical mouse $ 29.99. Compare. B100 Optical USB Mouse $ 8.99. Wireless Trackball M570 $ 59.99. Trackman Marble $ 29.99.", + "visible_link": "https://www.logitech.com/en-us/mice", + "date": "", + "rank": 9 + }, + { + "link": "https://www.logitechg.com/en-us/products/gaming-mice.html", + "title": "Gaming Mice, Wireless Gaming Mice, Mac & PC, MOBA & FPS ...https://www.logitechg.com/en-us/products/gaming-mice.htmlEn cacheTraduire cette page", + "snippet": "Logitech G professional gaming mice are engineered to compete. MOBA gaming mouse, Ultra-fast FPS gaming mouse, tunable gaming mouse, and many more ...", + "visible_link": "https://www.logitechg.com/en-us/products/gaming-mice.html", + "date": "", + "rank": 10 + }, + { + "link": "https://www.logitechg.com/en-us/products/gaming-mice/g502-lightspeed-wireless-gaming-mouse.html", + "title": "Logitech G502 LIGHTSPEED Wireless Gaming Mousehttps://www.logitechg.com/.../g502-lightspeed-wireless-gaming-m...En cacheTraduire cette page", + "snippet": "The iconic G502 gaming mouse from Logitech G now remastered with superfast LIGHTSPEED wireless, redesigned internals, and POWERPLAY compatibility.", + "visible_link": "https://www.logitechg.com/.../g502-lightspeed-wireless-gaming-m...", + "date": "", + "rank": 11 + }, + { + "link": "https://www.makeuseof.com/tag/finally-fix-windows-10-mouse-issues/", + "title": "Mouse Not Working in Windows 10? How to Fix Your Mouse Problemshttps://www.makeuseof.com › WindowsEn cacheTraduire cette page", + "snippet": "Your third mouse issue fix is another driver-related issue. Your mouse lags and emits a strange beeping sound. Microsoft first addressed these issues way back ...", + "visible_link": "https://www.makeuseof.com › Windows", + "date": "", + "rank": 12 + }, + { + "link": "https://www.corsair.com/ca/en/Categories/Products/Gaming-Mice/c/Cor_Products_Mice", + "title": "Gaming Mice | CORSAIRhttps://www.corsair.com/ca/en/Categories/.../Cor_Products_MiceEn cacheTraduire cette page", + "snippet": "15 Products - SCIMITAR PRO RGB Optical MOBA/MMO Gaming Mouse — Yellow. $119.99. $119.99. SCIMITAR PRO RGB Optical MOBA/MMO Gaming Mouse — ...", + "visible_link": "https://www.corsair.com/ca/en/Categories/.../Cor_Products_Mice", + "date": "15 Products - ", + "rank": 13 + }, + { + "link": "https://www.corsair.com/eu/en/Categories/Products/Gaming-Mice/c/Cor_Products_Mice", + "title": "Gaming Mice | CORSAIRhttps://www.corsair.com/eu/en/Categories/.../Cor_Products_MiceEn cacheTraduire cette page", + "snippet": "17 Products - Dark Core RGB Wireless Gaming Mouse · GLAIVE - RGB Gaming Mouse · SCIMITAR PRO Gaming Mouse. Be the first to know. Product releases ...", + "visible_link": "https://www.corsair.com/eu/en/Categories/.../Cor_Products_Mice", + "date": "17 Products - ", + "rank": 14 + }, + { + "link": "https://www.merriam-webster.com/dictionary/mouse", + "title": "Mouse | Definition of Mouse by Merriam-Websterhttps://www.merriam-webster.com/dictionary/mouseEn cachePages similairesTraduire cette page", + "snippet": "Mouse definition is - any of numerous small rodents (as of the genus Mus) with pointed snout, rather small ears, elongated body, and slender tail. How to use ...", + "visible_link": "https://www.merriam-webster.com/dictionary/mouse", + "date": "", + "rank": 15 + }, + { + "link": "https://pcpartpicker.com/products/mouse/", + "title": "Choose A Mouse - PCPartPickerhttps://pcpartpicker.com/products/mouse/En cachePages similairesTraduire cette page", + "snippet": "Tracking Method. Optical. Connection Type. Wired. Maximum DPI. 16000. Hand Orientation. Right. Color. Black / Green. (35), $44.99. Add. Corsair Harpoon ...", + "visible_link": "https://pcpartpicker.com/products/mouse/", + "date": "", + "rank": 16 + }, + { + "link": "https://www.logitech.com/en-us/combos", + "title": "Keyboard Mouse Combos, Wireless Keyboard & Mouse ... - Logitechhttps://www.logitech.com/en-us/combosEn cacheTraduire cette page", + "snippet": "Shop for keyboard-mouse combos for PC and Mac. Compare features and find the perfect combo for you. Learn more now.", + "visible_link": "https://www.logitech.com/en-us/combos", + "date": "", + "rank": 17 + }, + { + "link": "https://www.razer.com/gaming-mice-and-mats", + "title": "Razer Gaming Mouse and Mat: Wireless Mouse, Ergonomic Mouse ...https://www.razer.com/gaming-mice-and-matsEn cacheTraduire cette page", + "snippet": "Razer's best gaming mice - Razer DeathAdder, Lancehead, Mamba & more are designed and engineered with ergonomics, wireless technology & performance ...", + "visible_link": "https://www.razer.com/gaming-mice-and-mats", + "date": "", + "rank": 18 + }, + { + "link": "https://www.hyperxgaming.com/us/mice", + "title": "Pulsefire FPS Gaming Mouse - Designed for First Person Shooters ...https://www.hyperxgaming.com/us/miceEn cacheTraduire cette page", + "snippet": "The non-slip grip and fluid, responsive tracking makes the HyperX Pulsefire FPS Gaming Mouse perfect for FPS games such as CS:GO and Overwatch.", + "visible_link": "https://www.hyperxgaming.com/us/mice", + "date": "", + "rank": 19 + }, + { + "link": "https://www.petco.com/shop/en/petcostore/product/small-animal/live-small-animals/mouse-5004811--1", + "title": "Mouse | Petcohttps://www.petco.com/shop/en/petcostore/.../mouse-5004811--1En cacheTraduire cette page", + "snippet": "A mouse is a low maintenance mammal to keep as a companion animal. With cute and playful qualities, they are extremely active and social small animals.", + "visible_link": "https://www.petco.com/shop/en/petcostore/.../mouse-5004811--1", + "date": "", + "rank": 20 + }, + { + "link": "https://www.pcgamingrace.com/products/glorious-model-o-white", + "title": "Glorious Model O (Matte White) - The World's Lightest RGB Gaming ...https://www.pcgamingrace.com/products/glorious-model-o-whiteEn cacheTraduire cette page", + "snippet": "This is Model O the world's lightest, competetive-grade, RGB gaming mouse at 67 grams. Envisioned by a community of passionate gamers, and developed by a ...", + "visible_link": "https://www.pcgamingrace.com/products/glorious-model-o-white", + "date": "", + "rank": 21 + }, + { + "link": "https://www.theverge.com/2019/6/3/18647071/apple-ipad-os-mouse-support-wwdc-2019", + "title": "Apple's new iPadOS includes mouse support for iPads - The Vergehttps://www.theverge.com/.../apple-ipad-os-mouse-support-wwdc-...En cacheTraduire cette page", + "snippet": "3 juin 2019 - Apple is making a huge change to its new iPadOS, introducing mouse support for both USB and Bluetooth devices. iOS developer Steve ...", + "visible_link": "https://www.theverge.com/.../apple-ipad-os-mouse-support-wwdc-...", + "date": "3 juin 2019 - ", + "rank": 22 + }, + { + "link": "https://www.arduino.cc/reference/en/language/functions/usb/mouse/", + "title": "Mouse - Arduino Referencehttps://www.arduino.cc/reference/en/language/functions/.../mouse/En cacheTraduire cette page", + "snippet": "18 févr. 2019 - The mouse functions enable 32u4 or SAMD micro based boards to control cursor movement on a connected computer through their micro's ...", + "visible_link": "https://www.arduino.cc/reference/en/language/functions/.../mouse/", + "date": "18 févr. 2019 - ", + "rank": 23 + }, + { + "link": "https://www.apple.com/shop/product/MRME2LL/A/magic-mouse-2-space-gray", + "title": "Buy Magic Mouse 2 for Mac in Space Gray - Applehttps://www.apple.com › All Accessories › Mice & KeyboardsEn cacheTraduire cette page", + "snippet": "Easy tracking, multi-touch surface, and long battery life. Magic Mouse 2 looks and feels amazing in beautiful Space Gray. Buy now at apple.com.", + "visible_link": "https://www.apple.com › All Accessories › Mice & Keyboards", + "date": "", + "rank": 24 + }, + { + "link": "http://www.informatics.jax.org/", + "title": "MGI-Mouse Genome Informatics-The international database resource ...www.informatics.jax.org/En cachePages similairesTraduire cette page", + "snippet": "MGI: the international database resource for the laboratory mouse, providing integrated genetic, genomic, and biological data for researching human health and ...", + "visible_link": "www.informatics.jax.org/", + "date": "", + "rank": 25 + }, + { + "link": "https://www.ensembl.org/Mus_musculus/Info/Index", + "title": "Mouse - Ensemblhttps://www.ensembl.org/Mus_musculus/Info/IndexEn cacheTraduire cette page", + "snippet": "Genome assembly: GRCm38.p6 (GCA_000001635.8). More information and statistics · Download DNA sequence (FASTA). Convert your data to GRCm38 ...", + "visible_link": "https://www.ensembl.org/Mus_musculus/Info/Index", + "date": "", + "rank": 26 + }, + { + "link": "https://www.howtogeek.com/trivia/the-speed-of-a-computer-mouse-is-measured-in-what-unit/", + "title": "The Speed Of A Computer Mouse Is Measured In What Unit?https://www.howtogeek.com/.../the-speed-of-a-computer-mouse-is-...En cachePages similairesTraduire cette page", + "snippet": "Think you know the answer? Click through to see if you're right!", + "visible_link": "https://www.howtogeek.com/.../the-speed-of-a-computer-mouse-is-...", + "date": "", + "rank": 27 + }, + { + "link": "https://www.abcmouse.com/email/mouse-and-pointer", + "title": "ABCmouse.com Mouse and Pointer Tutorialhttps://www.abcmouse.com/email/mouse-and-pointerEn cachePages similairesTraduire cette page", + "snippet": "My children are excited to learn and they don't want to stop. I'm so glad that I made the decision to invest in my children's education by signing up with ...", + "visible_link": "https://www.abcmouse.com/email/mouse-and-pointer", + "date": "", + "rank": 28 + }, + { + "link": "https://developer.roblox.com/api-reference/class/Mouse", + "title": "Mouse - Roblox Developer Hubhttps://developer.roblox.com/api-reference/class/MouseEn cacheTraduire cette page", + "snippet": "A Mouse object is not createable, but can be obtained using the Player:GetMouse , Tool.Equipped . The PluginMouse object, which inherits from Mouse can be ...", + "visible_link": "https://developer.roblox.com/api-reference/class/Mouse", + "date": "", + "rank": 29 + }, + { + "link": "https://satechi.net/products/m1-wireless-mouse", + "title": "M1 Wireless Mouse | Computer Peripherals - Satechihttps://satechi.net/products/m1-wireless-mouse", + "snippet": "Complete your desktop with the Satechi M1 Bluetooth Wireless Mouse, featuring Bluetooth 4.0 connection, rechargeable Type-C port and a modern, ergonomic ...", + "visible_link": "https://satechi.net/products/m1-wireless-mouse", + "date": "", + "rank": 30 + }, + { + "link": "https://en.wiktionary.org/wiki/mouse", + "title": "mouse - Wiktionaryhttps://en.wiktionary.org/wiki/mouseEn cachePages similairesTraduire cette page", + "snippet": "(computing) (plural mice or, rarely, mouses) An input device that is moved over a pad or other flat surface to produce a corresponding movement of a pointer on ...", + "visible_link": "https://en.wiktionary.org/wiki/mouse", + "date": "", + "rank": 31 + }, + { + "link": "https://learn.genetics.utah.edu/content/addiction/mouse/", + "title": "Mouse Party - Learn Genetics @ Utah - University of Utahhttps://learn.genetics.utah.edu/content/addiction/mouse/En cacheTraduire cette page", + "snippet": "Like Mouse Party? Try Meth Mouse. Note: The simplified mechanisms of drug action presented here are just a small part of the story. When drugs enter the body ...", + "visible_link": "https://learn.genetics.utah.edu/content/addiction/mouse/", + "date": "", + "rank": 32 + }, + { + "link": "https://www.poetryfoundation.org/poems/43816/to-a-mouse-56d222ab36e33", + "title": "To a Mouse by Robert Burns | Poetry Foundationhttps://www.poetryfoundation.org/.../to-a-mouse-56d222ab36e33En cacheTraduire cette page", + "snippet": "To a Mouse. By Robert Burns. On Turning up in Her Nest with the Plough, November, 1785. Wee, sleeket, cowran, tim'rous beastie,. O, what a panic's in thy ...", + "visible_link": "https://www.poetryfoundation.org/.../to-a-mouse-56d222ab36e33", + "date": "", + "rank": 33 + }, + { + "link": "https://mousebookclub.com/", + "title": "Mouse Book Club: Mouse Bookshttps://mousebookclub.com/En cacheTraduire cette page", + "snippet": "Take a break from technology and distraction with phone-sized physical books. Mouse Books are approachable, carefully curated, beautiful, and durable.", + "visible_link": "https://mousebookclub.com/", + "date": "", + "rank": 34 + }, + { + "link": "https://www.uniprot.org/taxonomy/10090", + "title": "Mus musculus (Mouse) - UniProthttps://www.uniprot.org/taxonomy/10090En cacheTraduire cette page", + "snippet": "Common name, Mouse. Synonym, -. Other names, ›LK3 transgenic mice ›Mus musculus Linnaeus, 1758 ›Mus sp. 129SV ›house mouse", + "visible_link": "https://www.uniprot.org/taxonomy/10090", + "date": "", + "rank": 35 + }, + { + "link": "https://www.techradar.com/news/computing-components/peripherals/what-mouse-10-best-mice-compared-1027809", + "title": "Best mouse 2019: the best mice for work and play | TechRadarhttps://www.techradar.com/.../what-mouse-10-best-mice-compared...En cacheTraduire cette page", + "snippet": "9 mai 2019 - Buying a decent mouse is pretty easy to overlook. Read on to find the best mouse for your needs.", + "visible_link": "https://www.techradar.com/.../what-mouse-10-best-mice-compared...", + "date": "9 mai 2019 - ", + "rank": 36 + }, + { + "link": "https://www.mathplayground.com/logic_trap_the_mouse.html", + "title": "Trap the Mouse | Math Playgroundhttps://www.mathplayground.com/logic_trap_the_mouse.htmlEn cacheTraduire cette page", + "snippet": "Play Trap the Mouse at Math Playground! The mouse wants to escape. Can you trap him?", + "visible_link": "https://www.mathplayground.com/logic_trap_the_mouse.html", + "date": "", + "rank": 37 + }, + { + "link": "https://computer.howstuffworks.com/mouse.htm", + "title": "How Computer Mice Work | HowStuffWorkshttps://computer.howstuffworks.com › ... › Keyboards & MiceEn cacheTraduire cette page", + "snippet": "The mouse might just be the computer user's best friend. Every day of your computing life, you reach out for your mouse whenever you want to move your cursor ...", + "visible_link": "https://computer.howstuffworks.com › ... › Keyboards & Mice", + "date": "", + "rank": 38 + }, + { + "link": "https://www.sciencedaily.com/terms/mouse.htm", + "title": "Mouse - ScienceDailyhttps://www.sciencedaily.com/terms/mouse.htmEn cachePages similairesTraduire cette page", + "snippet": "A mouse is a mammal that belongs to one of numerous species of small rodents. The best known mouse species is the common house mouse. It is found in ...", + "visible_link": "https://www.sciencedaily.com/terms/mouse.htm", + "date": "", + "rank": 39 + }, + { + "link": "https://lol.disney.com/games/minnie-mouse-games", + "title": "Minnie Mouse Games | Disney LOLhttps://lol.disney.com/games/minnie-mouse-gamesEn cacheTraduire cette page", + "snippet": "Play games featuring iconic fashionista Minnie Mouse! Help Minnie connect the dots, walk the runway, and go on adventures with the one and only Mickey ...", + "visible_link": "https://lol.disney.com/games/minnie-mouse-games", + "date": "", + "rank": 40 + }, + { + "link": "https://www.microsoft.com/en-us/p/surface-mouse/8qbtdr3q4rpw", + "title": "Buy Surface Mouse - Microsoft Storehttps://www.microsoft.com/en-us/p/surface-mouse/8qbtdr3q4rpwEn cacheTraduire cette page", + "snippet": "Sculpted for your hand and designed for an elegantly simple work space, Mouse is the perfect partner to your docked Surface and Keyboard. It was designed to ...", + "visible_link": "https://www.microsoft.com/en-us/p/surface-mouse/8qbtdr3q4rpw", + "date": "", + "rank": 41 + }, + { + "link": "https://support.microsoft.com/en-us/help/4034170/which-devices-are-supported-by-microsoft-mouse-and-keyboard-center", + "title": "Which devices are supported by Microsoft Mouse and Keyboard ...https://support.microsoft.com/.../which-devices-are-supported-by-...En cacheTraduire cette page", + "snippet": "4 avr. 2019 - Find out if your device is or is not supported by Microsoft Mouse and Keyboard Center software, and what to do if it is not supported.", + "visible_link": "https://support.microsoft.com/.../which-devices-are-supported-by-...", + "date": "4 avr. 2019 - ", + "rank": 42 + }, + { + "link": "http://web.jhu.edu/animalcare/procedures/mouse.html", + "title": "Species Specific Information: Mouse - Johns Hopkins Universityweb.jhu.edu/animalcare/procedures/mouse.htmlEn cachePages similairesTraduire cette page", + "snippet": "The mouse has short hair, a long naked tail, rounded erect ears, protruding eyes, a pointed snout and five toes on each foot. Mice come in a variety of colors.", + "visible_link": "web.jhu.edu/animalcare/procedures/mouse.html", + "date": "", + "rank": 43 + }, + { + "link": "https://www.gigabyte.com/Mouse", + "title": "Mouse - GIGABYTE Globalhttps://www.gigabyte.com/MouseEn cacheTraduire cette page", + "snippet": "Browse GIGABYTE specialty and gaming mice powered by top-quality sensors with ergonomics and customizable features best for FPS and MOBA gaming!", + "visible_link": "https://www.gigabyte.com/Mouse", + "date": "", + "rank": 44 + }, + { + "link": "https://www.aol.com/games/play/masque-publishing/bubble-mouse-blast/", + "title": "Play Bubble Mouse Blast Online - AOL Games - AOL.comhttps://www.aol.com/games/play/masque.../bubble-mouse-blast/En cacheTraduire cette page", + "snippet": "Play this online match-3 game from Masque Publishing. Shoot bubbles while candy and cakes advance towards your mouse hero in this free fast-paced mat.", + "visible_link": "https://www.aol.com/games/play/masque.../bubble-mouse-blast/", + "date": "", + "rank": 45 + }, + { + "link": "https://www.khanacademy.org/computing/computer-programming/programming/logic-if-statements/pt/more-mouse-interaction", + "title": "More Mouse Interaction | Logic and if Statements | Intro to JS: Drawing ...https://www.khanacademy.org › ... › Logic and if StatementsEn cacheTraduire cette page", + "snippet": "Read and learn for free about the following scratchpad: More Mouse Interaction.", + "visible_link": "https://www.khanacademy.org › ... › Logic and if Statements", + "date": "", + "rank": 46 + }, + { + "link": "https://www.lifewire.com/what-is-a-mouse-2618156", + "title": "What is A Mouse? (Computer Mouse Definition) - Lifewirehttps://www.lifewire.com › ... › Key Concepts › Computer ConceptsEn cachePages similairesTraduire cette page", + "snippet": "The mouse is a computer input device used to move a cursor around a screen. The mouse buttons are used to interact with whatever is being pointed at.", + "visible_link": "https://www.lifewire.com › ... › Key Concepts › Computer Concepts", + "date": "", + "rank": 47 + }, + { + "link": "https://www.webopedia.com/TERM/M/mouse.html", + "title": "What is Mouse? Webopedia Definitionhttps://www.webopedia.com/TERM/M/mouse.htmlEn cacheTraduire cette page", + "snippet": "A device that controls the movement of the cursor or pointer on a display screen. A mouse is a small object you can roll along a hard, flat surface.", + "visible_link": "https://www.webopedia.com/TERM/M/mouse.html", + "date": "", + "rank": 48 + }, + { + "link": "https://steelseries.com/gaming-mice", + "title": "Gaming Mice for PC and Mac | SteelSerieshttps://steelseries.com/gaming-miceEn cachePages similairesTraduire cette page", + "snippet": "... are compatible with PC and Mac. Experience unrivaled performance, no matter which gaming mouse you choose. ... Mouse Bungee. $24.99. Rival 700/710 ...", + "visible_link": "https://steelseries.com/gaming-mice", + "date": "", + "rank": 49 + }, + { + "link": "https://www.osha.gov/SLTC/etools/computerworkstations/components_pointers.html", + "title": "Pointer/Mouse - OSHAhttps://www.osha.gov/SLTC/etools/.../components_pointers.htmlEn cachePages similairesTraduire cette page", + "snippet": "Computer Workstations eTool | Workstation Components - Pointer/Mouse.", + "visible_link": "https://www.osha.gov/SLTC/etools/.../components_pointers.html", + "date": "", + "rank": 50 + }, + { + "link": "https://www.raspberrypi.org/products/raspberry-pi-mouse/", + "title": "Buy a Raspberry Pi mouse – Raspberry Pihttps://www.raspberrypi.org/products/raspberry-pi-mouse/En cacheTraduire cette page", + "snippet": "Our official mouse has three buttons, which activate high-quality micro-switches. The wheel is for quick scrolling when browsing documents and web pages.", + "visible_link": "https://www.raspberrypi.org/products/raspberry-pi-mouse/", + "date": "", + "rank": 51 + }, + { + "link": "https://www.costco.com/Logitech-MK735-Wireless-Keyboard-and-Mouse-.product.100370548.html", + "title": "Logitech MK735 Wireless Keyboard and Mouse - Costco Wholesalehttps://www.costco.com/Logitech-MK735-Wireless-Keyboard-and...En cacheTraduire cette page", + "snippet": "Logitech MK735 Wireless Keyboard and Mouse Full Size Mouse with 5 Programmable Buttons Full Size Keyboard with Palm Rest Unified Receiver for Both ...", + "visible_link": "https://www.costco.com/Logitech-MK735-Wireless-Keyboard-and...", + "date": "", + "rank": 52 + }, + { + "link": "https://www.newegg.com/Keyboards-Mice/Category/ID-234", + "title": "Keyboard and Mice, Wireless Keyboard and Mouse Combo - Newegghttps://www.newegg.com/Keyboards-Mice/Category/ID-234En cachePages similairesTraduire cette page", + "snippet": "Devastator 3 Gaming Combo with RGB Keyboard and Mouse Featuring Seven ... Logitech G Pro Wireless Gaming Mouse with Esports Grade Performance and ...", + "visible_link": "https://www.newegg.com/Keyboards-Mice/Category/ID-234", + "date": "", + "rank": 53 + }, + { + "link": "https://www.ideo.com/case-study/creating-the-first-usable-mouse", + "title": "Creating the First Usable Mouse | ideo.comhttps://www.ideo.com/case-study/creating-the-first-usable-mouseEn cachePages similairesTraduire cette page", + "snippet": "In 1980, Apple asked IDEO to develop a mouse for their radical new computer, the Lisa. Previous attempts at mouse design, by Douglas Englebart and Xerox ...", + "visible_link": "https://www.ideo.com/case-study/creating-the-first-usable-mouse", + "date": "", + "rank": 54 + }, + { + "link": "https://www.lingokids.com/oxford/mouse", + "title": "Redeem your Lingokids and Oxford Mouse and Me! codehttps://www.lingokids.com/oxford/mouseEn cacheTraduire cette page", + "snippet": "The Lingokids app is game-based, with relevant and fun content. The learning is self-directed, a motivating factor for young learners.", + "visible_link": "https://www.lingokids.com/oxford/mouse", + "date": "", + "rank": 55 + }, + { + "link": "https://www.computerhistory.org/revolution/input-output/14/350", + "title": "The Mouse - CHM Revolutionhttps://www.computerhistory.org/revolution/input-output/14/350En cacheTraduire cette page", + "snippet": "The MouseTrackballs, light pens, and other clever pointing devices were widespread. Then the mouse was invented. Twice. (Well, at least twice.)Doug ...", + "visible_link": "https://www.computerhistory.org/revolution/input-output/14/350", + "date": "", + "rank": 56 + }, + { + "link": "https://zone.msn.com/en/bubblemouse/default.htm", + "title": "Bubble Mouse - MSN Games - Free Online Gameshttps://zone.msn.com/en/bubblemouse/default.htmEn cacheTraduire cette page", + "snippet": "When the cat's away the mouse will play! Fire bubbles from your trusty cannon to make matches of three or more and clear the board. Big plays give you coins ...", + "visible_link": "https://zone.msn.com/en/bubblemouse/default.htm", + "date": "", + "rank": 57 + }, + { + "link": "https://www.coolermaster.com/catalog/peripheral/?filter=28981/#!/Product=Mice", + "title": "Mice - Peripheral | Cooler Masterhttps://www.coolermaster.com › PeripheralEn cacheTraduire cette page", + "snippet": "This website is for consumer products of Cooler Master Technology Inc. only. For OEM/ODM products please go to Cooler Master Co. ltd. search. home; back ...", + "visible_link": "https://www.coolermaster.com › Peripheral", + "date": "", + "rank": 58 + }, + { + "link": "http://www.elofilms.com/mouse", + "title": "Mouse - ELOwww.elofilms.com/mouseEn cacheTraduire cette page", + "snippet": "MOUSE premiered at the 30th South by Southwest Film Festival in the Midnight Shorts Competition, and premiered internationally at the 25th Raindance ...", + "visible_link": "www.elofilms.com/mouse", + "date": "", + "rank": 59 + }, + { + "link": "https://finalmouse.com/products/air-red", + "title": "Air58 Ninja - Cherry Blossom Red – Finalmousehttps://finalmouse.com/products/air-redEn cacheTraduire cette page", + "snippet": "Hand painted and engraved Individualized Haiku Scrolls on every mouse. Beautiful Haikus from ancient masters. Some rare, some more common, your Haiku is ...", + "visible_link": "https://finalmouse.com/products/air-red", + "date": "", + "rank": 60 + }, + { + "link": "https://api.jquery.com/category/events/mouse-events/", + "title": "Mouse Events | jQuery API Documentationhttps://api.jquery.com/category/events/mouse-events/En cachePages similairesTraduire cette page", + "snippet": "Bind one or two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.", + "visible_link": "https://api.jquery.com/category/events/mouse-events/", + "date": "", + "rank": 61 + }, + { + "link": "https://www.datasci.com/products/implantable-telemetry/mouse-(miniature)", + "title": "DSI Mouse (Miniature) Telemetry - Data Sciences Internationalhttps://www.datasci.com/products/implantable.../mouse-(miniature)En cachePages similairesTraduire cette page", + "snippet": "DSI offers mouse telemetry implants for measuring physiologic signals such as pressure, biopotential, activity and temperature.", + "visible_link": "https://www.datasci.com/products/implantable.../mouse-(miniature)", + "date": "", + "rank": 62 + }, + { + "link": "http://www.mouseonmars.com/", + "title": "Mouse On Marswww.mouseonmars.com/En cachePages similairesTraduire cette page", + "snippet": "Mouse on Mars is recognised as one of Germany's most defining and versatile electronic music projects.", + "visible_link": "www.mouseonmars.com/", + "date": "", + "rank": 63 + }, + { + "link": "https://www.nc3rs.org.uk/mouse-decision-tree-blood-sampling", + "title": "Mouse : Decision tree for blood sampling | NC3Rshttps://www.nc3rs.org.uk/mouse-decision-tree-blood-samplingEn cachePages similairesTraduire cette page", + "snippet": "How much blood does a mouse have? On average, mice have around 58.5 ml of blood per kg of bodyweight. A mouse weighing 25 g would therefore have a ...", + "visible_link": "https://www.nc3rs.org.uk/mouse-decision-tree-blood-sampling", + "date": "", + "rank": 64 + }, + { + "link": "https://www.brainpop.com/technology/computerscience/computermouse/", + "title": "Computer Mouse - BrainPOPhttps://www.brainpop.com/technology/.../computermouse/En cachePages similairesTraduire cette page", + "snippet": "Eeek — a mouse! Okay, computer mice are pretty harmless. Now you can find out how they work! In this BrainPOP movie, Tim and Moby teach you all about the ...", + "visible_link": "https://www.brainpop.com/technology/.../computermouse/", + "date": "", + "rank": 65 + }, + { + "link": "https://www.remotemouse.net/", + "title": "Turn iPhone, iPad and Android into wireless mobile mouse / trackpad ...https://www.remotemouse.net/En cacheTraduire cette page", + "snippet": "Control at Your Fingertips. Turn your mobile phone or tablet into a set of wireless mouse, keyboard and trackpad. Watch Video ...", + "visible_link": "https://www.remotemouse.net/", + "date": "", + "rank": 66 + }, + { + "link": "https://www.ccohs.ca/oshanswers/ergonomics/office/mouse/mouse_problems.html", + "title": "Computer Mouse - Common Problems from Use : OSH Answershttps://www.ccohs.ca/oshanswers/.../mouse/mouse_problems.htmlEn cachePages similairesTraduire cette page", + "snippet": "Why has using the computer mouse become a problem? What makes using a computer mouse hazardous? What can be done to reduce the risk of injury from ...", + "visible_link": "https://www.ccohs.ca/oshanswers/.../mouse/mouse_problems.html", + "date": "", + "rank": 67 + }, + { + "link": "https://www.rndsystems.com/products/proteome-profiler-mouse-xl-cytokine-array_ary028", + "title": "Proteome Profiler Mouse XL Cytokine Array ARY028: R&D Systemshttps://www.rndsystems.com › Multiplex Cytokine Assay KitsEn cachePages similairesTraduire cette page", + "snippet": "Detect 111 mouse cytokines simultaneously with our Proteome Profiler Mouse XL Cytokine Array. No specialized equipment required.", + "visible_link": "https://www.rndsystems.com › Multiplex Cytokine Assay Kits", + "date": "", + "rank": 68 + }, + { + "link": "https://www.nature.com/subjects/mouse", + "title": "Mouse - Latest research and news | Naturehttps://www.nature.com › subjectsTraduire cette page", + "snippet": "An ATAC-seq atlas of chromatin accessibility in mouse tissues. Chuanyu Liu; , Mingyue Wang; , Xiaoyu Wei; , Liang Wu; , Jiangshan Xu; , Xi Dai; , Jun Xia ...", + "visible_link": "https://www.nature.com › subjects", + "date": "", + "rank": 69 + }, + { + "link": "https://besamecosmetics.com/collections/mickey-mouse", + "title": "Mickey Mouse – Besame Cosmeticshttps://besamecosmetics.com/collections/mickey-mouseEn cacheTraduire cette page", + "snippet": "Mickey Mouse. Mickey Mouse Makeup Collection. Filters. Filters. classic color ... Mickey Mouse Lipsticks and Mirror Set. 4.5 star rating 51 Reviews. $ 45 $ 50.", + "visible_link": "https://besamecosmetics.com/collections/mickey-mouse", + "date": "", + "rank": 70 + }, + { + "link": "https://thenounproject.com/term/mouse/890/", + "title": "Mouse icons | Noun Projecthttps://thenounproject.com/term/mouse/890/En cachePages similairesTraduire cette page", + "snippet": "Creating, Sharing and Celebrating the World's Visual Language.", + "visible_link": "https://thenounproject.com/term/mouse/890/", + "date": "", + "rank": 71 + }, + { + "link": "https://support.xbox.com/xbox-one/ease-of-access/mouse-keyboard", + "title": "Mouse and keyboard support on Xbox Onehttps://support.xbox.com/xbox-one/ease-of.../mouse-keyboardEn cacheTraduire cette page", + "snippet": "Note Xbox supports the use of mouse and keyboard in some games and apps, but it doesn't work for every game or app. The game or app publisher must ...", + "visible_link": "https://support.xbox.com/xbox-one/ease-of.../mouse-keyboard", + "date": "", + "rank": 72 + }, + { + "link": "https://zowie.benq.com/en/product/mouse.html", + "title": "Mouse | ZOWIE Global - BenQhttps://zowie.benq.com/en/product/mouse.htmlEn cacheTraduire cette page", + "snippet": "It allows the user's fingertips to hold/cover the mouse to move smoothly. EC Series comes in two sizes to fulfill different needs. EC-B is the version with 3360 ...", + "visible_link": "https://zowie.benq.com/en/product/mouse.html", + "date": "", + "rank": 73 + }, + { + "link": "https://stardewvalleywiki.com/Abandoned_House", + "title": "Abandoned House - Stardew Valley Wikihttps://stardewvalleywiki.com/Abandoned_HouseEn cacheTraduire cette page", + "snippet": "A mouse takes over the building and opens a shop there selling hats to the player after the first achievement is acquired. All hats are sold for 1000g. Hats are ...", + "visible_link": "https://stardewvalleywiki.com/Abandoned_House", + "date": "", + "rank": 74 + }, + { + "link": "https://www.shopdisney.com/characters/minnie-mouse", + "title": "Minnie Mouse | Mickey Mouse & Friends | shopDisneyhttps://www.shopdisney.com/characters/minnie-mouseEn cacheTraduire cette page", + "snippet": "Ears to Minnie Mouse. Shop oodles and oodles of Minnie Mouse merchandise at shopDisney.", + "visible_link": "https://www.shopdisney.com/characters/minnie-mouse", + "date": "", + "rank": 75 + }, + { + "link": "https://thewirecutter.com/reviews/best-wireless-mouse/", + "title": "The Best Wireless Mouse for 2019: Reviews by Wirecutter | A New ...https://thewirecutter.com/reviews/best-wireless-mouse/En cacheTraduire cette page", + "snippet": "5 avr. 2019 - After researching 42 wireless mice and testing 14, we found that the Logitech M720 Triathlon Multi-Device Wireless Mouse is the best wireless ...", + "visible_link": "https://thewirecutter.com/reviews/best-wireless-mouse/", + "date": "5 avr. 2019 - ", + "rank": 76 + }, + { + "link": "https://matrix.fandom.com/wiki/Mouse", + "title": "Mouse | Matrix Wiki | FANDOM powered by Wikiahttps://matrix.fandom.com/wiki/MouseEn cacheTraduire cette page", + "snippet": "Mouse appears to be the youngest and most diminutive crew member on the Zion hovercraft Nebuchadnezzar. He is a pod-born zionite and is later killed by ...", + "visible_link": "https://matrix.fandom.com/wiki/Mouse", + "date": "", + "rank": 77 + }, + { + "link": "https://www.redragonzone.com/collections/mice", + "title": "Mouse – REDRAGON ZONEhttps://www.redragonzone.com/collections/miceEn cacheTraduire cette page", + "snippet": "Redragon M908 IMPACT MMO Gaming Mouse up to 12,400 DPI High Precision Laser Mouse for PC, 18 Programmable Buttons, Weight Tuning Cartridge, ...", + "visible_link": "https://www.redragonzone.com/collections/mice", + "date": "", + "rank": 78 + }, + { + "link": "https://www.lenovo.com/us/en/accessories-and-monitors/keyboards-and-mice/c/keyboards-and-mice", + "title": "Lenovo Keyboards & Mice | Wireless, USB Laser, & Combo Options ...https://www.lenovo.com › Home › Accessories and MonitorsEn cacheTraduire cette page", + "snippet": "Experience first-hand the difference that a well-designed keyboard or mouse can make. Check out our range of wireless, USB laser and combo options today.", + "visible_link": "https://www.lenovo.com › Home › Accessories and Monitors", + "date": "", + "rank": 79 + }, + { + "link": "https://bronxzoo.com/exhibits/mouse-house", + "title": "Mouse House - Bronx Zoohttps://bronxzoo.com/exhibits/mouse-houseEn cachePages similairesTraduire cette page", + "snippet": "The lighting here allows us to see some of our nocturnal critters, like the acrobatic acouchi, out and about. We find the quieter we are, the more action we see.", + "visible_link": "https://bronxzoo.com/exhibits/mouse-house", + "date": "", + "rank": 80 + }, + { + "link": "http://www.cameramouse.org/", + "title": "Camera Mousewww.cameramouse.org/En cachePages similairesTraduire cette page", + "snippet": "Camera Mouse is a free program that enables you to control the mouse pointer on your computer screen just by moving your head.", + "visible_link": "www.cameramouse.org/", + "date": "", + "rank": 81 + }, + { + "link": "https://www.sciencemag.org/news/2019/02/singing-mouse-s-brain-could-reveal-keys-snappy-conversation", + "title": "This singing mouse's brain could reveal keys to snappy conversation ...https://www.sciencemag.org/.../singing-mouse-s-brain-could-reveal...En cacheTraduire cette page", + "snippet": "28 févr. 2019 - The back-and-forth songs of Alston's singing mouse (Scotinomys teguina) could share mechanisms with human conversation. Christopher ...", + "visible_link": "https://www.sciencemag.org/.../singing-mouse-s-brain-could-reveal...", + "date": "28 févr. 2019 - ", + "rank": 82 + }, + { + "link": "https://disneynow.go.com/shows/disney-mickey-mouse", + "title": "Watch Disney Mickey Mouse TV Show | Disney Channel on DisneyNOWhttps://disneynow.go.com/shows/disney-mickey-mouseEn cacheTraduire cette page", + "snippet": "Watch Disney Mickey Mouse online at DisneyNOW.com. Watch full episodes, video clips and more.", + "visible_link": "https://disneynow.go.com/shows/disney-mickey-mouse", + "date": "", + "rank": 83 + }, + { + "link": "https://www.mobilemouse.com/", + "title": "Mobile Mouse: Turn your iPhone, iPad, or Apple Watch into a Remote ...https://www.mobilemouse.com/En cacheTraduire cette page", + "snippet": "Mobile Mouse is the ultimate Remote & Trackpad for iPhone, iPod, iPad, Apple Watch, and Android.", + "visible_link": "https://www.mobilemouse.com/", + "date": "", + "rank": 84 + }, + { + "link": "https://www.scirra.com/manual/114/mouse", + "title": "Mouse - Construct 2 Manual - Scirrahttps://www.scirra.com/manual/114/mouseEn cachePages similairesTraduire cette page", + "snippet": "Mouse. The Mouse object allows projects to respond to mouse input. Note on the modern web it is naïve to assume all users have a mouse. Many users now ...", + "visible_link": "https://www.scirra.com/manual/114/mouse", + "date": "", + "rank": 85 + }, + { + "link": "https://www.pygame.org/docs/ref/mouse.html", + "title": "pygame.mouse — Pygame v1.9.5.dev0 documentationhttps://www.pygame.org/docs/ref/mouse.htmlEn cachePages similairesTraduire cette page", + "snippet": "When the display mode is set, the event queue will start receiving mouse events. The mouse buttons generate pygame.MOUSEBUTTONDOWN and pygame.", + "visible_link": "https://www.pygame.org/docs/ref/mouse.html", + "date": "", + "rank": 86 + }, + { + "link": "https://www.sfml-dev.org/documentation/2.5.1/classsf_1_1Mouse.php", + "title": "sf::Mouse Class Reference (SFML / Learn / 2.5.1 Documentation)https://www.sfml-dev.org/documentation/2.../classsf_1_1Mouse.ph...En cacheTraduire cette page", + "snippet": "This class allows users to query the mouse state at any time and directly, without having to deal with a window and its events. Compared to the MouseMoved, ...", + "visible_link": "https://www.sfml-dev.org/documentation/2.../classsf_1_1Mouse.ph...", + "date": "", + "rank": 87 + }, + { + "link": "https://www.instechlabs.com/products/buttons-tethers/vascular-access/mouse-one-channel", + "title": "One Channel Mouse Buttons | Vascular Access Buttons | Instech Labshttps://www.instechlabs.com/products/buttons.../mouse-one-channe...En cacheTraduire cette page", + "snippet": "Quick aseptic connection and disconnection of a catheterized mouse and infusion tether. This single channel VAB features a magnet for improved ease of use ...", + "visible_link": "https://www.instechlabs.com/products/buttons.../mouse-one-channe...", + "date": "", + "rank": 88 + }, + { + "link": "https://doseofcolors.com/collections/minnie-mouse-collection-1", + "title": "MINNIE MOUSE COLLECTION – Dose of Colorshttps://doseofcolors.com/collections/minnie-mouse-collection-1En cacheTraduire cette page", + "snippet": "Home › MINNIE MOUSE COLLECTION · MINNIE PALETTE + BLUSH. QUICK ADD. MINNIE PALETTE + BLUSH. Regular price $ 39.00 USD. QUICK ADD ».", + "visible_link": "https://doseofcolors.com/collections/minnie-mouse-collection-1", + "date": "", + "rank": 89 + }, + { + "link": "https://www.contourdesign.com/product/contour-mouse/", + "title": "Contour Mouse - Contour Design Inc.https://www.contourdesign.com/product/contour-mouse/En cacheTraduire cette page", + "snippet": "Battery Life 3 Months on a single charge*. Cursor Speed 800 | 1000 | 1200 | 1400 | 1600 | 1800 | 2000 | 2200 | 2400 | 2800. Sensor Type Pixart PMW3330, IR.", + "visible_link": "https://www.contourdesign.com/product/contour-mouse/", + "date": "", + "rank": 90 + }, + { + "link": "https://gizmodo.com/20-years-ago-microsoft-changed-how-we-mouse-forever-1834274151", + "title": "20 Years Ago, Microsoft Changed How We Mouse Forever - Gizmodohttps://gizmodo.com/20-years-ago-microsoft-changed-how-we-mo...En cacheTraduire cette page", + "snippet": "26 avr. 2019 - Twenty years ago, in April 1999, Microsoft introduced an update to its IntelliMouse line of input devices. On top it didn't look much different than ...", + "visible_link": "https://gizmodo.com/20-years-ago-microsoft-changed-how-we-mo...", + "date": "26 avr. 2019 - ", + "rank": 91 + }, + { + "link": "http://pyautogui.readthedocs.io/en/latest/mouse.html", + "title": "Mouse Control Functions — PyAutoGUI 1.0.0 documentationpyautogui.readthedocs.io/en/latest/mouse.htmlPages similairesTraduire cette page", + "snippet": "The screen resolution size is returned by the size() function as a tuple of two integers. The current X and Y coordinates of the mouse cursor are returned by the ...", + "visible_link": "pyautogui.readthedocs.io/en/latest/mouse.html", + "date": "", + "rank": 92 + }, + { + "link": "https://www.lofree.co/products/maus-mouse", + "title": "Maus Touch Gesture enabled Mouse for Mac and Windows – Lofree ...https://www.lofree.co/products/maus-mouseEn cacheTraduire cette page", + "snippet": "Lofree Maus is a retro-inspired Bluetooth touch mouse with built-in gesture control for Mac & Windows, just like using your trackpad. The mouse buttons are ...", + "visible_link": "https://www.lofree.co/products/maus-mouse", + "date": "", + "rank": 93 + }, + { + "link": "https://dictionary.cambridge.org/dictionary/english/mouse", + "title": "MOUSE | meaning in the Cambridge English Dictionaryhttps://dictionary.cambridge.org/dictionary/english/mouseEn cacheTraduire cette page", + "snippet": "mouse definition: 1. a small mammal with short fur, a pointed face, and a long tail: 2. a small device that you move across a surface in order to move a cursor on ...", + "visible_link": "https://dictionary.cambridge.org/dictionary/english/mouse", + "date": "", + "rank": 94 + }, + { + "link": "https://metacpan.org/release/Mouse", + "title": "Mouse-v2.5.6 - Moose minus the antlers - metacpan.orghttps://metacpan.org/release/MouseEn cachePages similairesTraduire cette page", + "snippet": "Modules. Mouse - Moose minus the antlers; Mouse::Exporter - make an import() and unimport() just like Mouse.pm; Mouse::Meta::Attribute - The Mouse attribute ...", + "visible_link": "https://metacpan.org/release/Mouse", + "date": "", + "rank": 95 + }, + { + "link": "http://www.pbclibrary.org/mousing/mousercise.htm", + "title": "Mousing Around: Mousercise!www.pbclibrary.org/mousing/mousercise.htmEn cachePages similairesTraduire cette page", + "snippet": "A mousing exercise to help beginning computer users learn how to use a mouse.", + "visible_link": "www.pbclibrary.org/mousing/mousercise.htm", + "date": "", + "rank": 96 + }, + { + "link": "https://www.walmart.com/ip/6-Volt-Minnie-Mouse-Happy-Helpers-Scooter-with-Sidecar-Ride-On-by-Kid-Trax/113837398", + "title": "6-Volt Minnie Mouse Happy Helpers Scooter with Sidecar Ride-On by ...https://www.walmart.com › ... › Ride Ons › Ride On ToysEn cacheTraduire cette page", + "snippet": "Step aside Mickey Mouse, help is on the way! Kick playtime into gear with the 6-Volt Disney Minnie Mouse Happy Helpers Scooter with Sidecar Ride-On from ...", + "visible_link": "https://www.walmart.com › ... › Ride Ons › Ride On Toys", + "date": "", + "rank": 97 + }, + { + "link": "https://www.spiked-online.com/2019/06/11/mickey-mouse-degrees-selling-out-education/", + "title": "Mickey Mouse degrees: selling out education - spikedhttps://www.spiked-online.com/.../mickey-mouse-degrees-selling-o...En cacheTraduire cette page", + "snippet": "Il y a 20 heures - Mickey Mouse degrees: selling out education. Universities must stop promising career prospects over intellectual enrichment. Mickey Mouse ...", + "visible_link": "https://www.spiked-online.com/.../mickey-mouse-degrees-selling-o...", + "date": "Il y a 20 heures - ", + "rank": 98 + }, + { + "link": "https://www.uniqlo.com/us/en/ut-graphic-tees/mickey-art", + "title": "Mickey Mouse Graphic Design T-Shirts for Men & Women | UNIQLO UShttps://www.uniqlo.com/us/en/ut-graphic-tees/mickey-artEn cacheTraduire cette page", + "snippet": "Check out our Mickey Mouse graphic design tees for men and women. These unique shirts are as comfortable as they are creative. Order online now! UNIQLO ...", + "visible_link": "https://www.uniqlo.com/us/en/ut-graphic-tees/mickey-art", + "date": "", + "rank": 99 + } + ] + }, + "2": { + "time": "Tue, 11 Jun 2019 19:54:55 GMT", + "num_results": "Page 2 d'environ 1 160 000 000 résultats (0,61 secondes) ", + "no_results": false, + "effective_query": "", + "results": [ + { + "link": "https://www.youtube.com/watch?v=l70UhhNalqA", + "title": "Mouse Videos for Cats to Watch Cat TV - YouTubehttps://www.youtube.com/watch?v=l70UhhNalqATraduire cette page", + "snippet": "Mouse Videos for Cats to Watch Cat TV Video Produced by Paul Dinning - Wildlife in Cornwall Filmed in ...", + "visible_link": "https://www.youtube.com/watch?v=l70UhhNalqA", + "date": "", + "rank": 100 + }, + { + "link": "http://www.epicgear.com/en/technologies/types-of-mouse-grip", + "title": "Technology: Types Of Mouse Grip » EpicGearwww.epicgear.com/en/technologies/types-of-mouse-gripEn cacheTraduire cette page", + "snippet": "When it comes to choosing the right gaming mouse based on its shape, size, weight and any other of the obvious attributes, there has not been one mouse that ...", + "visible_link": "www.epicgear.com/en/technologies/types-of-mouse-grip", + "date": "", + "rank": 101 + }, + { + "link": "http://www.read.gov/aesop/007.html", + "title": "The Lion and the Mouse - Library of Congress Aesop Fableswww.read.gov/aesop/007.htmlEn cacheTraduire cette page", + "snippet": "A Lion lay asleep in the forest, his great head resting on his paws. A timid little Mouse came upon him unexpectedly, and in her fright and haste to get away, ran ...", + "visible_link": "www.read.gov/aesop/007.html", + "date": "", + "rank": 102 + }, + { + "link": "http://www.idph.state.il.us/envhealth/pchousemouse.htm", + "title": "House Mouse Prevention and Controlwww.idph.state.il.us/envhealth/pchousemouse.htmEn cachePages similairesTraduire cette page", + "snippet": "The house mouse (Mus musculus) is considered one of the most troublesome and economically important pests in the United States. House mice live and thrive ...", + "visible_link": "www.idph.state.il.us/envhealth/pchousemouse.htm", + "date": "", + "rank": 103 + }, + { + "link": "https://chrome.google.com/webstore/detail/mouse-dictionary/dnclbikcihnpjohihfcmmldgkjnebgnj", + "title": "Mouse Dictionary - Google Chromehttps://chrome.google.com/.../mouse.../dnclbikcihnpjohihfcmmldg...En cacheTraduire cette page", + "snippet": "25 avr. 2019 - Mouse Dictionary is a super fast dictionary for Google Chrome. Features: * Blazing fast * Detect phrases in text intelligently * You can import ...", + "visible_link": "https://chrome.google.com/.../mouse.../dnclbikcihnpjohihfcmmldg...", + "date": "25 avr. 2019 - ", + "rank": 104 + }, + { + "link": "https://www.dell.com/en-us/shop/mice/ar/6593", + "title": "Computer Mouse: Wireless and Bluetooth Mouse | Dell United Stateshttps://www.dell.com › United States › For Home › Accessories", + "snippet": "Explore a variety gaming, optical and bluetooth mice brought out by top brands such as Dell and Logitech. Shop now to avail free shipping.", + "visible_link": "https://www.dell.com › United States › For Home › Accessories", + "date": "", + "rank": 105 + }, + { + "link": "https://www.target.com/p/apple-trackpad-magic-mouse-2/-/A-13323857", + "title": "Apple Trackpad Magic Mouse 2 : Targethttps://www.target.com › ... › Mice & KeyboardsEn cacheTraduire cette page", + "snippet": "Mouse Speed: 1500 dpi. System Requirements: Bluetooth Enabled Computer. Operating System Compatibility: Mac OS X. Connectivity: No wired connection ...", + "visible_link": "https://www.target.com › ... › Mice & Keyboards", + "date": "", + "rank": 106 + }, + { + "link": "https://www.cnet.com/news/apples-ipados-reportedly-adds-mouse-support/", + "title": "Apple adds mouse support with iPadOS, reports say - CNEThttps://www.cnet.com/.../apples-ipados-reportedly-adds-mouse-sup...En cacheTraduire cette page", + "snippet": "3 juin 2019 - A video appearing to show a mouse working on an iPad was tweeted out by Steve Troughton-Smith, an app developer, on Monday afternoon.", + "visible_link": "https://www.cnet.com/.../apples-ipados-reportedly-adds-mouse-sup...", + "date": "3 juin 2019 - ", + "rank": 107 + }, + { + "link": "https://www.bluedesigns.com/products/mouse/", + "title": "Mouse - Bluehttps://www.bluedesigns.com/products/mouse/En cacheTraduire cette page", + "snippet": "Blue offers premium USB and XLR microphones, and audiophile headphones for recording, podcasting, gaming, streaming, YouTube, and more.", + "visible_link": "https://www.bluedesigns.com/products/mouse/", + "date": "", + "rank": 108 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/genome/guide/mouse/", + "title": "Mouse Genome - NCBIhttps://www.ncbi.nlm.nih.gov/genome/guide/mouse/Pages similairesTraduire cette page", + "snippet": "Mus musculus The laboratory mouse is a major model organism for basic mammalian biology, human disease, and genome evolution, and its genome has been ...", + "visible_link": "https://www.ncbi.nlm.nih.gov/genome/guide/mouse/", + "date": "", + "rank": 109 + }, + { + "link": "https://www.beatsbydre.com/collaborations/disney", + "title": "Disney - Beats by Drehttps://www.beatsbydre.com/collaborations/disneyEn cacheTraduire cette page", + "snippet": "We all start somewhere. For Beats it was in the studio. And for Disney, it was all started by a mouse. But the undeniable link between the two is music. Both Beats ...", + "visible_link": "https://www.beatsbydre.com/collaborations/disney", + "date": "", + "rank": 110 + }, + { + "link": "https://www.pcgamer.com/the-best-gaming-mouse/", + "title": "Best gaming mouse for 2019 | PC Gamerhttps://www.pcgamer.com/the-best-gaming-mouse/En cacheTraduire cette page", + "snippet": "15 mai 2019 - In an increasingly crowded market, picking out the best gaming mouse can be a bit of a slog (not unlike the challenge of isolating the best ...", + "visible_link": "https://www.pcgamer.com/the-best-gaming-mouse/", + "date": "15 mai 2019 - ", + "rank": 111 + }, + { + "link": "https://www.facebook.com/thedodosite/videos/guy-finds-a-mouse-in-his-car/2330370790521086/", + "title": "The Dodo - Guy Finds A Mouse In His Car | Facebookhttps://www.facebook.com/.../guy...mouse.../2330370790521086/Traduire cette page", + "snippet": "This guy just found a mouse in his car and he CAN'T get her out.", + "visible_link": "https://www.facebook.com/.../guy...mouse.../2330370790521086/", + "date": "", + "rank": 112 + }, + { + "link": "https://processing.org/reference/mouseClicked_.html", + "title": "mouseClicked() \\ Language (API) \\ Processing 3+https://processing.org/reference/mouseClicked_.htmlEn cachePages similairesTraduire cette page", + "snippet": "11 févr. 2019 - Click within the image to change // the value of the rectangle after // after the mouse has been clicked int value = 0; void draw() { fill(value); ...", + "visible_link": "https://processing.org/reference/mouseClicked_.html", + "date": "11 févr. 2019 - ", + "rank": 113 + }, + { + "link": "https://mashable.com/category/mouse/", + "title": "mouse - Mashablehttps://mashable.com/category/mouse/En cacheTraduire cette page", + "snippet": "The latest articles about mouse from Mashable, the media and tech company.", + "visible_link": "https://mashable.com/category/mouse/", + "date": "", + "rank": 114 + }, + { + "link": "https://www.bbc.co.uk/bbcthree/article/5f72cfe2-5778-4657-befc-be1552a0f794", + "title": "Killing Eve: The 'cat-and-mouse' couples we fell in love with before ...https://www.bbc.co.uk/.../5f72cfe2-5778-4657-befc-be1552a0f79...En cacheTraduire cette page", + "snippet": "Il y a 4 jours - The cat-and-mouse relationship which saw Eve travel the world hunting down her murderous nemesis - real name: Oksana Astankova - in the ...", + "visible_link": "https://www.bbc.co.uk/.../5f72cfe2-5778-4657-befc-be1552a0f79...", + "date": "Il y a 4 jours - ", + "rank": 115 + }, + { + "link": "https://www.digitaltrends.com/computing/best-ergonomic-mouse/", + "title": "The Best Ergonomic Mouse for 2019 | Digital Trendshttps://www.digitaltrends.com/computing/best-ergonomic-mouse/En cacheTraduire cette page", + "snippet": "For people who use computers all day, wrist pain can be a huge issue. One of the best ways to alleviate it for your dominant hand is to use a mouse that guides it ...", + "visible_link": "https://www.digitaltrends.com/computing/best-ergonomic-mouse/", + "date": "", + "rank": 116 + }, + { + "link": "https://www.reuters.com/article/us-people-dennis-day/remains-of-former-mickey-mouse-club-actor-found-in-oregon-idUSKCN1T8296", + "title": "Remains of former 'Mickey Mouse Club' actor found in Oregon - Reutershttps://www.reuters.com/.../remains-of-former-mickey-mouse-club...En cacheTraduire cette page", + "snippet": "Il y a 4 jours - The body of former actor Dennis Day, who was a member of popular 1950s television show \"The Mickey Mouse Club,\" has been identified in ...", + "visible_link": "https://www.reuters.com/.../remains-of-former-mickey-mouse-club...", + "date": "Il y a 4 jours - ", + "rank": 117 + }, + { + "link": "https://www.goodnewsnetwork.org/photographer-builds-log-cabins-for-mice/", + "title": "Photographer Builds Adorable Tiny Log Cabins in His Backyard to ...https://www.goodnewsnetwork.org › All News › Arts & LeisureEn cacheTraduire cette page", + "snippet": "Il y a 1 jour - “I then put some wire fencing around the fence so there was no way the cats could get to the mouse,” he added, “and we decided to name him ...", + "visible_link": "https://www.goodnewsnetwork.org › All News › Arts & Leisure", + "date": "Il y a 1 jour - ", + "rank": 118 + }, + { + "link": "http://mouse.latercera.com/", + "title": "Mouse | Cultura pop, tecnología y videojuegosmouse.latercera.com/En cachePages similairesTraduire cette page", + "snippet": "Lo mejor de la ciencia, tecnología, tendencias y cultura pop.", + "visible_link": "mouse.latercera.com/", + "date": "", + "rank": 119 + }, + { + "link": "http://www.dougengelbart.org/firsts/mouse.html", + "title": "Firsts: The Mouse - Doug Engelbart Institutewww.dougengelbart.org/firsts/mouse.htmlEn cachePages similairesTraduire cette page", + "snippet": "Who invented the mouse? Learn how Doug Engelbart invented the mouse in 1963. Learn why.", + "visible_link": "www.dougengelbart.org/firsts/mouse.html", + "date": "", + "rank": 120 + }, + { + "link": "https://www.nationalgeographic.com/science/2018/10/news-gene-editing-crispr-mice-stem-cells/", + "title": "Mouse pups born from same-sex parents: Get the factshttps://www.nationalgeographic.com/.../news-gene-editing-crispr-...En cacheTraduire cette page", + "snippet": "11 oct. 2018 - While this feat has been accomplished before with mouse moms, the new study marks the first time that pups from pairs of male mice were also ...", + "visible_link": "https://www.nationalgeographic.com/.../news-gene-editing-crispr-...", + "date": "11 oct. 2018 - ", + "rank": 121 + }, + { + "link": "https://khn.org/news/a-fountain-of-youth-pill-sure-if-youre-a-mouse/", + "title": "A 'Fountain Of Youth' Pill? Sure, If You're A Mouse. | Kaiser Health Newshttps://khn.org/.../a-fountain-of-youth-pill-sure-if-youre-a-mouse/En cacheTraduire cette page", + "snippet": "11 févr. 2019 - Other substances such as 17 alpha estradiol and the diabetes drug Acarbose have been shown to be just as effective — in mouse studies.", + "visible_link": "https://khn.org/.../a-fountain-of-youth-pill-sure-if-youre-a-mouse/", + "date": "11 févr. 2019 - ", + "rank": 122 + }, + { + "link": "https://github.com/typelevel/mouse", + "title": "typelevel/mouse: A small companion to cats - GitHubhttps://github.com/typelevel/mouseEn cacheTraduire cette page", + "snippet": "A small companion to cats. Contribute to typelevel/mouse development by creating an account on GitHub.", + "visible_link": "https://github.com/typelevel/mouse", + "date": "", + "rank": 123 + }, + { + "link": "https://www.fastcompany.com/90324660/how-disney-grew-its-3-billion-mickey-mouse-business-by-selling-to-adults", + "title": "The big business of selling Mickey Mouse to adults - Fast Companyhttps://www.fastcompany.com/.../how-disney-grew-its-3-billion-mi...En cacheTraduire cette page", + "snippet": "1 avr. 2019 - In March of this year, Gucci began selling a $4,500 purse in the shape of Mickey Mouse's head. Between the creature's round black ears is a ...", + "visible_link": "https://www.fastcompany.com/.../how-disney-grew-its-3-billion-mi...", + "date": "1 avr. 2019 - ", + "rank": 124 + }, + { + "link": "https://www.teveocr.com/mouse", + "title": "Mouse Gaming - teveocrhttps://www.teveocr.com/mouseEn cacheTraduire cette page", + "snippet": "Direccion: 25 este CCSS, san jose, Edificio maria cristina local 23. Computech Seoul SA. TEVEOCR.COM 2019. Desing by JEDP CORP 2019.", + "visible_link": "https://www.teveocr.com/mouse", + "date": "", + "rank": 125 + }, + { + "link": "https://www.livescience.com/28028-mice.html", + "title": "Mouse Facts: Habits, Habitat & Types of Mice - Live Sciencehttps://www.livescience.com › AnimalsEn cacheTraduire cette page", + "snippet": "26 juin 2014 - A mouse is a small rodent with a pointed nose, furry round body, large ears and a long, often hairless, tail. There are hundreds of types of mice, ...", + "visible_link": "https://www.livescience.com › Animals", + "date": "26 juin 2014 - ", + "rank": 126 + }, + { + "link": "https://www.hltv.org/forums/threads/2066835/good-mouse", + "title": "Forum thread: Good mouse | HLTV.orghttps://www.hltv.org/forums/threads/2066835/good-mouseEn cacheTraduire cette page", + "snippet": "ec1-a or ec1-b by zowie they feel on your hand like no mouse can and not in a contrived shite way like ninja's mouse. 2019-06-11 07:19. #11.", + "visible_link": "https://www.hltv.org/forums/threads/2066835/good-mouse", + "date": "", + "rank": 127 + }, + { + "link": "https://www.nasa.gov/vision/earth/technologies/taylor_more.html", + "title": "Birth of the Mouse - NASAhttps://www.nasa.gov/vision/earth/technologies/taylor_more.htmlEn cachePages similairesTraduire cette page", + "snippet": "We take the computer mouse for granted now, using it countless times a day to do work or homework, to pay bills or buy things, or just to poke around looking for ...", + "visible_link": "https://www.nasa.gov/vision/earth/technologies/taylor_more.html", + "date": "", + "rank": 128 + }, + { + "link": "https://www.pcgamesn.com/roccat/kain-120-aimo-gaming-mouse-review-performance", + "title": "Roccat Kain 120 AIMO gaming mouse review: lightweight, accurate ...https://www.pcgamesn.com/.../kain-120-aimo-gaming-mouse-revie...En cacheTraduire cette page", + "snippet": "Il y a 8 heures - It may not necessarily be revolutionary, but Roccat is targeting the perfect click with its new Titan Click mouse design.", + "visible_link": "https://www.pcgamesn.com/.../kain-120-aimo-gaming-mouse-revie...", + "date": "Il y a 8 heures - ", + "rank": 129 + }, + { + "link": "https://store.newtek.com/index.php/accessories/newtek-mouse.html", + "title": "Mouse - NewTek Online Storehttps://store.newtek.com/index.php/accessories/newtek-mouse.htmlTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://store.newtek.com/index.php/accessories/newtek-mouse.html", + "date": "", + "rank": 130 + }, + { + "link": "https://www.mathworks.com/matlabcentral/fileexchange/71812-mouse-de-camera/?s_tid=LandingPageTabfx", + "title": "Mouse de Camera - File Exchange - MATLAB Central - MathWorkshttps://www.mathworks.com/.../71812-mouse-de-camera/?s_tid...En cacheTraduire cette page", + "snippet": "Il y a 6 heures - MATLAB EXPO 2019 JAPAN Lightnig talk demo (Part2). A mouse sensor can use as a micro camera. The document was written in japanese, ...", + "visible_link": "https://www.mathworks.com/.../71812-mouse-de-camera/?s_tid...", + "date": "Il y a 6 heures - ", + "rank": 131 + }, + { + "link": "https://www.pcworld.com/article/3258833/hands-on-how-one-mouse-can-control-multiple-pcs-with-microsofts-mouse-without-borders-app.html", + "title": "Hands on: How one mouse can control multiple PCs with Microsoft's ...https://www.pcworld.com/.../hands-on-how-one-mouse-can-contro...En cacheTraduire cette page", + "snippet": "1 mars 2018 - Microsoft's free Mouse without Borders app lets your mouse and keyboard control multiple PCs. That's a capability that Logitech's excellent ...", + "visible_link": "https://www.pcworld.com/.../hands-on-how-one-mouse-can-contro...", + "date": "1 mars 2018 - ", + "rank": 132 + }, + { + "link": "https://www.sri.com/work/timeline-innovation/timeline.php?timeline=computing-digital#!&innovation=computer-mouse-interactive-computing", + "title": "Computer Mouse and Interactive Computing | SRI Internationalhttps://www.sri.com/work/timeline.../timeline.php?...mouse...En cachePages similairesTraduire cette page", + "snippet": "Development of the mouse began in the early 1960s by SRI's Douglas Engelbart, while he was exploring the interactions between humans and computers.", + "visible_link": "https://www.sri.com/work/timeline.../timeline.php?...mouse...", + "date": "", + "rank": 133 + }, + { + "link": "https://www.nexusmods.com/stardewvalley/mods/4018", + "title": "Hat Mouse House Makeover at Stardew Valley Nexus - Mods and ...https://www.nexusmods.com/stardewvalley/mods/4018En cacheTraduire cette page", + "snippet": "Il y a 17 heures - About this mod. Gives Hat Mouse a fancy new stone house and some friends to help mind the store. Also fixes a vanilla texture bug for those ...", + "visible_link": "https://www.nexusmods.com/stardewvalley/mods/4018", + "date": "Il y a 17 heures - ", + "rank": 134 + }, + { + "link": "https://www.addgene.org/pooled-library/zhang-mouse-gecko-v2/", + "title": "Zhang Lab - GeCKO v2 Mouse CRISPR Knockout Pooled ... - Addgenehttps://www.addgene.org/pooled-library/zhang-mouse-gecko-v2/En cachePages similairesTraduire cette page", + "snippet": "Mouse GeCKO v2 lentiviral CRISPR pooled library from the lab of Feng Zhang.", + "visible_link": "https://www.addgene.org/pooled-library/zhang-mouse-gecko-v2/", + "date": "", + "rank": 135 + }, + { + "link": "https://www.newsweek.com/tissue-surgeon-ear-mouse-human-organs-transplant-cell-phones-666082", + "title": "Exclusive: Whatever Happened to the Mouse with the Ear on Its Back?https://www.newsweek.com › ... › Mice › Reconstructive SurgeryEn cacheTraduire cette page", + "snippet": "16 sept. 2017 - You may have seen it in a textbook or on TV: a mouse with a human ear on its back. You might have thought that the mouse was genetically ...", + "visible_link": "https://www.newsweek.com › ... › Mice › Reconstructive Surgery", + "date": "16 sept. 2017 - ", + "rank": 136 + }, + { + "link": "http://www.jneurosci.org/content/early/2019/06/06/JNEUROSCI.2367-18.2019", + "title": "The role of the anion in salt (NaCl) detection by mouse taste buds ...www.jneurosci.org/content/early/.../JNEUROSCI.2367-18.2019Traduire cette page", + "snippet": "Il y a 5 jours - The role of the anion in salt (NaCl) detection by mouse taste buds. Jennifer K. Roebber, Stephen D. Roper and Nirupa Chaudhari. Journal of ...", + "visible_link": "www.jneurosci.org/content/early/.../JNEUROSCI.2367-18.2019", + "date": "Il y a 5 jours - ", + "rank": 137 + }, + { + "link": "https://www.pnas.org/content/116/10/4567", + "title": "Mouse and human urothelial cancer organoids: A tool for bladder ...https://www.pnas.org/content/116/10/4567Traduire cette page", + "snippet": "20 févr. 2019 - Here we present a long-term culture system of the normal mouse urothelium and an efficient culture system of human bladder cancer cells.", + "visible_link": "https://www.pnas.org/content/116/10/4567", + "date": "20 févr. 2019 - ", + "rank": 138 + }, + { + "link": "https://www.eurogamer.net/articles/digitalfoundry-2019-06-10-best-gaming-mouse-2019-7010", + "title": "Best gaming mouse 2019: Digital Foundry's picks for the best wired ...https://www.eurogamer.net › GuidesEn cacheTraduire cette page", + "snippet": "Il y a 1 jour - Finding the best gaming mouse is a challenge, as dozens of new models are released each year by the biggest brands - but I've been keeping ...", + "visible_link": "https://www.eurogamer.net › Guides", + "date": "Il y a 1 jour - ", + "rank": 139 + }, + { + "link": "https://books.google.com/books?id=3eC3CgAAQBAJ&pg=PA348&lpg=PA348&dq=mouse&source=bl&ots=bArHPzu6rL&sig=ACfU3U1z5NGUVr-9pT5bW4wVQsqenySnbQ&hl=fr&sa=X&ved=2ahUKEwj1r-rcmuLiAhWRKFAKHSc4Brg4ZBDoATAuegQIXxAB", + "title": "The Mouse In Animal Genetics And Breeding Researchhttps://books.google.com/books?isbn=1783260262Traduire cette page", + "snippet": "The Mouse Project Legacy The mouse genome project is a significant milestone in the genomic era and has already established an important research legacy.", + "visible_link": "https://books.google.com/books?isbn=1783260262", + "date": "", + "rank": 140 + }, + { + "link": "https://books.google.com/books?id=OboaDAAAQBAJ&pg=PA279&lpg=PA279&dq=mouse&source=bl&ots=bFCBn1oxzi&sig=ACfU3U1rHV29J_rhIZXHvKTafrGSOnoZwg&hl=fr&sa=X&ved=2ahUKEwj1r-rcmuLiAhWRKFAKHSc4Brg4ZBDoATAvegQIYBAB", + "title": "The Dwarf and Mouse Lemurs of Madagascar: Biology, Behavior and ...https://books.google.com/books?isbn=1316552780Traduire cette page", + "snippet": "Hibernation in Malagasy mouse lemurs as a strategy to counter environmental challenge. Naturwissenschaften 96:1221–1227. Lahann P. 2007. Feeding ...", + "visible_link": "https://books.google.com/books?isbn=1316552780", + "date": "", + "rank": 141 + }, + { + "link": "https://books.google.com/books?id=p43KAwAAQBAJ&pg=PA17&lpg=PA17&dq=mouse&source=bl&ots=Uhbe_PY6PG&sig=ACfU3U3qO3XDni2AyWUU_xlSGe65X_ydVA&hl=fr&sa=X&ved=2ahUKEwj1r-rcmuLiAhWRKFAKHSc4Brg4ZBDoATAwegQIXhAB", + "title": "Fireworks Fiasco: A Very Smelly Fourth of July (Rebekah, Mouse & RJ: ...https://books.google.com/books?id=p43KAwAAQBAJTraduire cette page", + "snippet": "Mouse a quick nod. In gym Mouse taped a note to a volleyball and bounced it in Amanda's direction. She caught it, read the note and sent the ball back with a ...", + "visible_link": "https://books.google.com/books?id=p43KAwAAQBAJ", + "date": "", + "rank": 142 + }, + { + "link": "https://books.google.com/books?id=QF50CgAAQBAJ&pg=PT8&lpg=PT8&dq=mouse&source=bl&ots=9cPMXbw6hU&sig=ACfU3U1IP4Y2h4m3xcJ2bxExE4IWmQheHw&hl=fr&sa=X&ved=2ahUKEwj1r-rcmuLiAhWRKFAKHSc4Brg4ZBDoATAxegQIXRAB", + "title": "Mouse and Dragon - Résultats Google Recherche de Livreshttps://books.google.com/books?isbn=1482852780Traduire cette page", + "snippet": "Mouse lived in a little house next to a river and grew potatoes for a living. Dragon moved in next door and began fishing in the river. Mouse thought Dragon was ...", + "visible_link": "https://books.google.com/books?isbn=1482852780", + "date": "", + "rank": 143 + }, + { + "link": "https://whatis.techtarget.com/definition/mouse", + "title": "What is mouse? - Definition from WhatIs.comhttps://whatis.techtarget.com/definition/mouseEn cacheTraduire cette page", + "snippet": "A mouse is a small device that a computer user pushes across a desk surface in order to point to a place on a display screen and to select one or more actions to ...", + "visible_link": "https://whatis.techtarget.com/definition/mouse", + "date": "", + "rank": 144 + }, + { + "link": "https://www.nytimes.com/2013/07/04/technology/douglas-c-engelbart-inventor-of-the-computer-mouse-dies-at-88.html", + "title": "Computer Visionary Who Invented the Mouse - The New York Timeshttps://www.nytimes.com/.../douglas-c-engelbart-inventor-of-the-c...Traduire cette page", + "snippet": "3 juil. 2013 - For the event, he sat on stage in front of a mouse, a keyboard and other controls and projected the computer display onto a 22-foot-high video ...", + "visible_link": "https://www.nytimes.com/.../douglas-c-engelbart-inventor-of-the-c...", + "date": "3 juil. 2013 - ", + "rank": 145 + }, + { + "link": "https://books.google.com/books?id=4jqpDQAAQBAJ&pg=PA564&lpg=PA564&dq=mouse&source=bl&ots=ns9O34VuuY&sig=ACfU3U0-Xoc9WWxsLWHGB5YFckkCmCa-zw&hl=fr&sa=X&ved=2ahUKEwj1r-rcmuLiAhWRKFAKHSc4Brg4ZBDoATA0egQIZBAB", + "title": "Morphological Mouse Phenotyping: Anatomy, Histology and Imaginghttps://books.google.com/books?isbn=0128128771Traduire cette page", + "snippet": "Genealogies of mouse inbred strains. Nat Genet. 2000; 24: 23-25. Paigen K. One hundred years of mouse genetics: An intellectual history. I. The classical period ...", + "visible_link": "https://books.google.com/books?isbn=0128128771", + "date": "", + "rank": 146 + }, + { + "link": "https://us.letgo.com/en/scl/minnesota/hennepin-county-2/plymouth/mouse", + "title": "Used and new mouse in Plymouth - letgohttps://us.letgo.com/en/scl/minnesota/hennepin-county-2/.../mouseEn cacheTraduire cette page", + "snippet": "Used and new mouse in Plymouth, Minnesota - letgo is the best place to buy and sell used and new mouse in Plymouth, Minnesota.", + "visible_link": "https://us.letgo.com/en/scl/minnesota/hennepin-county-2/.../mouse", + "date": "", + "rank": 147 + }, + { + "link": "https://us.letgo.com/en/scl/michigan/kent-county/wyoming/mouse", + "title": "Used and new mouse in Wyoming - letgohttps://us.letgo.com/en/scl/michigan/kent-county/.../mouseEn cacheTraduire cette page", + "snippet": "Used and new mouse in Wyoming, Michigan - letgo is the best place to buy and sell used and new mouse in Wyoming, Michigan.", + "visible_link": "https://us.letgo.com/en/scl/michigan/kent-county/.../mouse", + "date": "", + "rank": 148 + }, + { + "link": "https://www.bleepingcomputer.com/forums/t/699203/mouse-keyboard-monitor-not-working-after-power-surge/", + "title": "Mouse, keyboard, monitor not working after power surge - Windows ...https://www.bleepingcomputer.com/.../mouse-keyboard-monitor-n...En cacheTraduire cette page", + "snippet": "It clearly is on because I can see the lights on inside of it and hear it, though my mouse, monitor, and keyboard all do not work or light up.", + "visible_link": "https://www.bleepingcomputer.com/.../mouse-keyboard-monitor-n...", + "date": "", + "rank": 149 + }, + { + "link": "https://www.ozbargain.com.au/node/462990", + "title": "Range Rover Evoque Wireless Click Car Mouse (Official) $99.95 Now ...https://www.ozbargain.com.au/node/462990En cacheTraduire cette page", + "snippet": "Il y a 7 heures - Deal: Range Rover Evoque Wireless Click Car Mouse (Official) $99.95 Now Only for $59.95 with Free Shipping @ Quirksy.com.au, Store: ...", + "visible_link": "https://www.ozbargain.com.au/node/462990", + "date": "Il y a 7 heures - ", + "rank": 150 + }, + { + "link": "https://pypi.org/project/plover-mouse/", + "title": "plover-mouse · PyPIhttps://pypi.org/project/plover-mouse/En cacheTraduire cette page", + "snippet": "Il y a 6 heures - Commands. {PLOVER:mouse_move:x,y}: Move the mouse cursor relative to its current position. {PLOVER:mouse_position:x,y}: Move the ...", + "visible_link": "https://pypi.org/project/plover-mouse/", + "date": "Il y a 6 heures - ", + "rank": 151 + }, + { + "link": "http://www.slate.com/articles/health_and_science/the_mouse_trap/2011/11/lab_mice_are_they_limiting_our_understanding_of_human_disease_.html", + "title": "The Mouse Trapwww.slate.com/...mouse.../lab_mice_are_they_limiting_our_under...En cachePages similairesTraduire cette page", + "snippet": "16 nov. 2011 - It might well be the case that a mouse can be starved into good health—that a deprived and skinny brain is more robust than one that's well-fed.", + "visible_link": "www.slate.com/...mouse.../lab_mice_are_they_limiting_our_under...", + "date": "16 nov. 2011 - ", + "rank": 152 + }, + { + "link": "https://supreme.findlaw.com/legal-commentary/the-mouse-that-ate-the-public-domain.html", + "title": "The Mouse That Ate The Public Domain | FindLawhttps://supreme.findlaw.com/.../the-mouse-that-ate-the-public-dom...En cacheTraduire cette page", + "snippet": "5 mars 2002 - Read Legal Commentary: The Mouse That Ate The Public Domain at FindLaw.com.", + "visible_link": "https://supreme.findlaw.com/.../the-mouse-that-ate-the-public-dom...", + "date": "5 mars 2002 - ", + "rank": 153 + }, + { + "link": "https://www.kwt80.com/mouse", + "title": "kwt80 | Mouse - Al Kuwaitia Computershttps://www.kwt80.com/mouseEn cacheTraduire cette page", + "snippet": "Computer Store Pc Games Store kuwiat Al Kuwaitia Computers Email: info@kwt80.com araufpkg@hotmail.com araufpkg@gmail.com Contect No: 97889738.", + "visible_link": "https://www.kwt80.com/mouse", + "date": "", + "rank": 154 + }, + { + "link": "https://marcelzweedijk.nl/ddtn/neby.php?world=5&looping=176&nm618=razer-mouse-not-working", + "title": "Razer mouse not working - Marcel Zweedijkhttps://marcelzweedijk.nl/ddtn/neby.php?world=5...mouse...En cacheTraduire cette page", + "snippet": "Ummmm, its a USB mouse. The cursor was in the middle of the screen and it was invisible. Though, this article isn't about news related to Razer Company.", + "visible_link": "https://marcelzweedijk.nl/ddtn/neby.php?world=5...mouse...", + "date": "", + "rank": 155 + }, + { + "link": "http://www.agrinews-pubs.com/lifestyles/health/how-old-are-your-organs-salk-ucsd-mouse-study-finds/article_7adbb1b2-1a23-5a61-8884-a7f069a812b7.html", + "title": "How old are your organs? Salk, UCSD mouse study finds human ...www.agrinews-pubs.com/...mouse.../article_7adbb1b2-1a23-5a61-...Traduire cette page", + "snippet": "Il y a 1 jour - Female mice were fed chow containing the isotope, then mated with a male mouse. They were given the isotope-containing chow during their ...", + "visible_link": "www.agrinews-pubs.com/...mouse.../article_7adbb1b2-1a23-5a61-...", + "date": "Il y a 1 jour - ", + "rank": 156 + }, + { + "link": "https://community.teamviewer.com/t5/TeamViewer-General/SOLVED-Mouse-doesn-t-work-on-remote-machine/td-p/63843", + "title": "[SOLVED] Mouse doesn't work on remote machine - TeamViewer ...https://community.teamviewer.com/t5/...Mouse-doesn.../63843En cacheTraduire cette page", + "snippet": "I solved my problem: Open the Task Manager on remote machine (If you cannot open this window with mouse, you can do that, clicking in the - 63843.", + "visible_link": "https://community.teamviewer.com/t5/...Mouse-doesn.../63843", + "date": "", + "rank": 157 + }, + { + "link": "https://www.storyberries.com/fairy-tales-the-little-good-mouse-countess-daulnoy-fairytales/", + "title": "The Little Good Mouse | Fairy Tales | Bedtime Stories - Storyberrieshttps://www.storyberries.com/fairy-tales-the-little-good-mouse-cou...En cacheTraduire cette page", + "snippet": "Il y a 21 heures - A mouse helps protect a happy queen from a jealous king. Read the best fairy tales, bedtime stories, poems for kids and short stories for kids at ...", + "visible_link": "https://www.storyberries.com/fairy-tales-the-little-good-mouse-cou...", + "date": "Il y a 21 heures - ", + "rank": 158 + }, + { + "link": "https://forum.workfusion.com/t/mouse-click-by-image-doesnt-work/60676", + "title": "Mouse click by image doesn't work - RPA Express - WorkFusion Forumhttps://forum.workfusion.com/t/mouse-click-by-image.../60676En cacheTraduire cette page", + "snippet": "First, i can't open app by launch application so i am using keystrokes win+r and it works. Second, the window app has opened but i can't click ...", + "visible_link": "https://forum.workfusion.com/t/mouse-click-by-image.../60676", + "date": "", + "rank": 159 + }, + { + "link": "https://www.telegraphindia.com/india/wounded-tiger-versus-cat-and-mouse-delhi/cid/1692197", + "title": "Wounded tiger versus cat-and-mouse Delhi - Telegraph Indiahttps://www.telegraphindia.com/india/...tiger...mouse.../1692197En cacheTraduire cette page", + "snippet": "Il y a 19 heures - Wounded tiger versus cat-and-mouse Delhi. Mamata accuses the BJP of hatching a larger conspiracy to give her government a bad name and ...", + "visible_link": "https://www.telegraphindia.com/india/...tiger...mouse.../1692197", + "date": "Il y a 19 heures - ", + "rank": 160 + }, + { + "link": "https://www.kxnet.com/tag/mouse-river-players/", + "title": "mouse river players | KX NEWShttps://www.kxnet.com/tag/mouse-river-players/En cacheTraduire cette page", + "snippet": "The Latest News and Updates in brought to you by the team at KX NEWS:", + "visible_link": "https://www.kxnet.com/tag/mouse-river-players/", + "date": "", + "rank": 161 + }, + { + "link": "http://coemle.org/lhvq/3jc1.php?world=5&looping=176&nm362=mouse-events-javascript", + "title": "Mouse events javascriptcoemle.org/lhvq/3jc1.php?world=5&looping=176...mouse...En cacheTraduire cette page", + "snippet": "In JavaScript, your primary way of dealing with the mouse is through events. When an event occurs on a target element, e. Whenever the mouse moves away ...", + "visible_link": "coemle.org/lhvq/3jc1.php?world=5&looping=176...mouse...", + "date": "", + "rank": 162 + }, + { + "link": "https://www.mi.com/gaming-mouse/?cfrom=search", + "title": "小米游戏鼠标 - Mi.comhttps://www.mi.com/gaming-mouse/?cfrom=searchTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://www.mi.com/gaming-mouse/?cfrom=search", + "date": "", + "rank": 163 + }, + { + "link": "https://www.newyorker.com/magazine/2008/07/21/the-lion-and-the-mouse", + "title": "The Battle Over E. B. White's “Stuart Little” | The New Yorkerhttps://www.newyorker.com/magazine/2008/07/21/the-lion-and-the-mouse", + "snippet": "14 juil. 2008 - He had a pet mouse; he thought he looked a little mousy himself. In 1909, when he was nine, he won a prize for a poem about a mouse.", + "visible_link": "https://www.newyorker.com/magazine/2008/07/21/the-lion-and-the-mouse", + "date": "14 juil. 2008 - ", + "rank": 164 + }, + { + "link": "https://www.claires.com/us/disney-minnie-mouse-baseball-cap---pink-246573.html", + "title": "Disney® Minnie Mouse Baseball Cap - Pink | Claire's UShttps://www.claires.com/.../disney-minnie-mouse-baseball-cap---pi...En cacheTraduire cette page", + "snippet": "This velvety baseball cap has pom pom Minnie Mouse ears with a pink sequin bow in the middle! You can see Minnie's signature above the snap back closure.", + "visible_link": "https://www.claires.com/.../disney-minnie-mouse-baseball-cap---pi...", + "date": "", + "rank": 165 + }, + { + "link": "https://www.reddit.com/r/MouseReview/comments/bz451v/starting_an_indiegogo_for_my_mouse/", + "title": "Starting an Indiegogo for my mouse : MouseReview - Reddithttps://www.reddit.com/.../MouseReview/.../starting_an_indiegogo...En cacheTraduire cette page", + "snippet": "I designed and created a mouse based off of the g100s shape with slightly straighter sides, and different side button placement. I found the ...", + "visible_link": "https://www.reddit.com/.../MouseReview/.../starting_an_indiegogo...", + "date": "", + "rank": 166 + }, + { + "link": "https://www.mouse-jp.co.jp/", + "title": "BTOパソコン・PC通販ショップのマウスコンピューター【公式】https://www.mouse-jp.co.jp/En cacheTraduire cette page", + "snippet": "製品を見る. mouse ノートPC · mouse デスクトップPC · mouse ゲームPC · mouse クリエイターPC · mouse 法人向けPC · 製品を見る ...", + "visible_link": "https://www.mouse-jp.co.jp/", + "date": "", + "rank": 167 + }, + { + "link": "https://www.marthastewart.com/shop/merchant-41-burgundy-mouse-tail-cord-1-8-pa1711781601e9514a0268cb4f955e075.html", + "title": "Shopping Special: Burgundy Mouse Tail Cord - 1/8\" - Martha Stewarthttps://www.marthastewart.com/.../merchant-41-burgundy-mouse-t...En cacheTraduire cette page", + "snippet": "Use Burgundy Mouse Tail Cord to bring your creative ideas to completion! This thin, round cording features a sleek surface in deep, dark red color. Cut it to size ...", + "visible_link": "https://www.marthastewart.com/.../merchant-41-burgundy-mouse-t...", + "date": "", + "rank": 168 + }, + { + "link": "https://www.marthastewart.com/shop/merchant-41-navy-mouse-tail-cord-1-8-p5c88af554bc9126c8175a705afb2ca99.html", + "title": "Summer Shopping Special: Navy Mouse Tail Cord - 1/8\"https://www.marthastewart.com/.../merchant-41-navy-mouse-tail-c...En cacheTraduire cette page", + "snippet": "Use Navy Mouse Tail Cord to bring your creative ideas to completion! This thin, round cording features a sleek surface in a deep navy blue color. Cut it to size ...", + "visible_link": "https://www.marthastewart.com/.../merchant-41-navy-mouse-tail-c...", + "date": "", + "rank": 169 + }, + { + "link": "http://www.twitter.com/mouse", + "title": "Mouse - Twitterwww.twitter.com/mouseTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "www.twitter.com/mouse", + "date": "", + "rank": 170 + }, + { + "link": "https://www.biorxiv.org/content/early/2019/06/11/666511.full.pdf", + "title": "Sperm quality parameters are increased and asymmetric in ... - bioRxivhttps://www.biorxiv.org/content/early/2019/06/.../666511.full.pdfEn cacheTraduire cette page", + "snippet": "Il y a 5 heures - To explore the effect of hybridization on sperm quality. 24 we produced F1 hybrids from 29 wild derived strains of two house mouse subspecies, ...", + "visible_link": "https://www.biorxiv.org/content/early/2019/06/.../666511.full.pdf", + "date": "Il y a 5 heures - ", + "rank": 171 + }, + { + "link": "https://www.cisbio.com/dd/by-category/biomarkers?attr_1486=Mouse", + "title": "Mouse - Cisbiohttps://www.cisbio.com/dd/by-category/biomarkers?attr...MouseTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://www.cisbio.com/dd/by-category/biomarkers?attr...Mouse", + "date": "", + "rank": 172 + }, + { + "link": "http://www.vinohrady-vladar.sk/u7tl/gazh.php?world=5&looping=176&nm419=logitech-mouse-auto-scroll", + "title": "Logitech mouse auto scrollwww.vinohrady-vladar.sk/u7tl/gazh.php?world=5...mouse...En cacheTraduire cette page", + "snippet": "The Logitech G5 Laser Mouse SE features a 2000 dpi laser engine. This is particularly annoying when I'm trying to click on a field to enter data such as login info ...", + "visible_link": "www.vinohrady-vladar.sk/u7tl/gazh.php?world=5...mouse...", + "date": "", + "rank": 173 + }, + { + "link": "https://visegradinsight.eu/orbans-cat-and-mouse-game/", + "title": "Orbán's Cat and Mouse Game - Visegrad Insighthttps://visegradinsight.eu/orbans-cat-and-mouse-game/En cacheTraduire cette page", + "snippet": "Il y a 6 heures - The EU Commission should stop accepting symbolic compliance from the Hungarian government and enforce substantive agreements by ...", + "visible_link": "https://visegradinsight.eu/orbans-cat-and-mouse-game/", + "date": "Il y a 6 heures - ", + "rank": 174 + }, + { + "link": "https://genome.ucsc.edu/cgi-bin/hgGateway?db=mm10", + "title": "GRCm38/mm10 - UCSC Genome Browser - UC Santa Cruzhttps://genome.ucsc.edu/cgi-bin/hgGateway?db=mm10Pages similairesTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://genome.ucsc.edu/cgi-bin/hgGateway?db=mm10", + "date": "", + "rank": 175 + }, + { + "link": "https://neurosciencenews.com/pten-glioblastoma-brain-cancer-14201/", + "title": "Study finds macrophages' pathway to nurture PTEN-deficient ...https://neurosciencenews.com/pten-glioblastoma-brain-cancer-142...En cacheTraduire cette page", + "snippet": "Il y a 1 jour - LOX attracts macrophages which protect glioblastoma brain cancer cells and provide growth factor support for the tumor, a new mouse study ...", + "visible_link": "https://neurosciencenews.com/pten-glioblastoma-brain-cancer-142...", + "date": "Il y a 1 jour - ", + "rank": 176 + }, + { + "link": "https://www.cell.com/cell-reports/pdf/S2211-1247(19)30686-2.pdf", + "title": "Tumor Heterogeneity Underlies Differential Cisplatin ... - Cell Presshttps://www.cell.com/cell-reports/pdf/S2211-1247(19)30686-2.pdfTraduire cette page", + "snippet": "Il y a 2 heures - Tumor Heterogeneity Underlies Differential Cisplatin. Sensitivity in Mouse Models of Small-Cell Lung. Cancer. Graphical Abstract. Highlights d.", + "visible_link": "https://www.cell.com/cell-reports/pdf/S2211-1247(19)30686-2.pdf", + "date": "Il y a 2 heures - ", + "rank": 177 + }, + { + "link": "http://archive.macleans.ca/article/2019/7/1/fentanyl-at-the-click-of-a-mouse", + "title": "FENTANYL AT THE CLICK OF A MOUSE | Maclean's | JULY 2019archive.macleans.ca/article/2019/7/1/fentanyl-at-the-click-of-a-mouseEn cache", + "snippet": "1 juil. 2019 - FENTANYL AT THE CLICK OF A MOUSE. A former dealer illuminates the shadowy supply chain of a deadly drug. CLAIRE BROWNELL July 1 ...", + "visible_link": "archive.macleans.ca/article/2019/7/1/fentanyl-at-the-click-of-a-mouse", + "date": "1 juil. 2019 - ", + "rank": 178 + }, + { + "link": "https://gamingheadsetpros.com/collections/mouses", + "title": "Mouses - GamingHeadsetPros.comhttps://gamingheadsetpros.com/collections/mousesEn cacheTraduire cette page", + "snippet": "HUGE SALES ON ALL GAMING ACCESSORIES SHOP NOW accessories, clearance, combo, keyboard, mouse GamingHeadsetPros.com.", + "visible_link": "https://gamingheadsetpros.com/collections/mouses", + "date": "", + "rank": 179 + }, + { + "link": "https://inkbotdesign.com/best-mouse-for-designers/", + "title": "What is the Best Mouse for Web and Graphic Designers? - Inkbot Designhttps://inkbotdesign.com/best-mouse-for-designers/En cacheTraduire cette page", + "snippet": "Il y a 5 heures - This mouse was created to maximise productivity, and that's exactly what makes it the first preference of hundreds of designers out there.", + "visible_link": "https://inkbotdesign.com/best-mouse-for-designers/", + "date": "Il y a 5 heures - ", + "rank": 180 + }, + { + "link": "https://www.chrono24.com/rolex/1500-oyster-perpetual-date-mickey-mouse-b--p-sofort--id11439665.htm", + "title": "Rolex 1500 Oyster Perpetual Date\" Mickey Mouse\" B & P Sofort for ...https://www.chrono24.com › ... › Oyster Perpetual Date watchesEn cacheTraduire cette page", + "snippet": "Rolex Oyster Perpetual Date ad: $5706 Rolex 1500 Oyster Perpetual Date\" Mickey Mouse\" B & P Sofort Reference number 1500 Mickey Mouse Sofort verfügbar ...", + "visible_link": "https://www.chrono24.com › ... › Oyster Perpetual Date watches", + "date": "", + "rank": 181 + }, + { + "link": "https://www.e-katec.com.br/mouse", + "title": "mouse......https://www.e-katec.com.br/mouse", + "snippet": "Mouse Gamer, sem fio e USB e Mouse RGB.", + "visible_link": "https://www.e-katec.com.br/mouse", + "date": "", + "rank": 182 + }, + { + "link": "http://www.vishnyakov.net/", + "title": "mousewww.vishnyakov.net/En cacheTraduire cette page", + "snippet": "", + "visible_link": "www.vishnyakov.net/", + "date": "", + "rank": 183 + }, + { + "link": "http://www.computerpart.in/Mouse", + "title": "Mousewww.computerpart.in/MouseTraduire cette page", + "snippet": "Mouse. Mouse. Categories. Accessories (19) · Computer (0) · Computer_Cabinet (0) · CPU (0) · CPU_Fan (0) · Display_Card (0) · DVD Writer (3) · Hard Disk ...", + "visible_link": "www.computerpart.in/Mouse", + "date": "", + "rank": 184 + }, + { + "link": "http://www.chromajet.com.br/mouse.htm", + "title": "mouse - Chromajetwww.chromajet.com.br/mouse.htmTraduire cette page", + "snippet": "", + "visible_link": "www.chromajet.com.br/mouse.htm", + "date": "", + "rank": 185 + }, + { + "link": "http://ashfash.com/product-category/mouse/", + "title": "Mouse – ashfash.comashfash.com/product-category/mouse/En cacheTraduire cette page", + "snippet": "... Keyboard · Laptop · Laptops & Tablets · Macbook · mango juice · Mouse · Organic · Potato chips · Salads · Saw · Smart TV · Smartphone · Speaker · Tablets ...", + "visible_link": "ashfash.com/product-category/mouse/", + "date": "", + "rank": 186 + }, + { + "link": "https://gadgetmac.com/news?tag=mouse", + "title": "mouse - Gadgetmachttps://gadgetmac.com/news?tag=mouseTraduire cette page", + "snippet": "Aucune information n'est disponible pour cette page.Découvrir pourquoi", + "visible_link": "https://gadgetmac.com/news?tag=mouse", + "date": "", + "rank": 187 + }, + { + "link": "http://www.pcmouse.com/", + "title": "www.pcmouse.com/En cache", + "snippet": "", + "visible_link": "", + "date": "", + "rank": 188 + }, + { + "link": "http://www.h24mighty-mouse.com/", + "title": "www.h24mighty-mouse.comwww.h24mighty-mouse.com/Traduire cette page", + "snippet": "", + "visible_link": "www.h24mighty-mouse.com/", + "date": "", + "rank": 189 + }, + { + "link": "http://www.bother.de/", + "title": "Running Mousewww.bother.de/En cacheTraduire cette page", + "snippet": "Running Mouse.", + "visible_link": "www.bother.de/", + "date": "", + "rank": 190 + }, + { + "link": "http://www.ironmouse.com/", + "title": "Iron Mousewww.ironmouse.com/En cacheTraduire cette page", + "snippet": "", + "visible_link": "www.ironmouse.com/", + "date": "", + "rank": 191 + }, + { + "link": "http://pcgamingmousehouse.com/", + "title": "PC Gaming Mousepcgamingmousehouse.com/En cacheTraduire cette page", + "snippet": "", + "visible_link": "pcgamingmousehouse.com/", + "date": "", + "rank": 192 + }, + { + "link": "http://mouse.click/", + "title": "Mouse.clickmouse.click/En cacheTraduire cette page", + "snippet": "", + "visible_link": "mouse.click/", + "date": "", + "rank": 193 + }, + { + "link": "http://athiresortsgoa.com/5tgu/vhhl.php?world=5&looping=176&nm290=increase-mouse-speed-linux-mint", + "title": "Increase mouse speed linux mint - Athi resortathiresortsgoa.com/5tgu/vhhl.php?world=5...176...mouse...En cacheTraduire cette page", + "snippet": "Adjust the Mouse Speed or Touchpad Speed slider until the pointer motion is comfortable for you. Hyper-V bug that affects Linux VM networking-- New Hyper-V ...", + "visible_link": "athiresortsgoa.com/5tgu/vhhl.php?world=5...176...mouse...", + "date": "", + "rank": 194 + }, + { + "link": "http://tarifabaja.com/4hff/lf2f.php?world=5&looping=176&nm386=reinstall-logitech-mouse-driver", + "title": "Reinstall logitech mouse driver - Tarifa Bajatarifabaja.com/4hff/lf2f.php?world=5&looping...mouse...En cacheTraduire cette page", + "snippet": "But if the HID-compliant mouse not working on Windows 10 remains on your computer, maybe it is the HID-compliant mouse driver issues that cause Windows ...", + "visible_link": "tarifabaja.com/4hff/lf2f.php?world=5&looping...mouse...", + "date": "", + "rank": 195 + }, + { + "link": "http://andyzou.com/dzz3/bvlf.php?world=5&looping=176&nm994=mouse-not-working-phoenix-os", + "title": "Mouse not working phoenix os - Andy Zouandyzou.com/dzz3/bvlf.php?world=5&looping...mouse...En cacheTraduire cette page", + "snippet": "Attention [Solution] (Kinda) Mouse not working on some games (self. What Notebook Should I Buy? Not sure which laptop you should buy? It's a tough decision, ...", + "visible_link": "andyzou.com/dzz3/bvlf.php?world=5&looping...mouse...", + "date": "", + "rank": 196 + }, + { + "link": "https://dswa.nl/mouse-wiring-diagram.html", + "title": "Mouse Wiring Diagram | Wiring Diagramhttps://dswa.nl/mouse-wiring-diagram.htmlEn cacheTraduire cette page", + "snippet": "Mouse Wiring Diagram - the standard ps 2 mouse with logitech mouse defaults to 160 cpi and can be switched to 40 80 160 or 320 cpi with software microsoft ...", + "visible_link": "https://dswa.nl/mouse-wiring-diagram.html", + "date": "", + "rank": 197 + }, + { + "link": "http://www.kraftor.com/wp-content/uploads/2019/06/mqr8/hlb9.php?world=5&looping=176&nm994=draw-with-mouse-curve-wpf", + "title": "Draw with mouse curve wpf - Kraftorwww.kraftor.com/wp-content/.../06/.../hlb9.php?...mouse...En cacheTraduire cette page", + "snippet": "Let's handle this visual state using a mouse event. 03/30/2017; 8 minutes to read; Contributors. A common feature is that of dragging an object from one location ...", + "visible_link": "www.kraftor.com/wp-content/.../06/.../hlb9.php?...mouse...", + "date": "", + "rank": 198 + } + ] + } + } +} \ No newline at end of file diff --git a/package.json b/package.json index 5e67892..65233ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "se-scraper", - "version": "1.3.0", + "version": "1.3.1", "description": "A module using puppeteer to scrape several search engines such as Google, Duckduckgo, Bing or Baidu", "homepage": "https://scrapeulous.com/", "main": "index.js", diff --git a/run.js b/run.js index 7417752..dcedfdc 100644 --- a/run.js +++ b/run.js @@ -1,13 +1,12 @@ const se_scraper = require('./index.js'); -let config = { +// those options need to be provided on startup +// and cannot give to se-scraper on scrape() calls +let browser_config = { // the user agent to scrape with user_agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36', // if random_user_agent is set to True, a random user agent is chosen - random_user_agent: true, - // how long to sleep between requests. a random sleep interval within the range [a,b] - // is drawn before every request. empty string for no sleeping. - sleep_range: '', + random_user_agent: false, // whether to start the browser in headless mode headless: true, // whether debug information should be printed @@ -18,11 +17,6 @@ let config = { debug_level: 1, // specify flags passed to chrome here chrome_flags: [], - // path to output file, data will be stored in JSON - output_file: 'examples/results/baidu.json', - // whether to prevent images, css, fonts from being loaded - // will speed up scraping a great deal - block_assets: false, // path to js module that extends functionality // this module should export the functions: // get_browser, handle_metadata, close_browser @@ -37,35 +31,52 @@ let config = { // socks5://78.94.172.42:1080 // http://118.174.233.10:48400 proxy_file: '', - // check if headless chrome escapes common detection techniques - // this is a quick test and should be used for debugging - test_evasion: false, - apply_evasion_techniques: true, - // log ip address data - log_ip_address: false, - // log http headers - log_http_headers: false, puppeteer_cluster_config: { timeout: 10 * 60 * 1000, // max timeout set to 10 minutes monitor: false, concurrency: 1, // one scraper per tab - maxConcurrency: 1, // scrape with 2 tabs + maxConcurrency: 1, // scrape with 1 tab } }; (async () => { + // scrape config can change on each scrape() call let scrape_config = { // which search engine to scrape - search_engine: 'bing', + search_engine: 'google', // an array of keywords to scrape keywords: ['cat', 'mouse'], - // alternatively you can specify a keyword_file. this overwrites the keywords array - keyword_file: '', // the number of pages to scrape for each keyword num_pages: 2, + + // OPTIONAL PARAMS BELOW: + google_settings: { + gl: 'us', // The gl parameter determines the Google country to use for the query. + hl: 'fr', // The hl parameter determines the Google UI language to return results. + start: 0, // Determines the results offset to use, defaults to 0. + num: 100, // Determines the number of results to show, defaults to 10. Maximum is 100. + }, + // instead of keywords you can specify a keyword_file. this overwrites the keywords array + keyword_file: '', + // how long to sleep between requests. a random sleep interval within the range [a,b] + // is drawn before every request. empty string for no sleeping. + sleep_range: '', + // path to output file, data will be stored in JSON + output_file: 'examples/results/advanced.json', + // whether to prevent images, css, fonts from being loaded + // will speed up scraping a great deal + block_assets: false, + // check if headless chrome escapes common detection techniques + // this is a quick test and should be used for debugging + test_evasion: false, + apply_evasion_techniques: true, + // log ip address data + log_ip_address: false, + // log http headers + log_http_headers: false, }; - let results = await se_scraper.scrape(config, scrape_config); + let results = await se_scraper.scrape(browser_config, scrape_config); console.dir(results, {depth: null, colors: true}); })(); diff --git a/src/node_scraper.js b/src/node_scraper.js index edf68f4..ac097aa 100644 --- a/src/node_scraper.js +++ b/src/node_scraper.js @@ -251,7 +251,7 @@ class ScrapeManager { this.cluster.on('taskerror', (err, data) => { console.log(`Error while scraping ${data}: ${err.message}`); - console.log(err) + console.log(err); }); } @@ -261,9 +261,13 @@ class ScrapeManager { * Scrapes the keywords specified by the config. */ async scrape(scrape_config = {}) { - this.config.keywords = scrape_config.keywords; - this.config.num_pages = scrape_config.num_pages; - this.config.search_engine = scrape_config.search_engine; + + if (!scrape_config.keywords && !scrape_config.keyword_file) { + console.error('Either keywords or keyword_file must be supplied to scrape()') + return; + } + + Object.assign(this.config, scrape_config); var results = {}; var num_requests = 0; @@ -283,7 +287,7 @@ class ScrapeManager { // const page = await this.browser.newPage(); // this.scraper = getScraper(this.config.search_engine, { // config: this.config, - // context: context, + // context: {}, // pluggable: pluggable, // page: page, // }); @@ -382,14 +386,9 @@ class ScrapeManager { } return { - headers: { - 'Content-Type': 'text/json', - }, results: results, metadata: metadata || {}, - statusCode: 200 }; - } /* @@ -436,7 +435,6 @@ function parseEventData(config) { } - module.exports = { ScrapeManager: ScrapeManager, }; \ No newline at end of file diff --git a/test/test_amazon.js b/test/test_amazon.js index 4890778..496d5b7 100644 --- a/test/test_amazon.js +++ b/test/test_amazon.js @@ -30,8 +30,6 @@ async function normal_search_test() { // we test with a callback function to our handler function normal_search_test_case(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 2); for (let query in response.results) { @@ -113,8 +111,6 @@ async function no_results_test() { // we test with a callback function to our handler function test_case_no_results(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 1); results = response.results; diff --git a/test/test_baidu.js b/test/test_baidu.js index a78d7b8..3e9cba2 100644 --- a/test/test_baidu.js +++ b/test/test_baidu.js @@ -30,8 +30,6 @@ async function normal_search_test() { // we test with a callback function to our handler function normal_search_test_case(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 4); for (let query in response.results) { diff --git a/test/test_bing.js b/test/test_bing.js index bb9dd4c..8d0f7ce 100644 --- a/test/test_bing.js +++ b/test/test_bing.js @@ -35,8 +35,6 @@ async function normal_search_test() { // we test with a callback function to our handler function normal_search_test_case(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 6); for (let query in response.results) { @@ -113,8 +111,6 @@ async function no_results_test() { // we test with a callback function to our handler function test_case_no_results(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 1); results = response.results; @@ -164,8 +160,6 @@ async function effective_query_test() { // we test with a callback function to our handler function test_case_effective_query(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 1); results = response.results; diff --git a/test/test_duckduckgo.js b/test/test_duckduckgo.js index 4fb1308..2199d59 100644 --- a/test/test_duckduckgo.js +++ b/test/test_duckduckgo.js @@ -32,8 +32,6 @@ async function normal_search_test() { // we test with a callback function to our handler function normal_search_test_case(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 2); for (let query in response.results) { @@ -105,8 +103,6 @@ async function effective_query_test() { // we test with a callback function to our handler function test_case_effective_query(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 1); results = response.results; diff --git a/test/test_google.js b/test/test_google.js index 42bb834..6c6e371 100644 --- a/test/test_google.js +++ b/test/test_google.js @@ -32,8 +32,6 @@ async function normal_search_test() { // we test with a callback function to our handler function normal_search_test_case(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 6); for (let query in response.results) { @@ -108,8 +106,6 @@ async function no_results_test() { // we test with a callback function to our handler function test_case_no_results(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 1); results = response.results; @@ -159,8 +155,6 @@ async function effective_query_test() { // we test with a callback function to our handler function test_case_effective_query(response) { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 1); results = response.results; diff --git a/test/test_googleimage.js b/test/test_googleimage.js index 4004768..1e30d1e 100644 --- a/test/test_googleimage.js +++ b/test/test_googleimage.js @@ -34,8 +34,6 @@ function normal_image_search_test_case(err, response) { if (err) { console.error(err); } else { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 2); for (let query in response.results) { diff --git a/test/test_queryargs_google.js b/test/test_queryargs_google.js index b9f569f..cd4629b 100644 --- a/test/test_queryargs_google.js +++ b/test/test_queryargs_google.js @@ -35,8 +35,6 @@ function queryargs_search_test_case(err, response) { if (err) { console.error(err); } else { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); assert.equal(response.metadata.num_requests, 2); for (let query in response.results) { diff --git a/test/test_ticker_search.js b/test/test_ticker_search.js index 2d634ee..be19858 100644 --- a/test/test_ticker_search.js +++ b/test/test_ticker_search.js @@ -34,8 +34,6 @@ function reuters_search_test_case(err, response) { if (err) { console.error(err); } else { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); for (let query in response.results) { let total_rank = 1; @@ -103,8 +101,6 @@ function cnbc_search_test_case(err, response) { if (err) { console.error(err); } else { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); for (let query in response.results) { let total_rank = 1; @@ -170,8 +166,6 @@ function marketwatch_search_test_case(err, response) { if (err) { console.error(err); } else { - assert.equal(response.headers['Content-Type'], 'text/json', 'content type is not text/json'); - assert.equal(response.statusCode, 200, 'status code must be 200'); for (let query in response.results) { let total_rank = 1;