Ability to produce multiple links in Velocity-script loop that will end up with their distinctive token if tracked

Ability to produce multiple links in Velocity-script loop that will end up with their distinctive token if tracked

<b>There is no Velocity in Language dropdown. Just because of that HTML/XML language was chosen here</b> <br><br>
<b>Following links will work correct from Velocity:</b> <br><br>
<a href="https://www.veeam.com" target="_blank">Example of static link to veeam.com</a> <br><br>

#set ( $myLink01 = "www.veeam.com/how-to-videos.html" )
<a href="https://${myLink01}" target="_blank">Example of static link from variable to veeam.com/how-to-videos.html</a> <br>

<br><br>

## --- Links with problem -- inside of the Array - s ##
<b>Example of the problem: </b> <br>
<br> if we generate links inside of the array -- when we are sending ecard to Test we will have the same links to Page with Title for <b>Veeam Basics (Americas)</b>: 
<br> But links should be different ones<br>
It means that in test for All links we have link for the last item in array: <b>Veeam Basics (Americas)</b><br><br>

#set( $arr_database = {} )


#set( $arr_database.array_0 = {
    "name": "Fundamentals of Data Protection (APJ)",
    "lp": "www.veeam.com/product-demo/fundamentals-data-protection-apj-live-product-demo-4487.html"
})

#set( $arr_database.array_1 = {
    "name": "Veeam Backup for Microsoft Office 365 – Best Practices (EMEA)",
    "lp": "www.veeam.com/product-demo/backup-microsoft-office-365-best-practices-emea-live-product-demo-4331.html"
})


#set( $arr_database.array_2 = {
    "name": "Veeam Basics (Americas)",
    "lp": "www.veeam.com/product-demo/basics-americas-live-product-demo-4238.html"
})

#set( $arr_database = [
$arr_database.array_0, $arr_database.array_1, $arr_database.array_2
])

#foreach ($arr_item in $arr_database )
    #set( $webinar_lp = $arr_item.lp )
    $arr_item.name 
    <br>
    <a style="color: #00b336; text-decoration: none;" href="https://${webinar_lp}" target="_blank">
    </a><br><br>
        link to landing page (works properly at Email Preview, doesn't work properly when email received: links should be different in this block)
#end 
## --- Links with problem -- inside of the Array - e ##

Description - Velocity can't 'by design' produce multiples (different) links in a loop that will end up with their distinctive token if tracked

Why is this feature important to you - it's extremely important for business users to track customer activity in order to nurture and score them.

How would you like the feature to work - Velocity script-made links produce multiple links by array and all of them are different from each other with "Include mkt_tok" enabled as it shows on email preview.

Current Behaviour - Velocity script-made links looks good (valid) on email preview (one different link per event), but become identical with "Include mkt_tok" enabled when email is sent.

Velocity script can't 'by design' produce multiples links that will end up with their disctincive token if tracked. The idea is to fix this design feature.