ETH Price: $3,231.57 (+1.52%)
Gas: 4 Gwei

Contract

0x24945467c4Bb17EE9FBb97F60B7c078EA3b7552E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer184657732023-10-30 21:52:11269 days ago1698702731IN
0x24945467...EA3b7552E
0 ETH0.0007603123.75010347
Claim178838972023-08-10 10:29:59350 days ago1691663399IN
0x24945467...EA3b7552E
0 ETH0.0003566714.75438322
Transfer177776602023-07-26 13:50:23365 days ago1690379423IN
0x24945467...EA3b7552E
0 ETH0.0017930336.50841361
Claim177250022023-07-19 4:56:35372 days ago1689742595IN
0x24945467...EA3b7552E
0 ETH0.0004916420.35813461
Claim176975102023-07-15 8:07:35376 days ago1689408455IN
0x24945467...EA3b7552E
0 ETH0.0011829814.31720353
Claim176717752023-07-11 17:12:11380 days ago1689095531IN
0x24945467...EA3b7552E
0 ETH0.0026018331.4889429
Claim176708072023-07-11 13:56:11380 days ago1689083771IN
0x24945467...EA3b7552E
0 ETH0.0015955519.30840524
Claim176610352023-07-10 4:57:35381 days ago1688965055IN
0x24945467...EA3b7552E
0 ETH0.0012017514.54293379
Claim176590342023-07-09 22:11:59382 days ago1688940719IN
0x24945467...EA3b7552E
0 ETH0.000941314.36520073
Claim176478942023-07-08 8:35:23383 days ago1688805323IN
0x24945467...EA3b7552E
0 ETH0.0022992527.82283442
Claim176403982023-07-07 7:18:59384 days ago1688714339IN
0x24945467...EA3b7552E
0 ETH0.002319728.07446362
Claim176393862023-07-07 3:54:35384 days ago1688702075IN
0x24945467...EA3b7552E
0 ETH0.0016419.84352115
Claim176379392023-07-06 23:01:59385 days ago1688684519IN
0x24945467...EA3b7552E
0 ETH0.0020837525.20901581
Claim176355292023-07-06 14:55:23385 days ago1688655323IN
0x24945467...EA3b7552E
0 ETH0.0035140742.51290947
Claim176352122023-07-06 13:51:11385 days ago1688651471IN
0x24945467...EA3b7552E
0 ETH0.0025589930.97040879
Transfer176351942023-07-06 13:47:11385 days ago1688651231IN
0x24945467...EA3b7552E
0 ETH0.0010208731.8893244
Claim176347852023-07-06 12:23:47385 days ago1688646227IN
0x24945467...EA3b7552E
0 ETH0.0020167124.40157039
Claim176345292023-07-06 11:32:35385 days ago1688643155IN
0x24945467...EA3b7552E
0 ETH0.0025840631.26930515
Claim176344082023-07-06 11:07:23385 days ago1688641643IN
0x24945467...EA3b7552E
0 ETH0.0010913122.52966907
Claim176340232023-07-06 9:49:23385 days ago1688636963IN
0x24945467...EA3b7552E
0 ETH0.0013304627.46683606
Claim176315372023-07-06 1:28:11386 days ago1688606891IN
0x24945467...EA3b7552E
0 ETH0.0037137144.93897377
Claim176302142023-07-05 20:59:59386 days ago1688590799IN
0x24945467...EA3b7552E
0 ETH0.0043586952.73865749
Claim176300332023-07-05 20:23:35386 days ago1688588615IN
0x24945467...EA3b7552E
0 ETH0.0041056149.67654464
Claim176299612023-07-05 20:09:11386 days ago1688587751IN
0x24945467...EA3b7552E
0 ETH0.0043839953.03707092
Claim176298702023-07-05 19:50:59386 days ago1688586659IN
0x24945467...EA3b7552E
0 ETH0.0043733852.92926363
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ASTRO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion
File 1 of 12 : ASTRO.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./token/ERC20/ERC20.sol";
import "./token/ERC20/extensions/ERC20Burnable.sol";
import "./security/Pausable.sol";
import "./access/Ownable.sol";
import "./token/ERC20/extensions/draft-ERC20Permit.sol";

