**🧐 Motivation** https://github.com/OpenZeppelin/openzeppelin-contracts/blob/d6b63a48ba440ad8d551383697db6e5b0ef84137/contracts/token/ERC20/ERC20.sol#L39-L41 **📝 Details** The Above lines can be changed to this. ``` mapping(address owner => uint256 value) private _balances; ``` ``` mapping(address owner => mapping(address spender => uint256 value)) private _allowances; ``` <!-- Make sure that you have reviewed the OpenZeppelin Contracts Contributor Guidelines. --> <!-- https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/CONTRIBUTING.md -->