How to parse the encrypted amount to a normal value?

{
    "accountNonce":11,
    "accountAmount":"5050833",
    "accountReleaseSchedule":{
        "total":"0",
        "schedule":[

        ]
    },
    "accountThreshold":1,
    "accountEncryptedAmount":{
        "incomingAmounts":[
            "9453a39c7c80b57190f68207010230466ccc9247378f487f4a01f10ed006bd257b1d024746893cbdc69ab021d81a60a78209ef006199d34f8d9c7c9e9ae8e100ed2fb1bf8d38360fc5b150de9eeb784db2e510028a7faa16def1bc20a0572d06964c5138cf6f2d866800fc0b069df64d38c7b1cb89d43fb83385c49515f1539920da3ab25e01b92427d4c6fa56da79a09500d560230332513a91f4cdbf24681a0bb63814ece0458555ec73546e08f90a3af2dd7839ea06ba14d62ec87c7cd0cf"
        ],
        "selfAmount":"c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
        "startIndex":0
    },
    "accountEncryptionKey":"b14cbfe44a02c6b1f78711176d5f437295367aa4f2a8c2551ee10d25a03adc69d61a332a058971919dad7312e1fc94c586a02a7e86d67d4af6f5b254718fd82f1674d1c4f55d5e7c9cd1769cec02a8d1038eab33255dbea3a349e6f441c52963",
    "accountIndex":5553,
    "accountAddress":"3vzoSbNWsmi3wek8NoTMw588myRWg6FzhSkVwxLs5K7jM2r4Jw"
}

An encrypted amount is an elgamal encryption in chunks. See concordium-base/types.rs at main · Concordium/concordium-base · GitHub

Decryption is normal elgamal decryption, plus brute forcing the exponent, see concordium-base/lib.rs at main · Concordium/concordium-base · GitHub for an implementation.

I hope this answers your question.