ETH Price: $2,346.72 (-0.45%)

Contract

0xdAF566020156297E2837fDfaA6Fbba929A29461E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer155848832022-09-21 23:01:11721 days ago1663801271IN
SafeTrade: SAFE Token
0 ETH0.0008228315.31146594
Transfer152885552022-08-06 11:51:23768 days ago1659786683IN
SafeTrade: SAFE Token
0 ETH0.000246447.74000252
Transfer152884402022-08-06 11:26:16768 days ago1659785176IN
SafeTrade: SAFE Token
0 ETH0.001343525
Transfer147363652022-05-08 13:28:54858 days ago1652016534IN
SafeTrade: SAFE Token
0 ETH0.0013834443.4500609
Transfer147363612022-05-08 13:28:10858 days ago1652016490IN
SafeTrade: SAFE Token
0 ETH0.0015925343.4500609
Transfer147359692022-05-08 12:01:41858 days ago1652011301IN
SafeTrade: SAFE Token
0 ETH0.001465640
Transfer147359452022-05-08 11:55:37858 days ago1652010937IN
SafeTrade: SAFE Token
0 ETH0.0021500840
Transfer144153172022-03-19 6:42:42908 days ago1647672162IN
SafeTrade: SAFE Token
0 ETH0.0013447442.2184643
Transfer144149202022-03-19 5:18:00908 days ago1647667080IN
SafeTrade: SAFE Token
0 ETH0.0021500840
Transfer143479852022-03-08 19:15:56918 days ago1646766956IN
SafeTrade: SAFE Token
0 ETH0.002687650
Transfer142697972022-02-24 16:16:33931 days ago1645719393IN
SafeTrade: SAFE Token
0 ETH0.00493535154.94638063
Transfer142695282022-02-24 15:16:46931 days ago1645715806IN
SafeTrade: SAFE Token
0 ETH0.0044151482.13921189
Transfer139610422022-01-07 22:37:24978 days ago1641595044IN
SafeTrade: SAFE Token
0 ETH0.00716849225.14124911
Transfer139188692022-01-01 9:59:34985 days ago1641031174IN
SafeTrade: SAFE Token
0 ETH0.00297766111.70708118
Transfer139187952022-01-01 9:44:30985 days ago1641030270IN
SafeTrade: SAFE Token
0 ETH0.004299280
Approve136060822021-11-13 6:22:051034 days ago1636784525IN
SafeTrade: SAFE Token
0 ETH0.0043409493.78529251
Transfer136058622021-11-13 5:31:471034 days ago1636781507IN
SafeTrade: SAFE Token
0 ETH0.01132409210.67291277
Transfer135076612021-10-28 19:43:441049 days ago1635450224IN
SafeTrade: SAFE Token
0 ETH0.01122315352.48611078
Transfer135074822021-10-28 19:04:051049 days ago1635447845IN
SafeTrade: SAFE Token
0 ETH0.014716273.83708468
Transfer134976162021-10-27 5:42:251051 days ago1635313345IN
SafeTrade: SAFE Token
0 ETH0.00590758185.4
Transfer134974432021-10-27 5:08:191051 days ago1635311299IN
SafeTrade: SAFE Token
0 ETH0.0078228145.50274773
Transfer134941112021-10-26 16:37:471052 days ago1635266267IN
SafeTrade: SAFE Token
0 ETH0.00604761112.53473893
Transfer134923502021-10-26 10:06:571052 days ago1635242817IN
SafeTrade: SAFE Token
0 ETH0.0042598687
Transfer134023632021-10-12 7:39:461066 days ago1634024386IN
SafeTrade: SAFE Token
0 ETH0.0038331178.32283889
Transfer134015512021-10-12 4:31:261066 days ago1634013086IN
SafeTrade: SAFE Token
0 ETH0.0035361575.57667174
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:
Safecoin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-22
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/[email protected]/utils/Counters.sol



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol



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: @openzeppelin/[email protected]/utils/cryptography/draft-EIP712.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC20/extensions/draft-IERC20Permit.sol



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) 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: @openzeppelin/[email protected]/utils/Context.sol



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: @openzeppelin/[email protected]/token/ERC20/IERC20.sol



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: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @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: @openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol



pragma solidity ^0.8.0;






