Cant scrape multiple pages - only 1st 10 pages gets scrapped

Describe the problem. I have followed the video and i am able to only get first 9 pages of the website. There are 100 more pages on the website but i cant figure out how i can fix it.

Url: https://www.zaubacorp.com/company-list/nic-F/status-Active/p-1-company.html

Sitemap:
{"_id":"zaubacorp","startUrl":["https://www.zaubacorp.com/company-list/nic-F/status-Active-company.html"],"selectors":[{"id":"Construction","type":"SelectorLink","parentSelectors":["_root","Pages"],"selector":"td a","multiple":true,"delay":0},{"id":"Company Name","type":"SelectorText","parentSelectors":["Construction"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Categories","type":"SelectorText","parentSelectors":["Construction"],"selector":"tr:contains('Activity') td:nth-of-type(2) p:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Director Names","type":"SelectorText","parentSelectors":["Construction"],"selector":".accordion-toggle td:nth-of-type(2) a","multiple":false,"regex":"","delay":0},{"id":"Address","type":"SelectorText","parentSelectors":["Construction"],"selector":"p:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"Email Address","type":"SelectorText","parentSelectors":["Construction"],"selector":".col-12 .col-lg-6 p:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Pages","type":"SelectorLink","parentSelectors":["_root"],"selector":".block div div a:nth-of-type(n+2)","multiple":true,"delay":"500"}]}

Hi, you're almost there. Your scraper structure looks fine and you only need to make the "Pages" selector a child of itself (recursive) to make it work.

Sure. Could you walk me through exactly what i need to do. As i am stuck here!