Is it possible to mint token multiple times?

Hi, I’m facing this issue when I’m trying to mint the same token 2nd time, (the first time it was already a success,

  • this is my policy:
    {"keyHash":"someKeyHash","type":"sig"}
  • this is the cmd I run
cardano-cli transaction build-raw       
--tx-in b45819b91f08b14c91e36f6bde2bfa37802dd0e3196f46c548fc588fb7c7aa26#0        
--tx-out "someAddress+9259236
+300000000 5cdba25bc2fccca047bca93805624cd658b7f012124dedf57d6710d0.A
+200000 929e8f291ab02f0850ea59af52a0693464b3124248bb9234f1931683.B
+200000 ef841dafc3dbd6311b598ca9281d89b7d413a6e38f5ce661e70ff550.C"                      
--mint="300000000 5cdba25bc2fccca047bca93805624cd658b7f012124dedf57d6710d0.A" 
--minting-script-file path_to_min_file                    
--invalid-hereafter 37241680       
--invalid-before 0       
--fee 186577       
--out-file out-put-path

and this is the error:

Command failed: transaction submit Error: Error while submitting tx: ShelleyTxValidationError ShelleyBasedEraMary (ApplyTxError [UtxowFailure (UtxoFailure (ValueNotConservedUTxO (Value 9445813 (fromList [(PolicyID {policyID = ScriptHash "5cdba25bc2fccca047bca93805624cd658b7f012124dedf57d6710d0"},fromList [("A",600000000)]),(PolicyID {policyID = ScriptHash "929e8f291ab02f0850ea59af52a0693464b3124248bb9234f1931683"},fromList [("B",200000)]),(PolicyID {policyID = ScriptHash "ef841dafc3dbd6311b598ca9281d89b7d413a6e38f5ce661e70ff550"},fromList [("C",200000)])])) (Value 9445813 (fromList [(PolicyID {policyID = ScriptHash "5cdba25bc2fccca047bca93805624cd658b7f012124dedf57d6710d0"},fromList [("A",300000000)]),(PolicyID {policyID = ScriptHash "929e8f291ab02f0850ea59af52a0693464b3124248bb9234f1931683"},fromList [("B",200000)]),(PolicyID {policyID = ScriptHash "ef841dafc3dbd6311b598ca9281d89b7d413a6e38f5ce661e70ff550"},fromList [("C",200000)])]))))])

could you guys support me with this ? thank youu.