/**
 * @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 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) 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, "ERC20Permit: expired deadline");

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

        bytes32 hash = _hashTypedDataV4(structHash);

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

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @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) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}


// File: @openzeppelin/[email protected]/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @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);
    }
}

// File: @openzeppelin/[email protected]/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol



pragma solidity ^0.8.0;



/**
 * @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: contract-6edec2b199.sol


pragma solidity ^0.8.2;






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

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

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

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

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

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":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","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"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b506040518060400160405280600881526020016729b0b332b1b7b4b760c11b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600881526020016729b0b332b1b7b4b760c11b815250604051806040016040528060048152602001635341464560e01b8152508160039080519060200190620000ca92919062000366565b508051620000e090600490602084019062000366565b50506005805460ff1916905550620000f833620001b0565b815160209283012081519183019190912060c082815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8189018190528183019790975260608101959095526080808601939093523085830152805180860390920182529390920190925280519301929092209091526101005250620001aa33620001956012600a62000470565b620001a49062057e406200053e565b6200020a565b620005b3565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002746000838362000301565b80600260008282546200028891906200040c565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b79084906200040c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff1615620003495760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016200025d565b620003618383836200036160201b620006141760201c565b505050565b828054620003749062000560565b90600052602060002090601f016020900481019282620003985760008555620003e3565b82601f10620003b357805160ff1916838001178555620003e3565b82800160010185558215620003e3579182015b82811115620003e3578251825591602001919060010190620003c6565b50620003f1929150620003f5565b5090565b5b80821115620003f15760008155600101620003f6565b600082198211156200042257620004226200059d565b500190565b600181815b80851115620004685781600019048211156200044c576200044c6200059d565b808516156200045a57918102915b93841c93908002906200042c565b509250929050565b60006200048160ff84168362000488565b9392505050565b600082620004995750600162000538565b81620004a85750600062000538565b8160018114620004c15760028114620004cc57620004ec565b600191505062000538565b60ff841115620004e057620004e06200059d565b50506001821b62000538565b5060208310610133831016604e8410600b841016171562000511575081810a62000538565b6200051d838362000427565b80600019048211156200053457620005346200059d565b0290505b92915050565b60008160001904831182151516156200055b576200055b6200059d565b500290565b600181811c908216806200057557607f821691505b602082108114156200059757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160e051610100516101205161170562000603600039600061077a01526000610c7c01526000610ccb01526000610ca601526000610c2a01526000610c5301526117056000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b41146102a5578063a457c2d7146102ad578063a9059cbb146102c0578063d505accf146102d3578063dd62ed3e146102e6578063f2fde38b1461031f57600080fd5b806370a082311461021d578063715018a61461024657806379cc67901461024e5780637ecebe00146102615780638456cb59146102745780638da5cb5b1461027c57600080fd5b80633644e515116101155780633644e515146101c757806339509351146101cf5780633f4ba83a146101e257806340c10f19146101ec57806342966c68146101ff5780635c975abb1461021257600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a5578063313ce567146101b8575b600080fd5b61015a610332565b60405161016791906115b5565b60405180910390f35b61018361017e366004611572565b6103c4565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101836101b33660046114c3565b6103da565b60405160128152602001610167565b610197610489565b6101836101dd366004611572565b610498565b6101ea6104d4565b005b6101ea6101fa366004611572565b61050e565b6101ea61020d36600461159c565b61054c565b60055460ff16610183565b61019761022b36600461146e565b6001600160a01b031660009081526020819052604090205490565b6101ea610559565b6101ea61025c366004611572565b610593565b61019761026f36600461146e565b610619565b6101ea610639565b60055461010090046001600160a01b03166040516001600160a01b039091168152602001610167565b61015a610671565b6101836102bb366004611572565b610680565b6101836102ce366004611572565b610719565b6101ea6102e13660046114ff565b610726565b6101976102f4366004611490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ea61032d36600461146e565b61088a565b6060600380546103419061166e565b80601f016020809104026020016040519081016040528092919081815260200182805461036d9061166e565b80156103ba5780601f1061038f576101008083540402835291602001916103ba565b820191906000526020600020905b81548152906001019060200180831161039d57829003601f168201915b5050505050905090565b60006103d1338484610928565b50600192915050565b60006103e7848484610a4c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047e8533858403610928565b506001949350505050565b6000610493610c26565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103d19185906104cf90869061163f565b610928565b6005546001600160a01b036101009091041633146105045760405162461bcd60e51b81526004016104689061160a565b61050c610d19565b565b6005546001600160a01b0361010090910416331461053e5760405162461bcd60e51b81526004016104689061160a565b6105488282610dac565b5050565b6105563382610e97565b50565b6005546001600160a01b036101009091041633146105895760405162461bcd60e51b81526004016104689061160a565b61050c6000610ff1565b600061059f83336102f4565b9050818110156105fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610468565b61060a8333848403610928565b6106148383610e97565b505050565b6001600160a01b0381166000908152600660205260408120545b92915050565b6005546001600160a01b036101009091041633146106695760405162461bcd60e51b81526004016104689061160a565b61050c61104b565b6060600480546103419061166e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107025760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610468565b61070f3385858403610928565b5060019392505050565b60006103d1338484610a4c565b834211156107765760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610468565b60007f00000000000000000000000000000000000000000000000000000000000000008888886107a58c6110c6565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610800826110ee565b905060006108108287878761113c565b9050896001600160a01b0316816001600160a01b0316146108735760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610468565b61087e8a8a8a610928565b50505050505050505050565b6005546001600160a01b036101009091041633146108ba5760405162461bcd60e51b81526004016104689061160a565b6001600160a01b03811661091f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610468565b61055681610ff1565b6001600160a01b03831661098a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610468565b6001600160a01b0382166109eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610468565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610468565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610468565b610b1d838383611164565b6001600160a01b03831660009081526020819052604090205481811015610b955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610468565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610bcc90849061163f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c1891815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610c7557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60055460ff16610d625760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610468565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610e025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610468565b610e0e60008383611164565b8060026000828254610e20919061163f565b90915550506001600160a01b03821660009081526020819052604081208054839290610e4d90849061163f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ef75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610468565b610f0382600083611164565b6001600160a01b03821660009081526020819052604090205481811015610f775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610468565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fa6908490611657565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156110915760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610468565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d8f3390565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b60006106336110fb610c26565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061114d878787876111aa565b9150915061115a81611297565b5095945050505050565b60055460ff16156106145760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610468565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156111e1575060009050600361128e565b8460ff16601b141580156111f957508460ff16601c14155b1561120a575060009050600461128e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561125e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166112875760006001925092505061128e565b9150600090505b94509492505050565b60008160048111156112ab576112ab6116b9565b14156112b45750565b60018160048111156112c8576112c86116b9565b14156113165760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610468565b600281600481111561132a5761132a6116b9565b14156113785760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610468565b600381600481111561138c5761138c6116b9565b14156113e55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610468565b60048160048111156113f9576113f96116b9565b14156105565760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610468565b80356001600160a01b038116811461146957600080fd5b919050565b60006020828403121561148057600080fd5b61148982611452565b9392505050565b600080604083850312156114a357600080fd5b6114ac83611452565b91506114ba60208401611452565b90509250929050565b6000806000606084860312156114d857600080fd5b6114e184611452565b92506114ef60208501611452565b9150604084013590509250925092565b600080600080600080600060e0888a03121561151a57600080fd5b61152388611452565b965061153160208901611452565b95506040880135945060608801359350608088013560ff8116811461155557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561158557600080fd5b61158e83611452565b946020939093013593505050565b6000602082840312156115ae57600080fd5b5035919050565b600060208083528351808285015260005b818110156115e2578581018301518582016040015282016115c6565b818111156115f4576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611652576116526116a3565b500190565b600082821015611669576116696116a3565b500390565b600181811c9082168061168257607f821691505b602082108114156110e857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212204f384482197f1fdeea125219e04251d346d9e3e600f14b7b0de3f5999cef41bd64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b41146102a5578063a457c2d7146102ad578063a9059cbb146102c0578063d505accf146102d3578063dd62ed3e146102e6578063f2fde38b1461031f57600080fd5b806370a082311461021d578063715018a61461024657806379cc67901461024e5780637ecebe00146102615780638456cb59146102745780638da5cb5b1461027c57600080fd5b80633644e515116101155780633644e515146101c757806339509351146101cf5780633f4ba83a146101e257806340c10f19146101ec57806342966c68146101ff5780635c975abb1461021257600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a5578063313ce567146101b8575b600080fd5b61015a610332565b60405161016791906115b5565b60405180910390f35b61018361017e366004611572565b6103c4565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101836101b33660046114c3565b6103da565b60405160128152602001610167565b610197610489565b6101836101dd366004611572565b610498565b6101ea6104d4565b005b6101ea6101fa366004611572565b61050e565b6101ea61020d36600461159c565b61054c565b60055460ff16610183565b61019761022b36600461146e565b6001600160a01b031660009081526020819052604090205490565b6101ea610559565b6101ea61025c366004611572565b610593565b61019761026f36600461146e565b610619565b6101ea610639565b60055461010090046001600160a01b03166040516001600160a01b039091168152602001610167565b61015a610671565b6101836102bb366004611572565b610680565b6101836102ce366004611572565b610719565b6101ea6102e13660046114ff565b610726565b6101976102f4366004611490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ea61032d36600461146e565b61088a565b6060600380546103419061166e565b80601f016020809104026020016040519081016040528092919081815260200182805461036d9061166e565b80156103ba5780601f1061038f576101008083540402835291602001916103ba565b820191906000526020600020905b81548152906001019060200180831161039d57829003601f168201915b5050505050905090565b60006103d1338484610928565b50600192915050565b60006103e7848484610a4c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047e8533858403610928565b506001949350505050565b6000610493610c26565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103d19185906104cf90869061163f565b610928565b6005546001600160a01b036101009091041633146105045760405162461bcd60e51b81526004016104689061160a565b61050c610d19565b565b6005546001600160a01b0361010090910416331461053e5760405162461bcd60e51b81526004016104689061160a565b6105488282610dac565b5050565b6105563382610e97565b50565b6005546001600160a01b036101009091041633146105895760405162461bcd60e51b81526004016104689061160a565b61050c6000610ff1565b600061059f83336102f4565b9050818110156105fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610468565b61060a8333848403610928565b6106148383610e97565b505050565b6001600160a01b0381166000908152600660205260408120545b92915050565b6005546001600160a01b036101009091041633146106695760405162461bcd60e51b81526004016104689061160a565b61050c61104b565b6060600480546103419061166e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107025760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610468565b61070f3385858403610928565b5060019392505050565b60006103d1338484610a4c565b834211156107765760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610468565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886107a58c6110c6565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610800826110ee565b905060006108108287878761113c565b9050896001600160a01b0316816001600160a01b0316146108735760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610468565b61087e8a8a8a610928565b50505050505050505050565b6005546001600160a01b036101009091041633146108ba5760405162461bcd60e51b81526004016104689061160a565b6001600160a01b03811661091f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610468565b61055681610ff1565b6001600160a01b03831661098a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610468565b6001600160a01b0382166109eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610468565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610468565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610468565b610b1d838383611164565b6001600160a01b03831660009081526020819052604090205481811015610b955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610468565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610bcc90849061163f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c1891815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461415610c7557507f0f541028766e170eded6229617e33645bd36d21093a8f8ebc126bc8d1aeac7b390565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fc60b153709f38bfb72c8757f687f9cf2b230f87cba37ccf5b7f694378b028a2d828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60055460ff16610d625760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610468565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610e025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610468565b610e0e60008383611164565b8060026000828254610e20919061163f565b90915550506001600160a01b03821660009081526020819052604081208054839290610e4d90849061163f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ef75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610468565b610f0382600083611164565b6001600160a01b03821660009081526020819052604090205481811015610f775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610468565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fa6908490611657565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156110915760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610468565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d8f3390565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b60006106336110fb610c26565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061114d878787876111aa565b9150915061115a81611297565b5095945050505050565b60055460ff16156106145760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610468565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156111e1575060009050600361128e565b8460ff16601b141580156111f957508460ff16601c14155b1561120a575060009050600461128e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561125e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166112875760006001925092505061128e565b9150600090505b94509492505050565b60008160048111156112ab576112ab6116b9565b14156112b45750565b60018160048111156112c8576112c86116b9565b14156113165760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610468565b600281600481111561132a5761132a6116b9565b14156113785760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610468565b600381600481111561138c5761138c6116b9565b14156113e55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610468565b60048160048111156113f9576113f96116b9565b14156105565760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610468565b80356001600160a01b038116811461146957600080fd5b919050565b60006020828403121561148057600080fd5b61148982611452565b9392505050565b600080604083850312156114a357600080fd5b6114ac83611452565b91506114ba60208401611452565b90509250929050565b6000806000606084860312156114d857600080fd5b6114e184611452565b92506114ef60208501611452565b9150604084013590509250925092565b600080600080600080600060e0888a03121561151a57600080fd5b61152388611452565b965061153160208901611452565b95506040880135945060608801359350608088013560ff8116811461155557600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561158557600080fd5b61158e83611452565b946020939093013593505050565b6000602082840312156115ae57600080fd5b5035919050565b600060208083528351808285015260005b818110156115e2578581018301518582016040015282016115c6565b818111156115f4576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611652576116526116a3565b500190565b600082821015611669576116696116a3565b500390565b600181811c9082168061168257607f821691505b602082108114156110e857634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212204f384482197f1fdeea125219e04251d346d9e3e600f14b7b0de3f5999cef41bd64736f6c63430008070033

Deployed Bytecode Sourcemap

42382:663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23668:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25835:169;;;;;;:::i;:::-;;:::i;:::-;;;2893:14:1;;2886:22;2868:41;;2856:2;2841:18;25835:169:0;2728:187:1;24788:108:0;24876:12;;24788:108;;;3066:25:1;;;3054:2;3039:18;24788:108:0;2920:177:1;26486:492:0;;;;;;:::i;:::-;;:::i;24630:93::-;;;24713:2;13629:36:1;;13617:2;13602:18;24630:93:0;13487:184:1;35996:115:0;;;:::i;27387:215::-;;;;;;:::i;:::-;;:::i;42667:65::-;;;:::i;:::-;;42740:95;;;;;;:::i;:::-;;:::i;41512:91::-;;;;;;:::i;:::-;;:::i;39829:86::-;39900:7;;;;39829:86;;24959:127;;;;;;:::i;:::-;-1:-1:-1;;;;;25060:18:0;25033:7;25060:18;;;;;;;;;;;;24959:127;38120:94;;;:::i;41922:368::-;;;;;;:::i;:::-;;:::i;35738:128::-;;;;;;:::i;:::-;;:::i;42598:61::-;;;:::i;37469:87::-;37542:6;;;;;-1:-1:-1;;;;;37542:6:0;37469:87;;-1:-1:-1;;;;;2684:32:1;;;2666:51;;2654:2;2639:18;37469:87:0;2520:203:1;23887:104:0;;;:::i;28105:413::-;;;;;;:::i;:::-;;:::i;25299:175::-;;;;;;:::i;:::-;;:::i;35027:645::-;;;;;;:::i;:::-;;:::i;25537:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25653:18:0;;;25626:7;25653:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25537:151;38369:192;;;;;;:::i;:::-;;:::i;23668:100::-;23722:13;23755:5;23748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23668:100;:::o;25835:169::-;25918:4;25935:39;17919:10;25958:7;25967:6;25935:8;:39::i;:::-;-1:-1:-1;25992:4:0;25835:169;;;;:::o;26486:492::-;26626:4;26643:36;26653:6;26661:9;26672:6;26643:9;:36::i;:::-;-1:-1:-1;;;;;26719:19:0;;26692:24;26719:19;;;:11;:19;;;;;;;;17919:10;26719:33;;;;;;;;26771:26;;;;26763:79;;;;-1:-1:-1;;;26763:79:0;;10353:2:1;26763:79:0;;;10335:21:1;10392:2;10372:18;;;10365:30;10431:34;10411:18;;;10404:62;-1:-1:-1;;;10482:18:1;;;10475:38;10530:19;;26763:79:0;;;;;;;;;26878:57;26887:6;17919:10;26928:6;26909:16;:25;26878:8;:57::i;:::-;-1:-1:-1;26966:4:0;;26486:492;-1:-1:-1;;;;26486:492:0:o;35996:115::-;36056:7;36083:20;:18;:20::i;:::-;36076:27;;35996:115;:::o;27387:215::-;17919:10;27475:4;27524:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27524:34:0;;;;;;;;;;27475:4;;27492:80;;27515:7;;27524:47;;27561:10;;27524:47;:::i;:::-;27492:8;:80::i;42667:65::-;37542:6;;-1:-1:-1;;;;;37542:6:0;;;;;17919:10;37689:23;37681:68;;;;-1:-1:-1;;;37681:68:0;;;;;;;:::i;:::-;42714:10:::1;:8;:10::i;:::-;42667:65::o:0;42740:95::-;37542:6;;-1:-1:-1;;;;;37542:6:0;;;;;17919:10;37689:23;37681:68;;;;-1:-1:-1;;;37681:68:0;;;;;;;:::i;:::-;42810:17:::1;42816:2;42820:6;42810:5;:17::i;:::-;42740:95:::0;;:::o;41512:91::-;41568:27;17919:10;41588:6;41568:5;:27::i;:::-;41512:91;:::o;38120:94::-;37542:6;;-1:-1:-1;;;;;37542:6:0;;;;;17919:10;37689:23;37681:68;;;;-1:-1:-1;;;37681:68:0;;;;;;;:::i;:::-;38185:21:::1;38203:1;38185:9;:21::i;41922:368::-:0;41999:24;42026:32;42036:7;17919:10;25537:151;:::i;42026:32::-;41999:59;;42097:6;42077:16;:26;;42069:75;;;;-1:-1:-1;;;42069:75:0;;11123:2:1;42069:75:0;;;11105:21:1;11162:2;11142:18;;;11135:30;11201:34;11181:18;;;11174:62;-1:-1:-1;;;11252:18:1;;;11245:34;11296:19;;42069:75:0;10921:400:1;42069:75:0;42180:58;42189:7;17919:10;42231:6;42212:16;:25;42180:8;:58::i;:::-;42260:22;42266:7;42275:6;42260:5;:22::i;:::-;41988:302;41922:368;;:::o;35738:128::-;-1:-1:-1;;;;;35834:14:0;;35807:7;35834:14;;;:7;:14;;;;;952;35834:24;35827:31;35738:128;-1:-1:-1;;35738:128:0:o;42598:61::-;37542:6;;-1:-1:-1;;;;;37542:6:0;;;;;17919:10;37689:23;37681:68;;;;-1:-1:-1;;;37681:68:0;;;;;;;:::i;:::-;42643:8:::1;:6;:8::i;23887:104::-:0;23943:13;23976:7;23969:14;;;;;:::i;28105:413::-;17919:10;28198:4;28242:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28242:34:0;;;;;;;;;;28295:35;;;;28287:85;;;;-1:-1:-1;;;28287:85:0;;12741:2:1;28287:85:0;;;12723:21:1;12780:2;12760:18;;;12753:30;12819:34;12799:18;;;12792:62;-1:-1:-1;;;12870:18:1;;;12863:35;12915:19;;28287:85:0;12539:401:1;28287:85:0;28408:67;17919:10;28431:7;28459:15;28440:16;:34;28408:8;:67::i;:::-;-1:-1:-1;28506:4:0;;28105:413;-1:-1:-1;;;28105:413:0:o;25299:175::-;25385:4;25402:42;17919:10;25426:9;25437:6;25402:9;:42::i;35027:645::-;35271:8;35252:15;:27;;35244:69;;;;-1:-1:-1;;;35244:69:0;;8078:2:1;35244:69:0;;;8060:21:1;8117:2;8097:18;;;8090:30;8156:31;8136:18;;;8129:59;8205:18;;35244:69:0;7876:353:1;35244:69:0;35326:18;35368:16;35386:5;35393:7;35402:5;35409:16;35419:5;35409:9;:16::i;:::-;35357:79;;;;;;3389:25:1;;;;-1:-1:-1;;;;;3488:15:1;;;3468:18;;;3461:43;3540:15;;;;3520:18;;;3513:43;3572:18;;;3565:34;3615:19;;;3608:35;3659:19;;;3652:35;;;3361:19;;35357:79:0;;;;;;;;;;;;35347:90;;;;;;35326:111;;35450:12;35465:28;35482:10;35465:16;:28::i;:::-;35450:43;;35506:14;35523:28;35537:4;35543:1;35546;35549;35523:13;:28::i;:::-;35506:45;;35580:5;-1:-1:-1;;;;;35570:15:0;:6;-1:-1:-1;;;;;35570:15:0;;35562:58;;;;-1:-1:-1;;;35562:58:0;;9994:2:1;35562:58:0;;;9976:21:1;10033:2;10013:18;;;10006:30;10072:32;10052:18;;;10045:60;10122:18;;35562:58:0;9792:354:1;35562:58:0;35633:31;35642:5;35649:7;35658:5;35633:8;:31::i;:::-;35233:439;;;35027:645;;;;;;;:::o;38369:192::-;37542:6;;-1:-1:-1;;;;;37542:6:0;;;;;17919:10;37689:23;37681:68;;;;-1:-1:-1;;;37681:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38458:22:0;::::1;38450:73;;;::::0;-1:-1:-1;;;38450:73:0;;7268:2:1;38450:73:0::1;::::0;::::1;7250:21:1::0;7307:2;7287:18;;;7280:30;7346:34;7326:18;;;7319:62;-1:-1:-1;;;7397:18:1;;;7390:36;7443:19;;38450:73:0::1;7066:402:1::0;38450:73:0::1;38534:19;38544:8;38534:9;:19::i;31789:380::-:0;-1:-1:-1;;;;;31925:19:0;;31917:68;;;;-1:-1:-1;;;31917:68:0;;12336:2:1;31917:68:0;;;12318:21:1;12375:2;12355:18;;;12348:30;12414:34;12394:18;;;12387:62;-1:-1:-1;;;12465:18:1;;;12458:34;12509:19;;31917:68:0;12134:400:1;31917:68:0;-1:-1:-1;;;;;32004:21:0;;31996:68;;;;-1:-1:-1;;;31996:68:0;;7675:2:1;31996:68:0;;;7657:21:1;7714:2;7694:18;;;7687:30;7753:34;7733:18;;;7726:62;-1:-1:-1;;;7804:18:1;;;7797:32;7846:19;;31996:68:0;7473:398:1;31996:68:0;-1:-1:-1;;;;;32077:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32129:32;;3066:25:1;;;32129:32:0;;3039:18:1;32129:32:0;;;;;;;31789:380;;;:::o;29008:733::-;-1:-1:-1;;;;;29148:20:0;;29140:70;;;;-1:-1:-1;;;29140:70:0;;11930:2:1;29140:70:0;;;11912:21:1;11969:2;11949:18;;;11942:30;12008:34;11988:18;;;11981:62;-1:-1:-1;;;12059:18:1;;;12052:35;12104:19;;29140:70:0;11728:401:1;29140:70:0;-1:-1:-1;;;;;29229:23:0;;29221:71;;;;-1:-1:-1;;;29221:71:0;;5752:2:1;29221:71:0;;;5734:21:1;5791:2;5771:18;;;5764:30;5830:34;5810:18;;;5803:62;-1:-1:-1;;;5881:18:1;;;5874:33;5924:19;;29221:71:0;5550:399:1;29221:71:0;29305:47;29326:6;29334:9;29345:6;29305:20;:47::i;:::-;-1:-1:-1;;;;;29389:17:0;;29365:21;29389:17;;;;;;;;;;;29425:23;;;;29417:74;;;;-1:-1:-1;;;29417:74:0;;8436:2:1;29417:74:0;;;8418:21:1;8475:2;8455:18;;;8448:30;8514:34;8494:18;;;8487:62;-1:-1:-1;;;8565:18:1;;;8558:36;8611:19;;29417:74:0;8234:402:1;29417:74:0;-1:-1:-1;;;;;29527:17:0;;;:9;:17;;;;;;;;;;;29547:22;;;29527:42;;29591:20;;;;;;;;:30;;29563:6;;29527:9;29591:30;;29563:6;;29591:30;:::i;:::-;;;;;;;;29656:9;-1:-1:-1;;;;;29639:35:0;29648:6;-1:-1:-1;;;;;29639:35:0;;29667:6;29639:35;;;;3066:25:1;;3054:2;3039:18;;2920:177;29639:35:0;;;;;;;;29129:612;29008:733;;;:::o;13545:281::-;13598:7;13639:16;13622:13;:33;13618:201;;;-1:-1:-1;13679:24:0;;13545:281::o;13618:201::-;-1:-1:-1;14015:73:0;;;13765:10;14015:73;;;;3957:25:1;;;;13777:12:0;3998:18:1;;;3991:34;13791:15:0;4041:18:1;;;4034:34;14059:13:0;4084:18:1;;;4077:34;14082:4:0;4127:19:1;;;;4120:61;;;;14015:73:0;;;;;;;;;;3929:19:1;;;;14015:73:0;;;14005:84;;;;;;35996:115::o;40888:120::-;39900:7;;;;40424:41;;;;-1:-1:-1;;;40424:41:0;;6156:2:1;40424:41:0;;;6138:21:1;6195:2;6175:18;;;6168:30;-1:-1:-1;;;6214:18:1;;;6207:50;6274:18;;40424:41:0;5954:344:1;40424:41:0;40947:7:::1;:15:::0;;-1:-1:-1;;40947:15:0::1;::::0;;40978:22:::1;17919:10:::0;40987:12:::1;40978:22;::::0;-1:-1:-1;;;;;2684:32:1;;;2666:51;;2654:2;2639:18;40978:22:0::1;;;;;;;40888:120::o:0;30028:399::-;-1:-1:-1;;;;;30112:21:0;;30104:65;;;;-1:-1:-1;;;30104:65:0;;13147:2:1;30104:65:0;;;13129:21:1;13186:2;13166:18;;;13159:30;13225:33;13205:18;;;13198:61;13276:18;;30104:65:0;12945:355:1;30104:65:0;30182:49;30211:1;30215:7;30224:6;30182:20;:49::i;:::-;30260:6;30244:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;30277:18:0;;:9;:18;;;;;;;;;;:28;;30299:6;;30277:9;:28;;30299:6;;30277:28;:::i;:::-;;;;-1:-1:-1;;30321:37:0;;3066:25:1;;;-1:-1:-1;;;;;30321:37:0;;;30338:1;;30321:37;;3054:2:1;3039:18;30321:37:0;;;;;;;42740:95;;:::o;30760:591::-;-1:-1:-1;;;;;30844:21:0;;30836:67;;;;-1:-1:-1;;;30836:67:0;;11528:2:1;30836:67:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:31;11698:19;;30836:67:0;11326:397:1;30836:67:0;30916:49;30937:7;30954:1;30958:6;30916:20;:49::i;:::-;-1:-1:-1;;;;;31003:18:0;;30978:22;31003:18;;;;;;;;;;;31040:24;;;;31032:71;;;;-1:-1:-1;;;31032:71:0;;6505:2:1;31032:71:0;;;6487:21:1;6544:2;6524:18;;;6517:30;6583:34;6563:18;;;6556:62;-1:-1:-1;;;6634:18:1;;;6627:32;6676:19;;31032:71:0;6303:398:1;31032:71:0;-1:-1:-1;;;;;31139:18:0;;:9;:18;;;;;;;;;;31160:23;;;31139:44;;31205:12;:22;;31177:6;;31139:9;31205:22;;31177:6;;31205:22;:::i;:::-;;;;-1:-1:-1;;31245:37:0;;3066:25:1;;;31271:1:0;;-1:-1:-1;;;;;31245:37:0;;;;;3054:2:1;3039:18;31245:37:0;;;;;;;41988:302;41922:368;;:::o;38569:173::-;38644:6;;;-1:-1:-1;;;;;38661:17:0;;;38644:6;38661:17;;;-1:-1:-1;;;;;;38661:17:0;;;;;;38694:40;;38644:6;;;;;;;;38694:40;;38625:16;;38694:40;38614:128;38569:173;:::o;40629:118::-;39900:7;;;;40154:9;40146:38;;;;-1:-1:-1;;;40146:38:0;;9246:2:1;40146:38:0;;;9228:21:1;9285:2;9265:18;;;9258:30;-1:-1:-1;;;9304:18:1;;;9297:46;9360:18;;40146:38:0;9044:340:1;40146:38:0;40689:7:::1;:14:::0;;-1:-1:-1;;40689:14:0::1;40699:4;40689:14;::::0;;40719:20:::1;40726:12;17919:10:::0;;17839:98;36249:207;-1:-1:-1;;;;;36370:14:0;;36309:15;36370:14;;;:7;:14;;;;;952;;1089:1;1071:19;;;;952:14;36431:17;36326:130;36249:207;;;:::o;14739:167::-;14816:7;14843:55;14865:20;:18;:20::i;:::-;14887:10;10392:57;;-1:-1:-1;;;10392:57:0;;;2381:27:1;2424:11;;;2417:27;;;2460:12;;;2453:28;;;10355:7:0;;2497:12:1;;10392:57:0;;;;;;;;;;;;10382:68;;;;;;10375:75;;10262:196;;;;;9064:279;9192:7;9213:17;9232:18;9254:25;9265:4;9271:1;9274;9277;9254:10;:25::i;:::-;9212:67;;;;9290:18;9302:5;9290:11;:18::i;:::-;-1:-1:-1;9326:9:0;9064:279;-1:-1:-1;;;;;9064:279:0:o;42843:199::-;39900:7;;;;40154:9;40146:38;;;;-1:-1:-1;;;40146:38:0;;9246:2:1;40146:38:0;;;9228:21:1;9285:2;9265:18;;;9258:30;-1:-1:-1;;;9304:18:1;;;9297:46;9360:18;;40146:38:0;9044:340:1;7293:1632:0;7424:7;;8358:66;8345:79;;8341:163;;;-1:-1:-1;8457:1:0;;-1:-1:-1;8461:30:0;8441:51;;8341:163;8518:1;:7;;8523:2;8518:7;;:18;;;;;8529:1;:7;;8534:2;8529:7;;8518:18;8514:102;;;-1:-1:-1;8569:1:0;;-1:-1:-1;8573:30:0;8553:51;;8514:102;8730:24;;;8713:14;8730:24;;;;;;;;;4419:25:1;;;4492:4;4480:17;;4460:18;;;4453:45;;;;4514:18;;;4507:34;;;4557:18;;;4550:34;;;8730:24:0;;4391:19:1;;8730:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8730:24:0;;-1:-1:-1;;8730:24:0;;;-1:-1:-1;;;;;;;8769:20:0;;8765:103;;8822:1;8826:29;8806:50;;;;;;;8765:103;8888:6;-1:-1:-1;8896:20:0;;-1:-1:-1;7293:1632:0;;;;;;;;:::o;1955:643::-;2033:20;2024:5;:29;;;;;;;;:::i;:::-;;2020:571;;;1955:643;:::o;2020:571::-;2131:29;2122:5;:38;;;;;;;;:::i;:::-;;2118:473;;;2177:34;;-1:-1:-1;;;2177:34:0;;5399:2:1;2177:34:0;;;5381:21:1;5438:2;5418:18;;;5411:30;5477:26;5457:18;;;5450:54;5521:18;;2177:34:0;5197:348:1;2118:473:0;2242:35;2233:5;:44;;;;;;;;:::i;:::-;;2229:362;;;2294:41;;-1:-1:-1;;;2294:41:0;;6908:2:1;2294:41:0;;;6890:21:1;6947:2;6927:18;;;6920:30;6986:33;6966:18;;;6959:61;7037:18;;2294:41:0;6706:355:1;2229:362:0;2366:30;2357:5;:39;;;;;;;;:::i;:::-;;2353:238;;;2413:44;;-1:-1:-1;;;2413:44:0;;8843:2:1;2413:44:0;;;8825:21:1;8882:2;8862:18;;;8855:30;8921:34;8901:18;;;8894:62;-1:-1:-1;;;8972:18:1;;;8965:32;9014:19;;2413:44:0;8641:398:1;2353:238:0;2488:30;2479:5;:39;;;;;;;;:::i;:::-;;2475:116;;;2535:44;;-1:-1:-1;;;2535:44:0;;9591:2:1;2535:44:0;;;9573:21:1;9630:2;9610:18;;;9603:30;9669:34;9649:18;;;9642:62;-1:-1:-1;;;9720:18:1;;;9713:32;9762:19;;2535:44:0;9389:398:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:693::-;1092:6;1100;1108;1116;1124;1132;1140;1193:3;1181:9;1172:7;1168:23;1164:33;1161:53;;;1210:1;1207;1200:12;1161:53;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1417:2;1406:9;1402:18;1389:32;1379:42;;1471:3;1460:9;1456:19;1443:33;1516:4;1509:5;1505:16;1498:5;1495:27;1485:55;;1536:1;1533;1526:12;1485:55;981:693;;;;-1:-1:-1;981:693:1;;;;1559:5;1611:3;1596:19;;1583:33;;-1:-1:-1;1663:3:1;1648:19;;;1635:33;;981:693;-1:-1:-1;;981:693:1:o;1679:254::-;1747:6;1755;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;1847:29;1866:9;1847:29;:::i;:::-;1837:39;1923:2;1908:18;;;;1895:32;;-1:-1:-1;;;1679:254:1:o;1938:180::-;1997:6;2050:2;2038:9;2029:7;2025:23;2021:32;2018:52;;;2066:1;2063;2056:12;2018:52;-1:-1:-1;2089:23:1;;1938:180;-1:-1:-1;1938:180:1:o;4595:597::-;4707:4;4736:2;4765;4754:9;4747:21;4797:6;4791:13;4840:6;4835:2;4824:9;4820:18;4813:34;4865:1;4875:140;4889:6;4886:1;4883:13;4875:140;;;4984:14;;;4980:23;;4974:30;4950:17;;;4969:2;4946:26;4939:66;4904:10;;4875:140;;;5033:6;5030:1;5027:13;5024:91;;;5103:1;5098:2;5089:6;5078:9;5074:22;5070:31;5063:42;5024:91;-1:-1:-1;5176:2:1;5155:15;-1:-1:-1;;5151:29:1;5136:45;;;;5183:2;5132:54;;4595:597;-1:-1:-1;;;4595:597:1:o;10560:356::-;10762:2;10744:21;;;10781:18;;;10774:30;10840:34;10835:2;10820:18;;10813:62;10907:2;10892:18;;10560:356::o;13676:128::-;13716:3;13747:1;13743:6;13740:1;13737:13;13734:39;;;13753:18;;:::i;:::-;-1:-1:-1;13789:9:1;;13676:128::o;13809:125::-;13849:4;13877:1;13874;13871:8;13868:34;;;13882:18;;:::i;:::-;-1:-1:-1;13919:9:1;;13809:125::o;13939:380::-;14018:1;14014:12;;;;14061;;;14082:61;;14136:4;14128:6;14124:17;14114:27;;14082:61;14189:2;14181:6;14178:14;14158:18;14155:38;14152:161;;;14235:10;14230:3;14226:20;14223:1;14216:31;14270:4;14267:1;14260:15;14298:4;14295:1;14288:15;14324:127;14385:10;14380:3;14376:20;14373:1;14366:31;14416:4;14413:1;14406:15;14440:4;14437:1;14430:15;14456:127;14517:10;14512:3;14508:20;14505:1;14498:31;14548:4;14545:1;14538:15;14572:4;14569:1;14562:15

Swarm Source

ipfs://4f384482197f1fdeea125219e04251d346d9e3e600f14b7b0de3f5999cef41bd

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

This token is a 1:1 representation of native Safecoin, with SafeTrade as the Custodian.

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.