I can see pubkey (EllipticCurve Point) belonging to the bitcoin address in standard signatures. but I could not see it in the signature.
Public keys are not part of the signature. They are found alongside signatures, but can be specified in many different ways in Bitcoin that are not directly next to signatures.
actually i was wondering, this is 3LpvrH24YmEAmJ1MUfawDu6pPsm14r2FtV address pubkey
No. This is a P2SH address. It encodes the hash of a script. This script can specify many things, including pubkeys for a signature.
The P2SH address corresponds to the scriptPubKey (output script)
OP_HASH160 d1e97b7dbe9a6579c88b529561643e1361c4ed13 OP_EQUAL. This specifies that the scriptSig (input script) must push to the stack a script whose hash160 is d1e97b7dbe9a6579c88b529561643e1361c4ed13. For this address, that script is
0020af6ec7b21e884eda9630f95a8d4c30b9f25e3286f62f666e61d4e8226c4bda50.
This script is P2WSH script which means that it specifies another script. If we decode the opcodes, it is
OP_0 af6ec7b21e884eda9630f95a8d4c30b9f25e3286f62f666e61d4e8226c4bda50. This indicates that the top stack item of the scriptWitness must have a sha256 of af6ec7b21e884eda9630f95a8d4c30b9f25e3286f62f666e61d4e8226c4bda50.
That script is
52210325937706eb4d50c16fc2f0ab3ee0b53e1513ebf14e0509bc5b4b09abd395c90a21022a1f8 e2169dfc64655fa0657537e70d32c584013dd2b8da9a53ab2d260c79ad32102cfc77d383647a007 03250f53339bfc2885668daeee3f6c0d34d9f1b2f7a740ab53ae. This can be decoded to
OP_P2 0325937706eb4d50c16fc2f0ab3ee0b53e1513ebf14e0509bc5b4b09abd395c90a 022a1f8e2169dfc64655fa0657537e70d32c584013dd2b8da9a53ab2d260c79ad3 02cfc77d383647a00703250f53339bfc2885668daeee3f6c0d34d9f1b2f7a740ab OP_3 OP_CHECKMULTISIG. This is the mlutisig script. The public keys are found in this script. The remaining items in the scriptWitness are the signatures.
The signatures, in order, are
3044022071f1950fc6dfa95d4466164e6a8ed7bded41f723733a9799e4e371a868fd3c780220010 820bfbaf0591116076799ba7d30c7e6cd5fa02090de0deb6926a4f7f49e4701 and
3044022017beb671b4a2e7688fc357b7ade7f72bf24eff073bb42950d0fc23c6a7f2af630220317 41ae73667b21ea0229cb8950b9d950d248c26cef0f4871506ff1c47b6e0b901.
When this input is being verified, first the hash of the script in the scriptSig is checked. Then the hash of the script in the scriptWitness is checked. Then the signatures are verified. Since the pubkeys are not directly next to the signatures, the script interpreter does a bit of guessing to figure verify them.
The script interpreter will try the first signature with the first pubkey. If this fails, it then tries the next pubkey, and so on until either no pubkeys remain, or the signature verifies. Once the signature verifies, it goes to the next signature and tries the next pubkey. For example, it will try sig 1 with pubkey 1, and suppose this fails. Then it will try sig 1 with pubkey 2, and suppose this passes. Then it will try sig 2 with pubkey 3. If there were a pubkey 4, and verifying with pubkey 3 failed, then it would move to pubkey 4. But because there are only 3 pubkeys, if pubkey 3 failed, then the whole script fails.