curl -H "Ocp-Apim-Subscription-Key: xxx" 'https://api.bing.microsoft.com/v7.0/search?q=swar+integer&count=20' | jq { "_type": "SearchResponse", "queryContext": { "originalQuery": "swar integer" }, "webPages": { "webSearchUrl": "https://www.bing.com/search?q=swar+integer", "totalEstimatedMatches": 862000, "value": [ { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.0", "name": "A SWAR Algorithm for Popcount - playing with pointers", "url": "https://www.playingwithpointers.com/blog/swar.html", "isFamilyFriendly": true, "displayUrl": "https://www.playingwithpointers.com/blog/swar.html", "snippet": "A SWAR Algorithm for Popcount. Mar 2, 2013. An interesting way to get the popcount, or the number of bits set in an integer is via a SWAR (SIMD Within A Register) algorithm. While its performance is very good (16 instructions when compiled with gcc -O3), why the algorithm works is somewhat opaque:", "dateLastCrawled": "2021-10-10T22:08:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.1", "name": "IP Cores - LEON SIMD-within-a-Register Arithmetic | daiteq", "url": "https://www.daiteq.com/en/products/swar", "isFamilyFriendly": true, "displayUrl": "https://www.daiteq.com/en/products/swar", "snippet": "The SWAR instruction extensions are implemented as a SWAR unit that is connected in parallel to the integer ALU in the LEON2 integer pipeline (iu.vhd). The SWAR unit contains one or more SWAR modules and an optional module with SWAR accumulators. The actual configuration of the SWAR unit can be selected by the user before LEON2 synthesis using ...", "dateLastCrawled": "2021-11-13T17:38:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.2", "name": "Technical Summary: SWAR Technology", "url": "http://aggregate.org/SWAR/over.html", "isFamilyFriendly": true, "displayUrl": "aggregate.org/SWAR/over.html", "snippet": "Some SWAR operations can be performed trivially using ordinary 32-bit integer operations, without concern for the fact that the operation is really intended to operate independently in parallel on these 8-bit fields. We call any such SWAR operation polymorphic, since the function is unaffected by the field types (sizes).", "dateLastCrawled": "2021-10-13T20:52:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.3", "name": "How to count the number of set bits in a 32-bit integer ...", "url": "https://newbedev.com/how-to-count-the-number-of-set-bits-in-a-32-bit-integer", "isFamilyFriendly": true, "displayUrl": "https://newbedev.com/how-to-count-the-number-of-set-bits-in-a-32-bit-integer", "snippet": "This bitwise-SWAR algorithm could parallelize to be done in multiple vector elements at once, instead of in a single integer register, for a speedup on CPUs with SIMD but no usable popcount instruction. (e.g. x86-64 code that has to run on any CPU, not just Nehalem or later.)", "dateLastCrawled": "2021-11-12T09:18:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.4", "name": "c++ - How does this algorithm to count the number of set ...", "url": "https://stackoverflow.com/questions/22081738/how-does-this-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer-work", "isFamilyFriendly": true, "displayUrl": "https://stackoverflow.com/questions/22081738", "snippet": "int SWAR(unsigned int i) { i = i - ((i >> 1) & 0x55555555); i = (i & 0x33333333) + ((i >> 2) & 0x33333333); return (((i + (i >> 4)) & 0x0F0F0F0F) * 0x01010101) >> 24; } I have seen this code that counts the number of bits equals to 1 in 32-bit integer, and I noticed that its performance is better than __builtin_popcount but I can't understand ...", "dateLastCrawled": "2021-09-26T08:17:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.5", "name": "Subtracting packed 8-bit integers in an 64-bit integer by ...", "url": "https://newbedev.com/subtracting-packed-8-bit-integers-in-an-64-bit-integer-by-1-in-parallel-swar-without-hardware-simd", "isFamilyFriendly": true, "displayUrl": "https://newbedev.com/subtracting-packed-8-bit-integers-in-an-64-bit-integer-by-1-in...", "snippet": "SWAR sub z = x - y z = ((x | H) - (y &~H)) ^ ((x ^~y) & H) with H defined as 0x8080808080808080U (i.e. the MSBs of each packed integer). For a decrement, y is 0x0101010101010101U. We know that y has all of its MSBs clear, so we can skip one of the mask steps (i.e. y & ~H is the same as y in our case). The calculation proceeds as follows:", "dateLastCrawled": "2021-11-06T03:26:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.6", "name": "Subtracting packed 8-bit integers in an 64-bit integer by ...", "url": "https://stackoverflow.com/questions/59637731/subtracting-packed-8-bit-integers-in-an-64-bit-integer-by-1-in-parallel-swar-wi", "isFamilyFriendly": true, "displayUrl": "https://stackoverflow.com/questions/59637731", "snippet": "Subtracting packed 8-bit integers in an 64-bit integer by 1 in parallel, SWAR without hardware SIMD. Ask Question Asked 1 year, 9 months ago. Active 1 year, 9 months ago. Viewed 5k times 79 14. If I have a 64-bit integer that I'm interpreting as an array of packed 8-bit integers with 8 elements. ...", "dateLastCrawled": "2021-10-20T14:12:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.7", "name": "GitHub - swar/Swar-Chia-Plot-Manager: This is a Cross ...", "url": "https://github.com/swar/Swar-Chia-Plot-Manager", "isFamilyFriendly": true, "displayUrl": "https://github.com/swar/Swar-Chia-Plot-Manager", "snippet": "Example: cd C:\\Users\\Swar\\Documents\\Swar-Chia-Plot-Manager; OPTIONAL: Create a virtual environment for Python. This is recommended if you use Python for other things. Create a new python environment: python -m venv venv. The second venv can be renamed to whatever you want. I prefer venv because it's a standard. Activate the virtual environment.", "dateLastCrawled": "2021-11-17T17:38:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.8", "name": "Swar VST - virtual Indian instruments", "url": "https://www.swarvst.com/", "isFamilyFriendly": true, "displayUrl": "https://www.swarvst.com", "snippet": "Swar VST is a brand of Swar Systems, the Indian music software company. They use our products. AR Rahman. Indian composer, singer and philanthropist. Winner of 2 Academy Awards, 2 Grammy Awards and countless others. Shankar Ehsaan Loy. Renowned trio of composers: Shankar Mahadevan, Ehsaan Noorani and Loy Mendonsa ...", "dateLastCrawled": "2021-11-17T20:20:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.9", "name": "Architectural Support for SWAR Text Processing with ...", "url": "https://www.cs.sfu.ca/~cameron/p337-cameron.pdf", "isFamilyFriendly": true, "displayUrl": "https://www.cs.sfu.ca/~cameron/p337-cameron.pdf", "snippet": "introduce a simple model and notation for SWAR operations in general and then present the four key features of IDISA. IDISA supports typical SWAR integer operations using a three-register model involving two input registers and one output register. Each register is of size N = 2K bits, for some integer K. Typical values of K for commodity proces-", "dateLastCrawled": "2021-09-13T01:59:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.10", "name": "The Aggregate Magic Algorithms", "url": "http://aggregate.ee.engr.uky.edu/MAGIC/", "isFamilyFriendly": true, "displayUrl": "aggregate.ee.engr.uky.edu/MAGIC", "snippet": "Given a binary integer value x, the floor of the base 2 log of that number efficiently can be computed by the application of two variable-precision SWAR algorithms. The first \"folds\" the upper bits into the lower bits to construct a bit vector with the same most significant 1 as x , but all 1's below it.", "dateLastCrawled": "2021-11-15T18:54:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.11", "name": "Fast Power of Two Equal or Larger than a 32-bit Integer ...", "url": "https://codingforspeed.com/fast-power-two-equal-large-than-32-bit-int/", "isFamilyFriendly": true, "displayUrl": "https://codingforspeed.com/fast-power-two-equal-large-than-32-bit-int", "snippet": "To optimise for 32-bit integer only, we can use the following technique. The first is to get the most-significant-bit (MSB) for a 32-bit integer. The MSB is the highest numbered bit (the left-most bit) and it can be computed using SWAR algorithm by iteratively folding upper bits into lower bits.", "dateLastCrawled": "2021-10-28T17:39:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.12", "name": "Linux Parallel Processing HOWTO: SIMD Within A Register (e ...", "url": "https://tldp.org/HOWTO/Parallel-Processing-HOWTO-4.html", "isFamilyFriendly": true, "displayUrl": "https://tldp.org/HOWTO/Parallel-Processing-HOWTO-4.html", "snippet": "Some SWAR operations can be performed trivially using ordinary 32-bit integer operations, without concern for the fact that the operation is really intended to operate independently in parallel on these 8-bit fields. We call any such SWAR operation polymorphic, since the function is unaffected by the field types (sizes).", "dateLastCrawled": "2021-08-16T04:33:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.13", "name": "CS 641 Lecture", "url": "https://www.cs.uaf.edu/2012/spring/cs641/lecture/02_14_SIMD.html", "isFamilyFriendly": true, "displayUrl": "https://www.cs.uaf.edu/2012/spring/cs641/lecture/02_14_SIMD.html", "snippet": "This use of bitwise operations is often called \"SIMD within a register (SWAR)\" or \"word-SIMD\"; see Sean Anderson's \"Bit Twiddling Hacks\" for a variety of amazing examples. Back in the 1980's, \"vector\" machines were quite popular in supercomputing centers.", "dateLastCrawled": "2021-09-18T18:28:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.14", "name": "[Solved] TypeError: String Indices Must be Integers ...", "url": "https://www.pythonpool.com/string-indices-must-be-integers-solved/", "isFamilyFriendly": true, "displayUrl": "https://www.pythonpool.com/string-indices-must-be-integers-solved", "snippet": "Explanation: Firstly, we have taken an input string as str. Str = Pythonpool. Then, we have taken a variable p in which we have passed the index value as an integer in the range of the string. The range of index of string starts from 0 and ends at the length of string- 1. At last, we have printed the output.", "dateLastCrawled": "2021-11-15T13:11:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.15", "name": "Manzanar National Historic Site (U.S. National Park Service)", "url": "https://www.nps.gov/manz/index.htm", "isFamilyFriendly": true, "displayUrl": "https://www.nps.gov/manz", "snippet": "Manzanar National Historic Site. P.O. Box 426. 5001 Highway 395. Independence, CA 93526. Phone: (760)878-2194 x3310. Need to speak with a ranger?", "dateLastCrawled": "2021-11-18T03:47:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.16", "name": "(PDF) Ionospheric variability around the time of Mammoth ...", "url": "https://www.researchgate.net/publication/215972504_Ionospheric_variability_around_the_time_of_Mammoth_Lakes_seismic_swarm_of_May_1980_in_California", "isFamilyFriendly": true, "displayUrl": "https://www.researchgate.net/publication/215972504_Ionospheric_variability_around_the...", "snippet": "On 20 September 1999 UT (21 September in local time, LT) a large earthquake Mw=7.7 struck central Taiwan near the small town of Chi-Chi. The greatest plasma frequency in the ionosphere, foF2 ...", "dateLastCrawled": "2021-09-13T16:18:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.17", "name": "The EQ Alert Guy: September 2014", "url": "https://earthquakealert.blogspot.com/2014/09/", "isFamilyFriendly": true, "displayUrl": "https://earthquakealert.blogspot.com/2014/09", "snippet": "Wednesday, September 3, 2014. 3.7 Richters Strikes One Mile From San Jacinto, California!!! Alaska Swarm Continues 25-45 Miles From FAIRBANKS!!! UPDATE: Here is the Felt Report from 5.1 Near Fairbanks on August 31, 2014 with around 200 Felt Reports from Fairbanks!!!", "dateLastCrawled": "2021-10-05T15:13:00.0000000Z", "language": "en", "isNavigational": false }, { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.18", "name": "Susan Warnick Phone, Address, & Email Records ...", "url": "https://www.instantcheckmate.com/people/susan-warnick/", "isFamilyFriendly": true, "displayUrl": "https://www.instantcheckmate.com/people/susan-warnick", "snippet": "Susan D Warnick Addresses. Click Here For Susan D Warnick's Current Address. 1440 Housel Craft Rd, Cortland, OH 44410-9512 5811 E Highway 22 # 57, Panama City, FL 32404-6412 3711 Youngstown Rd Se, Warren, OH 44484-2834 3388 Salt Springs Rd Apt B, Warren, OH 44481-9285 2334 Bristol Champion, Bristolville, OH 44402.", "dateLastCrawled": "2021-08-03T19:29:00.0000000Z", "language": "en", "isNavigational": false } ], "someResultsRemoved": true }, "images": { "id": "https://api.bing.microsoft.com/api/v7/#Images", "readLink": "https://api.bing.microsoft.com/api/v7/images/search?q=swar+integer&qpvt=swar+integer", "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&qpvt=swar+integer", "isFamilyFriendly": true, "value": [ { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=966181D870003AF45891B0E687C46F92DC720C43&FORM=IQFRBA", "name": "SWAR | Stern Faucets", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.n1dsv2wAYp2-JM-nOe_jYAHaE8&pid=Api", "datePublished": "2021-03-07T15:10:00.0000000Z", "contentUrl": "https://sternfaucets.us/wp-content/uploads/2018/11/IMG_4870-768x512.jpg", "hostPageUrl": "https://sternfaucets.us/product/swar/", "contentSize": "36816 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://sternfaucets.us/product/swar/", "width": 768, "height": 512, "thumbnail": { "width": 474, "height": 316 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=D832332895CB3A3DEE885E96D67B05B4CF194959&FORM=IQFRBA", "name": "Swar Raut", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.PxuG-EPEpu0Bj5IkzwaFFQHaLG&pid=Api", "datePublished": "2021-03-11T06:58:00.0000000Z", "contentUrl": "https://castyou-website.sgp1.digitaloceanspaces.com/2020/11/SWAR-26th-sept3755-scaled.jpg", "hostPageUrl": "https://castyou.in/swar-raut/", "contentSize": "274404 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://castyou.in/swar-raut/", "width": 1707, "height": 2560, "thumbnail": { "width": 474, "height": 710 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=77062CD4BCBEE7D51756EF683911E890C56FC086&FORM=IQFRBA", "name": "Write Swar And Vyanjan full - Brainly.in", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.a9LpneEkvC9PMLdu-u_FpgHaJ2&pid=Api", "datePublished": "2020-07-14T11:50:00.0000000Z", "contentUrl": "https://hi-static.z-dn.net/files/db2/673bfc5f206b925bc82319b1ba68704f.jpg", "hostPageUrl": "https://brainly.in/question/7677466", "contentSize": "107124 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://brainly.in/question/7677466", "width": 696, "height": 926, "thumbnail": { "width": 474, "height": 630 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=D832332895CB3A3DEE88DC72ACBF5DDA00004A0A&FORM=IQFRBA", "name": "Swar Raut", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.AfhoYrcC3WL-2FFNMIRI8gHaLG&pid=Api", "datePublished": "2021-03-11T06:58:00.0000000Z", "contentUrl": "https://castyou-website.sgp1.digitaloceanspaces.com/2020/11/SWAR-26th-sept3549-scaled.jpg", "hostPageUrl": "https://castyou.in/swar-raut/", "contentSize": "326963 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://castyou.in/swar-raut/", "width": 1707, "height": 2560, "thumbnail": { "width": 474, "height": 710 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=023E84163711E78F2A141D085A7021DDA752CC38&FORM=IQFRBA", "name": "Jumbo Marathi Mulakshare Chart for Kids (Marathi Alphabet and Numbers) | Perfect For ...", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.cepPfjxDRQ4Coqfw8iRY0gHaKq&pid=Api", "datePublished": "2020-11-23T01:50:00.0000000Z", "contentUrl": "https://images-na.ssl-images-amazon.com/images/I/81XEB1vkoGL.jpg", "hostPageUrl": "https://examinfos.com/jumbo-marathi-mulakshare-chart-for-kids-marathi-alphabet-and-numbers-perfect-for-homeschooling-kindergarten-and-nursery-children-39-25-x-27-25-inch-pdf-download/", "contentSize": "330317 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://examinfos.com/jumbo-marathi-mulakshare-chart-for-kids-marathi-alphabet-and-numbers-perfect-for-homeschooling-kindergarten-and-nursery-children-39-25-x-27-25-inch-pdf-download/", "width": 1440, "height": 2074, "thumbnail": { "width": 474, "height": 682 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=B86B203A34EBC6646EC60055237524AC056A789B&FORM=IQFRBA", "name": "Kinder Creative Swar Hindi Pictures with Knobs - Swar Hindi Pictures with Knobs . shop for ...", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.IiB7LF8B-reNt3pwBb4m8gHaFo&pid=Api", "datePublished": "2018-06-01T18:33:00.0000000Z", "contentUrl": "https://rukminim1.flixcart.com/image/1408/1408/puzzle/2/j/k/kinder-creative-13-swar-hindi-pictures-with-knobs-original-imadt6beqzqmzwkt.jpeg?q=90", "hostPageUrl": "https://www.flipkart.com/kinder-creative-swar-hindi-pictures-knobs/p/itmdt64twgpa3h9h", "contentSize": "304205 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://www.flipkart.com/kinder-creative-swar-hindi-pictures-knobs/p/itmdt64twgpa3h9h", "width": 1408, "height": 1070, "thumbnail": { "width": 474, "height": 360 }, "insightsMetadata": { "shoppingSourcesCount": 0, "recipeSourcesCount": 0 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=B8B97E7EA8E54DB633C75D4364D0F38BD6E25259&FORM=IQFRBA", "name": "UKG HINDI BOOK SWAR RACHNA: Buy UKG HINDI BOOK SWAR RACHNA Online at Low Price in India on Snapdeal", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.Su0561VOwsN3ynCTIMwajwHaIq&pid=Api", "datePublished": "2021-03-04T19:03:00.0000000Z", "contentUrl": "https://n2.sdlcdn.com/imgs/i/a/x/UKG-HINDI-BOOK-SWAR-RACHNA-SDL374537418-1-2415e.jpg", "hostPageUrl": "https://www.snapdeal.com/product/ukg-hindi-book-swar-rachna/656797697716", "contentSize": "103521 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://www.snapdeal.com/product/ukg-hindi-book-swar-rachna/656797697716", "width": 850, "height": 995, "thumbnail": { "width": 474, "height": 554 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=D832332895CB3A3DEE882459639829FD1DBAB724&FORM=IQFRBA", "name": "Swar Raut", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.Is8Rm-I1mRHPVUrIJa0b7gHaLG&pid=Api", "datePublished": "2021-03-11T06:58:00.0000000Z", "contentUrl": "https://castyou-website.sgp1.digitaloceanspaces.com/2020/11/SWAR-26th-sept3391-scaled.jpg", "hostPageUrl": "https://castyou.in/swar-raut/", "contentSize": "248963 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://castyou.in/swar-raut/", "width": 1707, "height": 2560, "thumbnail": { "width": 474, "height": 710 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=FDBC3F96E8C5B7CE15B901634AADA86C43E7CB2E&FORM=IQFRBA", "name": "My hindi website", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.69iGH2MkPvrKjKCwIhCDKAAAAA&pid=Api", "datePublished": "2021-02-18T04:17:00.0000000Z", "contentUrl": "https://www.tuitmob.com/hindi/images/annar.png", "hostPageUrl": "https://www.tuitmob.com/hindi/hindi_swar_a1.html", "contentSize": "34868 B", "encodingFormat": "png", "hostPageDisplayUrl": "https://www.tuitmob.com/hindi/hindi_swar_a1.html", "width": 400, "height": 400, "thumbnail": { "width": 400, "height": 400 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=D832332895CB3A3DEE88320CCADE5A38E3A52FB1&FORM=IQFRBA", "name": "Swar Raut", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.6WzueIUYO68WUb3GthVXPgHaE8&pid=Api", "datePublished": "2021-03-11T06:58:00.0000000Z", "contentUrl": "https://castyou-website.sgp1.digitaloceanspaces.com/2020/11/SWAR-26th-sept3400-scaled.jpg", "hostPageUrl": "https://castyou.in/swar-raut/", "contentSize": "206900 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://castyou.in/swar-raut/", "width": 2560, "height": 1707, "thumbnail": { "width": 474, "height": 316 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=74A5F78F4942AE6B56E558D0B7B2DFA6E69E973C&FORM=IQFRBA", "name": "Hindi Swar with Picture snd Wall Hanging Facility - Yes 2 Toys at /sets , Nashik | ID: 6931280397", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.5sND1LCrq8gVY66LZesCaQHaFj&pid=Api", "datePublished": "2021-04-16T19:45:00.0000000Z", "contentUrl": "https://3.imimg.com/data3/OF/OQ/MY-10272150/hindi-swar-with-picture-and-wall-hanging-facility.jpg", "hostPageUrl": "https://www.indiamart.com/proddetail/hindi-swar-with-picture-snd-wall-hanging-facility-6931280397.html", "contentSize": "55403 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://www.indiamart.com/proddetail/hindi-swar-with-picture-snd-wall-hanging-facility-6931280397.html", "width": 816, "height": 612, "thumbnail": { "width": 474, "height": 355 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=3110C5417DEEE61A6B11D068CAD881D9B84419D0&FORM=IQFRBA", "name": "Hindi Pathshala for Windows 8 and 8.1", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.-21DEHAybzt7ikhR_sl8GQHaEK&pid=Api", "datePublished": "2021-04-07T03:06:00.0000000Z", "contentUrl": "https://bestwindows8apps.s3.amazonaws.com/cache/05/5e/055eba628254ee8b4217fd710aa1536f.png", "hostPageUrl": "https://bestwindows8apps.net/app/hindi-pathshala/", "contentSize": "333138 B", "encodingFormat": "png", "hostPageDisplayUrl": "https://bestwindows8apps.net/app/hindi-pathshala/", "width": 711, "height": 400, "thumbnail": { "width": 474, "height": 266 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=E5F5F9419D3B8CE6517825C917DECF84CC953C23&FORM=IQFRBA", "name": "Hindi Vowel Chart FREE print at home! Varnamala. Swar! | Vowel chart, Hindi alphabet, Alphabet ...", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.QfYA2T8sSmJjNQJBlDk4GwHaJt&pid=Api", "datePublished": "2021-09-13T20:29:00.0000000Z", "contentUrl": "https://i.pinimg.com/originals/3c/7b/cb/3c7bcb71e397d5f6eb142714dffb2509.jpg", "hostPageUrl": "https://www.pinterest.com/pin/362187995007059436/", "contentSize": "466325 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://www.pinterest.com/pin/362187995007059436/", "width": 2229, "height": 2921, "thumbnail": { "width": 474, "height": 621 }, "insightsMetadata": { "shoppingSourcesCount": 0, "recipeSourcesCount": 0 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=FCD698A0F8F6A5F1B83B713E7B624524E57AFE7E&FORM=IQFRBA", "name": "Buy Learn and play (alphabet,number,swar,vyanjan and rhymes) VCD online - Hindi Education VCD ...", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.YNArXUI5np8Y8mhz9iMU1QHaJQ&pid=Api", "datePublished": "2020-11-27T03:54:00.0000000Z", "contentUrl": "http://www.webmallindia.com/img/education/hindi/xlearn_and_1301393737.jpg.pagespeed.ic.q_DaK7oa_q.jpg", "hostPageUrl": "http://www.webmallindia.com/buy-dvd-online-movie-learn-and-play-(alphabet,number,swar,vyanjan-and-rhymes)-p-21332.html", "contentSize": "25156 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "http://www.webmallindia.com/buy-dvd-online-movie-learn-and-play-(alphabet,number,swar,vyanjan-and-rhymes)-p-21332.html", "width": 300, "height": 375, "thumbnail": { "width": 474, "height": 592 }, "insightsMetadata": { "shoppingSourcesCount": 0, "recipeSourcesCount": 0 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=D832332895CB3A3DEE88951FE8660126C533D8E5&FORM=IQFRBA", "name": "Swar Raut", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.pqXL8GLD8F6k5_ZUg_1rKAHaLG&pid=Api", "datePublished": "2021-03-11T06:58:00.0000000Z", "contentUrl": "https://castyou-website.sgp1.digitaloceanspaces.com/2020/11/SWAR-26th-sept3660-scaled.jpg", "hostPageUrl": "https://castyou.in/swar-raut/", "contentSize": "258237 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://castyou.in/swar-raut/", "width": 1707, "height": 2560, "thumbnail": { "width": 474, "height": 710 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=966181D870003AF458917310E9D82394F431489F&FORM=IQFRBA", "name": "SWAR | Stern Faucets", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.WR28wg2dwOz2k9FQtha3lQHaHa&pid=Api", "datePublished": "2021-03-07T15:10:00.0000000Z", "contentUrl": "https://sternfaucets.us/wp-content/uploads/2018/11/SWAR.jpg", "hostPageUrl": "https://sternfaucets.us/product/swar/", "contentSize": "63713 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://sternfaucets.us/product/swar/", "width": 600, "height": 600, "thumbnail": { "width": 474, "height": 474 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=5CA490966F5B2140A8BEA11B50FD27FE7C28922C&FORM=IQFRBA", "name": "Hindi alphabets with pictures printable", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.Ch8T0MfTuobDPpwubXN1pAHaEK&pid=Api", "datePublished": "2021-03-02T07:31:00.0000000Z", "contentUrl": "https://i.ytimg.com/vi/Xrl0fPLxShA/maxresdefault.jpg", "hostPageUrl": "http://baking-studio.com/ct3l/hindi-alphabets-with-pictures-printable.html", "contentSize": "120427 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "http://baking-studio.com/ct3l/hindi-alphabets-with-pictures-printable.html", "width": 1280, "height": 720, "thumbnail": { "width": 474, "height": 266 }, "insightsMetadata": { "shoppingSourcesCount": 0, "recipeSourcesCount": 0 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=D832332895CB3A3DEE886E43634D07D485671C6F&FORM=IQFRBA", "name": "Swar Raut", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.HDdYxE8ZaJea-MJxEF3yUQHaLG&pid=Api", "datePublished": "2021-03-11T06:58:00.0000000Z", "contentUrl": "https://castyou-website.sgp1.digitaloceanspaces.com/2020/11/SWAR-26th-sept3352-scaled.jpg", "hostPageUrl": "https://castyou.in/swar-raut/", "contentSize": "255294 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://castyou.in/swar-raut/", "width": 1707, "height": 2560, "thumbnail": { "width": 474, "height": 710 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=F7357A6A725D10EAE241E02817D8C913093897BD&FORM=IQFRBA", "name": "Swar Abha Hindi Writing Book (Level C): Buy Swar Abha Hindi Writing Book (Level C) Online at Low ...", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.bZdT3tDnrrxdyd1LAjfivwHaIq&pid=Api", "datePublished": "2020-07-30T21:40:00.0000000Z", "contentUrl": "https://n4.sdlcdn.com/imgs/j/b/t/Swar-Abha-Hindi-Writing-Book-SDL753351911-1-40b1c.jpg", "hostPageUrl": "https://www.snapdeal.com/product/swar-abha-hindi-writing-book/674178011957", "contentSize": "110970 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https://www.snapdeal.com/product/swar-abha-hindi-writing-book/674178011957", "width": 850, "height": 995, "thumbnail": { "width": 474, "height": 554 } }, { "webSearchUrl": "https://www.bing.com/images/search?q=swar+integer&id=798064EBC84117401DB438211CD2FE6AC986B7CC&FORM=IQFRBA", "name": "Swar – Diswha Arts", "thumbnailUrl": "https://tse1.mm.bing.net/th?id=OIP.5HUc3ST6aRTiA3ORQUWb3QHaEK&pid=Api", "datePublished": "2021-04-17T16:30:00.0000000Z", "contentUrl": "https://secureservercdn.net/45.40.148.147/xbx.fe4.myftpupload.com/wp-content/uploads/2020/06/maxresdefault.jpg", "hostPageUrl": "http://diswha.com/swar/", "contentSize": "78313 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "http://diswha.com/swar/", "width": 1280, "height": 720, "thumbnail": { "width": 474, "height": 266 } } ] }, "rankingResponse": { "mainline": { "items": [ { "answerType": "WebPages", "resultIndex": 0, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.0" } }, { "answerType": "WebPages", "resultIndex": 1, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.1" } }, { "answerType": "WebPages", "resultIndex": 2, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.2" } }, { "answerType": "WebPages", "resultIndex": 3, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.3" } }, { "answerType": "Images", "value": { "id": "https://api.bing.microsoft.com/api/v7/#Images" } }, { "answerType": "WebPages", "resultIndex": 4, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.4" } }, { "answerType": "WebPages", "resultIndex": 5, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.5" } }, { "answerType": "WebPages", "resultIndex": 6, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.6" } }, { "answerType": "WebPages", "resultIndex": 7, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.7" } }, { "answerType": "WebPages", "resultIndex": 8, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.8" } }, { "answerType": "WebPages", "resultIndex": 9, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.9" } }, { "answerType": "WebPages", "resultIndex": 10, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.10" } }, { "answerType": "WebPages", "resultIndex": 11, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.11" } }, { "answerType": "WebPages", "resultIndex": 12, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.12" } }, { "answerType": "WebPages", "resultIndex": 13, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.13" } }, { "answerType": "WebPages", "resultIndex": 14, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.14" } }, { "answerType": "WebPages", "resultIndex": 15, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.15" } }, { "answerType": "WebPages", "resultIndex": 16, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.16" } }, { "answerType": "WebPages", "resultIndex": 17, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.17" } }, { "answerType": "WebPages", "resultIndex": 18, "value": { "id": "https://api.bing.microsoft.com/api/v7/#WebPages.18" } } ] } } }