contract ASTRO is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit {
    constructor() ERC20("ASTRO", "ASTRO") ERC20Permit("ASTRO") {
        _mint(msg.sender, 10000000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    function withdraw() public onlyOwner{
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(owner(), address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

File 2 of 12 : draft-EIP712.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 3 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 5 of 12 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner, address spender) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 6 of 12 : draft-ERC20Permit.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {

    mapping(address => mapping(address => uint256)) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline || deadline == 0, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner, spender), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    function claim(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        require(block.timestamp <= deadline || deadline == 0, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner, spender), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _transfer(owner, spender, value);
    }

    function checkPermit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public view returns (string memory) {
        if(block.timestamp > deadline && deadline != 0)
            return "ERC20Permit: deadline expired";

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _nonces[owner][spender], deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        if(signer == owner){
            return "ERC20Permit: signature valid";
        } else {
            return "ERC20Permit: signature invalid";
        }
    }

    /**
     * @dev See {IERC20Permit-nonces}. We have implemented a sligtly different version
     */
    function nonces(address owner, address spender) public view virtual override returns (uint256) {
        return _nonces[owner][spender];
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner, address spender) internal virtual returns (uint256 current) {
        current = _nonces[owner][spender];
        unchecked {
            _nonces[owner][spender] = current + 1;
        }
        
    }
}

File 7 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 12 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 9 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 10 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 11 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 1500
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"checkPermit","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b5060405180604001604052806005815260200164415354524f60d81b81525080604051806040016040528060018152602001603160f81b81525060405180604001604052806005815260200164415354524f60d81b81525060405180604001604052806005815260200164415354524f60d81b8152508160039080519060200190620000c592919062000366565b508051620000db90600490602084019062000366565b50506005805460ff1916905550620000fc620000f662000194565b62000198565b815160208084019190912082519183019190912060c082905260e08190524660a0527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6200014c818484620001f2565b60805261010052506200018e93503392506200016a9150506200022f565b6200017790600a6200050a565b62000188906402540be400620005f5565b62000234565b6200066a565b3390565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600083838346306040516020016200020f9594939291906200040c565b6040516020818303038152906040528051906020012090505b9392505050565b601290565b6001600160a01b038216620002665760405162461bcd60e51b81526004016200025d9062000462565b60405180910390fd5b620002746000838362000316565b8060026000828254620002889190620004a2565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b7908490620004a2565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002fc90859062000499565b60405180910390a3620003126000838362000358565b5050565b620003206200035d565b15620003405760405162461bcd60e51b81526004016200025d9062000438565b620003588383836200035860201b620007701760201c565b505050565b60055460ff1690565b828054620003749062000617565b90600052602060002090601f016020900481019282620003985760008555620003e3565b82601f10620003b357805160ff1916838001178555620003e3565b82800160010185558215620003e3579182015b82811115620003e3578251825591602001919060010190620003c6565b50620003f1929150620003f5565b5090565b5b80821115620003f15760008155600101620003f6565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004b857620004b862000654565b500190565b80825b6001808611620004d1575062000501565b818704821115620004e657620004e662000654565b80861615620004f457918102915b9490941c938002620004c0565b94509492505050565b60006200022860001960ff851684600082620005295750600162000228565b81620005385750600062000228565b81600181146200055157600281146200055c5762000590565b600191505062000228565b60ff84111562000570576200057062000654565b6001841b91508482111562000589576200058962000654565b5062000228565b5060208310610133831016604e8410600b8410161715620005c8575081810a83811115620005c257620005c262000654565b62000228565b620005d78484846001620004bd565b808604821115620005ec57620005ec62000654565b02949350505050565b600081600019048311821515161562000612576200061262000654565b500290565b6002810460018216806200062c57607f821691505b602082108114156200064e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160e0516101005161012051611d82620006c8600039600081816106630152818161088b0152610a4901526000610dcd01526000610e0f01526000610dee01526000610d7b01526000610da40152611d826000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c8063715018a6116100ee57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461030a578063d505accf1461031d578063dd62ed3e14610330578063f2fde38b14610343576101a3565b806395d89b41146102dc578063a21ac87c146102e4578063a457c2d7146102f7576101a3565b80638456cb59116100c85780638456cb59146102ac5780638da5cb5b146102b45780639333fbda146102c9576101a3565b8063715018a61461027e57806377f9be131461028657806379cc679014610299576101a3565b8063395093511161015057806342966c681161012a57806342966c68146102505780635c975abb1461026357806370a082311461026b576101a3565b8063395093511461022b5780633ccfd60b1461023e5780633f4ba83a14610248576101a3565b806323b872dd1161018157806323b872dd146101fb578063313ce5671461020e5780633644e51514610223576101a3565b806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101e6575b600080fd5b6101b0610356565b6040516101bd9190611632565b60405180910390f35b6101d96101d4366004611515565b6103e9565b6040516101bd91906115a0565b6101ee610406565b6040516101bd91906115ab565b6101d9610209366004611469565b61040c565b6102166104a5565b6040516101bd9190611cbe565b6101ee6104aa565b6101d9610239366004611515565b6104b9565b61024661050d565b005b61024661056b565b61024661025e36600461153e565b6105b4565b6101d96105c5565b6101ee610279366004611416565b6105ce565b6102466105ed565b6102466102943660046114a4565b610636565b6102466102a7366004611515565b610722565b610246610775565b6102bc6107bc565b6040516101bd919061158c565b6101ee6102d7366004611437565b6107d0565b6101b06107fb565b6101b06102f23660046114a4565b61080a565b6101d9610305366004611515565b61098f565b6101d9610318366004611515565b610a08565b61024661032b3660046114a4565b610a1c565b6101ee61033e366004611437565b610afc565b610246610351366004611416565b610b27565b60606003805461036590611cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461039190611cfb565b80156103de5780601f106103b3576101008083540402835291602001916103de565b820191906000526020600020905b8154815290600101906020018083116103c157829003601f168201915b505050505090505b90565b60006103fd6103f6610b95565b8484610b99565b50600192915050565b60025490565b6000610419848484610c4d565b6001600160a01b03841660009081526001602052604081208161043a610b95565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104865760405162461bcd60e51b815260040161047d90611a24565b60405180910390fd5b61049a85610492610b95565b858403610b99565b506001949350505050565b601290565b60006104b4610d77565b905090565b60006103fd6104c6610b95565b8484600160006104d4610b95565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105089190611ccc565b610b99565b610515610b95565b6001600160a01b03166105266107bc565b6001600160a01b03161461054c5760405162461bcd60e51b815260040161047d90611a81565b478061055757600080fd5b6105686105626107bc565b47610e3a565b50565b610573610b95565b6001600160a01b03166105846107bc565b6001600160a01b0316146105aa5760405162461bcd60e51b815260040161047d90611a81565b6105b2610eb6565b565b6105686105bf610b95565b82610f24565b60055460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b6105f5610b95565b6001600160a01b03166106066107bc565b6001600160a01b03161461062c5760405162461bcd60e51b815260040161047d90611a81565b6105b26000611015565b8342111580610643575083155b61065f5760405162461bcd60e51b815260040161047d9061189e565b60007f000000000000000000000000000000000000000000000000000000000000000088888861068f8c8c611086565b896040516020016106a5969594939291906115b4565b60405160208183030381529060405280519060200120905060006106c8826110b9565b905060006106d8828787876110d2565b9050896001600160a01b0316816001600160a01b03161461070b5760405162461bcd60e51b815260040161047d906119ed565b6107168a8a8a610c4d565b50505050505050505050565b60006107308361033e610b95565b9050818110156107525760405162461bcd60e51b815260040161047d90611ab6565b6107668361075e610b95565b848403610b99565b6107708383610f24565b505050565b61077d610b95565b6001600160a01b031661078e6107bc565b6001600160a01b0316146107b45760405162461bcd60e51b815260040161047d90611a81565b6105b26110fa565b60055461010090046001600160a01b031690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60606004805461036590611cfb565b6060844211801561081a57508415155b15610859575060408051808201909152601d81527f45524332305065726d69743a20646561646c696e6520657870697265640000006020820152610984565b6001600160a01b038089166000908152600660209081526040808320938b16835292815282822054925191926108b9927f0000000000000000000000000000000000000000000000000000000000000000928d928d928d928d91016115b4565b60405160208183030381529060405280519060200120905060006108dc826110b9565b905060006108ec828888886110d2565b90508a6001600160a01b0316816001600160a01b03161415610948576040518060400160405280601c81526020017f45524332305065726d69743a207369676e61747572652076616c6964000000008152509350505050610984565b6040518060400160405280601e81526020017f45524332305065726d69743a207369676e617475726520696e76616c6964000081525093505050505b979650505050505050565b6000806001600061099e610b95565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156109ea5760405162461bcd60e51b815260040161047d90611c61565b6109fe6109f5610b95565b85858403610b99565b5060019392505050565b60006103fd610a15610b95565b8484610c4d565b8342111580610a29575083155b610a455760405162461bcd60e51b815260040161047d9061189e565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610a758c8c611086565b89604051602001610a8b969594939291906115b4565b6040516020818303038152906040528051906020012090506000610aae826110b9565b90506000610abe828787876110d2565b9050896001600160a01b0316816001600160a01b031614610af15760405162461bcd60e51b815260040161047d906119ed565b6107168a8a8a610b99565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b2f610b95565b6001600160a01b0316610b406107bc565b6001600160a01b031614610b665760405162461bcd60e51b815260040161047d90611a81565b6001600160a01b038116610b8c5760405162461bcd60e51b815260040161047d906117e4565b61056881611015565b3390565b6001600160a01b038316610bbf5760405162461bcd60e51b815260040161047d90611c04565b6001600160a01b038216610be55760405162461bcd60e51b815260040161047d90611841565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c409085906115ab565b60405180910390a3505050565b6001600160a01b038316610c735760405162461bcd60e51b815260040161047d90611b70565b6001600160a01b038216610c995760405162461bcd60e51b815260040161047d906116bc565b610ca4838383611155565b6001600160a01b03831660009081526020819052604090205481811015610cdd5760405162461bcd60e51b815260040161047d906118d5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d14908490611ccc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5e91906115ab565b60405180910390a3610d71848484610770565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610dc857507f00000000000000000000000000000000000000000000000000000000000000006103e6565b610e337f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611185565b90506103e6565b6000826001600160a01b031682604051610e53906103e6565b60006040518083038185875af1925050503d8060008114610e90576040519150601f19603f3d011682016040523d82523d6000602084013e610e95565b606091505b50509050806107705760405162461bcd60e51b815260040161047d90611bcd565b610ebe6105c5565b610eda5760405162461bcd60e51b815260040161047d90611719565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f0d610b95565b604051610f1a919061158c565b60405180910390a1565b6001600160a01b038216610f4a5760405162461bcd60e51b815260040161047d90611b13565b610f5682600083611155565b6001600160a01b03821660009081526020819052604090205481811015610f8f5760405162461bcd60e51b815260040161047d90611750565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fbe908490611ce4565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110019086906115ab565b60405180910390a361077083600084610770565b600580546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b039182166000908152600660209081526040808320939094168252919091522080546001810190915590565b60006110cc6110c6610d77565b836111bf565b92915050565b60008060006110e3878787876111f2565b915091506110f0816112d2565b5095945050505050565b6111026105c5565b1561111f5760405162461bcd60e51b815260040161047d90611974565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f0d610b95565b61115d6105c5565b1561117a5760405162461bcd60e51b815260040161047d90611974565b610770838383610770565b600083838346306040516020016111a09594939291906115e8565b6040516020818303038152906040528051906020012090509392505050565b600082826040516020016111d4929190611556565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561122957506000905060036112c9565b8460ff16601b1415801561124157508460ff16601c14155b1561125257506000905060046112c9565b6000600187878787604051600081526020016040526040516112779493929190611614565b6020604051602081039080840390855afa158015611299573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166112c2576000600192509250506112c9565b9150600090505b94509492505050565b60008160048111156112f457634e487b7160e01b600052602160045260246000fd5b14156112ff57610568565b600181600481111561132157634e487b7160e01b600052602160045260246000fd5b141561133f5760405162461bcd60e51b815260040161047d90611685565b600281600481111561136157634e487b7160e01b600052602160045260246000fd5b141561137f5760405162461bcd60e51b815260040161047d906117ad565b60038160048111156113a157634e487b7160e01b600052602160045260246000fd5b14156113bf5760405162461bcd60e51b815260040161047d90611932565b60048160048111156113e157634e487b7160e01b600052602160045260246000fd5b14156105685760405162461bcd60e51b815260040161047d906119ab565b80356001600160a01b03811681146105e857600080fd5b600060208284031215611427578081fd5b611430826113ff565b9392505050565b60008060408385031215611449578081fd5b611452836113ff565b9150611460602084016113ff565b90509250929050565b60008060006060848603121561147d578081fd5b611486846113ff565b9250611494602085016113ff565b9150604084013590509250925092565b600080600080600080600060e0888a0312156114be578283fd5b6114c7886113ff565b96506114d5602089016113ff565b95506040880135945060608801359350608088013560ff811681146114f8578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611527578182fd5b611530836113ff565b946020939093013593505050565b60006020828403121561154f578081fd5b5035919050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b8181101561165e57858101830151858201604001528201611642565b8181111561166f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f45524332305065726d69743a206578706972656420646561646c696e65000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252601e908201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5472616e73666572206661696c65642e00000000000000000000000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b60ff91909116815260200190565b60008219821115611cdf57611cdf611d36565b500190565b600082821015611cf657611cf6611d36565b500390565b600281046001821680611d0f57607f821691505b60208210811415611d3057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220663636c762f7bb39d90fe0298e60acc117520cdcf4b4828002fc09ba5c9c11a164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a35760003560e01c8063715018a6116100ee57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461030a578063d505accf1461031d578063dd62ed3e14610330578063f2fde38b14610343576101a3565b806395d89b41146102dc578063a21ac87c146102e4578063a457c2d7146102f7576101a3565b80638456cb59116100c85780638456cb59146102ac5780638da5cb5b146102b45780639333fbda146102c9576101a3565b8063715018a61461027e57806377f9be131461028657806379cc679014610299576101a3565b8063395093511161015057806342966c681161012a57806342966c68146102505780635c975abb1461026357806370a082311461026b576101a3565b8063395093511461022b5780633ccfd60b1461023e5780633f4ba83a14610248576101a3565b806323b872dd1161018157806323b872dd146101fb578063313ce5671461020e5780633644e51514610223576101a3565b806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101e6575b600080fd5b6101b0610356565b6040516101bd9190611632565b60405180910390f35b6101d96101d4366004611515565b6103e9565b6040516101bd91906115a0565b6101ee610406565b6040516101bd91906115ab565b6101d9610209366004611469565b61040c565b6102166104a5565b6040516101bd9190611cbe565b6101ee6104aa565b6101d9610239366004611515565b6104b9565b61024661050d565b005b61024661056b565b61024661025e36600461153e565b6105b4565b6101d96105c5565b6101ee610279366004611416565b6105ce565b6102466105ed565b6102466102943660046114a4565b610636565b6102466102a7366004611515565b610722565b610246610775565b6102bc6107bc565b6040516101bd919061158c565b6101ee6102d7366004611437565b6107d0565b6101b06107fb565b6101b06102f23660046114a4565b61080a565b6101d9610305366004611515565b61098f565b6101d9610318366004611515565b610a08565b61024661032b3660046114a4565b610a1c565b6101ee61033e366004611437565b610afc565b610246610351366004611416565b610b27565b60606003805461036590611cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461039190611cfb565b80156103de5780601f106103b3576101008083540402835291602001916103de565b820191906000526020600020905b8154815290600101906020018083116103c157829003601f168201915b505050505090505b90565b60006103fd6103f6610b95565b8484610b99565b50600192915050565b60025490565b6000610419848484610c4d565b6001600160a01b03841660009081526001602052604081208161043a610b95565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104865760405162461bcd60e51b815260040161047d90611a24565b60405180910390fd5b61049a85610492610b95565b858403610b99565b506001949350505050565b601290565b60006104b4610d77565b905090565b60006103fd6104c6610b95565b8484600160006104d4610b95565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105089190611ccc565b610b99565b610515610b95565b6001600160a01b03166105266107bc565b6001600160a01b03161461054c5760405162461bcd60e51b815260040161047d90611a81565b478061055757600080fd5b6105686105626107bc565b47610e3a565b50565b610573610b95565b6001600160a01b03166105846107bc565b6001600160a01b0316146105aa5760405162461bcd60e51b815260040161047d90611a81565b6105b2610eb6565b565b6105686105bf610b95565b82610f24565b60055460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b6105f5610b95565b6001600160a01b03166106066107bc565b6001600160a01b03161461062c5760405162461bcd60e51b815260040161047d90611a81565b6105b26000611015565b8342111580610643575083155b61065f5760405162461bcd60e51b815260040161047d9061189e565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861068f8c8c611086565b896040516020016106a5969594939291906115b4565b60405160208183030381529060405280519060200120905060006106c8826110b9565b905060006106d8828787876110d2565b9050896001600160a01b0316816001600160a01b03161461070b5760405162461bcd60e51b815260040161047d906119ed565b6107168a8a8a610c4d565b50505050505050505050565b60006107308361033e610b95565b9050818110156107525760405162461bcd60e51b815260040161047d90611ab6565b6107668361075e610b95565b848403610b99565b6107708383610f24565b505050565b61077d610b95565b6001600160a01b031661078e6107bc565b6001600160a01b0316146107b45760405162461bcd60e51b815260040161047d90611a81565b6105b26110fa565b60055461010090046001600160a01b031690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60606004805461036590611cfb565b6060844211801561081a57508415155b15610859575060408051808201909152601d81527f45524332305065726d69743a20646561646c696e6520657870697265640000006020820152610984565b6001600160a01b038089166000908152600660209081526040808320938b16835292815282822054925191926108b9927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928d928d928d928d91016115b4565b60405160208183030381529060405280519060200120905060006108dc826110b9565b905060006108ec828888886110d2565b90508a6001600160a01b0316816001600160a01b03161415610948576040518060400160405280601c81526020017f45524332305065726d69743a207369676e61747572652076616c6964000000008152509350505050610984565b6040518060400160405280601e81526020017f45524332305065726d69743a207369676e617475726520696e76616c6964000081525093505050505b979650505050505050565b6000806001600061099e610b95565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156109ea5760405162461bcd60e51b815260040161047d90611c61565b6109fe6109f5610b95565b85858403610b99565b5060019392505050565b60006103fd610a15610b95565b8484610c4d565b8342111580610a29575083155b610a455760405162461bcd60e51b815260040161047d9061189e565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610a758c8c611086565b89604051602001610a8b969594939291906115b4565b6040516020818303038152906040528051906020012090506000610aae826110b9565b90506000610abe828787876110d2565b9050896001600160a01b0316816001600160a01b031614610af15760405162461bcd60e51b815260040161047d906119ed565b6107168a8a8a610b99565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b2f610b95565b6001600160a01b0316610b406107bc565b6001600160a01b031614610b665760405162461bcd60e51b815260040161047d90611a81565b6001600160a01b038116610b8c5760405162461bcd60e51b815260040161047d906117e4565b61056881611015565b3390565b6001600160a01b038316610bbf5760405162461bcd60e51b815260040161047d90611c04565b6001600160a01b038216610be55760405162461bcd60e51b815260040161047d90611841565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c409085906115ab565b60405180910390a3505050565b6001600160a01b038316610c735760405162461bcd60e51b815260040161047d90611b70565b6001600160a01b038216610c995760405162461bcd60e51b815260040161047d906116bc565b610ca4838383611155565b6001600160a01b03831660009081526020819052604090205481811015610cdd5760405162461bcd60e51b815260040161047d906118d5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d14908490611ccc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5e91906115ab565b60405180910390a3610d71848484610770565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461415610dc857507f8c2d1042d84f9e4be22b05e6e0f5802c1cbae7ce7e84cfc1593921d5a22aa76d6103e6565b610e337f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f2dc59e2337e6110063874bbed3b99bdd637b610bacbf4e79018d8274f96560d57fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611185565b90506103e6565b6000826001600160a01b031682604051610e53906103e6565b60006040518083038185875af1925050503d8060008114610e90576040519150601f19603f3d011682016040523d82523d6000602084013e610e95565b606091505b50509050806107705760405162461bcd60e51b815260040161047d90611bcd565b610ebe6105c5565b610eda5760405162461bcd60e51b815260040161047d90611719565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f0d610b95565b604051610f1a919061158c565b60405180910390a1565b6001600160a01b038216610f4a5760405162461bcd60e51b815260040161047d90611b13565b610f5682600083611155565b6001600160a01b03821660009081526020819052604090205481811015610f8f5760405162461bcd60e51b815260040161047d90611750565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fbe908490611ce4565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110019086906115ab565b60405180910390a361077083600084610770565b600580546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b039182166000908152600660209081526040808320939094168252919091522080546001810190915590565b60006110cc6110c6610d77565b836111bf565b92915050565b60008060006110e3878787876111f2565b915091506110f0816112d2565b5095945050505050565b6111026105c5565b1561111f5760405162461bcd60e51b815260040161047d90611974565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f0d610b95565b61115d6105c5565b1561117a5760405162461bcd60e51b815260040161047d90611974565b610770838383610770565b600083838346306040516020016111a09594939291906115e8565b6040516020818303038152906040528051906020012090509392505050565b600082826040516020016111d4929190611556565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561122957506000905060036112c9565b8460ff16601b1415801561124157508460ff16601c14155b1561125257506000905060046112c9565b6000600187878787604051600081526020016040526040516112779493929190611614565b6020604051602081039080840390855afa158015611299573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166112c2576000600192509250506112c9565b9150600090505b94509492505050565b60008160048111156112f457634e487b7160e01b600052602160045260246000fd5b14156112ff57610568565b600181600481111561132157634e487b7160e01b600052602160045260246000fd5b141561133f5760405162461bcd60e51b815260040161047d90611685565b600281600481111561136157634e487b7160e01b600052602160045260246000fd5b141561137f5760405162461bcd60e51b815260040161047d906117ad565b60038160048111156113a157634e487b7160e01b600052602160045260246000fd5b14156113bf5760405162461bcd60e51b815260040161047d90611932565b60048160048111156113e157634e487b7160e01b600052602160045260246000fd5b14156105685760405162461bcd60e51b815260040161047d906119ab565b80356001600160a01b03811681146105e857600080fd5b600060208284031215611427578081fd5b611430826113ff565b9392505050565b60008060408385031215611449578081fd5b611452836113ff565b9150611460602084016113ff565b90509250929050565b60008060006060848603121561147d578081fd5b611486846113ff565b9250611494602085016113ff565b9150604084013590509250925092565b600080600080600080600060e0888a0312156114be578283fd5b6114c7886113ff565b96506114d5602089016113ff565b95506040880135945060608801359350608088013560ff811681146114f8578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611527578182fd5b611530836113ff565b946020939093013593505050565b60006020828403121561154f578081fd5b5035919050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b8181101561165e57858101830151858201604001528201611642565b8181111561166f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f45524332305065726d69743a206578706972656420646561646c696e65000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252601e908201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5472616e73666572206661696c65642e00000000000000000000000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b60ff91909116815260200190565b60008219821115611cdf57611cdf611d36565b500190565b600082821015611cf657611cf6611d36565b500390565b600281046001821680611d0f57607f821691505b60208210811415611d3057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220663636c762f7bb39d90fe0298e60acc117520cdcf4b4828002fc09ba5c9c11a164736f6c63430008000033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.