Created
August 13, 2019 16:58
-
-
Save worksofliam/8395816dd934fe08cc7b6504f16bbf6d to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --https://www.ibm.com/support/knowledgecenter/ssw_ibm_i_73/sqlp/rbafyjsonconcepts.htm | |
| drop table barry.docs; | |
| create table barry.docs ( | |
| did integer not null GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1), | |
| dcontent blob, | |
| PRIMARY KEY (did) | |
| ); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff137b5a4c6c178545d", | |
| "index": 0, | |
| "balance": "$1,617.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Haley Parrish", | |
| "company": "MAXEMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 403-2141", | |
| "address": "954 Bond Street, Albany, Iowa, 9076", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff1c57f7f86e296bc61", | |
| "index": 1, | |
| "balance": "$3,818.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Buchanan Gibson", | |
| "company": "IMANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 571-2891", | |
| "address": "823 Gain Court, Kerby, Wyoming, 9235", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff1fe2d533fde15c26f", | |
| "index": 2, | |
| "balance": "$3,283.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Prince Camacho", | |
| "company": "FITCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 529-3756", | |
| "address": "681 Norman Avenue, Eagletown, Tennessee, 9861", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff1713a284a35f734c2", | |
| "index": 3, | |
| "balance": "$2,739.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deanna Harding", | |
| "company": "VINCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 478-3132", | |
| "address": "959 Irving Avenue, Whipholt, Massachusetts, 8034", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff1dad084baabf245d1", | |
| "index": 4, | |
| "balance": "$1,034.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sophia Stephenson", | |
| "company": "CONFERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 415-2800", | |
| "address": "784 Vanderveer Street, Finzel, Virginia, 3990", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff1e043936c88af0a0c", | |
| "index": 5, | |
| "balance": "$3,755.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Berger Pacheco", | |
| "company": "RONELON", | |
| "email": "[email protected]", | |
| "phone": "+1 (850) 542-3181", | |
| "address": "305 Lawrence Avenue, Urie, Hawaii, 9570", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52dff16520cdff316f49a0", | |
| "index": 6, | |
| "balance": "$3,731.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Myers Hurst", | |
| "company": "SECURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 564-2756", | |
| "address": "802 Reeve Place, Rockingham, Alaska, 1445", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e31d16c56ec4b610752d", | |
| "index": 7, | |
| "balance": "$2,264.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clare Brooks", | |
| "company": "DAYCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 556-2596", | |
| "address": "336 Jodie Court, Faywood, Rhode Island, 1230", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e31da3f4ded68e342e06", | |
| "index": 8, | |
| "balance": "$1,486.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Puckett Bruce", | |
| "company": "ZENCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 488-2252", | |
| "address": "819 Alice Court, Wiscon, Kentucky, 1858", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e31d4715371fc0cff4a0", | |
| "index": 9, | |
| "balance": "$1,510.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeannie Figueroa", | |
| "company": "MAGNEATO", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 579-2308", | |
| "address": "158 Grimes Road, Edgewater, Pennsylvania, 8539", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e31d4ce61550f76caacc", | |
| "index": 10, | |
| "balance": "$2,111.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sutton Clay", | |
| "company": "CAXT", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 574-2422", | |
| "address": "471 Sedgwick Place, Evergreen, Arkansas, 4085", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e31db089d138d02aaff4", | |
| "index": 11, | |
| "balance": "$1,089.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shawn Monroe", | |
| "company": "MOBILDATA", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 598-3033", | |
| "address": "633 Harman Street, Chumuckla, Indiana, 7013", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e58484d495bb48655fa5", | |
| "index": 12, | |
| "balance": "$1,622.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Opal Fulton", | |
| "company": "ECRAZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 492-2746", | |
| "address": "459 Billings Place, Kersey, Alabama, 2439", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e5841ab37eb6d6d5a7a1", | |
| "index": 13, | |
| "balance": "$1,423.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Berg Walter", | |
| "company": "ZILLACON", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 540-2873", | |
| "address": "147 Olive Street, Kingstowne, Nebraska, 6315", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e58444c637c9998160ea", | |
| "index": 14, | |
| "balance": "$3,574.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bartlett Alford", | |
| "company": "NEWCUBE", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 530-2612", | |
| "address": "780 Crown Street, Thornport, New Hampshire, 769", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e58464dced675a6b3296", | |
| "index": 15, | |
| "balance": "$2,518.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leticia Chang", | |
| "company": "MOTOVATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 406-3791", | |
| "address": "764 Orange Street, Yorklyn, Iowa, 3322", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e5842b90b39dc8c71bbc", | |
| "index": 16, | |
| "balance": "$3,986.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fulton Lewis", | |
| "company": "SUSTENZA", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 460-2465", | |
| "address": "790 Jamison Lane, Calverton, Palau, 5164", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e584cdaa4254465420cb", | |
| "index": 17, | |
| "balance": "$2,954.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holmes Schroeder", | |
| "company": "BLEENDOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 542-3900", | |
| "address": "382 Brighton Court, Lowgap, Montana, 9113", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646a6939095c4d2992", | |
| "index": 18, | |
| "balance": "$2,338.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cassie Weaver", | |
| "company": "EXTRAGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 416-2031", | |
| "address": "738 Harman Street, Logan, Virgin Islands, 7845", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d7ca9f32826c2b57", | |
| "index": 19, | |
| "balance": "$2,828.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hampton Jimenez", | |
| "company": "EARWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 568-2070", | |
| "address": "763 Crown Street, Turah, Hawaii, 705", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643ddbaf926d8a120f", | |
| "index": 20, | |
| "balance": "$2,287.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beck Mccarty", | |
| "company": "POLARIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 434-2667", | |
| "address": "584 Dorset Street, Nicholson, Maine, 3633", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640fd32a33b43db16e", | |
| "index": 21, | |
| "balance": "$3,026.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lee Dean", | |
| "company": "QUARMONY", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 561-3149", | |
| "address": "431 Wakeman Place, Ronco, Federated States Of Micronesia, 253", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645017382c5cb60bf5", | |
| "index": 22, | |
| "balance": "$2,890.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bullock Buckner", | |
| "company": "RAMJOB", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 451-3461", | |
| "address": "883 Veterans Avenue, Utting, Northern Mariana Islands, 6742", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f1d45149d76070e0", | |
| "index": 23, | |
| "balance": "$1,845.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deidre Wallace", | |
| "company": "PROSELY", | |
| "email": "[email protected]", | |
| "phone": "+1 (924) 537-3559", | |
| "address": "411 Dahill Road, Cataract, Pennsylvania, 721", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664de133c45a1263d9e", | |
| "index": 24, | |
| "balance": "$3,466.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stacie Conner", | |
| "company": "EDECINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 423-3708", | |
| "address": "275 Trucklemans Lane, Southmont, Oregon, 1755", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a3ec1a10ccdb59db", | |
| "index": 25, | |
| "balance": "$3,867.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bonnie Bell", | |
| "company": "MOMENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 478-3486", | |
| "address": "342 Remsen Street, Allamuchy, West Virginia, 6181", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645a64f1b72db3cf0b", | |
| "index": 26, | |
| "balance": "$2,813.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilson Shaw", | |
| "company": "GROK", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 440-3642", | |
| "address": "549 Llama Court, Ona, Nebraska, 358", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d2e351258ebbb18e", | |
| "index": 27, | |
| "balance": "$1,159.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frost Goodman", | |
| "company": "ROBOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 504-3034", | |
| "address": "294 Drew Street, Brenton, New Hampshire, 3042", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647e4166408c7215da", | |
| "index": 28, | |
| "balance": "$1,855.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nixon Hardy", | |
| "company": "MAGNINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 567-2897", | |
| "address": "586 Hampton Place, Derwood, Kentucky, 7879", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664931a133230a868c0", | |
| "index": 29, | |
| "balance": "$1,079.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosie Becker", | |
| "company": "JASPER", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 518-2376", | |
| "address": "591 Bokee Court, Leland, New Mexico, 7540", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664571f69de2043f6e0", | |
| "index": 30, | |
| "balance": "$1,141.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pratt Whitaker", | |
| "company": "PYRAMI", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 500-2859", | |
| "address": "404 Withers Street, Foxworth, North Dakota, 2265", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664759be23451942cd5", | |
| "index": 31, | |
| "balance": "$2,194.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mercado Henry", | |
| "company": "ANDRYX", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 567-3998", | |
| "address": "963 Dooley Street, Wescosville, Kansas, 6172", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646577c1088bc6c0ff", | |
| "index": 32, | |
| "balance": "$1,205.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Henry Taylor", | |
| "company": "MANGELICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (804) 434-2313", | |
| "address": "264 Highland Avenue, Highland, Marshall Islands, 8393", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66458422a40793bf94a", | |
| "index": 33, | |
| "balance": "$1,436.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marcia Huffman", | |
| "company": "MAROPTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 545-3837", | |
| "address": "504 Terrace Place, Elliston, South Dakota, 1337", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646fa6d20b32f45e6d", | |
| "index": 34, | |
| "balance": "$3,027.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Keisha Gross", | |
| "company": "COMSTAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 529-2322", | |
| "address": "837 Seigel Street, Roland, Wisconsin, 5744", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640e47963f83602b68", | |
| "index": 35, | |
| "balance": "$2,785.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ball Houston", | |
| "company": "RETROTEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 557-2117", | |
| "address": "985 Hope Street, Hiwasse, Idaho, 7037", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664df8283da2e4176f2", | |
| "index": 36, | |
| "balance": "$3,101.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ruth Cannon", | |
| "company": "MULTIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 481-3115", | |
| "address": "186 Hegeman Avenue, Klagetoh, Colorado, 6591", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648cd37ed0880e37fe", | |
| "index": 37, | |
| "balance": "$2,549.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosetta Meadows", | |
| "company": "CEPRENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 517-3364", | |
| "address": "619 Rock Street, Evergreen, Illinois, 7159", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640c9b994e9ac9d121", | |
| "index": 38, | |
| "balance": "$2,861.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gilda White", | |
| "company": "AVENETRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 413-3622", | |
| "address": "577 Ross Street, Courtland, New York, 6411", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640b19c8b89effbcad", | |
| "index": 39, | |
| "balance": "$3,968.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Murray Cohen", | |
| "company": "VIDTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 536-3191", | |
| "address": "570 Hoyt Street, Hardyville, Nevada, 2793", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66430e9e2a295b798f8", | |
| "index": 40, | |
| "balance": "$3,486.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morton Rivers", | |
| "company": "PRINTSPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 498-3267", | |
| "address": "725 Malbone Street, Coinjock, Palau, 6581", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642d09e64d382da72b", | |
| "index": 41, | |
| "balance": "$1,361.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wooten Cash", | |
| "company": "COMVEY", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 509-3828", | |
| "address": "615 Congress Street, Edmund, Tennessee, 8682", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66412f7f11273359b7d", | |
| "index": 42, | |
| "balance": "$2,246.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bonner Black", | |
| "company": "BLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 553-3031", | |
| "address": "156 Duryea Court, Charco, Montana, 3465", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664123b3c96f52548f6", | |
| "index": 43, | |
| "balance": "$1,070.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Colleen Carpenter", | |
| "company": "SPACEWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 452-2144", | |
| "address": "483 Madison Street, Lisco, Arizona, 8336", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ce5f627a21428a9b", | |
| "index": 44, | |
| "balance": "$2,376.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Buckley Herman", | |
| "company": "VORTEXACO", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 579-3494", | |
| "address": "828 Ocean Court, Marion, North Carolina, 2324", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641bcf9ab7b3c0078d", | |
| "index": 45, | |
| "balance": "$2,489.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Branch Estrada", | |
| "company": "BIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 409-2548", | |
| "address": "355 Java Street, Ezel, Rhode Island, 6448", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c8466d9afc6322aa", | |
| "index": 46, | |
| "balance": "$2,263.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dale Wheeler", | |
| "company": "SPORTAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 559-2009", | |
| "address": "719 Lee Avenue, Sterling, Ohio, 7232", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66489f66f33845ac5bf", | |
| "index": 47, | |
| "balance": "$3,701.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Scott Shields", | |
| "company": "WATERBABY", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 570-3444", | |
| "address": "311 Blake Avenue, Dawn, Guam, 3777", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b7c79fcaf7f09e0d", | |
| "index": 48, | |
| "balance": "$2,184.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Curtis Boyd", | |
| "company": "COSMOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 581-3571", | |
| "address": "992 Langham Street, Cobbtown, Louisiana, 4276", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642f20100f91977250", | |
| "index": 49, | |
| "balance": "$1,982.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moreno Baldwin", | |
| "company": "PETIGEMS", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 510-3771", | |
| "address": "929 Foster Avenue, Fillmore, Utah, 9574", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643f7803f818be1487", | |
| "index": 50, | |
| "balance": "$1,422.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Austin Zamora", | |
| "company": "FUTURIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 432-2471", | |
| "address": "495 Roosevelt Place, Ola, Vermont, 5901", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f3e3f02a1543482a", | |
| "index": 51, | |
| "balance": "$2,068.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kramer Everett", | |
| "company": "ZIDOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 476-2048", | |
| "address": "629 Jackson Court, Crenshaw, New Jersey, 7557", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642d234d1840f4a08e", | |
| "index": 52, | |
| "balance": "$1,676.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morin Santiago", | |
| "company": "ZILLACTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 595-2915", | |
| "address": "498 Rost Place, Summertown, Washington, 3701", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646cb786cc1401ab99", | |
| "index": 53, | |
| "balance": "$1,652.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carole Leblanc", | |
| "company": "MAXEMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 497-3138", | |
| "address": "931 Desmond Court, Rose, California, 1340", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646a8f2c48cf9f0f59", | |
| "index": 54, | |
| "balance": "$3,836.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcdonald Alston", | |
| "company": "NIKUDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 534-2685", | |
| "address": "458 Knapp Street, Salunga, Arkansas, 3097", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66478446f0946f86c06", | |
| "index": 55, | |
| "balance": "$2,453.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alvarez Larsen", | |
| "company": "GEEKOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 476-2096", | |
| "address": "617 Colonial Court, Osage, Iowa, 8955", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66429c26477caf3580f", | |
| "index": 56, | |
| "balance": "$3,103.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cummings Mayo", | |
| "company": "QABOOS", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 570-3762", | |
| "address": "195 Williams Avenue, Yonah, Minnesota, 4310", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cec718d2d3d7148b", | |
| "index": 57, | |
| "balance": "$3,555.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jimmie Cochran", | |
| "company": "NEUROCELL", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 540-2180", | |
| "address": "283 Windsor Place, Nanafalia, Oklahoma, 5922", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eaf3d799f2795196", | |
| "index": 58, | |
| "balance": "$1,761.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kaufman Love", | |
| "company": "ZAJ", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 473-3931", | |
| "address": "605 Tillary Street, Madrid, Florida, 4684", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649d63e5bcd6c26433", | |
| "index": 59, | |
| "balance": "$3,666.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Karyn Ruiz", | |
| "company": "ENERSAVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (951) 583-2375", | |
| "address": "727 Gardner Avenue, Stouchsburg, District Of Columbia, 1079", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664aaf1ee35c3b3113b", | |
| "index": 60, | |
| "balance": "$2,666.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorrie Stanton", | |
| "company": "LIQUIDOC", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 536-3885", | |
| "address": "874 Pitkin Avenue, Garfield, Mississippi, 7622", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ba58b09c19120594", | |
| "index": 61, | |
| "balance": "$3,466.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pugh Stokes", | |
| "company": "HONOTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 515-2377", | |
| "address": "730 Noll Street, Bancroft, Missouri, 4225", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664bb03ea5f85a7771b", | |
| "index": 62, | |
| "balance": "$2,685.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Andrea Abbott", | |
| "company": "PETICULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 426-2194", | |
| "address": "746 Chester Avenue, Dorneyville, Massachusetts, 7049", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664bcd7984062daf88e", | |
| "index": 63, | |
| "balance": "$2,963.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kathleen Bentley", | |
| "company": "EMTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 556-2684", | |
| "address": "995 Arkansas Drive, Riceville, Texas, 3375", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fa90ebe911cb069c", | |
| "index": 64, | |
| "balance": "$3,827.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ratliff Norris", | |
| "company": "GYNK", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 478-3745", | |
| "address": "146 Oak Street, Baker, Georgia, 2554", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66412d4df2ec99b5310", | |
| "index": 65, | |
| "balance": "$2,435.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Andrews Rollins", | |
| "company": "SINGAVERA", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 424-3336", | |
| "address": "659 Bushwick Avenue, Matthews, American Samoa, 5480", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642f0add8ab4289afb", | |
| "index": 66, | |
| "balance": "$1,052.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francine Cole", | |
| "company": "RECRISYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 548-2068", | |
| "address": "819 Vermont Court, Swartzville, Indiana, 1625", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641859c4939d2e9edd", | |
| "index": 67, | |
| "balance": "$1,775.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Macias Rosario", | |
| "company": "DYMI", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 425-2612", | |
| "address": "878 Dwight Street, Tetherow, Delaware, 8909", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b52491b7134c4d19", | |
| "index": 68, | |
| "balance": "$3,701.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "James Graves", | |
| "company": "GEEKETRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 440-3199", | |
| "address": "529 Garnet Street, Cade, Puerto Rico, 1803", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66438a27d12140a2b11", | |
| "index": 69, | |
| "balance": "$3,946.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosella Murphy", | |
| "company": "KRAGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 497-3761", | |
| "address": "306 Engert Avenue, Frizzleburg, Connecticut, 6399", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ebfd3fc3df0e3fe2", | |
| "index": 70, | |
| "balance": "$1,476.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nola Holt", | |
| "company": "ORBEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 558-2099", | |
| "address": "393 Linden Boulevard, Roulette, Maryland, 9589", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644d535feac457a506", | |
| "index": 71, | |
| "balance": "$2,973.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stone Wagner", | |
| "company": "FLEXIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 569-2408", | |
| "address": "944 Sutter Avenue, Brethren, Virginia, 2435", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f674c4f1c6dfc993", | |
| "index": 72, | |
| "balance": "$3,318.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francesca Mcconnell", | |
| "company": "FUTURIZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 501-2607", | |
| "address": "716 Hanson Place, Gulf, South Carolina, 8987", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66478d2fdcfb4eb9e66", | |
| "index": 73, | |
| "balance": "$3,490.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bartlett Tyler", | |
| "company": "QUONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 499-2570", | |
| "address": "659 Colonial Road, Springdale, Alabama, 921", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66459f9800435737774", | |
| "index": 74, | |
| "balance": "$2,835.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kathie Prince", | |
| "company": "BOLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 496-2830", | |
| "address": "257 Manhattan Court, Homeland, Alaska, 888", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a5168e44a37c93b2", | |
| "index": 75, | |
| "balance": "$2,900.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Misty Manning", | |
| "company": "CYTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 566-2175", | |
| "address": "978 Graham Avenue, Libertytown, Wyoming, 3295", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66448f2bdfc193667b5", | |
| "index": 76, | |
| "balance": "$3,854.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nadine Burt", | |
| "company": "COMVEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 403-2212", | |
| "address": "369 Irvington Place, Bourg, Virgin Islands, 4506", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66475c92554aeb84b13", | |
| "index": 77, | |
| "balance": "$3,420.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marsha Pace", | |
| "company": "INSECTUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 418-3994", | |
| "address": "774 Huntington Street, Taft, Hawaii, 2684", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66475c31ab22028743d", | |
| "index": 78, | |
| "balance": "$3,625.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "England Byrd", | |
| "company": "SNORUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 589-3276", | |
| "address": "615 Court Street, Canby, Maine, 2937", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640bdf685c99862d07", | |
| "index": 79, | |
| "balance": "$1,057.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Charlene Fields", | |
| "company": "CYTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (811) 421-3179", | |
| "address": "794 National Drive, Emison, Federated States Of Micronesia, 5540", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646058738fe9c7eec7", | |
| "index": 80, | |
| "balance": "$3,008.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rodriguez Cross", | |
| "company": "MUSIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (817) 501-2326", | |
| "address": "939 Cumberland Walk, Yettem, Northern Mariana Islands, 846", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66498dca530862df1d1", | |
| "index": 81, | |
| "balance": "$3,660.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ebony Mcdonald", | |
| "company": "CENTICE", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 576-2199", | |
| "address": "735 Billings Place, Allentown, Pennsylvania, 4324", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66416cd63d8ff3b5373", | |
| "index": 82, | |
| "balance": "$1,009.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Edwards Crawford", | |
| "company": "LOVEPAD", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 482-2797", | |
| "address": "294 Cedar Street, Bowie, Oregon, 6119", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644f0459dbb1738c19", | |
| "index": 83, | |
| "balance": "$3,308.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Willa Figueroa", | |
| "company": "FARMAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 589-3953", | |
| "address": "975 Ralph Avenue, Vincent, West Virginia, 6468", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66402c1ec002b1ae774", | |
| "index": 84, | |
| "balance": "$2,926.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yvette Bruce", | |
| "company": "OPTICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (904) 429-2721", | |
| "address": "386 Lawrence Street, Efland, Nebraska, 4454", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647a969fa623ae9474", | |
| "index": 85, | |
| "balance": "$2,085.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gentry Jenkins", | |
| "company": "OPTIQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 418-3581", | |
| "address": "801 Kenmore Court, Jugtown, New Hampshire, 2194", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a7ea160bda8449b6", | |
| "index": 86, | |
| "balance": "$3,695.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcintyre Ayers", | |
| "company": "VINCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 563-2120", | |
| "address": "616 Thornton Street, Beyerville, Kentucky, 3782", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d8102a405d645f6f", | |
| "index": 87, | |
| "balance": "$2,168.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sharp Woodard", | |
| "company": "GEOFORMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 423-2515", | |
| "address": "197 Kimball Street, Esmont, New Mexico, 9046", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664792c3fc23264a8fa", | |
| "index": 88, | |
| "balance": "$2,185.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melinda Ware", | |
| "company": "STEELFAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 599-3444", | |
| "address": "470 Sullivan Street, Chesapeake, North Dakota, 1774", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b8dda5327b50670f", | |
| "index": 89, | |
| "balance": "$3,110.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Arnold Wiley", | |
| "company": "MAZUDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 510-2365", | |
| "address": "507 Meadow Street, Glasgow, Kansas, 8619", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664867c6ec595e88ba6", | |
| "index": 90, | |
| "balance": "$1,191.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rita Guzman", | |
| "company": "SPRINGBEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 504-2641", | |
| "address": "618 Emerald Street, Springhill, Marshall Islands, 3213", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66406ab4f013a5c546f", | |
| "index": 91, | |
| "balance": "$3,586.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roman Montoya", | |
| "company": "FROLIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 595-2599", | |
| "address": "988 Bedford Place, Tibbie, South Dakota, 7557", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640688f99178014e22", | |
| "index": 92, | |
| "balance": "$2,201.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cherry Parks", | |
| "company": "COMTEST", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 482-3867", | |
| "address": "414 Pershing Loop, Hemlock, Wisconsin, 2708", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664857a61506ab35854", | |
| "index": 93, | |
| "balance": "$2,583.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristen Cervantes", | |
| "company": "INTRADISK", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 546-2558", | |
| "address": "473 Arion Place, Outlook, Idaho, 6357", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641ea2bd900cd69ae4", | |
| "index": 94, | |
| "balance": "$1,381.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosalie Delacruz", | |
| "company": "ZEPITOPE", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 467-2251", | |
| "address": "457 Kane Street, Draper, Colorado, 3988", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664945b1293bf7f6d58", | |
| "index": 95, | |
| "balance": "$2,792.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rivera Cantu", | |
| "company": "SONGBIRD", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 477-3544", | |
| "address": "993 Clymer Street, Sussex, Illinois, 2204", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ac8a86864d34fe30", | |
| "index": 96, | |
| "balance": "$1,405.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jordan Acevedo", | |
| "company": "FLUMBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 436-2225", | |
| "address": "175 Voorhies Avenue, Crayne, New York, 8073", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648a473c73439c6bd9", | |
| "index": 97, | |
| "balance": "$2,552.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shawn Marshall", | |
| "company": "KEENGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 558-4000", | |
| "address": "126 Crosby Avenue, Vaughn, Nevada, 1718", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664159ea2457f8bc83f", | |
| "index": 98, | |
| "balance": "$1,907.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccoy Gregory", | |
| "company": "ZERBINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 584-3465", | |
| "address": "602 Mill Avenue, Westphalia, Palau, 7322", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ba7521d4e70f1011", | |
| "index": 99, | |
| "balance": "$2,516.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Grimes Chambers", | |
| "company": "RONBERT", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 451-3890", | |
| "address": "324 Tapscott Avenue, Buxton, Tennessee, 4725", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646150d3563afdc8fb", | |
| "index": 100, | |
| "balance": "$2,957.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Isabel Gray", | |
| "company": "EARTHWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 514-2138", | |
| "address": "790 Fay Court, Harmon, Montana, 6166", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66403d53811331bb6d0", | |
| "index": 101, | |
| "balance": "$2,794.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melva Odom", | |
| "company": "NEWCUBE", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 563-2763", | |
| "address": "393 Richardson Street, Kingstowne, Arizona, 8068", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66477f5e94f639f01b4", | |
| "index": 102, | |
| "balance": "$3,002.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alicia Richmond", | |
| "company": "OMNIGOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 584-3451", | |
| "address": "717 Ovington Court, Hall, North Carolina, 7210", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664de2cc59975b04cab", | |
| "index": 103, | |
| "balance": "$3,610.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Susie Chase", | |
| "company": "LUXURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 463-3655", | |
| "address": "890 Sumner Place, Hondah, Rhode Island, 4197", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66457344a05ecfd63b7", | |
| "index": 104, | |
| "balance": "$3,245.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Belinda Horn", | |
| "company": "TECHADE", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 567-3005", | |
| "address": "546 Taylor Street, Sharon, Ohio, 9703", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640c7e6e05a9df5d60", | |
| "index": 105, | |
| "balance": "$1,589.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Darcy Marsh", | |
| "company": "RECRITUBE", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 426-3007", | |
| "address": "379 Gatling Place, Hickory, Guam, 4457", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ce300bf1bf6f1b20", | |
| "index": 106, | |
| "balance": "$3,235.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Estes Hatfield", | |
| "company": "INEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 430-3251", | |
| "address": "448 Tompkins Place, Malo, Louisiana, 6559", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664999721ab6a4d8bb2", | |
| "index": 107, | |
| "balance": "$2,304.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jones Carroll", | |
| "company": "OULU", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 553-2326", | |
| "address": "352 Diamond Street, Maplewood, Utah, 3398", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648d7395c5565eb971", | |
| "index": 108, | |
| "balance": "$3,807.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ava Day", | |
| "company": "ZIPAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 486-2749", | |
| "address": "217 Corbin Place, Independence, Vermont, 4996", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a6e57cf100556557", | |
| "index": 109, | |
| "balance": "$3,369.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hollie Calderon", | |
| "company": "VOIPA", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 570-2963", | |
| "address": "934 Heyward Street, Bradenville, New Jersey, 6250", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649c17ae6171fce310", | |
| "index": 110, | |
| "balance": "$3,060.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sabrina Sanders", | |
| "company": "EVENTAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 449-2009", | |
| "address": "622 Vernon Avenue, Tioga, Washington, 2893", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643151a62ce265987b", | |
| "index": 111, | |
| "balance": "$2,268.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elva Harding", | |
| "company": "CORIANDER", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 497-2662", | |
| "address": "796 Otsego Street, Welda, California, 8680", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d42516d2b2333c6c", | |
| "index": 112, | |
| "balance": "$1,985.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Myrna Hendrix", | |
| "company": "ECRATER", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 545-3736", | |
| "address": "807 Lake Avenue, Kanauga, Arkansas, 2845", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664aad2651369972363", | |
| "index": 113, | |
| "balance": "$2,904.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cooper Pacheco", | |
| "company": "IDETICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 400-3287", | |
| "address": "706 Tehama Street, Orin, Iowa, 5467", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a283622d0c2c359e", | |
| "index": 114, | |
| "balance": "$1,388.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dickson Randall", | |
| "company": "EBIDCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 403-2252", | |
| "address": "263 Halsey Street, Frierson, Minnesota, 9150", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647f86bd89e7f0ee2f", | |
| "index": 115, | |
| "balance": "$2,875.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorena Roberson", | |
| "company": "AQUASSEUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 408-2318", | |
| "address": "562 Gotham Avenue, Steinhatchee, Oklahoma, 6375", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e4f6c15d36dbdc05", | |
| "index": 116, | |
| "balance": "$3,702.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marisol Rowland", | |
| "company": "SULTRAXIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 431-2676", | |
| "address": "921 Macdougal Street, Newcastle, Florida, 9452", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643e594f55dc6e1a65", | |
| "index": 117, | |
| "balance": "$3,130.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jacobson Ellis", | |
| "company": "BIOTICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 591-2778", | |
| "address": "463 Montgomery Place, Sidman, District Of Columbia, 3443", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f404424b74b1cf59", | |
| "index": 118, | |
| "balance": "$1,283.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francis Dalton", | |
| "company": "OTHERWAY", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 576-2675", | |
| "address": "365 Putnam Avenue, Dana, Mississippi, 9548", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c7a101324ad844da", | |
| "index": 119, | |
| "balance": "$3,261.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Webster Mills", | |
| "company": "SCHOOLIO", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 497-3288", | |
| "address": "658 Douglass Street, Hiko, Missouri, 7093", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664dbb7aa9854d3f8e1", | |
| "index": 120, | |
| "balance": "$3,630.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sandra Floyd", | |
| "company": "CINCYR", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 526-3007", | |
| "address": "524 Furman Street, Gouglersville, Massachusetts, 6961", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664315fcc98f233582e", | |
| "index": 121, | |
| "balance": "$1,026.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walter Dorsey", | |
| "company": "NETROPIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 545-2171", | |
| "address": "850 Kings Hwy, Northridge, Texas, 5151", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647d243bb3954a8afd", | |
| "index": 122, | |
| "balance": "$3,440.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Naomi Powers", | |
| "company": "SKINSERVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 495-2579", | |
| "address": "870 Taaffe Place, Sanborn, Georgia, 6929", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664af579bca13907017", | |
| "index": 123, | |
| "balance": "$2,890.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcclure Reeves", | |
| "company": "EXOSTREAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 464-2122", | |
| "address": "711 Nelson Street, Manchester, American Samoa, 370", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664246705816d8275ee", | |
| "index": 124, | |
| "balance": "$3,591.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Louisa Whitehead", | |
| "company": "OCEANICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 417-2376", | |
| "address": "428 Durland Place, Thatcher, Indiana, 7926", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a271e6ac8decbf6a", | |
| "index": 125, | |
| "balance": "$1,558.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ora Gay", | |
| "company": "ASSURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 462-2640", | |
| "address": "178 Harden Street, Ruckersville, Delaware, 3776", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642c91d1a638414f5b", | |
| "index": 126, | |
| "balance": "$1,336.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cameron Stone", | |
| "company": "ZENSUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 470-3230", | |
| "address": "560 Whitney Avenue, Jeff, Puerto Rico, 7999", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642fffb40ec49495a9", | |
| "index": 127, | |
| "balance": "$1,220.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelly Baird", | |
| "company": "CINASTER", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 416-2784", | |
| "address": "785 Ocean Avenue, Vivian, Connecticut, 6147", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cb6e680d0149012f", | |
| "index": 128, | |
| "balance": "$3,967.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sanders Daugherty", | |
| "company": "COMTRACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 413-2101", | |
| "address": "646 Cameron Court, Lutsen, Maryland, 7926", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645b7c856411c375de", | |
| "index": 129, | |
| "balance": "$3,968.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hayes Patrick", | |
| "company": "CENTREE", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 570-2219", | |
| "address": "542 Caton Avenue, Snelling, Virginia, 3918", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645978a57f0f858af5", | |
| "index": 130, | |
| "balance": "$3,927.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jordan Freeman", | |
| "company": "NIQUENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 587-2726", | |
| "address": "649 Sheffield Avenue, Camino, South Carolina, 4651", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eaf4fcb9a7e920ba", | |
| "index": 131, | |
| "balance": "$2,142.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hyde Myers", | |
| "company": "FILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 461-2065", | |
| "address": "826 Dewitt Avenue, Geyserville, Alabama, 9084", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646894784c0aeda13d", | |
| "index": 132, | |
| "balance": "$2,476.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kane Case", | |
| "company": "RETRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (953) 509-3716", | |
| "address": "661 Poly Place, Shaft, Alaska, 4910", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647bcd0dbb18d2e89e", | |
| "index": 133, | |
| "balance": "$1,058.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marguerite Holman", | |
| "company": "DIGIPRINT", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 502-3524", | |
| "address": "279 Willoughby Avenue, Brutus, Wyoming, 6778", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647432e822b7b060da", | |
| "index": 134, | |
| "balance": "$3,271.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Parsons Harrington", | |
| "company": "HARMONEY", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 522-2762", | |
| "address": "804 Gem Street, Franklin, Virgin Islands, 607", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664704521baf25d1bc6", | |
| "index": 135, | |
| "balance": "$3,934.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Krista Bond", | |
| "company": "DADABASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 467-2881", | |
| "address": "283 Devon Avenue, Longbranch, Hawaii, 1440", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664366c370db95b8286", | |
| "index": 136, | |
| "balance": "$2,939.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hodges Wooten", | |
| "company": "OVERPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 554-2991", | |
| "address": "508 Kingston Avenue, Gila, Maine, 3724", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664464573e37d38ddd3", | |
| "index": 137, | |
| "balance": "$2,361.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eva Burgess", | |
| "company": "ENORMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 547-3614", | |
| "address": "464 Holmes Lane, Wedgewood, Federated States Of Micronesia, 6251", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649fdaf05a1e2cf213", | |
| "index": 138, | |
| "balance": "$1,064.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leonard Byers", | |
| "company": "CODAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 448-3276", | |
| "address": "911 Jaffray Street, Galesville, Northern Mariana Islands, 7215", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641e19770bd12f3c5b", | |
| "index": 139, | |
| "balance": "$2,358.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joan Roach", | |
| "company": "POLARAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 433-3649", | |
| "address": "914 College Place, Ballico, Pennsylvania, 5842", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f75b62901cb02001", | |
| "index": 140, | |
| "balance": "$2,973.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Briggs George", | |
| "company": "FISHLAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 578-2086", | |
| "address": "413 Meserole Street, Darbydale, Oregon, 1578", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d7f31492d1122d36", | |
| "index": 141, | |
| "balance": "$1,087.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcfarland Lee", | |
| "company": "ECOLIGHT", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 410-2460", | |
| "address": "635 Highland Place, Caron, West Virginia, 1856", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643557c0e9c130ece5", | |
| "index": 142, | |
| "balance": "$1,746.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carroll Logan", | |
| "company": "COMBOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (928) 585-3412", | |
| "address": "926 Nautilus Avenue, Woodburn, Nebraska, 7967", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66457756fd84921f826", | |
| "index": 143, | |
| "balance": "$1,506.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bonita Burris", | |
| "company": "CONFERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 559-2843", | |
| "address": "467 Lott Street, Brady, New Hampshire, 1959", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642a0437683c0d18d7", | |
| "index": 144, | |
| "balance": "$3,437.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Delgado Christian", | |
| "company": "ISOPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 414-2432", | |
| "address": "103 Charles Place, Finderne, Kentucky, 9541", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66468ef353b18261c3d", | |
| "index": 145, | |
| "balance": "$3,133.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alyssa Roy", | |
| "company": "TERSANKI", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 457-2015", | |
| "address": "748 Lott Place, Oasis, New Mexico, 7427", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642a7e36045bbca892", | |
| "index": 146, | |
| "balance": "$1,586.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Magdalena Jennings", | |
| "company": "MAGNEMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 431-3499", | |
| "address": "285 Hunterfly Place, Succasunna, North Dakota, 6917", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664bd90b4f46ddc245c", | |
| "index": 147, | |
| "balance": "$2,472.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tammy Hays", | |
| "company": "COREPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 511-2196", | |
| "address": "866 Poplar Avenue, Elizaville, Kansas, 3496", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643bd0e909d34662fd", | |
| "index": 148, | |
| "balance": "$1,950.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deana Talley", | |
| "company": "EXOSWITCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 515-3933", | |
| "address": "870 Dahlgreen Place, Goodville, Marshall Islands, 2065", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fda11ce176d08eca", | |
| "index": 149, | |
| "balance": "$2,166.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mitchell Solomon", | |
| "company": "SUREPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 598-2627", | |
| "address": "102 Tudor Terrace, Worcester, South Dakota, 2851", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664bc7dfcbe8161120c", | |
| "index": 150, | |
| "balance": "$1,306.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dennis Preston", | |
| "company": "SECURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 539-2393", | |
| "address": "776 Nichols Avenue, Russellville, Wisconsin, 7858", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eb47881585bf23b0", | |
| "index": 151, | |
| "balance": "$2,723.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cara Chandler", | |
| "company": "HALAP", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 447-2592", | |
| "address": "739 Cumberland Street, Greenbush, Idaho, 7029", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cc64be1524179d6d", | |
| "index": 152, | |
| "balance": "$1,197.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hewitt Mercer", | |
| "company": "ECLIPTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 579-3131", | |
| "address": "279 Hausman Street, Soham, Colorado, 7471", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648e0e59cd51b70d28", | |
| "index": 153, | |
| "balance": "$2,614.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alexandra Garner", | |
| "company": "DARWINIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 461-2969", | |
| "address": "613 Krier Place, Balm, Illinois, 2096", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b70f106eb644342f", | |
| "index": 154, | |
| "balance": "$3,991.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ronda Potts", | |
| "company": "KIDSTOCK", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 417-2741", | |
| "address": "862 Clarkson Avenue, Haring, New York, 9554", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c95b5722a396a1d7", | |
| "index": 155, | |
| "balance": "$3,703.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Geneva Burke", | |
| "company": "FURNITECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 525-3032", | |
| "address": "495 Sumpter Street, Gerton, Nevada, 2825", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eb0c292b74cebee5", | |
| "index": 156, | |
| "balance": "$2,585.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Regina Pennington", | |
| "company": "VERTIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 544-2419", | |
| "address": "242 Herkimer Court, Benson, Palau, 196", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647a9dd6ae35698212", | |
| "index": 157, | |
| "balance": "$3,665.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pearl Perkins", | |
| "company": "EXOTERIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 488-3380", | |
| "address": "932 Bayview Place, Herlong, Tennessee, 973", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66479b7c7c570914667", | |
| "index": 158, | |
| "balance": "$1,295.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mclaughlin Kelley", | |
| "company": "CORECOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (862) 444-3208", | |
| "address": "542 Keen Court, Rockhill, Montana, 2074", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ba73997f6b5e674f", | |
| "index": 159, | |
| "balance": "$1,680.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aurelia Hahn", | |
| "company": "DAIDO", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 418-3696", | |
| "address": "901 Prospect Avenue, Boomer, Arizona, 9740", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66437262605676cf964", | |
| "index": 160, | |
| "balance": "$1,812.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Virginia Velasquez", | |
| "company": "FRANSCENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 511-2614", | |
| "address": "977 Fuller Place, Hegins, North Carolina, 9275", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b7b8ef1ad873d6a1", | |
| "index": 161, | |
| "balance": "$3,505.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Benton Branch", | |
| "company": "OATFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 443-2358", | |
| "address": "829 Jodie Court, Carlos, Rhode Island, 7041", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66417b6221c4acbccec", | |
| "index": 162, | |
| "balance": "$3,076.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brigitte Mcmahon", | |
| "company": "COMTENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 530-3964", | |
| "address": "304 Varet Street, Maybell, Ohio, 5807", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66490b16b5fb20f72cf", | |
| "index": 163, | |
| "balance": "$1,786.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rodgers Russell", | |
| "company": "HYPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 458-2587", | |
| "address": "333 Lorraine Street, Woodlands, Guam, 8838", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646f953fa2991cd429", | |
| "index": 164, | |
| "balance": "$2,311.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Betsy Ramirez", | |
| "company": "DOGTOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 453-3812", | |
| "address": "231 Fenimore Street, Drummond, Louisiana, 3957", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641e90310f12d9a122", | |
| "index": 165, | |
| "balance": "$2,779.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pittman Nash", | |
| "company": "COMBOGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 510-2744", | |
| "address": "892 Gelston Avenue, Waukeenah, Utah, 8330", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d1087cc5dd197aed", | |
| "index": 166, | |
| "balance": "$3,758.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lois Bowman", | |
| "company": "CANOPOLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 515-2999", | |
| "address": "339 Mersereau Court, Kirk, Vermont, 8634", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641e60868fe4966323", | |
| "index": 167, | |
| "balance": "$3,009.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bernadette Pope", | |
| "company": "DELPHIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 417-2767", | |
| "address": "146 Aviation Road, Kerby, New Jersey, 943", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664668f0d42cdf457e5", | |
| "index": 168, | |
| "balance": "$3,826.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Owen Leon", | |
| "company": "STRALUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 492-3836", | |
| "address": "102 Shale Street, Klondike, Washington, 2669", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664300de1e7059f3ad6", | |
| "index": 169, | |
| "balance": "$1,104.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristin Witt", | |
| "company": "DIGIQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 464-2525", | |
| "address": "904 Virginia Place, Virgie, California, 3402", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ff3db64e3e41d1e9", | |
| "index": 170, | |
| "balance": "$2,775.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francis Hogan", | |
| "company": "MEDIFAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 491-2831", | |
| "address": "940 Knight Court, Temperanceville, Arkansas, 9564", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fab9847db4ab1c9e", | |
| "index": 171, | |
| "balance": "$1,442.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Emilia Oneill", | |
| "company": "BLEENDOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 588-2687", | |
| "address": "191 Adams Street, Titanic, Iowa, 8250", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c11c6314bfaddef6", | |
| "index": 172, | |
| "balance": "$2,690.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stevenson Barnett", | |
| "company": "XUMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 477-3107", | |
| "address": "914 Grove Place, Valmy, Minnesota, 6704", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66448888ed9f2938e48", | |
| "index": 173, | |
| "balance": "$2,422.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eunice Berg", | |
| "company": "COMTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 599-3877", | |
| "address": "108 Commercial Street, Starks, Oklahoma, 2974", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664bde14c2fc9761db8", | |
| "index": 174, | |
| "balance": "$3,285.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rachael Richardson", | |
| "company": "MEDALERT", | |
| "email": "[email protected]", | |
| "phone": "+1 (804) 534-3481", | |
| "address": "627 Horace Court, Kempton, Florida, 3494", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ef710fc21a902d1a", | |
| "index": 175, | |
| "balance": "$2,331.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Byers Wong", | |
| "company": "ERSUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 411-2428", | |
| "address": "661 Hewes Street, Lookingglass, District Of Columbia, 3073", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641e06b42ab3f6ed33", | |
| "index": 176, | |
| "balance": "$3,248.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ferguson Dominguez", | |
| "company": "PRISMATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 579-3875", | |
| "address": "490 Beaver Street, Cassel, Mississippi, 1610", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66428a0dca9e46f94cd", | |
| "index": 177, | |
| "balance": "$2,994.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burns Chan", | |
| "company": "ISOLOGICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 428-3030", | |
| "address": "477 Bogart Street, Frank, Missouri, 2196", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a65aea5f15139a13", | |
| "index": 178, | |
| "balance": "$2,571.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chapman Aguilar", | |
| "company": "EGYPTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 487-2248", | |
| "address": "436 Schenck Avenue, Lupton, Massachusetts, 3788", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ed71862c0e9e4542", | |
| "index": 179, | |
| "balance": "$1,424.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pauline Dale", | |
| "company": "SARASONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 467-3475", | |
| "address": "544 Ridge Boulevard, Watrous, Texas, 6113", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66441f8fb96bcf532a8", | |
| "index": 180, | |
| "balance": "$3,352.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nash Mcdaniel", | |
| "company": "XYLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 479-3745", | |
| "address": "943 Decatur Street, Wildwood, Georgia, 1963", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66413cebc6428b3aeae", | |
| "index": 181, | |
| "balance": "$3,645.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Liliana Walter", | |
| "company": "DIGIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 446-3931", | |
| "address": "666 Perry Terrace, Vienna, American Samoa, 2367", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66460b06ebcc2fa53d6", | |
| "index": 182, | |
| "balance": "$3,478.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dotson Cook", | |
| "company": "KLUGGER", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 582-2709", | |
| "address": "531 Albemarle Road, Hayden, Indiana, 4429", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c030148e6f0dbb08", | |
| "index": 183, | |
| "balance": "$3,745.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jodie Bennett", | |
| "company": "MEDCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 558-2636", | |
| "address": "208 Debevoise Avenue, Grimsley, Delaware, 5998", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d2369b4b600889b8", | |
| "index": 184, | |
| "balance": "$3,234.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bryant Sheppard", | |
| "company": "ISODRIVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 595-3333", | |
| "address": "797 Barbey Street, Corinne, Puerto Rico, 6660", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ed7248557fb79fb2", | |
| "index": 185, | |
| "balance": "$2,254.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Catherine Tran", | |
| "company": "ZYTRAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 561-3733", | |
| "address": "414 Garfield Place, Tivoli, Connecticut, 1820", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66482147bacfaa937f9", | |
| "index": 186, | |
| "balance": "$3,677.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ellis Mullen", | |
| "company": "CEDWARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 473-2673", | |
| "address": "284 Court Square, Bend, Maryland, 8424", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66467a49315b6f9b890", | |
| "index": 187, | |
| "balance": "$3,283.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Key Dennis", | |
| "company": "MIRACLIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (811) 436-2107", | |
| "address": "851 Brigham Street, Wanamie, Virginia, 7039", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c87a70b46f7f0c91", | |
| "index": 188, | |
| "balance": "$1,061.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Heather Silva", | |
| "company": "NEOCENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 512-2788", | |
| "address": "829 Burnett Street, Tampico, South Carolina, 207", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66482dedac77989a3fa", | |
| "index": 189, | |
| "balance": "$2,221.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bradley Nieves", | |
| "company": "ZOLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 593-2432", | |
| "address": "876 Madeline Court, Ebro, Alabama, 7840", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eda077b25e6e965e", | |
| "index": 190, | |
| "balance": "$3,571.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gibbs Sullivan", | |
| "company": "QUORDATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 593-2155", | |
| "address": "946 Whitty Lane, Soudan, Alaska, 6219", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b2a25caf9ad6d5d0", | |
| "index": 191, | |
| "balance": "$3,656.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Spencer Schultz", | |
| "company": "SATIANCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 551-2298", | |
| "address": "190 Perry Place, Dargan, Wyoming, 9985", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66423f69774ea6a6112", | |
| "index": 192, | |
| "balance": "$3,252.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Casandra Burton", | |
| "company": "ZENTRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 512-3847", | |
| "address": "234 Empire Boulevard, Robbins, Virgin Islands, 9523", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66446387dfad485356b", | |
| "index": 193, | |
| "balance": "$1,808.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mara Lane", | |
| "company": "KAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 564-3651", | |
| "address": "740 Cove Lane, Marne, Hawaii, 5950", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f3a8b9efafc813a4", | |
| "index": 194, | |
| "balance": "$3,068.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lori Anderson", | |
| "company": "ZILLACOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 405-2389", | |
| "address": "243 Interborough Parkway, Yogaville, Maine, 7494", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664519f429ae9d1db3a", | |
| "index": 195, | |
| "balance": "$1,206.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ewing Benton", | |
| "company": "SHADEASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 473-2119", | |
| "address": "336 Tiffany Place, Broadlands, Federated States Of Micronesia, 8276", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645479c84ca286214a", | |
| "index": 196, | |
| "balance": "$3,263.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kaitlin Frost", | |
| "company": "JUMPSTACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 474-3216", | |
| "address": "720 Bergen Avenue, Madaket, Northern Mariana Islands, 9474", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cce7a3d877011b1d", | |
| "index": 197, | |
| "balance": "$1,040.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nicole Gallegos", | |
| "company": "GRAINSPOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 420-3178", | |
| "address": "347 Prince Street, Emerald, Pennsylvania, 4454", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e5b68d644ab5413c", | |
| "index": 198, | |
| "balance": "$3,175.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yesenia Johnston", | |
| "company": "PLEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 437-2468", | |
| "address": "661 Moore Place, Hoagland, Oregon, 6543", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b592f6e0c35b8544", | |
| "index": 199, | |
| "balance": "$3,560.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Benson Rasmussen", | |
| "company": "ZENCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 430-3095", | |
| "address": "628 Lawrence Avenue, Selma, West Virginia, 9247", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cd4d8df0317ea372", | |
| "index": 200, | |
| "balance": "$1,146.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Smith Moreno", | |
| "company": "SPEEDBOLT", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 453-2235", | |
| "address": "797 Lawn Court, Onton, Nebraska, 4262", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f2bbb0377055c33f", | |
| "index": 201, | |
| "balance": "$3,670.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christie Dillard", | |
| "company": "DRAGBOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 582-2606", | |
| "address": "571 Montauk Avenue, Cawood, New Hampshire, 7574", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66429214a03aad2a131", | |
| "index": 202, | |
| "balance": "$3,470.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Araceli Hensley", | |
| "company": "DEEPENDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 494-2885", | |
| "address": "997 Lefferts Place, Greenock, Kentucky, 7019", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c7328032c091b964", | |
| "index": 203, | |
| "balance": "$1,496.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dominguez Nichols", | |
| "company": "PYRAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 444-3578", | |
| "address": "444 Russell Street, Aurora, New Mexico, 8407", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648d8dedb511b77264", | |
| "index": 204, | |
| "balance": "$2,672.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sherman Waller", | |
| "company": "ZILLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 599-3431", | |
| "address": "753 Independence Avenue, Spokane, North Dakota, 2276", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66411752fdda7415223", | |
| "index": 205, | |
| "balance": "$3,771.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gould Valdez", | |
| "company": "ENOMEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 547-3619", | |
| "address": "322 Eldert Street, Hollins, Kansas, 2218", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664afb04c02b908a76e", | |
| "index": 206, | |
| "balance": "$2,255.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tina Hester", | |
| "company": "ORONOKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 502-3027", | |
| "address": "273 Juliana Place, Enoree, Marshall Islands, 6118", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649eea99386d3548a6", | |
| "index": 207, | |
| "balance": "$1,755.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elnora Gutierrez", | |
| "company": "MALATHION", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 487-2720", | |
| "address": "472 Calyer Street, Johnsonburg, South Dakota, 3988", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eb673fa5edc98a8c", | |
| "index": 208, | |
| "balance": "$1,100.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margery Wise", | |
| "company": "OPPORTECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 554-2746", | |
| "address": "579 Bayview Avenue, Berwind, Wisconsin, 9339", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ad890c0b4230f7ad", | |
| "index": 209, | |
| "balance": "$1,491.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Effie Wynn", | |
| "company": "CUJO", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 412-2295", | |
| "address": "216 Bristol Street, Linwood, Idaho, 3987", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664205d9e0b0341bb8f", | |
| "index": 210, | |
| "balance": "$3,051.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ursula Boone", | |
| "company": "EZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 499-2005", | |
| "address": "924 Fillmore Place, Epworth, Colorado, 5699", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642055140e413a6cda", | |
| "index": 211, | |
| "balance": "$3,093.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Petty Medina", | |
| "company": "QIAO", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 424-3111", | |
| "address": "529 Fleet Street, Rivereno, Illinois, 1113", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c827fdeb9c012f67", | |
| "index": 212, | |
| "balance": "$1,366.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clarice Wiggins", | |
| "company": "VIASIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 519-2407", | |
| "address": "537 Troutman Street, Biehle, New York, 711", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664545ff0dcbb82398f", | |
| "index": 213, | |
| "balance": "$1,449.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Danielle Barton", | |
| "company": "AQUAMATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 429-3165", | |
| "address": "421 Canton Court, Ryderwood, Nevada, 5607", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cf76510d00bde9c0", | |
| "index": 214, | |
| "balance": "$2,445.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lottie Butler", | |
| "company": "FITCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 443-3629", | |
| "address": "490 Irving Avenue, Conestoga, Palau, 9906", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c60aa64474657836", | |
| "index": 215, | |
| "balance": "$1,192.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marcie Kirkland", | |
| "company": "ENDIPIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 547-2078", | |
| "address": "782 India Street, Cutter, Tennessee, 3447", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664222932e1badce6ff", | |
| "index": 216, | |
| "balance": "$2,783.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chelsea Kent", | |
| "company": "PIVITOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 594-3315", | |
| "address": "945 Quentin Road, Kylertown, Montana, 4994", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cbf382c6a2f3e891", | |
| "index": 217, | |
| "balance": "$3,685.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Whitfield Willis", | |
| "company": "INJOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (810) 447-3890", | |
| "address": "516 Micieli Place, Lafferty, Arizona, 5158", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66440b0c6072ea29ba6", | |
| "index": 218, | |
| "balance": "$3,717.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Weiss Bush", | |
| "company": "TROLLERY", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 491-3582", | |
| "address": "631 Portal Street, Topaz, North Carolina, 399", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664aced810efbf40ccc", | |
| "index": 219, | |
| "balance": "$1,864.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marquez Cameron", | |
| "company": "VERTON", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 417-2540", | |
| "address": "292 Bartlett Street, Windsor, Rhode Island, 1824", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644e7c140c2a2eae88", | |
| "index": 220, | |
| "balance": "$1,436.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nita Diaz", | |
| "company": "RADIANTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 410-2089", | |
| "address": "443 Dodworth Street, Alleghenyville, Ohio, 5021", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645983a51488680d63", | |
| "index": 221, | |
| "balance": "$2,144.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fowler Sandoval", | |
| "company": "GRONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 535-2827", | |
| "address": "247 Division Place, Villarreal, Guam, 7774", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664dc60bd8b3cce9188", | |
| "index": 222, | |
| "balance": "$1,557.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rowland Hodge", | |
| "company": "COMDOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 577-2707", | |
| "address": "520 Stone Avenue, Coventry, Louisiana, 7505", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a9b8d2503a52a988", | |
| "index": 223, | |
| "balance": "$1,456.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sparks Hansen", | |
| "company": "KYAGORO", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 492-3880", | |
| "address": "815 Fanchon Place, Williston, Utah, 8895", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664954bbb566a7421fd", | |
| "index": 224, | |
| "balance": "$2,175.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lucille Mcintyre", | |
| "company": "TELEQUIET", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 405-3203", | |
| "address": "696 Folsom Place, Volta, Vermont, 2246", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649544c7988bdded18", | |
| "index": 225, | |
| "balance": "$3,590.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lydia Morse", | |
| "company": "ZENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 574-3100", | |
| "address": "647 Regent Place, Kimmell, New Jersey, 4207", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649bbe58d3a6dbfe2e", | |
| "index": 226, | |
| "balance": "$1,904.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patterson Petersen", | |
| "company": "LIMOZEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 441-3382", | |
| "address": "216 Reeve Place, Crumpler, Washington, 5069", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66449d66d9f20b44727", | |
| "index": 227, | |
| "balance": "$3,129.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Merritt Lloyd", | |
| "company": "VIRXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 421-3808", | |
| "address": "988 Cypress Avenue, Richford, California, 6498", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b5f2b227a84aa6c0", | |
| "index": 228, | |
| "balance": "$3,315.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Henson Mercado", | |
| "company": "RONELON", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 494-2686", | |
| "address": "259 Vanderbilt Street, Eagletown, Arkansas, 5729", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648bbe1267ce8ff747", | |
| "index": 229, | |
| "balance": "$2,108.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Goodman Armstrong", | |
| "company": "GLUID", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 464-3851", | |
| "address": "642 Fayette Street, Lund, Iowa, 7555", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640a2d3be3fef03bbb", | |
| "index": 230, | |
| "balance": "$1,012.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alyson Kennedy", | |
| "company": "PROXSOFT", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 409-3441", | |
| "address": "347 Maujer Street, Bladensburg, Minnesota, 6326", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c8c80289c11ea1cd", | |
| "index": 231, | |
| "balance": "$1,224.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Weaver Workman", | |
| "company": "MUSANPOLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 591-2045", | |
| "address": "422 Bergen Court, Kapowsin, Oklahoma, 2075", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645ff1776a8585014a", | |
| "index": 232, | |
| "balance": "$2,613.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alison Burnett", | |
| "company": "TECHTRIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 544-3758", | |
| "address": "468 Vanderveer Place, Goochland, Florida, 2997", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e6007a040403fead", | |
| "index": 233, | |
| "balance": "$2,641.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hawkins Powell", | |
| "company": "VENOFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 455-3074", | |
| "address": "696 Autumn Avenue, Yukon, District Of Columbia, 8336", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cdcd115cff6cf880", | |
| "index": 234, | |
| "balance": "$3,810.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shepard Watkins", | |
| "company": "ILLUMITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 451-3314", | |
| "address": "484 Flatbush Avenue, Fivepointville, Mississippi, 9826", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643c08f6a18b31efd8", | |
| "index": 235, | |
| "balance": "$1,600.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hunt Short", | |
| "company": "MULTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 438-2185", | |
| "address": "420 Pleasant Place, Marenisco, Missouri, 5162", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664bccec51f2161a768", | |
| "index": 236, | |
| "balance": "$3,767.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janet Carlson", | |
| "company": "KEEG", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 435-3461", | |
| "address": "757 Sackman Street, Dennard, Massachusetts, 7794", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66452a31f22af81e099", | |
| "index": 237, | |
| "balance": "$3,057.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oliver Jensen", | |
| "company": "BUGSALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 437-3272", | |
| "address": "602 Dorchester Road, Gwynn, Texas, 9522", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b318167e761dacf5", | |
| "index": 238, | |
| "balance": "$2,491.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hattie Lynn", | |
| "company": "ISONUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 433-2418", | |
| "address": "934 Beard Street, Greenwich, Georgia, 4965", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664acb01d7dd85907cd", | |
| "index": 239, | |
| "balance": "$1,845.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walker Woodward", | |
| "company": "BEDDER", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 418-3626", | |
| "address": "406 Livonia Avenue, Detroit, American Samoa, 8090", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648cb8da47a794da0e", | |
| "index": 240, | |
| "balance": "$3,092.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lena Weeks", | |
| "company": "OHMNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 542-3645", | |
| "address": "916 Chapel Street, Waterloo, Indiana, 1713", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664815827b44fa9d544", | |
| "index": 241, | |
| "balance": "$3,299.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burt Shelton", | |
| "company": "BUZZWORKS", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 528-3497", | |
| "address": "480 Cadman Plaza, Marienthal, Delaware, 2975", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66495a9b7d1a3db0e84", | |
| "index": 242, | |
| "balance": "$2,777.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mia Lancaster", | |
| "company": "SKYBOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 450-3572", | |
| "address": "573 Powell Street, Monument, Puerto Rico, 973", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e9791c6886cc6603", | |
| "index": 243, | |
| "balance": "$2,811.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ila Roberts", | |
| "company": "ORBALIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 571-3640", | |
| "address": "170 Vista Place, Cumminsville, Connecticut, 1761", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b040560a4bc860ba", | |
| "index": 244, | |
| "balance": "$1,652.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pace Foster", | |
| "company": "ETERNIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 498-2000", | |
| "address": "329 Minna Street, Weedville, Maryland, 617", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640a2bdf3ee1235815", | |
| "index": 245, | |
| "balance": "$1,306.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lupe Tate", | |
| "company": "ZOXY", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 434-2582", | |
| "address": "327 Rewe Street, Holtville, Virginia, 3220", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66415cd6aedece6f3b7", | |
| "index": 246, | |
| "balance": "$2,587.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ericka Jacobson", | |
| "company": "ZOGAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 414-2334", | |
| "address": "995 Moffat Street, Walland, South Carolina, 5723", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642150c5b43643fa0f", | |
| "index": 247, | |
| "balance": "$2,168.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Compton Rhodes", | |
| "company": "HOTCAKES", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 582-2765", | |
| "address": "464 Clinton Street, Genoa, Alabama, 6797", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fcdab85ff9f7ac95", | |
| "index": 248, | |
| "balance": "$2,188.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Connie Terrell", | |
| "company": "TYPHONICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 541-2782", | |
| "address": "644 Monroe Place, Sabillasville, Alaska, 5346", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664222286184aad2e9b", | |
| "index": 249, | |
| "balance": "$2,119.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nikki Brooks", | |
| "company": "VURBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 417-3423", | |
| "address": "568 Adelphi Street, Lavalette, Wyoming, 6880", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66463b0548e41e9f487", | |
| "index": 250, | |
| "balance": "$3,934.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Saunders Carey", | |
| "company": "YURTURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 482-2684", | |
| "address": "302 Ashford Street, Harrodsburg, Virgin Islands, 6396", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66422920deb09dc98e3", | |
| "index": 251, | |
| "balance": "$3,509.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Neal Mcdowell", | |
| "company": "EWAVES", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 445-2471", | |
| "address": "506 Mermaid Avenue, Adelino, Hawaii, 6090", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66436655a09ae2c97fe", | |
| "index": 252, | |
| "balance": "$1,187.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Myra Cantrell", | |
| "company": "COLUMELLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 486-3749", | |
| "address": "247 Strauss Street, Nutrioso, Maine, 8550", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664799e77e69a89001a", | |
| "index": 253, | |
| "balance": "$1,266.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynette Summers", | |
| "company": "ACCUPRINT", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 418-3402", | |
| "address": "700 Gaylord Drive, Groton, Federated States Of Micronesia, 1819", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642434842305945a38", | |
| "index": 254, | |
| "balance": "$3,623.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reyes Roman", | |
| "company": "EARBANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 569-3913", | |
| "address": "818 Bleecker Street, Fowlerville, Northern Mariana Islands, 2790", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66422f750c67e60f92a", | |
| "index": 255, | |
| "balance": "$1,193.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bolton Payne", | |
| "company": "RUBADUB", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 588-3063", | |
| "address": "519 Woodbine Street, Cucumber, Pennsylvania, 680", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642f41242cdc3f6e6d", | |
| "index": 256, | |
| "balance": "$2,990.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Suarez Mccormick", | |
| "company": "COMSTRUCT", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 532-2047", | |
| "address": "991 Bank Street, Allendale, Oregon, 3003", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ce0ec4ea15bce9b7", | |
| "index": 257, | |
| "balance": "$2,689.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Price Brady", | |
| "company": "CODACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 439-2274", | |
| "address": "155 Duryea Place, Clay, West Virginia, 2152", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648114784779ac1e4d", | |
| "index": 258, | |
| "balance": "$1,890.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roberts Morrison", | |
| "company": "INSURON", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 485-3777", | |
| "address": "102 Dupont Street, Cleary, Nebraska, 2503", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649b179b29464f5b35", | |
| "index": 259, | |
| "balance": "$2,422.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cote Tillman", | |
| "company": "WAAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 596-3056", | |
| "address": "211 Hart Street, National, New Hampshire, 4010", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66452ce9eac06a84bd6", | |
| "index": 260, | |
| "balance": "$1,894.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Michele Hebert", | |
| "company": "UXMOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 457-2324", | |
| "address": "354 Wolcott Street, Winfred, Kentucky, 1811", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644ffc45838000761f", | |
| "index": 261, | |
| "balance": "$2,265.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bush Hinton", | |
| "company": "APPLICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 593-2468", | |
| "address": "544 Arlington Place, Babb, New Mexico, 2529", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66443dd1d08da060001", | |
| "index": 262, | |
| "balance": "$2,360.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reyna Harper", | |
| "company": "ACCUPHARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 408-2815", | |
| "address": "186 Lloyd Street, Morgandale, North Dakota, 5526", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66438bd2d3106b8ba0e", | |
| "index": 263, | |
| "balance": "$2,332.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lawson Goff", | |
| "company": "OPTICALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (862) 439-3568", | |
| "address": "632 Seabring Street, Coral, Kansas, 9781", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c08cc653fe91bedd", | |
| "index": 264, | |
| "balance": "$2,912.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Allison Delgado", | |
| "company": "KOFFEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 552-3521", | |
| "address": "520 Thames Street, Alfarata, Marshall Islands, 4203", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fc1794c3f2c132e3", | |
| "index": 265, | |
| "balance": "$1,056.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jenkins Bolton", | |
| "company": "NURPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 563-2420", | |
| "address": "765 Hale Avenue, Roy, South Dakota, 1884", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645d546d0dfebb2b55", | |
| "index": 266, | |
| "balance": "$1,868.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christian Lindsay", | |
| "company": "ORBIXTAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 564-2397", | |
| "address": "137 Main Street, Chilton, Wisconsin, 4037", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642189212b9c62fed0", | |
| "index": 267, | |
| "balance": "$1,917.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walters Wilder", | |
| "company": "ACCIDENCY", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 599-2616", | |
| "address": "952 School Lane, Zarephath, Idaho, 6672", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66434445f92b498dc09", | |
| "index": 268, | |
| "balance": "$1,303.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilkins Fuentes", | |
| "company": "KNOWLYSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 598-3308", | |
| "address": "117 Irving Street, Blue, Colorado, 7238", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648d9279b702086c57", | |
| "index": 269, | |
| "balance": "$1,266.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Karla Waters", | |
| "company": "IMANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (862) 468-2262", | |
| "address": "287 Canarsie Road, Bennett, Illinois, 9232", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ddc9b8e854b95c9c", | |
| "index": 270, | |
| "balance": "$2,465.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elizabeth Clements", | |
| "company": "REALMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 450-2029", | |
| "address": "326 Creamer Street, Brule, New York, 3142", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648adc71d2d41705e3", | |
| "index": 271, | |
| "balance": "$1,134.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Olga Raymond", | |
| "company": "CEMENTION", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 414-3715", | |
| "address": "949 Clay Street, Brandermill, Nevada, 2948", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ca234c4d80bdbecd", | |
| "index": 272, | |
| "balance": "$1,546.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rebekah Battle", | |
| "company": "ISOLOGIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 463-3227", | |
| "address": "871 Everit Street, Coyote, Palau, 8625", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e6cf55e37149c071", | |
| "index": 273, | |
| "balance": "$1,068.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Schwartz House", | |
| "company": "TWIIST", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 584-2257", | |
| "address": "457 Dearborn Court, Dodge, Tennessee, 2260", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664316578c59a08fc11", | |
| "index": 274, | |
| "balance": "$1,861.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcleod Haley", | |
| "company": "IMKAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 431-2342", | |
| "address": "247 Lincoln Avenue, Albrightsville, Montana, 6619", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b898db3b76ef2dc8", | |
| "index": 275, | |
| "balance": "$1,149.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gill Dunn", | |
| "company": "EXTRAGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 584-3436", | |
| "address": "533 Concord Street, Fairhaven, Arizona, 9872", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66497620642ddabf990", | |
| "index": 276, | |
| "balance": "$3,560.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Letha Vincent", | |
| "company": "VICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 599-2422", | |
| "address": "296 Wolf Place, Martell, North Carolina, 165", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664576273cb52a9f301", | |
| "index": 277, | |
| "balance": "$3,532.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Odessa Hopper", | |
| "company": "PHUEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 470-3374", | |
| "address": "760 Highland Boulevard, Comptche, Rhode Island, 1353", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646c8482fbf6f51d91", | |
| "index": 278, | |
| "balance": "$2,270.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "June Sanchez", | |
| "company": "EVIDENDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 422-3158", | |
| "address": "714 Herkimer Street, Guthrie, Ohio, 1373", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c5eafecc8ff9b9ad", | |
| "index": 279, | |
| "balance": "$2,970.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sofia Joseph", | |
| "company": "INTERODEO", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 439-3217", | |
| "address": "757 Lester Court, Westerville, Guam, 9665", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66404a0fb02ecdfb7c6", | |
| "index": 280, | |
| "balance": "$3,807.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Odom Bass", | |
| "company": "VOLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 505-3361", | |
| "address": "875 Kay Court, Newkirk, Louisiana, 5425", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66477037ab047a79eab", | |
| "index": 281, | |
| "balance": "$3,948.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ware Mcgowan", | |
| "company": "CONJURICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 475-2852", | |
| "address": "345 Stuyvesant Avenue, Leeper, Utah, 6799", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647519f5bc313a2896", | |
| "index": 282, | |
| "balance": "$3,606.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terri Stanley", | |
| "company": "BLUEGRAIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 421-3098", | |
| "address": "581 Nixon Court, Wattsville, Vermont, 9489", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644959380e6cfc3cc8", | |
| "index": 283, | |
| "balance": "$3,506.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flores Sexton", | |
| "company": "FLEETMIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 489-3770", | |
| "address": "432 Seton Place, Belvoir, New Jersey, 8680", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645cdc16efdcbe4c0b", | |
| "index": 284, | |
| "balance": "$2,409.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brooks Watts", | |
| "company": "BIZMATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (953) 514-2707", | |
| "address": "957 Eastern Parkway, Taycheedah, Washington, 987", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664515b6b707b0c2546", | |
| "index": 285, | |
| "balance": "$1,067.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lora Donaldson", | |
| "company": "QUIZKA", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 578-2930", | |
| "address": "291 Eagle Street, Templeton, California, 9131", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b76773e58651fa2a", | |
| "index": 286, | |
| "balance": "$1,390.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morgan Martin", | |
| "company": "JUNIPOOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 542-3873", | |
| "address": "427 Lincoln Road, Remington, Arkansas, 8848", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641d62ca5b9798b1ef", | |
| "index": 287, | |
| "balance": "$2,432.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aguilar Whitney", | |
| "company": "QOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 441-2527", | |
| "address": "770 Varick Avenue, Fruitdale, Iowa, 7461", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f18825084a4d4afe", | |
| "index": 288, | |
| "balance": "$3,585.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Snyder Ashley", | |
| "company": "REMOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 503-3538", | |
| "address": "884 Highlawn Avenue, Torboy, Minnesota, 7842", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649affd989e5bf3d2e", | |
| "index": 289, | |
| "balance": "$3,941.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tonya Mckee", | |
| "company": "INTRAWEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 580-2008", | |
| "address": "773 Baycliff Terrace, Elbert, Oklahoma, 5312", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640a5b76f9e2041c48", | |
| "index": 290, | |
| "balance": "$2,270.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lilly Gilliam", | |
| "company": "OZEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 581-2597", | |
| "address": "115 Kingsland Avenue, Wadsworth, Florida, 2629", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a48c9e6f5208fd11", | |
| "index": 291, | |
| "balance": "$3,300.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mendez Farley", | |
| "company": "MARQET", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 550-2868", | |
| "address": "904 Allen Avenue, Bluetown, District Of Columbia, 568", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b5d90a8416632a49", | |
| "index": 292, | |
| "balance": "$3,384.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joyner Conley", | |
| "company": "COMTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 436-2677", | |
| "address": "839 Alabama Avenue, Rowe, Mississippi, 8738", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e5e412401cfd3a52", | |
| "index": 293, | |
| "balance": "$2,138.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelton Reed", | |
| "company": "DIGINETIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 582-3854", | |
| "address": "773 Goodwin Place, Harrison, Missouri, 6307", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664316af1693e8885d2", | |
| "index": 294, | |
| "balance": "$3,340.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holder Contreras", | |
| "company": "THREDZ", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 564-2780", | |
| "address": "388 Schenck Place, Grantville, Massachusetts, 2702", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664991d5238b57a6f85", | |
| "index": 295, | |
| "balance": "$3,699.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ingrid Tyson", | |
| "company": "EYEWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 449-2962", | |
| "address": "520 Ira Court, Hiseville, Texas, 715", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640c61d3d9c5b1b207", | |
| "index": 296, | |
| "balance": "$3,382.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dale Brennan", | |
| "company": "GUSHKOOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 449-2468", | |
| "address": "596 Louise Terrace, Riegelwood, Georgia, 9005", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66412bffa3caaf95828", | |
| "index": 297, | |
| "balance": "$2,314.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Faulkner Wade", | |
| "company": "TERAPRENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 461-3362", | |
| "address": "153 Losee Terrace, Thomasville, American Samoa, 4956", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ae880c79742db2ec", | |
| "index": 298, | |
| "balance": "$3,171.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Daniels Barron", | |
| "company": "CALCU", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 423-2699", | |
| "address": "592 Grant Avenue, Duryea, Indiana, 9288", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cf4ccbcbd8c08854", | |
| "index": 299, | |
| "balance": "$3,036.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Johanna Fisher", | |
| "company": "GEOFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 448-3373", | |
| "address": "474 Navy Street, Dubois, Delaware, 6579", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b05507ee5537469d", | |
| "index": 300, | |
| "balance": "$1,566.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leonor Reese", | |
| "company": "BEZAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 429-2537", | |
| "address": "746 Schermerhorn Street, Loomis, Puerto Rico, 6757", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66432df29513c3a1b06", | |
| "index": 301, | |
| "balance": "$1,371.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ophelia Park", | |
| "company": "KEGULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (935) 567-2111", | |
| "address": "252 Wilson Avenue, Alamo, Connecticut, 9642", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d4a6779ffeb6a0ad", | |
| "index": 302, | |
| "balance": "$3,425.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Osborn Briggs", | |
| "company": "HAIRPORT", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 520-3829", | |
| "address": "774 Barwell Terrace, Sardis, Maryland, 9220", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646184dc75ddc19a24", | |
| "index": 303, | |
| "balance": "$3,813.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Adeline Thornton", | |
| "company": "AQUASURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 431-3383", | |
| "address": "623 Eaton Court, Ferney, Virginia, 8428", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66458ba41ec4f10185e", | |
| "index": 304, | |
| "balance": "$1,660.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deena Joyce", | |
| "company": "TELEPARK", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 422-3083", | |
| "address": "636 Strong Place, Jacksonwald, South Carolina, 2066", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649991661fcae15cf0", | |
| "index": 305, | |
| "balance": "$2,067.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ada Saunders", | |
| "company": "BOVIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 536-2629", | |
| "address": "414 Stillwell Place, Strong, Alabama, 3846", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664da532a531f84cdaf", | |
| "index": 306, | |
| "balance": "$3,001.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nettie Mckay", | |
| "company": "ROUGHIES", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 533-2825", | |
| "address": "310 Cleveland Street, Clayville, Alaska, 5962", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643e6c64f50f9b1317", | |
| "index": 307, | |
| "balance": "$2,588.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Claudette Sellers", | |
| "company": "QNEKT", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 403-3770", | |
| "address": "169 Oakland Place, Eastmont, Wyoming, 7762", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643b12059c89c55151", | |
| "index": 308, | |
| "balance": "$2,770.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Victoria Torres", | |
| "company": "SONIQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 489-2784", | |
| "address": "675 Bragg Street, Statenville, Virgin Islands, 9072", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f7e1fa0c96edb579", | |
| "index": 309, | |
| "balance": "$2,857.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Norman Noble", | |
| "company": "CRUSTATIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 501-2655", | |
| "address": "141 Leonard Street, Cotopaxi, Hawaii, 936", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649c5d93930a21732b", | |
| "index": 310, | |
| "balance": "$2,427.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eddie Maynard", | |
| "company": "NIXELT", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 525-3337", | |
| "address": "925 Turnbull Avenue, Orovada, Maine, 3009", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66487d64341aff00954", | |
| "index": 311, | |
| "balance": "$2,646.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Traci Hammond", | |
| "company": "QIMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 555-3554", | |
| "address": "818 Franklin Avenue, Waikele, Federated States Of Micronesia, 2017", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66487002bb4ecabc7e7", | |
| "index": 312, | |
| "balance": "$1,509.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Summers Kelly", | |
| "company": "MAGNEATO", | |
| "email": "[email protected]", | |
| "phone": "+1 (924) 523-2499", | |
| "address": "224 Gunther Place, Collins, Northern Mariana Islands, 2410", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647d72ecf0361c6f7c", | |
| "index": 313, | |
| "balance": "$1,179.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Calhoun Riddle", | |
| "company": "TRANSLINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 560-2475", | |
| "address": "180 Bancroft Place, Coaldale, Pennsylvania, 6661", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c892df8bfc50f85f", | |
| "index": 314, | |
| "balance": "$1,337.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shana Long", | |
| "company": "INSURETY", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 507-2343", | |
| "address": "803 Townsend Street, Wilsonia, Oregon, 7263", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66471f36ad2bf255434", | |
| "index": 315, | |
| "balance": "$2,005.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tanya Wolfe", | |
| "company": "ISOPOP", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 471-2733", | |
| "address": "673 Norman Avenue, Interlochen, West Virginia, 1231", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e519690d5aac938e", | |
| "index": 316, | |
| "balance": "$1,275.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Torres Rowe", | |
| "company": "NETAGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 432-3256", | |
| "address": "986 Knickerbocker Avenue, Trail, Nebraska, 2454", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a7adf23878067231", | |
| "index": 317, | |
| "balance": "$1,478.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cabrera Fulton", | |
| "company": "GOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 508-3542", | |
| "address": "119 Hutchinson Court, Moscow, New Hampshire, 6992", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66474fcf8e0a51d5f40", | |
| "index": 318, | |
| "balance": "$1,589.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Enid Reid", | |
| "company": "MAGNAFONE", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 416-3389", | |
| "address": "432 Metrotech Courtr, Norfolk, Kentucky, 4419", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647ec1770aa6a419ed", | |
| "index": 319, | |
| "balance": "$1,463.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pacheco Johns", | |
| "company": "ELEMANTRA", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 596-2136", | |
| "address": "545 Green Street, Colton, New Mexico, 7356", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664816c6a27dc6c66a4", | |
| "index": 320, | |
| "balance": "$3,845.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maureen Madden", | |
| "company": "EARTHMARK", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 577-3174", | |
| "address": "913 Pierrepont Street, Orviston, North Dakota, 7727", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b651932555612bf1", | |
| "index": 321, | |
| "balance": "$2,855.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Santiago Harmon", | |
| "company": "EXOSPACE", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 545-3473", | |
| "address": "844 Cheever Place, Wawona, Kansas, 3888", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649c63aa56c09e1fce", | |
| "index": 322, | |
| "balance": "$1,744.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynn Rice", | |
| "company": "SOLAREN", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 409-3172", | |
| "address": "643 Saratoga Avenue, Orason, Marshall Islands, 1261", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66407aa0a48d8f05355", | |
| "index": 323, | |
| "balance": "$2,528.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Keri Brown", | |
| "company": "TSUNAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 424-2720", | |
| "address": "750 Plaza Street, Oley, South Dakota, 5924", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b4543152b6bfd3cb", | |
| "index": 324, | |
| "balance": "$2,040.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brock Mcguire", | |
| "company": "KOOGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 446-2030", | |
| "address": "969 Box Street, Summerset, Wisconsin, 8683", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eafb6565367b0755", | |
| "index": 325, | |
| "balance": "$2,882.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bertie Holland", | |
| "company": "NURALI", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 469-2363", | |
| "address": "981 Clove Road, Omar, Idaho, 6909", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642efd72db9cb86bc9", | |
| "index": 326, | |
| "balance": "$3,376.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccarthy Koch", | |
| "company": "ANARCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 410-3926", | |
| "address": "312 Chestnut Avenue, Bordelonville, Colorado, 8119", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646a96189293b1a03b", | |
| "index": 327, | |
| "balance": "$2,059.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Paul Holden", | |
| "company": "DANCERITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 455-3982", | |
| "address": "191 Cropsey Avenue, Townsend, Illinois, 6594", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ba6d91e2671b8395", | |
| "index": 328, | |
| "balance": "$3,245.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Doreen Mathis", | |
| "company": "PAPRICUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 568-2057", | |
| "address": "693 Irving Place, Richmond, New York, 8298", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645486a214dd7b169b", | |
| "index": 329, | |
| "balance": "$1,767.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gates Santos", | |
| "company": "BIOLIVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 415-2085", | |
| "address": "475 Forbell Street, Brooktrails, Nevada, 687", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642a31426012fb0614", | |
| "index": 330, | |
| "balance": "$3,736.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marlene Robertson", | |
| "company": "IMAGINART", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 529-3103", | |
| "address": "584 Elmwood Avenue, Kohatk, Palau, 547", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647a546301f7674a3a", | |
| "index": 331, | |
| "balance": "$3,390.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hopper Bright", | |
| "company": "EMPIRICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 549-3180", | |
| "address": "259 Danforth Street, Machias, Tennessee, 8345", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664833b13b61b8e5128", | |
| "index": 332, | |
| "balance": "$2,638.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gordon Lynch", | |
| "company": "BOINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 416-3395", | |
| "address": "248 Homecrest Avenue, Faywood, Montana, 944", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b04af33df5c2671b", | |
| "index": 333, | |
| "balance": "$3,624.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harrell Davis", | |
| "company": "FLOTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (953) 532-2811", | |
| "address": "834 Lott Avenue, Chical, Arizona, 9334", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664edcbd4ab447d1732", | |
| "index": 334, | |
| "balance": "$1,031.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Baird Ingram", | |
| "company": "AQUOAVO", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 521-3096", | |
| "address": "777 Bills Place, Forbestown, North Carolina, 5265", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647e78ca074e1b5b22", | |
| "index": 335, | |
| "balance": "$2,064.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nelda Deleon", | |
| "company": "GEEKOLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 468-2695", | |
| "address": "709 Wortman Avenue, Hailesboro, Rhode Island, 4068", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f21eaa58fcf3920a", | |
| "index": 336, | |
| "balance": "$1,140.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Peterson Fletcher", | |
| "company": "ACRODANCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 416-2466", | |
| "address": "336 Osborn Street, Matheny, Ohio, 5964", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646ea5f699b0c70e7e", | |
| "index": 337, | |
| "balance": "$1,008.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lamb Robbins", | |
| "company": "BILLMED", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 542-2758", | |
| "address": "699 Sedgwick Street, Garnet, Guam, 7527", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c25b0244cf5a54e5", | |
| "index": 338, | |
| "balance": "$2,640.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Church Decker", | |
| "company": "ROTODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 465-2849", | |
| "address": "408 Falmouth Street, Beaverdale, Louisiana, 3412", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664df9f433dabd56f9c", | |
| "index": 339, | |
| "balance": "$3,727.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lola Hutchinson", | |
| "company": "FUTURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 401-2794", | |
| "address": "975 Hanover Place, Cecilia, Utah, 769", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647f91ea7937654fff", | |
| "index": 340, | |
| "balance": "$2,219.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Willie Beard", | |
| "company": "PROWASTE", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 585-2122", | |
| "address": "843 Olive Street, Wikieup, Vermont, 4868", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664acc3e09592cc633b", | |
| "index": 341, | |
| "balance": "$1,368.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sears Rivera", | |
| "company": "REVERSUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 418-2999", | |
| "address": "209 Stewart Street, Wollochet, New Jersey, 3914", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641c82c73977a17d62", | |
| "index": 342, | |
| "balance": "$1,264.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carey Bonner", | |
| "company": "ELECTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 441-3290", | |
| "address": "542 Leonora Court, Dragoon, Washington, 5168", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66426aee11248d42035", | |
| "index": 343, | |
| "balance": "$3,547.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lilia Austin", | |
| "company": "REALYSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 462-2564", | |
| "address": "571 Pioneer Street, Reno, California, 1701", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647a07f3cba7e0c6a7", | |
| "index": 344, | |
| "balance": "$1,386.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yates Albert", | |
| "company": "MANTRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 445-3604", | |
| "address": "217 Loring Avenue, Neibert, Arkansas, 3348", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646b52528e162cafab", | |
| "index": 345, | |
| "balance": "$2,312.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Letitia Norman", | |
| "company": "EURON", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 442-3426", | |
| "address": "694 Vine Street, Hartsville/Hartley, Iowa, 5463", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d4fa47b0207ac06e", | |
| "index": 346, | |
| "balance": "$1,071.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Henrietta Pollard", | |
| "company": "RODEOCEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 490-3762", | |
| "address": "543 Garden Street, Belva, Minnesota, 8024", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e91bc907bcb2a359", | |
| "index": 347, | |
| "balance": "$1,000.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marissa Duncan", | |
| "company": "FORTEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (945) 451-2295", | |
| "address": "917 Prospect Place, Carrsville, Oklahoma, 8919", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e6badaba929a6b54", | |
| "index": 348, | |
| "balance": "$3,769.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeannie Rush", | |
| "company": "ZAPPIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 452-3275", | |
| "address": "887 Jefferson Avenue, Haena, Florida, 3635", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f20246798de9b15a", | |
| "index": 349, | |
| "balance": "$3,938.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Castillo Fox", | |
| "company": "ZEROLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 404-2174", | |
| "address": "256 Colin Place, Juntura, District Of Columbia, 2165", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649f6923f23485c5eb", | |
| "index": 350, | |
| "balance": "$1,204.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Summer Cabrera", | |
| "company": "INFOTRIPS", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 446-2198", | |
| "address": "639 Willow Place, Ripley, Mississippi, 9473", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cbfeea4499e6d443", | |
| "index": 351, | |
| "balance": "$3,417.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Newton Holcomb", | |
| "company": "FIREWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 523-3611", | |
| "address": "490 Gain Court, Savannah, Missouri, 2664", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66456e814b564c62b6d", | |
| "index": 352, | |
| "balance": "$2,895.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Newman Jackson", | |
| "company": "EXERTA", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 566-3793", | |
| "address": "601 Tech Place, Toftrees, Massachusetts, 4234", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664402154c64abf6f67", | |
| "index": 353, | |
| "balance": "$3,712.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lenora Schwartz", | |
| "company": "UTARA", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 531-2358", | |
| "address": "781 Roebling Street, Gorst, Texas, 9464", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644c6917cfcd3b46ac", | |
| "index": 354, | |
| "balance": "$1,101.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rios Dickson", | |
| "company": "DOGNOST", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 449-2654", | |
| "address": "179 Harkness Avenue, Blairstown, Georgia, 7411", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fbd506d6b8405373", | |
| "index": 355, | |
| "balance": "$1,293.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lowe Soto", | |
| "company": "ENTALITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 436-2899", | |
| "address": "241 Pacific Street, Delshire, American Samoa, 3000", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641ef510092bf2b1de", | |
| "index": 356, | |
| "balance": "$2,043.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Georgette Riley", | |
| "company": "TURNABOUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 582-2400", | |
| "address": "898 Overbaugh Place, Dahlen, Indiana, 365", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c237f3473ca44903", | |
| "index": 357, | |
| "balance": "$3,570.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hope Pitts", | |
| "company": "OVOLO", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 522-2886", | |
| "address": "433 Jewel Street, Kent, Delaware, 1338", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664da8f227bb870ee75", | |
| "index": 358, | |
| "balance": "$1,887.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nelson Holloway", | |
| "company": "AUTOGRATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 503-2411", | |
| "address": "309 Quincy Street, Zortman, Puerto Rico, 7082", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d45975514043e69e", | |
| "index": 359, | |
| "balance": "$1,923.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mildred Benson", | |
| "company": "CALLFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 459-3797", | |
| "address": "730 Conklin Avenue, Stollings, Connecticut, 6801", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e6947136f6df2db4", | |
| "index": 360, | |
| "balance": "$2,315.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Decker Mccoy", | |
| "company": "EXIAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 578-2252", | |
| "address": "578 Montrose Avenue, Leyner, Maryland, 1162", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643ad5172adacf1d2d", | |
| "index": 361, | |
| "balance": "$3,267.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Boyle Mooney", | |
| "company": "COMVENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 546-3665", | |
| "address": "375 Oceanview Avenue, Joppa, Virginia, 4117", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66442ac245edd33113e", | |
| "index": 362, | |
| "balance": "$1,568.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cannon Osborn", | |
| "company": "WARETEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 459-2807", | |
| "address": "425 Hunts Lane, Escondida, South Carolina, 8285", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641e86fc23a452771f", | |
| "index": 363, | |
| "balance": "$3,694.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garcia Mendez", | |
| "company": "SNOWPOKE", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 560-2133", | |
| "address": "310 Bushwick Place, Beechmont, Alabama, 6667", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664137ef6fef6925ec6", | |
| "index": 364, | |
| "balance": "$3,260.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Zimmerman Mcclain", | |
| "company": "MYOPIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 432-3387", | |
| "address": "773 Visitation Place, Adamstown, Alaska, 5244", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66487f7eb119bb3798a", | |
| "index": 365, | |
| "balance": "$2,065.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brianna Melton", | |
| "company": "OTHERSIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 556-3857", | |
| "address": "647 Benson Avenue, Kenwood, Wyoming, 6248", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fd8bb62d9deba728", | |
| "index": 366, | |
| "balance": "$3,159.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rochelle Daniel", | |
| "company": "VALREDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 503-3706", | |
| "address": "542 Delevan Street, Coultervillle, Virgin Islands, 3495", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646e96e444e741e465", | |
| "index": 367, | |
| "balance": "$3,075.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Olsen Potter", | |
| "company": "KIGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 600-3635", | |
| "address": "544 Guernsey Street, Leroy, Hawaii, 6996", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66421af6ff279bc1aa7", | |
| "index": 368, | |
| "balance": "$1,330.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fisher Nolan", | |
| "company": "JETSILK", | |
| "email": "[email protected]", | |
| "phone": "+1 (817) 415-2014", | |
| "address": "598 Wythe Avenue, Gerber, Maine, 8629", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66445c48836ef0514b6", | |
| "index": 369, | |
| "balance": "$1,566.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Slater Mejia", | |
| "company": "SUNCLIPSE", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 510-2367", | |
| "address": "500 Verona Street, Westboro, Federated States Of Micronesia, 9920", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645a81bbad817c5c37", | |
| "index": 370, | |
| "balance": "$2,924.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Virgie Chaney", | |
| "company": "ANIVET", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 513-2711", | |
| "address": "764 Applegate Court, Cochranville, Northern Mariana Islands, 9443", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fe0ee648530b3e30", | |
| "index": 371, | |
| "balance": "$3,188.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fanny Mayer", | |
| "company": "BUZZNESS", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 596-3362", | |
| "address": "553 Eldert Lane, Baden, Pennsylvania, 6679", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66429f5435b1a622a2a", | |
| "index": 372, | |
| "balance": "$1,551.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sweet Dillon", | |
| "company": "ENVIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 470-2842", | |
| "address": "951 Portland Avenue, Albany, Oregon, 155", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b22d4d342d7505df", | |
| "index": 373, | |
| "balance": "$1,455.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morales Knox", | |
| "company": "ONTALITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 562-3330", | |
| "address": "700 Willmohr Street, Driftwood, West Virginia, 879", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e5fcc765077e9f40", | |
| "index": 374, | |
| "balance": "$2,364.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stanton Sherman", | |
| "company": "ENDIPINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 492-3469", | |
| "address": "291 Dewey Place, Otranto, Nebraska, 9572", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66429558a779b5ddd3a", | |
| "index": 375, | |
| "balance": "$1,300.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ford Kemp", | |
| "company": "KINDALOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 495-3562", | |
| "address": "224 Railroad Avenue, Gilmore, New Hampshire, 6523", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e8a24b678ce314c6", | |
| "index": 376, | |
| "balance": "$1,280.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vang Fitzpatrick", | |
| "company": "QUINTITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 432-3755", | |
| "address": "401 Fair Street, Mayfair, Kentucky, 5633", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648f63001a7976195a", | |
| "index": 377, | |
| "balance": "$2,324.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fitzpatrick Walters", | |
| "company": "BEADZZA", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 529-2127", | |
| "address": "209 Sapphire Street, Spelter, New Mexico, 5130", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e53686ba7cac4ec9", | |
| "index": 378, | |
| "balance": "$3,698.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margret Good", | |
| "company": "MEDICROIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 524-2080", | |
| "address": "218 Oxford Walk, Lopezo, North Dakota, 7283", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66419d3399acfd4e734", | |
| "index": 379, | |
| "balance": "$2,574.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kirk Ortiz", | |
| "company": "TALKALOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 420-3620", | |
| "address": "410 Caton Place, Limestone, Kansas, 7203", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647be07fd477c83152", | |
| "index": 380, | |
| "balance": "$3,140.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terry Rivas", | |
| "company": "CENTURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 596-2179", | |
| "address": "491 Kaufman Place, Basye, Marshall Islands, 1167", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66480c56905eb440855", | |
| "index": 381, | |
| "balance": "$3,191.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Calderon Snider", | |
| "company": "UNIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 590-3331", | |
| "address": "874 Broadway , Bannock, South Dakota, 5106", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640d132dae49a2a8a2", | |
| "index": 382, | |
| "balance": "$3,859.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patel Moon", | |
| "company": "ZILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 401-2670", | |
| "address": "872 Bevy Court, Mathews, Wisconsin, 9632", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645eb27f35ac4c4be4", | |
| "index": 383, | |
| "balance": "$2,330.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fry Owens", | |
| "company": "OBONES", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 458-2813", | |
| "address": "877 Schenck Street, Dupuyer, Idaho, 7575", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a59b2a399c610d12", | |
| "index": 384, | |
| "balance": "$2,312.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holmes Oliver", | |
| "company": "VISALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 437-2455", | |
| "address": "819 Dunne Place, Ypsilanti, Colorado, 4375", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66402efb8639c17e473", | |
| "index": 385, | |
| "balance": "$3,847.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcpherson Valentine", | |
| "company": "COGENTRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 491-2279", | |
| "address": "120 Miami Court, Cedarville, Illinois, 8860", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d0e3b6352158c3d6", | |
| "index": 386, | |
| "balance": "$1,549.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guy Livingston", | |
| "company": "EARGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 593-2051", | |
| "address": "734 Kansas Place, Hamilton, New York, 7854", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647306a3f32f9b3165", | |
| "index": 387, | |
| "balance": "$3,533.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Juarez Walker", | |
| "company": "INVENTURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 487-2683", | |
| "address": "253 Indiana Place, Sexton, Nevada, 1355", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664eaed7ceff8c3c104", | |
| "index": 388, | |
| "balance": "$3,175.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Avila Wolf", | |
| "company": "NSPIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 531-2035", | |
| "address": "675 Winthrop Street, Marshall, Palau, 5111", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640d6f930105b1d151", | |
| "index": 389, | |
| "balance": "$3,823.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oconnor Gonzales", | |
| "company": "UTARIAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 454-3153", | |
| "address": "261 Ryder Avenue, Salvo, Tennessee, 4104", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cc1c62b607c13bd5", | |
| "index": 390, | |
| "balance": "$1,628.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Parker Russo", | |
| "company": "GLASSTEP", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 471-2192", | |
| "address": "848 Balfour Place, Cressey, Montana, 1157", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664913bf6f4a33fec1a", | |
| "index": 391, | |
| "balance": "$2,186.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shannon Rogers", | |
| "company": "BARKARAMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 421-3224", | |
| "address": "810 Boynton Place, Accoville, Arizona, 9419", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ff4d4807522133c7", | |
| "index": 392, | |
| "balance": "$1,650.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angelica Hayden", | |
| "company": "PASTURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 559-3230", | |
| "address": "135 Seaview Avenue, Kraemer, North Carolina, 4855", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640481ca7fa41eab82", | |
| "index": 393, | |
| "balance": "$3,047.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Graciela Edwards", | |
| "company": "ATGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 484-2963", | |
| "address": "107 Girard Street, Delwood, Rhode Island, 958", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66494be1357a5261548", | |
| "index": 394, | |
| "balance": "$3,973.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vickie Irwin", | |
| "company": "QUALITERN", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 494-3542", | |
| "address": "703 Porter Avenue, Choctaw, Ohio, 1808", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66451b1907b7a51df84", | |
| "index": 395, | |
| "balance": "$2,382.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lakeisha Foreman", | |
| "company": "MARTGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 492-2445", | |
| "address": "740 Lefferts Avenue, Fulford, Guam, 5994", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664585213573164f317", | |
| "index": 396, | |
| "balance": "$1,430.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Staci Wilkerson", | |
| "company": "IPLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 505-2006", | |
| "address": "387 Stryker Court, Herald, Louisiana, 8399", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a37e4d12d666d907", | |
| "index": 397, | |
| "balance": "$2,509.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Park Lindsey", | |
| "company": "EVENTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 540-3162", | |
| "address": "945 Dover Street, Connerton, Utah, 3619", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66448429cb24642b23c", | |
| "index": 398, | |
| "balance": "$3,130.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melisa Martinez", | |
| "company": "EMERGENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 455-3817", | |
| "address": "928 Provost Street, Chamizal, Vermont, 288", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664189a18bbb8f371a1", | |
| "index": 399, | |
| "balance": "$1,353.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Doris Perez", | |
| "company": "HINWAY", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 533-3075", | |
| "address": "559 Halleck Street, Saranap, New Jersey, 2475", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664331d36bf7c7d2ea0", | |
| "index": 400, | |
| "balance": "$1,565.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vanessa Puckett", | |
| "company": "KONGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 412-2225", | |
| "address": "647 Monaco Place, Imperial, Washington, 2210", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640f5282a926b91ad3", | |
| "index": 401, | |
| "balance": "$3,934.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beverley Ramos", | |
| "company": "CONFRENZY", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 429-2474", | |
| "address": "753 Newton Street, Fairmount, California, 9523", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c9bb35043497cc1e", | |
| "index": 402, | |
| "balance": "$1,318.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Emily Browning", | |
| "company": "MOLTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 444-2104", | |
| "address": "740 Berry Street, Yardville, Arkansas, 9285", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a27fabd66ed15ae0", | |
| "index": 403, | |
| "balance": "$2,566.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eula Robinson", | |
| "company": "BYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 431-2893", | |
| "address": "939 Crystal Street, Cuylerville, Iowa, 9350", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cbfc17d7015950f0", | |
| "index": 404, | |
| "balance": "$1,769.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margie Stein", | |
| "company": "KOZGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 577-3861", | |
| "address": "752 Dictum Court, Deltaville, Minnesota, 5597", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664db5c3f5b0c0c744a", | |
| "index": 405, | |
| "balance": "$1,267.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Craft Padilla", | |
| "company": "SUPREMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 455-3744", | |
| "address": "513 Robert Street, Edgewater, Oklahoma, 2359", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a69aa383fb57c9cf", | |
| "index": 406, | |
| "balance": "$1,868.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hester Patel", | |
| "company": "TOURMANIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 567-3897", | |
| "address": "348 Bergen Place, Greenfields, Florida, 7216", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66483593e79d2b7cad8", | |
| "index": 407, | |
| "balance": "$2,027.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kimberly Patterson", | |
| "company": "INCUBUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 481-3644", | |
| "address": "163 Ovington Avenue, Barrelville, District Of Columbia, 1184", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66439cbb1e8c8afa350", | |
| "index": 408, | |
| "balance": "$1,913.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Klein Duran", | |
| "company": "XTH", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 490-3234", | |
| "address": "545 Grand Avenue, Hilltop, Mississippi, 3197", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b79f1e572adb18f0", | |
| "index": 409, | |
| "balance": "$3,002.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Charmaine Haynes", | |
| "company": "XINWARE", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 495-2152", | |
| "address": "583 Sutton Street, Lemoyne, Missouri, 1884", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649107f4dbb54ac4b7", | |
| "index": 410, | |
| "balance": "$2,340.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marva Marks", | |
| "company": "ZIDANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 456-3957", | |
| "address": "637 Conduit Boulevard, Veyo, Massachusetts, 2812", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66461f1e16ec238b69d", | |
| "index": 411, | |
| "balance": "$1,880.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Washington Yang", | |
| "company": "CENTREGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 579-3321", | |
| "address": "568 Atlantic Avenue, Bloomington, Texas, 2560", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66425d8db16985daab9", | |
| "index": 412, | |
| "balance": "$1,380.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeannette Alvarez", | |
| "company": "EXOZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 402-2773", | |
| "address": "380 Wogan Terrace, Wakulla, Georgia, 461", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ffc215b4e3b2b1e4", | |
| "index": 413, | |
| "balance": "$2,563.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angie Wilcox", | |
| "company": "ZANITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 401-3013", | |
| "address": "741 Madoc Avenue, Olney, American Samoa, 1358", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66432e44d249a201312", | |
| "index": 414, | |
| "balance": "$2,643.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Atkins Dickerson", | |
| "company": "ZOLAVO", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 552-3711", | |
| "address": "755 Auburn Place, Chaparrito, Indiana, 5824", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f305088a6494d87f", | |
| "index": 415, | |
| "balance": "$1,729.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Banks Emerson", | |
| "company": "CORPORANA", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 405-2934", | |
| "address": "691 Hoyts Lane, Fontanelle, Delaware, 5519", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66445352c2fb5058cc2", | |
| "index": 416, | |
| "balance": "$3,851.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Orr Kaufman", | |
| "company": "DEMINIMUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 402-2686", | |
| "address": "869 Woodhull Street, Henrietta, Puerto Rico, 6342", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ac1cd2276ac1063a", | |
| "index": 417, | |
| "balance": "$2,887.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elise Grimes", | |
| "company": "ZILLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 591-2675", | |
| "address": "433 Hubbard Street, Blackgum, Connecticut, 2296", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6649e72be3e23fb261c", | |
| "index": 418, | |
| "balance": "$1,627.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lenore Erickson", | |
| "company": "VETRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 592-3567", | |
| "address": "568 Boulevard Court, Odessa, Maryland, 4444", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66455e11db82fa45710", | |
| "index": 419, | |
| "balance": "$2,603.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Collier Stuart", | |
| "company": "PROGENEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 558-3282", | |
| "address": "956 Alice Court, Oretta, Virginia, 8042", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640387b356b8ac827f", | |
| "index": 420, | |
| "balance": "$1,796.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ramsey Combs", | |
| "company": "ZYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 444-3553", | |
| "address": "741 Locust Avenue, Sims, South Carolina, 5624", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d6fa0ace88656464", | |
| "index": 421, | |
| "balance": "$3,742.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Adela Doyle", | |
| "company": "BRISTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 415-3587", | |
| "address": "928 Central Avenue, Kula, Alabama, 9429", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e52ce83dbeb672de", | |
| "index": 422, | |
| "balance": "$1,467.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilkerson Mckenzie", | |
| "company": "OPTICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 493-2949", | |
| "address": "219 Malta Street, Sultana, Alaska, 4276", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640f1008f34bc728f8", | |
| "index": 423, | |
| "balance": "$1,414.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clarke Mcpherson", | |
| "company": "BLUPLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 556-2542", | |
| "address": "761 Lloyd Court, Kieler, Wyoming, 8860", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646d33f03e569c4a41", | |
| "index": 424, | |
| "balance": "$1,162.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Concepcion Slater", | |
| "company": "QUILM", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 472-2548", | |
| "address": "689 Cambridge Place, Waiohinu, Virgin Islands, 2230", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664de92ee4bac283132", | |
| "index": 425, | |
| "balance": "$3,052.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jensen Macdonald", | |
| "company": "VORATAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 421-3854", | |
| "address": "600 Tabor Court, Idledale, Hawaii, 6751", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a9fbcae769e9652b", | |
| "index": 426, | |
| "balance": "$1,984.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Snider Snow", | |
| "company": "DANJA", | |
| "email": "[email protected]", | |
| "phone": "+1 (860) 504-2680", | |
| "address": "846 Melba Court, Avoca, Maine, 5563", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664858f91bbf1f77099", | |
| "index": 427, | |
| "balance": "$2,541.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lindsey Keller", | |
| "company": "COMVEYOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 592-3681", | |
| "address": "389 Church Avenue, Sunbury, Federated States Of Micronesia, 2624", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f57cce199187179b", | |
| "index": 428, | |
| "balance": "$3,690.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Combs Cooke", | |
| "company": "MEGALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 559-2890", | |
| "address": "620 Clermont Avenue, Umapine, Northern Mariana Islands, 6540", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66460ec48b03d8f6128", | |
| "index": 429, | |
| "balance": "$2,963.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yvonne Moss", | |
| "company": "TELLIFLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 518-3278", | |
| "address": "971 Rockaway Avenue, Freelandville, Pennsylvania, 7313", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643adc6d0710b6c640", | |
| "index": 430, | |
| "balance": "$2,962.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hayden Hurst", | |
| "company": "EVEREST", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 550-3227", | |
| "address": "536 Radde Place, Fidelis, Oregon, 271", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640e2fb65bef901f3a", | |
| "index": 431, | |
| "balance": "$1,266.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shauna Reyes", | |
| "company": "SNIPS", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 426-3915", | |
| "address": "504 Delmonico Place, Cascades, West Virginia, 7012", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664fd3319b308a06072", | |
| "index": 432, | |
| "balance": "$1,216.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carol Miles", | |
| "company": "SLOGANAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 426-3027", | |
| "address": "874 John Street, Rodanthe, Nebraska, 3164", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664de995824b2c16818", | |
| "index": 433, | |
| "balance": "$1,458.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Langley Whitley", | |
| "company": "SHEPARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 565-2390", | |
| "address": "304 Lenox Road, Katonah, New Hampshire, 5698", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647168557bf87d4de0", | |
| "index": 434, | |
| "balance": "$1,869.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Young Knight", | |
| "company": "SAVVY", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 439-3445", | |
| "address": "198 Ocean Parkway, Sylvanite, Kentucky, 4268", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646adb4fe52a09907a", | |
| "index": 435, | |
| "balance": "$2,506.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Minerva Robles", | |
| "company": "APPLIDEC", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 599-3198", | |
| "address": "743 Division Avenue, Rote, New Mexico, 991", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664edc42fcc3ae97f35", | |
| "index": 436, | |
| "balance": "$2,773.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristi Perry", | |
| "company": "HANDSHAKE", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 527-2960", | |
| "address": "973 Alton Place, Jennings, North Dakota, 6464", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641daa04b984eb43d0", | |
| "index": 437, | |
| "balance": "$1,013.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lopez Hancock", | |
| "company": "GEEKOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 505-2958", | |
| "address": "715 Grafton Street, Bendon, Kansas, 842", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664902ae205ce8ae83d", | |
| "index": 438, | |
| "balance": "$3,798.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Teresa Johnson", | |
| "company": "DYNO", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 568-3372", | |
| "address": "730 Batchelder Street, Kansas, Marshall Islands, 6104", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a81bca997ab1ab39", | |
| "index": 439, | |
| "balance": "$1,094.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Faith Poole", | |
| "company": "NETUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 494-2726", | |
| "address": "406 Ridgewood Place, Neahkahnie, South Dakota, 9874", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641310b8389c5f3edd", | |
| "index": 440, | |
| "balance": "$3,660.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vilma Travis", | |
| "company": "SPLINX", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 458-3755", | |
| "address": "632 Rogers Avenue, Bergoo, Wisconsin, 9258", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644ba6940bd5adcc5d", | |
| "index": 441, | |
| "balance": "$1,422.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Samantha Leach", | |
| "company": "FUELTON", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 422-3463", | |
| "address": "715 Baltic Street, Washington, Idaho, 966", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641e60dd6a52afdd4d", | |
| "index": 442, | |
| "balance": "$2,687.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeanine Stewart", | |
| "company": "TRIBALOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 535-3905", | |
| "address": "708 Oxford Street, Thermal, Colorado, 7944", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644a658334ed8406ed", | |
| "index": 443, | |
| "balance": "$1,176.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Golden Stark", | |
| "company": "PYRAMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 565-3298", | |
| "address": "980 Laurel Avenue, Jacumba, Illinois, 5044", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a03516497351f6e7", | |
| "index": 444, | |
| "balance": "$1,198.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Montoya Booker", | |
| "company": "INTERLOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 499-2689", | |
| "address": "310 Banker Street, Mulberry, New York, 1583", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66439922c9d32618c19", | |
| "index": 445, | |
| "balance": "$1,455.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sawyer Garrison", | |
| "company": "PARCOE", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 561-2720", | |
| "address": "122 President Street, Tilleda, Nevada, 7628", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648f2b8501f8265a08", | |
| "index": 446, | |
| "balance": "$3,780.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janette Harvey", | |
| "company": "BITENDREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 548-2858", | |
| "address": "506 Monitor Street, Brewster, Palau, 4625", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e9c4ec50f6fa3382", | |
| "index": 447, | |
| "balance": "$2,383.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lawanda Merritt", | |
| "company": "TOYLETRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (811) 546-3922", | |
| "address": "945 Beekman Place, Floriston, Tennessee, 8791", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f70da9c772f2cfb1", | |
| "index": 448, | |
| "balance": "$3,446.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sandoval Jones", | |
| "company": "ACCRUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 401-2251", | |
| "address": "991 Dank Court, Wyano, Montana, 6807", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664de9eaa98d07cdeb2", | |
| "index": 449, | |
| "balance": "$3,434.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margaret Kerr", | |
| "company": "ASSITIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 436-2617", | |
| "address": "586 Hendrickson Place, Tuttle, Arizona, 8101", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664771261ddbc693586", | |
| "index": 450, | |
| "balance": "$2,081.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cassandra Mathews", | |
| "company": "GLOBOIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 488-2973", | |
| "address": "512 Bay Street, Hendersonville, North Carolina, 2046", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645f7ce364706c661f", | |
| "index": 451, | |
| "balance": "$3,971.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Molina Flynn", | |
| "company": "HELIXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 554-3050", | |
| "address": "752 Guider Avenue, Hatteras, Rhode Island, 9814", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ffca3e8e98f0661a", | |
| "index": 452, | |
| "balance": "$3,385.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carr Gill", | |
| "company": "XURBAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 450-2828", | |
| "address": "337 Troy Avenue, Datil, Ohio, 7155", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664726d48ea3dc2946f", | |
| "index": 453, | |
| "balance": "$3,867.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barlow Mccullough", | |
| "company": "TETAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 497-3185", | |
| "address": "512 Cooke Court, Osmond, Guam, 7569", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b96dfaab7d9c590a", | |
| "index": 454, | |
| "balance": "$1,307.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pope Merrill", | |
| "company": "HYDROCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 462-2238", | |
| "address": "677 Bowery Street, Englevale, Louisiana, 356", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e6cd2b48d019d775", | |
| "index": 455, | |
| "balance": "$1,121.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Erica Evans", | |
| "company": "XEREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 484-2232", | |
| "address": "787 Ash Street, Magnolia, Utah, 8451", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66483c79a107fbf1b09", | |
| "index": 456, | |
| "balance": "$1,198.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maryanne Frank", | |
| "company": "LUMBREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 549-2974", | |
| "address": "569 Willoughby Street, Tolu, Vermont, 6324", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644252f00bd874560b", | |
| "index": 457, | |
| "balance": "$2,723.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ayers Sanford", | |
| "company": "ZOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 490-3777", | |
| "address": "608 Nevins Street, Northchase, New Jersey, 9531", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a8c61343e9ea3396", | |
| "index": 458, | |
| "balance": "$2,603.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Singleton Atkinson", | |
| "company": "ZENTILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 495-3384", | |
| "address": "985 Turner Place, Robinette, Washington, 671", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a07379ff6631fd96", | |
| "index": 459, | |
| "balance": "$3,511.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Norma Stephenson", | |
| "company": "VANTAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 583-2993", | |
| "address": "946 Ford Street, Bowmansville, California, 3533", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e283dbc35ec297d1", | |
| "index": 460, | |
| "balance": "$2,877.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beatriz Carson", | |
| "company": "KATAKANA", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 519-2432", | |
| "address": "595 Emerson Place, Nash, Arkansas, 6905", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c18a3463c4b36662", | |
| "index": 461, | |
| "balance": "$2,775.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holly Huff", | |
| "company": "CUBIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 410-2772", | |
| "address": "866 Cypress Court, Blanford, Iowa, 1391", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a4d27371c16f122d", | |
| "index": 462, | |
| "balance": "$2,873.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Betty Velazquez", | |
| "company": "FUELWORKS", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 497-3500", | |
| "address": "834 Kings Place, Greensburg, Minnesota, 9265", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664952c8aa5d9063866", | |
| "index": 463, | |
| "balance": "$2,107.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Helene Hendricks", | |
| "company": "AMTAS", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 421-3964", | |
| "address": "617 Livingston Street, Byrnedale, Oklahoma, 1944", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66417aaf9540b5a229e", | |
| "index": 464, | |
| "balance": "$2,915.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tricia Douglas", | |
| "company": "NETPLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 514-3248", | |
| "address": "788 Bushwick Court, Stockdale, Florida, 5738", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d3ca9eb6265c2a0f", | |
| "index": 465, | |
| "balance": "$1,790.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Woods Hartman", | |
| "company": "PLAYCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 433-2855", | |
| "address": "238 Dahl Court, Skyland, District Of Columbia, 2857", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640c40dd62e90a87da", | |
| "index": 466, | |
| "balance": "$1,812.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beach Glenn", | |
| "company": "PAPRIKUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 520-3601", | |
| "address": "189 Brooklyn Avenue, Ellerslie, Mississippi, 384", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646d2ad25f2bac0c33", | |
| "index": 467, | |
| "balance": "$3,082.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Etta Ortega", | |
| "company": "MELBACOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 520-2259", | |
| "address": "702 Luquer Street, Witmer, Missouri, 469", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66486cd2d58865f72f5", | |
| "index": 468, | |
| "balance": "$3,103.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moon Curry", | |
| "company": "BUZZMAKER", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 435-3738", | |
| "address": "926 Ditmars Street, Eureka, Massachusetts, 4256", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66424d079e99a7253e6", | |
| "index": 469, | |
| "balance": "$2,426.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cheryl Harris", | |
| "company": "OLYMPIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (835) 462-2852", | |
| "address": "708 Surf Avenue, Boonville, Texas, 6447", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664236d8da1eaf16f2a", | |
| "index": 470, | |
| "balance": "$2,293.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hoover Pittman", | |
| "company": "HATOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 532-3486", | |
| "address": "270 Middagh Street, Whitestone, Georgia, 674", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664136d201363fae2a8", | |
| "index": 471, | |
| "balance": "$2,437.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelly Gibbs", | |
| "company": "ADORNICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 411-3119", | |
| "address": "467 Navy Walk, Harleigh, American Samoa, 7834", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66448bd4f8ddb8ea4d5", | |
| "index": 472, | |
| "balance": "$1,593.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Denise Alvarado", | |
| "company": "GONKLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 574-3832", | |
| "address": "685 Dekalb Avenue, Caln, Indiana, 6499", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646b581e523e22e82e", | |
| "index": 473, | |
| "balance": "$1,214.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Millie Campbell", | |
| "company": "OBLIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 582-2368", | |
| "address": "182 Howard Alley, Crawfordsville, Delaware, 2194", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66473d3b70fc6ec4803", | |
| "index": 474, | |
| "balance": "$2,119.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cardenas Ballard", | |
| "company": "GEEKOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (929) 499-3775", | |
| "address": "815 Church Lane, Dotsero, Puerto Rico, 6147", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f862b4a060a98c28", | |
| "index": 475, | |
| "balance": "$3,481.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Huber Simmons", | |
| "company": "INTERGEEK", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 455-3852", | |
| "address": "297 Rutherford Place, Thynedale, Connecticut, 7534", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e01a0403e2822024", | |
| "index": 476, | |
| "balance": "$2,464.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Milagros Glass", | |
| "company": "IDEALIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 571-3526", | |
| "address": "577 Colby Court, Blende, Maryland, 4870", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648800339897060a84", | |
| "index": 477, | |
| "balance": "$2,482.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Olive Parsons", | |
| "company": "ZANILLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 415-2967", | |
| "address": "258 Sackett Street, Disautel, Virginia, 4268", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640a7fec9162e066ce", | |
| "index": 478, | |
| "balance": "$3,609.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oneil Cooper", | |
| "company": "LIMAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 502-2450", | |
| "address": "840 Carroll Street, Chamberino, South Carolina, 742", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b83a169d5aa57c03", | |
| "index": 479, | |
| "balance": "$2,326.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sheena Smith", | |
| "company": "PHORMULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 555-2722", | |
| "address": "404 Dikeman Street, Mooresburg, Alabama, 8724", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66434bb676ddca6096a", | |
| "index": 480, | |
| "balance": "$2,879.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Latasha West", | |
| "company": "SURETECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (937) 484-3059", | |
| "address": "218 Senator Street, Jenkinsville, Alaska, 395", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b348784c6caef815", | |
| "index": 481, | |
| "balance": "$3,522.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anita Duffy", | |
| "company": "PULZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 403-3061", | |
| "address": "253 Eckford Street, Rossmore, Wyoming, 7849", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640a7d285846aad06f", | |
| "index": 482, | |
| "balance": "$2,892.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hall Huber", | |
| "company": "INSURESYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 495-2235", | |
| "address": "678 Johnson Street, Elrama, Virgin Islands, 3371", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664aa0c4fa05578fc59", | |
| "index": 483, | |
| "balance": "$3,144.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Watts Banks", | |
| "company": "ACIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 506-2272", | |
| "address": "578 Hall Street, Oceola, Hawaii, 6619", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643bcb75981660a66f", | |
| "index": 484, | |
| "balance": "$2,957.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ann Herring", | |
| "company": "EXODOC", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 502-3062", | |
| "address": "455 Channel Avenue, Darrtown, Maine, 3397", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645bf1b537b998b278", | |
| "index": 485, | |
| "balance": "$3,335.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tracy Copeland", | |
| "company": "POWERNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (984) 509-2730", | |
| "address": "953 Anthony Street, Tryon, Federated States Of Micronesia, 8567", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647207e74a2c316be4", | |
| "index": 486, | |
| "balance": "$3,283.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cook Newman", | |
| "company": "ROCKYARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 424-2256", | |
| "address": "834 Kathleen Court, Cornfields, Northern Mariana Islands, 7230", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664a975c39d44370440", | |
| "index": 487, | |
| "balance": "$3,632.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Baxter Rios", | |
| "company": "PARAGONIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 468-3789", | |
| "address": "331 Harbor Court, Malott, Pennsylvania, 1381", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f78955439056bd6c", | |
| "index": 488, | |
| "balance": "$1,235.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tamra Conway", | |
| "company": "ACRUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (928) 499-3932", | |
| "address": "993 Columbia Place, Dunnavant, Oregon, 7095", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6641446dcd451d6e6c9", | |
| "index": 489, | |
| "balance": "$2,636.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bethany Jefferson", | |
| "company": "ISOTRONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 487-3905", | |
| "address": "979 Hooper Street, Hoehne, West Virginia, 2211", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648dd41a3281af31b4", | |
| "index": 490, | |
| "balance": "$3,332.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Randall Noel", | |
| "company": "IMMUNICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 460-3330", | |
| "address": "812 Lyme Avenue, Crown, Nebraska, 4176", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66496dbbb37b71600ed", | |
| "index": 491, | |
| "balance": "$3,606.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brady Williamson", | |
| "company": "SOFTMICRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 489-2859", | |
| "address": "841 Pineapple Street, Goldfield, New Hampshire, 4399", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664ec4a447388286eec", | |
| "index": 492, | |
| "balance": "$3,632.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kris Hudson", | |
| "company": "AQUAZURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 510-2331", | |
| "address": "619 Schenck Court, Riviera, Kentucky, 5236", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664883420831eb4f05a", | |
| "index": 493, | |
| "balance": "$1,921.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Colon Duke", | |
| "company": "EMTRAC", | |
| "email": "[email protected]", | |
| "phone": "+1 (978) 432-2841", | |
| "address": "325 Dean Street, Keyport, New Mexico, 3206", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e1637d390e9459a6", | |
| "index": 494, | |
| "balance": "$1,014.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guerra Gordon", | |
| "company": "ECLIPSENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (868) 535-3122", | |
| "address": "452 Neptune Avenue, Coleville, North Dakota, 1256", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644890ca49180a8273", | |
| "index": 495, | |
| "balance": "$1,997.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "James Berger", | |
| "company": "RUGSTARS", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 428-3362", | |
| "address": "763 Greenwood Avenue, Martinsville, Kansas, 7489", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e66468c82688844c541e", | |
| "index": 496, | |
| "balance": "$1,522.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stuart Kirk", | |
| "company": "QUANTASIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 531-2378", | |
| "address": "507 Woodside Avenue, Bethany, Marshall Islands, 3235", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6645e6ba4c2989f6eb8", | |
| "index": 497, | |
| "balance": "$2,235.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rocha Kline", | |
| "company": "TERRAGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 466-2830", | |
| "address": "874 Boerum Street, Barstow, South Dakota, 515", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664dbda12197f2826c1", | |
| "index": 498, | |
| "balance": "$3,026.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Browning Mays", | |
| "company": "COMTOURS", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 552-3998", | |
| "address": "346 Metropolitan Avenue, Stonybrook, Wisconsin, 561", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640533247df2e1f7f0", | |
| "index": 499, | |
| "balance": "$1,523.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elisabeth Shaffer", | |
| "company": "STOCKPOST", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 589-2025", | |
| "address": "860 Marconi Place, Graniteville, Idaho, 9115", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664d60ccd94624db4c8", | |
| "index": 500, | |
| "balance": "$3,960.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aisha May", | |
| "company": "FANFARE", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 547-2532", | |
| "address": "756 Little Street, Herbster, Colorado, 9236", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664c52eccf92801c051", | |
| "index": 501, | |
| "balance": "$1,325.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Freda Wood", | |
| "company": "MICROLUXE", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 509-2051", | |
| "address": "309 Merit Court, Innsbrook, Illinois, 3763", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647d1d467ddd0a73ce", | |
| "index": 502, | |
| "balance": "$2,477.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Heidi Velez", | |
| "company": "IDEGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 539-2924", | |
| "address": "696 Boerum Place, Warsaw, New York, 6408", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664b2619a5e289783ac", | |
| "index": 503, | |
| "balance": "$1,005.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flynn Bradley", | |
| "company": "COMTOUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 455-2237", | |
| "address": "475 Menahan Street, Allison, Nevada, 276", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664169097214b513bea", | |
| "index": 504, | |
| "balance": "$2,661.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Petra Carney", | |
| "company": "APEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 509-2087", | |
| "address": "231 Front Street, Wanship, Palau, 6657", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640df4e2baac9c6b2a", | |
| "index": 505, | |
| "balance": "$3,588.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tara Morris", | |
| "company": "PERKLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 572-3495", | |
| "address": "994 Kent Street, Carbonville, Tennessee, 9921", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664cfa3b07756c79127", | |
| "index": 506, | |
| "balance": "$3,063.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Callahan Gentry", | |
| "company": "QUINEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 489-3554", | |
| "address": "714 Sunnyside Court, Kennedyville, Montana, 4667", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6648e700a880b33acd1", | |
| "index": 507, | |
| "balance": "$3,864.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barker Lewis", | |
| "company": "ZYPLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 519-3566", | |
| "address": "515 Lawton Street, Talpa, Arizona, 5210", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664e2c9df148c16c049", | |
| "index": 508, | |
| "balance": "$1,155.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garrison Munoz", | |
| "company": "QUOTEZART", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 489-3681", | |
| "address": "559 Ruby Street, Lawrence, North Carolina, 9638", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6644ef28d30d079d82e", | |
| "index": 509, | |
| "balance": "$3,233.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wong Gilbert", | |
| "company": "EMOLTRA", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 596-3730", | |
| "address": "262 Chestnut Street, Hollymead, Rhode Island, 912", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6640c6fb28f8dee0e93", | |
| "index": 510, | |
| "balance": "$2,087.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dodson Fischer", | |
| "company": "EXOSPEED", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 587-2447", | |
| "address": "108 Junius Street, Chalfant, Ohio, 8255", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6646c7ae266fea8980e", | |
| "index": 511, | |
| "balance": "$3,557.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Woodard Knapp", | |
| "company": "VIXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 544-2339", | |
| "address": "853 Elliott Place, Walker, Guam, 5137", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6647001b8359f3ece25", | |
| "index": 512, | |
| "balance": "$3,767.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lindsay Kinney", | |
| "company": "ECSTASIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 534-2472", | |
| "address": "600 Hart Place, Knowlton, Louisiana, 838", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6642351417773c4d12e", | |
| "index": 513, | |
| "balance": "$3,242.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jami Lopez", | |
| "company": "MOBILDATA", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 467-3542", | |
| "address": "824 Seagate Terrace, Kenmar, Utah, 4047", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664f4676005bb25a82f", | |
| "index": 514, | |
| "balance": "$3,287.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sonia Mcbride", | |
| "company": "ROCKLOGIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 480-3077", | |
| "address": "407 Cass Place, Jardine, Vermont, 291", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643bad7705672ce30b", | |
| "index": 515, | |
| "balance": "$3,735.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wood Walton", | |
| "company": "COMTRAIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 539-3970", | |
| "address": "533 Orient Avenue, Chase, New Jersey, 2697", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e6643966526e5787c6ff", | |
| "index": 516, | |
| "balance": "$2,513.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Farley Webster", | |
| "company": "PROVIDCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 595-2994", | |
| "address": "329 Macon Street, Masthope, Washington, 642", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52e664058e9fac7f2dc33a", | |
| "index": 517, | |
| "balance": "$1,778.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Horn Gilmore", | |
| "company": "ESSENSIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 492-2911", | |
| "address": "491 Ridge Court, Sparkill, California, 8491", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95de22c8c5f20ffba5", | |
| "index": 600, | |
| "balance": "$3,568.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelsey Glover", | |
| "company": "LIQUICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 569-3408", | |
| "address": "907 Schenck Avenue, Bentonville, Wisconsin, 5412", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95205cb72460187171", | |
| "index": 601, | |
| "balance": "$3,379.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tammi Sloan", | |
| "company": "ZANILLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 433-2967", | |
| "address": "515 Fillmore Place, Kenvil, Alaska, 7413", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952867f5f86d84b9d7", | |
| "index": 602, | |
| "balance": "$1,027.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margaret Villarreal", | |
| "company": "TASMANIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 600-2326", | |
| "address": "855 Kings Place, Bethpage, Vermont, 3100", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958b9ce333c7ae82df", | |
| "index": 603, | |
| "balance": "$3,724.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hilary Poole", | |
| "company": "COWTOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 402-2123", | |
| "address": "578 Bridge Street, Bowie, Illinois, 8900", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d688220df15c4334", | |
| "index": 604, | |
| "balance": "$1,536.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cross Ball", | |
| "company": "QUIZKA", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 554-2222", | |
| "address": "510 Chapel Street, Moquino, Utah, 4774", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950718757c36c8de4f", | |
| "index": 605, | |
| "balance": "$2,026.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burnett Perez", | |
| "company": "DANJA", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 472-3828", | |
| "address": "802 Preston Court, Dunnavant, Connecticut, 2339", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c965108a1f8294ed", | |
| "index": 606, | |
| "balance": "$1,794.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jennie Vaughn", | |
| "company": "KAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 558-2521", | |
| "address": "112 Karweg Place, Stockwell, Oregon, 996", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad6b5d16111d97da", | |
| "index": 607, | |
| "balance": "$3,940.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Olga Cantrell", | |
| "company": "MAGNINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 473-3010", | |
| "address": "530 Montgomery Street, Southview, Federated States Of Micronesia, 6837", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95af33d42ee134d063", | |
| "index": 608, | |
| "balance": "$3,246.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ursula Mcleod", | |
| "company": "VISALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 590-2757", | |
| "address": "316 Raleigh Place, Columbus, Kentucky, 7986", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506c04eea7d060d20", | |
| "index": 609, | |
| "balance": "$3,759.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Heidi Silva", | |
| "company": "TELEPARK", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 510-2760", | |
| "address": "770 Drew Street, Whitewater, Puerto Rico, 1156", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950861d6b4504fce20", | |
| "index": 610, | |
| "balance": "$1,655.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mari Horton", | |
| "company": "INFOTRIPS", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 480-2480", | |
| "address": "324 Troy Avenue, Conestoga, Idaho, 1349", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ccd58a51045417b5", | |
| "index": 611, | |
| "balance": "$2,114.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stanley Black", | |
| "company": "AVENETRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 429-2994", | |
| "address": "361 Delevan Street, Lund, Nevada, 3784", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957e73ad3ff21c18fc", | |
| "index": 612, | |
| "balance": "$3,108.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lourdes Hinton", | |
| "company": "OPPORTECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 480-2766", | |
| "address": "415 Menahan Street, Diaperville, South Carolina, 7876", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953cb1451edabc675f", | |
| "index": 613, | |
| "balance": "$3,265.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Martinez Ellis", | |
| "company": "OPTICALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 598-3733", | |
| "address": "732 Morton Street, Grayhawk, Minnesota, 286", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95101cbc7b9d6a77dc", | |
| "index": 614, | |
| "balance": "$2,817.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ortega Osborne", | |
| "company": "COMDOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 548-3975", | |
| "address": "728 Sapphire Street, Day, North Dakota, 8219", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9562df3532d21bcabd", | |
| "index": 615, | |
| "balance": "$3,135.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lola Collier", | |
| "company": "JUNIPOOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 590-3873", | |
| "address": "637 Aster Court, Coyote, District Of Columbia, 5013", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951c82e6de536f4e8a", | |
| "index": 616, | |
| "balance": "$1,775.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dunlap Monroe", | |
| "company": "PHEAST", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 578-2275", | |
| "address": "531 Chase Court, Elbert, New York, 3653", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9585205566a9fe34b3", | |
| "index": 617, | |
| "balance": "$1,812.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Meredith Morse", | |
| "company": "TROLLERY", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 581-3174", | |
| "address": "109 Gain Court, Gerton, Montana, 8497", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b0e2559ff1232cc6", | |
| "index": 618, | |
| "balance": "$1,646.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reyna Cannon", | |
| "company": "PATHWAYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 422-2825", | |
| "address": "757 Howard Alley, Snyderville, Arkansas, 7454", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953b18fcb1a36fb02a", | |
| "index": 619, | |
| "balance": "$2,655.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Davenport Webb", | |
| "company": "ZILLACOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 477-2586", | |
| "address": "509 Rockaway Parkway, Brookfield, Kansas, 6120", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9566e5a35f391bb3af", | |
| "index": 620, | |
| "balance": "$3,268.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Le Hoffman", | |
| "company": "CORPORANA", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 563-2674", | |
| "address": "298 Lott Street, Ruffin, Guam, 829", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95379096f6b0076ab6", | |
| "index": 621, | |
| "balance": "$3,958.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Neva Ellison", | |
| "company": "FIREWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 521-2451", | |
| "address": "394 Sullivan Place, Dalton, Rhode Island, 7413", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec8c7ceb8efd7b37", | |
| "index": 622, | |
| "balance": "$2,971.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wynn Hancock", | |
| "company": "DIGINETIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 463-3535", | |
| "address": "315 Lois Avenue, Oasis, Palau, 7444", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9554bc9f806c016361", | |
| "index": 623, | |
| "balance": "$1,359.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nelda Ashley", | |
| "company": "ANIMALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 515-3536", | |
| "address": "812 Prospect Place, Waikele, Wyoming, 1612", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95df505dec41a74132", | |
| "index": 624, | |
| "balance": "$2,303.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bernard Gillespie", | |
| "company": "NAMEGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 452-3784", | |
| "address": "786 Sheffield Avenue, Taft, Nebraska, 8286", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b6f326e18596da9b", | |
| "index": 625, | |
| "balance": "$2,189.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Talley Galloway", | |
| "company": "XLEEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 503-3417", | |
| "address": "789 Bouck Court, Broadlands, Northern Mariana Islands, 7952", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f08835e4eed9a724", | |
| "index": 626, | |
| "balance": "$1,300.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cecilia Wilcox", | |
| "company": "APEXTRI", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 582-3625", | |
| "address": "563 Loring Avenue, Williston, California, 5834", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c34923d787b7d79c", | |
| "index": 627, | |
| "balance": "$1,283.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leonard Landry", | |
| "company": "ISOSTREAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 487-3561", | |
| "address": "239 Garden Place, Ilchester, Louisiana, 3064", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950de39b8c2c887233", | |
| "index": 628, | |
| "balance": "$1,645.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Glass Hogan", | |
| "company": "DOGNOST", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 401-2970", | |
| "address": "397 Dunne Place, Coral, Mississippi, 6493", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b265434067e50ae0", | |
| "index": 629, | |
| "balance": "$2,355.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Merrill Bass", | |
| "company": "RUBADUB", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 552-2282", | |
| "address": "281 Mersereau Court, Valle, Hawaii, 7464", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95791ab822ad364f70", | |
| "index": 630, | |
| "balance": "$2,413.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joy Kent", | |
| "company": "ANDRYX", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 523-2463", | |
| "address": "620 Thomas Street, Jacksonwald, Washington, 1050", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95432dc88eaf00fd3c", | |
| "index": 631, | |
| "balance": "$1,726.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Velasquez Knowles", | |
| "company": "SILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 442-3751", | |
| "address": "287 Lenox Road, Barrelville, American Samoa, 3101", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9505b0c8bc945800ab", | |
| "index": 632, | |
| "balance": "$2,190.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anthony Potts", | |
| "company": "XYLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 424-3142", | |
| "address": "761 Irvington Place, Brandywine, Maryland, 4741", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958f885d8adaa20622", | |
| "index": 633, | |
| "balance": "$3,452.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Petty Sims", | |
| "company": "ORBEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (924) 455-2760", | |
| "address": "638 Burnett Street, Fairview, Ohio, 9314", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f7931253d78f204d", | |
| "index": 634, | |
| "balance": "$2,912.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wendi Hutchinson", | |
| "company": "ISOLOGICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 588-2531", | |
| "address": "258 Richardson Street, Wanship, Iowa, 2571", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9514f0f2fca67fab9c", | |
| "index": 635, | |
| "balance": "$1,761.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lilia Estrada", | |
| "company": "SUREPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 476-2910", | |
| "address": "694 Debevoise Street, Dundee, Georgia, 1530", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b763db71be849287", | |
| "index": 636, | |
| "balance": "$1,055.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shana Gill", | |
| "company": "RECRISYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 407-3478", | |
| "address": "208 Quincy Street, Edmund, Tennessee, 8085", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9516e34be2c6e9e9ba", | |
| "index": 637, | |
| "balance": "$3,501.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gill Moody", | |
| "company": "ENTALITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 413-3001", | |
| "address": "137 Keap Street, Brecon, Virginia, 9680", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aa8ffc7428b57ef3", | |
| "index": 638, | |
| "balance": "$3,747.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jill Haley", | |
| "company": "FROSNEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 429-3726", | |
| "address": "459 Krier Place, Snelling, South Dakota, 9706", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9534763c8b05fc8d36", | |
| "index": 639, | |
| "balance": "$2,437.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pruitt Ortega", | |
| "company": "QIAO", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 538-2637", | |
| "address": "480 Gates Avenue, Salvo, Oklahoma, 4259", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b4f34eb83ff26a9b", | |
| "index": 640, | |
| "balance": "$1,743.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Natalie Albert", | |
| "company": "CENTREE", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 467-3793", | |
| "address": "376 Corbin Place, Robinson, Texas, 7189", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95244974bb994a7314", | |
| "index": 641, | |
| "balance": "$2,716.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Goldie Franco", | |
| "company": "CAPSCREEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 420-3373", | |
| "address": "730 Senator Street, Temperanceville, Marshall Islands, 9430", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952c5773f8cfc8964c", | |
| "index": 642, | |
| "balance": "$2,611.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Byers Lott", | |
| "company": "FLUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 528-3001", | |
| "address": "255 Howard Avenue, Lacomb, Maine, 6916", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951fa6deb7045f012a", | |
| "index": 643, | |
| "balance": "$2,824.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francesca Valentine", | |
| "company": "IPLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (945) 427-3633", | |
| "address": "322 Evans Street, Hollins, Colorado, 537", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95970808730019f48c", | |
| "index": 644, | |
| "balance": "$3,966.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hood Holman", | |
| "company": "NETPLODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 422-2159", | |
| "address": "424 Lacon Court, Chumuckla, New Mexico, 8555", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95012b00848e53512e", | |
| "index": 645, | |
| "balance": "$2,888.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angeline Chambers", | |
| "company": "IRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 514-3411", | |
| "address": "470 Vine Street, Geyserville, Florida, 3104", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958db16995c39b2e8b", | |
| "index": 646, | |
| "balance": "$2,275.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rhodes Bates", | |
| "company": "OPTICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 478-3914", | |
| "address": "327 Emmons Avenue, Smeltertown, Michigan, 7820", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e7d9180fadc16727", | |
| "index": 647, | |
| "balance": "$3,927.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Coffey Osborn", | |
| "company": "BUZZWORKS", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 590-2078", | |
| "address": "728 Crooke Avenue, Garberville, Delaware, 5633", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95102d523f01a045cb", | |
| "index": 648, | |
| "balance": "$3,953.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jean Larsen", | |
| "company": "NURPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 449-2870", | |
| "address": "472 National Drive, Monument, Virgin Islands, 8076", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e3787f7f969d3488", | |
| "index": 649, | |
| "balance": "$3,387.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sonya Mathews", | |
| "company": "CORECOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 485-2348", | |
| "address": "530 Perry Place, Dubois, West Virginia, 4663", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586f407daedf95a26", | |
| "index": 650, | |
| "balance": "$1,080.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jacklyn Holloway", | |
| "company": "ANIVET", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 524-3967", | |
| "address": "120 Hamilton Walk, Ogema, Alabama, 9360", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f89f536f2e54b501", | |
| "index": 651, | |
| "balance": "$3,178.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frankie Hartman", | |
| "company": "PYRAMI", | |
| "email": "[email protected]", | |
| "phone": "+1 (935) 406-2892", | |
| "address": "135 Vernon Avenue, Ada, North Carolina, 3974", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954dfb5ac7a75a85e8", | |
| "index": 652, | |
| "balance": "$1,336.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcmillan Chan", | |
| "company": "JETSILK", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 537-3989", | |
| "address": "614 Underhill Avenue, Epworth, Indiana, 1580", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9565b13016c83ba109", | |
| "index": 653, | |
| "balance": "$1,565.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Murphy Mathis", | |
| "company": "RAMJOB", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 480-2586", | |
| "address": "499 Williams Place, Grahamtown, Missouri, 853", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9516a54bdd043e1fd4", | |
| "index": 654, | |
| "balance": "$1,645.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jasmine Woodward", | |
| "company": "BEZAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 481-3411", | |
| "address": "280 Fay Court, Curtice, Arizona, 5213", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95634cb40419978dec", | |
| "index": 655, | |
| "balance": "$2,446.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lindsey Rice", | |
| "company": "GAPTEC", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 559-3415", | |
| "address": "869 Sutter Avenue, Gwynn, Massachusetts, 5665", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95066e2808c4af227a", | |
| "index": 656, | |
| "balance": "$3,979.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Colon Whitney", | |
| "company": "ZORK", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 550-3862", | |
| "address": "178 Glendale Court, Alafaya, New Jersey, 5897", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586430798f445a472", | |
| "index": 657, | |
| "balance": "$1,423.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kirby Vaughan", | |
| "company": "CUJO", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 436-2054", | |
| "address": "140 Hawthorne Street, Belmont, Pennsylvania, 4437", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951ede3fae8a761026", | |
| "index": 658, | |
| "balance": "$2,784.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rhoda Duke", | |
| "company": "ECSTASIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 507-3823", | |
| "address": "390 Kenmore Terrace, Nutrioso, Wisconsin, 3852", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b074ff4107bca5b7", | |
| "index": 659, | |
| "balance": "$2,260.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bell Fowler", | |
| "company": "QIMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 507-3436", | |
| "address": "299 Amherst Street, Witmer, Alaska, 7557", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9594a3d14d487b3132", | |
| "index": 660, | |
| "balance": "$3,498.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Banks Rhodes", | |
| "company": "SOFTMICRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 491-3184", | |
| "address": "625 Beverly Road, Motley, Vermont, 1242", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e9a3ec7b2dab147a", | |
| "index": 661, | |
| "balance": "$2,560.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ruby Todd", | |
| "company": "VISUALIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 590-2101", | |
| "address": "950 Herbert Street, Thynedale, Illinois, 8909", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955be8df4dd503ccbc", | |
| "index": 662, | |
| "balance": "$1,920.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Loraine Frederick", | |
| "company": "ZAGGLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (904) 478-3062", | |
| "address": "714 Little Street, Roberts, Utah, 5645", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a51a0cb485c8ba0", | |
| "index": 663, | |
| "balance": "$2,061.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kendra Sanford", | |
| "company": "CODACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 522-2666", | |
| "address": "273 Verona Place, Centerville, Connecticut, 8913", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cf2856f19cc76501", | |
| "index": 664, | |
| "balance": "$1,798.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sandoval Prince", | |
| "company": "TERSANKI", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 401-3389", | |
| "address": "194 Mayfair Drive, Lopezo, Oregon, 4474", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9584a4d5ae8841f07c", | |
| "index": 665, | |
| "balance": "$3,022.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jordan Holland", | |
| "company": "JIMBIES", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 600-3640", | |
| "address": "863 Dekoven Court, Islandia, Federated States Of Micronesia, 5283", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aeaa92bf95bfc0a9", | |
| "index": 666, | |
| "balance": "$1,293.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bernice Morrison", | |
| "company": "WAAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 511-2750", | |
| "address": "179 Newport Street, Bodega, Kentucky, 4844", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c3515ee70d7f305f", | |
| "index": 667, | |
| "balance": "$1,798.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gates Medina", | |
| "company": "FUTURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 559-2564", | |
| "address": "626 Dakota Place, Watchtower, Puerto Rico, 2342", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f69fba1cf612b34b", | |
| "index": 668, | |
| "balance": "$1,856.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sara Brady", | |
| "company": "QNEKT", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 480-3268", | |
| "address": "507 Malta Street, Maxville, Idaho, 6008", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953d605ae0a15fc76f", | |
| "index": 669, | |
| "balance": "$3,424.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jodi Vang", | |
| "company": "BRAINCLIP", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 555-2236", | |
| "address": "949 Rockwell Place, Ruckersville, Nevada, 1204", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a3e9d2a6ae190c84", | |
| "index": 670, | |
| "balance": "$3,669.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clayton Snow", | |
| "company": "INEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 548-3549", | |
| "address": "966 Court Street, Rodanthe, South Carolina, 8646", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c45346b14154b9de", | |
| "index": 671, | |
| "balance": "$2,441.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stanton Heath", | |
| "company": "ISOSPHERE", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 519-2734", | |
| "address": "927 Granite Street, Rockhill, Minnesota, 5864", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fa4a15daec496ab8", | |
| "index": 672, | |
| "balance": "$2,666.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gilmore Britt", | |
| "company": "DAIDO", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 561-2157", | |
| "address": "779 Meserole Avenue, Freelandville, North Dakota, 9506", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c063c2049236d2d0", | |
| "index": 673, | |
| "balance": "$3,664.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lilian Pitts", | |
| "company": "SURELOGIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 567-2840", | |
| "address": "821 Thames Street, Succasunna, District Of Columbia, 5268", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d4d4327fffc045d6", | |
| "index": 674, | |
| "balance": "$2,342.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lacey Rasmussen", | |
| "company": "OHMNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 471-3305", | |
| "address": "502 Lamont Court, Soham, New York, 1912", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9582c557e02dde3b90", | |
| "index": 675, | |
| "balance": "$2,310.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jewell Hebert", | |
| "company": "MULTIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 557-3689", | |
| "address": "152 Bergen Court, Mahtowa, Montana, 7798", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9572e2344e79865384", | |
| "index": 676, | |
| "balance": "$2,728.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sue Lewis", | |
| "company": "TECHMANIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 528-2033", | |
| "address": "408 Imlay Street, Villarreal, Arkansas, 679", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec9833bb306108c6", | |
| "index": 677, | |
| "balance": "$2,474.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clay Mcgee", | |
| "company": "ROOFORIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 550-3229", | |
| "address": "734 Plaza Street, Bison, Kansas, 8864", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95de453a657c675ede", | |
| "index": 678, | |
| "balance": "$2,063.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ada Huff", | |
| "company": "GOLISTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 429-2607", | |
| "address": "320 Tennis Court, Kaka, Guam, 957", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d076307a57188eff", | |
| "index": 679, | |
| "balance": "$1,175.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aisha James", | |
| "company": "PORTALINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 518-2383", | |
| "address": "657 Wyona Street, Hiko, Rhode Island, 9651", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c156f2667383cde7", | |
| "index": 680, | |
| "balance": "$1,575.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rowe Evans", | |
| "company": "REMOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (850) 488-2827", | |
| "address": "578 Crystal Street, Worton, Palau, 9406", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9516f49142596af146", | |
| "index": 681, | |
| "balance": "$1,703.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lang Daniels", | |
| "company": "VORTEXACO", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 478-3077", | |
| "address": "648 Kingsland Avenue, Brady, Wyoming, 4151", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c3032f926dd89547", | |
| "index": 682, | |
| "balance": "$3,571.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roxie Jacobson", | |
| "company": "PHUEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 597-3663", | |
| "address": "731 Metropolitan Avenue, Wacissa, Nebraska, 5080", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9517696c39afd101a1", | |
| "index": 683, | |
| "balance": "$1,987.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Trisha Harris", | |
| "company": "PORTALIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 575-3815", | |
| "address": "971 River Street, Coloma, Northern Mariana Islands, 4086", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec6b90a16ac2a914", | |
| "index": 684, | |
| "balance": "$3,718.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jodie Allen", | |
| "company": "FLEXIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 531-2870", | |
| "address": "458 Dahill Road, Orin, California, 8433", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537874b2a73e89f55", | |
| "index": 685, | |
| "balance": "$1,728.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mable Griffith", | |
| "company": "ZEAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 402-2388", | |
| "address": "790 Kathleen Court, Salunga, Louisiana, 9945", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954d021aa128e2593b", | |
| "index": 686, | |
| "balance": "$1,914.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patsy Dickerson", | |
| "company": "CINCYR", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 400-2436", | |
| "address": "385 Greene Avenue, Shelby, Mississippi, 4022", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f294ef07ca895040", | |
| "index": 687, | |
| "balance": "$1,916.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reid Fletcher", | |
| "company": "ELENTRIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 574-3788", | |
| "address": "661 Jefferson Street, Loyalhanna, Hawaii, 4052", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f12884e994bb97b8", | |
| "index": 688, | |
| "balance": "$1,520.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eleanor Sharpe", | |
| "company": "BEDLAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 543-2743", | |
| "address": "577 Jefferson Avenue, Wiscon, Washington, 3753", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9523e063e0ff954730", | |
| "index": 689, | |
| "balance": "$3,646.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frost Conway", | |
| "company": "MAROPTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 424-3799", | |
| "address": "530 Willoughby Avenue, Magnolia, American Samoa, 1177", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d72090735441ea90", | |
| "index": 690, | |
| "balance": "$1,245.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cannon Gentry", | |
| "company": "COMTEXT", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 569-3500", | |
| "address": "540 Hazel Court, Courtland, Maryland, 5034", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953df71ae30c2e9119", | |
| "index": 691, | |
| "balance": "$1,797.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ruth Bauer", | |
| "company": "ANACHO", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 401-2459", | |
| "address": "919 Horace Court, Wintersburg, Ohio, 6592", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955c1171e04f741e5d", | |
| "index": 692, | |
| "balance": "$2,159.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Medina Mccall", | |
| "company": "FUTURIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 594-3753", | |
| "address": "421 Ebony Court, Robbins, Iowa, 1250", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c41ef8ed4f02bc44", | |
| "index": 693, | |
| "balance": "$3,303.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cummings Anthony", | |
| "company": "ZYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 600-3073", | |
| "address": "801 Dahlgreen Place, Downsville, Georgia, 128", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e8b4e703328384c1", | |
| "index": 694, | |
| "balance": "$1,039.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Katy Wolf", | |
| "company": "STUCCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 600-3025", | |
| "address": "252 Stryker Court, Fairmount, Tennessee, 4414", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95401a28c2dd149ad2", | |
| "index": 695, | |
| "balance": "$1,088.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shaw Herman", | |
| "company": "TROPOLIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 519-2478", | |
| "address": "955 Guider Avenue, Tolu, Virginia, 4644", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fad731ee00c3a840", | |
| "index": 696, | |
| "balance": "$1,748.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ann Burks", | |
| "company": "TETRATREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 479-3732", | |
| "address": "324 Stockton Street, Chesapeake, South Dakota, 1304", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950e71a4bbd8374547", | |
| "index": 697, | |
| "balance": "$3,493.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Amparo Gibbs", | |
| "company": "BULLJUICE", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 521-2695", | |
| "address": "538 Church Lane, Cuylerville, Oklahoma, 7323", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c134cc18bcdd9819", | |
| "index": 698, | |
| "balance": "$1,185.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Petra Mcdowell", | |
| "company": "AQUAMATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 425-3687", | |
| "address": "781 Brown Street, Felt, Texas, 4939", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9565a9e3189e9aaeff", | |
| "index": 699, | |
| "balance": "$2,076.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shannon Lawrence", | |
| "company": "SENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 515-3992", | |
| "address": "866 Macon Street, Longoria, Marshall Islands, 3791", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e9636ff8e569ccbc", | |
| "index": 700, | |
| "balance": "$2,852.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosanne Brewer", | |
| "company": "IMANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 550-2935", | |
| "address": "804 Cyrus Avenue, Escondida, Maine, 7351", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a24f411a67ead3fc", | |
| "index": 701, | |
| "balance": "$1,316.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chapman Riggs", | |
| "company": "QUORDATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 529-2647", | |
| "address": "372 Montague Terrace, Floriston, Colorado, 1162", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad7bad7d6ab27922", | |
| "index": 702, | |
| "balance": "$3,374.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ashley Trevino", | |
| "company": "EMOLTRA", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 472-2509", | |
| "address": "253 Berry Street, Vale, New Mexico, 1301", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9558fadd3ec690c99d", | |
| "index": 703, | |
| "balance": "$2,203.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mann Juarez", | |
| "company": "SYNKGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 564-3667", | |
| "address": "262 Maple Street, Highland, Florida, 8853", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95289b0939dba54746", | |
| "index": 704, | |
| "balance": "$3,482.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beulah Stuart", | |
| "company": "VELITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 427-3625", | |
| "address": "342 Joralemon Street, Munjor, Michigan, 3836", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b231f508234a5c8", | |
| "index": 705, | |
| "balance": "$1,274.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Collier Lamb", | |
| "company": "INVENTURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 411-3519", | |
| "address": "620 Caton Place, Cannondale, Delaware, 5206", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9564b818f46ca6beb6", | |
| "index": 706, | |
| "balance": "$1,429.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Daisy Keller", | |
| "company": "TELLIFLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 424-3948", | |
| "address": "874 Taylor Street, Nadine, Virgin Islands, 7558", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9580cabbd02f938cbf", | |
| "index": 707, | |
| "balance": "$2,418.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Summers Davenport", | |
| "company": "ACRUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 591-3485", | |
| "address": "272 Clarkson Avenue, Wanamie, West Virginia, 6961", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954c82a5eab800ffdf", | |
| "index": 708, | |
| "balance": "$2,136.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilma French", | |
| "company": "AFFLUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 435-3064", | |
| "address": "636 Berkeley Place, Allentown, Alabama, 9303", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959b98dbcc43d9e527", | |
| "index": 709, | |
| "balance": "$2,531.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mejia Baird", | |
| "company": "BUNGA", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 429-2413", | |
| "address": "368 Aitken Place, Starks, North Carolina, 8927", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955d7dfdc70ceee796", | |
| "index": 710, | |
| "balance": "$3,120.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Horne Benton", | |
| "company": "COREPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 524-2518", | |
| "address": "625 King Street, Clayville, Indiana, 7538", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cc4b241e46b59f6b", | |
| "index": 711, | |
| "balance": "$1,343.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guadalupe Mendez", | |
| "company": "EARWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (923) 467-3776", | |
| "address": "346 Locust Street, Wright, Missouri, 6658", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95228e6f989ac65fc9", | |
| "index": 712, | |
| "balance": "$2,262.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Calhoun Willis", | |
| "company": "APEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 572-2196", | |
| "address": "456 Clifton Place, Matthews, Arizona, 7628", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954335f5fc6199252c", | |
| "index": 713, | |
| "balance": "$2,004.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kirkland Wilkinson", | |
| "company": "FOSSIEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 582-2322", | |
| "address": "514 Chauncey Street, Lumberton, Massachusetts, 2573", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950049c9996506e37c", | |
| "index": 714, | |
| "balance": "$1,023.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joann Mckay", | |
| "company": "ZOINAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 528-3295", | |
| "address": "699 Radde Place, Hickory, New Jersey, 5419", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95086ee23877e88fb3", | |
| "index": 715, | |
| "balance": "$2,043.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Boyle Malone", | |
| "company": "ONTALITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (937) 535-3483", | |
| "address": "201 Kingsway Place, Driftwood, Pennsylvania, 5132", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ffca14728c7561f0", | |
| "index": 716, | |
| "balance": "$3,078.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stark Pace", | |
| "company": "OCEANICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 500-2476", | |
| "address": "324 Navy Walk, Tonopah, Wisconsin, 2747", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fafd41c3dd1c04ce", | |
| "index": 717, | |
| "balance": "$3,467.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hendricks Slater", | |
| "company": "NEPTIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 599-3030", | |
| "address": "383 Williamsburg Street, Levant, Alaska, 4653", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dc1c04287104133b", | |
| "index": 718, | |
| "balance": "$2,545.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gladys Shields", | |
| "company": "TALAE", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 513-3529", | |
| "address": "108 Vandervoort Place, Bynum, Vermont, 9139", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8c7fd5849776e53", | |
| "index": 719, | |
| "balance": "$2,032.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Murray Clemons", | |
| "company": "RUGSTARS", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 467-2620", | |
| "address": "237 Lincoln Avenue, Gardiner, Illinois, 7385", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957629e9f6a1406ecb", | |
| "index": 720, | |
| "balance": "$2,828.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leanna Palmer", | |
| "company": "EXOTERIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 591-3397", | |
| "address": "594 Congress Street, Charco, Utah, 8726", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950702ff95079fc6c0", | |
| "index": 721, | |
| "balance": "$3,012.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nielsen Levy", | |
| "company": "AMTAS", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 446-3762", | |
| "address": "307 Billings Place, Iola, Connecticut, 1126", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95341a06d1be0831c0", | |
| "index": 722, | |
| "balance": "$3,291.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Simpson George", | |
| "company": "ZIGGLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 432-3774", | |
| "address": "413 Bowery Street, Cawood, Oregon, 2148", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956adf2d14b1c69406", | |
| "index": 723, | |
| "balance": "$2,414.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Griffin Mooney", | |
| "company": "QUIZMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 544-2570", | |
| "address": "293 Hegeman Avenue, Bendon, Federated States Of Micronesia, 3151", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959a222e4c9c046a0e", | |
| "index": 724, | |
| "balance": "$3,797.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ford Joseph", | |
| "company": "MUSAPHICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 529-2777", | |
| "address": "934 Croton Loop, Chical, Kentucky, 6348", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c3c8ce2f2cfb3993", | |
| "index": 725, | |
| "balance": "$1,806.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Black Graham", | |
| "company": "CUIZINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 436-3916", | |
| "address": "366 Riverdale Avenue, Sugartown, Puerto Rico, 4075", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95544c0ff11713ec12", | |
| "index": 726, | |
| "balance": "$2,226.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Julia Graves", | |
| "company": "MIRACULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 487-2388", | |
| "address": "838 Tudor Terrace, Dale, Idaho, 8334", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956e9387c2e1a2f939", | |
| "index": 727, | |
| "balance": "$2,604.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joan Tran", | |
| "company": "QUONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 427-3943", | |
| "address": "409 Apollo Street, Brandermill, Nevada, 4419", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0217702b5c10528", | |
| "index": 728, | |
| "balance": "$2,681.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mary Baker", | |
| "company": "EARTHWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 579-2174", | |
| "address": "196 Jaffray Street, Unionville, South Carolina, 4101", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95075a93e6d46e347a", | |
| "index": 729, | |
| "balance": "$1,663.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Natalia Gutierrez", | |
| "company": "OVATION", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 555-3798", | |
| "address": "658 Logan Street, Waterford, Minnesota, 8277", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b64d8c4d2113c2f1", | |
| "index": 730, | |
| "balance": "$3,301.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Liza Mullins", | |
| "company": "INDEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 588-2826", | |
| "address": "829 Cove Lane, Caspar, North Dakota, 7876", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f4d9d5a27a8cbca8", | |
| "index": 731, | |
| "balance": "$3,897.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Noelle Woods", | |
| "company": "ASSITIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 446-3553", | |
| "address": "441 Maple Avenue, Camptown, District Of Columbia, 3994", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9582972489a186b245", | |
| "index": 732, | |
| "balance": "$3,767.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Buckley Howard", | |
| "company": "ZINCA", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 540-3637", | |
| "address": "267 Eldert Lane, Shrewsbury, New York, 9043", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9547e37269e9257152", | |
| "index": 733, | |
| "balance": "$2,119.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilson Beasley", | |
| "company": "VERTON", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 442-3093", | |
| "address": "221 Barlow Drive, Yardville, Montana, 8920", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9524104d64eb813055", | |
| "index": 734, | |
| "balance": "$1,211.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Love Gardner", | |
| "company": "PROVIDCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 401-2747", | |
| "address": "474 Bushwick Place, Cumminsville, Arkansas, 9945", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957ac4948b6f25a501", | |
| "index": 735, | |
| "balance": "$1,954.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lena Mccarty", | |
| "company": "GENMY", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 469-3588", | |
| "address": "719 Seagate Avenue, Somerset, Kansas, 4904", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95971395fd52dc589b", | |
| "index": 736, | |
| "balance": "$2,375.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tabatha Mcconnell", | |
| "company": "GEOFORM", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 550-3352", | |
| "address": "180 Matthews Court, Riviera, Guam, 1150", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c6fa9b657521b56b", | |
| "index": 737, | |
| "balance": "$1,497.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Webster Schroeder", | |
| "company": "TECHADE", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 599-2807", | |
| "address": "267 Troutman Street, Spelter, Rhode Island, 848", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ddc7852f1ebc3b47", | |
| "index": 738, | |
| "balance": "$3,612.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ruthie Miller", | |
| "company": "TURNABOUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 544-3210", | |
| "address": "517 Devon Avenue, Ticonderoga, Palau, 5999", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b7d748548d38a47a", | |
| "index": 739, | |
| "balance": "$2,575.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sally Rocha", | |
| "company": "MAZUDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 510-3361", | |
| "address": "255 Fuller Place, Dodge, Wyoming, 872", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cdc8fe81507a8d12", | |
| "index": 740, | |
| "balance": "$1,387.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moreno Sanders", | |
| "company": "ACLIMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 423-2624", | |
| "address": "801 Rodney Street, Woodlake, Nebraska, 7843", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95398871bc7e2ddf67", | |
| "index": 741, | |
| "balance": "$1,382.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Socorro Baldwin", | |
| "company": "PETIGEMS", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 481-2388", | |
| "address": "747 Agate Court, Belfair, Northern Mariana Islands, 4598", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dd25402d32eecaac", | |
| "index": 742, | |
| "balance": "$1,496.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morgan Robbins", | |
| "company": "UBERLUX", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 446-2977", | |
| "address": "538 Bills Place, Colton, California, 8610", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959d509b29b6e6056b", | |
| "index": 743, | |
| "balance": "$1,055.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oneal Chase", | |
| "company": "OVOLO", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 578-2903", | |
| "address": "611 Lefferts Place, Crucible, Louisiana, 8806", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953d7de4c1da6a51ee", | |
| "index": 744, | |
| "balance": "$3,501.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Letha Cruz", | |
| "company": "PROFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 518-2714", | |
| "address": "642 Ide Court, Woodlands, Mississippi, 9822", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c442eeea92e4fdce", | |
| "index": 745, | |
| "balance": "$1,902.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Munoz Pennington", | |
| "company": "HYDROCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 459-3905", | |
| "address": "748 Oakland Place, Greenbush, Hawaii, 7247", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b6b90d7f56ef075d", | |
| "index": 746, | |
| "balance": "$3,779.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tran Tillman", | |
| "company": "ESSENSIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 568-3962", | |
| "address": "257 Lorimer Street, Rosburg, Washington, 9776", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fc1f51c350a8a7a", | |
| "index": 747, | |
| "balance": "$3,630.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brooks Norris", | |
| "company": "ENDIPINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 596-3615", | |
| "address": "665 Stuart Street, Grapeview, American Samoa, 5439", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e17bed5d4d12d3fd", | |
| "index": 748, | |
| "balance": "$3,179.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robbie Sawyer", | |
| "company": "CYCLONICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 512-2625", | |
| "address": "807 Gerry Street, Boling, Maryland, 2313", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c85cfa7bb127e71a", | |
| "index": 749, | |
| "balance": "$2,286.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gaines Powell", | |
| "company": "MEDCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 583-2437", | |
| "address": "512 Jerome Street, Homeland, Ohio, 561", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9519268da5a73e73be", | |
| "index": 750, | |
| "balance": "$1,620.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Abby Henderson", | |
| "company": "GEOLOGIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 504-2539", | |
| "address": "326 Cypress Avenue, Shasta, Iowa, 8331", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fca154f11ed6d281", | |
| "index": 751, | |
| "balance": "$3,401.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorene Torres", | |
| "company": "REPETWIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 415-2356", | |
| "address": "843 Highland Place, Marenisco, Georgia, 3482", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a5b92ace59122461", | |
| "index": 752, | |
| "balance": "$3,695.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carolyn Bell", | |
| "company": "HANDSHAKE", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 493-2658", | |
| "address": "321 Wolcott Street, Chesterfield, Tennessee, 557", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955dc00023322202b0", | |
| "index": 753, | |
| "balance": "$2,169.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garrison Henson", | |
| "company": "XOGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 598-2171", | |
| "address": "723 Elm Place, Leland, Virginia, 3751", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a24afc8ebf1ef2d5", | |
| "index": 754, | |
| "balance": "$2,726.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sabrina Jennings", | |
| "company": "BOVIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 476-2775", | |
| "address": "137 Gotham Avenue, Finderne, South Dakota, 7493", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9594a1a63e4f01af25", | |
| "index": 755, | |
| "balance": "$1,308.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Trina Daugherty", | |
| "company": "OMNIGOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 478-3845", | |
| "address": "533 Farragut Place, Nicholson, Oklahoma, 4550", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95361939f002c1293a", | |
| "index": 756, | |
| "balance": "$3,244.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holman Everett", | |
| "company": "GOGOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 513-2420", | |
| "address": "563 Quentin Road, Kenmar, Texas, 194", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95152b34b781d530ab", | |
| "index": 757, | |
| "balance": "$1,531.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janelle Solis", | |
| "company": "FRANSCENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 438-3712", | |
| "address": "854 Stewart Street, Cartwright, Marshall Islands, 8600", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b49e83de7c7ccba0", | |
| "index": 758, | |
| "balance": "$3,622.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jessica Campbell", | |
| "company": "EXOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 506-2537", | |
| "address": "424 Stillwell Place, Waumandee, Maine, 9534", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571819e5769c17bf3", | |
| "index": 759, | |
| "balance": "$1,730.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcfadden Abbott", | |
| "company": "MAGNAFONE", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 410-2080", | |
| "address": "302 Mill Road, Defiance, Colorado, 5440", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e3c07d0d5014c785", | |
| "index": 760, | |
| "balance": "$3,271.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bullock Mercer", | |
| "company": "GORGANIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 400-3796", | |
| "address": "699 Judge Street, Fillmore, New Mexico, 549", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cc4cb5be4e4f124a", | |
| "index": 761, | |
| "balance": "$1,270.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fisher Melendez", | |
| "company": "INSURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 524-3995", | |
| "address": "521 Varick Avenue, Eagletown, Florida, 2650", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9525da42f0a2b13bb2", | |
| "index": 762, | |
| "balance": "$1,852.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fern Brock", | |
| "company": "PEARLESEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 404-3177", | |
| "address": "628 Bradford Street, Hollymead, Michigan, 1490", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951b6861dde900b251", | |
| "index": 763, | |
| "balance": "$1,718.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hickman Harrell", | |
| "company": "EPLODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 582-3175", | |
| "address": "336 Norwood Avenue, Dowling, Delaware, 1823", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fd1657e6ca7567f3", | |
| "index": 764, | |
| "balance": "$3,071.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Louisa Sweeney", | |
| "company": "NEWCUBE", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 451-3662", | |
| "address": "853 Havens Place, Rew, Virgin Islands, 6360", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bfde6437ba84dd19", | |
| "index": 765, | |
| "balance": "$3,483.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Estes Dickson", | |
| "company": "APPLIDECK", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 410-3492", | |
| "address": "505 Irwin Street, Dunlo, West Virginia, 1041", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9553d949f7214d3fcb", | |
| "index": 766, | |
| "balance": "$1,817.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deena Hester", | |
| "company": "KONGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 523-3594", | |
| "address": "420 Homecrest Court, Aguila, Alabama, 3778", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eb6524c7fb180353", | |
| "index": 767, | |
| "balance": "$1,705.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gibbs Alexander", | |
| "company": "MARKETOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 510-3886", | |
| "address": "189 President Street, Thermal, North Carolina, 5399", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95295faa71878efca7", | |
| "index": 768, | |
| "balance": "$2,617.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Matthews Parker", | |
| "company": "FUELWORKS", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 404-2189", | |
| "address": "319 Folsom Place, Wescosville, Indiana, 7100", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95be56a09ea76c18df", | |
| "index": 769, | |
| "balance": "$2,000.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maxwell Leonard", | |
| "company": "PLEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 436-3392", | |
| "address": "751 Pine Street, Steinhatchee, Missouri, 9808", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950cafa3457ec4943f", | |
| "index": 770, | |
| "balance": "$2,888.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Davis Fisher", | |
| "company": "FLUMBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 539-2165", | |
| "address": "497 Bergen Avenue, Yonah, Arizona, 4789", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955bef602dccaa9856", | |
| "index": 771, | |
| "balance": "$2,415.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rena Gilmore", | |
| "company": "PHORMULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (978) 537-3220", | |
| "address": "392 Gaylord Drive, Urie, Massachusetts, 1762", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958eccda422ed0b70d", | |
| "index": 772, | |
| "balance": "$2,907.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Herrera Stokes", | |
| "company": "CRUSTATIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (810) 495-3766", | |
| "address": "577 Luquer Street, Frizzleburg, New Jersey, 9544", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950be1110f047c3c1e", | |
| "index": 773, | |
| "balance": "$3,362.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "King Lancaster", | |
| "company": "COMVEYOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 600-2976", | |
| "address": "755 Virginia Place, Foxworth, Pennsylvania, 6103", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f7bf610f4bac78de", | |
| "index": 774, | |
| "balance": "$1,470.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shawna Ingram", | |
| "company": "STREZZO", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 592-2988", | |
| "address": "434 Taaffe Place, Fowlerville, Wisconsin, 9758", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ced48b38ea4a8f07", | |
| "index": 775, | |
| "balance": "$1,009.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tamra Haynes", | |
| "company": "COMVEY", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 567-3734", | |
| "address": "577 Olive Street, Waterloo, Alaska, 6328", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956ff146643940e899", | |
| "index": 776, | |
| "balance": "$2,896.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bartlett Manning", | |
| "company": "VIDTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 523-2183", | |
| "address": "615 Moore Street, Abiquiu, Vermont, 6321", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95705a0ea471f97dbd", | |
| "index": 777, | |
| "balance": "$3,808.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sheppard Ramirez", | |
| "company": "RETRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 404-2991", | |
| "address": "381 Hampton Place, Glidden, Illinois, 3101", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95892e0cd5b7e9d549", | |
| "index": 778, | |
| "balance": "$2,691.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rochelle Stevenson", | |
| "company": "STOCKPOST", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 526-2226", | |
| "address": "697 Ridge Court, Rehrersburg, Utah, 3728", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9596ee5d8ac5ab667b", | |
| "index": 779, | |
| "balance": "$1,785.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blackwell Brown", | |
| "company": "FILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (978) 534-2142", | |
| "address": "451 Borinquen Pl, Lowell, Connecticut, 4228", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c2f1a7ce3e1cc69d", | |
| "index": 780, | |
| "balance": "$1,037.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hope Mclaughlin", | |
| "company": "BISBA", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 600-3102", | |
| "address": "571 Tampa Court, Century, Oregon, 7207", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eb1fdad8cb9878e8", | |
| "index": 781, | |
| "balance": "$3,445.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Helen Barton", | |
| "company": "LIMAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 460-3630", | |
| "address": "831 Dearborn Court, Freeburn, Federated States Of Micronesia, 582", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950164f6a34a3ef557", | |
| "index": 782, | |
| "balance": "$1,880.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carrillo Green", | |
| "company": "HAIRPORT", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 499-3576", | |
| "address": "485 Crosby Avenue, Ezel, Kentucky, 1401", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9555eb1a0c691649df", | |
| "index": 783, | |
| "balance": "$3,918.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Romero Moreno", | |
| "company": "UTARIAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 444-2955", | |
| "address": "414 Gelston Avenue, Bedias, Puerto Rico, 3112", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fa03827250eebee", | |
| "index": 784, | |
| "balance": "$1,766.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccormick Holcomb", | |
| "company": "HALAP", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 592-3536", | |
| "address": "750 Beaver Street, Chloride, Idaho, 810", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951e96c58520cba12e", | |
| "index": 785, | |
| "balance": "$1,855.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kaye Garner", | |
| "company": "NORALEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 442-3997", | |
| "address": "864 Keen Court, Sabillasville, Nevada, 9856", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9517518b8eb13fdc9e", | |
| "index": 786, | |
| "balance": "$3,997.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carey Serrano", | |
| "company": "GENEKOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 479-3208", | |
| "address": "934 Nassau Street, Englevale, South Carolina, 3763", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d4e6dca6180a6ea5", | |
| "index": 787, | |
| "balance": "$1,466.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Singleton Martin", | |
| "company": "REALYSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 448-2937", | |
| "address": "181 Orange Street, Herbster, Minnesota, 2548", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9575afba53ef585d39", | |
| "index": 788, | |
| "balance": "$3,186.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Conrad Chen", | |
| "company": "SUREMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 420-2811", | |
| "address": "628 Butler Street, Townsend, North Dakota, 7558", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952fffbcfa1b8acd19", | |
| "index": 789, | |
| "balance": "$3,205.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Emily Holmes", | |
| "company": "SOLAREN", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 494-2193", | |
| "address": "690 Creamer Street, Kilbourne, District Of Columbia, 1640", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ce660f60303d8be3", | |
| "index": 790, | |
| "balance": "$3,430.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bridgett Simmons", | |
| "company": "DEEPENDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 480-3751", | |
| "address": "658 Willow Street, Independence, New York, 3958", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95624d37b0d0b8904d", | |
| "index": 791, | |
| "balance": "$3,761.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Grace Cain", | |
| "company": "KIDGREASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 573-3435", | |
| "address": "931 Harwood Place, Hessville, Montana, 794", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953611f32b83329a3d", | |
| "index": 792, | |
| "balance": "$2,814.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francisca Church", | |
| "company": "CALCU", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 468-2506", | |
| "address": "145 Dikeman Street, Vicksburg, Arkansas, 2148", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586d73f449a4a7e81", | |
| "index": 793, | |
| "balance": "$3,378.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pearlie Bennett", | |
| "company": "ACCUPHARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 523-2174", | |
| "address": "566 Story Court, Lowgap, Kansas, 7708", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951c0546a75d1ce8df", | |
| "index": 794, | |
| "balance": "$2,618.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Giles Austin", | |
| "company": "MEDIOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 412-3731", | |
| "address": "725 Ridgewood Avenue, Catharine, Guam, 2175", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95baf5c76c9f62f086", | |
| "index": 795, | |
| "balance": "$1,013.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Milagros Chaney", | |
| "company": "GEEKFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 415-2528", | |
| "address": "726 Woodruff Avenue, Castleton, Rhode Island, 8683", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952d4bbe3af7914602", | |
| "index": 796, | |
| "balance": "$2,948.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nora Schneider", | |
| "company": "HARMONEY", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 476-2050", | |
| "address": "411 Box Street, Canoochee, Palau, 5541", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95340dbe69869e6249", | |
| "index": 797, | |
| "balance": "$1,001.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Charlene Miles", | |
| "company": "ZAPHIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 506-3904", | |
| "address": "592 Bushwick Avenue, Mansfield, Wyoming, 9277", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952969b12293b470a6", | |
| "index": 798, | |
| "balance": "$3,824.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Knox Giles", | |
| "company": "ZERBINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 443-3465", | |
| "address": "874 Waldorf Court, Cataract, Nebraska, 6900", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956733d2d00d5cf97e", | |
| "index": 799, | |
| "balance": "$2,104.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Darlene Bush", | |
| "company": "ASSURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 600-3439", | |
| "address": "474 Furman Avenue, Whitehaven, Northern Mariana Islands, 2090", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950be4add964f7821c", | |
| "index": 800, | |
| "balance": "$3,586.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Traci Camacho", | |
| "company": "TERAPRENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 464-3412", | |
| "address": "714 Conklin Avenue, Aberdeen, California, 6891", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956eab5fa68faf9f15", | |
| "index": 801, | |
| "balance": "$1,497.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roach Cervantes", | |
| "company": "ORBALIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 554-3036", | |
| "address": "109 Hill Street, Delshire, Louisiana, 1514", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c821dce35f861cf4", | |
| "index": 802, | |
| "balance": "$2,483.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gallegos Weiss", | |
| "company": "PROWASTE", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 559-3732", | |
| "address": "262 Newton Street, Southmont, Mississippi, 640", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952b7651d5826f219c", | |
| "index": 803, | |
| "balance": "$3,496.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kathryn Lynn", | |
| "company": "ACRODANCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 492-2544", | |
| "address": "975 Clarendon Road, Callaghan, Hawaii, 746", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95438547aecd51bd01", | |
| "index": 804, | |
| "balance": "$2,736.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Paul Mendoza", | |
| "company": "COMVEYER", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 508-2809", | |
| "address": "288 Guernsey Street, Dixonville, Washington, 4075", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959d528130820811ea", | |
| "index": 805, | |
| "balance": "$3,416.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holland Sparks", | |
| "company": "KINDALOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 441-2371", | |
| "address": "692 Varick Street, Calverton, American Samoa, 3652", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9582f90a57f9824e06", | |
| "index": 806, | |
| "balance": "$2,176.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Snow Rojas", | |
| "company": "EXTRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 426-2675", | |
| "address": "444 Lynch Street, Morgandale, Maryland, 145", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8f76ed14dbf65bb", | |
| "index": 807, | |
| "balance": "$3,676.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dudley Workman", | |
| "company": "GADTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 577-2391", | |
| "address": "397 Bay Street, Taycheedah, Ohio, 7010", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9518bf5868ef408501", | |
| "index": 808, | |
| "balance": "$2,875.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carla Velasquez", | |
| "company": "KNEEDLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 407-2260", | |
| "address": "266 Chester Street, Allensworth, Iowa, 4279", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952321deba5a051e7b", | |
| "index": 809, | |
| "balance": "$1,991.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beatrice William", | |
| "company": "NETILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 499-2403", | |
| "address": "136 Glenwood Road, Collins, Georgia, 7759", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95267b11a9a4c1fac1", | |
| "index": 810, | |
| "balance": "$3,449.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jamie Alvarado", | |
| "company": "FITCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 589-2826", | |
| "address": "166 Lancaster Avenue, Fruitdale, Tennessee, 2665", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fecce6f638c063c0", | |
| "index": 811, | |
| "balance": "$3,717.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melissa Dudley", | |
| "company": "ECOLIGHT", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 412-2371", | |
| "address": "968 Amity Street, Jacumba, Virginia, 4085", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9570f4b34660003e84", | |
| "index": 812, | |
| "balance": "$2,475.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mills Shaffer", | |
| "company": "TWIIST", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 441-3934", | |
| "address": "246 Post Court, Condon, South Dakota, 4427", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fcc0d7d1d5c47a8d", | |
| "index": 813, | |
| "balance": "$3,795.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anita Yang", | |
| "company": "ZYTRAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 482-2577", | |
| "address": "374 Ross Street, Graball, Oklahoma, 4069", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954ead7f56d11184d6", | |
| "index": 814, | |
| "balance": "$2,636.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bryant Faulkner", | |
| "company": "COMTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 584-2623", | |
| "address": "685 Pershing Loop, Carrizo, Texas, 4339", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956628bbad7e06e2b4", | |
| "index": 815, | |
| "balance": "$1,937.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tanner Guerra", | |
| "company": "COASH", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 537-2972", | |
| "address": "519 Highland Boulevard, Homeworth, Marshall Islands, 5774", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9587520a4901ca694c", | |
| "index": 816, | |
| "balance": "$2,176.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maxine Webster", | |
| "company": "SPHERIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 420-3298", | |
| "address": "759 Knickerbocker Avenue, Gadsden, Maine, 7637", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bad368768182b9dc", | |
| "index": 817, | |
| "balance": "$1,615.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leticia Peck", | |
| "company": "INTRAWEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 535-2953", | |
| "address": "271 Waldane Court, Talpa, Colorado, 9747", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9520fdd2f6f2f62416", | |
| "index": 818, | |
| "balance": "$3,261.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Avery Rush", | |
| "company": "ENERSAVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 476-2490", | |
| "address": "100 Poly Place, Jackpot, New Mexico, 8107", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956910481f17899b10", | |
| "index": 819, | |
| "balance": "$1,583.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chris Clements", | |
| "company": "MICROLUXE", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 453-2066", | |
| "address": "621 Sandford Street, Kansas, Florida, 7579", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950e482435e9e6dea8", | |
| "index": 820, | |
| "balance": "$2,702.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alicia Hunter", | |
| "company": "RAMEON", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 409-2352", | |
| "address": "247 Green Street, Haring, Michigan, 6251", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950f31532edbca811d", | |
| "index": 821, | |
| "balance": "$1,655.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Simon Peterson", | |
| "company": "RETROTEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (842) 472-2712", | |
| "address": "765 Bartlett Place, Wawona, Delaware, 9471", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952d49ca5d276fc05c", | |
| "index": 822, | |
| "balance": "$2,819.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Katherine Wagner", | |
| "company": "EMPIRICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 488-3647", | |
| "address": "154 Durland Place, Roderfield, Virgin Islands, 7746", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a5b852770159fc8a", | |
| "index": 823, | |
| "balance": "$2,973.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Payne Chavez", | |
| "company": "NAVIR", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 469-3957", | |
| "address": "525 Joval Court, Martinsville, West Virginia, 5335", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9587b032ec1ffad313", | |
| "index": 824, | |
| "balance": "$3,479.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wright Love", | |
| "company": "TRANSLINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 513-3795", | |
| "address": "362 Grove Street, Dragoon, Alabama, 7448", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9566bac66514b40002", | |
| "index": 825, | |
| "balance": "$3,816.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patti Robles", | |
| "company": "EXTRAWEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (850) 400-2710", | |
| "address": "261 Clinton Street, Hoehne, North Carolina, 7691", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954c893fc1602c0d4a", | |
| "index": 826, | |
| "balance": "$2,735.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christensen Hunt", | |
| "company": "ISOTRONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 433-3721", | |
| "address": "176 Bryant Street, Lorraine, Indiana, 2537", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95938429c359e531e3", | |
| "index": 827, | |
| "balance": "$2,921.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blake Bowers", | |
| "company": "WATERBABY", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 511-2465", | |
| "address": "178 Dictum Court, Frystown, Missouri, 3729", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95191907f8151a7a10", | |
| "index": 828, | |
| "balance": "$3,730.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francine Cooley", | |
| "company": "QUANTALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 429-2111", | |
| "address": "311 Brighton Avenue, Marienthal, Arizona, 4245", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571d03b3823c182ab", | |
| "index": 829, | |
| "balance": "$3,092.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mara English", | |
| "company": "BRISTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 570-2900", | |
| "address": "600 Dunne Court, Healy, Massachusetts, 4046", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954c8f89f551b761d7", | |
| "index": 830, | |
| "balance": "$1,023.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marla Buchanan", | |
| "company": "BLURRYBUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 462-3588", | |
| "address": "741 Wythe Place, Movico, New Jersey, 8877", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ec7d4d059e9931d", | |
| "index": 831, | |
| "balance": "$2,275.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hopper Adkins", | |
| "company": "FUTURIZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 474-3352", | |
| "address": "239 Oriental Boulevard, Hillsboro, Pennsylvania, 2381", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9539e1a89110e5db3d", | |
| "index": 832, | |
| "balance": "$1,327.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kris Lucas", | |
| "company": "GEEKULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 411-3767", | |
| "address": "880 Ralph Avenue, Klagetoh, Wisconsin, 3299", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952e7afae618523ecf", | |
| "index": 833, | |
| "balance": "$2,432.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lee Bishop", | |
| "company": "DOGNOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 585-3710", | |
| "address": "496 Forbell Street, Lawrence, Alaska, 9451", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a9d2a2776c01434", | |
| "index": 834, | |
| "balance": "$3,765.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "English Rogers", | |
| "company": "PYRAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 412-3804", | |
| "address": "917 Desmond Court, Ellerslie, Vermont, 2297", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9530de0c23177d7cc4", | |
| "index": 835, | |
| "balance": "$3,754.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alexander Singleton", | |
| "company": "PHOTOBIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (937) 458-3694", | |
| "address": "397 Flatlands Avenue, Chase, Illinois, 1742", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d90ac4b392d1d581", | |
| "index": 836, | |
| "balance": "$1,851.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "James Boyer", | |
| "company": "TRIBALOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 435-3060", | |
| "address": "786 Herkimer Street, Hiwasse, Utah, 1643", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9538ef375845e74088", | |
| "index": 837, | |
| "balance": "$2,713.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Buckner Beach", | |
| "company": "HIVEDOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 422-3317", | |
| "address": "823 Hunts Lane, Onton, Connecticut, 794", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9527ddfb70e8512b88", | |
| "index": 838, | |
| "balance": "$3,265.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Finch Burns", | |
| "company": "ZENCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 536-2464", | |
| "address": "320 Brightwater Court, Beyerville, Oregon, 1661", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9543f560711348cf66", | |
| "index": 839, | |
| "balance": "$2,765.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "David Mann", | |
| "company": "CALCULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 510-2560", | |
| "address": "616 Canal Avenue, Oberlin, Federated States Of Micronesia, 2744", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956b7795894b5984c2", | |
| "index": 840, | |
| "balance": "$1,331.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Macdonald Barker", | |
| "company": "EQUITOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 405-2148", | |
| "address": "199 Centre Street, Cutter, Kentucky, 9000", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cf6fdb4e5c01ccbc", | |
| "index": 841, | |
| "balance": "$1,910.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jocelyn Hoover", | |
| "company": "DEMINIMUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 569-2270", | |
| "address": "813 Rochester Avenue, Beechmont, Puerto Rico, 1424", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a1e6f761b7f5fcf2", | |
| "index": 842, | |
| "balance": "$3,844.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lucy Mills", | |
| "company": "EXTRAGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 437-3917", | |
| "address": "437 Greenpoint Avenue, Sunnyside, Idaho, 8498", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8b3637d91d88d92", | |
| "index": 843, | |
| "balance": "$1,782.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rivers Contreras", | |
| "company": "ZILLACON", | |
| "email": "[email protected]", | |
| "phone": "+1 (923) 497-3281", | |
| "address": "897 Franklin Street, Durham, Nevada, 2481", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a65056244d6ece90", | |
| "index": 844, | |
| "balance": "$3,831.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Glenda Ward", | |
| "company": "TALENDULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 545-2131", | |
| "address": "339 Conselyea Street, Williamson, South Carolina, 5944", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537ee9903f6a6357a", | |
| "index": 845, | |
| "balance": "$1,503.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jana Stevens", | |
| "company": "STRALUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 503-3341", | |
| "address": "654 Carlton Avenue, Layhill, Minnesota, 2584", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954736679d875404e5", | |
| "index": 846, | |
| "balance": "$3,026.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Raymond Howell", | |
| "company": "GEEKY", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 544-3730", | |
| "address": "521 Arkansas Drive, Bentley, North Dakota, 1429", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9568e662efe3a0ea35", | |
| "index": 847, | |
| "balance": "$3,566.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deidre Lester", | |
| "company": "DREAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 566-3129", | |
| "address": "145 Richmond Street, Springhill, District Of Columbia, 4577", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d09e6c3199d591e6", | |
| "index": 848, | |
| "balance": "$3,049.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lamb Gordon", | |
| "company": "HOMELUX", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 428-3277", | |
| "address": "292 Hutchinson Court, Lindisfarne, New York, 1479", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956235a1f6accd7144", | |
| "index": 849, | |
| "balance": "$1,505.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Castillo Cabrera", | |
| "company": "HOMETOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 598-3506", | |
| "address": "679 John Street, Edinburg, Montana, 6089", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957fd3b515d2572437", | |
| "index": 850, | |
| "balance": "$2,941.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alisa Mccray", | |
| "company": "BEDDER", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 546-2101", | |
| "address": "115 Alice Court, Blanco, Arkansas, 9295", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec6a38deae2dc4fa", | |
| "index": 851, | |
| "balance": "$3,508.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nina Blackwell", | |
| "company": "ERSUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 472-2093", | |
| "address": "302 Prescott Place, Lemoyne, Kansas, 5800", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e9d8f26cd3f74992", | |
| "index": 852, | |
| "balance": "$2,388.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Enid Riley", | |
| "company": "EXOSPEED", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 427-2100", | |
| "address": "682 Bancroft Place, Statenville, Guam, 3929", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950fd6aee2a55395d3", | |
| "index": 853, | |
| "balance": "$2,029.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sherman Berry", | |
| "company": "FORTEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 415-3228", | |
| "address": "471 Osborn Street, Conway, Rhode Island, 5903", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a3dd41789e1e95dd", | |
| "index": 854, | |
| "balance": "$3,310.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bright Fitzgerald", | |
| "company": "ZOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 503-3798", | |
| "address": "584 Vandalia Avenue, Fontanelle, Palau, 6940", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ed62769b5e6fce11", | |
| "index": 855, | |
| "balance": "$1,412.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cochran Hays", | |
| "company": "ZENTHALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 558-2951", | |
| "address": "713 Duryea Place, Stewart, Wyoming, 6675", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d2428481dd79ab0b", | |
| "index": 856, | |
| "balance": "$2,110.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Good Montoya", | |
| "company": "INTERLOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 542-2356", | |
| "address": "272 Richards Street, Volta, Nebraska, 7521", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e4f83a99e805010d", | |
| "index": 857, | |
| "balance": "$1,341.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Myers Davis", | |
| "company": "MEGALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (978) 594-3219", | |
| "address": "168 Pineapple Street, Derwood, Northern Mariana Islands, 4769", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95887f14ab8fd17e61", | |
| "index": 858, | |
| "balance": "$1,399.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Trudy Spence", | |
| "company": "KYAGURU", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 405-2364", | |
| "address": "656 Sackman Street, Wauhillau, California, 9348", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95260ee3b809f90cfe", | |
| "index": 859, | |
| "balance": "$1,989.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deleon Cummings", | |
| "company": "AQUAFIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 494-3724", | |
| "address": "601 Miller Avenue, Frierson, Louisiana, 9129", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dcd8c3d70ec24a53", | |
| "index": 860, | |
| "balance": "$2,514.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lindsay Rollins", | |
| "company": "OATFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 412-3856", | |
| "address": "486 George Street, Boyd, Mississippi, 1379", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9581d64dfc8de00175", | |
| "index": 861, | |
| "balance": "$1,688.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pacheco Cook", | |
| "company": "TOYLETRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 450-3437", | |
| "address": "848 Lombardy Street, Cherokee, Hawaii, 5077", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aef4dc387b7e75ad", | |
| "index": 862, | |
| "balance": "$1,856.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bond Jarvis", | |
| "company": "INCUBUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 439-3354", | |
| "address": "262 Times Placez, Holtville, Washington, 157", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95622bad8decc4826e", | |
| "index": 863, | |
| "balance": "$2,266.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Salas Rodgers", | |
| "company": "VALREDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 509-2386", | |
| "address": "638 Perry Terrace, Freetown, American Samoa, 1351", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b525d6d1be795e8d", | |
| "index": 864, | |
| "balance": "$2,903.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Graves Lang", | |
| "company": "GEEKMOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 513-2363", | |
| "address": "908 Dorchester Road, Calpine, Maryland, 3684", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a8b678ebc8e98b7a", | |
| "index": 865, | |
| "balance": "$2,052.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sampson Battle", | |
| "company": "SUNCLIPSE", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 486-3479", | |
| "address": "613 Nolans Lane, Celeryville, Ohio, 3081", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bbed44a1f6630088", | |
| "index": 866, | |
| "balance": "$2,849.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beverley Gates", | |
| "company": "JUMPSTACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 595-3007", | |
| "address": "670 Bogart Street, Norwood, Iowa, 4571", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fe3cd2cd91189af", | |
| "index": 867, | |
| "balance": "$2,132.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marta Wynn", | |
| "company": "ZENOLUX", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 598-3765", | |
| "address": "303 Hall Street, Takilma, Georgia, 535", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951604895f5184fcbf", | |
| "index": 868, | |
| "balance": "$2,762.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Warner Wilkins", | |
| "company": "MEDIFAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 542-2263", | |
| "address": "313 Ditmas Avenue, Choctaw, Tennessee, 8565", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a9ec1192b866494e", | |
| "index": 869, | |
| "balance": "$2,603.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mays Snider", | |
| "company": "BARKARAMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 566-3725", | |
| "address": "892 Ferry Place, Bartley, Virginia, 5759", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c8d9f3f44440def8", | |
| "index": 870, | |
| "balance": "$3,532.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tanisha Barry", | |
| "company": "ECLIPSENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 479-3152", | |
| "address": "362 Hanover Place, Sanborn, South Dakota, 5885", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95be049a6d770af814", | |
| "index": 871, | |
| "balance": "$2,910.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pennington Fuentes", | |
| "company": "ACCUFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 477-2746", | |
| "address": "194 Rogers Avenue, Barstow, Oklahoma, 7492", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950081120cb460c3a2", | |
| "index": 872, | |
| "balance": "$3,496.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Quinn Hamilton", | |
| "company": "EVIDENDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 475-3430", | |
| "address": "494 Miller Place, Hilltop, Texas, 1828", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95236e6cda8b2b867b", | |
| "index": 873, | |
| "balance": "$3,007.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holden Norton", | |
| "company": "ANIXANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 563-2723", | |
| "address": "648 Everett Avenue, Waterview, Marshall Islands, 8464", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954151c7e55bf7c0db", | |
| "index": 874, | |
| "balance": "$3,074.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gabriela Carver", | |
| "company": "HINWAY", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 491-3621", | |
| "address": "329 Scott Avenue, Goochland, Maine, 8901", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a6f5bc46547be426", | |
| "index": 875, | |
| "balance": "$2,105.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Autumn Carey", | |
| "company": "ECRATER", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 538-2433", | |
| "address": "596 Oxford Walk, Kent, Colorado, 1313", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9536e52b47593d753d", | |
| "index": 876, | |
| "balance": "$1,019.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jannie Atkinson", | |
| "company": "GEOSTELE", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 494-2506", | |
| "address": "308 Gatling Place, Morningside, New Mexico, 3476", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d076a754531a5292", | |
| "index": 877, | |
| "balance": "$1,816.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Millie Hodge", | |
| "company": "PASTURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 562-3384", | |
| "address": "308 Kermit Place, Jardine, Florida, 4043", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956ec9adf22dfefb92", | |
| "index": 878, | |
| "balance": "$1,298.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lott Barnes", | |
| "company": "VIRVA", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 519-3672", | |
| "address": "569 Ludlam Place, Chamizal, Michigan, 5107", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f634e4115546ec5f", | |
| "index": 879, | |
| "balance": "$2,097.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Collins Wilder", | |
| "company": "HOTCAKES", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 446-2230", | |
| "address": "790 Hendrickson Place, Bennett, Delaware, 203", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cb68957518ac90e8", | |
| "index": 880, | |
| "balance": "$2,327.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leta Ewing", | |
| "company": "SOPRANO", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 600-2667", | |
| "address": "220 Wogan Terrace, Neibert, Virgin Islands, 9344", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d5072e278ec12db", | |
| "index": 881, | |
| "balance": "$1,891.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dillard Meyer", | |
| "company": "MANTRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 446-2980", | |
| "address": "519 Montauk Court, Coinjock, West Virginia, 2904", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9512fc4eb03d41466d", | |
| "index": 882, | |
| "balance": "$1,753.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dawn Petersen", | |
| "company": "BOILICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 597-2403", | |
| "address": "601 Strickland Avenue, Savage, Alabama, 8347", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a7a0458fdc2e9bfd", | |
| "index": 883, | |
| "balance": "$2,193.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "George Garrison", | |
| "company": "MENBRAIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 498-2598", | |
| "address": "994 Bokee Court, Kylertown, North Carolina, 660", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952173034f8aa4a7f7", | |
| "index": 884, | |
| "balance": "$2,920.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "French Hill", | |
| "company": "COMSTAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 452-2247", | |
| "address": "312 Otsego Street, Nipinnawasee, Indiana, 6172", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8f4ac2fe51651c0", | |
| "index": 885, | |
| "balance": "$3,658.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Luella Montgomery", | |
| "company": "ENOMEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 468-3463", | |
| "address": "975 Cass Place, Belgreen, Missouri, 4296", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95609def135783f547", | |
| "index": 886, | |
| "balance": "$3,060.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sasha Stout", | |
| "company": "ANOCHA", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 481-3879", | |
| "address": "805 Reeve Place, Allison, Arizona, 5328", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9536dbbbe06a505450", | |
| "index": 887, | |
| "balance": "$3,732.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wells Cunningham", | |
| "company": "CINESANCT", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 501-3806", | |
| "address": "413 Midwood Street, Rowe, Massachusetts, 9660", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958b0be9eafefe61f9", | |
| "index": 888, | |
| "balance": "$3,877.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elaine Bray", | |
| "company": "MEDESIGN", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 570-2845", | |
| "address": "581 Monument Walk, Kula, New Jersey, 6443", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95766955cff8bfc5a3", | |
| "index": 889, | |
| "balance": "$3,517.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcknight Ballard", | |
| "company": "SINGAVERA", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 488-2133", | |
| "address": "839 Noll Street, Summertown, Pennsylvania, 2900", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958c162de91252c629", | |
| "index": 890, | |
| "balance": "$1,070.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Norman Lowe", | |
| "company": "ARCTIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 520-2381", | |
| "address": "657 Doughty Street, Lookingglass, Wisconsin, 5098", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a7a6a4f68ca7fec", | |
| "index": 891, | |
| "balance": "$3,453.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mckee Pate", | |
| "company": "WEBIOTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 552-3299", | |
| "address": "124 Wyckoff Street, Deputy, Alaska, 8618", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c9ea0f1425a52232", | |
| "index": 892, | |
| "balance": "$2,614.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tami Terry", | |
| "company": "ZOLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 561-2789", | |
| "address": "585 Windsor Place, Trinway, Vermont, 4656", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954efebcc921585a59", | |
| "index": 893, | |
| "balance": "$1,793.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lina Newman", | |
| "company": "ZOGAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (868) 560-3016", | |
| "address": "198 Hinsdale Street, Skyland, Illinois, 8211", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9576095e7d5e21c095", | |
| "index": 894, | |
| "balance": "$1,852.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Orr Payne", | |
| "company": "RADIANTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 436-2120", | |
| "address": "417 Lake Street, Nicut, Utah, 8752", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fe6c5580c6f0fe2a", | |
| "index": 895, | |
| "balance": "$1,409.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Potter Doyle", | |
| "company": "ORGANICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 426-2077", | |
| "address": "845 Leonard Street, Norvelt, Connecticut, 981", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95051251f9f9e964d7", | |
| "index": 896, | |
| "balance": "$1,665.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hodge Rivera", | |
| "company": "GEEKETRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 600-2137", | |
| "address": "298 Ivan Court, Tedrow, Oregon, 862", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c21c4ecc0c4124a3", | |
| "index": 897, | |
| "balance": "$3,427.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Arnold Klein", | |
| "company": "EWEVILLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 408-3463", | |
| "address": "270 Pierrepont Place, Neahkahnie, Federated States Of Micronesia, 4947", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958cafdefd6c480a57", | |
| "index": 898, | |
| "balance": "$2,807.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Poole Hickman", | |
| "company": "FREAKIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 585-3732", | |
| "address": "564 Bragg Court, Dexter, Kentucky, 6800", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957d9b9b270626496a", | |
| "index": 899, | |
| "balance": "$3,459.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Annette Waters", | |
| "company": "ACCIDENCY", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 551-3626", | |
| "address": "318 Grace Court, Leola, Puerto Rico, 8270", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c6b2344fdc693876", | |
| "index": 900, | |
| "balance": "$1,694.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Glenna Barrera", | |
| "company": "GOKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 456-3562", | |
| "address": "245 Crescent Street, Fresno, Idaho, 2752", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956a71659e9fabbb0c", | |
| "index": 901, | |
| "balance": "$3,293.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hays Chang", | |
| "company": "PODUNK", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 490-2846", | |
| "address": "162 Harrison Avenue, Wolcott, Nevada, 334", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a931baa7e354e418", | |
| "index": 902, | |
| "balance": "$1,865.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Houston Moses", | |
| "company": "PIVITOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 438-3807", | |
| "address": "341 Bay Avenue, Jeff, South Carolina, 3315", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f99b540cdbb80576", | |
| "index": 903, | |
| "balance": "$2,209.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hoffman Valdez", | |
| "company": "ZAJ", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 491-2211", | |
| "address": "232 Montague Street, Greenfields, Minnesota, 2707", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957e3a88e63290becd", | |
| "index": 904, | |
| "balance": "$3,999.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Church Wolfe", | |
| "company": "ZILLADYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 537-3280", | |
| "address": "262 Williams Court, Trona, North Dakota, 9613", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b2bdef4db6f7c2b2", | |
| "index": 905, | |
| "balance": "$2,742.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Spears Griffin", | |
| "company": "LETPRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 457-2909", | |
| "address": "794 Opal Court, Cliff, District Of Columbia, 2856", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9509da629e0de5e93d", | |
| "index": 906, | |
| "balance": "$2,329.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Johns Bridges", | |
| "company": "TRASOLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 426-3740", | |
| "address": "857 Colonial Court, Suitland, New York, 9158", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ed1811306a9fbc3", | |
| "index": 907, | |
| "balance": "$2,911.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francis Francis", | |
| "company": "QUARMONY", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 505-2501", | |
| "address": "374 Visitation Place, Rosine, Montana, 8142", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ca3711b8e90d8891", | |
| "index": 908, | |
| "balance": "$1,135.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Danielle Curtis", | |
| "company": "STEELTAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 459-3669", | |
| "address": "672 Farragut Road, Fivepointville, Arkansas, 8092", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951fbff9b6e42b916d", | |
| "index": 909, | |
| "balance": "$2,179.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dickerson Delaney", | |
| "company": "MUSANPOLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 569-3045", | |
| "address": "830 Gardner Avenue, Marshall, Kansas, 8465", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951a018fd02b3d45b8", | |
| "index": 910, | |
| "balance": "$3,760.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marquez Mclean", | |
| "company": "ZILLATIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 510-3250", | |
| "address": "922 Freeman Street, Silkworth, Guam, 9745", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f77d54ab5825d7c", | |
| "index": 911, | |
| "balance": "$3,073.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Concetta Owens", | |
| "company": "BLEEKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 417-3001", | |
| "address": "983 Exeter Street, Macdona, Rhode Island, 5517", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8132f8a913c8fc5", | |
| "index": 912, | |
| "balance": "$2,240.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rene Reid", | |
| "company": "PORTICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (904) 573-2237", | |
| "address": "892 Forest Place, Corinne, Palau, 5989", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95436c27708268097e", | |
| "index": 913, | |
| "balance": "$1,370.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sofia Marks", | |
| "company": "EXPOSA", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 519-3081", | |
| "address": "630 Lefferts Avenue, Bawcomville, Wyoming, 4202", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9514c6a3459ddee03a", | |
| "index": 914, | |
| "balance": "$3,123.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hancock Joyner", | |
| "company": "COFINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 506-3493", | |
| "address": "746 McKibbin Street, Virgie, Nebraska, 7218", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e7b62b169c0c2e9b", | |
| "index": 915, | |
| "balance": "$2,030.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rae Sullivan", | |
| "company": "ZIZZLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 416-3449", | |
| "address": "911 Monroe Street, Lindcove, Northern Mariana Islands, 2177", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9522a98760e2ab7c95", | |
| "index": 916, | |
| "balance": "$3,690.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eva Collins", | |
| "company": "GLOBOIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 443-2944", | |
| "address": "940 Rugby Road, Bloomington, California, 3506", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0ea5055285eab4a", | |
| "index": 917, | |
| "balance": "$2,018.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leanne Decker", | |
| "company": "ROCKYARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 538-2492", | |
| "address": "258 Langham Street, Brooktrails, Louisiana, 7089", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a6194caca39f1d5c", | |
| "index": 918, | |
| "balance": "$3,537.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Felecia Branch", | |
| "company": "XTH", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 550-3601", | |
| "address": "784 Euclid Avenue, Manitou, Mississippi, 1776", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9541764f7d8eb6364e", | |
| "index": 919, | |
| "balance": "$3,301.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alexandria Ayala", | |
| "company": "ISOSWITCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 432-3541", | |
| "address": "340 Dewey Place, Ripley, Hawaii, 1932", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9568a1b6983497903c", | |
| "index": 920, | |
| "balance": "$3,887.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yang Horne", | |
| "company": "SKYPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 599-2210", | |
| "address": "365 Branton Street, Crown, Washington, 634", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bc795bba3ff6b7e0", | |
| "index": 921, | |
| "balance": "$2,778.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Albert Waller", | |
| "company": "RODEOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 477-2846", | |
| "address": "662 Adelphi Street, Itmann, American Samoa, 4971", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e2c38e36ee7a7351", | |
| "index": 922, | |
| "balance": "$3,942.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sheri Kane", | |
| "company": "SENMEI", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 490-3362", | |
| "address": "461 Dennett Place, Moscow, Maryland, 8123", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959e4f4fe8d8e0cda5", | |
| "index": 923, | |
| "balance": "$1,445.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Michele Calhoun", | |
| "company": "MALATHION", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 512-2216", | |
| "address": "787 Knight Court, Laurelton, Ohio, 9032", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b032b7b63dd100ef", | |
| "index": 924, | |
| "balance": "$1,073.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kari Hampton", | |
| "company": "ENERFORCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 561-3885", | |
| "address": "704 Berriman Street, Shindler, Iowa, 9850", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950cdd55e195a12493", | |
| "index": 925, | |
| "balance": "$3,354.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Briggs Hendrix", | |
| "company": "VELOS", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 600-3271", | |
| "address": "398 Melba Court, Hampstead, Georgia, 6143", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff4a9a49f1089176", | |
| "index": 926, | |
| "balance": "$3,681.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Charmaine Long", | |
| "company": "NETBOOK", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 577-2770", | |
| "address": "832 Knapp Street, Barronett, Tennessee, 2286", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95499384cf0fb6b812", | |
| "index": 927, | |
| "balance": "$1,720.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oneil Page", | |
| "company": "STRALOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 486-2597", | |
| "address": "429 Garden Street, Wheatfields, Virginia, 3076", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952c51200e766f29ca", | |
| "index": 928, | |
| "balance": "$2,538.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ina Copeland", | |
| "company": "PLUTORQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 512-2842", | |
| "address": "796 Lewis Place, Nile, South Dakota, 3721", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fc51eacf0ce9f0a2", | |
| "index": 929, | |
| "balance": "$2,716.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sophie Small", | |
| "company": "INTRADISK", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 569-3554", | |
| "address": "582 Shale Street, Henrietta, Oklahoma, 9518", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506e6c46d98730ca5", | |
| "index": 930, | |
| "balance": "$2,088.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gilbert Wall", | |
| "company": "INJOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 481-2976", | |
| "address": "651 Bleecker Street, Limestone, Texas, 1822", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b36712a71685a2b", | |
| "index": 931, | |
| "balance": "$2,186.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hatfield Lindsay", | |
| "company": "HOUSEDOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 512-3631", | |
| "address": "420 Prince Street, Draper, Marshall Islands, 2248", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95599a36c22fc3b0bd", | |
| "index": 932, | |
| "balance": "$3,720.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eloise Witt", | |
| "company": "PARCOE", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 573-2401", | |
| "address": "771 Vanderbilt Street, Spokane, Maine, 8449", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dc2c9c34f7ca21dd", | |
| "index": 933, | |
| "balance": "$2,123.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bobbie Pena", | |
| "company": "BIOTICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (862) 596-3449", | |
| "address": "413 Beverley Road, Nanafalia, Colorado, 8320", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8ddd04f7aca58f9", | |
| "index": 934, | |
| "balance": "$2,775.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Keisha Morrow", | |
| "company": "COMBOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 494-3567", | |
| "address": "369 Fleet Street, Bellfountain, New Mexico, 4210", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9597d7e3edce35cd32", | |
| "index": 935, | |
| "balance": "$1,240.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcdowell Gregory", | |
| "company": "CINASTER", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 516-3248", | |
| "address": "967 Sutton Street, Umapine, Florida, 6622", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9530c5147a64b53eb6", | |
| "index": 936, | |
| "balance": "$1,564.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Helena Sears", | |
| "company": "SPORTAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 521-3219", | |
| "address": "882 Concord Street, Trail, Michigan, 234", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0faaf29eab5dfb1", | |
| "index": 937, | |
| "balance": "$1,114.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristen Cooper", | |
| "company": "IZZBY", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 550-2558", | |
| "address": "960 Rutland Road, Oceola, Delaware, 3956", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954496cae89bdc3533", | |
| "index": 938, | |
| "balance": "$2,451.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barrera Rowe", | |
| "company": "DADABASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 444-3219", | |
| "address": "632 Clove Road, National, Virgin Islands, 4206", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957c790699f90b2415", | |
| "index": 939, | |
| "balance": "$3,527.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Allyson Norman", | |
| "company": "PEARLESSA", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 412-3169", | |
| "address": "500 Llama Court, Como, West Virginia, 1777", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951a63416b510d60ab", | |
| "index": 940, | |
| "balance": "$3,975.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Estrada Martinez", | |
| "company": "AUTOGRATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 579-3401", | |
| "address": "203 Pooles Lane, Websterville, Alabama, 6817", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dbdf1a8adb67540f", | |
| "index": 941, | |
| "balance": "$1,972.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Willie Patterson", | |
| "company": "OLUCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 489-2914", | |
| "address": "885 Ford Street, Caroline, North Carolina, 2720", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956e25ecf23cf75eca", | |
| "index": 942, | |
| "balance": "$1,913.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Georgina Wood", | |
| "company": "ACCUPRINT", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 581-3060", | |
| "address": "657 Thatford Avenue, Belvoir, Indiana, 3722", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9561bdd28640c93e32", | |
| "index": 943, | |
| "balance": "$2,530.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marci Bean", | |
| "company": "IMAGEFLOW", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 570-3680", | |
| "address": "925 Grimes Road, Orason, Missouri, 6860", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fb1dd73b4d0a4889", | |
| "index": 944, | |
| "balance": "$2,735.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Magdalena Kidd", | |
| "company": "PRIMORDIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 584-2771", | |
| "address": "321 Balfour Place, Montura, Arizona, 3003", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956b728979ec5d0347", | |
| "index": 945, | |
| "balance": "$2,332.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sims Boyle", | |
| "company": "ETERNIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 572-3097", | |
| "address": "387 Moffat Street, Yukon, Massachusetts, 8068", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958848be5124d499d2", | |
| "index": 946, | |
| "balance": "$1,664.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wallace Morris", | |
| "company": "CEPRENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 402-2546", | |
| "address": "750 Harway Avenue, Blackgum, New Jersey, 9450", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951319cfcf071bdb70", | |
| "index": 947, | |
| "balance": "$1,906.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rodgers Ortiz", | |
| "company": "RENOVIZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 481-2635", | |
| "address": "156 Pierrepont Street, Lavalette, Pennsylvania, 5360", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e514f4451c981e69", | |
| "index": 948, | |
| "balance": "$3,141.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burke Wade", | |
| "company": "COMVOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 523-2336", | |
| "address": "818 Willmohr Street, Knowlton, Wisconsin, 3426", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dead456f606b3c23", | |
| "index": 949, | |
| "balance": "$1,383.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Small Gamble", | |
| "company": "EURON", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 582-2064", | |
| "address": "997 Barbey Street, Deercroft, Alaska, 6574", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aa0a3ea9232c2e20", | |
| "index": 950, | |
| "balance": "$1,811.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dorothy Daniel", | |
| "company": "OZEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 437-2757", | |
| "address": "128 Degraw Street, Cecilia, Vermont, 7993", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d2d357b9d5268d9", | |
| "index": 951, | |
| "balance": "$2,632.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lelia Crawford", | |
| "company": "PRINTSPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 467-3436", | |
| "address": "724 Bay Parkway, Templeton, Illinois, 9526", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8c6be4c13fd769c", | |
| "index": 952, | |
| "balance": "$2,640.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rutledge Warner", | |
| "company": "COMVEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 450-3663", | |
| "address": "492 Louisa Street, Grazierville, Utah, 1648", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b5232e30f62994dd", | |
| "index": 953, | |
| "balance": "$3,004.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Irene Carr", | |
| "company": "DUFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 419-2817", | |
| "address": "354 Lawton Street, Enetai, Connecticut, 2314", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9519478ce33399fc8e", | |
| "index": 954, | |
| "balance": "$1,045.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sylvia Carroll", | |
| "company": "OULU", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 457-2841", | |
| "address": "268 Navy Street, Cobbtown, Oregon, 1155", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95264d0c3aad43ae1d", | |
| "index": 955, | |
| "balance": "$3,595.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Susie Phillips", | |
| "company": "AMRIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 550-2518", | |
| "address": "884 Adams Street, Helen, Federated States Of Micronesia, 7155", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff99313d9d3dd2b2", | |
| "index": 956, | |
| "balance": "$2,168.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deloris Hurst", | |
| "company": "RODEOMAD", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 519-3437", | |
| "address": "170 Clifford Place, Watrous, Kentucky, 9885", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9558191f77aa49604f", | |
| "index": 957, | |
| "balance": "$1,629.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burgess Espinoza", | |
| "company": "RECOGNIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 437-2623", | |
| "address": "260 Denton Place, Loveland, Puerto Rico, 8681", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958874fd6bab042545", | |
| "index": 958, | |
| "balance": "$2,358.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Noemi Benson", | |
| "company": "DECRATEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 570-2361", | |
| "address": "268 Noel Avenue, Riner, Idaho, 3867", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9573f475aa48dc097a", | |
| "index": 959, | |
| "balance": "$2,256.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Allison Skinner", | |
| "company": "CONFERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 599-3522", | |
| "address": "448 Dunham Place, Lloyd, Nevada, 8113", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f44739c80ca9e42", | |
| "index": 960, | |
| "balance": "$3,922.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dalton Leon", | |
| "company": "COMVERGES", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 412-3162", | |
| "address": "118 Randolph Street, Newry, South Carolina, 1412", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957eb81a6b6035634c", | |
| "index": 961, | |
| "balance": "$1,834.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Page Wiggins", | |
| "company": "FURNITECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 501-2437", | |
| "address": "546 Grant Avenue, Hachita, Minnesota, 2525", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fb12150e89b1f6bc", | |
| "index": 962, | |
| "balance": "$3,662.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Preston Patel", | |
| "company": "DUOFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 547-3328", | |
| "address": "815 Lester Court, Ventress, North Dakota, 223", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9583b0872ec874800b", | |
| "index": 963, | |
| "balance": "$2,503.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Inez Drake", | |
| "company": "MAXEMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 599-2466", | |
| "address": "506 Pleasant Place, Hegins, District Of Columbia, 853", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aa08b7b4707c1248", | |
| "index": 964, | |
| "balance": "$2,920.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nita Glenn", | |
| "company": "CUBIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 506-2158", | |
| "address": "417 Melrose Street, Barclay, New York, 1854", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c8932d81669f8545", | |
| "index": 965, | |
| "balance": "$1,460.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Araceli Ford", | |
| "company": "XIIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 515-3768", | |
| "address": "697 Albemarle Terrace, Makena, Montana, 7149", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ee3504b0b4f6ff8", | |
| "index": 966, | |
| "balance": "$2,037.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Skinner Charles", | |
| "company": "PERMADYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 454-3985", | |
| "address": "645 Townsend Street, Turah, Arkansas, 1678", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950936c4f9020918b0", | |
| "index": 967, | |
| "balance": "$3,105.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chen Hicks", | |
| "company": "LEXICONDO", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 458-2773", | |
| "address": "959 Meeker Avenue, Logan, Kansas, 148", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9581b123bb21493277", | |
| "index": 968, | |
| "balance": "$2,231.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hicks Newton", | |
| "company": "CONJURICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 496-3742", | |
| "address": "259 Linden Street, Ola, Guam, 9618", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fadb1b59003587d6", | |
| "index": 969, | |
| "balance": "$1,971.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ilene Franks", | |
| "company": "INSECTUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (904) 516-3115", | |
| "address": "932 Fleet Walk, Grill, Rhode Island, 468", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9554c77b5e35891959", | |
| "index": 970, | |
| "balance": "$3,643.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Schwartz Berg", | |
| "company": "ZUVY", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 554-2587", | |
| "address": "275 Division Place, Genoa, Palau, 9663", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959eaa7d801b6f83b4", | |
| "index": 971, | |
| "balance": "$3,193.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Glover Suarez", | |
| "company": "XANIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 525-3782", | |
| "address": "641 Woods Place, Glenshaw, Wyoming, 6119", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f481239b9c00e8bd", | |
| "index": 972, | |
| "balance": "$1,336.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ramirez Crane", | |
| "company": "ZENTURY", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 509-2338", | |
| "address": "503 Dwight Street, Belva, Nebraska, 8310", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95037e2f8d09242b6a", | |
| "index": 973, | |
| "balance": "$3,440.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Faulkner Byrd", | |
| "company": "PARAGONIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 466-2088", | |
| "address": "186 Macdougal Street, Fidelis, Northern Mariana Islands, 1013", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954e563c03e0f4ca0d", | |
| "index": 974, | |
| "balance": "$2,936.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeannette Oconnor", | |
| "company": "ATOMICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 534-3195", | |
| "address": "981 Banner Avenue, Harborton, California, 2384", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fdf3f6de0dc01b08", | |
| "index": 975, | |
| "balance": "$3,496.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jenna Jefferson", | |
| "company": "POWERNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 421-2873", | |
| "address": "364 India Street, Sexton, Louisiana, 7897", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec32155302fcd1f1", | |
| "index": 976, | |
| "balance": "$3,321.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gross Reese", | |
| "company": "MEMORA", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 524-2724", | |
| "address": "350 Downing Street, Garfield, Mississippi, 9947", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cf2679f447fa3bc1", | |
| "index": 977, | |
| "balance": "$1,529.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jimenez Wiley", | |
| "company": "SAVVY", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 540-3795", | |
| "address": "287 Village Road, Cumberland, Hawaii, 1215", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955c91bac17540adfc", | |
| "index": 978, | |
| "balance": "$1,182.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roberts Bradshaw", | |
| "company": "DANCERITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 432-2327", | |
| "address": "229 Montana Place, Bartonsville, Washington, 5339", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e79dd16225679ade", | |
| "index": 979, | |
| "balance": "$1,789.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stacie Vincent", | |
| "company": "SHEPARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 539-3532", | |
| "address": "442 Division Avenue, Caln, American Samoa, 9461", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f863f09a162a3cf4", | |
| "index": 980, | |
| "balance": "$1,561.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pace Short", | |
| "company": "ENERSOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 456-2607", | |
| "address": "673 Jerome Avenue, Glenbrook, Maryland, 4075", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958f6ec57e2aee5f11", | |
| "index": 981, | |
| "balance": "$1,774.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frederick Carter", | |
| "company": "NORSUL", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 427-2670", | |
| "address": "112 Stuyvesant Avenue, Tyhee, Ohio, 8941", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d773e3e3d5c6c761", | |
| "index": 982, | |
| "balance": "$3,239.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Horton Patton", | |
| "company": "BLUPLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 529-3326", | |
| "address": "504 Powers Street, Haena, Iowa, 4227", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f450b1267262aa2", | |
| "index": 983, | |
| "balance": "$1,607.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Strong Mckee", | |
| "company": "TALKALOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 478-3131", | |
| "address": "543 Sumner Place, Slovan, Georgia, 5510", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d7eaf511820c737", | |
| "index": 984, | |
| "balance": "$1,484.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Slater Bender", | |
| "company": "KONNECT", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 498-2308", | |
| "address": "602 Vanderveer Street, Kimmell, Tennessee, 6990", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cdbb0b1288675baf", | |
| "index": 985, | |
| "balance": "$3,114.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jewel Sampson", | |
| "company": "BUZZMAKER", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 541-3811", | |
| "address": "582 Beekman Place, Odessa, Virginia, 2545", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f50b213c48f3e6a6", | |
| "index": 986, | |
| "balance": "$3,367.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blanchard Franklin", | |
| "company": "UXMOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 537-2073", | |
| "address": "896 Moultrie Street, Chicopee, South Dakota, 4677", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953c343b079fff3684", | |
| "index": 987, | |
| "balance": "$2,272.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Paige Kaufman", | |
| "company": "PYRAMIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 480-3516", | |
| "address": "680 Ash Street, Disautel, Oklahoma, 4311", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95acf227b9495240e3", | |
| "index": 988, | |
| "balance": "$2,461.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bette Hopper", | |
| "company": "NEUROCELL", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 442-2665", | |
| "address": "888 Diamond Street, Flintville, Texas, 7315", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95593e6ee85f2ab5b9", | |
| "index": 989, | |
| "balance": "$3,618.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kirk Stanton", | |
| "company": "PANZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 520-3433", | |
| "address": "982 Brevoort Place, Rossmore, Marshall Islands, 338", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9540a1aea4fd9f864d", | |
| "index": 990, | |
| "balance": "$3,865.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gwen Reyes", | |
| "company": "SUSTENZA", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 560-2839", | |
| "address": "217 Bayview Place, Cade, Maine, 2223", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95da208df78c4267c2", | |
| "index": 991, | |
| "balance": "$2,166.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sharlene Benjamin", | |
| "company": "APEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 539-2244", | |
| "address": "341 Tehama Street, Tivoli, Colorado, 3232", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d22d568d54fde1dd", | |
| "index": 992, | |
| "balance": "$2,768.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Susanna Mccullough", | |
| "company": "ISODRIVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 435-3385", | |
| "address": "864 Schenck Court, Foscoe, New Mexico, 4090", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959661139706cc805f", | |
| "index": 993, | |
| "balance": "$3,121.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hampton Odonnell", | |
| "company": "QUARX", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 581-2202", | |
| "address": "509 Lott Avenue, Berwind, Florida, 2055", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957ab3f2cb2e1e8a07", | |
| "index": 994, | |
| "balance": "$3,861.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elsie Olsen", | |
| "company": "XYQAG", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 573-3673", | |
| "address": "390 Nostrand Avenue, Coleville, Michigan, 5297", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9563c4eaf1f131ffde", | |
| "index": 995, | |
| "balance": "$2,867.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Verna Gonzales", | |
| "company": "ZIDANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (929) 473-3330", | |
| "address": "256 Decatur Street, Davenport, Delaware, 7557", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d3fa954fa3719f88", | |
| "index": 996, | |
| "balance": "$3,470.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lilly Dalton", | |
| "company": "ZILIDIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 450-3438", | |
| "address": "695 Furman Street, Omar, Virgin Islands, 6984", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9588b9652fc2e3deca", | |
| "index": 997, | |
| "balance": "$2,324.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorena Salazar", | |
| "company": "PLASMOS", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 401-2430", | |
| "address": "316 Lawrence Street, Eagleville, West Virginia, 5122", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950be42129d91e25b8", | |
| "index": 998, | |
| "balance": "$3,414.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hunter Brennan", | |
| "company": "NIXELT", | |
| "email": "[email protected]", | |
| "phone": "+1 (814) 545-2597", | |
| "address": "126 Kane Place, Richmond, Alabama, 7844", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e3329561925c003f", | |
| "index": 999, | |
| "balance": "$1,691.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maria Solomon", | |
| "company": "GEOFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 503-2370", | |
| "address": "712 Aurelia Court, Cressey, North Carolina, 3906", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9521998d31c60f4d8d", | |
| "index": 1000, | |
| "balance": "$1,614.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hattie Conner", | |
| "company": "ZILLIDIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (937) 589-2476", | |
| "address": "991 Aviation Road, Rushford, Indiana, 5667", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ca1ddac78ba3f01f", | |
| "index": 1001, | |
| "balance": "$2,992.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Koch Cochran", | |
| "company": "CONFRENZY", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 491-2982", | |
| "address": "987 Fair Street, Lewis, Missouri, 2370", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955de6da6653407017", | |
| "index": 1002, | |
| "balance": "$2,720.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nellie Mcmillan", | |
| "company": "UNIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 545-2225", | |
| "address": "355 Caton Avenue, Fairlee, Arizona, 3435", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9540565dc71da129bc", | |
| "index": 1003, | |
| "balance": "$1,400.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Debra Trujillo", | |
| "company": "KEEG", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 566-3893", | |
| "address": "909 Louis Place, Bridgetown, Massachusetts, 9087", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95963fcc811d547fb7", | |
| "index": 1004, | |
| "balance": "$1,853.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moran Roman", | |
| "company": "GINKOGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 400-2225", | |
| "address": "722 Ocean Court, Morriston, New Jersey, 7415", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e578866bbfcc4313", | |
| "index": 1005, | |
| "balance": "$2,309.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cantu Mcbride", | |
| "company": "FURNAFIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 462-2579", | |
| "address": "783 Walker Court, Goldfield, Pennsylvania, 2256", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9530ecf9db26b63ffe", | |
| "index": 1006, | |
| "balance": "$2,062.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Palmer Pollard", | |
| "company": "EDECINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 524-2681", | |
| "address": "752 Montauk Avenue, Harleigh, Wisconsin, 9617", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eb8de1e36c618485", | |
| "index": 1007, | |
| "balance": "$3,822.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Erma Whitfield", | |
| "company": "SEQUITUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 542-2922", | |
| "address": "178 Newkirk Avenue, Newcastle, Alaska, 5061", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f1365b7c2f18a48f", | |
| "index": 1008, | |
| "balance": "$3,944.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stevenson Tucker", | |
| "company": "PROGENEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 507-2388", | |
| "address": "727 Dank Court, Dupuyer, Vermont, 8521", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fbc3e430b5776a8f", | |
| "index": 1009, | |
| "balance": "$1,930.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Weeks Dodson", | |
| "company": "GEEKOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 515-2809", | |
| "address": "640 Doone Court, Canby, Illinois, 4374", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95906fec9e8e728600", | |
| "index": 1010, | |
| "balance": "$3,830.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deborah Hobbs", | |
| "company": "CIRCUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 485-3770", | |
| "address": "233 Belvidere Street, Northridge, Utah, 973", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956113f53c24ca0a70", | |
| "index": 1011, | |
| "balance": "$1,570.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tiffany Kennedy", | |
| "company": "BILLMED", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 448-3036", | |
| "address": "265 Court Square, Cleary, Connecticut, 689", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ecac8652c66712ae", | |
| "index": 1012, | |
| "balance": "$1,795.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Duran Knight", | |
| "company": "OCTOCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 443-3824", | |
| "address": "995 Woodpoint Road, Coaldale, Oregon, 3184", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957199b14f37f02b8a", | |
| "index": 1013, | |
| "balance": "$3,346.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lakisha Hawkins", | |
| "company": "SNIPS", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 422-3972", | |
| "address": "594 Merit Court, Avoca, Federated States Of Micronesia, 8470", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95276ff8e3ad3925d9", | |
| "index": 1014, | |
| "balance": "$2,176.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rhea Cherry", | |
| "company": "HELIXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 442-2265", | |
| "address": "591 Madison Street, Sattley, Kentucky, 5580", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958d5c2a8ab09730d0", | |
| "index": 1015, | |
| "balance": "$1,767.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Concepcion Swanson", | |
| "company": "REVERSUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 424-3207", | |
| "address": "971 Prospect Street, Kirk, Puerto Rico, 2760", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dfc31bd6144303f7", | |
| "index": 1016, | |
| "balance": "$1,259.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Isabella Grant", | |
| "company": "QUAILCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 415-3998", | |
| "address": "823 Beach Place, Glenville, Idaho, 8728", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f21d894ede4e69a1", | |
| "index": 1017, | |
| "balance": "$2,022.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bessie Best", | |
| "company": "VENDBLEND", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 537-3453", | |
| "address": "589 Haring Street, Mayfair, Nevada, 6061", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958d2e4a2d68361ac8", | |
| "index": 1018, | |
| "balance": "$3,664.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Savage Rosa", | |
| "company": "VINCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 416-2340", | |
| "address": "793 Ingraham Street, Hemlock, South Carolina, 5615", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95192d1dea0a95bac0", | |
| "index": 1019, | |
| "balance": "$2,033.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janette Anderson", | |
| "company": "EQUICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 568-2862", | |
| "address": "824 Malbone Street, Glendale, Minnesota, 9574", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95de749e51246b658e", | |
| "index": 1020, | |
| "balance": "$3,052.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carlene Sweet", | |
| "company": "ISOLOGIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 418-3983", | |
| "address": "750 Glenmore Avenue, Harrison, North Dakota, 6972", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95353f0aabc9197d16", | |
| "index": 1021, | |
| "balance": "$1,530.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maritza Parrish", | |
| "company": "ORBAXTER", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 531-2762", | |
| "address": "340 Coffey Street, Konterra, District Of Columbia, 4999", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959a7e1da4dd518088", | |
| "index": 1022, | |
| "balance": "$1,620.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Juliet Le", | |
| "company": "ACCEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 453-3055", | |
| "address": "421 Seaview Court, Stockdale, New York, 5811", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9505e733289e39f800", | |
| "index": 1023, | |
| "balance": "$2,311.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Diaz Delgado", | |
| "company": "SPRINGBEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 519-2333", | |
| "address": "954 Kings Hwy, Bradenville, Montana, 6501", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95525f39ae0e60d120", | |
| "index": 1024, | |
| "balance": "$3,774.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Weaver Little", | |
| "company": "ANARCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 487-3559", | |
| "address": "115 Bergen Place, Bannock, Arkansas, 3984", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952dea8ae5c27c43ad", | |
| "index": 1025, | |
| "balance": "$3,231.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Willa Harrison", | |
| "company": "SENSATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 450-2152", | |
| "address": "518 Ridge Boulevard, Vernon, Kansas, 4962", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95596c942f698efd01", | |
| "index": 1026, | |
| "balance": "$3,687.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sandy Becker", | |
| "company": "KLUGGER", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 576-3584", | |
| "address": "246 Anna Court, Emerald, Guam, 7569", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f399594b37b8bd6", | |
| "index": 1027, | |
| "balance": "$3,990.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Briana Travis", | |
| "company": "GEEKOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 482-3886", | |
| "address": "219 Canarsie Road, Canterwood, Rhode Island, 5283", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a522177bbc3a0c3d", | |
| "index": 1028, | |
| "balance": "$1,557.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elvira Campos", | |
| "company": "MOMENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 481-2489", | |
| "address": "277 Gem Street, Johnsonburg, Palau, 2711", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957ba11a111b4454f2", | |
| "index": 1029, | |
| "balance": "$1,751.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clemons Ayers", | |
| "company": "TRIPSCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 408-2976", | |
| "address": "642 Commerce Street, Wyoming, Wyoming, 1048", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e789b8e0b6eaeb84", | |
| "index": 1030, | |
| "balance": "$1,212.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cline Nunez", | |
| "company": "VIRXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 543-3708", | |
| "address": "952 Alton Place, Marne, Nebraska, 7899", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958a602ff8f15de2df", | |
| "index": 1031, | |
| "balance": "$3,339.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sondra Hanson", | |
| "company": "ZAYA", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 443-2035", | |
| "address": "679 Whitty Lane, Reinerton, Northern Mariana Islands, 4165", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95547bec63d8de8874", | |
| "index": 1032, | |
| "balance": "$1,079.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pickett Mckinney", | |
| "company": "SHADEASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 457-2550", | |
| "address": "231 Grand Avenue, Caberfae, California, 410", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9532f4334a3ef30c67", | |
| "index": 1033, | |
| "balance": "$2,983.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gallagher Walker", | |
| "company": "SLUMBERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 526-3562", | |
| "address": "464 Crown Street, Abrams, Louisiana, 1913", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955a38c28a1a64564b", | |
| "index": 1034, | |
| "balance": "$2,131.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Madden Hewitt", | |
| "company": "VERAQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 527-2630", | |
| "address": "511 Boerum Street, Masthope, Mississippi, 9990", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9523c351e733bbad4c", | |
| "index": 1035, | |
| "balance": "$3,394.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sanford Velez", | |
| "company": "MIRACLIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (823) 518-3696", | |
| "address": "162 Vanderbilt Avenue, Strykersville, Hawaii, 191", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959c32ae931dfc244a", | |
| "index": 1036, | |
| "balance": "$3,276.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Colette Mcclure", | |
| "company": "KOOGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 545-2954", | |
| "address": "653 Blake Avenue, Norris, Washington, 8101", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95490ee671a568599d", | |
| "index": 1037, | |
| "balance": "$2,595.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lambert Dunlap", | |
| "company": "ZANYMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 600-3359", | |
| "address": "332 Rutledge Street, Imperial, American Samoa, 9622", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959b2a1678e83fb07a", | |
| "index": 1038, | |
| "balance": "$2,764.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joanne Burch", | |
| "company": "RODEOCEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 519-2959", | |
| "address": "500 Elliott Walk, Siglerville, Maryland, 3073", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95adfaf80c2041d6eb", | |
| "index": 1039, | |
| "balance": "$2,495.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Buchanan Wilson", | |
| "company": "MAINELAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 453-3304", | |
| "address": "241 Louisiana Avenue, Teasdale, Ohio, 7631", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952604003b2e610b27", | |
| "index": 1040, | |
| "balance": "$3,575.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Puckett Buck", | |
| "company": "COMBOGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 433-2848", | |
| "address": "801 Kent Street, Greenbackville, Iowa, 3417", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c4581b4d5e3986ef", | |
| "index": 1041, | |
| "balance": "$2,967.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Long Burnett", | |
| "company": "NEXGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 481-2964", | |
| "address": "182 Bainbridge Street, Wilsonia, Georgia, 1099", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9589ace40ada0c2824", | |
| "index": 1042, | |
| "balance": "$2,727.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Polly Saunders", | |
| "company": "VIAGREAT", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 409-3499", | |
| "address": "600 Front Street, Grantville, Tennessee, 6802", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d2a30627114d07bd", | |
| "index": 1043, | |
| "balance": "$3,910.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fran Chandler", | |
| "company": "COMSTRUCT", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 590-2812", | |
| "address": "537 Martense Street, Allendale, Virginia, 8677", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535309238e7a0724d", | |
| "index": 1044, | |
| "balance": "$2,306.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Annabelle Cobb", | |
| "company": "ZIDOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 487-2893", | |
| "address": "540 Kimball Street, Bath, South Dakota, 4930", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a362d20280166d0b", | |
| "index": 1045, | |
| "balance": "$1,822.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Miles Justice", | |
| "company": "ENAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (842) 490-3451", | |
| "address": "621 Cranberry Street, Tibbie, Oklahoma, 7448", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c00a5ebaa421481f", | |
| "index": 1046, | |
| "balance": "$3,101.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mckinney Williamson", | |
| "company": "IMAGINART", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 559-2462", | |
| "address": "124 Juliana Place, Blende, Texas, 4336", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9554277f20c8b12734", | |
| "index": 1047, | |
| "balance": "$1,977.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Twila Huffman", | |
| "company": "ATGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 589-2322", | |
| "address": "484 Royce Place, Enlow, Marshall Islands, 5441", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cd77223b23584fb9", | |
| "index": 1048, | |
| "balance": "$1,631.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Britt Roth", | |
| "company": "EZENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 531-3433", | |
| "address": "408 Fillmore Avenue, Goodville, Maine, 1970", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9593763b9360bbe693", | |
| "index": 1049, | |
| "balance": "$2,117.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pearson Merrill", | |
| "company": "OPTYK", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 518-3539", | |
| "address": "134 Columbia Place, Madaket, Colorado, 5023", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95144864242fa5f6ce", | |
| "index": 1050, | |
| "balance": "$2,638.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bowers Greer", | |
| "company": "ZILPHUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 554-2492", | |
| "address": "354 Harbor Lane, Echo, New Mexico, 9500", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ea217286b25f587", | |
| "index": 1051, | |
| "balance": "$3,174.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cindy Calderon", | |
| "company": "CANOPOLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 590-2646", | |
| "address": "749 Duryea Court, Baker, Florida, 9860", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d72b1b397a04c799", | |
| "index": 1052, | |
| "balance": "$1,961.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bridget Pickett", | |
| "company": "RONBERT", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 409-3269", | |
| "address": "787 College Place, Hiseville, Michigan, 4241", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95062300eaf26aaca5", | |
| "index": 1053, | |
| "balance": "$1,101.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristine Tyler", | |
| "company": "KOZGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 460-2022", | |
| "address": "711 Ridgecrest Terrace, Greenock, Delaware, 4184", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9508c25c0d4a439546", | |
| "index": 1054, | |
| "balance": "$1,019.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ora Weeks", | |
| "company": "TYPHONICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 479-3615", | |
| "address": "233 Polhemus Place, Stewartville, Virgin Islands, 4404", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a8ffd4aff2558ba0", | |
| "index": 1055, | |
| "balance": "$3,407.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marshall Herring", | |
| "company": "NAXDIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 484-2621", | |
| "address": "235 Hicks Street, Santel, West Virginia, 6063", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950b3161a21419be86", | |
| "index": 1056, | |
| "balance": "$3,345.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gracie Hatfield", | |
| "company": "OMATOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 544-2769", | |
| "address": "736 Elliott Place, Dellview, Alabama, 2617", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9570b58bc91e99259b", | |
| "index": 1057, | |
| "balance": "$2,528.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ella Johns", | |
| "company": "NIKUDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 447-2055", | |
| "address": "799 Hendrix Street, Kieler, North Carolina, 1421", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958f61362e4fad61a6", | |
| "index": 1058, | |
| "balance": "$2,084.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Francis Carney", | |
| "company": "GREEKER", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 410-2011", | |
| "address": "343 Engert Avenue, Riegelwood, Indiana, 1156", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952e346e96f582882e", | |
| "index": 1059, | |
| "balance": "$1,935.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Candace Rosales", | |
| "company": "KOFFEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 596-2074", | |
| "address": "917 Gunnison Court, Seymour, Missouri, 2914", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f6d66fd9dabc84a8", | |
| "index": 1060, | |
| "balance": "$2,745.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hebert Dunn", | |
| "company": "REMOTION", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 586-2542", | |
| "address": "652 McClancy Place, Herald, Arizona, 1921", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aa267274473b4ce4", | |
| "index": 1061, | |
| "balance": "$2,987.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Augusta Wilkerson", | |
| "company": "VIXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 460-3089", | |
| "address": "861 Cornelia Street, Winchester, Massachusetts, 7983", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dadcde2a0541a579", | |
| "index": 1062, | |
| "balance": "$2,333.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Avis Young", | |
| "company": "TWIGGERY", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 530-3879", | |
| "address": "742 Herzl Street, Sehili, New Jersey, 8073", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eab326c35d8cdc0e", | |
| "index": 1063, | |
| "balance": "$1,817.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sharon Sutton", | |
| "company": "NETUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 592-2862", | |
| "address": "408 Cadman Plaza, Camas, Pennsylvania, 3039", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d02316f6caa29095", | |
| "index": 1064, | |
| "balance": "$2,683.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elvia Park", | |
| "company": "EVENTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 529-3014", | |
| "address": "502 Milford Street, Naomi, Wisconsin, 2327", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950bfd0ca47df5ef84", | |
| "index": 1065, | |
| "balance": "$2,690.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Foley Cooke", | |
| "company": "MIXERS", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 462-2280", | |
| "address": "547 Bulwer Place, Biddle, Alaska, 6719", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95df2801e87df1de45", | |
| "index": 1066, | |
| "balance": "$1,991.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chan Gross", | |
| "company": "BIOHAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 541-3864", | |
| "address": "912 Vandervoort Avenue, Fingerville, Vermont, 8425", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a76b39bf5194de36", | |
| "index": 1067, | |
| "balance": "$3,774.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vivian Caldwell", | |
| "company": "SUPREMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 564-2262", | |
| "address": "349 Kingston Avenue, Rutherford, Illinois, 5435", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95df9a529ff3503903", | |
| "index": 1068, | |
| "balance": "$2,433.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walter Frazier", | |
| "company": "COMTRAIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 497-2770", | |
| "address": "808 Beadel Street, Lydia, Utah, 1276", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f5ef36a4470d06f", | |
| "index": 1069, | |
| "balance": "$3,330.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Linda Richard", | |
| "company": "ELPRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (862) 454-3237", | |
| "address": "329 Veterans Avenue, Vienna, Connecticut, 3287", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a03ad32412e7deed", | |
| "index": 1070, | |
| "balance": "$3,799.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elena Mcintosh", | |
| "company": "JOVIOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 562-3602", | |
| "address": "268 Sedgwick Street, Sterling, Oregon, 2277", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e60909673a0f10d9", | |
| "index": 1071, | |
| "balance": "$1,298.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angelique Mcclain", | |
| "company": "GLUID", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 482-2133", | |
| "address": "937 Bridgewater Street, Belleview, Federated States Of Micronesia, 7590", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9573dc4c2d2109e16b", | |
| "index": 1072, | |
| "balance": "$2,159.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wagner Talley", | |
| "company": "IDEGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 534-3562", | |
| "address": "503 Royce Street, Maybell, Kentucky, 391", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506e7b72a2cc4f887", | |
| "index": 1073, | |
| "balance": "$2,161.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clarissa Eaton", | |
| "company": "ZILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 411-2828", | |
| "address": "144 Anchorage Place, Hendersonville, Puerto Rico, 5790", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9542aef9ea8aa0fbb3", | |
| "index": 1074, | |
| "balance": "$2,607.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Serena Wong", | |
| "company": "OVERPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 562-2621", | |
| "address": "737 Baycliff Terrace, Roland, Idaho, 4092", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950cde12402db3a416", | |
| "index": 1075, | |
| "balance": "$2,569.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pratt Glass", | |
| "company": "SIGNITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 595-2632", | |
| "address": "151 Minna Street, Sussex, Nevada, 356", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957725bab3f5b76ab4", | |
| "index": 1076, | |
| "balance": "$1,465.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Agnes Delacruz", | |
| "company": "MITROC", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 549-2855", | |
| "address": "268 Fleet Place, Beaverdale, South Carolina, 4764", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f094e881a877125d", | |
| "index": 1077, | |
| "balance": "$1,632.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alvarez Hines", | |
| "company": "ENTHAZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 486-3250", | |
| "address": "403 Provost Street, Wilmington, Minnesota, 8089", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951492ba2fe6f295cb", | |
| "index": 1078, | |
| "balance": "$2,506.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Thompson Hensley", | |
| "company": "AUTOMON", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 566-2676", | |
| "address": "119 Ashford Street, Hardyville, North Dakota, 9320", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954d243c696dad16b4", | |
| "index": 1079, | |
| "balance": "$3,000.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frye Davidson", | |
| "company": "FURNIGEER", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 549-2257", | |
| "address": "399 Kansas Place, Gerber, District Of Columbia, 9633", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956eddc828137143da", | |
| "index": 1080, | |
| "balance": "$3,552.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kramer Johnson", | |
| "company": "BLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 520-2563", | |
| "address": "677 Falmouth Street, Grimsley, New York, 7641", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586668786061ba018", | |
| "index": 1081, | |
| "balance": "$3,110.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brooke Soto", | |
| "company": "ACCUSAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 417-2535", | |
| "address": "339 Remsen Street, Hartsville/Hartley, Montana, 8240", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95741a8407b7b5f88b", | |
| "index": 1082, | |
| "balance": "$1,501.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dianne Gilbert", | |
| "company": "CHILLIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 421-2113", | |
| "address": "390 Summit Street, Gilmore, Arkansas, 7051", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952d04fcdb8dd09c3f", | |
| "index": 1083, | |
| "balance": "$1,306.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Faye Bonner", | |
| "company": "MAXIMIND", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 464-2068", | |
| "address": "558 Nichols Avenue, Valmy, Kansas, 1737", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f885e579c2ac9f36", | |
| "index": 1084, | |
| "balance": "$3,957.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rocha Watts", | |
| "company": "ECRAZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 566-3751", | |
| "address": "722 Micieli Place, Winfred, Guam, 4396", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ff755928eb03cf5", | |
| "index": 1085, | |
| "balance": "$3,544.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Newman Moss", | |
| "company": "EZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 426-2578", | |
| "address": "503 Livonia Avenue, Fairhaven, Rhode Island, 3451", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b4ef688f300985e8", | |
| "index": 1086, | |
| "balance": "$2,594.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wheeler Sandoval", | |
| "company": "KANGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 501-2878", | |
| "address": "323 Herkimer Place, Retsof, Palau, 1528", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957116285a4ee8389e", | |
| "index": 1087, | |
| "balance": "$2,373.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bertha Hart", | |
| "company": "MANUFACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 411-3501", | |
| "address": "471 Lyme Avenue, Tilden, Wyoming, 6403", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ece52eb2260a4ab5", | |
| "index": 1088, | |
| "balance": "$3,088.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Obrien Buckley", | |
| "company": "WAZZU", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 426-3245", | |
| "address": "689 Jardine Place, Twilight, Nebraska, 4687", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954537f029754a3786", | |
| "index": 1089, | |
| "balance": "$3,821.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sexton Vega", | |
| "company": "INRT", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 561-3619", | |
| "address": "500 Lloyd Court, Vandiver, Northern Mariana Islands, 6113", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9556af917dea577350", | |
| "index": 1090, | |
| "balance": "$3,593.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Meyers Bird", | |
| "company": "EXOBLUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 459-3288", | |
| "address": "155 Oceanic Avenue, Groveville, California, 4992", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959eb49bba47470341", | |
| "index": 1091, | |
| "balance": "$2,055.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wong Foster", | |
| "company": "CYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 412-2086", | |
| "address": "439 Lawrence Avenue, Graniteville, Louisiana, 3931", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958c8b92d21a554641", | |
| "index": 1092, | |
| "balance": "$1,285.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marie Knox", | |
| "company": "CYTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 471-2446", | |
| "address": "319 Boynton Place, Wikieup, Mississippi, 1391", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9524f69ea43308fd2d", | |
| "index": 1093, | |
| "balance": "$1,988.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "James Thornton", | |
| "company": "CODAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 531-3062", | |
| "address": "904 Stockholm Street, Riceville, Hawaii, 6370", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f67548ee04294a58", | |
| "index": 1094, | |
| "balance": "$1,693.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tyler Raymond", | |
| "company": "BIZMATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 594-2211", | |
| "address": "503 Independence Avenue, Tryon, Washington, 5018", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ee683b618a0ff635", | |
| "index": 1095, | |
| "balance": "$2,659.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gwendolyn Harrington", | |
| "company": "XPLOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 508-2964", | |
| "address": "624 Homecrest Avenue, Tampico, American Samoa, 5023", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952dfa479518b31710", | |
| "index": 1096, | |
| "balance": "$2,075.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Daniels Wheeler", | |
| "company": "POLARIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 477-2311", | |
| "address": "789 Aberdeen Street, Albrightsville, Maryland, 4002", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95459962864e96c7ce", | |
| "index": 1097, | |
| "balance": "$1,907.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Knight Wise", | |
| "company": "PLASTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 497-3027", | |
| "address": "552 Locust Avenue, Delco, Ohio, 8551", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b45a4e7a73ea84c7", | |
| "index": 1098, | |
| "balance": "$2,646.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blankenship Bryant", | |
| "company": "PLASMOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 524-3307", | |
| "address": "677 Jackson Court, Gloucester, Iowa, 800", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95239ba9d94f2ff1b8", | |
| "index": 1099, | |
| "balance": "$2,258.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morrison Mcmahon", | |
| "company": "ARTWORLDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 552-2774", | |
| "address": "330 Marconi Place, Osmond, Georgia, 1585", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95527e8459e84a41ee", | |
| "index": 1100, | |
| "balance": "$3,982.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cheryl Duran", | |
| "company": "FLYBOYZ", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 405-3314", | |
| "address": "778 Rost Place, Klondike, Tennessee, 4765", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ea86daf4a63ac277", | |
| "index": 1101, | |
| "balance": "$2,475.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brock Blake", | |
| "company": "GOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (928) 443-2243", | |
| "address": "701 Middagh Street, Cedarville, Virginia, 6665", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953be4dcc0df198a61", | |
| "index": 1102, | |
| "balance": "$3,305.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Parrish Thompson", | |
| "company": "ADORNICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 478-2064", | |
| "address": "412 McKinley Avenue, Springville, South Dakota, 8838", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0acab1e9aed70ca", | |
| "index": 1103, | |
| "balance": "$1,934.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Watkins Mcfarland", | |
| "company": "MANGLO", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 426-2865", | |
| "address": "438 Commercial Street, Finzel, Oklahoma, 7129", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c9560190f1e512cf", | |
| "index": 1104, | |
| "balance": "$3,867.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Coleman Sexton", | |
| "company": "COLLAIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 432-3330", | |
| "address": "117 Wilson Street, Salix, Texas, 3766", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95070988967db3b52f", | |
| "index": 1105, | |
| "balance": "$3,112.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pamela Craft", | |
| "company": "EVEREST", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 504-2564", | |
| "address": "691 Moore Place, Nogal, Marshall Islands, 1520", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9542bdbdccac34970f", | |
| "index": 1106, | |
| "balance": "$1,750.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Winnie Bryan", | |
| "company": "ORBIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 445-3916", | |
| "address": "615 Emerald Street, Vincent, Maine, 7366", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e66ef39b0e2ba103", | |
| "index": 1107, | |
| "balance": "$2,385.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Welch Frye", | |
| "company": "GYNKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (811) 588-3737", | |
| "address": "352 Norman Avenue, Crumpler, Colorado, 3739", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f1468a0313726866", | |
| "index": 1108, | |
| "balance": "$1,490.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Delaney Summers", | |
| "company": "EARBANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 477-2812", | |
| "address": "714 Utica Avenue, Concho, New Mexico, 835", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fdc7fd83fe06fa1a", | |
| "index": 1109, | |
| "balance": "$3,625.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccall Tyson", | |
| "company": "XELEGYL", | |
| "email": "[email protected]", | |
| "phone": "+1 (904) 501-2480", | |
| "address": "921 Grattan Street, Mulino, Florida, 8286", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95594eea091f3b1657", | |
| "index": 1110, | |
| "balance": "$2,134.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Constance Lara", | |
| "company": "INSURON", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 561-3642", | |
| "address": "909 Oliver Street, Hasty, Michigan, 809", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95438d3b45b79912d5", | |
| "index": 1111, | |
| "balance": "$3,069.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mooney Matthews", | |
| "company": "ENORMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 506-3489", | |
| "address": "441 Seton Place, Devon, Delaware, 9619", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f3e88c2747b9d31e", | |
| "index": 1112, | |
| "balance": "$2,819.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nola Stephens", | |
| "company": "GLEAMINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 521-2058", | |
| "address": "677 Plymouth Street, Cascades, Virgin Islands, 7968", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956c622a7fa4d61e84", | |
| "index": 1113, | |
| "balance": "$2,263.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Duke Robinson", | |
| "company": "PETICULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 532-3047", | |
| "address": "976 Dorset Street, Gardners, West Virginia, 8574", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9542886071d5fd4dc3", | |
| "index": 1114, | |
| "balance": "$1,179.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Catherine Roberson", | |
| "company": "DATAGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 549-2336", | |
| "address": "851 Woodbine Street, Roulette, Alabama, 2239", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95441db30964830ec4", | |
| "index": 1115, | |
| "balance": "$3,532.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wiley Whitaker", | |
| "company": "ULTRIMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 457-3183", | |
| "address": "845 Meadow Street, Rivers, North Carolina, 6109", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95810a0527ad4dfdb1", | |
| "index": 1116, | |
| "balance": "$1,149.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marietta Jacobs", | |
| "company": "GROK", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 546-3027", | |
| "address": "503 Portland Avenue, Advance, Indiana, 9905", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95421c564dbe9052d2", | |
| "index": 1117, | |
| "balance": "$2,200.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gina Moon", | |
| "company": "DIGIRANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 417-2019", | |
| "address": "113 Tillary Street, Herlong, Missouri, 3500", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950d5d422c4b3b326b", | |
| "index": 1118, | |
| "balance": "$1,330.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Delia Mosley", | |
| "company": "EQUITAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 561-3057", | |
| "address": "366 Bedell Lane, Malott, Arizona, 7793", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953eff974e996a442b", | |
| "index": 1119, | |
| "balance": "$3,508.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Theresa Mayer", | |
| "company": "GINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 536-3875", | |
| "address": "979 Heath Place, Franklin, Massachusetts, 3833", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958234227ce48ffe29", | |
| "index": 1120, | |
| "balance": "$1,155.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Combs Allison", | |
| "company": "VENOFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 451-2965", | |
| "address": "245 Dumont Avenue, Outlook, New Jersey, 9067", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9505b879a64b5cb21c", | |
| "index": 1121, | |
| "balance": "$1,384.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Paula Hodges", | |
| "company": "PIGZART", | |
| "email": "[email protected]", | |
| "phone": "+1 (924) 515-2692", | |
| "address": "715 Morgan Avenue, Garnet, Pennsylvania, 7740", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957036d16c67da5120", | |
| "index": 1122, | |
| "balance": "$3,020.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frazier Lyons", | |
| "company": "ECRATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 433-2849", | |
| "address": "139 Dekalb Avenue, Martell, Wisconsin, 4368", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95954a730efe881515", | |
| "index": 1123, | |
| "balance": "$3,598.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Norma Baxter", | |
| "company": "LOTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 575-2263", | |
| "address": "571 Kenilworth Place, Beaulieu, Alaska, 6322", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956779938c8a10f1f2", | |
| "index": 1124, | |
| "balance": "$2,766.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pam Guy", | |
| "company": "KIOSK", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 523-3518", | |
| "address": "382 Prospect Avenue, Chapin, Vermont, 462", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95944c0c644f4cc890", | |
| "index": 1125, | |
| "balance": "$1,094.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bettye Durham", | |
| "company": "AQUOAVO", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 581-3234", | |
| "address": "626 Hull Street, Camino, Illinois, 2251", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f52fe813de16edb", | |
| "index": 1126, | |
| "balance": "$2,995.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bernadine Barr", | |
| "company": "DIGIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 492-2875", | |
| "address": "993 Turnbull Avenue, Holcombe, Utah, 4879", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952738062c4720d875", | |
| "index": 1127, | |
| "balance": "$3,489.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Huff Boyd", | |
| "company": "ZYTRAC", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 578-2637", | |
| "address": "136 Love Lane, Ivanhoe, Connecticut, 5799", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951b54380a85bad756", | |
| "index": 1128, | |
| "balance": "$2,015.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Latisha Meyers", | |
| "company": "SEALOUD", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 455-2248", | |
| "address": "297 Surf Avenue, Cavalero, Oregon, 5696", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95050993d3714c06d7", | |
| "index": 1129, | |
| "balance": "$2,914.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Phoebe Zamora", | |
| "company": "NEOCENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 455-3898", | |
| "address": "420 Bank Street, Boomer, Federated States Of Micronesia, 4113", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951364ef0626bb951b", | |
| "index": 1130, | |
| "balance": "$3,337.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Conner Savage", | |
| "company": "XUMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 489-3311", | |
| "address": "461 Broome Street, Woodburn, Kentucky, 6565", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952e9541d6d53b2428", | |
| "index": 1131, | |
| "balance": "$1,969.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Monique Dean", | |
| "company": "MANTRIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 452-2415", | |
| "address": "822 Dupont Street, Greer, Puerto Rico, 3119", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952fe54326b181fe01", | |
| "index": 1132, | |
| "balance": "$3,646.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janna Mcdaniel", | |
| "company": "MACRONAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 540-2631", | |
| "address": "634 Fulton Street, Kraemer, Idaho, 4444", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dc7402d70aa24f95", | |
| "index": 1133, | |
| "balance": "$1,068.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chase Lopez", | |
| "company": "CORMORAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 551-3141", | |
| "address": "255 Tompkins Place, Darrtown, Nevada, 4379", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955af350f8e19975c2", | |
| "index": 1134, | |
| "balance": "$3,317.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lila Ware", | |
| "company": "COMTOURS", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 453-3210", | |
| "address": "600 Seba Avenue, Rosedale, South Carolina, 7164", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e64a649a5d5e667f", | |
| "index": 1135, | |
| "balance": "$1,563.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pollard Bowman", | |
| "company": "SKINSERVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 426-3142", | |
| "address": "849 Boerum Place, Ironton, Minnesota, 9861", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ad4afda75b6b0d8", | |
| "index": 1136, | |
| "balance": "$1,269.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hanson Kelly", | |
| "company": "SLOFAST", | |
| "email": "[email protected]", | |
| "phone": "+1 (842) 541-3258", | |
| "address": "629 Rockaway Avenue, Mappsville, North Dakota, 5702", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9515a24193ec69bf3c", | |
| "index": 1137, | |
| "balance": "$2,778.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Curry Duffy", | |
| "company": "COGENTRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 456-2072", | |
| "address": "553 Veronica Place, Brutus, District Of Columbia, 4973", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ca040f58230248e6", | |
| "index": 1138, | |
| "balance": "$1,149.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ross Bruce", | |
| "company": "ZILLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 501-3882", | |
| "address": "839 Porter Avenue, Guilford, New York, 7140", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fa8609baeaab3e17", | |
| "index": 1139, | |
| "balance": "$1,710.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vang Cleveland", | |
| "company": "FANGOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (860) 449-3801", | |
| "address": "470 Woodrow Court, Leming, Montana, 8806", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c5b6648e116c5826", | |
| "index": 1140, | |
| "balance": "$2,427.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Graham Hall", | |
| "company": "EYEWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 566-2597", | |
| "address": "509 Withers Street, Marbury, Arkansas, 3532", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95325f1afa0f07a7d4", | |
| "index": 1141, | |
| "balance": "$2,179.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Day Alford", | |
| "company": "ELECTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 464-2330", | |
| "address": "406 Georgia Avenue, Summerfield, Kansas, 835", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95454868b8a71a489c", | |
| "index": 1142, | |
| "balance": "$2,486.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristina Lambert", | |
| "company": "ACCRUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 460-2700", | |
| "address": "505 Buffalo Avenue, Clinton, Guam, 1771", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952aa00b53199bac0c", | |
| "index": 1143, | |
| "balance": "$1,014.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morton Bullock", | |
| "company": "QUILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 405-3837", | |
| "address": "673 Nelson Street, Cotopaxi, Rhode Island, 7434", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9547589e52a330c2d4", | |
| "index": 1144, | |
| "balance": "$1,442.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stokes Colon", | |
| "company": "COMVENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 475-2260", | |
| "address": "534 Baughman Place, Carlos, Palau, 4429", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cb88552cea806619", | |
| "index": 1145, | |
| "balance": "$1,396.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stefanie Nolan", | |
| "company": "ARTIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 548-2529", | |
| "address": "546 Hampton Avenue, Elrama, Wyoming, 3838", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9580686d509b34d186", | |
| "index": 1146, | |
| "balance": "$1,676.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Farrell England", | |
| "company": "PROSURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 596-3418", | |
| "address": "264 Victor Road, Falmouth, Nebraska, 5633", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95caa251352cde8944", | |
| "index": 1147, | |
| "balance": "$1,733.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Boone Floyd", | |
| "company": "BIOSPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 546-2815", | |
| "address": "552 Dodworth Street, Breinigsville, Northern Mariana Islands, 1952", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9522a6482a403fe374", | |
| "index": 1148, | |
| "balance": "$3,222.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Horn Berger", | |
| "company": "MARQET", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 436-3526", | |
| "address": "432 Holt Court, Biehle, California, 4013", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95861f10f2e3ca072c", | |
| "index": 1149, | |
| "balance": "$1,586.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guy Dotson", | |
| "company": "ASSISTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 559-3296", | |
| "address": "465 Campus Place, Dana, Louisiana, 1298", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952176343806f7a8c1", | |
| "index": 1150, | |
| "balance": "$2,025.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosalyn Jimenez", | |
| "company": "DAYCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 592-2599", | |
| "address": "228 McKibben Street, Veyo, Mississippi, 3579", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95be75421508581e22", | |
| "index": 1151, | |
| "balance": "$3,858.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pugh Snyder", | |
| "company": "ORBIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 544-3799", | |
| "address": "621 Hoyt Street, Chaparrito, Hawaii, 1708", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b4052170bf037974", | |
| "index": 1152, | |
| "balance": "$2,051.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Helga Sellers", | |
| "company": "EYERIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 599-2430", | |
| "address": "200 Montieth Street, Lithium, Washington, 7269", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9540da63aca5accad2", | |
| "index": 1153, | |
| "balance": "$1,303.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Amalia Dorsey", | |
| "company": "EBIDCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 558-3518", | |
| "address": "772 Dare Court, Calvary, American Samoa, 9781", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9577d70e0d40a705e6", | |
| "index": 1154, | |
| "balance": "$2,621.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cash Horn", | |
| "company": "ECLIPTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 481-3118", | |
| "address": "884 Hewes Street, Dola, Maryland, 8026", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953a2bfa86ace2b510", | |
| "index": 1155, | |
| "balance": "$2,319.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carlson Sanchez", | |
| "company": "QUILM", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 403-3993", | |
| "address": "861 Howard Place, Chilton, Ohio, 5072", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957a8659d37f7d5f60", | |
| "index": 1156, | |
| "balance": "$2,616.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Petersen Patrick", | |
| "company": "QUINEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 573-3270", | |
| "address": "361 Colonial Road, Newkirk, Iowa, 2880", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e6ed897852f0ac2e", | |
| "index": 1157, | |
| "balance": "$2,675.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Madge Lee", | |
| "company": "INTERGEEK", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 437-2099", | |
| "address": "429 Beaumont Street, Libertytown, Georgia, 9601", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957e727e8233edd6ab", | |
| "index": 1158, | |
| "balance": "$1,695.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cassie Forbes", | |
| "company": "MAGNEATO", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 478-2287", | |
| "address": "913 Metrotech Courtr, Savannah, Tennessee, 1750", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c18da1659838ff21", | |
| "index": 1159, | |
| "balance": "$1,167.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Betty Foley", | |
| "company": "LUNCHPOD", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 413-3182", | |
| "address": "591 Monaco Place, Why, Virginia, 5622", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ecd10b11e5a612e", | |
| "index": 1160, | |
| "balance": "$2,309.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harrison Avery", | |
| "company": "EXOSPACE", | |
| "email": "[email protected]", | |
| "phone": "+1 (929) 569-3787", | |
| "address": "336 Ovington Avenue, Trucksville, South Dakota, 666", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95220b3ef3ff8a069c", | |
| "index": 1161, | |
| "balance": "$3,573.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sanders Burgess", | |
| "company": "NETERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (823) 493-2037", | |
| "address": "838 Middleton Street, Hayden, Oklahoma, 6688", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951c5f6a6791ee95b2", | |
| "index": 1162, | |
| "balance": "$2,866.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maura Romero", | |
| "company": "ISOTRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 565-2276", | |
| "address": "304 Oxford Street, Alfarata, Texas, 3673", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950608e5990a9ff6dc", | |
| "index": 1163, | |
| "balance": "$1,374.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Phyllis Barber", | |
| "company": "DATAGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 521-3663", | |
| "address": "276 Sumpter Street, Coultervillle, Marshall Islands, 7666", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9546ca6e1928fd8e75", | |
| "index": 1164, | |
| "balance": "$1,147.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maricela Bentley", | |
| "company": "SHOPABOUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (978) 510-3602", | |
| "address": "128 Auburn Place, Dotsero, Maine, 7730", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bab3cb71c13685c3", | |
| "index": 1165, | |
| "balance": "$1,589.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Berger Figueroa", | |
| "company": "MICRONAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 538-2262", | |
| "address": "305 Jackson Street, Torboy, Colorado, 9064", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95015f083007696f55", | |
| "index": 1166, | |
| "balance": "$1,739.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Schmidt Stephenson", | |
| "company": "ENQUILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 471-2685", | |
| "address": "808 Willow Place, Farmington, New Mexico, 1319", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b81b464ca569dd9d", | |
| "index": 1167, | |
| "balance": "$1,867.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "West Williams", | |
| "company": "SNACKTION", | |
| "email": "[email protected]", | |
| "phone": "+1 (868) 594-3025", | |
| "address": "845 Harkness Avenue, Fairfield, Florida, 7126", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95741ea0a91f772b5a", | |
| "index": 1168, | |
| "balance": "$3,483.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ester Jordan", | |
| "company": "LUDAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 456-3720", | |
| "address": "970 Revere Place, Sheatown, Michigan, 3851", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fb7abbcf25a751b", | |
| "index": 1169, | |
| "balance": "$1,621.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Browning Stewart", | |
| "company": "TELPOD", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 577-3065", | |
| "address": "973 Jamaica Avenue, Sperryville, Delaware, 4196", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9593263d2c039a69e8", | |
| "index": 1170, | |
| "balance": "$2,096.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kara West", | |
| "company": "RONELON", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 484-2662", | |
| "address": "436 Russell Street, Troy, Virgin Islands, 9889", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95076962bb1c0cd35b", | |
| "index": 1171, | |
| "balance": "$3,674.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Katrina Hardy", | |
| "company": "SULTRAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 592-3503", | |
| "address": "144 Kossuth Place, Muir, West Virginia, 1650", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9563c7334b1e5f2034", | |
| "index": 1172, | |
| "balance": "$1,081.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hahn Carlson", | |
| "company": "GRUPOLI", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 413-3907", | |
| "address": "821 Quentin Street, Murillo, Alabama, 9295", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956b30c42aebae63dc", | |
| "index": 1173, | |
| "balance": "$2,573.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cornelia Hernandez", | |
| "company": "QUONATA", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 499-3665", | |
| "address": "137 Pilling Street, Leeper, North Carolina, 9728", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952a064f40907d3526", | |
| "index": 1174, | |
| "balance": "$1,064.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tricia Shannon", | |
| "company": "EARTHPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 471-3530", | |
| "address": "491 Jay Street, Waukeenah, Indiana, 6648", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f18edd1902fa7342", | |
| "index": 1175, | |
| "balance": "$1,242.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Manuela Estes", | |
| "company": "JASPER", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 578-3463", | |
| "address": "862 Eldert Street, Martinez, Missouri, 5842", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a67e19d33bb13b82", | |
| "index": 1176, | |
| "balance": "$2,364.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harris Walsh", | |
| "company": "DIGIAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 454-3594", | |
| "address": "195 Saratoga Avenue, Gorham, Arizona, 3428", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f2cfc29383d6656c", | |
| "index": 1177, | |
| "balance": "$1,673.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roberson Garza", | |
| "company": "ARCHITAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 423-2153", | |
| "address": "168 Trucklemans Lane, Jamestown, Massachusetts, 2715", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ebd141c091a0e00", | |
| "index": 1178, | |
| "balance": "$3,068.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Noble Grimes", | |
| "company": "BOINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 545-2190", | |
| "address": "939 Clara Street, Emison, New Jersey, 6869", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958fbfe0b1d0ae8679", | |
| "index": 1179, | |
| "balance": "$2,407.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelli Macias", | |
| "company": "NAMEBOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 422-3243", | |
| "address": "911 Ferris Street, Beason, Pennsylvania, 9004", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956c584349b4e3913b", | |
| "index": 1180, | |
| "balance": "$3,309.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rita Underwood", | |
| "company": "DOGTOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 599-3403", | |
| "address": "770 Eckford Street, Clarktown, Wisconsin, 8075", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958a0ba63eeb370707", | |
| "index": 1181, | |
| "balance": "$2,730.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Karen Aguilar", | |
| "company": "EARGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 539-2507", | |
| "address": "923 School Lane, Welch, Alaska, 4370", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fa7166f42d252be", | |
| "index": 1182, | |
| "balance": "$2,620.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Miranda Fischer", | |
| "company": "ISONUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 514-2394", | |
| "address": "310 Nassau Avenue, Lisco, Vermont, 4307", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bee14d537a81fe64", | |
| "index": 1183, | |
| "balance": "$2,505.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Abbott Briggs", | |
| "company": "STROZEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 593-3181", | |
| "address": "162 Hancock Street, Veguita, Illinois, 9018", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a97ce97f3fba3263", | |
| "index": 1184, | |
| "balance": "$1,722.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lawanda Tanner", | |
| "company": "DIGIGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 577-2411", | |
| "address": "144 Varanda Place, Wakulla, Utah, 7434", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9518298afdfc83fc87", | |
| "index": 1185, | |
| "balance": "$1,928.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kent Padilla", | |
| "company": "NURALI", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 552-2071", | |
| "address": "115 Lincoln Terrace, Gallina, Connecticut, 9091", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ca208bd16c4b6cb8", | |
| "index": 1186, | |
| "balance": "$3,028.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Haley Joyce", | |
| "company": "SPACEWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 509-3223", | |
| "address": "364 Suydam Street, Harold, Oregon, 6875", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ffb77ead0c3b2b38", | |
| "index": 1187, | |
| "balance": "$2,348.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cox Castaneda", | |
| "company": "ZENTILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 409-3692", | |
| "address": "643 Vista Place, Kerby, Federated States Of Micronesia, 7823", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eed01bfb3b9653af", | |
| "index": 1188, | |
| "balance": "$1,065.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clara Miranda", | |
| "company": "ISOLOGICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 549-3385", | |
| "address": "820 Dover Street, Babb, Kentucky, 1852", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95db959e7b8d8b561b", | |
| "index": 1189, | |
| "balance": "$1,423.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tracey Stein", | |
| "company": "COGNICODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 489-2626", | |
| "address": "225 Williams Avenue, Saticoy, Puerto Rico, 1868", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d9738f2ac4941f15", | |
| "index": 1190, | |
| "balance": "$1,769.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cynthia Welch", | |
| "company": "IDEALIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 494-3646", | |
| "address": "601 Lake Avenue, Kidder, Idaho, 7186", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952685d42167bcb0b7", | |
| "index": 1191, | |
| "balance": "$2,387.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lori Donovan", | |
| "company": "URBANSHEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 540-2828", | |
| "address": "289 Lewis Avenue, Boykin, Nevada, 4173", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c7c2e184f3041de0", | |
| "index": 1192, | |
| "balance": "$3,935.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Santiago Rivers", | |
| "company": "SPLINX", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 426-3164", | |
| "address": "577 Coyle Street, Brewster, South Carolina, 8646", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9588a431a4aa488fc3", | |
| "index": 1193, | |
| "balance": "$2,284.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosario Foreman", | |
| "company": "ZOARERE", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 552-2385", | |
| "address": "590 Kane Street, Rockbridge, Minnesota, 1646", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad350623d51b2803", | |
| "index": 1194, | |
| "balance": "$1,059.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nichols Ferrell", | |
| "company": "GINKLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 471-3819", | |
| "address": "829 Tapscott Street, Fredericktown, North Dakota, 6599", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9519caeea8f38f5699", | |
| "index": 1195, | |
| "balance": "$2,790.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elma Fleming", | |
| "company": "AQUACINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 454-2230", | |
| "address": "646 Indiana Place, Needmore, District Of Columbia, 4538", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ea753dff6accc7bd", | |
| "index": 1196, | |
| "balance": "$1,354.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tyson Hardin", | |
| "company": "ZOMBOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 405-3599", | |
| "address": "578 Seacoast Terrace, Dorneyville, New York, 2838", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951726364857eefa99", | |
| "index": 1197, | |
| "balance": "$1,680.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brown Woodard", | |
| "company": "QUADEEBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 432-2930", | |
| "address": "160 Rutherford Place, Winston, Montana, 693", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95834b7428f9f8db21", | |
| "index": 1198, | |
| "balance": "$2,445.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reynolds Simon", | |
| "company": "ENTROPIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 484-3652", | |
| "address": "706 Amboy Street, Harrodsburg, Arkansas, 1649", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ac65cfd7e3c9f2d6", | |
| "index": 1199, | |
| "balance": "$1,825.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ortiz Moore", | |
| "company": "GLASSTEP", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 530-2314", | |
| "address": "746 Cook Street, Vowinckel, Kansas, 8348", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e26669579c8ef22d", | |
| "index": 1200, | |
| "balance": "$3,259.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dolores Shepard", | |
| "company": "VICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 400-3931", | |
| "address": "376 Cozine Avenue, Hinsdale, Guam, 701", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ce04ebfc547b398e", | |
| "index": 1201, | |
| "balance": "$2,794.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flowers Morales", | |
| "company": "ZIALACTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 562-3985", | |
| "address": "655 Temple Court, Romeville, Rhode Island, 5358", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951b83b8ce555ef20d", | |
| "index": 1202, | |
| "balance": "$1,487.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Adeline Cardenas", | |
| "company": "COMFIRM", | |
| "email": "[email protected]", | |
| "phone": "+1 (842) 510-2899", | |
| "address": "819 Etna Street, Elliott, Palau, 1370", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9556aba6a82847ab72", | |
| "index": 1203, | |
| "balance": "$3,220.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Davidson Finch", | |
| "company": "ACUSAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 466-2541", | |
| "address": "573 Bayview Avenue, Gouglersville, Wyoming, 5818", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95409e131f3bf13565", | |
| "index": 1204, | |
| "balance": "$1,323.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alberta Carrillo", | |
| "company": "OTHERSIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 503-3242", | |
| "address": "453 Nevins Street, Golconda, Nebraska, 5856", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c1af2d736fbdf3ea", | |
| "index": 1205, | |
| "balance": "$1,002.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holt Flores", | |
| "company": "ZILENCIO", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 574-3868", | |
| "address": "908 Boardwalk , Cowiche, Northern Mariana Islands, 849", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cb92e94818b7398e", | |
| "index": 1206, | |
| "balance": "$3,839.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ericka Kirk", | |
| "company": "ZOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 555-2009", | |
| "address": "131 Noble Street, Hailesboro, California, 6605", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eb0ac8f8dd543084", | |
| "index": 1207, | |
| "balance": "$3,320.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Montgomery Maddox", | |
| "company": "REALMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 585-2346", | |
| "address": "951 Wilson Avenue, Fulford, Louisiana, 3975", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9540c76943188c3b00", | |
| "index": 1208, | |
| "balance": "$2,618.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hines Beck", | |
| "company": "ORBOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 498-3355", | |
| "address": "962 Wallabout Street, Zortman, Mississippi, 1634", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a1cd0bb5f1c0ead1", | |
| "index": 1209, | |
| "balance": "$3,866.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nixon Nichols", | |
| "company": "ILLUMITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 543-3256", | |
| "address": "357 Wakeman Place, Drytown, Hawaii, 1126", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d483ca3529237cd7", | |
| "index": 1210, | |
| "balance": "$3,650.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marsh Paul", | |
| "company": "UNDERTAP", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 487-3876", | |
| "address": "227 Glen Street, Stouchsburg, Washington, 8356", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c531835353a9433e", | |
| "index": 1211, | |
| "balance": "$3,345.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vazquez Cantu", | |
| "company": "COMTENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 501-3424", | |
| "address": "136 Seabring Street, Leyner, American Samoa, 1126", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d3d2f0f252e07e66", | |
| "index": 1212, | |
| "balance": "$2,459.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mayo Carpenter", | |
| "company": "BITTOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 488-2554", | |
| "address": "990 Wolf Place, Ladera, Maryland, 4647", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954570c2f369d310c3", | |
| "index": 1213, | |
| "balance": "$1,200.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Middleton Dyer", | |
| "company": "GRONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 406-2820", | |
| "address": "647 Winthrop Street, Clarksburg, Ohio, 4210", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955f0e176aa97e79d0", | |
| "index": 1214, | |
| "balance": "$3,532.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mathis Mays", | |
| "company": "APPLIDEC", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 409-3064", | |
| "address": "899 Roosevelt Court, Bakersville, Iowa, 2117", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956f47575a38043ed0", | |
| "index": 1215, | |
| "balance": "$2,916.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ramos Farmer", | |
| "company": "QUALITEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 404-3525", | |
| "address": "182 Clay Street, Gibsonia, Georgia, 5714", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9560620f0f23c06c83", | |
| "index": 1216, | |
| "balance": "$1,834.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Glenn Ratliff", | |
| "company": "ZEROLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 523-2220", | |
| "address": "855 Blake Court, Dante, Tennessee, 8036", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951b1ba2a6428f1d00", | |
| "index": 1217, | |
| "balance": "$3,142.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Phillips Hughes", | |
| "company": "HYPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 474-3282", | |
| "address": "136 Story Street, Alden, Virginia, 4781", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b67d0a661034184", | |
| "index": 1218, | |
| "balance": "$2,520.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mavis Roberts", | |
| "company": "DIGITALUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 536-2947", | |
| "address": "800 Fountain Avenue, Saranap, South Dakota, 9748", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953a00382ecfd0c7a4", | |
| "index": 1219, | |
| "balance": "$2,261.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Spence Curry", | |
| "company": "EXOSWITCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 576-3612", | |
| "address": "867 Argyle Road, Kenwood, Oklahoma, 350", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b527838f8ee054ad", | |
| "index": 1220, | |
| "balance": "$1,209.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rivas Vargas", | |
| "company": "EXERTA", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 472-2856", | |
| "address": "123 Applegate Court, Wollochet, Texas, 9883", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bc16cb7049150535", | |
| "index": 1221, | |
| "balance": "$3,638.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kristy Leach", | |
| "company": "ZENSUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 563-2785", | |
| "address": "403 Ridgewood Place, Bluetown, Marshall Islands, 2633", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95922f9501bbd1f75a", | |
| "index": 1222, | |
| "balance": "$2,551.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Monica Hudson", | |
| "company": "BOLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 509-3790", | |
| "address": "157 Leonora Court, Sparkill, Maine, 728", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9536f2bfb126acb9ac", | |
| "index": 1223, | |
| "balance": "$1,428.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Penny Lloyd", | |
| "company": "ZENSOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 517-3657", | |
| "address": "781 Atlantic Avenue, Caledonia, Colorado, 9808", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9524a022610c4db82f", | |
| "index": 1224, | |
| "balance": "$2,357.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chandra Perry", | |
| "company": "GENMOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 480-2987", | |
| "address": "946 Hubbard Place, Selma, New Mexico, 4991", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a37f5969384341cf", | |
| "index": 1225, | |
| "balance": "$1,450.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tonya Chapman", | |
| "company": "ZENTIME", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 445-2292", | |
| "address": "292 Cypress Court, Eastmont, Florida, 4839", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535193f09a1486123", | |
| "index": 1226, | |
| "balance": "$3,900.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kerri Murphy", | |
| "company": "AQUAZURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 417-3501", | |
| "address": "724 Baltic Street, Jenkinsville, Michigan, 1916", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f9b0e2f7edaee011", | |
| "index": 1227, | |
| "balance": "$1,349.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Charity Kline", | |
| "company": "MANGELICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 539-2029", | |
| "address": "841 Emerson Place, Lupton, Delaware, 2314", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ae319164ba025afc", | |
| "index": 1228, | |
| "balance": "$1,139.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Natasha Vazquez", | |
| "company": "SYNTAC", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 556-3279", | |
| "address": "586 Village Court, Gibbsville, Virgin Islands, 3391", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eaf79c90ec22a419", | |
| "index": 1229, | |
| "balance": "$2,239.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tasha Whitley", | |
| "company": "BOILCAT", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 498-3556", | |
| "address": "559 Coleman Street, Carbonville, West Virginia, 5500", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954d4eb90744f94662", | |
| "index": 1230, | |
| "balance": "$1,507.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carmela Sheppard", | |
| "company": "BLUEGRAIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 507-3538", | |
| "address": "510 Harrison Place, Marysville, Alabama, 2369", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95699706bd0ed5dcb3", | |
| "index": 1231, | |
| "balance": "$1,248.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Audrey Quinn", | |
| "company": "CHORIZON", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 414-3707", | |
| "address": "661 Whitney Avenue, Darbydale, North Carolina, 360", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955e4378e62d1bf33c", | |
| "index": 1232, | |
| "balance": "$2,759.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hazel Arnold", | |
| "company": "ZOXY", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 451-2102", | |
| "address": "451 Greenwood Avenue, Byrnedale, Indiana, 2935", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951598e1563b41ad28", | |
| "index": 1233, | |
| "balance": "$1,116.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lupe Sherman", | |
| "company": "PHARMACON", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 427-3794", | |
| "address": "585 Dobbin Street, Westphalia, Missouri, 5621", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959af984c58ff72909", | |
| "index": 1234, | |
| "balance": "$2,120.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Douglas Byers", | |
| "company": "KONGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 587-3835", | |
| "address": "886 Coleridge Street, Falconaire, Arizona, 5425", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506e812808ae7e3d7", | |
| "index": 1235, | |
| "balance": "$1,208.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frank Randolph", | |
| "company": "KINETICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 415-2373", | |
| "address": "864 Strong Place, Jugtown, Massachusetts, 4159", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0c5e14d7546eb2c", | |
| "index": 1236, | |
| "balance": "$1,302.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Underwood Terrell", | |
| "company": "LUMBREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 504-3174", | |
| "address": "124 Rock Street, Olney, New Jersey, 6940", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586121418e9efb9db", | |
| "index": 1237, | |
| "balance": "$3,126.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Katheryn Dejesus", | |
| "company": "AQUASURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 575-2543", | |
| "address": "993 Miami Court, Campo, Pennsylvania, 9197", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e8d1a90e68a58207", | |
| "index": 1238, | |
| "balance": "$1,640.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nelson Alvarez", | |
| "company": "PULZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 491-2646", | |
| "address": "172 Tapscott Avenue, Aurora, Wisconsin, 6764", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9502bf047e245649e9", | |
| "index": 1239, | |
| "balance": "$1,001.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shaffer Yates", | |
| "company": "ZIORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 578-3335", | |
| "address": "645 Norfolk Street, Tilleda, Alaska, 6844", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955f98d55dae306ba6", | |
| "index": 1240, | |
| "balance": "$1,846.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcdaniel Walters", | |
| "company": "TUBALUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 522-3514", | |
| "address": "352 Hendrickson Street, Richville, Vermont, 5310", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9583a3423aab5dbe8f", | |
| "index": 1241, | |
| "balance": "$1,310.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Imogene Kirby", | |
| "company": "OBONES", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 582-3667", | |
| "address": "826 Kent Avenue, Oneida, Illinois, 2580", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952a1f9239ed258ba7", | |
| "index": 1242, | |
| "balance": "$1,164.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maureen Greene", | |
| "company": "HATOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 495-2193", | |
| "address": "317 Hanson Place, Caron, Utah, 434", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e83072c474f09227", | |
| "index": 1243, | |
| "balance": "$2,164.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Debbie Mercado", | |
| "company": "APPLICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 400-3767", | |
| "address": "606 Mill Lane, Sidman, Connecticut, 4039", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f32e465dd94b3bf9", | |
| "index": 1244, | |
| "balance": "$3,812.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kate Goff", | |
| "company": "ZOUNDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 471-2404", | |
| "address": "658 Cox Place, Deseret, Oregon, 7812", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950981c1007d5b66fb", | |
| "index": 1245, | |
| "balance": "$3,133.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nanette Mccarthy", | |
| "company": "SIGNIDYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 595-3253", | |
| "address": "331 Throop Avenue, Nash, Federated States Of Micronesia, 3006", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fde9aaa421d3aafd", | |
| "index": 1246, | |
| "balance": "$2,923.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lolita Goodwin", | |
| "company": "FANFARE", | |
| "email": "[email protected]", | |
| "phone": "+1 (860) 450-3835", | |
| "address": "809 Hastings Street, Denio, Kentucky, 8011", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9592d10cf935fb8c10", | |
| "index": 1247, | |
| "balance": "$2,278.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Olive Humphrey", | |
| "company": "UTARA", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 535-3607", | |
| "address": "842 Heyward Street, Matheny, Puerto Rico, 7773", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955733d7a154c67819", | |
| "index": 1248, | |
| "balance": "$1,527.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fowler Walter", | |
| "company": "STEELFAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 478-2735", | |
| "address": "963 Kenmore Court, Ebro, Idaho, 1651", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959a3ef12dd2c2f6fa", | |
| "index": 1249, | |
| "balance": "$2,763.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sadie Dixon", | |
| "company": "SOLGAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 540-3269", | |
| "address": "870 Albany Avenue, Tuskahoma, Nevada, 5574", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957056da8e26590cb0", | |
| "index": 1250, | |
| "balance": "$1,674.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Franks Potter", | |
| "company": "PROTODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 584-2386", | |
| "address": "298 Humboldt Street, Rockingham, South Carolina, 7704", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ef8c67087d4e1706", | |
| "index": 1251, | |
| "balance": "$1,496.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cantrell King", | |
| "company": "ENTOGROK", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 579-2174", | |
| "address": "263 Schenectady Avenue, Nettie, Minnesota, 2600", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506860cf0827e1e07", | |
| "index": 1252, | |
| "balance": "$3,920.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hester Madden", | |
| "company": "CENTREXIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 501-2021", | |
| "address": "505 Poplar Avenue, Tecolotito, North Dakota, 6818", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c629c5f5f76ad5f8", | |
| "index": 1253, | |
| "balance": "$2,553.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Allison Marsh", | |
| "company": "EGYPTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 477-3921", | |
| "address": "722 Cameron Court, Balm, District Of Columbia, 2611", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9532a1b66b3cbcbe79", | |
| "index": 1254, | |
| "balance": "$1,699.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Keri Buckner", | |
| "company": "OBLIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 416-2390", | |
| "address": "859 Robert Street, Richford, New York, 6735", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9542a943af141bfb08", | |
| "index": 1255, | |
| "balance": "$2,681.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Willis Mason", | |
| "company": "QUOTEZART", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 404-2556", | |
| "address": "763 Sunnyside Court, Crawfordsville, Montana, 1895", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950bb058a5130f3b02", | |
| "index": 1256, | |
| "balance": "$2,889.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sherri Douglas", | |
| "company": "COMTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 569-3289", | |
| "address": "990 Dewitt Avenue, Trexlertown, Arkansas, 4966", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ce52275d03a34c6", | |
| "index": 1257, | |
| "balance": "$3,932.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burton Goodman", | |
| "company": "UNI", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 465-3493", | |
| "address": "383 Kensington Walk, Oley, Kansas, 4072", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954b6089ab0bf12c31", | |
| "index": 1258, | |
| "balance": "$3,386.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mayer Kim", | |
| "company": "ASSISTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 568-3568", | |
| "address": "627 Interborough Parkway, Longbranch, Guam, 6430", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957f6daa6d5e4da58c", | |
| "index": 1259, | |
| "balance": "$2,675.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fitzgerald Rowland", | |
| "company": "PAPRICUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 459-3837", | |
| "address": "254 Dooley Street, Bend, Rhode Island, 9315", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9551c5c5e81097fcf2", | |
| "index": 1260, | |
| "balance": "$1,888.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Buck Wyatt", | |
| "company": "DATACATOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (928) 594-2293", | |
| "address": "682 Sedgwick Place, Benson, Palau, 7595", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d79b643c747c679c", | |
| "index": 1261, | |
| "balance": "$1,802.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Navarro Salas", | |
| "company": "ULTRASURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 584-3255", | |
| "address": "778 Veranda Place, Sunriver, Wyoming, 2198", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0e6a9c06126fd93", | |
| "index": 1262, | |
| "balance": "$1,634.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Darcy Lowery", | |
| "company": "PROXSOFT", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 548-3779", | |
| "address": "623 Alabama Avenue, Sedley, Nebraska, 1933", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952307c3b46b278b02", | |
| "index": 1263, | |
| "balance": "$3,429.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barr Coleman", | |
| "company": "UNISURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 582-2117", | |
| "address": "244 Cheever Place, Winesburg, Northern Mariana Islands, 4905", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9560863995d9a22646", | |
| "index": 1264, | |
| "balance": "$2,053.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deirdre Strong", | |
| "company": "PYRAMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 597-2677", | |
| "address": "947 Madison Place, Shawmut, California, 7958", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95494e377b1ad174fc", | |
| "index": 1265, | |
| "balance": "$3,998.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcclain Flowers", | |
| "company": "INTERFIND", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 446-3041", | |
| "address": "732 Dean Street, Gratton, Louisiana, 9464", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a04a6e32c5069151", | |
| "index": 1266, | |
| "balance": "$1,552.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Amber Bradley", | |
| "company": "PREMIANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 443-2366", | |
| "address": "377 Abbey Court, Kohatk, Mississippi, 9727", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957babb6e1952975e9", | |
| "index": 1267, | |
| "balance": "$3,776.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harmon Dale", | |
| "company": "GEEKWAGON", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 400-3541", | |
| "address": "114 Railroad Avenue, Cloverdale, Hawaii, 9245", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b1d1ad4a63d47fc", | |
| "index": 1268, | |
| "balance": "$1,375.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosalind Jenkins", | |
| "company": "KOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 404-2275", | |
| "address": "151 Quay Street, Cassel, Washington, 4629", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950506888c62bef3a1", | |
| "index": 1269, | |
| "balance": "$1,484.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Madeleine Logan", | |
| "company": "IDETICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 518-2723", | |
| "address": "419 Anthony Street, Hackneyville, American Samoa, 7790", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956e93af7d06de04e0", | |
| "index": 1270, | |
| "balance": "$3,289.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lewis Santiago", | |
| "company": "AQUASSEUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 456-2029", | |
| "address": "739 Verona Street, Farmers, Maryland, 7797", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953a4f6c62582aef20", | |
| "index": 1271, | |
| "balance": "$2,102.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Solis Gould", | |
| "company": "CENTICE", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 454-2755", | |
| "address": "669 Church Avenue, Topanga, Ohio, 9454", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d4e364de435cbe4d", | |
| "index": 1272, | |
| "balance": "$3,675.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aline Leblanc", | |
| "company": "DYNO", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 437-3137", | |
| "address": "139 Roosevelt Place, Elliston, Iowa, 2152", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c173775d23f281c8", | |
| "index": 1273, | |
| "balance": "$1,920.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melody Booker", | |
| "company": "EXTREMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 484-3092", | |
| "address": "988 Gerritsen Avenue, Edgar, Georgia, 2071", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dc137c831dc3f141", | |
| "index": 1274, | |
| "balance": "$3,240.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carmen Shelton", | |
| "company": "MATRIXITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 401-3298", | |
| "address": "860 Kay Court, Bladensburg, Tennessee, 2692", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a9a93250b5f7b88", | |
| "index": 1275, | |
| "balance": "$1,856.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gayle Burton", | |
| "company": "LINGOAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 570-3505", | |
| "address": "982 Grove Place, Ryderwood, Virginia, 5751", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ccbf373479fe035", | |
| "index": 1276, | |
| "balance": "$3,170.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lesa Alston", | |
| "company": "ZAPPIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 488-3758", | |
| "address": "666 Gallatin Place, Boonville, South Dakota, 8262", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535ec4329300f9640", | |
| "index": 1277, | |
| "balance": "$2,679.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janell Reed", | |
| "company": "DYMI", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 455-2568", | |
| "address": "806 McDonald Avenue, Noxen, Oklahoma, 8129", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c03f7ca13a704a17", | |
| "index": 1278, | |
| "balance": "$3,648.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dorsey Pittman", | |
| "company": "FIBRODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (904) 478-2954", | |
| "address": "875 Madoc Avenue, Woodruff, Texas, 1944", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951bd7063cb667625b", | |
| "index": 1279, | |
| "balance": "$1,337.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rodriquez Shepherd", | |
| "company": "MINGA", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 504-2122", | |
| "address": "293 Landis Court, Tooleville, Marshall Islands, 7889", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953d2bfbd331a8f7f4", | |
| "index": 1280, | |
| "balance": "$2,282.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Viola Booth", | |
| "company": "CUBICIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 402-2749", | |
| "address": "753 Powell Street, Ernstville, Maine, 5181", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95440022201d807733", | |
| "index": 1281, | |
| "balance": "$3,531.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gay Banks", | |
| "company": "MAKINGWAY", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 418-3017", | |
| "address": "264 Myrtle Avenue, Rosewood, Colorado, 7883", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950319266f07788bd2", | |
| "index": 1282, | |
| "balance": "$3,668.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Head Lynch", | |
| "company": "KRAG", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 457-3974", | |
| "address": "389 Holmes Lane, Venice, New Mexico, 7793", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535b234fef445b562", | |
| "index": 1283, | |
| "balance": "$1,590.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blanche Nash", | |
| "company": "EVENTEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 480-2216", | |
| "address": "782 Hyman Court, Eureka, Florida, 2580", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951569cea20a7af2de", | |
| "index": 1284, | |
| "balance": "$3,744.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elisa Mccormick", | |
| "company": "LIQUIDOC", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 448-2445", | |
| "address": "990 Reed Street, Cucumber, Michigan, 1465", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9570311407d80547e5", | |
| "index": 1285, | |
| "balance": "$1,027.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guzman Ray", | |
| "company": "METROZ", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 434-3807", | |
| "address": "572 Hunterfly Place, Brownsville, Delaware, 1742", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0701f7414758085", | |
| "index": 1286, | |
| "balance": "$3,568.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ferguson Hahn", | |
| "company": "MONDICIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 476-2128", | |
| "address": "146 Broadway , Navarre, Virgin Islands, 4653", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9530a0f97a07b099ed", | |
| "index": 1287, | |
| "balance": "$3,775.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dodson Watson", | |
| "company": "QUINTITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 442-3780", | |
| "address": "133 Cortelyou Road, Germanton, West Virginia, 1871", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955dcdebaa20a41626", | |
| "index": 1288, | |
| "balance": "$3,855.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kane Finley", | |
| "company": "AUSTECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 432-2712", | |
| "address": "629 Bowne Street, Stollings, Alabama, 9019", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a27f760ee9500b93", | |
| "index": 1289, | |
| "balance": "$3,357.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kline Herrera", | |
| "company": "SKYBOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (984) 425-2255", | |
| "address": "365 Colby Court, Clara, North Carolina, 3469", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f83e6e862e807d8f", | |
| "index": 1290, | |
| "balance": "$3,292.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stevens Browning", | |
| "company": "BOSTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 457-3913", | |
| "address": "475 Vermont Street, Blanford, Indiana, 9970", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e2661e47d4f52e28", | |
| "index": 1291, | |
| "balance": "$2,635.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hurley Nieves", | |
| "company": "AVIT", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 489-3277", | |
| "address": "864 Meserole Street, Loma, Missouri, 7326", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957f91d3f538725d63", | |
| "index": 1292, | |
| "balance": "$1,569.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "April Russo", | |
| "company": "NIQUENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 445-2423", | |
| "address": "637 Amersfort Place, Blairstown, Arizona, 5659", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95428728bc57ca78e5", | |
| "index": 1293, | |
| "balance": "$2,497.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Schneider Cohen", | |
| "company": "ZOLAREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 434-3065", | |
| "address": "248 Channel Avenue, Sultana, Massachusetts, 7176", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9561300ad6fef540ad", | |
| "index": 1294, | |
| "balance": "$1,652.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ophelia Adams", | |
| "company": "ISOPOP", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 585-3595", | |
| "address": "779 Rewe Street, Allamuchy, New Jersey, 3085", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bfcd45af558a0502", | |
| "index": 1295, | |
| "balance": "$3,657.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilkins Sosa", | |
| "company": "SQUISH", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 418-3873", | |
| "address": "326 Franklin Avenue, Bluffview, Pennsylvania, 2970", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9517dd7c13630fa6c9", | |
| "index": 1296, | |
| "balance": "$1,268.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cora Salinas", | |
| "company": "PERKLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 462-3281", | |
| "address": "861 Jewel Street, Chalfant, Wisconsin, 5552", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954d608be2c98f81e5", | |
| "index": 1297, | |
| "balance": "$1,255.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roth Donaldson", | |
| "company": "HOPELI", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 405-3764", | |
| "address": "109 Duffield Street, Rivera, Alaska, 6510", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f69858300392ee66", | |
| "index": 1298, | |
| "balance": "$1,691.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shannon Mcintyre", | |
| "company": "UNQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 597-3165", | |
| "address": "690 Conway Street, Hall, Vermont, 1133", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a2c8bb6b6d1df4a", | |
| "index": 1299, | |
| "balance": "$1,509.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beatriz Fox", | |
| "company": "TECHTRIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 413-2860", | |
| "address": "244 Union Street, Gasquet, Illinois, 1312", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a7c3004fd5720735", | |
| "index": 1300, | |
| "balance": "$1,793.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Millicent Barron", | |
| "company": "ANDERSHUN", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 475-2112", | |
| "address": "166 Turner Place, Coldiron, Utah, 6521", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b31d796749c71684", | |
| "index": 1301, | |
| "balance": "$1,952.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jessie Valenzuela", | |
| "company": "CEDWARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 570-2274", | |
| "address": "637 Battery Avenue, Kempton, Connecticut, 2820", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad4b7ed4d76978b5", | |
| "index": 1302, | |
| "balance": "$1,428.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hyde Rose", | |
| "company": "MARTGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 439-2980", | |
| "address": "312 Rose Street, Katonah, Oregon, 6891", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95059c24969c41b212", | |
| "index": 1303, | |
| "balance": "$1,122.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Young Schwartz", | |
| "company": "MOBILDATA", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 566-3557", | |
| "address": "512 Allen Avenue, Wells, Federated States Of Micronesia, 1302", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c6b08ec8bdc726af", | |
| "index": 1304, | |
| "balance": "$2,425.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelly May", | |
| "company": "VANTAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 564-3994", | |
| "address": "230 Voorhies Avenue, Delwood, Kentucky, 1711", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95964489cef589b329", | |
| "index": 1305, | |
| "balance": "$1,963.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hayes Maldonado", | |
| "company": "GRACKER", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 485-3238", | |
| "address": "232 Foster Avenue, Eden, Puerto Rico, 899", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95875f8351cda3a968", | |
| "index": 1306, | |
| "balance": "$3,906.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lowe Clay", | |
| "company": "PAWNAGRA", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 563-3762", | |
| "address": "120 Ocean Parkway, Darlington, Idaho, 9205", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b884fe3885b4f90", | |
| "index": 1307, | |
| "balance": "$2,515.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gordon Stafford", | |
| "company": "ISBOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 507-3613", | |
| "address": "984 Hale Avenue, Rivereno, Nevada, 5824", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953f5810d620ee3223", | |
| "index": 1308, | |
| "balance": "$3,657.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Whitfield Neal", | |
| "company": "VOLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 521-2712", | |
| "address": "598 Bartlett Street, Craig, South Carolina, 1507", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad135f369216c910", | |
| "index": 1309, | |
| "balance": "$3,185.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vanessa Gonzalez", | |
| "company": "QUILTIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 485-3211", | |
| "address": "283 Flatbush Avenue, Ypsilanti, Minnesota, 5621", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959cade474421c72cc", | |
| "index": 1310, | |
| "balance": "$1,279.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Spencer Mcgowan", | |
| "company": "TEMORAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 462-2833", | |
| "address": "253 Kosciusko Street, Gulf, North Dakota, 4689", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a13d2f1d8cf7cff", | |
| "index": 1311, | |
| "balance": "$1,754.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carmella Michael", | |
| "company": "NETPLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 426-3113", | |
| "address": "964 Claver Place, Marion, District Of Columbia, 9462", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953d4e52c094cd70ea", | |
| "index": 1312, | |
| "balance": "$1,935.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tamara Spears", | |
| "company": "PROSELY", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 401-3205", | |
| "address": "783 Woodside Avenue, Edneyville, New York, 1564", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9502fe95224325dc85", | |
| "index": 1313, | |
| "balance": "$3,309.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morgan Hopkins", | |
| "company": "ESCENTA", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 409-2554", | |
| "address": "195 Newkirk Placez, Loomis, Montana, 5497", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9548e06e27e7f58c07", | |
| "index": 1314, | |
| "balance": "$3,690.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alyssa Cline", | |
| "company": "COLUMELLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (860) 567-2387", | |
| "address": "154 Atkins Avenue, Mathews, Arkansas, 5835", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9541fa776679810907", | |
| "index": 1315, | |
| "balance": "$1,943.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dorthy Knapp", | |
| "company": "THREDZ", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 455-2193", | |
| "address": "127 Douglass Street, Zarephath, Kansas, 9219", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9595a4ed7cd80d27d6", | |
| "index": 1316, | |
| "balance": "$2,438.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marcie Richmond", | |
| "company": "QOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 513-3706", | |
| "address": "281 Ryder Avenue, Sanders, Guam, 1559", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec2d6c0972055e1a", | |
| "index": 1317, | |
| "balance": "$1,290.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Saunders Dillon", | |
| "company": "EVENTAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 409-3553", | |
| "address": "406 Himrod Street, Chautauqua, Rhode Island, 3169", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c917fa85dda41d85", | |
| "index": 1318, | |
| "balance": "$3,908.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kidd Barlow", | |
| "company": "BUZZOPIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 589-2336", | |
| "address": "745 Neptune Avenue, Idledale, Palau, 2052", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bce1aef93b566e89", | |
| "index": 1319, | |
| "balance": "$1,858.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ellison Mayo", | |
| "company": "WRAPTURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 471-2652", | |
| "address": "786 Fiske Place, Bancroft, Wyoming, 1807", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9554b06f334edcf049", | |
| "index": 1320, | |
| "balance": "$3,470.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Edwards Hood", | |
| "company": "GENMEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 576-3428", | |
| "address": "768 Bush Street, Orovada, Nebraska, 8381", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f2d1cba4d6607e69", | |
| "index": 1321, | |
| "balance": "$2,399.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chang Ross", | |
| "company": "INSOURCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 588-3661", | |
| "address": "134 Schenck Place, Clarence, Northern Mariana Islands, 394", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95860c01c1ed5932fc", | |
| "index": 1322, | |
| "balance": "$1,340.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Candice Morton", | |
| "company": "COMCUBINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 501-3790", | |
| "address": "585 Carroll Street, Rodman, California, 5557", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95df7aff6cb8bbffc2", | |
| "index": 1323, | |
| "balance": "$1,957.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hammond Zimmerman", | |
| "company": "ASIMILINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 551-3969", | |
| "address": "900 Garland Court, Kapowsin, Louisiana, 1981", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9533914e5fe80d7853", | |
| "index": 1324, | |
| "balance": "$1,413.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Callahan Holt", | |
| "company": "NSPIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 462-3823", | |
| "address": "705 Eastern Parkway, Convent, Mississippi, 6277", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957b66fa0078fff5f7", | |
| "index": 1325, | |
| "balance": "$3,822.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joni Tate", | |
| "company": "FLEETMIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 548-2134", | |
| "address": "961 Arlington Place, Cresaptown, Hawaii, 2570", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fc77febbb61b2d7", | |
| "index": 1326, | |
| "balance": "$2,670.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bonnie Schultz", | |
| "company": "TINGLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 507-3854", | |
| "address": "823 Forrest Street, Alleghenyville, Washington, 7889", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f6df3437163e56b8", | |
| "index": 1327, | |
| "balance": "$3,585.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beryl Warren", | |
| "company": "SCENTRIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 598-3611", | |
| "address": "925 Florence Avenue, Terlingua, American Samoa, 2679", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c60b623f1f4b0009", | |
| "index": 1328, | |
| "balance": "$1,336.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Erika Pope", | |
| "company": "FROLIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 520-3004", | |
| "address": "162 Will Place, Springdale, Maryland, 3281", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9508fe5eab8e58e5ec", | |
| "index": 1329, | |
| "balance": "$3,870.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fay Vance", | |
| "company": "KATAKANA", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 485-2653", | |
| "address": "129 Bayard Street, Fannett, Ohio, 485", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f7a0b8f50f1b1979", | |
| "index": 1330, | |
| "balance": "$2,375.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alejandra Cote", | |
| "company": "XSPORTS", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 515-3797", | |
| "address": "620 Laurel Avenue, Dennard, Iowa, 6109", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950ae1e842c3b71e7d", | |
| "index": 1331, | |
| "balance": "$2,666.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leon Phelps", | |
| "company": "CONCILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 434-2303", | |
| "address": "567 Regent Place, Smock, Georgia, 4623", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537249c5e166f6b19", | |
| "index": 1332, | |
| "balance": "$2,934.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynne Livingston", | |
| "company": "ZIPAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 537-2489", | |
| "address": "226 Hillel Place, Sunwest, Tennessee, 6635", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c52f2df50427323c", | |
| "index": 1333, | |
| "balance": "$3,934.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flores Owen", | |
| "company": "DELPHIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 439-3694", | |
| "address": "871 Sunnyside Avenue, Kipp, Virginia, 3079", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fb05b7a694f9ccf7", | |
| "index": 1334, | |
| "balance": "$3,889.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tracie Wright", | |
| "company": "VIASIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 403-2680", | |
| "address": "887 Hamilton Avenue, Grandview, South Dakota, 4517", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9597c62835bbf2d8a9", | |
| "index": 1335, | |
| "balance": "$1,965.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosario Dawson", | |
| "company": "GLUKGLUK", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 522-2561", | |
| "address": "907 Harman Street, Stonybrook, Oklahoma, 3561", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957ccf894f45040d9d", | |
| "index": 1336, | |
| "balance": "$1,265.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bowen Roach", | |
| "company": "EXODOC", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 533-2937", | |
| "address": "726 Dinsmore Place, Sunbury, Texas, 2918", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c5282ae15194e599", | |
| "index": 1337, | |
| "balance": "$1,543.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rhonda Nixon", | |
| "company": "NUTRALAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 459-3737", | |
| "address": "160 Delmonico Place, Carrsville, Marshall Islands, 2464", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f8c1dfd38de2c9a4", | |
| "index": 1338, | |
| "balance": "$2,255.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Priscilla Day", | |
| "company": "CORPULSE", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 417-3574", | |
| "address": "544 Eaton Court, Evergreen, Maine, 1563", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a8b18955b54d34ed", | |
| "index": 1339, | |
| "balance": "$2,432.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Henderson Blackburn", | |
| "company": "NIPAZ", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 584-3209", | |
| "address": "306 Matthews Place, Mooresburg, Colorado, 8989", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957c0366d5d8be50f1", | |
| "index": 1340, | |
| "balance": "$3,081.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Peterson Cotton", | |
| "company": "PUSHCART", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 568-3314", | |
| "address": "590 Columbia Street, Sutton, New Mexico, 8881", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954fb58dccfb393a51", | |
| "index": 1341, | |
| "balance": "$2,729.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Julianne Mcfadden", | |
| "company": "ZAGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 435-3636", | |
| "address": "969 Christopher Avenue, Washington, Florida, 2927", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955abe3d6749421a13", | |
| "index": 1342, | |
| "balance": "$2,121.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Katelyn Rutledge", | |
| "company": "VALPREAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 430-2230", | |
| "address": "227 Nautilus Avenue, Soudan, Michigan, 7748", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a67ca1922b745f04", | |
| "index": 1343, | |
| "balance": "$1,582.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guthrie Nguyen", | |
| "company": "TOURMANIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 466-2710", | |
| "address": "654 Bergen Street, Fairacres, Delaware, 4398", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f5573edbc0890ea5", | |
| "index": 1344, | |
| "balance": "$3,202.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rebecca Noble", | |
| "company": "ZANITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 520-2902", | |
| "address": "549 Ruby Street, Wadsworth, Virgin Islands, 3822", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957bfcc37e96cb0be1", | |
| "index": 1345, | |
| "balance": "$3,802.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jerry Mcguire", | |
| "company": "QABOOS", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 585-2155", | |
| "address": "839 Chestnut Avenue, Hamilton, West Virginia, 7179", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b0f9775b7c2c3c54", | |
| "index": 1346, | |
| "balance": "$1,220.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Madelyn Barnett", | |
| "company": "OVERFORK", | |
| "email": "[email protected]", | |
| "phone": "+1 (929) 546-3960", | |
| "address": "638 Hoyts Lane, Bascom, Alabama, 4054", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9569010dd24dbeae43", | |
| "index": 1347, | |
| "balance": "$2,439.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bonita Reilly", | |
| "company": "LOCAZONE", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 401-3282", | |
| "address": "430 Tabor Court, Edgewater, North Carolina, 4751", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ddbebaa89dc2048a", | |
| "index": 1348, | |
| "balance": "$2,872.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nadine Harding", | |
| "company": "KRAGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 560-2777", | |
| "address": "651 Hemlock Street, Juntura, Indiana, 2170", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956ee47e813ab2d7ea", | |
| "index": 1349, | |
| "balance": "$1,419.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hart Simpson", | |
| "company": "IMMUNICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 492-2640", | |
| "address": "440 Tilden Avenue, Loretto, Missouri, 2605", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a37a8e350f1a15e", | |
| "index": 1350, | |
| "balance": "$1,447.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elinor Conley", | |
| "company": "ORBIXTAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 459-3810", | |
| "address": "510 Lee Avenue, Hatteras, Arizona, 6528", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955bcd2beea4110194", | |
| "index": 1351, | |
| "balance": "$3,700.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margo Howe", | |
| "company": "EXIAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 592-3310", | |
| "address": "811 Union Avenue, Ahwahnee, Massachusetts, 3115", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955c693671fd888665", | |
| "index": 1352, | |
| "balance": "$1,802.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cathryn Compton", | |
| "company": "RODEMCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 478-2614", | |
| "address": "662 Gerald Court, Windsor, New Jersey, 3924", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955614e6596289b96a", | |
| "index": 1353, | |
| "balance": "$2,967.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leblanc Bailey", | |
| "company": "ISOTERNIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 532-3364", | |
| "address": "732 Cooper Street, Ronco, Pennsylvania, 2710", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a2ee6725af3f4fb", | |
| "index": 1354, | |
| "balance": "$3,399.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nell Munoz", | |
| "company": "UPLINX", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 424-3513", | |
| "address": "344 Just Court, Floris, Wisconsin, 2438", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950e1e8cc0decb8273", | |
| "index": 1355, | |
| "balance": "$1,530.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Thomas Petty", | |
| "company": "EMTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 559-2474", | |
| "address": "597 Barwell Terrace, Yettem, Alaska, 3491", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95037d8f0403386372", | |
| "index": 1356, | |
| "balance": "$3,579.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brandy Noel", | |
| "company": "TERRAGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 542-2362", | |
| "address": "251 Lake Place, Bayview, Vermont, 7144", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9598c62220c83ca1de", | |
| "index": 1357, | |
| "balance": "$2,878.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosemary Shaw", | |
| "company": "SULTRAXIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 473-2941", | |
| "address": "395 Bijou Avenue, Juarez, Illinois, 8112", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957d7e3b5b10c46663", | |
| "index": 1358, | |
| "balance": "$2,241.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vincent Boone", | |
| "company": "ACUMENTOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 420-3702", | |
| "address": "545 Hart Place, Bellamy, Utah, 4148", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95730cd80499c46541", | |
| "index": 1359, | |
| "balance": "$3,533.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yolanda Valencia", | |
| "company": "LIMOZEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (868) 550-2229", | |
| "address": "567 Fenimore Street, Brownlee, Connecticut, 8458", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95327cfadd3c29c65b", | |
| "index": 1360, | |
| "balance": "$1,420.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lenora Blankenship", | |
| "company": "ENJOLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 449-2231", | |
| "address": "144 Bassett Avenue, Westerville, Oregon, 978", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95235518059bfa8384", | |
| "index": 1361, | |
| "balance": "$3,058.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mai Hale", | |
| "company": "INTERODEO", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 543-3729", | |
| "address": "748 Stryker Street, Innsbrook, Federated States Of Micronesia, 2642", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955635417cecd3f64f", | |
| "index": 1362, | |
| "balance": "$2,770.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Karina Richards", | |
| "company": "VERTIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 403-3316", | |
| "address": "306 Covert Street, Shaft, Kentucky, 1841", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f7b335fce011e983", | |
| "index": 1363, | |
| "balance": "$3,702.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sparks Wells", | |
| "company": "SECURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 537-3533", | |
| "address": "909 Cropsey Avenue, Warren, Puerto Rico, 1830", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95add176de381864f4", | |
| "index": 1364, | |
| "balance": "$2,855.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mason Holden", | |
| "company": "MELBACOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 468-2207", | |
| "address": "314 Havemeyer Street, Corriganville, Idaho, 858", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950ba92fb7d3320261", | |
| "index": 1365, | |
| "balance": "$2,511.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Doris Gibson", | |
| "company": "SARASONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 583-3070", | |
| "address": "435 Grafton Street, Fostoria, Nevada, 9781", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a215fa0848845326", | |
| "index": 1366, | |
| "balance": "$1,009.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Witt Mejia", | |
| "company": "ZYPLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 409-3730", | |
| "address": "553 Hope Street, Hondah, South Carolina, 1803", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b35dec85c6c24fbb", | |
| "index": 1367, | |
| "balance": "$2,958.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dillon Ryan", | |
| "company": "ZENSURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 555-2737", | |
| "address": "332 Seagate Terrace, Warsaw, Minnesota, 4716", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95862d7840f400dfde", | |
| "index": 1368, | |
| "balance": "$2,394.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Workman Coffey", | |
| "company": "ZENTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 571-2032", | |
| "address": "238 Campus Road, Florence, North Dakota, 2662", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958666a8766630faff", | |
| "index": 1369, | |
| "balance": "$1,861.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cotton Odom", | |
| "company": "ZOLAVO", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 479-3857", | |
| "address": "678 Ashland Place, Bordelonville, District Of Columbia, 889", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eb4c1684fbdc76b1", | |
| "index": 1370, | |
| "balance": "$3,109.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Downs Weber", | |
| "company": "MAGNEMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 457-3480", | |
| "address": "881 High Street, Leroy, New York, 3426", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95735b850fd0f4d101", | |
| "index": 1371, | |
| "balance": "$1,732.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morin Riddle", | |
| "company": "PRISMATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 575-2306", | |
| "address": "350 Autumn Avenue, Groton, Montana, 4828", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95193cd3d38281b1fb", | |
| "index": 1372, | |
| "balance": "$2,456.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hutchinson Combs", | |
| "company": "ZENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 590-3108", | |
| "address": "884 Legion Street, Snowville, Arkansas, 298", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d4a8ac2c96c53a9", | |
| "index": 1373, | |
| "balance": "$1,965.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Drake Golden", | |
| "company": "ZILLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 466-3699", | |
| "address": "113 Chester Court, Orick, Kansas, 2743", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953ea8f85eff78fa1c", | |
| "index": 1374, | |
| "balance": "$1,413.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Saundra Guzman", | |
| "company": "SONGBIRD", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 592-3088", | |
| "address": "169 Friel Place, Williams, Guam, 105", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c6b9038285886510", | |
| "index": 1375, | |
| "balance": "$3,256.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alison Luna", | |
| "company": "NETAGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 540-2279", | |
| "address": "372 Rapelye Street, Fedora, Rhode Island, 159", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958d55452737b78534", | |
| "index": 1376, | |
| "balance": "$3,270.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lara Nelson", | |
| "company": "FIBEROX", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 576-2820", | |
| "address": "720 Lloyd Street, Waverly, Palau, 3850", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957fe5d6d9d4ca9395", | |
| "index": 1377, | |
| "balance": "$2,021.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Olsen Navarro", | |
| "company": "CIPROMOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 504-2924", | |
| "address": "556 Neptune Court, Wheaton, Wyoming, 8855", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9564501409803be51e", | |
| "index": 1378, | |
| "balance": "$2,323.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elsa Kirkland", | |
| "company": "SLAMBDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 443-3014", | |
| "address": "644 Irving Avenue, Mulberry, Nebraska, 8850", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95751a6ea546488706", | |
| "index": 1379, | |
| "balance": "$3,780.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilkerson Price", | |
| "company": "BLEENDOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 470-3581", | |
| "address": "878 Maujer Street, Hannasville, Northern Mariana Islands, 4095", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954dae4ae4a7d765da", | |
| "index": 1380, | |
| "balance": "$1,908.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brittany Fulton", | |
| "company": "TERRASYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 432-2023", | |
| "address": "759 Ira Court, Thatcher, California, 719", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ebaefab75ce0e600", | |
| "index": 1381, | |
| "balance": "$3,461.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maryanne Hyde", | |
| "company": "KIGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 448-2507", | |
| "address": "270 Hausman Street, Drummond, Louisiana, 9162", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a92105e90340eadc", | |
| "index": 1382, | |
| "balance": "$3,934.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Peters Casey", | |
| "company": "TROPOLI", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 524-2557", | |
| "address": "757 Schermerhorn Street, Wildwood, Mississippi, 342", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9527e5d51a2a576c34", | |
| "index": 1383, | |
| "balance": "$2,311.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Howell Sykes", | |
| "company": "ORONOKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 585-2509", | |
| "address": "172 Seigel Street, Interlochen, Hawaii, 6982", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954f1261676b6015e7", | |
| "index": 1384, | |
| "balance": "$1,247.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stacy Roy", | |
| "company": "ZILLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 520-3137", | |
| "address": "295 Empire Boulevard, Baden, Washington, 1063", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a352366568f96206", | |
| "index": 1385, | |
| "balance": "$3,890.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gertrude Vinson", | |
| "company": "DIGIQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 573-3898", | |
| "address": "186 Gunther Place, Berlin, American Samoa, 4342", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95947236ee3beeebc7", | |
| "index": 1386, | |
| "balance": "$3,444.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shanna Cameron", | |
| "company": "DARWINIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 461-3439", | |
| "address": "274 Roder Avenue, Blandburg, Maryland, 7485", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957e8beb5a1d1257ab", | |
| "index": 1387, | |
| "balance": "$3,401.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patterson Walls", | |
| "company": "KENGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 442-2192", | |
| "address": "772 Cooke Court, Yogaville, Ohio, 6580", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ce6ee1fe7731334", | |
| "index": 1388, | |
| "balance": "$3,506.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wooten White", | |
| "company": "KEGULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 532-2262", | |
| "address": "341 Tiffany Place, Austinburg, Iowa, 9083", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9534da1eb57d7fa694", | |
| "index": 1389, | |
| "balance": "$1,570.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jacqueline Flynn", | |
| "company": "ISOPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 544-3263", | |
| "address": "434 Polar Street, Adamstown, Georgia, 1964", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958261e33aa3659075", | |
| "index": 1390, | |
| "balance": "$3,011.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roseann Strickland", | |
| "company": "KNOWLYSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 596-2436", | |
| "address": "840 Garnet Street, Sisquoc, Tennessee, 2400", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958749cdc26c1ccebd", | |
| "index": 1391, | |
| "balance": "$3,968.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joyner Craig", | |
| "company": "ISOLOGIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 487-2592", | |
| "address": "207 Elm Avenue, Forestburg, Virginia, 4271", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c06fd3801d3f3538", | |
| "index": 1392, | |
| "balance": "$2,832.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Caroline Lindsey", | |
| "company": "IMPERIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 457-2336", | |
| "address": "312 Mill Street, Elizaville, South Dakota, 4457", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959011497e94dc2f22", | |
| "index": 1393, | |
| "balance": "$1,460.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Doyle Mack", | |
| "company": "VOIPA", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 598-3333", | |
| "address": "880 Cambridge Place, Harviell, Oklahoma, 6242", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad8dee2f966edca4", | |
| "index": 1394, | |
| "balance": "$3,953.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Estelle Armstrong", | |
| "company": "GEEKOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 455-3968", | |
| "address": "414 Schroeders Avenue, Welda, Texas, 5913", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959b04f4e18c18a074", | |
| "index": 1395, | |
| "balance": "$2,302.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sweet Castro", | |
| "company": "CYTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 439-2912", | |
| "address": "372 Calyer Street, Gordon, Marshall Islands, 1829", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586094d6d3605fffc", | |
| "index": 1396, | |
| "balance": "$3,918.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sheena Winters", | |
| "company": "MUSIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 459-2963", | |
| "address": "514 Bristol Street, Shepardsville, Maine, 140", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959c641a74ad88ea58", | |
| "index": 1397, | |
| "balance": "$2,519.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Santos Dennis", | |
| "company": "FARMEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 452-2416", | |
| "address": "997 Livingston Street, Walland, Colorado, 3667", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955af8914bfd24ac48", | |
| "index": 1398, | |
| "balance": "$3,219.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cooley Butler", | |
| "company": "SUPPORTAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 437-3666", | |
| "address": "470 Poplar Street, Sandston, New Mexico, 8432", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950be17a38fff9df40", | |
| "index": 1399, | |
| "balance": "$2,864.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lora Irwin", | |
| "company": "CENTURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 486-3441", | |
| "address": "541 Strauss Street, Lodoga, Florida, 4924", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ae953f4dae8efdef", | |
| "index": 1400, | |
| "balance": "$1,730.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Meghan Christian", | |
| "company": "SULFAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 563-2079", | |
| "address": "417 Coventry Road, Grenelefe, Michigan, 9934", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95492748766d3c2e82", | |
| "index": 1401, | |
| "balance": "$3,319.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Strickland Guthrie", | |
| "company": "ZILCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 553-2725", | |
| "address": "279 Girard Street, Duryea, Delaware, 9771", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bfd7f28f4192f3f3", | |
| "index": 1402, | |
| "balance": "$2,015.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Velez Acevedo", | |
| "company": "GUSHKOOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 450-3635", | |
| "address": "174 Pitkin Avenue, Homestead, Virgin Islands, 963", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528303419a01e48d3", | |
| "index": 1403, | |
| "balance": "$3,471.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lacy Acosta", | |
| "company": "SONIQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 400-3667", | |
| "address": "612 Highland Avenue, Whitestone, West Virginia, 8479", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958aee0cf66f090340", | |
| "index": 1404, | |
| "balance": "$2,951.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Snyder Cortez", | |
| "company": "JAMNATION", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 575-3871", | |
| "address": "875 Brightwater Avenue, Dunbar, Alabama, 6436", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956a71f3162e418fc8", | |
| "index": 1405, | |
| "balance": "$3,327.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Casandra Key", | |
| "company": "VERBUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 422-2808", | |
| "address": "606 Terrace Place, Kanauga, North Carolina, 7817", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952f05815449e9d65c", | |
| "index": 1406, | |
| "balance": "$3,936.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marva Morgan", | |
| "company": "TUBESYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 500-2766", | |
| "address": "308 Junius Street, Hanover, Indiana, 1040", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a16d89ebd5479d81", | |
| "index": 1407, | |
| "balance": "$1,507.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vilma Hess", | |
| "company": "MOREGANIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (804) 448-3770", | |
| "address": "902 Ellery Street, Keller, Missouri, 6855", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9553f78c5af760d339", | |
| "index": 1408, | |
| "balance": "$2,745.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Martina Mcdonald", | |
| "company": "BRAINQUIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 584-3669", | |
| "address": "440 Hart Street, Mapletown, Arizona, 9089", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95058ef63680313f98", | |
| "index": 1409, | |
| "balance": "$1,099.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Michael Elliott", | |
| "company": "FUELTON", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 426-3414", | |
| "address": "986 Conover Street, Wakarusa, Massachusetts, 9257", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ea79c5a7cf3fcedb", | |
| "index": 1410, | |
| "balance": "$2,282.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roslyn Merritt", | |
| "company": "EPLOSION", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 435-2557", | |
| "address": "265 Arion Place, Dargan, New Jersey, 8013", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95249d86b175e52b01", | |
| "index": 1411, | |
| "balance": "$1,251.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gabrielle Kramer", | |
| "company": "MEDICROIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 564-2834", | |
| "address": "283 Mermaid Avenue, Heil, Pennsylvania, 4059", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95756699f092345658", | |
| "index": 1412, | |
| "balance": "$3,553.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Isabel Steele", | |
| "company": "INSURESYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 547-3742", | |
| "address": "648 Henderson Walk, Crenshaw, Wisconsin, 581", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d9c54b91ba756a0e", | |
| "index": 1413, | |
| "balance": "$1,590.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Veronica Carson", | |
| "company": "ENVIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 453-2836", | |
| "address": "390 Elton Street, Nord, Alaska, 2016", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dff06fda6013812d", | |
| "index": 1414, | |
| "balance": "$1,873.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barbara Middleton", | |
| "company": "ELITA", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 554-3348", | |
| "address": "597 Banker Street, Otranto, Vermont, 9906", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952c654bb001861ed5", | |
| "index": 1415, | |
| "balance": "$1,735.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lane Mullen", | |
| "company": "BIOLIVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 503-2219", | |
| "address": "998 Bond Street, Vaughn, Illinois, 5799", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f0a67c45c01d2c29", | |
| "index": 1416, | |
| "balance": "$2,563.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Donaldson Pacheco", | |
| "company": "CEMENTION", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 557-2580", | |
| "address": "315 Paerdegat Avenue, Oretta, Utah, 5522", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95106e852115554e4b", | |
| "index": 1417, | |
| "balance": "$2,555.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joseph Macdonald", | |
| "company": "ENERVATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 557-3371", | |
| "address": "628 Bushwick Court, Brenton, Connecticut, 2441", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bebf1cef29ba5179", | |
| "index": 1418, | |
| "balance": "$1,514.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Perry Case", | |
| "company": "DIGIFAD", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 486-2454", | |
| "address": "616 Schenck Street, Brantleyville, Oregon, 5625", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95127450c5c6a6aaec", | |
| "index": 1419, | |
| "balance": "$2,146.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fulton Stark", | |
| "company": "ESCHOIR", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 551-3298", | |
| "address": "370 Johnson Street, Alamo, Federated States Of Micronesia, 5370", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957de9627d91ee1a4c", | |
| "index": 1420, | |
| "balance": "$1,692.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nicole Mckenzie", | |
| "company": "SATIANCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 549-3757", | |
| "address": "526 Kaufman Place, Cliffside, Kentucky, 4268", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959f2caffba615fb10", | |
| "index": 1421, | |
| "balance": "$3,299.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hobbs Watkins", | |
| "company": "ZYTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 559-2486", | |
| "address": "276 Irving Street, Remington, Puerto Rico, 4039", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537e7d0a16c928435", | |
| "index": 1422, | |
| "balance": "$2,849.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fuller Kerr", | |
| "company": "XIXAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 564-2057", | |
| "address": "243 Sullivan Street, Russellville, Idaho, 8002", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cf102e70468e9252", | |
| "index": 1423, | |
| "balance": "$3,082.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nikki Rios", | |
| "company": "CALLFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 577-3968", | |
| "address": "275 Fairview Place, Gambrills, Nevada, 8251", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e5cb5aa7640c1715", | |
| "index": 1424, | |
| "balance": "$3,735.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Addie Meadows", | |
| "company": "MYOPIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 574-3256", | |
| "address": "715 Lafayette Avenue, Edenburg, South Carolina, 3031", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f14533c01f65b311", | |
| "index": 1425, | |
| "balance": "$3,189.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Conway Gallegos", | |
| "company": "EXOSTREAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 574-2237", | |
| "address": "466 Huntington Street, Linganore, Minnesota, 5782", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506590ed7d8dbb9bc", | |
| "index": 1426, | |
| "balance": "$2,528.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Whitney Morin", | |
| "company": "YOGASM", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 572-3000", | |
| "address": "379 Clinton Avenue, Crisman, North Dakota, 6386", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9588244b1294a8d782", | |
| "index": 1427, | |
| "balance": "$1,164.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bates Bowen", | |
| "company": "CORIANDER", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 511-3292", | |
| "address": "695 Bedford Avenue, Inkerman, District Of Columbia, 8897", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d924f1ba8fb9efe", | |
| "index": 1428, | |
| "balance": "$2,924.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccarthy Fernandez", | |
| "company": "YURTURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 481-2212", | |
| "address": "348 Lott Place, Utting, New York, 259", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959a74d60f0b7e8789", | |
| "index": 1429, | |
| "balance": "$2,210.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "York Harmon", | |
| "company": "PHOLIO", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 539-2273", | |
| "address": "942 Wortman Avenue, Coventry, Montana, 628", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956e939f6663b29d97", | |
| "index": 1430, | |
| "balance": "$3,901.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aurelia Rodriquez", | |
| "company": "SPEEDBOLT", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 451-3900", | |
| "address": "363 Ainslie Street, Noblestown, Arkansas, 3285", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955f1906f2d458ae34", | |
| "index": 1431, | |
| "balance": "$1,653.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Irma Ramsey", | |
| "company": "COMTEST", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 459-3868", | |
| "address": "440 Jackson Place, Wedgewood, Kansas, 6226", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954815237e0aadb335", | |
| "index": 1432, | |
| "balance": "$2,059.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Meagan Kinney", | |
| "company": "LOVEPAD", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 589-3593", | |
| "address": "971 Gold Street, Zeba, Guam, 2283", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955cbf6272555bc9d8", | |
| "index": 1433, | |
| "balance": "$3,735.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brenda Rodriguez", | |
| "company": "GENESYNK", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 526-3874", | |
| "address": "875 Boulevard Court, Manila, Rhode Island, 5306", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9548053d78843059c9", | |
| "index": 1434, | |
| "balance": "$1,938.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Macias Hooper", | |
| "company": "ICOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 472-3815", | |
| "address": "333 Erasmus Street, Sena, Palau, 1894", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95489357a6d03444a6", | |
| "index": 1435, | |
| "balance": "$3,395.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lindsey Vasquez", | |
| "company": "MEDMEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 481-3336", | |
| "address": "374 Oriental Court, Blue, Wyoming, 3413", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958939279a29be5ec2", | |
| "index": 1436, | |
| "balance": "$2,225.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Connie Mcneil", | |
| "company": "SONGLINES", | |
| "email": "[email protected]", | |
| "phone": "+1 (937) 517-2199", | |
| "address": "880 Beard Street, Stagecoach, Nebraska, 8352", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bab3b0a3f2ab08ab", | |
| "index": 1437, | |
| "balance": "$3,673.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Washington Marshall", | |
| "company": "GAZAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 511-2177", | |
| "address": "437 Whitwell Place, Linwood, Northern Mariana Islands, 5325", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a2a3be3a3e05d42", | |
| "index": 1438, | |
| "balance": "$2,981.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Misty Freeman", | |
| "company": "ENTROFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 541-3630", | |
| "address": "110 Hinckley Place, Faywood, California, 9383", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c4c74dc9dbf157a2", | |
| "index": 1439, | |
| "balance": "$2,989.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jami Crosby", | |
| "company": "PARLEYNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 443-3603", | |
| "address": "120 Albemarle Road, Weeksville, Louisiana, 2164", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9566782e7e37bd2c79", | |
| "index": 1440, | |
| "balance": "$2,681.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nettie Ochoa", | |
| "company": "IMKAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 544-3892", | |
| "address": "883 Danforth Street, Brogan, Mississippi, 1106", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958029feab9cae5d41", | |
| "index": 1441, | |
| "balance": "$2,028.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Whitaker Atkins", | |
| "company": "COLAIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 558-3152", | |
| "address": "166 Main Street, Glasgow, Hawaii, 8704", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95275aeabd868ab1db", | |
| "index": 1442, | |
| "balance": "$3,957.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Adrian Whitehead", | |
| "company": "PLAYCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 505-2136", | |
| "address": "711 Vanderveer Place, Wattsville, Washington, 8381", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9523e8398b9e40871a", | |
| "index": 1443, | |
| "balance": "$3,232.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wiggins David", | |
| "company": "KAGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (814) 422-3762", | |
| "address": "587 Cleveland Street, Manchester, American Samoa, 9307", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b4905da77e40354a", | |
| "index": 1444, | |
| "balance": "$3,076.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jenifer Mcpherson", | |
| "company": "XINWARE", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 593-3437", | |
| "address": "888 Belmont Avenue, Alderpoint, Maryland, 7369", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95672315aee167cdf4", | |
| "index": 1445, | |
| "balance": "$3,855.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gutierrez Cole", | |
| "company": "BUGSALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (811) 406-3888", | |
| "address": "305 Nixon Court, Sardis, Ohio, 4037", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957cde3e2bb732b3ff", | |
| "index": 1446, | |
| "balance": "$3,571.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mercedes Mitchell", | |
| "company": "COMCUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 580-3332", | |
| "address": "291 Lexington Avenue, Comptche, Iowa, 7657", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a90fd8dc17a66150", | |
| "index": 1447, | |
| "balance": "$2,504.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Letitia Oneill", | |
| "company": "PHARMEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 567-2007", | |
| "address": "709 Sands Street, Maplewood, Georgia, 6200", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957dafc481e784992b", | |
| "index": 1448, | |
| "balance": "$2,193.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mercado Hurley", | |
| "company": "UNEEQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 441-3278", | |
| "address": "243 Calder Place, Hayes, Tennessee, 8713", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95af1bae16613c83dc", | |
| "index": 1449, | |
| "balance": "$1,486.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Battle Kelley", | |
| "company": "VETRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 469-2109", | |
| "address": "813 Remsen Avenue, Hobucken, Virginia, 2338", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a53457d4fec5855b", | |
| "index": 1450, | |
| "balance": "$3,099.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ruiz Christensen", | |
| "company": "TERRAGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 465-2031", | |
| "address": "799 Fanchon Place, Muse, South Dakota, 1535", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b96f3e69bee1b340", | |
| "index": 1451, | |
| "balance": "$2,073.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hillary Farley", | |
| "company": "ELEMANTRA", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 539-3542", | |
| "address": "547 Ryerson Street, Elfrida, Oklahoma, 9760", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95af22f61de25b1f0b", | |
| "index": 1452, | |
| "balance": "$1,791.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stuart Rivas", | |
| "company": "ACIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 412-2133", | |
| "address": "709 Stone Avenue, Thomasville, Texas, 6366", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959f6329e6a5739c0b", | |
| "index": 1453, | |
| "balance": "$3,341.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frieda Robertson", | |
| "company": "VITRICOMP", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 457-2747", | |
| "address": "198 Narrows Avenue, Lafferty, Marshall Islands, 4405", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95142987ab07111c4f", | |
| "index": 1454, | |
| "balance": "$3,911.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hinton Hayden", | |
| "company": "ROBOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 544-2243", | |
| "address": "289 Arlington Avenue, Riverton, Maine, 8770", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95610220c4852fd605", | |
| "index": 1455, | |
| "balance": "$1,971.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Zimmerman Hammond", | |
| "company": "STELAECOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 549-3515", | |
| "address": "586 Linwood Street, Faxon, Colorado, 6623", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c1ad81910043df7f", | |
| "index": 1456, | |
| "balance": "$2,787.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosie Farrell", | |
| "company": "GONKLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 522-3050", | |
| "address": "694 Jamison Lane, Wyano, New Mexico, 1466", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955785edaa6f053b6b", | |
| "index": 1457, | |
| "balance": "$3,988.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcleod Oneal", | |
| "company": "COMTOUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 600-3351", | |
| "address": "800 Harbor Court, Hoagland, Florida, 1208", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9565b01684141ddebf", | |
| "index": 1458, | |
| "balance": "$2,824.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gretchen Dillard", | |
| "company": "SCENTY", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 590-2661", | |
| "address": "890 Central Avenue, Sylvanite, Michigan, 4922", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9543bab48e129f3e84", | |
| "index": 1459, | |
| "balance": "$2,380.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angel Blair", | |
| "company": "UNCORP", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 488-3746", | |
| "address": "640 Cherry Street, Tetherow, Delaware, 1661", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9547b545875ca2bf84", | |
| "index": 1460, | |
| "balance": "$2,838.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angelita Larson", | |
| "company": "CABLAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 577-3434", | |
| "address": "806 Batchelder Street, Robinette, Virgin Islands, 5433", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953bc7722c6cb8a596", | |
| "index": 1461, | |
| "balance": "$1,197.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melton Taylor", | |
| "company": "GYNK", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 554-2008", | |
| "address": "846 Orient Avenue, Brazos, West Virginia, 4722", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950fee56f555ec5f6d", | |
| "index": 1462, | |
| "balance": "$1,265.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dena Gilliam", | |
| "company": "BUZZNESS", | |
| "email": "[email protected]", | |
| "phone": "+1 (810) 400-3909", | |
| "address": "355 Halsey Street, Ona, Alabama, 9918", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f1ecf793b344ebc4", | |
| "index": 1463, | |
| "balance": "$3,423.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Irwin Lane", | |
| "company": "COSMOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 520-2372", | |
| "address": "186 Tech Place, Staples, North Carolina, 4877", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95388de2aa6be87f08", | |
| "index": 1464, | |
| "balance": "$1,115.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Naomi Edwards", | |
| "company": "EMERGENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 565-2117", | |
| "address": "974 Putnam Avenue, Whitmer, Indiana, 6071", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959c077b1b958e67ba", | |
| "index": 1465, | |
| "balance": "$3,418.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bradford Oneil", | |
| "company": "NETROPIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 489-2250", | |
| "address": "552 Coles Street, Irwin, Missouri, 9534", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954f7376520b9046c8", | |
| "index": 1466, | |
| "balance": "$2,771.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cunningham Burke", | |
| "company": "INSURETY", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 496-2981", | |
| "address": "895 Ovington Court, Jennings, Arizona, 7427", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dec0317e7a502821", | |
| "index": 1467, | |
| "balance": "$1,408.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynda Moran", | |
| "company": "FISHLAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 487-2353", | |
| "address": "921 Henry Street, Dahlen, Massachusetts, 5550", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95670a640b410ca7b3", | |
| "index": 1468, | |
| "balance": "$3,815.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fuentes Scott", | |
| "company": "LUXURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 526-3201", | |
| "address": "533 Herkimer Court, Cashtown, New Jersey, 7668", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c81190e545fce8b7", | |
| "index": 1469, | |
| "balance": "$2,790.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jaime Cash", | |
| "company": "GALLAXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 592-2220", | |
| "address": "243 Goodwin Place, Gilgo, Pennsylvania, 661", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b540d65cab9341ab", | |
| "index": 1470, | |
| "balance": "$3,513.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Malinda Rosario", | |
| "company": "SNORUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 595-3546", | |
| "address": "445 Hooper Street, Walker, Wisconsin, 3308", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954fff4e71912c3e36", | |
| "index": 1471, | |
| "balance": "$2,725.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Massey Pearson", | |
| "company": "ISOSURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 441-3542", | |
| "address": "824 Ocean Avenue, Ferney, Alaska, 9367", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9503fa1c21611d9ce2", | |
| "index": 1472, | |
| "balance": "$3,599.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rachelle Weaver", | |
| "company": "NEBULEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 553-2904", | |
| "address": "894 Dahl Court, Clay, Vermont, 4934", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95023268878296cbd9", | |
| "index": 1473, | |
| "balance": "$2,671.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Curtis Stanley", | |
| "company": "ZOLARITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 402-3677", | |
| "address": "267 Seeley Street, Worcester, Illinois, 8566", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954804b9925170bd25", | |
| "index": 1474, | |
| "balance": "$3,514.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fletcher Castillo", | |
| "company": "DIGIPRINT", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 498-2185", | |
| "address": "280 Garfield Place, Albany, Utah, 210", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956d38bbe94d8c2ffe", | |
| "index": 1475, | |
| "balance": "$3,766.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hall Mccoy", | |
| "company": "BYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (953) 431-3400", | |
| "address": "720 Brigham Street, Summerset, Connecticut, 1570", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9529400c8f20c07189", | |
| "index": 1476, | |
| "balance": "$1,768.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clements Keith", | |
| "company": "PLASMOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 424-3184", | |
| "address": "660 Portal Street, Strong, Oregon, 2456", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95635f959d2600cfd2", | |
| "index": 1477, | |
| "balance": "$2,968.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nannie Orr", | |
| "company": "SLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (889) 449-2443", | |
| "address": "118 Murdock Court, Roosevelt, Federated States Of Micronesia, 9235", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a9ba56cdb4e56f9e", | |
| "index": 1478, | |
| "balance": "$1,721.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Estela Townsend", | |
| "company": "XEREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 508-3360", | |
| "address": "205 Harden Street, Swartzville, Kentucky, 4303", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ed64c301f14be183", | |
| "index": 1479, | |
| "balance": "$1,883.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Estella Reynolds", | |
| "company": "OPTICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 456-2638", | |
| "address": "207 Ditmars Street, Brambleton, Puerto Rico, 9714", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d409daae7502bb2f", | |
| "index": 1480, | |
| "balance": "$2,975.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "May Murray", | |
| "company": "GEEKUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 409-3581", | |
| "address": "580 Elizabeth Place, Bonanza, Idaho, 4149", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0816628321b6e30", | |
| "index": 1481, | |
| "balance": "$2,400.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janet Blevins", | |
| "company": "ROUGHIES", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 437-2769", | |
| "address": "566 Charles Place, Northchase, Nevada, 8071", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0f49138984f7973", | |
| "index": 1482, | |
| "balance": "$2,765.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jensen Burt", | |
| "company": "CAXT", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 486-3076", | |
| "address": "956 Benson Avenue, Ribera, South Carolina, 6717", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958671e01f5c0089d4", | |
| "index": 1483, | |
| "balance": "$1,748.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosella Cox", | |
| "company": "OTHERWAY", | |
| "email": "[email protected]", | |
| "phone": "+1 (860) 419-2674", | |
| "address": "746 Clymer Street, Tuttle, Minnesota, 8584", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957cfb595370ca1e4b", | |
| "index": 1484, | |
| "balance": "$3,419.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Klein Turner", | |
| "company": "SLOGANAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (829) 599-2258", | |
| "address": "825 Bennet Court, Bainbridge, North Dakota, 7735", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95153ca16a8bee1b5e", | |
| "index": 1485, | |
| "balance": "$1,972.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angelina Schmidt", | |
| "company": "TERASCAPE", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 489-2734", | |
| "address": "311 Fayette Street, Tioga, District Of Columbia, 806", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952c0c3fe9c28f2bcf", | |
| "index": 1486, | |
| "balance": "$1,264.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hull Fields", | |
| "company": "SENMAO", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 575-3491", | |
| "address": "872 Ryder Street, Vivian, New York, 7039", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955edfec4bfd70d8a9", | |
| "index": 1487, | |
| "balance": "$2,345.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Josefa Pratt", | |
| "company": "TELEQUIET", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 496-3230", | |
| "address": "714 Cumberland Walk, Brule, Montana, 5266", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95be8e767b06e2c074", | |
| "index": 1488, | |
| "balance": "$1,180.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garrett Jensen", | |
| "company": "PURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 428-3632", | |
| "address": "764 Clark Street, Avalon, Arkansas, 9743", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a7e01b29a07f88fa", | |
| "index": 1489, | |
| "balance": "$1,735.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blevins Ramos", | |
| "company": "NITRACYR", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 455-2154", | |
| "address": "183 Roebling Street, Reno, Kansas, 4065", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95168e2484d696dd42", | |
| "index": 1490, | |
| "balance": "$3,213.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shauna Kemp", | |
| "company": "XYMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 486-3399", | |
| "address": "397 Lincoln Road, Tyro, Guam, 479", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956be0751d3d89cdd7", | |
| "index": 1491, | |
| "balance": "$2,800.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Diane Sharp", | |
| "company": "QUILK", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 563-2642", | |
| "address": "684 Louise Terrace, Iberia, Rhode Island, 1879", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9555d8a6f5891351ff", | |
| "index": 1492, | |
| "balance": "$1,553.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Evangeline Parsons", | |
| "company": "ROTODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (953) 460-3308", | |
| "address": "373 Albee Square, Bowmansville, Palau, 4869", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9596471db1e06fccd3", | |
| "index": 1493, | |
| "balance": "$1,685.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garza Parks", | |
| "company": "PORTICO", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 437-2617", | |
| "address": "839 Erskine Loop, Brethren, Wyoming, 8781", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d19a30924e33f048", | |
| "index": 1494, | |
| "balance": "$1,842.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jarvis Blanchard", | |
| "company": "UNIWORLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 599-3452", | |
| "address": "178 Amber Street, Malo, Nebraska, 5201", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95627abf10b9219473", | |
| "index": 1495, | |
| "balance": "$2,802.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Adkins Jackson", | |
| "company": "NORALI", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 488-3360", | |
| "address": "198 Frank Court, Mammoth, Northern Mariana Islands, 9844", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9544ecf7cfcaed46e6", | |
| "index": 1496, | |
| "balance": "$1,119.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Madeline Myers", | |
| "company": "OPTIQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 542-2854", | |
| "address": "658 Truxton Street, Blodgett, California, 9063", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c794465fda041e1e", | |
| "index": 1497, | |
| "balance": "$2,267.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jennifer Pierce", | |
| "company": "KROG", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 562-3609", | |
| "address": "454 Pacific Street, Galesville, Louisiana, 7209", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9520d561a9bd2cb9ac", | |
| "index": 1498, | |
| "balance": "$1,836.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holmes Dominguez", | |
| "company": "QUAREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (924) 437-3930", | |
| "address": "242 Stillwell Avenue, Singer, Mississippi, 1402", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fda61dce8aa23cdf", | |
| "index": 1499, | |
| "balance": "$3,128.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bowman Fuller", | |
| "company": "EXTRAGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (835) 488-3736", | |
| "address": "827 Everit Street, Eastvale, Hawaii, 2557", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9578c30bf9cce2268b", | |
| "index": 1500, | |
| "balance": "$3,251.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margie Hendricks", | |
| "company": "VORATAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 494-3910", | |
| "address": "391 Sackett Street, Bangor, Washington, 9910", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95177f880a484ffd1d", | |
| "index": 1501, | |
| "balance": "$3,195.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cherry Nielsen", | |
| "company": "BULLZONE", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 420-2899", | |
| "address": "495 Essex Street, Moraida, American Samoa, 3904", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954b4414fe46fddd25", | |
| "index": 1502, | |
| "balance": "$2,036.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Liliana Hayes", | |
| "company": "BALUBA", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 569-2857", | |
| "address": "799 Manhattan Avenue, Rose, Maryland, 5529", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9530171cfae15ee4f0", | |
| "index": 1503, | |
| "balance": "$2,121.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Diana Barrett", | |
| "company": "SYBIXTEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 527-2588", | |
| "address": "249 Seigel Court, Chemung, Ohio, 3054", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954c332e61e1ea57b9", | |
| "index": 1504, | |
| "balance": "$2,187.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lana Diaz", | |
| "company": "QUILCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 598-2178", | |
| "address": "336 Crawford Avenue, Frank, Iowa, 1238", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955f9b58f8c497e090", | |
| "index": 1505, | |
| "balance": "$1,628.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mendoza Haney", | |
| "company": "UPDAT", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 455-3523", | |
| "address": "418 Java Street, Maury, Georgia, 6349", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f35efa6e55fa4f9d", | |
| "index": 1506, | |
| "balance": "$1,192.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tucker Ruiz", | |
| "company": "EARTHPURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 582-2064", | |
| "address": "734 Elmwood Avenue, Cazadero, Tennessee, 1028", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e9e5463f56702a67", | |
| "index": 1507, | |
| "balance": "$3,654.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Snider Gray", | |
| "company": "KEENGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 472-2576", | |
| "address": "531 Milton Street, Detroit, Virginia, 747", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f9967e54862d647b", | |
| "index": 1508, | |
| "balance": "$3,770.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cecelia Hubbard", | |
| "company": "CENTREGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 478-2958", | |
| "address": "520 Manor Court, Jessie, South Dakota, 3927", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f1320db82fe6a76b", | |
| "index": 1509, | |
| "balance": "$1,589.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Opal Maxwell", | |
| "company": "POLARIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 506-2461", | |
| "address": "651 Brooklyn Avenue, Kiskimere, Oklahoma, 8037", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9592c84a3df84c0704", | |
| "index": 1510, | |
| "balance": "$3,573.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eugenia Gallagher", | |
| "company": "BIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 587-2742", | |
| "address": "135 Stoddard Place, Thornport, Texas, 1454", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958fb84632b207eff6", | |
| "index": 1511, | |
| "balance": "$3,502.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alisha Emerson", | |
| "company": "ZEPITOPE", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 519-3228", | |
| "address": "400 Kiely Place, Kersey, Marshall Islands, 5772", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528bd81a707fe2666", | |
| "index": 1512, | |
| "balance": "$3,063.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Earlene Peters", | |
| "company": "TALKOLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 405-2748", | |
| "address": "656 Lawn Court, Emory, Maine, 7751", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d983b0849300ef55", | |
| "index": 1513, | |
| "balance": "$1,902.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mercer Rich", | |
| "company": "EARTHMARK", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 548-2660", | |
| "address": "707 Monroe Place, Roy, Colorado, 4548", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95341a3e099383d746", | |
| "index": 1514, | |
| "balance": "$2,187.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pena Huber", | |
| "company": "QUANTASIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 552-2898", | |
| "address": "555 Stratford Road, Roeville, New Mexico, 2382", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9544522980fde2925b", | |
| "index": 1515, | |
| "balance": "$1,331.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Josefina Frost", | |
| "company": "INQUALA", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 534-2738", | |
| "address": "784 Liberty Avenue, Madrid, Florida, 3601", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958a20be4a5ce274f3", | |
| "index": 1516, | |
| "balance": "$1,507.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Josephine Johnston", | |
| "company": "DANCITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 423-3488", | |
| "address": "510 Oak Street, Buxton, Michigan, 8841", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a9b9052d521d59e1", | |
| "index": 1517, | |
| "balance": "$2,120.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sybil Burris", | |
| "company": "DEVILTOE", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 545-2853", | |
| "address": "952 Evergreen Avenue, Joppa, Delaware, 7711", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954550eca4539f0a31", | |
| "index": 1518, | |
| "balance": "$1,943.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcintosh Russell", | |
| "company": "DOGSPA", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 540-3160", | |
| "address": "623 Hornell Loop, Esmont, Virgin Islands, 7768", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951ac9552950c0f5af", | |
| "index": 1519, | |
| "balance": "$1,863.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Baxter Preston", | |
| "company": "BALOOBA", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 504-2364", | |
| "address": "714 Onderdonk Avenue, Nelson, West Virginia, 9002", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0843da611bd3065", | |
| "index": 1520, | |
| "balance": "$1,366.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Effie Richardson", | |
| "company": "GEEKNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 418-2140", | |
| "address": "792 Montrose Avenue, Walton, Alabama, 6402", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953cbab417b209db56", | |
| "index": 1521, | |
| "balance": "$3,024.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Floyd Velazquez", | |
| "company": "BEADZZA", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 555-3950", | |
| "address": "169 Hopkins Street, Bowden, North Carolina, 2491", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f2732c3bd8d6ab1c", | |
| "index": 1522, | |
| "balance": "$3,094.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chaney Hansen", | |
| "company": "BICOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 430-2019", | |
| "address": "697 Manhattan Court, Eggertsville, Indiana, 4856", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95463523cbefc9b058", | |
| "index": 1523, | |
| "balance": "$3,889.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christi Conrad", | |
| "company": "NIMON", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 591-2724", | |
| "address": "795 Estate Road, Nescatunga, Missouri, 8155", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9577cd8a0d7e6121f7", | |
| "index": 1524, | |
| "balance": "$2,193.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Valencia Brooks", | |
| "company": "EXOPLODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 411-3844", | |
| "address": "278 Columbus Place, Harmon, Arizona, 8620", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95023e5a48ae862697", | |
| "index": 1525, | |
| "balance": "$1,934.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walls Bradford", | |
| "company": "OVIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 560-2682", | |
| "address": "407 Huron Street, Kingstowne, Massachusetts, 3391", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eeb2d597e6ce8d72", | |
| "index": 1526, | |
| "balance": "$3,742.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "John Langley", | |
| "company": "KENEGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 510-2527", | |
| "address": "494 Irving Place, Topaz, New Jersey, 8642", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95567d2b966eb9503d", | |
| "index": 1527, | |
| "balance": "$2,735.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mclean Marquez", | |
| "company": "ZBOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (984) 552-3433", | |
| "address": "649 Halleck Street, Vallonia, Pennsylvania, 4291", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dc0fd22d2021fc0f", | |
| "index": 1528, | |
| "balance": "$1,282.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jackson Deleon", | |
| "company": "POOCHIES", | |
| "email": "[email protected]", | |
| "phone": "+1 (995) 468-3715", | |
| "address": "234 Lafayette Walk, Bethany, Wisconsin, 9720", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956792839c00aab096", | |
| "index": 1529, | |
| "balance": "$3,193.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelley Wooten", | |
| "company": "COMBOGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 523-2807", | |
| "address": "379 Eagle Street, Ballico, Alaska, 8528", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9515628f3c07e11358", | |
| "index": 1530, | |
| "balance": "$3,437.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Celina Bright", | |
| "company": "TSUNAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 585-3066", | |
| "address": "584 Pioneer Street, Whipholt, Vermont, 8570", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953f2cba1d17127799", | |
| "index": 1531, | |
| "balance": "$1,990.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rojas Frank", | |
| "company": "EWAVES", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 529-3923", | |
| "address": "110 Bliss Terrace, Cornucopia, Illinois, 6394", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9534bc05f7d1fcf51d", | |
| "index": 1532, | |
| "balance": "$1,935.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Edwina Fry", | |
| "company": "LYRICHORD", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 512-2199", | |
| "address": "815 Cedar Street, Norfolk, Utah, 515", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a3d5a032a5a07612", | |
| "index": 1533, | |
| "balance": "$3,569.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Andrews Sargent", | |
| "company": "VURBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 417-2988", | |
| "address": "555 Bethel Loop, Sharon, Connecticut, 5830", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dfba395b08962a92", | |
| "index": 1534, | |
| "balance": "$2,169.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cohen House", | |
| "company": "TETAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 413-2867", | |
| "address": "636 Scholes Street, Datil, Oregon, 5849", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953a27de15aee162e4", | |
| "index": 1535, | |
| "balance": "$1,574.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Della Henry", | |
| "company": "VIAGRAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 528-3188", | |
| "address": "117 Sharon Street, Bagtown, Federated States Of Micronesia, 3556", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9565ba866db52a4135", | |
| "index": 1536, | |
| "balance": "$3,468.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mabel Puckett", | |
| "company": "FRENEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 532-2928", | |
| "address": "628 Grand Street, Gorst, Kentucky, 6398", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ba88beb1fe853644", | |
| "index": 1537, | |
| "balance": "$3,487.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wood Perkins", | |
| "company": "KINETICUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 482-2256", | |
| "address": "131 Chestnut Street, Jacksonburg, Puerto Rico, 6176", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b3e675d43da9d7cf", | |
| "index": 1538, | |
| "balance": "$3,317.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeanine Clayton", | |
| "company": "FARMAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 492-2818", | |
| "address": "182 Lincoln Place, Westmoreland, Idaho, 9081", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957f2aa4f6413f6247", | |
| "index": 1539, | |
| "balance": "$3,013.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sharp Santos", | |
| "company": "XURBAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 564-2018", | |
| "address": "276 Adler Place, Keyport, Nevada, 8231", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9517d349b99f11cdf8", | |
| "index": 1540, | |
| "balance": "$1,810.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcguire Olson", | |
| "company": "OLYMPIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 460-2234", | |
| "address": "910 Oceanview Avenue, Churchill, South Carolina, 4321", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95403a56aeab4225fc", | |
| "index": 1541, | |
| "balance": "$3,092.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Billie Melton", | |
| "company": "COMTRACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 526-3804", | |
| "address": "922 Bath Avenue, Indio, Minnesota, 8239", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955dcce68a60d0bd35", | |
| "index": 1542, | |
| "balance": "$1,720.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janie Fitzpatrick", | |
| "company": "RECRITUBE", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 576-3321", | |
| "address": "410 Johnson Avenue, Chamberino, North Dakota, 8616", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ecb065914e641fbf", | |
| "index": 1543, | |
| "balance": "$3,403.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cecile Mcknight", | |
| "company": "ROCKABYE", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 539-2011", | |
| "address": "806 Bedford Place, Adelino, District Of Columbia, 3727", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955d8347e74355ebca", | |
| "index": 1544, | |
| "balance": "$1,126.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Raquel Gaines", | |
| "company": "ZILLACTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 598-2179", | |
| "address": "536 Vandam Street, Carlton, New York, 8978", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952dfffeadbf2ab5ee", | |
| "index": 1545, | |
| "balance": "$3,134.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Georgette Porter", | |
| "company": "XERONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 577-3901", | |
| "address": "391 Brooklyn Road, Efland, Montana, 4627", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e172116bfdc9c480", | |
| "index": 1546, | |
| "balance": "$2,738.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blackburn Hull", | |
| "company": "GEEKKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 540-2457", | |
| "address": "952 Vermont Court, Westwood, Arkansas, 6631", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95200daee3bba7ca00", | |
| "index": 1547, | |
| "balance": "$3,535.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vicky Washington", | |
| "company": "ZEDALIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 581-2429", | |
| "address": "924 Woodhull Street, Axis, Kansas, 5706", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a5361b02cacdc3f3", | |
| "index": 1548, | |
| "balance": "$3,090.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Valentine Andrews", | |
| "company": "ZILLAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 578-2884", | |
| "address": "503 Pulaski Street, Elwood, Guam, 8921", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d62e4ad7b29dea44", | |
| "index": 1549, | |
| "balance": "$1,231.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bettie Gomez", | |
| "company": "MOTOVATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 583-2300", | |
| "address": "773 Canton Court, Chelsea, Rhode Island, 2363", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953984a2a3d401e80d", | |
| "index": 1550, | |
| "balance": "$3,893.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Best Stone", | |
| "company": "CANDECOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 474-2179", | |
| "address": "191 Tompkins Avenue, Waiohinu, Palau, 2161", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950ee1f98440f5dfd4", | |
| "index": 1551, | |
| "balance": "$1,710.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Samantha Levine", | |
| "company": "WARETEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (810) 589-2167", | |
| "address": "629 Mill Avenue, Chestnut, Wyoming, 9546", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952a39dc2c1aed6ba8", | |
| "index": 1552, | |
| "balance": "$2,658.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelley Wallace", | |
| "company": "MOLTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 504-3081", | |
| "address": "998 Devoe Street, Enoree, Nebraska, 9989", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959ab6764611655cce", | |
| "index": 1553, | |
| "balance": "$3,816.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Michelle Erickson", | |
| "company": "COSMETEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 573-2684", | |
| "address": "526 Newel Street, Accoville, Northern Mariana Islands, 7670", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952858ab2151bb76f6", | |
| "index": 1554, | |
| "balance": "$1,676.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cain Clark", | |
| "company": "GEOFORMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 595-2351", | |
| "address": "409 Schweikerts Walk, Machias, California, 1746", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950cc1a4280cdfcc9a", | |
| "index": 1555, | |
| "balance": "$1,823.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Farmer Higgins", | |
| "company": "MEDALERT", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 461-2299", | |
| "address": "325 Highlawn Avenue, Kennedyville, Louisiana, 7886", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b216a79e61bc2595", | |
| "index": 1556, | |
| "balance": "$1,329.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vera Clarke", | |
| "company": "MARVANE", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 591-2482", | |
| "address": "427 Nova Court, Weogufka, Mississippi, 216", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9567786ba9de5fbf52", | |
| "index": 1557, | |
| "balance": "$2,681.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margarita Koch", | |
| "company": "SURETECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 464-2434", | |
| "address": "183 Cumberland Street, Crayne, Hawaii, 8645", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951b7def3a99ab87b1", | |
| "index": 1558, | |
| "balance": "$2,021.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sheree Head", | |
| "company": "SNOWPOKE", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 456-2702", | |
| "address": "158 Monitor Street, Bourg, Washington, 318", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959b94933efbf3e284", | |
| "index": 1559, | |
| "balance": "$1,504.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anne Bond", | |
| "company": "AMTAP", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 545-3639", | |
| "address": "976 Montgomery Place, Sims, American Samoa, 397", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954aff73e356be95ec", | |
| "index": 1560, | |
| "balance": "$3,481.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Newton Harper", | |
| "company": "ZENTRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 471-3856", | |
| "address": "373 Hubbard Street, Cochranville, Maryland, 8625", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e5a3bac2ffd269c2", | |
| "index": 1561, | |
| "balance": "$3,737.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ellen Nicholson", | |
| "company": "BITREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 410-2532", | |
| "address": "317 Fane Court, Bergoo, Ohio, 5051", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ccb51474cfd9c103", | |
| "index": 1562, | |
| "balance": "$2,919.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Noel Guerrero", | |
| "company": "GRAINSPOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 499-2192", | |
| "address": "474 Brighton Court, Hebron, Iowa, 5008", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951c0e5bb0863b2a70", | |
| "index": 1563, | |
| "balance": "$1,979.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcintyre Good", | |
| "company": "PAPRIKUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 482-3064", | |
| "address": "250 Driggs Avenue, Saddlebrooke, Georgia, 1918", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95abdb4578cdbbe17c", | |
| "index": 1564, | |
| "balance": "$3,600.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Caitlin Beard", | |
| "company": "LUNCHPAD", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 592-3835", | |
| "address": "942 Overbaugh Place, Gracey, Tennessee, 1818", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95588676a5a154f8b5", | |
| "index": 1565, | |
| "balance": "$3,996.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nolan Gay", | |
| "company": "HONOTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 472-2753", | |
| "address": "190 Beayer Place, Rote, Virginia, 1483", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b1f62b7b3da76336", | |
| "index": 1566, | |
| "balance": "$3,672.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maryellen Bernard", | |
| "company": "HAWKSTER", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 452-3003", | |
| "address": "321 Beacon Court, Idamay, South Dakota, 4766", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e8c313e7c13b0fb2", | |
| "index": 1567, | |
| "balance": "$3,741.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Debora Jones", | |
| "company": "ROCKLOGIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 474-3914", | |
| "address": "204 Jodie Court, Lynn, Oklahoma, 8972", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c734cf0701f12284", | |
| "index": 1568, | |
| "balance": "$1,762.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alana Avila", | |
| "company": "SCHOOLIO", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 577-3848", | |
| "address": "232 Holly Street, Croom, Texas, 9568", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d5fb50948336e141", | |
| "index": 1569, | |
| "balance": "$3,935.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marian Santana", | |
| "company": "ONTAGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 463-3254", | |
| "address": "726 Clermont Avenue, Basye, Marshall Islands, 2837", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95204042b6c49f1321", | |
| "index": 1570, | |
| "balance": "$2,480.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Simone York", | |
| "company": "MAGMINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 418-2661", | |
| "address": "271 Thornton Street, Cetronia, Maine, 6584", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956766bd52ada1d1f3", | |
| "index": 1571, | |
| "balance": "$3,619.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mariana Oliver", | |
| "company": "LYRIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 456-3206", | |
| "address": "200 Butler Place, Connerton, Colorado, 9388", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95abed8b988541c08b", | |
| "index": 1572, | |
| "balance": "$2,571.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Berg Reeves", | |
| "company": "DAISU", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 416-2825", | |
| "address": "221 Bevy Court, Guthrie, New Mexico, 338", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957036404739297688", | |
| "index": 1573, | |
| "balance": "$2,593.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ramsey Houston", | |
| "company": "DENTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (868) 580-3012", | |
| "address": "258 Chester Avenue, Forbestown, Florida, 8321", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9562659de15d93bb22", | |
| "index": 1574, | |
| "balance": "$3,315.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Donna Thomas", | |
| "company": "MULTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 592-3901", | |
| "address": "300 Hudson Avenue, Deltaville, Michigan, 8641", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ccc0c74faec4ffbc", | |
| "index": 1575, | |
| "balance": "$2,149.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Keller Garcia", | |
| "company": "KYAGORO", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 518-2880", | |
| "address": "391 Graham Avenue, Osage, Delaware, 5417", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9510fc38491fe407ba", | |
| "index": 1576, | |
| "balance": "$2,948.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kasey Ferguson", | |
| "company": "POSHOME", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 422-2540", | |
| "address": "897 Losee Terrace, Greensburg, Virgin Islands, 5129", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a9686ba6b9b9f0bc", | |
| "index": 1577, | |
| "balance": "$3,744.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Prince Aguirre", | |
| "company": "EXOTECHNO", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 461-3025", | |
| "address": "196 Canda Avenue, Catherine, West Virginia, 2416", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a898cc351663c4fa", | |
| "index": 1578, | |
| "balance": "$3,040.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cortez Downs", | |
| "company": "DRAGBOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 488-2558", | |
| "address": "734 Lorraine Street, Gila, Alabama, 8614", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ad9cd545ea1a6c7e", | |
| "index": 1579, | |
| "balance": "$2,146.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Turner Maynard", | |
| "company": "BITENDREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 562-2090", | |
| "address": "615 Varet Street, Fairforest, North Carolina, 5520", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95335b29b8a862f365", | |
| "index": 1580, | |
| "balance": "$2,634.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Whitney Cross", | |
| "company": "TURNLING", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 400-3980", | |
| "address": "853 Frost Street, Westboro, Indiana, 7420", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955a9dabe0ba04eb80", | |
| "index": 1581, | |
| "balance": "$2,231.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terry Duncan", | |
| "company": "POLARAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 575-2157", | |
| "address": "270 Gilmore Court, Dawn, Missouri, 652", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506b72abc39e7297e", | |
| "index": 1582, | |
| "balance": "$1,057.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jennings Randall", | |
| "company": "QUALITERN", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 435-3967", | |
| "address": "786 Schaefer Street, Caroleen, Arizona, 2596", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e31fa37050c6bdb7", | |
| "index": 1583, | |
| "balance": "$3,944.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Green Smith", | |
| "company": "NORSUP", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 520-2989", | |
| "address": "958 Cobek Court, Sanford, Massachusetts, 6143", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d20689e4be25e253", | |
| "index": 1584, | |
| "balance": "$2,724.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Haney Garrett", | |
| "company": "GEEKOLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 571-2172", | |
| "address": "695 Linden Boulevard, Urbana, New Jersey, 6170", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954102fbcbc7aa1383", | |
| "index": 1585, | |
| "balance": "$1,736.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Campbell Callahan", | |
| "company": "KIDSTOCK", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 402-3337", | |
| "address": "810 Conduit Boulevard, Lutsen, Pennsylvania, 5702", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b790f7da0909769f", | |
| "index": 1586, | |
| "balance": "$1,881.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rachael Pugh", | |
| "company": "EXOZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 482-2222", | |
| "address": "143 Colin Place, Turpin, Wisconsin, 2240", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a179bf43f9d9e38f", | |
| "index": 1587, | |
| "balance": "$3,119.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jolene Powers", | |
| "company": "ECOSYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 464-2165", | |
| "address": "170 Willoughby Street, Dixie, Alaska, 8928", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f5d1a2bd1fe3bbb6", | |
| "index": 1588, | |
| "balance": "$1,750.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lois Obrien", | |
| "company": "ZORROMOP", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 482-2181", | |
| "address": "624 Wyckoff Avenue, Dyckesville, Vermont, 6668", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9546b00859a0ccad1d", | |
| "index": 1589, | |
| "balance": "$3,254.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wise Mueller", | |
| "company": "ENDIPIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 431-2333", | |
| "address": "912 Wythe Avenue, Weedville, Illinois, 2872", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571b244d8631ea2cc", | |
| "index": 1590, | |
| "balance": "$3,633.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nunez Pruitt", | |
| "company": "EMTRAC", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 491-2936", | |
| "address": "493 Seaview Avenue, Verdi, Utah, 8120", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9514805554519db168", | |
| "index": 1591, | |
| "balance": "$1,013.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oconnor Molina", | |
| "company": "ENDICIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 406-3393", | |
| "address": "999 Madeline Court, Yorklyn, Connecticut, 4580", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95467c492a61197d27", | |
| "index": 1592, | |
| "balance": "$2,764.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Guerra Bolton", | |
| "company": "AEORA", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 577-2916", | |
| "address": "953 Suydam Place, Stevens, Oregon, 5607", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b14fbb789405add2", | |
| "index": 1593, | |
| "balance": "$2,873.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ines Walton", | |
| "company": "FLOTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 590-3311", | |
| "address": "481 Catherine Street, Toftrees, Federated States Of Micronesia, 1423", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f0e8ea0273fcf40d", | |
| "index": 1594, | |
| "balance": "$3,081.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lloyd Holder", | |
| "company": "EXOVENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 492-3423", | |
| "address": "582 Debevoise Avenue, Orviston, Kentucky, 8873", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b19f88cd05956eae", | |
| "index": 1595, | |
| "balance": "$2,305.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelly Spencer", | |
| "company": "AUSTEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 411-3700", | |
| "address": "426 Kensington Street, Joes, Puerto Rico, 3709", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95072ff5e3f5fa414a", | |
| "index": 1596, | |
| "balance": "$1,046.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leigh Massey", | |
| "company": "BESTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 562-2811", | |
| "address": "274 Bragg Street, Coalmont, Idaho, 1227", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9573074a6ac2912b24", | |
| "index": 1597, | |
| "balance": "$1,505.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Felicia Harvey", | |
| "company": "LIQUICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 466-2399", | |
| "address": "452 Classon Avenue, Titanic, Nevada, 1750", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9538326060e1a1cbd8", | |
| "index": 1598, | |
| "balance": "$2,117.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Esmeralda Lawson", | |
| "company": "ZANILLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 510-3269", | |
| "address": "210 Celeste Court, Greenwich, South Carolina, 2016", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fe1da705f20e3c74", | |
| "index": 1599, | |
| "balance": "$2,381.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shawn Glover", | |
| "company": "TASMANIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (923) 569-3628", | |
| "address": "991 Schenck Avenue, Bentonville, Minnesota, 8864", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c7f2be449fbbfbeb", | |
| "index": 1600, | |
| "balance": "$3,894.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ana Sloan", | |
| "company": "COWTOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 408-3727", | |
| "address": "541 Fillmore Place, Kenvil, North Dakota, 7824", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959a3fe82d938094c5", | |
| "index": 1601, | |
| "balance": "$1,468.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chrystal Villarreal", | |
| "company": "QUIZKA", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 592-3139", | |
| "address": "858 Kings Place, Bethpage, District Of Columbia, 2421", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d913581490390433", | |
| "index": 1602, | |
| "balance": "$1,925.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Toni Poole", | |
| "company": "DANJA", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 590-3190", | |
| "address": "387 Bridge Street, Bowie, New York, 8515", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955a19c377003bf81c", | |
| "index": 1603, | |
| "balance": "$3,123.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ladonna Ball", | |
| "company": "KAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 503-3886", | |
| "address": "658 Chapel Street, Moquino, Montana, 2791", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ef86c445ae51f47", | |
| "index": 1604, | |
| "balance": "$3,322.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lea Perez", | |
| "company": "MAGNINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 531-3866", | |
| "address": "413 Preston Court, Dunnavant, Arkansas, 2019", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a69b8f139e785967", | |
| "index": 1605, | |
| "balance": "$1,830.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ochoa Vaughn", | |
| "company": "VISALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 523-3202", | |
| "address": "788 Karweg Place, Stockwell, Kansas, 8692", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d8d0ca0e8c35cda4", | |
| "index": 1606, | |
| "balance": "$1,721.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ethel Cantrell", | |
| "company": "TELEPARK", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 424-2634", | |
| "address": "768 Montgomery Street, Southview, Guam, 1025", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9575f2dbb56d3547d4", | |
| "index": 1607, | |
| "balance": "$1,213.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Galloway Mcleod", | |
| "company": "INFOTRIPS", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 455-3380", | |
| "address": "213 Raleigh Place, Columbus, Rhode Island, 7656", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95caacfa667b1e2ef3", | |
| "index": 1608, | |
| "balance": "$2,051.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeannine Silva", | |
| "company": "AVENETRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 565-2327", | |
| "address": "801 Drew Street, Whitewater, Palau, 3976", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f05e04af8b6feb13", | |
| "index": 1609, | |
| "balance": "$3,104.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cooke Horton", | |
| "company": "OPPORTECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 461-2685", | |
| "address": "556 Troy Avenue, Conestoga, Wyoming, 7612", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951bed4749784a3ebe", | |
| "index": 1610, | |
| "balance": "$2,978.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Emerson Black", | |
| "company": "OPTICALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 523-2474", | |
| "address": "172 Delevan Street, Lund, Nebraska, 4887", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95463cb679a6a8fe6f", | |
| "index": 1611, | |
| "balance": "$1,939.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shirley Hinton", | |
| "company": "COMDOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 580-3932", | |
| "address": "777 Menahan Street, Diaperville, Northern Mariana Islands, 9980", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c81aa42987c19c4b", | |
| "index": 1612, | |
| "balance": "$1,840.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Woodward Ellis", | |
| "company": "JUNIPOOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 540-3528", | |
| "address": "874 Morton Street, Grayhawk, California, 6835", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95960486142f3fbaf4", | |
| "index": 1613, | |
| "balance": "$1,927.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Adriana Osborne", | |
| "company": "PHEAST", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 533-2823", | |
| "address": "425 Sapphire Street, Day, Louisiana, 9260", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951fdba53824763d64", | |
| "index": 1614, | |
| "balance": "$2,310.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ofelia Collier", | |
| "company": "TROLLERY", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 463-3912", | |
| "address": "365 Aster Court, Coyote, Mississippi, 5853", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c3ed6535077bf0c7", | |
| "index": 1615, | |
| "balance": "$3,343.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mia Monroe", | |
| "company": "PATHWAYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (926) 411-3006", | |
| "address": "397 Chase Court, Elbert, Hawaii, 9989", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586edf14d054de73a", | |
| "index": 1616, | |
| "balance": "$1,675.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcclure Morse", | |
| "company": "ZILLACOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 533-2193", | |
| "address": "710 Gain Court, Gerton, Washington, 8010", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d50fb78a3285b7bb", | |
| "index": 1617, | |
| "balance": "$2,335.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Latonya Cannon", | |
| "company": "CORPORANA", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 523-2103", | |
| "address": "857 Howard Alley, Snyderville, American Samoa, 4752", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954137d9b6e47ac6e1", | |
| "index": 1618, | |
| "balance": "$3,442.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Parker Webb", | |
| "company": "FIREWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 438-2285", | |
| "address": "566 Rockaway Parkway, Brookfield, Maryland, 9580", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f89c52dd1983f9b7", | |
| "index": 1619, | |
| "balance": "$1,929.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clarice Hoffman", | |
| "company": "DIGINETIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 485-3637", | |
| "address": "673 Lott Street, Ruffin, Ohio, 3835", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c09bf0c4f531c174", | |
| "index": 1620, | |
| "balance": "$3,506.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Riggs Ellison", | |
| "company": "ANIMALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 511-2960", | |
| "address": "128 Sullivan Place, Dalton, Iowa, 2617", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ca6e5f5d11e7992", | |
| "index": 1621, | |
| "balance": "$3,173.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Daphne Hancock", | |
| "company": "NAMEGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 459-3613", | |
| "address": "423 Lois Avenue, Oasis, Georgia, 8341", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0cc10cfedb6460e", | |
| "index": 1622, | |
| "balance": "$1,965.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Johnson Ashley", | |
| "company": "XLEEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 403-3935", | |
| "address": "712 Prospect Place, Waikele, Tennessee, 1585", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9542b00e719d01c4f4", | |
| "index": 1623, | |
| "balance": "$2,244.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vaughan Gillespie", | |
| "company": "APEXTRI", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 521-2725", | |
| "address": "515 Sheffield Avenue, Taft, Virginia, 6838", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e5eeb724bd92940d", | |
| "index": 1624, | |
| "balance": "$2,422.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bridgette Galloway", | |
| "company": "ISOSTREAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 559-2351", | |
| "address": "776 Bouck Court, Broadlands, South Dakota, 5401", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959ab0801cd1469fa0", | |
| "index": 1625, | |
| "balance": "$2,925.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mattie Wilcox", | |
| "company": "DOGNOST", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 492-3937", | |
| "address": "665 Loring Avenue, Williston, Oklahoma, 5630", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956b015c69ed8dd2fc", | |
| "index": 1626, | |
| "balance": "$2,858.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dominguez Landry", | |
| "company": "RUBADUB", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 566-2430", | |
| "address": "748 Garden Place, Ilchester, Texas, 6990", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9539ec39f667a4a1f9", | |
| "index": 1627, | |
| "balance": "$3,409.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Staci Hogan", | |
| "company": "ANDRYX", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 458-2518", | |
| "address": "940 Dunne Place, Coral, Marshall Islands, 8630", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95666bd3d31ba68273", | |
| "index": 1628, | |
| "balance": "$3,881.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Evans Bass", | |
| "company": "SILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 454-3258", | |
| "address": "720 Mersereau Court, Valle, Maine, 1481", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9552d39d81d26d7e2d", | |
| "index": 1629, | |
| "balance": "$2,124.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cobb Kent", | |
| "company": "XYLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 464-2972", | |
| "address": "990 Thomas Street, Jacksonwald, Colorado, 8177", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95341f183b927e6385", | |
| "index": 1630, | |
| "balance": "$2,829.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Odessa Knowles", | |
| "company": "ORBEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 487-2761", | |
| "address": "810 Lenox Road, Barrelville, New Mexico, 9761", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954451ed7cea56d869", | |
| "index": 1631, | |
| "balance": "$3,246.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cherie Potts", | |
| "company": "ISOLOGICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 540-3369", | |
| "address": "757 Irvington Place, Brandywine, Florida, 2855", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f30c5f672a7911b4", | |
| "index": 1632, | |
| "balance": "$3,535.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Powers Sims", | |
| "company": "SUREPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 597-2022", | |
| "address": "715 Burnett Street, Fairview, Michigan, 5680", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95976e0dc4c1fd4129", | |
| "index": 1633, | |
| "balance": "$2,894.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cervantes Hutchinson", | |
| "company": "RECRISYS", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 421-2101", | |
| "address": "469 Richardson Street, Wanship, Delaware, 5255", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f0e52fade794f295", | |
| "index": 1634, | |
| "balance": "$2,302.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kim Estrada", | |
| "company": "ENTALITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 415-2727", | |
| "address": "804 Debevoise Street, Dundee, Virgin Islands, 9177", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958c7a63c50b7e1b81", | |
| "index": 1635, | |
| "balance": "$3,260.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hendrix Gill", | |
| "company": "FROSNEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 433-3107", | |
| "address": "790 Quincy Street, Edmund, West Virginia, 4957", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9509e2de8276426f20", | |
| "index": 1636, | |
| "balance": "$2,345.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gomez Moody", | |
| "company": "QIAO", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 406-3703", | |
| "address": "734 Keap Street, Brecon, Alabama, 8108", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fc21e06377b4ed74", | |
| "index": 1637, | |
| "balance": "$2,015.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ernestine Haley", | |
| "company": "CENTREE", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 431-2244", | |
| "address": "513 Krier Place, Snelling, North Carolina, 4742", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a574f987033a910d", | |
| "index": 1638, | |
| "balance": "$3,889.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Williamson Ortega", | |
| "company": "CAPSCREEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 474-3901", | |
| "address": "899 Gates Avenue, Salvo, Indiana, 6778", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954756ec336da5dce9", | |
| "index": 1639, | |
| "balance": "$2,634.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anastasia Albert", | |
| "company": "FLUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 583-3894", | |
| "address": "889 Corbin Place, Robinson, Missouri, 9555", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959071bc347be21cbd", | |
| "index": 1640, | |
| "balance": "$3,341.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harper Franco", | |
| "company": "IPLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 550-2930", | |
| "address": "217 Senator Street, Temperanceville, Arizona, 9980", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d31c0adcf91bdbc3", | |
| "index": 1641, | |
| "balance": "$1,599.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Parks Lott", | |
| "company": "NETPLODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 420-2950", | |
| "address": "182 Howard Avenue, Lacomb, Massachusetts, 9107", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9570373e66310f7224", | |
| "index": 1642, | |
| "balance": "$3,878.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Luann Valentine", | |
| "company": "IRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 483-3346", | |
| "address": "721 Evans Street, Hollins, New Jersey, 1898", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952dbf5da649850eab", | |
| "index": 1643, | |
| "balance": "$2,035.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rose Holman", | |
| "company": "OPTICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 436-2435", | |
| "address": "319 Lacon Court, Chumuckla, Pennsylvania, 1275", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95262ebdf330285d8e", | |
| "index": 1644, | |
| "balance": "$2,832.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patricia Chambers", | |
| "company": "BUZZWORKS", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 475-2002", | |
| "address": "809 Vine Street, Geyserville, Wisconsin, 5930", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959f9394ca5b9cd981", | |
| "index": 1645, | |
| "balance": "$3,957.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Calderon Bates", | |
| "company": "NURPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 473-3548", | |
| "address": "392 Emmons Avenue, Smeltertown, Alaska, 9573", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95befd7c01758f0a36", | |
| "index": 1646, | |
| "balance": "$2,663.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ferrell Osborn", | |
| "company": "CORECOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 476-3303", | |
| "address": "357 Crooke Avenue, Garberville, Vermont, 9337", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958b2340b970c4b031", | |
| "index": 1647, | |
| "balance": "$1,418.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccullough Larsen", | |
| "company": "ANIVET", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 555-3700", | |
| "address": "913 National Drive, Monument, Illinois, 1531", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9530bdfc33f487dd67", | |
| "index": 1648, | |
| "balance": "$3,085.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jaclyn Mathews", | |
| "company": "PYRAMI", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 536-3404", | |
| "address": "652 Perry Place, Dubois, Utah, 431", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d3935c9c57a40d5f", | |
| "index": 1649, | |
| "balance": "$2,700.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Abigail Holloway", | |
| "company": "JETSILK", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 526-2200", | |
| "address": "325 Hamilton Walk, Ogema, Connecticut, 7913", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fc565430af2ef3f1", | |
| "index": 1650, | |
| "balance": "$1,929.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christie Hartman", | |
| "company": "RAMJOB", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 427-2111", | |
| "address": "456 Vernon Avenue, Ada, Oregon, 6738", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95982c898ddf68d520", | |
| "index": 1651, | |
| "balance": "$3,043.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Owens Chan", | |
| "company": "BEZAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 503-2635", | |
| "address": "355 Underhill Avenue, Epworth, Federated States Of Micronesia, 6855", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f968c6f10d84b836", | |
| "index": 1652, | |
| "balance": "$1,659.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robles Mathis", | |
| "company": "GAPTEC", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 531-3409", | |
| "address": "372 Williams Place, Grahamtown, Kentucky, 5182", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f830b6ef90df8a60", | |
| "index": 1653, | |
| "balance": "$3,279.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harriet Woodward", | |
| "company": "ZORK", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 451-2612", | |
| "address": "397 Fay Court, Curtice, Puerto Rico, 753", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958b22b1f1efa2ab1f", | |
| "index": 1654, | |
| "balance": "$2,297.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Potts Rice", | |
| "company": "CUJO", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 404-3518", | |
| "address": "380 Sutter Avenue, Gwynn, Idaho, 6200", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535655c5f375ad4af", | |
| "index": 1655, | |
| "balance": "$2,028.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Armstrong Whitney", | |
| "company": "ECSTASIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 523-3211", | |
| "address": "647 Glendale Court, Alafaya, Nevada, 2429", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a26b364d192bcbdd", | |
| "index": 1656, | |
| "balance": "$3,891.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marisa Vaughan", | |
| "company": "QIMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 509-3578", | |
| "address": "618 Hawthorne Street, Belmont, South Carolina, 3971", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ffd935fb4b9f854c", | |
| "index": 1657, | |
| "balance": "$1,279.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anderson Duke", | |
| "company": "SOFTMICRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 599-3251", | |
| "address": "944 Kenmore Terrace, Nutrioso, Minnesota, 8532", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a6a89044cb8e3f31", | |
| "index": 1658, | |
| "balance": "$3,402.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elise Fowler", | |
| "company": "VISUALIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 428-3754", | |
| "address": "257 Amherst Street, Witmer, North Dakota, 1187", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954620d3cebe23d5fb", | |
| "index": 1659, | |
| "balance": "$3,722.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bennett Rhodes", | |
| "company": "ZAGGLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 449-2010", | |
| "address": "241 Beverly Road, Motley, District Of Columbia, 4259", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ce07e6a6a39a7d26", | |
| "index": 1660, | |
| "balance": "$1,605.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walters Todd", | |
| "company": "CODACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 458-2165", | |
| "address": "981 Herbert Street, Thynedale, New York, 2176", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951a29c9cb46a6ecca", | |
| "index": 1661, | |
| "balance": "$2,073.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeri Frederick", | |
| "company": "TERSANKI", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 514-2488", | |
| "address": "279 Little Street, Roberts, Montana, 7290", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d8eed0613c37f45", | |
| "index": 1662, | |
| "balance": "$1,177.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marjorie Sanford", | |
| "company": "JIMBIES", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 527-2882", | |
| "address": "715 Verona Place, Centerville, Arkansas, 7643", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9585ef813e458f0d6e", | |
| "index": 1663, | |
| "balance": "$1,386.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Randolph Prince", | |
| "company": "WAAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 536-2277", | |
| "address": "986 Mayfair Drive, Lopezo, Kansas, 4891", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950fcfa130931fd9e8", | |
| "index": 1664, | |
| "balance": "$2,866.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hawkins Holland", | |
| "company": "FUTURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 527-3585", | |
| "address": "428 Dekoven Court, Islandia, Guam, 1301", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cd052b55dc40d048", | |
| "index": 1665, | |
| "balance": "$3,893.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roman Morrison", | |
| "company": "QNEKT", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 447-2640", | |
| "address": "200 Newport Street, Bodega, Rhode Island, 8680", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a0ac78b50304335e", | |
| "index": 1666, | |
| "balance": "$1,117.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lily Medina", | |
| "company": "BRAINCLIP", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 487-2065", | |
| "address": "601 Dakota Place, Watchtower, Palau, 8619", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957a8483be59595929", | |
| "index": 1667, | |
| "balance": "$1,155.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Waller Brady", | |
| "company": "INEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 414-3577", | |
| "address": "826 Malta Street, Maxville, Wyoming, 9194", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9583d937e10b257a6b", | |
| "index": 1668, | |
| "balance": "$2,964.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vasquez Vang", | |
| "company": "ISOSPHERE", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 473-3846", | |
| "address": "521 Rockwell Place, Ruckersville, Nebraska, 772", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950f7cacc6850c1df9", | |
| "index": 1669, | |
| "balance": "$2,919.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Susan Snow", | |
| "company": "DAIDO", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 487-2987", | |
| "address": "356 Court Street, Rodanthe, Northern Mariana Islands, 8571", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ba75e39a4a11a3c7", | |
| "index": 1670, | |
| "balance": "$1,793.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yvette Heath", | |
| "company": "SURELOGIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 469-3529", | |
| "address": "279 Granite Street, Rockhill, California, 9317", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95748b6b2ca80fc16d", | |
| "index": 1671, | |
| "balance": "$3,244.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stewart Britt", | |
| "company": "OHMNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 569-3823", | |
| "address": "228 Meserole Avenue, Freelandville, Louisiana, 7694", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95111f0314ca648a6c", | |
| "index": 1672, | |
| "balance": "$2,615.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fields Pitts", | |
| "company": "MULTIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 511-2377", | |
| "address": "422 Thames Street, Succasunna, Mississippi, 2286", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95abe860beb28d5e64", | |
| "index": 1673, | |
| "balance": "$2,118.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Judy Rasmussen", | |
| "company": "TECHMANIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (951) 406-3353", | |
| "address": "242 Lamont Court, Soham, Hawaii, 988", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958090592a7d240f6f", | |
| "index": 1674, | |
| "balance": "$1,118.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jody Hebert", | |
| "company": "ROOFORIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 552-2617", | |
| "address": "311 Bergen Court, Mahtowa, Washington, 9732", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fcf467565443a7aa", | |
| "index": 1675, | |
| "balance": "$2,146.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Antoinette Lewis", | |
| "company": "GOLISTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 499-3260", | |
| "address": "726 Imlay Street, Villarreal, American Samoa, 4273", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d759f6b340ad7c5e", | |
| "index": 1676, | |
| "balance": "$2,201.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Thornton Mcgee", | |
| "company": "PORTALINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 414-2595", | |
| "address": "228 Plaza Street, Bison, Maryland, 452", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9521ed8beb1d7eec69", | |
| "index": 1677, | |
| "balance": "$3,107.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ratliff Huff", | |
| "company": "REMOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 598-2227", | |
| "address": "703 Tennis Court, Kaka, Ohio, 8802", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bac46814365e5755", | |
| "index": 1678, | |
| "balance": "$2,898.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carol James", | |
| "company": "VORTEXACO", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 492-4000", | |
| "address": "904 Wyona Street, Hiko, Iowa, 7348", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952e98db58bba97a6c", | |
| "index": 1679, | |
| "balance": "$3,505.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alice Evans", | |
| "company": "PHUEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 401-2384", | |
| "address": "404 Crystal Street, Worton, Georgia, 4007", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff9c5ff1f322d669", | |
| "index": 1680, | |
| "balance": "$3,631.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mona Daniels", | |
| "company": "PORTALIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 573-3139", | |
| "address": "661 Kingsland Avenue, Brady, Tennessee, 7251", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a53fec1a7cb60911", | |
| "index": 1681, | |
| "balance": "$3,263.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Violet Jacobson", | |
| "company": "FLEXIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 477-3071", | |
| "address": "992 Metropolitan Avenue, Wacissa, Virginia, 5697", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950b8c704634ea5d2e", | |
| "index": 1682, | |
| "balance": "$2,291.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosa Harris", | |
| "company": "ZEAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 591-2453", | |
| "address": "347 River Street, Coloma, South Dakota, 5117", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95282822bda48b62dc", | |
| "index": 1683, | |
| "balance": "$1,009.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ginger Allen", | |
| "company": "CINCYR", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 431-2619", | |
| "address": "988 Dahill Road, Orin, Oklahoma, 1754", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95defded210f8e8c1b", | |
| "index": 1684, | |
| "balance": "$3,834.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reeves Griffith", | |
| "company": "ELENTRIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 582-3165", | |
| "address": "926 Kathleen Court, Salunga, Texas, 2742", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e71065dfe5baefde", | |
| "index": 1685, | |
| "balance": "$2,937.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lucia Dickerson", | |
| "company": "BEDLAM", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 480-3903", | |
| "address": "451 Greene Avenue, Shelby, Marshall Islands, 9034", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955a6566f99a3e168e", | |
| "index": 1686, | |
| "balance": "$1,135.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mclaughlin Fletcher", | |
| "company": "MAROPTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 586-2103", | |
| "address": "663 Jefferson Street, Loyalhanna, Maine, 1284", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957dcb016ae7b5a972", | |
| "index": 1687, | |
| "balance": "$2,045.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Benton Sharpe", | |
| "company": "COMTEXT", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 418-2325", | |
| "address": "109 Jefferson Avenue, Wiscon, Colorado, 5663", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95591db545640a18bd", | |
| "index": 1688, | |
| "balance": "$1,446.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stafford Conway", | |
| "company": "ANACHO", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 514-3084", | |
| "address": "130 Willoughby Avenue, Magnolia, New Mexico, 8661", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950091b8eb6181c898", | |
| "index": 1689, | |
| "balance": "$2,944.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Decker Gentry", | |
| "company": "FUTURIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 472-3330", | |
| "address": "413 Hazel Court, Courtland, Florida, 7106", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bfe30a2d38ee74cd", | |
| "index": 1690, | |
| "balance": "$1,461.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kayla Bauer", | |
| "company": "ZYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 531-3531", | |
| "address": "386 Horace Court, Wintersburg, Michigan, 7925", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951b9610540cd2988b", | |
| "index": 1691, | |
| "balance": "$1,405.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reed Mccall", | |
| "company": "STUCCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 498-2007", | |
| "address": "728 Ebony Court, Robbins, Delaware, 5053", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ca35093072e50f5b", | |
| "index": 1692, | |
| "balance": "$1,457.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Frances Anthony", | |
| "company": "TROPOLIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 421-3188", | |
| "address": "846 Dahlgreen Place, Downsville, Virgin Islands, 1320", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951402479c79413b3c", | |
| "index": 1693, | |
| "balance": "$2,246.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Henry Wolf", | |
| "company": "TETRATREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 448-3210", | |
| "address": "627 Stryker Court, Fairmount, West Virginia, 6392", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956aa70d97708b974b", | |
| "index": 1694, | |
| "balance": "$1,123.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alfreda Herman", | |
| "company": "BULLJUICE", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 447-3479", | |
| "address": "372 Guider Avenue, Tolu, Alabama, 7814", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95460e0cb60daeb644", | |
| "index": 1695, | |
| "balance": "$2,894.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeannie Burks", | |
| "company": "AQUAMATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 489-3000", | |
| "address": "468 Stockton Street, Chesapeake, North Carolina, 7876", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9511d32df07447390e", | |
| "index": 1696, | |
| "balance": "$3,459.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marcia Gibbs", | |
| "company": "SENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 507-3238", | |
| "address": "655 Church Lane, Cuylerville, Indiana, 2637", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955306163960110a13", | |
| "index": 1697, | |
| "balance": "$2,057.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Claire Mcdowell", | |
| "company": "IMANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 516-3561", | |
| "address": "854 Brown Street, Felt, Missouri, 5787", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95607d74a6a6980b39", | |
| "index": 1698, | |
| "balance": "$2,559.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lara Lawrence", | |
| "company": "QUORDATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 575-3800", | |
| "address": "580 Macon Street, Longoria, Arizona, 361", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956c7fa72787c0933b", | |
| "index": 1699, | |
| "balance": "$3,236.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fleming Brewer", | |
| "company": "EMOLTRA", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 432-2631", | |
| "address": "979 Cyrus Avenue, Escondida, Massachusetts, 3492", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950e9e96b4041c5e6f", | |
| "index": 1700, | |
| "balance": "$2,079.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marisol Riggs", | |
| "company": "SYNKGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 429-2464", | |
| "address": "498 Montague Terrace, Floriston, New Jersey, 8017", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f5f0ed04d5d5859", | |
| "index": 1701, | |
| "balance": "$3,705.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beach Trevino", | |
| "company": "VELITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 403-2949", | |
| "address": "386 Berry Street, Vale, Pennsylvania, 6169", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9558e3841a64cca4f3", | |
| "index": 1702, | |
| "balance": "$2,703.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lucille Juarez", | |
| "company": "INVENTURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 518-2454", | |
| "address": "765 Maple Street, Highland, Wisconsin, 2414", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952e2281965ddc1f8b", | |
| "index": 1703, | |
| "balance": "$3,520.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terra Stuart", | |
| "company": "TELLIFLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 420-3115", | |
| "address": "924 Joralemon Street, Munjor, Alaska, 1976", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953b4ac14f01ecda9c", | |
| "index": 1704, | |
| "balance": "$1,039.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Valarie Lamb", | |
| "company": "ACRUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 491-2872", | |
| "address": "339 Caton Place, Cannondale, Vermont, 9917", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ed2dfed5d6e43286", | |
| "index": 1705, | |
| "balance": "$2,620.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Minerva Keller", | |
| "company": "AFFLUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 527-3827", | |
| "address": "560 Taylor Street, Nadine, Illinois, 7166", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9532095ea94a2d97cb", | |
| "index": 1706, | |
| "balance": "$3,840.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maynard Davenport", | |
| "company": "BUNGA", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 521-3924", | |
| "address": "554 Clarkson Avenue, Wanamie, Utah, 3191", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fd4e01925c5c8b27", | |
| "index": 1707, | |
| "balance": "$2,098.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Huber French", | |
| "company": "COREPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 503-3382", | |
| "address": "776 Berkeley Place, Allentown, Connecticut, 5931", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958dc1dc7f34e19fe2", | |
| "index": 1708, | |
| "balance": "$3,544.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joanna Baird", | |
| "company": "EARWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 415-3164", | |
| "address": "382 Aitken Place, Starks, Oregon, 8080", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958e7bb8f980808e2b", | |
| "index": 1709, | |
| "balance": "$1,526.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccoy Benton", | |
| "company": "APEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 511-3925", | |
| "address": "396 King Street, Clayville, Federated States Of Micronesia, 4787", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c13bfe4aee1c3b92", | |
| "index": 1710, | |
| "balance": "$2,910.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tammie Mendez", | |
| "company": "FOSSIEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (814) 479-3397", | |
| "address": "840 Locust Street, Wright, Kentucky, 4385", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a9c5e40386c6f600", | |
| "index": 1711, | |
| "balance": "$3,916.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Richards Willis", | |
| "company": "ZOINAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (935) 445-2710", | |
| "address": "344 Clifton Place, Matthews, Puerto Rico, 8785", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9550d9772f9407a31f", | |
| "index": 1712, | |
| "balance": "$2,207.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lawson Wilkinson", | |
| "company": "ONTALITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 484-2191", | |
| "address": "972 Chauncey Street, Lumberton, Idaho, 5886", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958a4bea486712bdfa", | |
| "index": 1713, | |
| "balance": "$3,933.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carson Mckay", | |
| "company": "OCEANICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 461-2955", | |
| "address": "684 Radde Place, Hickory, Nevada, 274", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c2e225def1a110b4", | |
| "index": 1714, | |
| "balance": "$1,911.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sallie Malone", | |
| "company": "NEPTIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 488-3116", | |
| "address": "839 Kingsway Place, Driftwood, South Carolina, 5193", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95897cdaafaccc2d22", | |
| "index": 1715, | |
| "balance": "$2,169.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Villarreal Pace", | |
| "company": "TALAE", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 504-2571", | |
| "address": "699 Navy Walk, Tonopah, Minnesota, 2825", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95912a5de307b62f5a", | |
| "index": 1716, | |
| "balance": "$3,527.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christy Slater", | |
| "company": "RUGSTARS", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 479-3580", | |
| "address": "621 Williamsburg Street, Levant, North Dakota, 3216", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e259fe575247a592", | |
| "index": 1717, | |
| "balance": "$2,446.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bradshaw Shields", | |
| "company": "EXOTERIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (871) 408-2416", | |
| "address": "340 Vandervoort Place, Bynum, District Of Columbia, 6182", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c687c86d6ad2fb11", | |
| "index": 1718, | |
| "balance": "$2,608.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sargent Clemons", | |
| "company": "AMTAS", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 460-2122", | |
| "address": "994 Lincoln Avenue, Gardiner, New York, 5399", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e577639c002fc1db", | |
| "index": 1719, | |
| "balance": "$3,624.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robinson Palmer", | |
| "company": "ZIGGLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 423-2622", | |
| "address": "770 Congress Street, Charco, Montana, 4041", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957cc8cb265e71a5c3", | |
| "index": 1720, | |
| "balance": "$3,566.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nancy Levy", | |
| "company": "QUIZMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 533-3321", | |
| "address": "285 Billings Place, Iola, Arkansas, 1159", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9581ae1f1671b4a3e1", | |
| "index": 1721, | |
| "balance": "$1,471.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "England George", | |
| "company": "MUSAPHICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 592-2583", | |
| "address": "586 Bowery Street, Cawood, Kansas, 5901", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b41aa212f68bed40", | |
| "index": 1722, | |
| "balance": "$3,562.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shields Mooney", | |
| "company": "CUIZINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 413-3777", | |
| "address": "711 Hegeman Avenue, Bendon, Guam, 7406", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b48a0ec31ef2ac45", | |
| "index": 1723, | |
| "balance": "$1,145.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gloria Joseph", | |
| "company": "MIRACULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 550-3636", | |
| "address": "416 Croton Loop, Chical, Rhode Island, 1130", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954643b76253af42f5", | |
| "index": 1724, | |
| "balance": "$1,671.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Louise Graham", | |
| "company": "QUONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 540-2407", | |
| "address": "357 Riverdale Avenue, Sugartown, Palau, 4171", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956cc275225fb430ce", | |
| "index": 1725, | |
| "balance": "$2,568.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Townsend Graves", | |
| "company": "EARTHWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 420-2252", | |
| "address": "297 Tudor Terrace, Dale, Wyoming, 3486", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958eefa51607dacecd", | |
| "index": 1726, | |
| "balance": "$2,935.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Craig Tran", | |
| "company": "OVATION", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 471-3347", | |
| "address": "590 Apollo Street, Brandermill, Nebraska, 1222", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95388ac9ba84ca3765", | |
| "index": 1727, | |
| "balance": "$1,503.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burt Baker", | |
| "company": "INDEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 504-2785", | |
| "address": "268 Jaffray Street, Unionville, Northern Mariana Islands, 6541", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e8951a5878537dc0", | |
| "index": 1728, | |
| "balance": "$3,039.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roberta Gutierrez", | |
| "company": "ASSITIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 530-3584", | |
| "address": "295 Logan Street, Waterford, California, 3970", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c8005b28fa9e7dde", | |
| "index": 1729, | |
| "balance": "$2,971.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cherry Mullins", | |
| "company": "ZINCA", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 473-2430", | |
| "address": "934 Cove Lane, Caspar, Louisiana, 1845", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eae8eb2e05c9ceb3", | |
| "index": 1730, | |
| "balance": "$3,874.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brady Woods", | |
| "company": "VERTON", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 479-3268", | |
| "address": "853 Maple Avenue, Camptown, Mississippi, 7361", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959e312ad3b74887cf", | |
| "index": 1731, | |
| "balance": "$2,432.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reyes Howard", | |
| "company": "PROVIDCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 589-2151", | |
| "address": "213 Eldert Lane, Shrewsbury, Hawaii, 4581", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9504ecddc74cafa98a", | |
| "index": 1732, | |
| "balance": "$2,070.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tameka Beasley", | |
| "company": "GENMY", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 481-3337", | |
| "address": "281 Barlow Drive, Yardville, Washington, 9222", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950984ba408bea2a22", | |
| "index": 1733, | |
| "balance": "$3,209.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brennan Gardner", | |
| "company": "GEOFORM", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 507-2876", | |
| "address": "121 Bushwick Place, Cumminsville, American Samoa, 1699", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528bd7e70342e27d0", | |
| "index": 1734, | |
| "balance": "$1,437.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blair Mccarty", | |
| "company": "TECHADE", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 505-2740", | |
| "address": "855 Seagate Avenue, Somerset, Maryland, 2213", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95be70a171a6fa0674", | |
| "index": 1735, | |
| "balance": "$1,046.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Betsy Mcconnell", | |
| "company": "TURNABOUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 446-3410", | |
| "address": "693 Matthews Court, Riviera, Ohio, 4485", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9546094757bdbf523a", | |
| "index": 1736, | |
| "balance": "$3,051.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Keith Schroeder", | |
| "company": "MAZUDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 590-2246", | |
| "address": "878 Troutman Street, Spelter, Iowa, 5992", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95faa15883adf63f5f", | |
| "index": 1737, | |
| "balance": "$1,618.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marguerite Miller", | |
| "company": "ACLIMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 461-3745", | |
| "address": "883 Devon Avenue, Ticonderoga, Georgia, 1844", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ffaa3ddc5434796", | |
| "index": 1738, | |
| "balance": "$2,539.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tina Rocha", | |
| "company": "PETIGEMS", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 579-3119", | |
| "address": "520 Fuller Place, Dodge, Tennessee, 8173", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cd4d16e53a122563", | |
| "index": 1739, | |
| "balance": "$1,881.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mullen Sanders", | |
| "company": "UBERLUX", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 575-3517", | |
| "address": "192 Rodney Street, Woodlake, Virginia, 4170", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9515dc722ae8f0684c", | |
| "index": 1740, | |
| "balance": "$2,790.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Crawford Baldwin", | |
| "company": "OVOLO", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 438-3079", | |
| "address": "906 Agate Court, Belfair, South Dakota, 5851", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f98dff73ee77204b", | |
| "index": 1741, | |
| "balance": "$1,683.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosalie Robbins", | |
| "company": "PROFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 530-2623", | |
| "address": "404 Bills Place, Colton, Oklahoma, 8587", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ee2f69a17033c8b9", | |
| "index": 1742, | |
| "balance": "$2,022.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Baird Chase", | |
| "company": "HYDROCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 434-2191", | |
| "address": "692 Lefferts Place, Crucible, Texas, 7257", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f24f82374102e658", | |
| "index": 1743, | |
| "balance": "$1,365.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Loretta Cruz", | |
| "company": "ESSENSIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 425-2987", | |
| "address": "458 Ide Court, Woodlands, Marshall Islands, 3632", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f0b1fc876137fce7", | |
| "index": 1744, | |
| "balance": "$1,772.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pope Pennington", | |
| "company": "ENDIPINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 421-2481", | |
| "address": "646 Oakland Place, Greenbush, Maine, 6127", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958f552a9e956ccd01", | |
| "index": 1745, | |
| "balance": "$2,802.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Powell Tillman", | |
| "company": "CYCLONICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 480-3935", | |
| "address": "486 Lorimer Street, Rosburg, Colorado, 8851", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958190ad2fefc569d3", | |
| "index": 1746, | |
| "balance": "$1,989.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hubbard Norris", | |
| "company": "MEDCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 477-2463", | |
| "address": "314 Stuart Street, Grapeview, New Mexico, 1105", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950638e24e9dc946a6", | |
| "index": 1747, | |
| "balance": "$1,688.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Noreen Sawyer", | |
| "company": "GEOLOGIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (850) 489-2179", | |
| "address": "363 Gerry Street, Boling, Florida, 9990", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95063cc3437447551f", | |
| "index": 1748, | |
| "balance": "$1,558.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Amie Powell", | |
| "company": "REPETWIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 430-3447", | |
| "address": "786 Jerome Street, Homeland, Michigan, 1877", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cfd2c341224d6554", | |
| "index": 1749, | |
| "balance": "$1,874.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marion Henderson", | |
| "company": "HANDSHAKE", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 531-2445", | |
| "address": "396 Cypress Avenue, Shasta, Delaware, 9141", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955d5d7d26b0e7129c", | |
| "index": 1750, | |
| "balance": "$2,613.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dennis Torres", | |
| "company": "XOGGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 467-3703", | |
| "address": "258 Highland Place, Marenisco, Virgin Islands, 2931", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9576a52d9e61a2e56a", | |
| "index": 1751, | |
| "balance": "$1,901.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dejesus Bell", | |
| "company": "BOVIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 555-2344", | |
| "address": "938 Wolcott Street, Chesterfield, West Virginia, 484", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95522096e2c9532faf", | |
| "index": 1752, | |
| "balance": "$3,696.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Edith Henson", | |
| "company": "OMNIGOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 510-3697", | |
| "address": "420 Elm Place, Leland, Alabama, 3283", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e43b5cbe7e960dfa", | |
| "index": 1753, | |
| "balance": "$3,189.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Candy Jennings", | |
| "company": "GOGOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (850) 429-3577", | |
| "address": "365 Gotham Avenue, Finderne, North Carolina, 143", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9585d9c86372ab4dd1", | |
| "index": 1754, | |
| "balance": "$1,366.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pittman Daugherty", | |
| "company": "FRANSCENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 519-3230", | |
| "address": "925 Farragut Place, Nicholson, Indiana, 7126", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e2c67349f05995d2", | |
| "index": 1755, | |
| "balance": "$1,290.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Schultz Everett", | |
| "company": "EXOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 501-3142", | |
| "address": "480 Quentin Road, Kenmar, Missouri, 1617", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a19ddd0bf6a642a", | |
| "index": 1756, | |
| "balance": "$2,883.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melva Solis", | |
| "company": "MAGNAFONE", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 466-2489", | |
| "address": "921 Stewart Street, Cartwright, Arizona, 6317", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b16be2e3418394a0", | |
| "index": 1757, | |
| "balance": "$2,551.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcbride Campbell", | |
| "company": "GORGANIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 524-2284", | |
| "address": "892 Stillwell Place, Waumandee, Massachusetts, 5596", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95729cbc636f17cc09", | |
| "index": 1758, | |
| "balance": "$3,631.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beasley Abbott", | |
| "company": "INSURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (851) 406-3095", | |
| "address": "734 Mill Road, Defiance, New Jersey, 6396", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95caf93163939bfb85", | |
| "index": 1759, | |
| "balance": "$3,835.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hudson Mercer", | |
| "company": "PEARLESEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 548-3512", | |
| "address": "864 Judge Street, Fillmore, Pennsylvania, 6905", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c2e14731b1c8454b", | |
| "index": 1760, | |
| "balance": "$2,421.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Boyer Melendez", | |
| "company": "EPLODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 454-3801", | |
| "address": "179 Varick Avenue, Eagletown, Wisconsin, 4384", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95628ff28958dafca8", | |
| "index": 1761, | |
| "balance": "$3,793.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tessa Brock", | |
| "company": "NEWCUBE", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 517-3212", | |
| "address": "898 Bradford Street, Hollymead, Alaska, 7758", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95585586c62cffc344", | |
| "index": 1762, | |
| "balance": "$3,247.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tamera Harrell", | |
| "company": "APPLIDECK", | |
| "email": "[email protected]", | |
| "phone": "+1 (987) 490-3978", | |
| "address": "915 Norwood Avenue, Dowling, Vermont, 686", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d91f25a2c1e854d6", | |
| "index": 1763, | |
| "balance": "$2,633.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terry Sweeney", | |
| "company": "KONGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 547-2789", | |
| "address": "554 Havens Place, Rew, Illinois, 8291", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f64355fb469cb4df", | |
| "index": 1764, | |
| "balance": "$1,920.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tanya Dickson", | |
| "company": "MARKETOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 551-3470", | |
| "address": "121 Irwin Street, Dunlo, Utah, 8960", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b8f103881f9f0a1a", | |
| "index": 1765, | |
| "balance": "$2,045.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ware Hester", | |
| "company": "FUELWORKS", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 565-3755", | |
| "address": "164 Homecrest Court, Aguila, Connecticut, 2377", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c19a729b56275e4a", | |
| "index": 1766, | |
| "balance": "$3,731.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carissa Alexander", | |
| "company": "PLEXIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 487-2446", | |
| "address": "828 President Street, Thermal, Oregon, 2872", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95829b6f072661cf61", | |
| "index": 1767, | |
| "balance": "$2,513.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roxanne Parker", | |
| "company": "FLUMBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 513-2230", | |
| "address": "565 Folsom Place, Wescosville, Federated States Of Micronesia, 9455", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aab0abd668921202", | |
| "index": 1768, | |
| "balance": "$1,798.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aguilar Leonard", | |
| "company": "PHORMULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 571-2573", | |
| "address": "722 Pine Street, Steinhatchee, Kentucky, 4456", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ef781345417c56ba", | |
| "index": 1769, | |
| "balance": "$1,256.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Zamora Fisher", | |
| "company": "CRUSTATIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 506-2732", | |
| "address": "374 Bergen Avenue, Yonah, Puerto Rico, 1543", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d79fd32a5e9fe9f3", | |
| "index": 1770, | |
| "balance": "$1,673.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sheryl Gilmore", | |
| "company": "COMVEYOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (843) 531-3640", | |
| "address": "443 Gaylord Drive, Urie, Idaho, 770", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95022144acba1a226c", | |
| "index": 1771, | |
| "balance": "$2,814.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eliza Stokes", | |
| "company": "STREZZO", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 406-3692", | |
| "address": "903 Luquer Street, Frizzleburg, Nevada, 1729", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bf2adfb0f439da7e", | |
| "index": 1772, | |
| "balance": "$3,052.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bauer Lancaster", | |
| "company": "COMVEY", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 566-3722", | |
| "address": "369 Virginia Place, Foxworth, South Carolina, 9113", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9507e2a65175632f65", | |
| "index": 1773, | |
| "balance": "$2,507.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Britney Ingram", | |
| "company": "VIDTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 554-2033", | |
| "address": "554 Taaffe Place, Fowlerville, Minnesota, 8819", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff764e13a3ab8d74", | |
| "index": 1774, | |
| "balance": "$2,281.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Geraldine Haynes", | |
| "company": "RETRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 419-3892", | |
| "address": "393 Olive Street, Waterloo, North Dakota, 8961", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b863856797f9df9", | |
| "index": 1775, | |
| "balance": "$1,865.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maribel Manning", | |
| "company": "STOCKPOST", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 552-3368", | |
| "address": "909 Moore Street, Abiquiu, District Of Columbia, 3256", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d2472778a47af93e", | |
| "index": 1776, | |
| "balance": "$3,363.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Valdez Ramirez", | |
| "company": "FILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 587-2605", | |
| "address": "832 Hampton Place, Glidden, New York, 4390", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d82664fb0e6b2412", | |
| "index": 1777, | |
| "balance": "$1,126.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dickson Stevenson", | |
| "company": "BISBA", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 463-3952", | |
| "address": "106 Ridge Court, Rehrersburg, Montana, 8671", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953d8fd26b63366364", | |
| "index": 1778, | |
| "balance": "$1,586.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ewing Brown", | |
| "company": "LIMAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 596-3777", | |
| "address": "445 Borinquen Pl, Lowell, Arkansas, 7873", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e061ff8a17f9b59b", | |
| "index": 1779, | |
| "balance": "$2,146.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "June Mclaughlin", | |
| "company": "HAIRPORT", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 549-3562", | |
| "address": "915 Tampa Court, Century, Kansas, 6862", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9591cd51c723d9a337", | |
| "index": 1780, | |
| "balance": "$2,845.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Esther Barton", | |
| "company": "UTARIAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 550-3163", | |
| "address": "132 Dearborn Court, Freeburn, Guam, 3728", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dd0805f6163a411f", | |
| "index": 1781, | |
| "balance": "$2,919.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Antonia Green", | |
| "company": "HALAP", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 582-3173", | |
| "address": "717 Crosby Avenue, Ezel, Rhode Island, 8464", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9527f125ef56266861", | |
| "index": 1782, | |
| "balance": "$2,699.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Goodwin Moreno", | |
| "company": "NORALEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 598-2650", | |
| "address": "845 Gelston Avenue, Bedias, Palau, 3658", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9515b84c218b77d676", | |
| "index": 1783, | |
| "balance": "$2,036.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barbra Holcomb", | |
| "company": "GENEKOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 577-2802", | |
| "address": "279 Beaver Street, Chloride, Wyoming, 5035", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95528fea19d333f16d", | |
| "index": 1784, | |
| "balance": "$1,846.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Janis Garner", | |
| "company": "REALYSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 405-2179", | |
| "address": "650 Keen Court, Sabillasville, Nebraska, 8632", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e68d43fb4dd44736", | |
| "index": 1785, | |
| "balance": "$1,167.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ward Serrano", | |
| "company": "SUREMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 562-3747", | |
| "address": "592 Nassau Street, Englevale, Northern Mariana Islands, 6566", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953361549607d2ee60", | |
| "index": 1786, | |
| "balance": "$3,398.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shari Martin", | |
| "company": "SOLAREN", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 541-2706", | |
| "address": "983 Orange Street, Herbster, California, 3308", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fd9a0b472e65b45", | |
| "index": 1787, | |
| "balance": "$2,894.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Winters Chen", | |
| "company": "DEEPENDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 436-2090", | |
| "address": "112 Butler Street, Townsend, Louisiana, 8691", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9511b99325ef2a59b2", | |
| "index": 1788, | |
| "balance": "$3,057.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Young Holmes", | |
| "company": "KIDGREASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 540-3387", | |
| "address": "391 Creamer Street, Kilbourne, Mississippi, 5229", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b8178e9258a966b4", | |
| "index": 1789, | |
| "balance": "$3,748.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sanchez Simmons", | |
| "company": "CALCU", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 414-3631", | |
| "address": "416 Willow Street, Independence, Hawaii, 4485", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f0eeb5f4bead0fb", | |
| "index": 1790, | |
| "balance": "$1,030.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shepherd Cain", | |
| "company": "ACCUPHARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 511-2885", | |
| "address": "686 Harwood Place, Hessville, Washington, 5874", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ed13fc7d39ad1eb4", | |
| "index": 1791, | |
| "balance": "$1,578.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deana Church", | |
| "company": "MEDIOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 485-2798", | |
| "address": "946 Dikeman Street, Vicksburg, American Samoa, 8972", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a63ddf49010eb7e1", | |
| "index": 1792, | |
| "balance": "$3,315.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeanie Bennett", | |
| "company": "GEEKFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 492-2700", | |
| "address": "462 Story Court, Lowgap, Maryland, 5718", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9522d4e04a753c468a", | |
| "index": 1793, | |
| "balance": "$2,105.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lee Austin", | |
| "company": "HARMONEY", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 400-3270", | |
| "address": "247 Ridgewood Avenue, Catharine, Ohio, 1696", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eba0872555f5513e", | |
| "index": 1794, | |
| "balance": "$1,331.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Delacruz Chaney", | |
| "company": "ZAPHIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 581-3695", | |
| "address": "143 Woodruff Avenue, Castleton, Iowa, 1286", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9559fdd88c34d4e8c7", | |
| "index": 1795, | |
| "balance": "$2,164.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Charles Schneider", | |
| "company": "ZERBINA", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 520-3814", | |
| "address": "369 Box Street, Canoochee, Georgia, 7357", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95818b2fe4414dd838", | |
| "index": 1796, | |
| "balance": "$1,053.87", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oliver Miles", | |
| "company": "ASSURITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 499-2918", | |
| "address": "474 Bushwick Avenue, Mansfield, Tennessee, 9353", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ebdf13b3bbb2aa5b", | |
| "index": 1797, | |
| "balance": "$1,100.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Liz Giles", | |
| "company": "TERAPRENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 581-3082", | |
| "address": "535 Waldorf Court, Cataract, Virginia, 5655", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ccc698b0150d509e", | |
| "index": 1798, | |
| "balance": "$1,663.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pat Bush", | |
| "company": "ORBALIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 583-2593", | |
| "address": "441 Furman Avenue, Whitehaven, South Dakota, 191", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571a68b6f98395d22", | |
| "index": 1799, | |
| "balance": "$2,289.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deanna Camacho", | |
| "company": "PROWASTE", | |
| "email": "[email protected]", | |
| "phone": "+1 (962) 451-2335", | |
| "address": "609 Conklin Avenue, Aberdeen, Oklahoma, 9422", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e6caeb77dfbbce23", | |
| "index": 1800, | |
| "balance": "$1,560.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Darla Cervantes", | |
| "company": "ACRODANCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 404-3808", | |
| "address": "146 Hill Street, Delshire, Texas, 1856", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953b265ac39de292f0", | |
| "index": 1801, | |
| "balance": "$2,621.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jacquelyn Weiss", | |
| "company": "COMVEYER", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 533-3901", | |
| "address": "473 Newton Street, Southmont, Marshall Islands, 2200", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95321d8450ec920a8e", | |
| "index": 1802, | |
| "balance": "$3,500.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alissa Lynn", | |
| "company": "KINDALOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 403-3075", | |
| "address": "727 Clarendon Road, Callaghan, Maine, 2581", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c73174bddd706f78", | |
| "index": 1803, | |
| "balance": "$2,297.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Perkins Mendoza", | |
| "company": "EXTRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 467-2429", | |
| "address": "426 Guernsey Street, Dixonville, Colorado, 9457", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c926df18b044fa28", | |
| "index": 1804, | |
| "balance": "$3,797.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Grimes Sparks", | |
| "company": "GADTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 472-2236", | |
| "address": "422 Varick Street, Calverton, New Mexico, 173", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95332f910b3d7f14ce", | |
| "index": 1805, | |
| "balance": "$1,318.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yates Rojas", | |
| "company": "KNEEDLES", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 422-3846", | |
| "address": "348 Lynch Street, Morgandale, Florida, 6238", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fe5b1e2c40408a69", | |
| "index": 1806, | |
| "balance": "$2,526.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pauline Workman", | |
| "company": "NETILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 452-2239", | |
| "address": "968 Bay Street, Taycheedah, Michigan, 7929", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a1cbd5184b8c2746", | |
| "index": 1807, | |
| "balance": "$2,928.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sykes Velasquez", | |
| "company": "FITCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 403-2752", | |
| "address": "130 Chester Street, Allensworth, Delaware, 3667", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9597469e59de84ef67", | |
| "index": 1808, | |
| "balance": "$2,582.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Becky William", | |
| "company": "ECOLIGHT", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 448-2556", | |
| "address": "292 Glenwood Road, Collins, Virgin Islands, 7287", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95da4b6d0d43021fbf", | |
| "index": 1809, | |
| "balance": "$3,955.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beck Alvarado", | |
| "company": "TWIIST", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 590-2936", | |
| "address": "645 Lancaster Avenue, Fruitdale, West Virginia, 293", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a659a6d334135376", | |
| "index": 1810, | |
| "balance": "$1,525.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mandy Dudley", | |
| "company": "ZYTRAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 464-3925", | |
| "address": "633 Amity Street, Jacumba, Alabama, 3110", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95753d4979e9d6b5d4", | |
| "index": 1811, | |
| "balance": "$2,583.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elliott Shaffer", | |
| "company": "COMTRAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 525-3161", | |
| "address": "947 Post Court, Condon, North Carolina, 4847", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956b3b26d973cfba6c", | |
| "index": 1812, | |
| "balance": "$3,286.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Allen Yang", | |
| "company": "COASH", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 446-3282", | |
| "address": "454 Ross Street, Graball, Indiana, 8351", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950b17a25046e0fb45", | |
| "index": 1813, | |
| "balance": "$1,851.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Louella Faulkner", | |
| "company": "SPHERIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (883) 431-3803", | |
| "address": "396 Pershing Loop, Carrizo, Missouri, 8863", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9591e6256a70251587", | |
| "index": 1814, | |
| "balance": "$1,018.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Richmond Guerra", | |
| "company": "INTRAWEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 457-2403", | |
| "address": "974 Highland Boulevard, Homeworth, Arizona, 9429", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ab31fde1b282081", | |
| "index": 1815, | |
| "balance": "$1,115.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stacey Webster", | |
| "company": "ENERSAVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (817) 417-3919", | |
| "address": "371 Knickerbocker Avenue, Gadsden, Massachusetts, 7534", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f7ee6feca38528b0", | |
| "index": 1816, | |
| "balance": "$3,352.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Celeste Peck", | |
| "company": "MICROLUXE", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 513-3678", | |
| "address": "304 Waldane Court, Talpa, New Jersey, 291", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957b85da9532de9a65", | |
| "index": 1817, | |
| "balance": "$2,055.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Karyn Rush", | |
| "company": "RAMEON", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 484-3003", | |
| "address": "248 Poly Place, Jackpot, Pennsylvania, 8074", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95da50961177f96541", | |
| "index": 1818, | |
| "balance": "$3,528.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eunice Clements", | |
| "company": "RETROTEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 572-3452", | |
| "address": "249 Sandford Street, Kansas, Wisconsin, 5989", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bbc6468e05c880df", | |
| "index": 1819, | |
| "balance": "$1,900.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gillespie Hunter", | |
| "company": "EMPIRICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 503-3578", | |
| "address": "296 Green Street, Haring, Alaska, 2323", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9595cbf282a1e66baf", | |
| "index": 1820, | |
| "balance": "$1,929.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Florine Peterson", | |
| "company": "NAVIR", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 524-3574", | |
| "address": "837 Bartlett Place, Wawona, Vermont, 1155", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dbc008da3c8834a4", | |
| "index": 1821, | |
| "balance": "$1,351.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wendy Wagner", | |
| "company": "TRANSLINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 586-3493", | |
| "address": "461 Durland Place, Roderfield, Illinois, 6591", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528151f993f96d9d2", | |
| "index": 1822, | |
| "balance": "$1,828.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Montoya Chavez", | |
| "company": "EXTRAWEAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 497-3023", | |
| "address": "534 Joval Court, Martinsville, Utah, 9597", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ae781d0bf51892c3", | |
| "index": 1823, | |
| "balance": "$2,044.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mendez Love", | |
| "company": "ISOTRONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 427-2659", | |
| "address": "852 Grove Street, Dragoon, Connecticut, 4567", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952d02b2b1647d5091", | |
| "index": 1824, | |
| "balance": "$2,857.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nash Robles", | |
| "company": "WATERBABY", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 527-2386", | |
| "address": "310 Clinton Street, Hoehne, Oregon, 6433", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c34cca787b7fbec8", | |
| "index": 1825, | |
| "balance": "$2,146.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mae Hunt", | |
| "company": "QUANTALIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (859) 517-2911", | |
| "address": "536 Bryant Street, Lorraine, Federated States Of Micronesia, 253", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95696a6a112932bb34", | |
| "index": 1826, | |
| "balance": "$3,451.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Daniel Bowers", | |
| "company": "BRISTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 439-3195", | |
| "address": "863 Dictum Court, Frystown, Kentucky, 3314", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a20e12cbbec8294", | |
| "index": 1827, | |
| "balance": "$1,620.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marissa Cooley", | |
| "company": "BLURRYBUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 408-2093", | |
| "address": "746 Brighton Avenue, Marienthal, Puerto Rico, 7385", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b29acfe29564675b", | |
| "index": 1828, | |
| "balance": "$3,181.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Atkinson English", | |
| "company": "FUTURIZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 570-3553", | |
| "address": "520 Dunne Court, Healy, Idaho, 7469", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d37c2c39d32f4169", | |
| "index": 1829, | |
| "balance": "$3,386.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dona Buchanan", | |
| "company": "GEEKULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 545-3715", | |
| "address": "949 Wythe Place, Movico, Nevada, 3584", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9540aacc1ff506db58", | |
| "index": 1830, | |
| "balance": "$2,440.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelton Adkins", | |
| "company": "DOGNOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 491-2153", | |
| "address": "454 Oriental Boulevard, Hillsboro, South Carolina, 5069", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fd1bb63616280468", | |
| "index": 1831, | |
| "balance": "$2,964.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marcella Lucas", | |
| "company": "PYRAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 528-3651", | |
| "address": "480 Ralph Avenue, Klagetoh, Minnesota, 5469", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9541a567b1d2e02324", | |
| "index": 1832, | |
| "balance": "$2,474.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chandler Bishop", | |
| "company": "PHOTOBIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 405-2075", | |
| "address": "181 Forbell Street, Lawrence, North Dakota, 7874", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fcf8a3817e1ef1a", | |
| "index": 1833, | |
| "balance": "$3,244.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Savannah Rogers", | |
| "company": "TRIBALOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 469-2732", | |
| "address": "860 Desmond Court, Ellerslie, District Of Columbia, 829", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959d8c20b29b249a69", | |
| "index": 1834, | |
| "balance": "$1,400.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Delores Singleton", | |
| "company": "HIVEDOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (984) 595-3687", | |
| "address": "108 Flatlands Avenue, Chase, New York, 9014", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9543ccf9c1ff47c4f8", | |
| "index": 1835, | |
| "balance": "$2,059.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Greer Boyer", | |
| "company": "ZENCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 420-2711", | |
| "address": "791 Herkimer Street, Hiwasse, Montana, 8268", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a82fc3286ed59fb3", | |
| "index": 1836, | |
| "balance": "$1,987.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Melendez Beach", | |
| "company": "CALCULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (929) 491-3568", | |
| "address": "372 Hunts Lane, Onton, Arkansas, 3400", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b853a9f2a3ae887f", | |
| "index": 1837, | |
| "balance": "$3,310.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rowland Burns", | |
| "company": "EQUITOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (880) 584-3345", | |
| "address": "390 Brightwater Court, Beyerville, Kansas, 6970", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c17eca7d596d7d5a", | |
| "index": 1838, | |
| "balance": "$3,435.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cleveland Mann", | |
| "company": "DEMINIMUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 507-3272", | |
| "address": "411 Canal Avenue, Oberlin, Guam, 5451", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ae9d1596b245045", | |
| "index": 1839, | |
| "balance": "$1,987.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leola Barker", | |
| "company": "EXTRAGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 422-2002", | |
| "address": "181 Centre Street, Cutter, Rhode Island, 3106", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9584a5b0aaec681173", | |
| "index": 1840, | |
| "balance": "$2,004.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelby Hoover", | |
| "company": "ZILLACON", | |
| "email": "[email protected]", | |
| "phone": "+1 (886) 470-3964", | |
| "address": "547 Rochester Avenue, Beechmont, Palau, 6329", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c56e266f92d541c9", | |
| "index": 1841, | |
| "balance": "$2,790.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tia Mills", | |
| "company": "TALENDULA", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 418-3108", | |
| "address": "181 Greenpoint Avenue, Sunnyside, Wyoming, 105", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9594be82576025726d", | |
| "index": 1842, | |
| "balance": "$2,508.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Waters Contreras", | |
| "company": "STRALUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 495-3495", | |
| "address": "161 Franklin Street, Durham, Nebraska, 5071", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9589d5f0d2d7f5c864", | |
| "index": 1843, | |
| "balance": "$2,798.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dee Ward", | |
| "company": "GEEKY", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 581-2719", | |
| "address": "271 Conselyea Street, Williamson, Northern Mariana Islands, 7504", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b30fc2c951ed3cd0", | |
| "index": 1844, | |
| "balance": "$3,364.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Riddle Stevens", | |
| "company": "DREAMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 433-2520", | |
| "address": "588 Carlton Avenue, Layhill, California, 318", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bf8a2a326e0909a6", | |
| "index": 1845, | |
| "balance": "$2,451.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cameron Howell", | |
| "company": "HOMELUX", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 517-2922", | |
| "address": "910 Arkansas Drive, Bentley, Louisiana, 4555", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950801912495ae4641", | |
| "index": 1846, | |
| "balance": "$1,484.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eileen Lester", | |
| "company": "HOMETOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 594-3286", | |
| "address": "365 Richmond Street, Springhill, Mississippi, 5173", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9589a4d4641069ba90", | |
| "index": 1847, | |
| "balance": "$2,847.80", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lidia Gordon", | |
| "company": "BEDDER", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 411-3843", | |
| "address": "370 Hutchinson Court, Lindisfarne, Hawaii, 3830", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cd820ab5da8af6d5", | |
| "index": 1848, | |
| "balance": "$1,567.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hoover Cabrera", | |
| "company": "ERSUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 598-2939", | |
| "address": "563 John Street, Edinburg, Washington, 6712", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958310815cb765d6cb", | |
| "index": 1849, | |
| "balance": "$2,069.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Esperanza Mccray", | |
| "company": "EXOSPEED", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 592-3964", | |
| "address": "975 Alice Court, Blanco, American Samoa, 9381", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9534a97eaee7f4c695", | |
| "index": 1850, | |
| "balance": "$1,612.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Juanita Blackwell", | |
| "company": "FORTEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 505-2928", | |
| "address": "515 Prescott Place, Lemoyne, Maryland, 7054", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953df5fad4cff39421", | |
| "index": 1851, | |
| "balance": "$3,497.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hopkins Riley", | |
| "company": "ZOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 569-3785", | |
| "address": "121 Bancroft Place, Statenville, Ohio, 6392", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950385b65be6dcd37f", | |
| "index": 1852, | |
| "balance": "$1,233.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Whitehead Berry", | |
| "company": "ZENTHALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 420-2425", | |
| "address": "788 Osborn Street, Conway, Iowa, 183", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a19a48295f669ac8", | |
| "index": 1853, | |
| "balance": "$3,556.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Crane Fitzgerald", | |
| "company": "INTERLOO", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 483-2452", | |
| "address": "404 Vandalia Avenue, Fontanelle, Georgia, 5259", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959351e66ce863ac62", | |
| "index": 1854, | |
| "balance": "$2,819.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dora Hays", | |
| "company": "MEGALL", | |
| "email": "[email protected]", | |
| "phone": "+1 (938) 594-3235", | |
| "address": "319 Duryea Place, Stewart, Tennessee, 8697", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537d5505fa00875c1", | |
| "index": 1855, | |
| "balance": "$2,041.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jan Montoya", | |
| "company": "KYAGURU", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 448-2182", | |
| "address": "274 Richards Street, Volta, Virginia, 5782", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953f36e736ae3e9553", | |
| "index": 1856, | |
| "balance": "$2,432.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hardin Davis", | |
| "company": "AQUAFIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 539-3631", | |
| "address": "986 Pineapple Street, Derwood, South Dakota, 2940", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95478e188f254e5fc2", | |
| "index": 1857, | |
| "balance": "$3,917.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jacobson Spence", | |
| "company": "OATFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 529-2045", | |
| "address": "901 Sackman Street, Wauhillau, Oklahoma, 6879", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9518abdbb7f120a263", | |
| "index": 1858, | |
| "balance": "$2,063.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Castaneda Cummings", | |
| "company": "TOYLETRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 455-2240", | |
| "address": "698 Miller Avenue, Frierson, Texas, 7938", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bfc22d066b8b1bf7", | |
| "index": 1859, | |
| "balance": "$1,222.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Odonnell Rollins", | |
| "company": "INCUBUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 505-3053", | |
| "address": "671 George Street, Boyd, Marshall Islands, 4847", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9554d5c1eebf009e5a", | |
| "index": 1860, | |
| "balance": "$3,386.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Denise Cook", | |
| "company": "VALREDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 575-3264", | |
| "address": "736 Lombardy Street, Cherokee, Maine, 2490", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9564ecd35892917dbe", | |
| "index": 1861, | |
| "balance": "$1,961.85", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eve Jarvis", | |
| "company": "GEEKMOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (928) 465-3925", | |
| "address": "481 Times Placez, Holtville, Colorado, 5964", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e0b80a2fccf3d6e6", | |
| "index": 1862, | |
| "balance": "$1,721.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angelica Rodgers", | |
| "company": "SUNCLIPSE", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 524-2202", | |
| "address": "417 Perry Terrace, Freetown, New Mexico, 9768", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95678d488e59f4a1fe", | |
| "index": 1863, | |
| "balance": "$2,791.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tara Lang", | |
| "company": "JUMPSTACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 524-3461", | |
| "address": "855 Dorchester Road, Calpine, Florida, 2305", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9580cffad66ff7d9e7", | |
| "index": 1864, | |
| "balance": "$1,790.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patrick Battle", | |
| "company": "ZENOLUX", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 548-2486", | |
| "address": "492 Nolans Lane, Celeryville, Michigan, 5166", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eee3b4e0c377e446", | |
| "index": 1865, | |
| "balance": "$2,634.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hernandez Gates", | |
| "company": "MEDIFAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (842) 561-3374", | |
| "address": "469 Bogart Street, Norwood, Delaware, 3048", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956a69c06f3aa663a8", | |
| "index": 1866, | |
| "balance": "$1,435.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Livingston Wynn", | |
| "company": "BARKARAMA", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 554-3363", | |
| "address": "656 Hall Street, Takilma, Virgin Islands, 1996", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a210406b2636447", | |
| "index": 1867, | |
| "balance": "$1,016.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tracy Wilkins", | |
| "company": "ECLIPSENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 500-3919", | |
| "address": "463 Ditmas Avenue, Choctaw, West Virginia, 1953", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956dab046fbca5bc3e", | |
| "index": 1868, | |
| "balance": "$1,626.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Greta Snider", | |
| "company": "ACCUFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 546-2164", | |
| "address": "698 Ferry Place, Bartley, Alabama, 5222", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d44dc03524c1c3e4", | |
| "index": 1869, | |
| "balance": "$3,764.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nguyen Barry", | |
| "company": "EVIDENDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 578-3666", | |
| "address": "756 Hanover Place, Sanborn, North Carolina, 5059", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bf300cf30920db7c", | |
| "index": 1870, | |
| "balance": "$1,214.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leona Fuentes", | |
| "company": "ANIXANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 413-2455", | |
| "address": "172 Rogers Avenue, Barstow, Indiana, 3087", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e86c66e731c90917", | |
| "index": 1871, | |
| "balance": "$1,048.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mitchell Hamilton", | |
| "company": "HINWAY", | |
| "email": "[email protected]", | |
| "phone": "+1 (821) 482-2316", | |
| "address": "890 Miller Place, Hilltop, Missouri, 7506", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959df86490dba7a38d", | |
| "index": 1872, | |
| "balance": "$1,231.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terrie Norton", | |
| "company": "ECRATER", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 584-2427", | |
| "address": "453 Everett Avenue, Waterview, Arizona, 8059", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95140729f0212f0ba8", | |
| "index": 1873, | |
| "balance": "$3,762.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flora Carver", | |
| "company": "GEOSTELE", | |
| "email": "[email protected]", | |
| "phone": "+1 (984) 590-2399", | |
| "address": "786 Scott Avenue, Goochland, Massachusetts, 8109", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950e9327b59c44e697", | |
| "index": 1874, | |
| "balance": "$2,684.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kimberley Carey", | |
| "company": "PASTURIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 600-2629", | |
| "address": "138 Oxford Walk, Kent, New Jersey, 9857", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d55209415dd55f95", | |
| "index": 1875, | |
| "balance": "$2,965.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carroll Atkinson", | |
| "company": "VIRVA", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 488-2768", | |
| "address": "209 Gatling Place, Morningside, Pennsylvania, 1217", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c4db6b34154cbf49", | |
| "index": 1876, | |
| "balance": "$1,558.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorrie Hodge", | |
| "company": "HOTCAKES", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 421-3152", | |
| "address": "152 Kermit Place, Jardine, Wisconsin, 1709", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950b203320b9c9ceac", | |
| "index": 1877, | |
| "balance": "$2,115.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jacobs Barnes", | |
| "company": "SOPRANO", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 449-2030", | |
| "address": "178 Ludlam Place, Chamizal, Alaska, 477", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95358a3f80eb361c82", | |
| "index": 1878, | |
| "balance": "$1,627.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Luna Wilder", | |
| "company": "MANTRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 542-2694", | |
| "address": "290 Hendrickson Place, Bennett, Vermont, 9350", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953f9c3fed0fa0b850", | |
| "index": 1879, | |
| "balance": "$1,054.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barnett Ewing", | |
| "company": "BOILICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 599-3300", | |
| "address": "584 Wogan Terrace, Neibert, Illinois, 3217", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952579c224b42294ce", | |
| "index": 1880, | |
| "balance": "$2,498.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lenore Meyer", | |
| "company": "MENBRAIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 488-2578", | |
| "address": "749 Montauk Court, Coinjock, Utah, 6037", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b5cd9dcb9fb46836", | |
| "index": 1881, | |
| "balance": "$1,769.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kennedy Petersen", | |
| "company": "COMSTAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (823) 594-3315", | |
| "address": "679 Strickland Avenue, Savage, Connecticut, 5981", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff2863c14ca336c3", | |
| "index": 1882, | |
| "balance": "$3,356.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kelly Garrison", | |
| "company": "ENOMEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 472-3530", | |
| "address": "944 Bokee Court, Kylertown, Oregon, 8906", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9516d1d33a284812e9", | |
| "index": 1883, | |
| "balance": "$3,353.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kathrine Hill", | |
| "company": "ANOCHA", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 406-3515", | |
| "address": "511 Otsego Street, Nipinnawasee, Federated States Of Micronesia, 1167", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954c19b1efe2355d2c", | |
| "index": 1884, | |
| "balance": "$3,734.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angelia Montgomery", | |
| "company": "CINESANCT", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 551-3733", | |
| "address": "935 Cass Place, Belgreen, Kentucky, 5424", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955b267e839bcca33f", | |
| "index": 1885, | |
| "balance": "$2,732.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carter Stout", | |
| "company": "MEDESIGN", | |
| "email": "[email protected]", | |
| "phone": "+1 (976) 535-2318", | |
| "address": "508 Reeve Place, Allison, Puerto Rico, 2985", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff04602832dca298", | |
| "index": 1886, | |
| "balance": "$3,657.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bertie Cunningham", | |
| "company": "SINGAVERA", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 455-2245", | |
| "address": "784 Midwood Street, Rowe, Idaho, 6259", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dd5217d5f772c352", | |
| "index": 1887, | |
| "balance": "$1,578.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mamie Bray", | |
| "company": "ARCTIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (868) 424-2746", | |
| "address": "143 Monument Walk, Kula, Nevada, 1176", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b3a7621609b9f206", | |
| "index": 1888, | |
| "balance": "$3,443.78", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dunn Ballard", | |
| "company": "WEBIOTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 525-2796", | |
| "address": "365 Noll Street, Summertown, South Carolina, 4212", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9587604164e6d99577", | |
| "index": 1889, | |
| "balance": "$1,888.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hansen Lowe", | |
| "company": "ZOLAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 441-3979", | |
| "address": "387 Doughty Street, Lookingglass, Minnesota, 7928", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c2bf1472d81a148d", | |
| "index": 1890, | |
| "balance": "$1,038.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hodges Pate", | |
| "company": "ZOGAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 457-3045", | |
| "address": "472 Wyckoff Street, Deputy, North Dakota, 3507", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bcfedde99afddf30", | |
| "index": 1891, | |
| "balance": "$1,455.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Monroe Terry", | |
| "company": "RADIANTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 535-2383", | |
| "address": "733 Windsor Place, Trinway, District Of Columbia, 3533", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e31e870166fd6632", | |
| "index": 1892, | |
| "balance": "$3,887.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Solomon Newman", | |
| "company": "ORGANICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (941) 587-3143", | |
| "address": "817 Hinsdale Street, Skyland, New York, 389", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9582c6482e165c57fc", | |
| "index": 1893, | |
| "balance": "$1,203.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sandra Payne", | |
| "company": "GEEKETRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (961) 483-3120", | |
| "address": "457 Lake Street, Nicut, Montana, 2607", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957fbe86b0c46078a7", | |
| "index": 1894, | |
| "balance": "$3,456.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Austin Doyle", | |
| "company": "EWEVILLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 448-2524", | |
| "address": "714 Leonard Street, Norvelt, Arkansas, 7820", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951692585cac39de58", | |
| "index": 1895, | |
| "balance": "$2,803.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maldonado Rivera", | |
| "company": "FREAKIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 459-2230", | |
| "address": "411 Ivan Court, Tedrow, Kansas, 6187", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9567c1f3fdff2bf489", | |
| "index": 1896, | |
| "balance": "$3,021.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carver Klein", | |
| "company": "ACCIDENCY", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 569-2162", | |
| "address": "805 Pierrepont Place, Neahkahnie, Guam, 8660", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950770cea4e797cec6", | |
| "index": 1897, | |
| "balance": "$2,395.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Amy Hickman", | |
| "company": "GOKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 496-3230", | |
| "address": "715 Bragg Court, Dexter, Rhode Island, 6074", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a6f1619b464cea9", | |
| "index": 1898, | |
| "balance": "$2,257.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holcomb Waters", | |
| "company": "PODUNK", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 542-2713", | |
| "address": "289 Grace Court, Leola, Palau, 4584", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95210cef14ae008bb5", | |
| "index": 1899, | |
| "balance": "$1,460.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bolton Barrera", | |
| "company": "PIVITOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 535-3922", | |
| "address": "883 Crescent Street, Fresno, Wyoming, 7643", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95734a4825c586ef76", | |
| "index": 1900, | |
| "balance": "$2,362.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Everett Chang", | |
| "company": "ZAJ", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 417-2327", | |
| "address": "894 Harrison Avenue, Wolcott, Nebraska, 6893", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959c1fad3daf3aa0af", | |
| "index": 1901, | |
| "balance": "$1,166.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leah Moses", | |
| "company": "ZILLADYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 577-3212", | |
| "address": "411 Bay Avenue, Jeff, Northern Mariana Islands, 9744", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9566800c3b51335ce0", | |
| "index": 1902, | |
| "balance": "$2,551.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Schroeder Valdez", | |
| "company": "LETPRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 568-2499", | |
| "address": "818 Montague Street, Greenfields, California, 1855", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95abd47e5d0a9c2b68", | |
| "index": 1903, | |
| "balance": "$1,977.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Consuelo Wolfe", | |
| "company": "TRASOLA", | |
| "email": "[email protected]", | |
| "phone": "+1 (862) 530-2937", | |
| "address": "432 Williams Court, Trona, Louisiana, 8460", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b69fee49752f2663", | |
| "index": 1904, | |
| "balance": "$3,054.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cathleen Griffin", | |
| "company": "QUARMONY", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 441-3359", | |
| "address": "870 Opal Court, Cliff, Mississippi, 4485", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955c327669dd322e77", | |
| "index": 1905, | |
| "balance": "$2,462.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wolfe Bridges", | |
| "company": "STEELTAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 573-3406", | |
| "address": "400 Colonial Court, Suitland, Hawaii, 5265", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957b5e62eb06485fec", | |
| "index": 1906, | |
| "balance": "$3,310.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Benson Francis", | |
| "company": "MUSANPOLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 590-2623", | |
| "address": "895 Visitation Place, Rosine, Washington, 2677", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d140b2f35a91f38d", | |
| "index": 1907, | |
| "balance": "$3,369.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "White Curtis", | |
| "company": "ZILLATIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 566-2620", | |
| "address": "487 Farragut Road, Fivepointville, American Samoa, 1169", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95145f6b0b1908a277", | |
| "index": 1908, | |
| "balance": "$3,987.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Earnestine Delaney", | |
| "company": "BLEEKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 412-2906", | |
| "address": "431 Gardner Avenue, Marshall, Maryland, 4100", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c5c5a04fef617bd5", | |
| "index": 1909, | |
| "balance": "$2,040.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Perez Mclean", | |
| "company": "PORTICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 541-2816", | |
| "address": "853 Freeman Street, Silkworth, Ohio, 4462", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9593cd03ab010145ca", | |
| "index": 1910, | |
| "balance": "$2,792.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patty Owens", | |
| "company": "EXPOSA", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 548-2963", | |
| "address": "550 Exeter Street, Macdona, Iowa, 4099", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951dfd091d79fb16f1", | |
| "index": 1911, | |
| "balance": "$1,027.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gonzales Reid", | |
| "company": "COFINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 456-3546", | |
| "address": "160 Forest Place, Corinne, Georgia, 6175", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959b45292e52e4f862", | |
| "index": 1912, | |
| "balance": "$1,538.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hewitt Marks", | |
| "company": "ZIZZLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 571-2199", | |
| "address": "774 Lefferts Avenue, Bawcomville, Tennessee, 6590", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9591b4675a2d49016e", | |
| "index": 1913, | |
| "balance": "$1,292.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sawyer Joyner", | |
| "company": "GLOBOIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 511-2889", | |
| "address": "487 McKibbin Street, Virgie, Virginia, 4092", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959a21d09c5ad5517e", | |
| "index": 1914, | |
| "balance": "$2,460.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rodriguez Sullivan", | |
| "company": "ROCKYARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 546-2248", | |
| "address": "658 Monroe Street, Lindcove, South Dakota, 5223", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9568a280d1fe7ff953", | |
| "index": 1915, | |
| "balance": "$3,019.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Juarez Collins", | |
| "company": "XTH", | |
| "email": "[email protected]", | |
| "phone": "+1 (948) 407-2881", | |
| "address": "912 Rugby Road, Bloomington, Oklahoma, 2671", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9550822cc43b12e9bf", | |
| "index": 1916, | |
| "balance": "$2,308.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Phelps Decker", | |
| "company": "ISOSWITCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 596-3481", | |
| "address": "356 Langham Street, Brooktrails, Texas, 6716", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ff6e5854b159cd71", | |
| "index": 1917, | |
| "balance": "$1,123.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gena Branch", | |
| "company": "SKYPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 588-3969", | |
| "address": "464 Euclid Avenue, Manitou, Marshall Islands, 5137", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95af6142685d6b6699", | |
| "index": 1918, | |
| "balance": "$2,618.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Key Ayala", | |
| "company": "RODEOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 494-2940", | |
| "address": "823 Dewey Place, Ripley, Maine, 4031", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951035e805eab2cb91", | |
| "index": 1919, | |
| "balance": "$3,271.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sweeney Horne", | |
| "company": "SENMEI", | |
| "email": "[email protected]", | |
| "phone": "+1 (982) 449-2331", | |
| "address": "525 Branton Street, Crown, Colorado, 1460", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95163fbacd72aef5ae", | |
| "index": 1920, | |
| "balance": "$1,715.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Goodman Waller", | |
| "company": "MALATHION", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 484-2766", | |
| "address": "102 Adelphi Street, Itmann, New Mexico, 2468", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956723ab5c6c047803", | |
| "index": 1921, | |
| "balance": "$3,554.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Imelda Kane", | |
| "company": "ENERFORCE", | |
| "email": "[email protected]", | |
| "phone": "+1 (804) 532-2000", | |
| "address": "776 Dennett Place, Moscow, Florida, 3585", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e8fe4dfcb526a32f", | |
| "index": 1922, | |
| "balance": "$3,740.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Maddox Calhoun", | |
| "company": "VELOS", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 599-2212", | |
| "address": "802 Knight Court, Laurelton, Michigan, 6329", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bd8537a3b166f465", | |
| "index": 1923, | |
| "balance": "$3,247.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sutton Hampton", | |
| "company": "NETBOOK", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 568-2910", | |
| "address": "358 Berriman Street, Shindler, Delaware, 9194", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955d993e3812e8c017", | |
| "index": 1924, | |
| "balance": "$2,413.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terri Hendrix", | |
| "company": "STRALOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 549-2173", | |
| "address": "864 Melba Court, Hampstead, Virgin Islands, 2780", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95561c05e52086b926", | |
| "index": 1925, | |
| "balance": "$1,566.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Park Long", | |
| "company": "PLUTORQUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 409-2840", | |
| "address": "523 Knapp Street, Barronett, West Virginia, 2446", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957e2a3aa5a3bb3503", | |
| "index": 1926, | |
| "balance": "$1,402.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nichole Page", | |
| "company": "INTRADISK", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 539-2803", | |
| "address": "668 Garden Street, Wheatfields, Alabama, 5056", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9584005298c08eb517", | |
| "index": 1927, | |
| "balance": "$2,665.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wanda Copeland", | |
| "company": "INJOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 472-2583", | |
| "address": "138 Lewis Place, Nile, North Carolina, 1746", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9523727d368e26ad1a", | |
| "index": 1928, | |
| "balance": "$3,227.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Evelyn Small", | |
| "company": "HOUSEDOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 400-3104", | |
| "address": "308 Shale Street, Henrietta, Indiana, 4214", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e683c13255448f89", | |
| "index": 1929, | |
| "balance": "$3,764.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Luisa Wall", | |
| "company": "PARCOE", | |
| "email": "[email protected]", | |
| "phone": "+1 (907) 490-3820", | |
| "address": "880 Bleecker Street, Limestone, Missouri, 8773", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952f2aee65ea09eb06", | |
| "index": 1930, | |
| "balance": "$3,074.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Roy Lindsay", | |
| "company": "BIOTICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 535-3325", | |
| "address": "869 Prince Street, Draper, Arizona, 6197", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b754108c382fd7bc", | |
| "index": 1931, | |
| "balance": "$2,175.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burns Witt", | |
| "company": "COMBOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 554-2065", | |
| "address": "782 Vanderbilt Street, Spokane, Massachusetts, 7229", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fa1a2b145229e6bb", | |
| "index": 1932, | |
| "balance": "$2,394.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Silvia Pena", | |
| "company": "CINASTER", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 436-3100", | |
| "address": "135 Beverley Road, Nanafalia, New Jersey, 1308", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e376626ca937462c", | |
| "index": 1933, | |
| "balance": "$2,815.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Short Morrow", | |
| "company": "SPORTAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 423-2101", | |
| "address": "387 Fleet Street, Bellfountain, Pennsylvania, 3022", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957a8b4225d431aea9", | |
| "index": 1934, | |
| "balance": "$3,884.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robertson Gregory", | |
| "company": "IZZBY", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 563-2068", | |
| "address": "347 Sutton Street, Umapine, Wisconsin, 9552", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571e0192a74fea77b", | |
| "index": 1935, | |
| "balance": "$3,040.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Nicholson Sears", | |
| "company": "DADABASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 589-2891", | |
| "address": "954 Concord Street, Trail, Alaska, 9891", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b3cb43e06fc74fbe", | |
| "index": 1936, | |
| "balance": "$2,757.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Victoria Cooper", | |
| "company": "PEARLESSA", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 598-3896", | |
| "address": "333 Rutland Road, Oceola, Vermont, 6602", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954354ddad189048b2", | |
| "index": 1937, | |
| "balance": "$1,431.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Martha Rowe", | |
| "company": "AUTOGRATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 445-3365", | |
| "address": "519 Clove Road, National, Illinois, 7381", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571caf92dc7dc0570", | |
| "index": 1938, | |
| "balance": "$3,282.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Osborn Norman", | |
| "company": "OLUCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 512-3645", | |
| "address": "753 Llama Court, Como, Utah, 2037", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e548cf3e0c57ad15", | |
| "index": 1939, | |
| "balance": "$3,073.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Beth Martinez", | |
| "company": "ACCUPRINT", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 576-2147", | |
| "address": "829 Pooles Lane, Websterville, Connecticut, 6042", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e8963886dacd1e8c", | |
| "index": 1940, | |
| "balance": "$1,747.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Juana Patterson", | |
| "company": "IMAGEFLOW", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 525-2730", | |
| "address": "585 Ford Street, Caroline, Oregon, 6604", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c839f614fe3add20", | |
| "index": 1941, | |
| "balance": "$1,782.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Travis Wood", | |
| "company": "PRIMORDIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 400-3957", | |
| "address": "307 Thatford Avenue, Belvoir, Federated States Of Micronesia, 711", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95de1eb1b1b5ba1ee5", | |
| "index": 1942, | |
| "balance": "$2,831.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mullins Bean", | |
| "company": "ETERNIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 572-2507", | |
| "address": "814 Grimes Road, Orason, Kentucky, 9053", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9503e40b030c980d94", | |
| "index": 1943, | |
| "balance": "$2,437.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynette Kidd", | |
| "company": "CEPRENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 435-2631", | |
| "address": "165 Balfour Place, Montura, Puerto Rico, 3884", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951187a45f121369fa", | |
| "index": 1944, | |
| "balance": "$3,554.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Geneva Boyle", | |
| "company": "RENOVIZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 458-2135", | |
| "address": "199 Moffat Street, Yukon, Idaho, 7330", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952f9fbe889682938b", | |
| "index": 1945, | |
| "balance": "$3,237.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Price Morris", | |
| "company": "COMVOY", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 518-2675", | |
| "address": "280 Harway Avenue, Blackgum, Nevada, 6115", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9577044f16ced647c1", | |
| "index": 1946, | |
| "balance": "$1,394.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carly Ortiz", | |
| "company": "EURON", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 574-2357", | |
| "address": "303 Pierrepont Street, Lavalette, South Carolina, 8414", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a8ecd5f8a274675", | |
| "index": 1947, | |
| "balance": "$2,455.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mack Wade", | |
| "company": "OZEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 576-3251", | |
| "address": "992 Willmohr Street, Knowlton, Minnesota, 170", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b503cee764c7652f", | |
| "index": 1948, | |
| "balance": "$1,847.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Grant Gamble", | |
| "company": "PRINTSPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 486-2677", | |
| "address": "821 Barbey Street, Deercroft, North Dakota, 5839", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b68eaf2a4f59f230", | |
| "index": 1949, | |
| "balance": "$2,970.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garner Daniel", | |
| "company": "COMVEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 484-2078", | |
| "address": "374 Degraw Street, Cecilia, District Of Columbia, 2229", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95edd7feede8065ca2", | |
| "index": 1950, | |
| "balance": "$1,778.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lela Crawford", | |
| "company": "DUFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 509-3910", | |
| "address": "716 Bay Parkway, Templeton, New York, 1382", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c8184a66d58f8234", | |
| "index": 1951, | |
| "balance": "$3,154.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gray Warner", | |
| "company": "OULU", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 441-3089", | |
| "address": "550 Louisa Street, Grazierville, Montana, 4824", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ec8123deb33c6454", | |
| "index": 1952, | |
| "balance": "$3,940.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morris Carr", | |
| "company": "AMRIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (895) 461-2481", | |
| "address": "801 Lawton Street, Enetai, Arkansas, 3040", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954759e4c3a0b0f24d", | |
| "index": 1953, | |
| "balance": "$2,597.40", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Daugherty Carroll", | |
| "company": "RODEOMAD", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 437-3529", | |
| "address": "847 Navy Street, Cobbtown, Kansas, 4320", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c807aa635a9a8105", | |
| "index": 1954, | |
| "balance": "$1,376.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Patton Phillips", | |
| "company": "RECOGNIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 598-2560", | |
| "address": "922 Adams Street, Helen, Guam, 1027", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95279793ff88c317a2", | |
| "index": 1955, | |
| "balance": "$1,678.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lizzie Hurst", | |
| "company": "DECRATEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 469-2019", | |
| "address": "221 Clifford Place, Watrous, Rhode Island, 975", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c2beebc43e6f716f", | |
| "index": 1956, | |
| "balance": "$3,137.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ivy Espinoza", | |
| "company": "CONFERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (897) 493-2638", | |
| "address": "986 Denton Place, Loveland, Palau, 8258", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9562d9765b06d12b69", | |
| "index": 1957, | |
| "balance": "$2,390.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kellie Benson", | |
| "company": "COMVERGES", | |
| "email": "[email protected]", | |
| "phone": "+1 (892) 501-3581", | |
| "address": "621 Noel Avenue, Riner, Wyoming, 1631", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9526c1b74a9a115aae", | |
| "index": 1958, | |
| "balance": "$3,200.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carole Skinner", | |
| "company": "FURNITECH", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 481-3364", | |
| "address": "108 Dunham Place, Lloyd, Nebraska, 3123", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d50fa5810944efe6", | |
| "index": 1959, | |
| "balance": "$2,877.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sears Leon", | |
| "company": "DUOFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 418-2875", | |
| "address": "685 Randolph Street, Newry, Northern Mariana Islands, 6176", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9592c20d2ec854e9fe", | |
| "index": 1960, | |
| "balance": "$3,590.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Paulette Wiggins", | |
| "company": "MAXEMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 519-3728", | |
| "address": "368 Grant Avenue, Hachita, California, 6888", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95339f9e81d9579037", | |
| "index": 1961, | |
| "balance": "$3,690.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christine Patel", | |
| "company": "CUBIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (836) 531-3581", | |
| "address": "500 Lester Court, Ventress, Louisiana, 7326", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95108195f546c552c9", | |
| "index": 1962, | |
| "balance": "$2,350.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Yvonne Drake", | |
| "company": "XIIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 529-3100", | |
| "address": "862 Pleasant Place, Hegins, Mississippi, 3738", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95112fbd909da95683", | |
| "index": 1963, | |
| "balance": "$3,380.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Foreman Glenn", | |
| "company": "PERMADYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 498-2724", | |
| "address": "204 Melrose Street, Barclay, Hawaii, 6210", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d011776694662b40", | |
| "index": 1964, | |
| "balance": "$1,998.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Penelope Ford", | |
| "company": "LEXICONDO", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 463-2984", | |
| "address": "109 Albemarle Terrace, Makena, Washington, 4075", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528bd32d143007e8a", | |
| "index": 1965, | |
| "balance": "$2,489.39", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dianna Charles", | |
| "company": "CONJURICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (930) 568-3778", | |
| "address": "641 Townsend Street, Turah, American Samoa, 8278", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b8d44030c223008f", | |
| "index": 1966, | |
| "balance": "$2,057.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Benita Hicks", | |
| "company": "INSECTUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 423-2069", | |
| "address": "628 Meeker Avenue, Logan, Maryland, 309", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f72ec5620ca3912f", | |
| "index": 1967, | |
| "balance": "$3,850.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rogers Newton", | |
| "company": "ZUVY", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 404-2355", | |
| "address": "711 Linden Street, Ola, Ohio, 2883", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e6c40e418b310e9b", | |
| "index": 1968, | |
| "balance": "$2,904.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Teresa Franks", | |
| "company": "XANIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 454-3896", | |
| "address": "525 Fleet Walk, Grill, Iowa, 7092", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953f58644e7cf38393", | |
| "index": 1969, | |
| "balance": "$2,372.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Simmons Berg", | |
| "company": "ZENTURY", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 549-3273", | |
| "address": "383 Division Place, Genoa, Georgia, 3730", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cc46ab64313e118a", | |
| "index": 1970, | |
| "balance": "$3,844.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Miranda Suarez", | |
| "company": "PARAGONIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 465-3764", | |
| "address": "234 Woods Place, Glenshaw, Tennessee, 1341", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95699c99524a49d194", | |
| "index": 1971, | |
| "balance": "$2,328.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Boyd Crane", | |
| "company": "ATOMICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 543-3100", | |
| "address": "713 Dwight Street, Belva, Virginia, 6988", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a23a92817f3b5659", | |
| "index": 1972, | |
| "balance": "$3,243.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Casey Byrd", | |
| "company": "POWERNET", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 463-2994", | |
| "address": "332 Macdougal Street, Fidelis, South Dakota, 5095", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95311987564240e958", | |
| "index": 1973, | |
| "balance": "$3,621.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lauren Oconnor", | |
| "company": "MEMORA", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 483-2349", | |
| "address": "141 Banner Avenue, Harborton, Oklahoma, 8594", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bd6174a30dc7d419", | |
| "index": 1974, | |
| "balance": "$1,025.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hallie Jefferson", | |
| "company": "SAVVY", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 506-3051", | |
| "address": "438 India Street, Sexton, Texas, 419", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fdb9e990d9b154e4", | |
| "index": 1975, | |
| "balance": "$3,792.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilda Reese", | |
| "company": "DANCERITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 548-2961", | |
| "address": "944 Downing Street, Garfield, Marshall Islands, 9505", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d486720d93dd0399", | |
| "index": 1976, | |
| "balance": "$1,692.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marina Wiley", | |
| "company": "SHEPARD", | |
| "email": "[email protected]", | |
| "phone": "+1 (942) 573-3907", | |
| "address": "940 Village Road, Cumberland, Maine, 780", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959aa010a6f26dc2c1", | |
| "index": 1977, | |
| "balance": "$2,790.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Arline Bradshaw", | |
| "company": "ENERSOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (999) 419-3532", | |
| "address": "775 Montana Place, Bartonsville, Colorado, 1385", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95896b6332ed864eef", | |
| "index": 1978, | |
| "balance": "$2,638.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lillie Vincent", | |
| "company": "NORSUL", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 569-3197", | |
| "address": "329 Division Avenue, Caln, New Mexico, 286", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fe87b27e33a41ebb", | |
| "index": 1979, | |
| "balance": "$3,403.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moss Short", | |
| "company": "BLUPLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 431-2710", | |
| "address": "366 Jerome Avenue, Glenbrook, Florida, 3075", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fc3c07ad5e0866a", | |
| "index": 1980, | |
| "balance": "$2,934.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lucile Carter", | |
| "company": "TALKALOT", | |
| "email": "[email protected]", | |
| "phone": "+1 (824) 541-2471", | |
| "address": "214 Stuyvesant Avenue, Tyhee, Michigan, 3955", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95023444a706f4d292", | |
| "index": 1981, | |
| "balance": "$3,545.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Howard Patton", | |
| "company": "KONNECT", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 472-3158", | |
| "address": "510 Powers Street, Haena, Delaware, 3601", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cf8e2939750a9cd0", | |
| "index": 1982, | |
| "balance": "$3,515.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gail Mckee", | |
| "company": "BUZZMAKER", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 498-2798", | |
| "address": "862 Sumner Place, Slovan, Virgin Islands, 3736", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95043d478490d58ba0", | |
| "index": 1983, | |
| "balance": "$3,408.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tommie Bender", | |
| "company": "UXMOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (848) 411-2983", | |
| "address": "319 Vanderveer Street, Kimmell, West Virginia, 9882", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cc930f794c2a2fd4", | |
| "index": 1984, | |
| "balance": "$2,711.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Althea Sampson", | |
| "company": "PYRAMIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 579-3207", | |
| "address": "421 Beekman Place, Odessa, Alabama, 9829", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ea4693ef6acdb074", | |
| "index": 1985, | |
| "balance": "$1,708.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pate Franklin", | |
| "company": "NEUROCELL", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 404-2327", | |
| "address": "177 Moultrie Street, Chicopee, North Carolina, 4200", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e110dec15512fea1", | |
| "index": 1986, | |
| "balance": "$1,874.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rich Kaufman", | |
| "company": "PANZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 512-2642", | |
| "address": "812 Ash Street, Disautel, Indiana, 1661", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e80d4b305958257a", | |
| "index": 1987, | |
| "balance": "$3,465.50", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alma Hopper", | |
| "company": "SUSTENZA", | |
| "email": "[email protected]", | |
| "phone": "+1 (945) 442-2151", | |
| "address": "170 Diamond Street, Flintville, Missouri, 3813", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953ad12575c735d90b", | |
| "index": 1988, | |
| "balance": "$3,732.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wall Stanton", | |
| "company": "APEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 542-3928", | |
| "address": "144 Brevoort Place, Rossmore, Arizona, 594", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95859b5819a3a80938", | |
| "index": 1989, | |
| "balance": "$2,001.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Courtney Reyes", | |
| "company": "ISODRIVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 414-3114", | |
| "address": "290 Bayview Place, Cade, Massachusetts, 1333", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957462f86033369a98", | |
| "index": 1990, | |
| "balance": "$3,443.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Leila Benjamin", | |
| "company": "QUARX", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 581-2444", | |
| "address": "855 Tehama Street, Tivoli, New Jersey, 2962", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ade71ff3bde77d9e", | |
| "index": 1991, | |
| "balance": "$2,167.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Salazar Mccullough", | |
| "company": "XYQAG", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 574-3879", | |
| "address": "577 Schenck Court, Foscoe, Pennsylvania, 4804", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95817e6959d7783f51", | |
| "index": 1992, | |
| "balance": "$3,398.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mccarty Odonnell", | |
| "company": "ZIDANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 595-3136", | |
| "address": "619 Lott Avenue, Berwind, Wisconsin, 317", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957d98eeaf4c7105e9", | |
| "index": 1993, | |
| "balance": "$1,288.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Booker Olsen", | |
| "company": "ZILIDIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 446-2351", | |
| "address": "824 Nostrand Avenue, Coleville, Alaska, 9111", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9593dec3bd41210139", | |
| "index": 1994, | |
| "balance": "$2,426.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hester Gonzales", | |
| "company": "PLASMOS", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 446-3048", | |
| "address": "685 Decatur Street, Davenport, Vermont, 3992", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950f4d089f079bdd7a", | |
| "index": 1995, | |
| "balance": "$2,514.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Judith Dalton", | |
| "company": "NIXELT", | |
| "email": "[email protected]", | |
| "phone": "+1 (869) 591-2759", | |
| "address": "826 Furman Street, Omar, Illinois, 8227", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cda50739b8451c75", | |
| "index": 1996, | |
| "balance": "$2,320.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Donovan Salazar", | |
| "company": "GEOFARM", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 528-3814", | |
| "address": "800 Lawrence Street, Eagleville, Utah, 5235", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953f28f06cc563c59a", | |
| "index": 1997, | |
| "balance": "$2,968.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marylou Brennan", | |
| "company": "ZILLIDIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (901) 555-2771", | |
| "address": "273 Kane Place, Richmond, Connecticut, 6969", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d0c1c8e1b2bc073c", | |
| "index": 1998, | |
| "balance": "$1,084.36", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bruce Solomon", | |
| "company": "CONFRENZY", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 583-2265", | |
| "address": "713 Aurelia Court, Cressey, Oregon, 8274", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9536ec73ad7b74ab75", | |
| "index": 1999, | |
| "balance": "$2,168.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lucinda Conner", | |
| "company": "UNIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 446-2328", | |
| "address": "799 Aviation Road, Rushford, Federated States Of Micronesia, 7123", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952073d943077795d7", | |
| "index": 2000, | |
| "balance": "$2,451.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margery Cochran", | |
| "company": "KEEG", | |
| "email": "[email protected]", | |
| "phone": "+1 (925) 519-2866", | |
| "address": "240 Fair Street, Lewis, Kentucky, 5398", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95054f1a561cdd8fab", | |
| "index": 2001, | |
| "balance": "$2,631.37", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barnes Mcmillan", | |
| "company": "GINKOGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 447-2063", | |
| "address": "243 Caton Avenue, Fairlee, Puerto Rico, 2286", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955931609c0d9adbe9", | |
| "index": 2002, | |
| "balance": "$3,575.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alford Trujillo", | |
| "company": "FURNAFIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (978) 530-2451", | |
| "address": "302 Louis Place, Bridgetown, Idaho, 2843", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9581fa56ec986f21d6", | |
| "index": 2003, | |
| "balance": "$2,383.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fischer Roman", | |
| "company": "EDECINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 565-2763", | |
| "address": "619 Ocean Court, Morriston, Nevada, 4081", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cf1cd11cfc3842db", | |
| "index": 2004, | |
| "balance": "$3,770.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hooper Mcbride", | |
| "company": "SEQUITUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (902) 476-2058", | |
| "address": "262 Walker Court, Goldfield, South Carolina, 5077", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fbb9884a6725cd91", | |
| "index": 2005, | |
| "balance": "$1,054.29", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Margret Pollard", | |
| "company": "PROGENEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (974) 487-3493", | |
| "address": "999 Montauk Avenue, Harleigh, Minnesota, 1154", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950744a14360fe5e5c", | |
| "index": 2006, | |
| "balance": "$3,740.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rush Whitfield", | |
| "company": "GEEKOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (858) 578-2411", | |
| "address": "132 Newkirk Avenue, Newcastle, North Dakota, 4864", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950a321f4bf8f51074", | |
| "index": 2007, | |
| "balance": "$2,259.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ingram Tucker", | |
| "company": "CIRCUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 534-3616", | |
| "address": "834 Dank Court, Dupuyer, District Of Columbia, 758", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c07b464ada562e35", | |
| "index": 2008, | |
| "balance": "$2,625.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Corrine Dodson", | |
| "company": "BILLMED", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 516-2678", | |
| "address": "843 Doone Court, Canby, New York, 8115", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95623d21f582212773", | |
| "index": 2009, | |
| "balance": "$2,626.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tonia Hobbs", | |
| "company": "OCTOCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 542-3477", | |
| "address": "981 Belvidere Street, Northridge, Montana, 2460", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586ad6f006fd5e79f", | |
| "index": 2010, | |
| "balance": "$3,182.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Anna Kennedy", | |
| "company": "SNIPS", | |
| "email": "[email protected]", | |
| "phone": "+1 (860) 491-3780", | |
| "address": "661 Court Square, Cleary, Arkansas, 4616", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eac7151bee902481", | |
| "index": 2011, | |
| "balance": "$1,355.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Scott Knight", | |
| "company": "HELIXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (846) 524-2224", | |
| "address": "978 Woodpoint Road, Coaldale, Kansas, 2683", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f3f39c1dde634bbc", | |
| "index": 2012, | |
| "balance": "$1,739.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alexis Hawkins", | |
| "company": "REVERSUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 567-3119", | |
| "address": "702 Merit Court, Avoca, Guam, 2247", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956165608f182da4bb", | |
| "index": 2013, | |
| "balance": "$2,723.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Martin Cherry", | |
| "company": "QUAILCOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 516-2264", | |
| "address": "559 Madison Street, Sattley, Rhode Island, 581", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953603cc4e0fb85f72", | |
| "index": 2014, | |
| "balance": "$3,156.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kemp Swanson", | |
| "company": "VENDBLEND", | |
| "email": "[email protected]", | |
| "phone": "+1 (804) 408-2896", | |
| "address": "272 Prospect Street, Kirk, Palau, 5800", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958781f9ce8ef50eab", | |
| "index": 2015, | |
| "balance": "$1,272.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fernandez Grant", | |
| "company": "VINCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 447-3533", | |
| "address": "515 Beach Place, Glenville, Wyoming, 6708", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f1ad969d57111e51", | |
| "index": 2016, | |
| "balance": "$2,814.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Little Best", | |
| "company": "EQUICOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 479-3213", | |
| "address": "658 Haring Street, Mayfair, Nebraska, 8479", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c9aefe14c8f17d94", | |
| "index": 2017, | |
| "balance": "$1,925.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Myra Rosa", | |
| "company": "ISOLOGIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 494-2420", | |
| "address": "212 Ingraham Street, Hemlock, Northern Mariana Islands, 8046", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9579c36170fdc303e1", | |
| "index": 2018, | |
| "balance": "$1,014.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Larson Anderson", | |
| "company": "ORBAXTER", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 537-3875", | |
| "address": "287 Malbone Street, Glendale, California, 2878", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c543b42752db5799", | |
| "index": 2019, | |
| "balance": "$1,772.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carney Sweet", | |
| "company": "ACCEL", | |
| "email": "[email protected]", | |
| "phone": "+1 (815) 499-3079", | |
| "address": "365 Glenmore Avenue, Harrison, Louisiana, 655", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9523c9d952119199b7", | |
| "index": 2020, | |
| "balance": "$1,493.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Suzette Parrish", | |
| "company": "SPRINGBEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 485-2683", | |
| "address": "118 Coffey Street, Konterra, Mississippi, 4677", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95984977b19cd68bb2", | |
| "index": 2021, | |
| "balance": "$1,459.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kathy Le", | |
| "company": "ANARCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 469-3951", | |
| "address": "471 Seaview Court, Stockdale, Hawaii, 7873", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f31813f8393f339a", | |
| "index": 2022, | |
| "balance": "$1,143.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mckay Delgado", | |
| "company": "SENSATE", | |
| "email": "[email protected]", | |
| "phone": "+1 (817) 466-2278", | |
| "address": "107 Kings Hwy, Bradenville, Washington, 6530", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e31ebabba11ec90f", | |
| "index": 2023, | |
| "balance": "$2,496.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hill Little", | |
| "company": "KLUGGER", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 442-3598", | |
| "address": "429 Bergen Place, Bannock, American Samoa, 1561", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956cf13dd5aad30942", | |
| "index": 2024, | |
| "balance": "$3,463.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robyn Harrison", | |
| "company": "GEEKOL", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 473-2382", | |
| "address": "863 Ridge Boulevard, Vernon, Maryland, 3379", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954e259751acbfd1a5", | |
| "index": 2025, | |
| "balance": "$3,168.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morrow Becker", | |
| "company": "MOMENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (983) 518-3105", | |
| "address": "360 Anna Court, Emerald, Ohio, 1243", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95489f41a93762bd7b", | |
| "index": 2026, | |
| "balance": "$1,330.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Neal Travis", | |
| "company": "TRIPSCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 561-3249", | |
| "address": "465 Canarsie Road, Canterwood, Iowa, 5327", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957adb0c6199f013c9", | |
| "index": 2027, | |
| "balance": "$1,738.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sellers Campos", | |
| "company": "VIRXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 580-2177", | |
| "address": "824 Gem Street, Johnsonburg, Georgia, 1086", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ee477e32e3da9231", | |
| "index": 2028, | |
| "balance": "$1,468.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Farley Ayers", | |
| "company": "ZAYA", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 502-3916", | |
| "address": "612 Commerce Street, Wyoming, Tennessee, 1112", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951d79f7434b4a8444", | |
| "index": 2029, | |
| "balance": "$1,743.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bender Nunez", | |
| "company": "SHADEASE", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 537-2004", | |
| "address": "394 Alton Place, Marne, Virginia, 2626", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95127b1325cede3b73", | |
| "index": 2030, | |
| "balance": "$1,894.62", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Joyce Hanson", | |
| "company": "SLUMBERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 527-2981", | |
| "address": "996 Whitty Lane, Reinerton, South Dakota, 5333", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eacb2d6446cc0b06", | |
| "index": 2031, | |
| "balance": "$2,247.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bianca Mckinney", | |
| "company": "VERAQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (994) 485-2042", | |
| "address": "432 Grand Avenue, Caberfae, Oklahoma, 5608", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95123b27d6838d906d", | |
| "index": 2032, | |
| "balance": "$1,520.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Juliette Walker", | |
| "company": "MIRACLIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 427-2068", | |
| "address": "127 Crown Street, Abrams, Texas, 1178", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958e78dc3df9ec0e01", | |
| "index": 2033, | |
| "balance": "$1,804.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ball Hewitt", | |
| "company": "KOOGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 439-3913", | |
| "address": "413 Boerum Street, Masthope, Marshall Islands, 3258", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a7ca0ddc358c745f", | |
| "index": 2034, | |
| "balance": "$2,119.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Oneill Velez", | |
| "company": "ZANYMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 484-3388", | |
| "address": "245 Vanderbilt Avenue, Strykersville, Maine, 5211", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e648a6981e5c85d6", | |
| "index": 2035, | |
| "balance": "$3,200.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alyce Mcclure", | |
| "company": "RODEOCEAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (914) 534-3899", | |
| "address": "224 Blake Avenue, Norris, Colorado, 7716", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e4abfbf9bd1d86c2", | |
| "index": 2036, | |
| "balance": "$1,117.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alvarado Dunlap", | |
| "company": "MAINELAND", | |
| "email": "[email protected]", | |
| "phone": "+1 (812) 580-3551", | |
| "address": "542 Rutledge Street, Imperial, New Mexico, 1368", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9568df775ab657ea03", | |
| "index": 2037, | |
| "balance": "$2,234.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fitzpatrick Burch", | |
| "company": "COMBOGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (954) 500-3762", | |
| "address": "439 Elliott Walk, Siglerville, Florida, 3805", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959391fdfc40f965f4", | |
| "index": 2038, | |
| "balance": "$2,033.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jackie Wilson", | |
| "company": "NEXGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 429-2119", | |
| "address": "168 Louisiana Avenue, Teasdale, Michigan, 3971", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f050bf35a513f14a", | |
| "index": 2039, | |
| "balance": "$2,360.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reba Buck", | |
| "company": "VIAGREAT", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 438-3366", | |
| "address": "247 Kent Street, Greenbackville, Delaware, 281", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953b42e2cacb8c99ce", | |
| "index": 2040, | |
| "balance": "$3,596.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Levy Burnett", | |
| "company": "COMSTRUCT", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 519-3973", | |
| "address": "433 Bainbridge Street, Wilsonia, Virgin Islands, 507", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d37fd83c160e5d52", | |
| "index": 2041, | |
| "balance": "$2,555.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robert Saunders", | |
| "company": "ZIDOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 412-2514", | |
| "address": "217 Front Street, Grantville, West Virginia, 5300", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9500670802ee8f027b", | |
| "index": 2042, | |
| "balance": "$3,414.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dixon Chandler", | |
| "company": "ENAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 487-2108", | |
| "address": "565 Martense Street, Allendale, Alabama, 5857", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9577bb7859b3b41752", | |
| "index": 2043, | |
| "balance": "$1,565.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sloan Cobb", | |
| "company": "IMAGINART", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 443-3165", | |
| "address": "116 Kimball Street, Bath, North Carolina, 716", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951a3aa6a4a200e75b", | |
| "index": 2044, | |
| "balance": "$1,761.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barker Justice", | |
| "company": "ATGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 490-3550", | |
| "address": "342 Cranberry Street, Tibbie, Indiana, 3834", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9519b987f4e636d5ef", | |
| "index": 2045, | |
| "balance": "$2,307.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Justine Williamson", | |
| "company": "EZENTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 449-3926", | |
| "address": "772 Juliana Place, Blende, Missouri, 3443", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953fa9765ae79f0b14", | |
| "index": 2046, | |
| "balance": "$2,717.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Tillman Huffman", | |
| "company": "OPTYK", | |
| "email": "[email protected]", | |
| "phone": "+1 (838) 515-2253", | |
| "address": "591 Royce Place, Enlow, Arizona, 8547", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9523ddda8db3847716", | |
| "index": 2047, | |
| "balance": "$2,669.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gonzalez Roth", | |
| "company": "ZILPHUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (977) 428-2445", | |
| "address": "119 Fillmore Avenue, Goodville, Massachusetts, 9982", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95940eb300baf9cb1e", | |
| "index": 2048, | |
| "balance": "$1,206.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Atkins Merrill", | |
| "company": "CANOPOLY", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 515-3191", | |
| "address": "401 Columbia Place, Madaket, New Jersey, 6828", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506d9ead3af268945", | |
| "index": 2049, | |
| "balance": "$3,851.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosanna Greer", | |
| "company": "RONBERT", | |
| "email": "[email protected]", | |
| "phone": "+1 (816) 438-3633", | |
| "address": "539 Harbor Lane, Echo, Pennsylvania, 1202", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950d0a7797d0c2ae77", | |
| "index": 2050, | |
| "balance": "$2,130.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bass Calderon", | |
| "company": "KOZGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 536-3473", | |
| "address": "657 Duryea Court, Baker, Wisconsin, 2611", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95252701eb85914ee4", | |
| "index": 2051, | |
| "balance": "$3,821.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carolina Pickett", | |
| "company": "TYPHONICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 464-3680", | |
| "address": "893 College Place, Hiseville, Alaska, 8725", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c3da7aa0e13868c9", | |
| "index": 2052, | |
| "balance": "$3,400.53", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morales Tyler", | |
| "company": "NAXDIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (834) 408-2258", | |
| "address": "300 Ridgecrest Terrace, Greenock, Vermont, 2995", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95091546f910d987cf", | |
| "index": 2053, | |
| "balance": "$2,547.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clarke Weeks", | |
| "company": "OMATOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 497-2151", | |
| "address": "318 Polhemus Place, Stewartville, Illinois, 6619", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9522b74c1a3a0944a8", | |
| "index": 2054, | |
| "balance": "$2,484.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Heath Herring", | |
| "company": "NIKUDA", | |
| "email": "[email protected]", | |
| "phone": "+1 (979) 454-2290", | |
| "address": "356 Hicks Street, Santel, Utah, 7986", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950370e0064833d011", | |
| "index": 2055, | |
| "balance": "$1,025.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Meyer Hatfield", | |
| "company": "GREEKER", | |
| "email": "[email protected]", | |
| "phone": "+1 (847) 531-2418", | |
| "address": "887 Elliott Place, Dellview, Connecticut, 1867", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9598801e575660d642", | |
| "index": 2056, | |
| "balance": "$3,554.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Peck Johns", | |
| "company": "KOFFEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 594-3345", | |
| "address": "333 Hendrix Street, Kieler, Oregon, 676", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9536b95ddceffa1afa", | |
| "index": 2057, | |
| "balance": "$2,732.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rollins Carney", | |
| "company": "REMOTION", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 449-3955", | |
| "address": "376 Engert Avenue, Riegelwood, Federated States Of Micronesia, 1844", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d058b61c5c37f767", | |
| "index": 2058, | |
| "balance": "$1,050.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Alyson Rosales", | |
| "company": "VIXO", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 523-2340", | |
| "address": "443 Gunnison Court, Seymour, Kentucky, 7111", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95dfc7af2fb6e370d4", | |
| "index": 2059, | |
| "balance": "$1,556.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Desiree Dunn", | |
| "company": "TWIGGERY", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 405-3218", | |
| "address": "452 McClancy Place, Herald, Puerto Rico, 3683", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953540a5b9e398382d", | |
| "index": 2060, | |
| "balance": "$3,270.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rose Wilkerson", | |
| "company": "NETUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 515-2633", | |
| "address": "579 Cornelia Street, Winchester, Idaho, 4320", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95305b9b9a9feedb71", | |
| "index": 2061, | |
| "balance": "$1,957.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jenny Young", | |
| "company": "EVENTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (811) 586-3094", | |
| "address": "519 Herzl Street, Sehili, Nevada, 9280", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9562b2df1a75d9aa9c", | |
| "index": 2062, | |
| "balance": "$1,822.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mildred Sutton", | |
| "company": "MIXERS", | |
| "email": "[email protected]", | |
| "phone": "+1 (908) 415-3369", | |
| "address": "239 Cadman Plaza, Camas, South Carolina, 8438", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9504da0c7756cc2728", | |
| "index": 2063, | |
| "balance": "$2,266.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Finley Park", | |
| "company": "BIOHAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 477-2917", | |
| "address": "629 Milford Street, Naomi, Minnesota, 9851", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95af9db7f1c3b2da3c", | |
| "index": 2064, | |
| "balance": "$1,509.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hurst Cooke", | |
| "company": "SUPREMIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (958) 449-2780", | |
| "address": "348 Bulwer Place, Biddle, North Dakota, 5471", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cbab7e29d56e9543", | |
| "index": 2065, | |
| "balance": "$2,516.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Herman Gross", | |
| "company": "COMTRAIL", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 522-2988", | |
| "address": "982 Vandervoort Avenue, Fingerville, District Of Columbia, 7227", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954a821f1dffc62c1b", | |
| "index": 2066, | |
| "balance": "$2,712.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Russo Caldwell", | |
| "company": "ELPRO", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 557-2982", | |
| "address": "798 Kingston Avenue, Rutherford, New York, 8502", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e613e84052d8893f", | |
| "index": 2067, | |
| "balance": "$1,778.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lopez Frazier", | |
| "company": "JOVIOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 600-2332", | |
| "address": "845 Beadel Street, Lydia, Montana, 6009", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95165cda2fc77266dc", | |
| "index": 2068, | |
| "balance": "$2,998.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cardenas Richard", | |
| "company": "GLUID", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 556-2406", | |
| "address": "985 Veterans Avenue, Vienna, Arkansas, 8860", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cac257118fd2d9a4", | |
| "index": 2069, | |
| "balance": "$3,554.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moody Mcintosh", | |
| "company": "IDEGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 567-2057", | |
| "address": "969 Sedgwick Street, Sterling, Kansas, 3488", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0469c8c4f71246a", | |
| "index": 2070, | |
| "balance": "$1,301.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dominique Mcclain", | |
| "company": "ZILODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 459-2850", | |
| "address": "356 Bridgewater Street, Belleview, Guam, 4296", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951527da207d14c0ab", | |
| "index": 2071, | |
| "balance": "$3,099.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Reilly Talley", | |
| "company": "OVERPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (905) 570-3166", | |
| "address": "501 Royce Street, Maybell, Rhode Island, 7192", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9596fc54149f395400", | |
| "index": 2072, | |
| "balance": "$3,220.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Colleen Eaton", | |
| "company": "SIGNITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 586-3900", | |
| "address": "604 Anchorage Place, Hendersonville, Palau, 1275", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a3f3f8ab2b7acb1d", | |
| "index": 2073, | |
| "balance": "$1,571.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Marcy Wong", | |
| "company": "MITROC", | |
| "email": "[email protected]", | |
| "phone": "+1 (898) 487-2593", | |
| "address": "834 Baycliff Terrace, Roland, Wyoming, 7210", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a06583ebdacc3b00", | |
| "index": 2074, | |
| "balance": "$3,233.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stephens Glass", | |
| "company": "ENTHAZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 542-2415", | |
| "address": "284 Minna Street, Sussex, Nebraska, 7211", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ffa75059eddfbcdd", | |
| "index": 2075, | |
| "balance": "$3,946.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcmahon Delacruz", | |
| "company": "AUTOMON", | |
| "email": "[email protected]", | |
| "phone": "+1 (894) 497-3048", | |
| "address": "662 Fleet Place, Beaverdale, Northern Mariana Islands, 9620", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f05aa04c8ca135ab", | |
| "index": 2076, | |
| "balance": "$2,756.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosalinda Hines", | |
| "company": "FURNIGEER", | |
| "email": "[email protected]", | |
| "phone": "+1 (969) 515-3517", | |
| "address": "436 Provost Street, Wilmington, California, 7386", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e1fe4966b89f9e39", | |
| "index": 2077, | |
| "balance": "$3,360.15", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barton Hensley", | |
| "company": "BLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 410-3727", | |
| "address": "206 Ashford Street, Hardyville, Louisiana, 9561", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528dcf0a730e34fa4", | |
| "index": 2078, | |
| "balance": "$2,096.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Taylor Davidson", | |
| "company": "ACCUSAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 420-2256", | |
| "address": "729 Kansas Place, Gerber, Mississippi, 3638", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955c7f8ddd73a40abe", | |
| "index": 2079, | |
| "balance": "$2,324.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rebekah Johnson", | |
| "company": "CHILLIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 477-2738", | |
| "address": "664 Falmouth Street, Grimsley, Hawaii, 5153", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9506fe3c5b986a1b38", | |
| "index": 2080, | |
| "balance": "$1,132.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pierce Soto", | |
| "company": "MAXIMIND", | |
| "email": "[email protected]", | |
| "phone": "+1 (985) 407-3289", | |
| "address": "751 Remsen Street, Hartsville/Hartley, Washington, 7308", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95abc42a693ba35467", | |
| "index": 2081, | |
| "balance": "$3,377.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcfarland Gilbert", | |
| "company": "ECRAZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 489-3384", | |
| "address": "853 Summit Street, Gilmore, American Samoa, 9641", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537c9d28439482885", | |
| "index": 2082, | |
| "balance": "$2,863.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Randi Bonner", | |
| "company": "EZENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (957) 508-2326", | |
| "address": "816 Nichols Avenue, Valmy, Maryland, 8201", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aa8736d258b726ef", | |
| "index": 2083, | |
| "balance": "$2,779.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "May Watts", | |
| "company": "KANGLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (864) 502-2647", | |
| "address": "115 Micieli Place, Winfred, Ohio, 3586", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9555d4eda75bcd0745", | |
| "index": 2084, | |
| "balance": "$2,787.84", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Franco Moss", | |
| "company": "MANUFACT", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 512-3391", | |
| "address": "511 Livonia Avenue, Fairhaven, Iowa, 7219", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95be24ad6788afc600", | |
| "index": 2085, | |
| "balance": "$2,306.94", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ballard Sandoval", | |
| "company": "WAZZU", | |
| "email": "[email protected]", | |
| "phone": "+1 (996) 587-3259", | |
| "address": "443 Herkimer Place, Retsof, Georgia, 1131", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953530c6020d88b243", | |
| "index": 2086, | |
| "balance": "$1,182.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Laura Hart", | |
| "company": "INRT", | |
| "email": "[email protected]", | |
| "phone": "+1 (899) 545-3395", | |
| "address": "199 Lyme Avenue, Tilden, Tennessee, 2827", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952802105886fcf2cb", | |
| "index": 2087, | |
| "balance": "$3,620.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dixie Buckley", | |
| "company": "EXOBLUE", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 446-3994", | |
| "address": "509 Jardine Place, Twilight, Virginia, 358", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9546adad2ac36c0628", | |
| "index": 2088, | |
| "balance": "$2,157.68", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Warren Vega", | |
| "company": "CYTREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 406-2535", | |
| "address": "560 Lloyd Court, Vandiver, South Dakota, 7274", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bef247670a8148d8", | |
| "index": 2089, | |
| "balance": "$2,834.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gilliam Bird", | |
| "company": "CYTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 499-2117", | |
| "address": "680 Oceanic Avenue, Groveville, Oklahoma, 9106", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9532a612f616bbddcb", | |
| "index": 2090, | |
| "balance": "$3,461.24", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Isabelle Foster", | |
| "company": "CODAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (970) 597-2873", | |
| "address": "799 Lawrence Avenue, Graniteville, Texas, 5151", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b2b9fce33aa9c403", | |
| "index": 2091, | |
| "balance": "$2,221.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelia Knox", | |
| "company": "BIZMATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (922) 429-3459", | |
| "address": "772 Boynton Place, Wikieup, Marshall Islands, 5005", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535a17b8600206610", | |
| "index": 2092, | |
| "balance": "$3,729.66", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gibson Thornton", | |
| "company": "XPLOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 533-3937", | |
| "address": "295 Stockholm Street, Riceville, Maine, 201", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9513f5dfdcddab2f83", | |
| "index": 2093, | |
| "balance": "$1,711.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jimmie Raymond", | |
| "company": "POLARIUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (988) 534-3725", | |
| "address": "239 Independence Avenue, Tryon, Colorado, 9624", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b33fb319bce23441", | |
| "index": 2094, | |
| "balance": "$1,182.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Watts Harrington", | |
| "company": "PLASTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (981) 525-2141", | |
| "address": "360 Homecrest Avenue, Tampico, New Mexico, 5678", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95707fb701d220b9d2", | |
| "index": 2095, | |
| "balance": "$3,364.56", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sherry Wheeler", | |
| "company": "PLASMOSIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (991) 460-2260", | |
| "address": "854 Aberdeen Street, Albrightsville, Florida, 4721", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95761e838ceb08b0d0", | |
| "index": 2096, | |
| "balance": "$2,714.81", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Gentry Wise", | |
| "company": "ARTWORLDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 514-2316", | |
| "address": "257 Locust Avenue, Delco, Michigan, 6223", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aadf0fe60c2d909f", | |
| "index": 2097, | |
| "balance": "$1,532.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Harding Bryant", | |
| "company": "FLYBOYZ", | |
| "email": "[email protected]", | |
| "phone": "+1 (819) 426-3972", | |
| "address": "178 Jackson Court, Gloucester, Delaware, 746", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ce7993fca59e053", | |
| "index": 2098, | |
| "balance": "$2,206.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Miller Mcmahon", | |
| "company": "GOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 560-3957", | |
| "address": "503 Marconi Place, Osmond, Virgin Islands, 675", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fce09ec96b8d247", | |
| "index": 2099, | |
| "balance": "$2,270.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vickie Duran", | |
| "company": "ADORNICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (878) 419-2862", | |
| "address": "430 Rost Place, Klondike, West Virginia, 7012", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a0282ab910f5cbd3", | |
| "index": 2100, | |
| "balance": "$2,761.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dawson Blake", | |
| "company": "MANGLO", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 512-3949", | |
| "address": "369 Middagh Street, Cedarville, Alabama, 4366", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9511a61049a1f3b0d9", | |
| "index": 2101, | |
| "balance": "$3,135.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Butler Thompson", | |
| "company": "COLLAIRE", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 426-2713", | |
| "address": "846 McKinley Avenue, Springville, North Carolina, 1187", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f5f888c58c9ea7c6", | |
| "index": 2102, | |
| "balance": "$1,799.30", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Blanca Mcfarland", | |
| "company": "EVEREST", | |
| "email": "[email protected]", | |
| "phone": "+1 (916) 541-2888", | |
| "address": "231 Commercial Street, Finzel, Indiana, 240", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95adbc3180edf0f2e1", | |
| "index": 2103, | |
| "balance": "$2,774.52", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walton Sexton", | |
| "company": "ORBIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 531-2009", | |
| "address": "161 Wilson Street, Salix, Missouri, 5657", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955072719437508764", | |
| "index": 2104, | |
| "balance": "$1,767.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Howe Craft", | |
| "company": "GYNKO", | |
| "email": "[email protected]", | |
| "phone": "+1 (844) 539-3772", | |
| "address": "340 Moore Place, Nogal, Arizona, 4055", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9501e8e54ff8b71ddd", | |
| "index": 2105, | |
| "balance": "$1,206.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynnette Bryan", | |
| "company": "EARBANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (939) 482-2255", | |
| "address": "147 Emerald Street, Vincent, Massachusetts, 9739", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953bd4dae955951b38", | |
| "index": 2106, | |
| "balance": "$1,383.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Josie Frye", | |
| "company": "XELEGYL", | |
| "email": "[email protected]", | |
| "phone": "+1 (929) 404-2172", | |
| "address": "437 Norman Avenue, Crumpler, New Jersey, 8624", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9566720eadefc331b7", | |
| "index": 2107, | |
| "balance": "$1,661.89", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brianna Summers", | |
| "company": "INSURON", | |
| "email": "[email protected]", | |
| "phone": "+1 (932) 585-2791", | |
| "address": "951 Utica Avenue, Concho, Pennsylvania, 7329", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bb791be0ffdb1de5", | |
| "index": 2108, | |
| "balance": "$3,508.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Carpenter Tyson", | |
| "company": "ENORMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (960) 561-3492", | |
| "address": "909 Grattan Street, Mulino, Wisconsin, 3187", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ebd15ccaeeefb90", | |
| "index": 2109, | |
| "balance": "$2,460.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorna Lara", | |
| "company": "GLEAMINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 557-3374", | |
| "address": "369 Oliver Street, Hasty, Alaska, 6017", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954f4b53fd56664473", | |
| "index": 2110, | |
| "balance": "$1,100.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ayala Matthews", | |
| "company": "PETICULAR", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 469-3051", | |
| "address": "685 Seton Place, Devon, Vermont, 6069", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958c458115b5acfa63", | |
| "index": 2111, | |
| "balance": "$1,732.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elba Stephens", | |
| "company": "DATAGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 445-3712", | |
| "address": "174 Plymouth Street, Cascades, Illinois, 9240", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c0fd7ff0046ce9a8", | |
| "index": 2112, | |
| "balance": "$2,039.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moore Robinson", | |
| "company": "ULTRIMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 565-3331", | |
| "address": "299 Dorset Street, Gardners, Utah, 4261", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95440250a86414dbd4", | |
| "index": 2113, | |
| "balance": "$3,932.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lottie Roberson", | |
| "company": "GROK", | |
| "email": "[email protected]", | |
| "phone": "+1 (881) 401-3002", | |
| "address": "141 Woodbine Street, Roulette, Connecticut, 6479", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ce4f3af5a5e0abd8", | |
| "index": 2114, | |
| "balance": "$1,524.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sonja Whitaker", | |
| "company": "DIGIRANG", | |
| "email": "[email protected]", | |
| "phone": "+1 (959) 524-3554", | |
| "address": "102 Meadow Street, Rivers, Oregon, 4457", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fef95257c4aeb10", | |
| "index": 2115, | |
| "balance": "$3,259.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elnora Jacobs", | |
| "company": "EQUITAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (822) 552-2905", | |
| "address": "251 Portland Avenue, Advance, Federated States Of Micronesia, 4165", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b82014c6395b5182", | |
| "index": 2116, | |
| "balance": "$2,810.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lavonne Moon", | |
| "company": "GINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (832) 531-3070", | |
| "address": "194 Tillary Street, Herlong, Kentucky, 8370", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95400e8d48688ba4a6", | |
| "index": 2117, | |
| "balance": "$2,676.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Deanne Mosley", | |
| "company": "VENOFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (917) 485-2612", | |
| "address": "239 Bedell Lane, Malott, Puerto Rico, 9504", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95bcae5bb7dd1989b9", | |
| "index": 2118, | |
| "balance": "$1,518.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lorie Mayer", | |
| "company": "PIGZART", | |
| "email": "[email protected]", | |
| "phone": "+1 (876) 557-2175", | |
| "address": "747 Heath Place, Franklin, Idaho, 8599", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952cb570af376ac4e5", | |
| "index": 2119, | |
| "balance": "$2,379.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kaufman Allison", | |
| "company": "ECRATIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 421-2858", | |
| "address": "274 Dumont Avenue, Outlook, Nevada, 5518", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954f2a31c862098ef2", | |
| "index": 2120, | |
| "balance": "$2,605.23", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Craft Hodges", | |
| "company": "LOTRON", | |
| "email": "[email protected]", | |
| "phone": "+1 (903) 591-2348", | |
| "address": "342 Morgan Avenue, Garnet, South Carolina, 9567", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cddbf8709f78d5a7", | |
| "index": 2121, | |
| "balance": "$2,875.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cabrera Lyons", | |
| "company": "KIOSK", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 452-3072", | |
| "address": "599 Dekalb Avenue, Martell, Minnesota, 407", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95edcf5b5cb485e6ec", | |
| "index": 2122, | |
| "balance": "$3,632.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Holloway Baxter", | |
| "company": "AQUOAVO", | |
| "email": "[email protected]", | |
| "phone": "+1 (820) 526-3824", | |
| "address": "414 Kenilworth Place, Beaulieu, North Dakota, 396", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955e6d030b2680b59b", | |
| "index": 2123, | |
| "balance": "$2,719.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Katina Guy", | |
| "company": "DIGIGEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (936) 572-2606", | |
| "address": "360 Prospect Avenue, Chapin, District Of Columbia, 5906", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95eca557bca6dfd9fa", | |
| "index": 2124, | |
| "balance": "$3,571.05", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Acevedo Durham", | |
| "company": "ZYTRAC", | |
| "email": "[email protected]", | |
| "phone": "+1 (975) 546-2330", | |
| "address": "810 Hull Street, Camino, New York, 9481", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ade0ccb3060940c", | |
| "index": 2125, | |
| "balance": "$2,643.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Randall Barr", | |
| "company": "SEALOUD", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 405-2599", | |
| "address": "149 Turnbull Avenue, Holcombe, Montana, 103", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953440a44c71dc9820", | |
| "index": 2126, | |
| "balance": "$3,456.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Claudia Boyd", | |
| "company": "NEOCENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (986) 419-2794", | |
| "address": "633 Love Lane, Ivanhoe, Arkansas, 9159", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955faebba685ce18d7", | |
| "index": 2127, | |
| "balance": "$1,707.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eula Meyers", | |
| "company": "XUMONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 425-2061", | |
| "address": "492 Surf Avenue, Cavalero, Kansas, 8942", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951330ed24c9e19212", | |
| "index": 2128, | |
| "balance": "$1,752.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jeanette Zamora", | |
| "company": "MANTRIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (872) 599-3978", | |
| "address": "662 Bank Street, Boomer, Guam, 7686", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951668120feb287945", | |
| "index": 2129, | |
| "balance": "$1,562.48", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcpherson Savage", | |
| "company": "MACRONAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (896) 431-3195", | |
| "address": "916 Broome Street, Woodburn, Rhode Island, 1615", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952355ab2589cf1dda", | |
| "index": 2130, | |
| "balance": "$1,472.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Valeria Dean", | |
| "company": "CORMORAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 470-2037", | |
| "address": "542 Dupont Street, Greer, Palau, 3160", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f12c19cfe6a95309", | |
| "index": 2131, | |
| "balance": "$3,989.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Audra Mcdaniel", | |
| "company": "COMTOURS", | |
| "email": "[email protected]", | |
| "phone": "+1 (803) 514-3947", | |
| "address": "687 Fulton Street, Kraemer, Wyoming, 1124", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c7e74ec8db85ab46", | |
| "index": 2132, | |
| "balance": "$1,359.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Iris Lopez", | |
| "company": "SKINSERVE", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 426-2727", | |
| "address": "538 Tompkins Place, Darrtown, Nebraska, 5800", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955dd3ac5d158b0da1", | |
| "index": 2133, | |
| "balance": "$3,130.11", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flynn Ware", | |
| "company": "SLOFAST", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 442-2213", | |
| "address": "385 Seba Avenue, Rosedale, Northern Mariana Islands, 815", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9554a2504b912998b4", | |
| "index": 2134, | |
| "balance": "$2,596.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Griffith Bowman", | |
| "company": "COGENTRY", | |
| "email": "[email protected]", | |
| "phone": "+1 (992) 594-3692", | |
| "address": "185 Boerum Place, Ironton, California, 8925", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95075d8b543860458e", | |
| "index": 2135, | |
| "balance": "$3,109.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosales Kelly", | |
| "company": "ZILLANET", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 540-3760", | |
| "address": "729 Rockaway Avenue, Mappsville, Louisiana, 4982", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ab3b85f9606e8959", | |
| "index": 2136, | |
| "balance": "$2,802.72", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Miriam Duffy", | |
| "company": "FANGOLD", | |
| "email": "[email protected]", | |
| "phone": "+1 (867) 422-3630", | |
| "address": "333 Veronica Place, Brutus, Mississippi, 8306", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953e25298bd129faba", | |
| "index": 2137, | |
| "balance": "$3,456.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Branch Bruce", | |
| "company": "EYEWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 491-2570", | |
| "address": "583 Porter Avenue, Guilford, Hawaii, 2232", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9556881a2440bf3607", | |
| "index": 2138, | |
| "balance": "$2,303.74", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vance Cleveland", | |
| "company": "ELECTONIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 559-3181", | |
| "address": "303 Woodrow Court, Leming, Washington, 5581", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95765c6008dd75702d", | |
| "index": 2139, | |
| "balance": "$1,150.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lauri Hall", | |
| "company": "ACCRUEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (990) 522-3243", | |
| "address": "468 Withers Street, Marbury, American Samoa, 6435", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9509dbf9fd7bf7da56", | |
| "index": 2140, | |
| "balance": "$2,405.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fanny Alford", | |
| "company": "QUILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (807) 501-3285", | |
| "address": "853 Georgia Avenue, Summerfield, Maryland, 9581", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950ada16d1632a30a5", | |
| "index": 2141, | |
| "balance": "$1,951.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mckenzie Lambert", | |
| "company": "COMVENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 560-2125", | |
| "address": "835 Buffalo Avenue, Clinton, Ohio, 4223", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95329724ade698aa1c", | |
| "index": 2142, | |
| "balance": "$3,571.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Logan Bullock", | |
| "company": "ARTIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 508-3320", | |
| "address": "260 Nelson Street, Cotopaxi, Iowa, 5171", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95618eed9bcce9a5c7", | |
| "index": 2143, | |
| "balance": "$2,385.13", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Laurel Colon", | |
| "company": "PROSURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 453-3853", | |
| "address": "136 Baughman Place, Carlos, Georgia, 1470", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956770d4e90257a5ab", | |
| "index": 2144, | |
| "balance": "$3,385.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosa Nolan", | |
| "company": "BIOSPAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 439-2192", | |
| "address": "716 Hampton Avenue, Elrama, Tennessee, 1616", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95155487d99b0f64be", | |
| "index": 2145, | |
| "balance": "$1,477.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Celia England", | |
| "company": "MARQET", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 468-2807", | |
| "address": "376 Victor Road, Falmouth, Virginia, 1868", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fac27af6c592b3f", | |
| "index": 2146, | |
| "balance": "$1,634.17", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Eddie Floyd", | |
| "company": "ASSISTIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 553-3786", | |
| "address": "700 Dodworth Street, Breinigsville, South Dakota, 7197", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955fac7997527a6ab3", | |
| "index": 2147, | |
| "balance": "$3,468.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Garcia Berger", | |
| "company": "DAYCORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (837) 519-2748", | |
| "address": "133 Holt Court, Biehle, Oklahoma, 7854", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9507f19c678f5fdd78", | |
| "index": 2148, | |
| "balance": "$2,071.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Latoya Dotson", | |
| "company": "ORBIFLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 421-2075", | |
| "address": "875 Campus Place, Dana, Texas, 5900", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9571cdd349c5aa3622", | |
| "index": 2149, | |
| "balance": "$1,462.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosetta Jimenez", | |
| "company": "EYERIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (890) 452-2592", | |
| "address": "746 McKibben Street, Veyo, Marshall Islands, 312", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a70a5535b93b157d", | |
| "index": 2150, | |
| "balance": "$3,865.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lou Snyder", | |
| "company": "EBIDCO", | |
| "email": "[email protected]", | |
| "phone": "+1 (873) 532-3138", | |
| "address": "414 Hoyt Street, Chaparrito, Maine, 5328", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953b3bae6f0b73a08d", | |
| "index": 2151, | |
| "balance": "$1,282.93", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cassandra Sellers", | |
| "company": "ECLIPTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (951) 552-2041", | |
| "address": "766 Montieth Street, Lithium, Colorado, 4226", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c3e1e52a3074edf3", | |
| "index": 2152, | |
| "balance": "$3,767.83", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Johanna Dorsey", | |
| "company": "QUILM", | |
| "email": "[email protected]", | |
| "phone": "+1 (989) 536-2406", | |
| "address": "775 Dare Court, Calvary, New Mexico, 9186", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952114c9f0c7fb34a4", | |
| "index": 2153, | |
| "balance": "$3,675.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Swanson Horn", | |
| "company": "QUINEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (931) 402-2316", | |
| "address": "658 Hewes Street, Dola, Florida, 9173", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f58d650c28b0368d", | |
| "index": 2154, | |
| "balance": "$2,523.18", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Steele Sanchez", | |
| "company": "INTERGEEK", | |
| "email": "[email protected]", | |
| "phone": "+1 (818) 502-3054", | |
| "address": "789 Howard Place, Chilton, Michigan, 4578", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b1ca24253c0f4c90", | |
| "index": 2155, | |
| "balance": "$3,971.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Pansy Patrick", | |
| "company": "MAGNEATO", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 479-2015", | |
| "address": "501 Colonial Road, Newkirk, Delaware, 9948", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f650961493af9e39", | |
| "index": 2156, | |
| "balance": "$2,779.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stout Lee", | |
| "company": "LUNCHPOD", | |
| "email": "[email protected]", | |
| "phone": "+1 (921) 592-3554", | |
| "address": "175 Beaumont Street, Libertytown, Virgin Islands, 7079", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95205abdd3ede90771", | |
| "index": 2157, | |
| "balance": "$3,024.54", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aimee Forbes", | |
| "company": "EXOSPACE", | |
| "email": "[email protected]", | |
| "phone": "+1 (852) 600-2721", | |
| "address": "323 Metrotech Courtr, Savannah, West Virginia, 3566", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956bd06cff3fed146c", | |
| "index": 2158, | |
| "balance": "$2,721.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Susanne Foley", | |
| "company": "NETERIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (984) 466-2128", | |
| "address": "618 Monaco Place, Why, Alabama, 3445", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95191ab4f31665d982", | |
| "index": 2159, | |
| "balance": "$3,915.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Williams Avery", | |
| "company": "ISOTRACK", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 600-2264", | |
| "address": "237 Ovington Avenue, Trucksville, North Carolina, 9877", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959687f2ccc3c7e79d", | |
| "index": 2160, | |
| "balance": "$3,705.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barlow Burgess", | |
| "company": "DATAGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (828) 415-2764", | |
| "address": "673 Middleton Street, Hayden, Indiana, 2796", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9503c650e58a7a6b62", | |
| "index": 2161, | |
| "balance": "$3,145.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hess Romero", | |
| "company": "SHOPABOUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (998) 504-3269", | |
| "address": "194 Oxford Street, Alfarata, Missouri, 263", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f6b14eabbab90c4e", | |
| "index": 2162, | |
| "balance": "$2,842.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hollie Barber", | |
| "company": "MICRONAUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 475-3824", | |
| "address": "429 Sumpter Street, Coultervillle, Arizona, 1482", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d9a11c834337cd74", | |
| "index": 2163, | |
| "balance": "$3,141.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Hilda Bentley", | |
| "company": "ENQUILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (919) 540-3301", | |
| "address": "240 Auburn Place, Dotsero, Massachusetts, 6328", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f6bab38a704c99e2", | |
| "index": 2164, | |
| "balance": "$3,541.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wilcox Figueroa", | |
| "company": "SNACKTION", | |
| "email": "[email protected]", | |
| "phone": "+1 (966) 513-3638", | |
| "address": "708 Jackson Street, Torboy, New Jersey, 9851", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95638920af1b9dee8d", | |
| "index": 2165, | |
| "balance": "$1,132.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kitty Stephenson", | |
| "company": "LUDAK", | |
| "email": "[email protected]", | |
| "phone": "+1 (950) 521-3057", | |
| "address": "524 Willow Place, Farmington, Pennsylvania, 9053", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959e8167dba55a5e29", | |
| "index": 2166, | |
| "balance": "$2,526.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Knowles Williams", | |
| "company": "TELPOD", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 466-2441", | |
| "address": "497 Harkness Avenue, Fairfield, Wisconsin, 3239", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f7887eb16de228b6", | |
| "index": 2167, | |
| "balance": "$3,336.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Campos Jordan", | |
| "company": "RONELON", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 552-3690", | |
| "address": "235 Revere Place, Sheatown, Alaska, 4963", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a96d6e7b870c6ef9", | |
| "index": 2168, | |
| "balance": "$1,555.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcconnell Stewart", | |
| "company": "SULTRAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (853) 571-2944", | |
| "address": "938 Jamaica Avenue, Sperryville, Vermont, 9686", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958641a43bc98ba48b", | |
| "index": 2169, | |
| "balance": "$2,398.22", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Delgado West", | |
| "company": "GRUPOLI", | |
| "email": "[email protected]", | |
| "phone": "+1 (814) 533-2766", | |
| "address": "237 Russell Street, Troy, Illinois, 2496", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951cc051bf6ea4fc73", | |
| "index": 2170, | |
| "balance": "$1,996.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Zelma Hardy", | |
| "company": "QUONATA", | |
| "email": "[email protected]", | |
| "phone": "+1 (840) 495-2619", | |
| "address": "135 Kossuth Place, Muir, Utah, 4135", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954490ad74b6bf1062", | |
| "index": 2171, | |
| "balance": "$1,453.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sharpe Carlson", | |
| "company": "EARTHPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (971) 481-3847", | |
| "address": "753 Quentin Street, Murillo, Connecticut, 2863", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b1c5c5d96d671a74", | |
| "index": 2172, | |
| "balance": "$3,992.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Duncan Hernandez", | |
| "company": "JASPER", | |
| "email": "[email protected]", | |
| "phone": "+1 (802) 476-2380", | |
| "address": "379 Pilling Street, Leeper, Oregon, 7821", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fe68f3248f7cae69", | |
| "index": 2173, | |
| "balance": "$1,919.41", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Franklin Shannon", | |
| "company": "DIGIAL", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 488-2859", | |
| "address": "524 Jay Street, Waukeenah, Federated States Of Micronesia, 5630", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9546fa0553ea5adef0", | |
| "index": 2174, | |
| "balance": "$1,270.19", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Booth Estes", | |
| "company": "ARCHITAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (963) 461-2088", | |
| "address": "792 Eldert Street, Martinez, Kentucky, 4541", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951f862ce40cc42e7c", | |
| "index": 2175, | |
| "balance": "$2,725.73", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mayra Walsh", | |
| "company": "BOINK", | |
| "email": "[email protected]", | |
| "phone": "+1 (826) 533-3024", | |
| "address": "255 Saratoga Avenue, Gorham, Puerto Rico, 658", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f0a197e8724d9758", | |
| "index": 2176, | |
| "balance": "$3,594.57", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kerry Garza", | |
| "company": "NAMEBOX", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 584-2374", | |
| "address": "733 Trucklemans Lane, Jamestown, Idaho, 2890", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958a4ea48cc511343d", | |
| "index": 2177, | |
| "balance": "$2,668.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kathie Grimes", | |
| "company": "DOGTOWN", | |
| "email": "[email protected]", | |
| "phone": "+1 (956) 596-2953", | |
| "address": "873 Clara Street, Emison, Nevada, 105", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954ae63bd59f80d3bd", | |
| "index": 2178, | |
| "balance": "$3,722.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Wyatt Macias", | |
| "company": "EARGO", | |
| "email": "[email protected]", | |
| "phone": "+1 (854) 570-2381", | |
| "address": "305 Ferris Street, Beason, South Carolina, 2102", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95893ee948df6fa106", | |
| "index": 2179, | |
| "balance": "$2,449.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Avila Underwood", | |
| "company": "ISONUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (809) 476-2181", | |
| "address": "712 Eckford Street, Clarktown, Minnesota, 8162", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c7a8e1b57c84f1da", | |
| "index": 2180, | |
| "balance": "$1,468.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shelley Aguilar", | |
| "company": "STROZEN", | |
| "email": "[email protected]", | |
| "phone": "+1 (835) 407-3163", | |
| "address": "319 School Lane, Welch, North Dakota, 5531", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95424540e7a10642d3", | |
| "index": 2181, | |
| "balance": "$1,336.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Megan Fischer", | |
| "company": "DIGIGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 587-2912", | |
| "address": "870 Nassau Avenue, Lisco, District Of Columbia, 1746", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95106eb698587eddbc", | |
| "index": 2182, | |
| "balance": "$3,258.58", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kenya Briggs", | |
| "company": "NURALI", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 521-2826", | |
| "address": "486 Hancock Street, Veguita, New York, 9338", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95727c6b9181af8f2b", | |
| "index": 2183, | |
| "balance": "$2,553.70", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ramona Tanner", | |
| "company": "SPACEWAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (997) 521-2949", | |
| "address": "374 Varanda Place, Wakulla, Montana, 4633", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9559158dac5291c98e", | |
| "index": 2184, | |
| "balance": "$1,649.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Susana Padilla", | |
| "company": "ZENTILITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 525-3335", | |
| "address": "717 Lincoln Terrace, Gallina, Arkansas, 4569", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f71f54f2d70803eb", | |
| "index": 2185, | |
| "balance": "$2,477.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ashley Joyce", | |
| "company": "ISOLOGICS", | |
| "email": "[email protected]", | |
| "phone": "+1 (866) 461-2242", | |
| "address": "805 Suydam Street, Harold, Kansas, 7392", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d29c5bb3b6dd8c64", | |
| "index": 2186, | |
| "balance": "$1,159.02", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lester Castaneda", | |
| "company": "COGNICODE", | |
| "email": "[email protected]", | |
| "phone": "+1 (808) 566-2812", | |
| "address": "461 Vista Place, Kerby, Guam, 7585", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952ff0f3eed8795472", | |
| "index": 2187, | |
| "balance": "$1,562.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Haley Miranda", | |
| "company": "IDEALIS", | |
| "email": "[email protected]", | |
| "phone": "+1 (943) 582-3238", | |
| "address": "448 Dover Street, Babb, Rhode Island, 1789", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ee55e2050b22bc2", | |
| "index": 2188, | |
| "balance": "$2,897.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Salinas Stein", | |
| "company": "URBANSHEE", | |
| "email": "[email protected]", | |
| "phone": "+1 (841) 515-2365", | |
| "address": "758 Williams Avenue, Saticoy, Palau, 7675", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956f59d523b228df91", | |
| "index": 2189, | |
| "balance": "$1,196.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Weber Welch", | |
| "company": "SPLINX", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 413-2522", | |
| "address": "255 Lake Avenue, Kidder, Wyoming, 2207", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c2c63f2477a5c912", | |
| "index": 2190, | |
| "balance": "$1,066.55", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Norton Donovan", | |
| "company": "ZOARERE", | |
| "email": "[email protected]", | |
| "phone": "+1 (823) 442-2513", | |
| "address": "746 Lewis Avenue, Boykin, Nebraska, 1912", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95abf50ed9fd007c65", | |
| "index": 2191, | |
| "balance": "$3,181.86", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dionne Rivers", | |
| "company": "GINKLE", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 577-3034", | |
| "address": "146 Coyle Street, Brewster, Northern Mariana Islands, 5688", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9527e05de309d6dd69", | |
| "index": 2192, | |
| "balance": "$2,922.32", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cathy Foreman", | |
| "company": "AQUACINE", | |
| "email": "[email protected]", | |
| "phone": "+1 (909) 503-3245", | |
| "address": "281 Kane Street, Rockbridge, California, 9981", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a1cd5838ae194e7f", | |
| "index": 2193, | |
| "balance": "$3,006.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Suzanne Ferrell", | |
| "company": "ZOMBOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 494-3208", | |
| "address": "806 Tapscott Street, Fredericktown, Louisiana, 5340", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959563682feb040856", | |
| "index": 2194, | |
| "balance": "$1,880.77", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aurora Fleming", | |
| "company": "QUADEEBO", | |
| "email": "[email protected]", | |
| "phone": "+1 (823) 427-2970", | |
| "address": "761 Indiana Place, Needmore, Mississippi, 7967", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95253e27760c1bf846", | |
| "index": 2195, | |
| "balance": "$1,922.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Aguirre Hardin", | |
| "company": "ENTROPIX", | |
| "email": "[email protected]", | |
| "phone": "+1 (993) 593-2473", | |
| "address": "933 Seacoast Terrace, Dorneyville, Hawaii, 4730", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952b73052c6831ad39", | |
| "index": 2196, | |
| "balance": "$2,201.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Compton Woodard", | |
| "company": "GLASSTEP", | |
| "email": "[email protected]", | |
| "phone": "+1 (855) 444-2244", | |
| "address": "629 Rutherford Place, Winston, Washington, 3748", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9549201c9a943e1caa", | |
| "index": 2197, | |
| "balance": "$2,094.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Richardson Simon", | |
| "company": "VICON", | |
| "email": "[email protected]", | |
| "phone": "+1 (813) 516-3745", | |
| "address": "269 Amboy Street, Harrodsburg, American Samoa, 768", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d56ddf64a9e6b383", | |
| "index": 2198, | |
| "balance": "$3,590.92", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Silva Moore", | |
| "company": "ZIALACTIC", | |
| "email": "[email protected]", | |
| "phone": "+1 (825) 557-3389", | |
| "address": "514 Cook Street, Vowinckel, Maryland, 610", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95687f866ed1072c88", | |
| "index": 2199, | |
| "balance": "$1,035.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Torres Shepard", | |
| "company": "COMFIRM", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 455-3156", | |
| "address": "436 Cozine Avenue, Hinsdale, Ohio, 1672", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956beca4e247f2aaab", | |
| "index": 2200, | |
| "balance": "$1,938.01", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rasmussen Morales", | |
| "company": "ACUSAGE", | |
| "email": "[email protected]", | |
| "phone": "+1 (968) 408-2869", | |
| "address": "391 Temple Court, Romeville, Iowa, 5991", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950cbd3b9b270f1109", | |
| "index": 2201, | |
| "balance": "$3,437.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mcneil Cardenas", | |
| "company": "OTHERSIDE", | |
| "email": "[email protected]", | |
| "phone": "+1 (951) 420-3900", | |
| "address": "475 Etna Street, Elliott, Georgia, 5739", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b2779dddc780b0f7", | |
| "index": 2202, | |
| "balance": "$2,520.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Camacho Finch", | |
| "company": "ZILENCIO", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 418-2057", | |
| "address": "254 Bayview Avenue, Gouglersville, Tennessee, 164", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb959c5cf2857aa0c626", | |
| "index": 2203, | |
| "balance": "$1,521.16", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Flossie Carrillo", | |
| "company": "ZOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (955) 412-2364", | |
| "address": "554 Nevins Street, Golconda, Virginia, 3490", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ba4d05659dc695bf", | |
| "index": 2204, | |
| "balance": "$1,584.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Thelma Flores", | |
| "company": "REALMO", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 457-2778", | |
| "address": "441 Boardwalk , Cowiche, South Dakota, 4827", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d640d991847c6e3f", | |
| "index": 2205, | |
| "balance": "$3,093.79", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Brewer Kirk", | |
| "company": "ORBOID", | |
| "email": "[email protected]", | |
| "phone": "+1 (830) 528-2659", | |
| "address": "465 Noble Street, Hailesboro, Oklahoma, 6468", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95201deb4c3007dde7", | |
| "index": 2206, | |
| "balance": "$1,981.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sosa Maddox", | |
| "company": "ILLUMITY", | |
| "email": "[email protected]", | |
| "phone": "+1 (849) 515-2219", | |
| "address": "675 Wilson Avenue, Fulford, Texas, 8026", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9515a30b0f6603300b", | |
| "index": 2207, | |
| "balance": "$3,315.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Acosta Beck", | |
| "company": "UNDERTAP", | |
| "email": "[email protected]", | |
| "phone": "+1 (923) 572-2878", | |
| "address": "127 Wallabout Street, Zortman, Marshall Islands, 3694", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952db11ac589c2c836", | |
| "index": 2208, | |
| "balance": "$3,061.45", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kinney Nichols", | |
| "company": "COMTENT", | |
| "email": "[email protected]", | |
| "phone": "+1 (964) 414-2842", | |
| "address": "556 Wakeman Place, Drytown, Maine, 9580", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b30423a37c8f083c", | |
| "index": 2209, | |
| "balance": "$3,670.06", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dyer Paul", | |
| "company": "BITTOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (906) 532-3219", | |
| "address": "286 Glen Street, Stouchsburg, Colorado, 7022", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9503233fffaf992092", | |
| "index": 2210, | |
| "balance": "$2,635.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bernadette Cantu", | |
| "company": "GRONK", | |
| "email": "[email protected]", | |
| "phone": "+1 (944) 531-2043", | |
| "address": "501 Seabring Street, Leyner, New Mexico, 3587", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9511a24a431a05371e", | |
| "index": 2211, | |
| "balance": "$3,407.67", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Morse Carpenter", | |
| "company": "APPLIDEC", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 553-3621", | |
| "address": "857 Wolf Place, Ladera, Florida, 6911", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951222aa52d57bd7c9", | |
| "index": 2212, | |
| "balance": "$3,932.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Elva Dyer", | |
| "company": "QUALITEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 406-2846", | |
| "address": "440 Winthrop Street, Clarksburg, Michigan, 7457", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95b2326ba46ca16952", | |
| "index": 2213, | |
| "balance": "$3,756.95", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Haynes Mays", | |
| "company": "ZEROLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (911) 565-2048", | |
| "address": "945 Roosevelt Court, Bakersville, Delaware, 6110", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95c49775ea3e195857", | |
| "index": 2214, | |
| "balance": "$1,773.96", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Michael Farmer", | |
| "company": "HYPLEX", | |
| "email": "[email protected]", | |
| "phone": "+1 (910) 442-2129", | |
| "address": "585 Clay Street, Gibsonia, Virgin Islands, 8912", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954eef0bd006d3bd1a", | |
| "index": 2215, | |
| "balance": "$3,155.26", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Odom Ratliff", | |
| "company": "DIGITALUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (814) 559-3994", | |
| "address": "997 Blake Court, Dante, West Virginia, 1405", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954ad658730ba7e7b3", | |
| "index": 2216, | |
| "balance": "$1,293.90", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Riley Hughes", | |
| "company": "EXOSWITCH", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 542-3083", | |
| "address": "339 Story Street, Alden, Alabama, 6781", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95010573193dbeeece", | |
| "index": 2217, | |
| "balance": "$2,066.42", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chambers Roberts", | |
| "company": "EXERTA", | |
| "email": "[email protected]", | |
| "phone": "+1 (949) 467-4000", | |
| "address": "203 Fountain Avenue, Saranap, North Carolina, 2114", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e71c3ee51d6794c1", | |
| "index": 2218, | |
| "balance": "$3,675.71", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Allie Curry", | |
| "company": "ZENSUS", | |
| "email": "[email protected]", | |
| "phone": "+1 (915) 499-3589", | |
| "address": "863 Argyle Road, Kenwood, Indiana, 2931", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9586e1aff84790fcb6", | |
| "index": 2219, | |
| "balance": "$2,190.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Shepard Vargas", | |
| "company": "BOLAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 548-3978", | |
| "address": "495 Applegate Court, Wollochet, Missouri, 4013", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb952fdbf4241508ed9c", | |
| "index": 2220, | |
| "balance": "$2,918.44", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Florence Leach", | |
| "company": "ZENSOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (918) 437-2834", | |
| "address": "196 Ridgewood Place, Bluetown, Arizona, 9045", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95cede570597758382", | |
| "index": 2221, | |
| "balance": "$2,442.76", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sullivan Hudson", | |
| "company": "GENMOM", | |
| "email": "[email protected]", | |
| "phone": "+1 (806) 430-2340", | |
| "address": "584 Leonora Court, Sparkill, Massachusetts, 9945", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fbc46f9dfec2662", | |
| "index": 2222, | |
| "balance": "$2,357.14", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jayne Lloyd", | |
| "company": "ZENTIME", | |
| "email": "[email protected]", | |
| "phone": "+1 (875) 586-3263", | |
| "address": "779 Atlantic Avenue, Caledonia, New Jersey, 7582", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e96c71e1ecca26f4", | |
| "index": 2223, | |
| "balance": "$2,644.21", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Rosemarie Perry", | |
| "company": "AQUAZURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (861) 430-3450", | |
| "address": "132 Hubbard Place, Selma, Pennsylvania, 6684", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957dab76d4fd00562b", | |
| "index": 2224, | |
| "balance": "$2,249.43", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Sonia Chapman", | |
| "company": "MANGELICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (913) 593-3150", | |
| "address": "721 Cypress Court, Eastmont, Wisconsin, 7193", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aeead15cb3c8fae7", | |
| "index": 2225, | |
| "balance": "$3,872.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Ola Murphy", | |
| "company": "SYNTAC", | |
| "email": "[email protected]", | |
| "phone": "+1 (891) 512-2124", | |
| "address": "209 Baltic Street, Jenkinsville, Alaska, 5223", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958ffc04ea55126c62", | |
| "index": 2226, | |
| "balance": "$2,649.25", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cole Kline", | |
| "company": "BOILCAT", | |
| "email": "[email protected]", | |
| "phone": "+1 (856) 468-2074", | |
| "address": "783 Emerson Place, Lupton, Vermont, 4256", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9535de79d3ae18eddf", | |
| "index": 2227, | |
| "balance": "$1,591.46", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Erica Vazquez", | |
| "company": "BLUEGRAIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 517-3949", | |
| "address": "613 Village Court, Gibbsville, Illinois, 337", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9588ab9c2233aba3a2", | |
| "index": 2228, | |
| "balance": "$1,811.75", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Figueroa Whitley", | |
| "company": "CHORIZON", | |
| "email": "[email protected]", | |
| "phone": "+1 (946) 488-3397", | |
| "address": "874 Coleman Street, Carbonville, Utah, 1326", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9537bc7f2f58be81d1", | |
| "index": 2229, | |
| "balance": "$3,800.64", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Duffy Sheppard", | |
| "company": "ZOXY", | |
| "email": "[email protected]", | |
| "phone": "+1 (933) 562-3955", | |
| "address": "625 Harrison Place, Marysville, Connecticut, 5743", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95e271af48bcae1383", | |
| "index": 2230, | |
| "balance": "$2,063.61", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Earline Quinn", | |
| "company": "PHARMACON", | |
| "email": "[email protected]", | |
| "phone": "+1 (937) 498-3815", | |
| "address": "215 Whitney Avenue, Darbydale, Oregon, 9284", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957ff5eb494e65fe56", | |
| "index": 2231, | |
| "balance": "$1,312.99", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Dana Arnold", | |
| "company": "KONGENE", | |
| "email": "[email protected]", | |
| "phone": "+1 (863) 476-2209", | |
| "address": "659 Greenwood Avenue, Byrnedale, Federated States Of Micronesia, 1703", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957c595b10be72be0f", | |
| "index": 2232, | |
| "balance": "$1,054.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Robbins Sherman", | |
| "company": "KINETICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (973) 475-2942", | |
| "address": "208 Dobbin Street, Westphalia, Kentucky, 4131", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95606bf6b3c2265d49", | |
| "index": 2233, | |
| "balance": "$1,611.07", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Velma Byers", | |
| "company": "LUMBREX", | |
| "email": "[email protected]", | |
| "phone": "+1 (882) 479-3358", | |
| "address": "627 Coleridge Street, Falconaire, Puerto Rico, 6866", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951ac97196387f6b54", | |
| "index": 2234, | |
| "balance": "$3,035.28", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Erna Randolph", | |
| "company": "AQUASURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (877) 537-3366", | |
| "address": "159 Strong Place, Jugtown, Idaho, 2181", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95d118bcec71a1f6fd", | |
| "index": 2235, | |
| "balance": "$1,455.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Coleen Terrell", | |
| "company": "PULZE", | |
| "email": "[email protected]", | |
| "phone": "+1 (874) 492-2298", | |
| "address": "426 Rock Street, Olney, Nevada, 2934", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9550787aaa77524512", | |
| "index": 2236, | |
| "balance": "$3,571.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lowery Dejesus", | |
| "company": "ZIORE", | |
| "email": "[email protected]", | |
| "phone": "+1 (920) 437-3108", | |
| "address": "664 Miami Court, Campo, South Carolina, 3802", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95fbe1c41c5f7c725b", | |
| "index": 2237, | |
| "balance": "$2,134.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bailey Alvarez", | |
| "company": "TUBALUM", | |
| "email": "[email protected]", | |
| "phone": "+1 (953) 554-3096", | |
| "address": "867 Tapscott Avenue, Aurora, Minnesota, 8742", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9534a752ccb02b9ffa", | |
| "index": 2238, | |
| "balance": "$3,731.38", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Krystal Yates", | |
| "company": "OBONES", | |
| "email": "[email protected]", | |
| "phone": "+1 (927) 464-2746", | |
| "address": "869 Norfolk Street, Tilleda, North Dakota, 1294", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95199129db1e715f20", | |
| "index": 2239, | |
| "balance": "$3,078.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Mollie Walters", | |
| "company": "HATOLOGY", | |
| "email": "[email protected]", | |
| "phone": "+1 (924) 531-3258", | |
| "address": "258 Hendrickson Street, Richville, District Of Columbia, 5140", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb953d71d5bbf5d4981a", | |
| "index": 2240, | |
| "balance": "$2,661.60", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Padilla Kirby", | |
| "company": "APPLICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (845) 506-3849", | |
| "address": "187 Kent Avenue, Oneida, New York, 9655", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb950676ad9a5cdb269b", | |
| "index": 2241, | |
| "balance": "$2,885.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Graciela Greene", | |
| "company": "ZOUNDS", | |
| "email": "[email protected]", | |
| "phone": "+1 (940) 509-3216", | |
| "address": "797 Hanson Place, Caron, Montana, 7967", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95560a2ff40e1bd957", | |
| "index": 2242, | |
| "balance": "$2,629.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Woods Mercado", | |
| "company": "SIGNIDYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (952) 540-3060", | |
| "address": "137 Mill Lane, Sidman, Arkansas, 6160", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb954e7d9503a586ba3f", | |
| "index": 2243, | |
| "balance": "$1,081.51", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Jillian Goff", | |
| "company": "FANFARE", | |
| "email": "[email protected]", | |
| "phone": "+1 (912) 415-2501", | |
| "address": "872 Cox Place, Deseret, Kansas, 9080", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956fe209d4e8b3abc3", | |
| "index": 2244, | |
| "balance": "$1,092.65", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Angela Mccarthy", | |
| "company": "UTARA", | |
| "email": "[email protected]", | |
| "phone": "+1 (884) 517-2675", | |
| "address": "531 Throop Avenue, Nash, Guam, 808", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb957278b87cf1f91f0f", | |
| "index": 2245, | |
| "balance": "$1,783.63", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Selma Goodwin", | |
| "company": "STEELFAB", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 451-3872", | |
| "address": "751 Hastings Street, Denio, Rhode Island, 805", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9550cfd7f36ea382c2", | |
| "index": 2246, | |
| "balance": "$2,055.12", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Bryan Humphrey", | |
| "company": "SOLGAN", | |
| "email": "[email protected]", | |
| "phone": "+1 (885) 486-3371", | |
| "address": "489 Heyward Street, Matheny, Palau, 8043", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95a12cf47e6fa0f96d", | |
| "index": 2247, | |
| "balance": "$1,772.03", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barber Walter", | |
| "company": "PROTODYNE", | |
| "email": "[email protected]", | |
| "phone": "+1 (879) 556-2486", | |
| "address": "524 Kenmore Court, Ebro, Wyoming, 2397", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f6054c0456b2ceb0", | |
| "index": 2248, | |
| "balance": "$3,668.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Clare Dixon", | |
| "company": "ENTOGROK", | |
| "email": "[email protected]", | |
| "phone": "+1 (865) 472-2351", | |
| "address": "344 Albany Avenue, Tuskahoma, Nebraska, 4442", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95f4fd6710677c4c21", | |
| "index": 2249, | |
| "balance": "$1,546.09", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Christa Potter", | |
| "company": "CENTREXIN", | |
| "email": "[email protected]", | |
| "phone": "+1 (833) 578-2779", | |
| "address": "653 Humboldt Street, Rockingham, Northern Mariana Islands, 2504", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb951501c4a6f9fed9f2", | |
| "index": 2250, | |
| "balance": "$1,353.00", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Terrell King", | |
| "company": "EGYPTO", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 442-3896", | |
| "address": "265 Schenectady Avenue, Nettie, California, 4209", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95946ac9edbf27a2b6", | |
| "index": 2251, | |
| "balance": "$3,889.47", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cheri Madden", | |
| "company": "OBLIQ", | |
| "email": "[email protected]", | |
| "phone": "+1 (888) 470-2097", | |
| "address": "360 Poplar Avenue, Tecolotito, Louisiana, 2043", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95449580e9cf4440a8", | |
| "index": 2252, | |
| "balance": "$3,466.98", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Kimberly Marsh", | |
| "company": "QUOTEZART", | |
| "email": "[email protected]", | |
| "phone": "+1 (967) 548-2016", | |
| "address": "141 Cameron Court, Balm, Mississippi, 854", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9566bd0ee53a6c7ac3", | |
| "index": 2253, | |
| "balance": "$1,564.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fox Buckner", | |
| "company": "COMTREK", | |
| "email": "[email protected]", | |
| "phone": "+1 (839) 468-2949", | |
| "address": "502 Robert Street, Richford, Hawaii, 1579", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955ce601c33ce15d03", | |
| "index": 2254, | |
| "balance": "$1,477.27", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Burris Mason", | |
| "company": "UNI", | |
| "email": "[email protected]", | |
| "phone": "+1 (900) 433-3627", | |
| "address": "107 Sunnyside Court, Crawfordsville, Washington, 3253", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955489b0e18f8b11bd", | |
| "index": 2255, | |
| "balance": "$1,925.91", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Erin Douglas", | |
| "company": "ASSISTIA", | |
| "email": "[email protected]", | |
| "phone": "+1 (831) 515-2146", | |
| "address": "968 Dewitt Avenue, Trexlertown, American Samoa, 3970", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9594a7fa029f2cc7d9", | |
| "index": 2256, | |
| "balance": "$3,536.20", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Moon Goodman", | |
| "company": "PAPRICUT", | |
| "email": "[email protected]", | |
| "phone": "+1 (980) 517-3236", | |
| "address": "726 Kensington Walk, Oley, Maryland, 6076", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9528943965e565dc83", | |
| "index": 2257, | |
| "balance": "$3,616.33", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Greene Kim", | |
| "company": "DATACATOR", | |
| "email": "[email protected]", | |
| "phone": "+1 (947) 503-2235", | |
| "address": "918 Interborough Parkway, Longbranch, Ohio, 6947", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ca57d7c48d6530ef", | |
| "index": 2258, | |
| "balance": "$3,860.88", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Merle Rowland", | |
| "company": "ULTRASURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (827) 537-2382", | |
| "address": "385 Dooley Street, Bend, Iowa, 4528", | |
| "favoriteFruit": "apple" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958986d63e8aac27c3", | |
| "index": 2259, | |
| "balance": "$2,820.31", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Cristina Wyatt", | |
| "company": "PROXSOFT", | |
| "email": "[email protected]", | |
| "phone": "+1 (935) 405-2599", | |
| "address": "499 Sedgwick Place, Benson, Georgia, 2865", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb955742c3cd1ef88466", | |
| "index": 2260, | |
| "balance": "$2,979.59", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Stephenson Salas", | |
| "company": "UNISURE", | |
| "email": "[email protected]", | |
| "phone": "+1 (934) 453-2623", | |
| "address": "400 Veranda Place, Sunriver, Tennessee, 7303", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9527ce8a01bc0d1f43", | |
| "index": 2261, | |
| "balance": "$1,709.04", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Barrett Lowery", | |
| "company": "PYRAMAX", | |
| "email": "[email protected]", | |
| "phone": "+1 (800) 458-2970", | |
| "address": "674 Alabama Avenue, Sedley, Virginia, 2917", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb958afade31202990a7", | |
| "index": 2262, | |
| "balance": "$1,065.49", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Chavez Coleman", | |
| "company": "INTERFIND", | |
| "email": "[email protected]", | |
| "phone": "+1 (887) 460-3968", | |
| "address": "810 Cheever Place, Winesburg, South Dakota, 6986", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9503173f76960501d6", | |
| "index": 2263, | |
| "balance": "$1,982.69", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Vonda Strong", | |
| "company": "PREMIANT", | |
| "email": "[email protected]", | |
| "phone": "+1 (805) 543-3413", | |
| "address": "809 Madison Place, Shawmut, Oklahoma, 9801", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95aa6a347ee30d377e", | |
| "index": 2264, | |
| "balance": "$2,970.97", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Selena Flowers", | |
| "company": "GEEKWAGON", | |
| "email": "[email protected]", | |
| "phone": "+1 (965) 522-2563", | |
| "address": "690 Dean Street, Gratton, Texas, 4340", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95268c5fe1ecb3f7c1", | |
| "index": 2265, | |
| "balance": "$2,616.82", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Walsh Bradley", | |
| "company": "KOG", | |
| "email": "[email protected]", | |
| "phone": "+1 (972) 482-3465", | |
| "address": "885 Abbey Court, Kohatk, Marshall Islands, 631", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95ae457f492f3346a1", | |
| "index": 2266, | |
| "balance": "$3,428.08", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Fannie Dale", | |
| "company": "IDETICA", | |
| "email": "[email protected]", | |
| "phone": "+1 (870) 523-3556", | |
| "address": "807 Railroad Avenue, Cloverdale, Maine, 2717", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb95317a84a5c9fec8a8", | |
| "index": 2267, | |
| "balance": "$2,361.10", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Lynn Jenkins", | |
| "company": "AQUASSEUR", | |
| "email": "[email protected]", | |
| "phone": "+1 (801) 473-2154", | |
| "address": "337 Quay Street, Cassel, Colorado, 4301", | |
| "favoriteFruit": "strawberry" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb9538feda7bbe1c170c", | |
| "index": 2268, | |
| "balance": "$3,713.35", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Russell Logan", | |
| "company": "CENTICE", | |
| "email": "[email protected]", | |
| "phone": "+1 (893) 561-3161", | |
| "address": "690 Anthony Street, Hackneyville, New Mexico, 265", | |
| "favoriteFruit": "banana" | |
| }')); | |
| insert into barry.docs (dcontent) values(JSON_TO_BSON('{ | |
| "_id": "5d52eb956b47ede46d94fe50", | |
| "index": 2269, | |
| "balance": "$1,148.34", | |
| "picture": "http://placehold.it/32x32", | |
| "name": "Trevino Santiago", | |
| "company": "DYNO", | |
| "email": "[email protected]", | |
| "phone": "+1 (857) 51 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment