🤔 I don't even have a stand-alone version of the Kotlin compiler. One came with IntelliJ and each of my project has it's own version configured in the buildchain via maven/gradle. So all you should be access to the maven repository
https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib
this is the url to the available versions page, so the one you're looking for will differ a bit, I don't even know since I simply write
id("org.jetbrains.kotlin.jvm") version "1.5.10"
in my build.gradle.kts file.