You can see what the numbers mean in RFC959 4.1.2 DATA PORT (PORT)
I couldn't find a site where I could deep link to the exact spot so you'll have to look for DATA PORT (PORT)
in there.
If you look at the response as having format (h1,h2,h3,h4,p1,p2) then h1-h4 are is the IP address the server is asking the client to connect to for the data channel. e.g. 213.229.112.130
p1 and p2 are together the port number. It's a 16 bit number split into 2 8 bit parts, so to reconstruct it you do (p1 * 256 + p2) e.g. port: 55300
Though as mentioned above the exact format of the PASV command it is not guaranteed