Scrape multiple product photo's per product

I want to scrape all product-images from all products from :

Url: https://www.gistron.com/products/3/moederborden.html

I created the next sitemap for which datapreview on all products show the images I want.

Sitemap:
{"_id":"mobo","startUrl":["https://www.gistron.com/products/3/moederborden.html"],"selectors":[{"id":"product","type":"SelectorLink","parentSelectors":["_root"],"selector":"[data-filter46126='Gigabit Ethernet'][data-filterfabrikant='Asus'] td:nth-of-type(2) a","multiple":true,"delay":0},{"id":"images","type":"SelectorElementAttribute","parentSelectors":["product"],"selector":"div.mCSB_container>div>div>a","multiple":true,"extractAttribute":"href","delay":0}]}

When I start scraping and refresh the data it looks like that every image gets its own record, which is perfect. But after scraping is finished all products have just 1 record whith a random image in the images field.

Question : why does it throw away all record with multiple images ?

Try this with Page load delay: 5000

{"_id":"forum-gistron","startUrl":["https://www.gistron.com/products/3/moederborden.html"],"selectors":[{"id":"product","type":"SelectorLink","parentSelectors":["_root"],"selector":"div.content_padding table tr td:nth-of-type(2) a","multiple":true,"delay":0},{"id":"images","type":"SelectorElementAttribute","parentSelectors":["product"],"selector":"div.mCSB_container>div>div>a","multiple":true,"extractAttribute":"href","delay":0}]}

You would need to sort final results by web-scraper-order or product column.

Thank you very much for your solution. I checked it and it works like sunshine. I'm figuring out how your selector works different then mine, but thats because I want to learn.
Thank you again