FTM Price: $0.409246 (+6.03%)
 

Overview

Max Total Supply

4,995,503.552100381408008464 STEAK

Holders

1,066 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 FTM

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Protocol for stabilizing fUSD through loan/borrowing and farming

Contract Source Code Verified (Exact Match)

Contract Name:
SteakToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-05-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

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

/**
 * @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 name, bytes32 version) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                typeHash,
                name,
                version,
                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);
    }
}

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

/**
 * @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, IERC20Metadata {
    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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
     * overloaded;
     *
     * 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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");

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

        emit Transfer(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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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");

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

        emit Transfer(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 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 {
        // 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,
                _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.
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

/**
 * STEAK is a token which enables the work and token economics of Stake Steak -
 * a cross-chain yield enhancement platform focusing on
 * Automated Market-Making (AMM) Liquidity Providers (LP)
 */
contract SteakToken is ERC20Permit, Ownable {
    
    constructor()  ERC20("SteakToken", "STEAK") ERC20Permit("SteakToken") 
    {
        
    }
    
    
    // Maximum total supply of the token (5M)
    uint256 private _maxTotalSupply = 5000000000000000000000000;

    
    // Returns maximum total supply of the token
    function getMaxTotalSupply() external view returns (uint256) {
        return _maxTotalSupply;
    }
    
    /** @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
     *
     * - `to` cannot be the zero address.
     * - can be called only by the owner of contract
     */
    function mint(address account, uint256 amount) external onlyOwner {
        _mint(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) external onlyOwner {
        _burn(account, 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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal override {
        require(account != address(0), "ERC20: mint to the zero address");
        require(_totalSupply + amount <= _maxTotalSupply, "ERC20: minting more then MaxTotalSupply");
        
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, 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":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":"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[],"name":"getMaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","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":[{"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"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120526a0422ca8b0a00a4250000006007553480156200004657600080fd5b506040518060400160405280600a81526020016929ba32b0b5aa37b5b2b760b11b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600a81526020016929ba32b0b5aa37b5b2b760b11b81525060405180604001604052806005815260200164535445414b60d81b8152508160039080519060200190620000de929190620001f8565b508051620000f4906004906020840190620001f8565b5050825160208085019190912083519184019190912060c082905260e08190524660a0529091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f62000149818484620001b8565b60805261010052506000935062000164925050620001f49050565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000307565b60008383834630604051602001620001d59594939291906200029e565b6040516020818303038152906040528051906020012090509392505050565b3390565b8280546200020690620002ca565b90600052602060002090601f0160209004810192826200022a576000855562000275565b82601f106200024557805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027557825182559160200191906001019062000258565b506200028392915062000287565b5090565b5b8082111562000283576000815560010162000288565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b600281046001821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516117e26200035760003960006106ee01526000610adb01526000610b1d01526000610afc01526000610a8901526000610ab201526117e26000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c8063715018a6116100cd578063a457c2d711610081578063d505accf11610066578063d505accf146102a8578063dd62ed3e146102bb578063f2fde38b146102ce5761016c565b8063a457c2d714610282578063a9059cbb146102955761016c565b80638da5cb5b116100b25780638da5cb5b1461025257806395d89b41146102675780639dc29fac1461026f5761016c565b8063715018a6146102375780637ecebe001461023f5761016c565b80633644e5151161012457806340c10f191161010957806340c10f19146102075780635db30bb11461021c57806370a08231146102245761016c565b80633644e515146101ec57806339509351146101f45761016c565b806318160ddd1161015557806318160ddd146101af57806323b872dd146101c4578063313ce567146101d75761016c565b806306fdde0314610171578063095ea7b31461018f575b600080fd5b6101796102e1565b60405161018691906110d5565b60405180910390f35b6101a261019d366004610fd0565b610374565b6040516101869190611043565b6101b7610391565b604051610186919061104e565b6101a26101d2366004610f24565b610397565b6101df610437565b60405161018691906116f2565b6101b761043c565b6101a2610202366004610fd0565b61044b565b61021a610215366004610fd0565b61049a565b005b6101b76104e7565b6101b7610232366004610ed1565b6104ed565b61021a61050c565b6101b761024d366004610ed1565b6105ad565b61025a6105d4565b604051610186919061102f565b6101796105e3565b61021a61027d366004610fd0565b6105f2565b6101a2610290366004610fd0565b61063b565b6101a26102a3366004610fd0565b6106b6565b61021a6102b6366004610f5f565b6106ca565b6101b76102c9366004610ef2565b6107ac565b61021a6102dc366004610ed1565b6107d7565b6060600380546102f09061172f565b80601f016020809104026020016040519081016040528092919081815260200182805461031c9061172f565b80156103695780601f1061033e57610100808354040283529160200191610369565b820191906000526020600020905b81548152906001019060200180831161034c57829003601f168201915b505050505090505b90565b60006103886103816108b0565b84846108b4565b50600192915050565b60025490565b60006103a4848484610968565b6001600160a01b0384166000908152600160205260408120816103c56108b0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b8152600401610408906114b5565b60405180910390fd5b61042c8561041d6108b0565b6104278685611718565b6108b4565b506001949350505050565b601290565b6000610446610a85565b905090565b60006103886104586108b0565b8484600160006104666108b0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104279190611700565b6104a26108b0565b6001600160a01b03166104b36105d4565b6001600160a01b0316146104d95760405162461bcd60e51b815260040161040890611512565b6104e38282610b48565b5050565b60075490565b6001600160a01b0381166000908152602081905260409020545b919050565b6105146108b0565b6001600160a01b03166105256105d4565b6001600160a01b03161461054b5760405162461bcd60e51b815260040161040890611512565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6001600160a01b03811660009081526005602052604081206105ce90610c2b565b92915050565b6006546001600160a01b031690565b6060600480546102f09061172f565b6105fa6108b0565b6001600160a01b031661060b6105d4565b6001600160a01b0316146106315760405162461bcd60e51b815260040161040890611512565b6104e38282610c2f565b6000806001600061064a6108b0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106965760405162461bcd60e51b81526004016104089061165e565b6106ac6106a16108b0565b856104278685611718565b5060019392505050565b60006103886106c36108b0565b8484610968565b834211156106ea5760405162461bcd60e51b8152600401610408906112d3565b60007f00000000000000000000000000000000000000000000000000000000000000008888886107198c610d09565b8960405160200161072f96959493929190611057565b604051602081830303815290604052805190602001209050600061075282610d3b565b9050600061076282878787610d4e565b9050896001600160a01b0316816001600160a01b0316146107955760405162461bcd60e51b81526004016104089061147e565b6107a08a8a8a6108b4565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107df6108b0565b6001600160a01b03166107f06105d4565b6001600160a01b0316146108165760405162461bcd60e51b815260040161040890611512565b6001600160a01b03811661083c5760405162461bcd60e51b815260040161040890611219565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166108da5760405162461bcd60e51b815260040161040890611601565b6001600160a01b0382166109005760405162461bcd60e51b815260040161040890611276565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061095b90859061104e565b60405180910390a3505050565b6001600160a01b03831661098e5760405162461bcd60e51b8152600401610408906115a4565b6001600160a01b0382166109b45760405162461bcd60e51b81526004016104089061115f565b6001600160a01b038316600090815260208190526040902054818110156109ed5760405162461bcd60e51b81526004016104089061130a565b6109f78282611718565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610a2d908490611700565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a77919061104e565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415610ad657507f0000000000000000000000000000000000000000000000000000000000000000610371565b610b417f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610e44565b9050610371565b6001600160a01b038216610b6e5760405162461bcd60e51b8152600401610408906116bb565b60075481600254610b7f9190611700565b1115610b9d5760405162461bcd60e51b815260040161040890611421565b8060026000828254610baf9190611700565b90915550506001600160a01b03821660009081526020819052604081208054839290610bdc908490611700565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c1f90859061104e565b60405180910390a35050565b5490565b6001600160a01b038216610c555760405162461bcd60e51b815260040161040890611547565b6001600160a01b03821660009081526020819052604090205481811015610c8e5760405162461bcd60e51b8152600401610408906111bc565b610c988282611718565b6001600160a01b03841660009081526020819052604081209190915560028054849290610cc6908490611718565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061095b90869061104e565b6001600160a01b0381166000908152600560205260408120610d2a81610c2b565b9150610d3581610e7e565b50919050565b60006105ce610d48610a85565b83610e87565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115610d905760405162461bcd60e51b815260040161040890611367565b8360ff16601b1480610da557508360ff16601c145b610dc15760405162461bcd60e51b8152600401610408906113c4565b600060018686868660405160008152602001604052604051610de694939291906110b7565b6020604051602081039080840390855afa158015610e08573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e3b5760405162461bcd60e51b815260040161040890611128565b95945050505050565b60008383834630604051602001610e5f95949392919061108b565b6040516020818303038152906040528051906020012090509392505050565b80546001019055565b60008282604051602001610e9c929190610ff9565b60405160208183030381529060405280519060200120905092915050565b80356001600160a01b038116811461050757600080fd5b600060208284031215610ee2578081fd5b610eeb82610eba565b9392505050565b60008060408385031215610f04578081fd5b610f0d83610eba565b9150610f1b60208401610eba565b90509250929050565b600080600060608486031215610f38578081fd5b610f4184610eba565b9250610f4f60208501610eba565b9150604084013590509250925092565b600080600080600080600060e0888a031215610f79578283fd5b610f8288610eba565b9650610f9060208901610eba565b95506040880135945060608801359350608088013560ff81168114610fb3578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610fe2578182fd5b610feb83610eba565b946020939093013593505050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611101578581018301518582016040015282016110e5565b818111156111125783604083870101525b50601f01601f1916929092016040019392505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f45524332305065726d69743a206578706972656420646561646c696e65000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f45524332303a206d696e74696e67206d6f7265207468656e204d6178546f746160408201527f6c537570706c7900000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b600082198211156117135761171361177d565b500190565b60008282101561172a5761172a61177d565b500390565b60028104600182168061174357607f821691505b60208210811415610d35577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220276af09e353673f97606ac3dd6811af0faf0a73432ad389482746fa5dde0695d64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061016c5760003560e01c8063715018a6116100cd578063a457c2d711610081578063d505accf11610066578063d505accf146102a8578063dd62ed3e146102bb578063f2fde38b146102ce5761016c565b8063a457c2d714610282578063a9059cbb146102955761016c565b80638da5cb5b116100b25780638da5cb5b1461025257806395d89b41146102675780639dc29fac1461026f5761016c565b8063715018a6146102375780637ecebe001461023f5761016c565b80633644e5151161012457806340c10f191161010957806340c10f19146102075780635db30bb11461021c57806370a08231146102245761016c565b80633644e515146101ec57806339509351146101f45761016c565b806318160ddd1161015557806318160ddd146101af57806323b872dd146101c4578063313ce567146101d75761016c565b806306fdde0314610171578063095ea7b31461018f575b600080fd5b6101796102e1565b60405161018691906110d5565b60405180910390f35b6101a261019d366004610fd0565b610374565b6040516101869190611043565b6101b7610391565b604051610186919061104e565b6101a26101d2366004610f24565b610397565b6101df610437565b60405161018691906116f2565b6101b761043c565b6101a2610202366004610fd0565b61044b565b61021a610215366004610fd0565b61049a565b005b6101b76104e7565b6101b7610232366004610ed1565b6104ed565b61021a61050c565b6101b761024d366004610ed1565b6105ad565b61025a6105d4565b604051610186919061102f565b6101796105e3565b61021a61027d366004610fd0565b6105f2565b6101a2610290366004610fd0565b61063b565b6101a26102a3366004610fd0565b6106b6565b61021a6102b6366004610f5f565b6106ca565b6101b76102c9366004610ef2565b6107ac565b61021a6102dc366004610ed1565b6107d7565b6060600380546102f09061172f565b80601f016020809104026020016040519081016040528092919081815260200182805461031c9061172f565b80156103695780601f1061033e57610100808354040283529160200191610369565b820191906000526020600020905b81548152906001019060200180831161034c57829003601f168201915b505050505090505b90565b60006103886103816108b0565b84846108b4565b50600192915050565b60025490565b60006103a4848484610968565b6001600160a01b0384166000908152600160205260408120816103c56108b0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b8152600401610408906114b5565b60405180910390fd5b61042c8561041d6108b0565b6104278685611718565b6108b4565b506001949350505050565b601290565b6000610446610a85565b905090565b60006103886104586108b0565b8484600160006104666108b0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104279190611700565b6104a26108b0565b6001600160a01b03166104b36105d4565b6001600160a01b0316146104d95760405162461bcd60e51b815260040161040890611512565b6104e38282610b48565b5050565b60075490565b6001600160a01b0381166000908152602081905260409020545b919050565b6105146108b0565b6001600160a01b03166105256105d4565b6001600160a01b03161461054b5760405162461bcd60e51b815260040161040890611512565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6001600160a01b03811660009081526005602052604081206105ce90610c2b565b92915050565b6006546001600160a01b031690565b6060600480546102f09061172f565b6105fa6108b0565b6001600160a01b031661060b6105d4565b6001600160a01b0316146106315760405162461bcd60e51b815260040161040890611512565b6104e38282610c2f565b6000806001600061064a6108b0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106965760405162461bcd60e51b81526004016104089061165e565b6106ac6106a16108b0565b856104278685611718565b5060019392505050565b60006103886106c36108b0565b8484610968565b834211156106ea5760405162461bcd60e51b8152600401610408906112d3565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886107198c610d09565b8960405160200161072f96959493929190611057565b604051602081830303815290604052805190602001209050600061075282610d3b565b9050600061076282878787610d4e565b9050896001600160a01b0316816001600160a01b0316146107955760405162461bcd60e51b81526004016104089061147e565b6107a08a8a8a6108b4565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107df6108b0565b6001600160a01b03166107f06105d4565b6001600160a01b0316146108165760405162461bcd60e51b815260040161040890611512565b6001600160a01b03811661083c5760405162461bcd60e51b815260040161040890611219565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166108da5760405162461bcd60e51b815260040161040890611601565b6001600160a01b0382166109005760405162461bcd60e51b815260040161040890611276565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061095b90859061104e565b60405180910390a3505050565b6001600160a01b03831661098e5760405162461bcd60e51b8152600401610408906115a4565b6001600160a01b0382166109b45760405162461bcd60e51b81526004016104089061115f565b6001600160a01b038316600090815260208190526040902054818110156109ed5760405162461bcd60e51b81526004016104089061130a565b6109f78282611718565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610a2d908490611700565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a77919061104e565b60405180910390a350505050565b60007f00000000000000000000000000000000000000000000000000000000000000fa461415610ad657507f9bb7a26038712af445493cf456a884d2732306aa68e09eedb0cb894ac3483457610371565b610b417f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fb127192e56e13bdb15d1baca19968a2c57e970f2ab8d0909fc3819252d182eec7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6610e44565b9050610371565b6001600160a01b038216610b6e5760405162461bcd60e51b8152600401610408906116bb565b60075481600254610b7f9190611700565b1115610b9d5760405162461bcd60e51b815260040161040890611421565b8060026000828254610baf9190611700565b90915550506001600160a01b03821660009081526020819052604081208054839290610bdc908490611700565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c1f90859061104e565b60405180910390a35050565b5490565b6001600160a01b038216610c555760405162461bcd60e51b815260040161040890611547565b6001600160a01b03821660009081526020819052604090205481811015610c8e5760405162461bcd60e51b8152600401610408906111bc565b610c988282611718565b6001600160a01b03841660009081526020819052604081209190915560028054849290610cc6908490611718565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061095b90869061104e565b6001600160a01b0381166000908152600560205260408120610d2a81610c2b565b9150610d3581610e7e565b50919050565b60006105ce610d48610a85565b83610e87565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115610d905760405162461bcd60e51b815260040161040890611367565b8360ff16601b1480610da557508360ff16601c145b610dc15760405162461bcd60e51b8152600401610408906113c4565b600060018686868660405160008152602001604052604051610de694939291906110b7565b6020604051602081039080840390855afa158015610e08573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e3b5760405162461bcd60e51b815260040161040890611128565b95945050505050565b60008383834630604051602001610e5f95949392919061108b565b6040516020818303038152906040528051906020012090509392505050565b80546001019055565b60008282604051602001610e9c929190610ff9565b60405160208183030381529060405280519060200120905092915050565b80356001600160a01b038116811461050757600080fd5b600060208284031215610ee2578081fd5b610eeb82610eba565b9392505050565b60008060408385031215610f04578081fd5b610f0d83610eba565b9150610f1b60208401610eba565b90509250929050565b600080600060608486031215610f38578081fd5b610f4184610eba565b9250610f4f60208501610eba565b9150604084013590509250925092565b600080600080600080600060e0888a031215610f79578283fd5b610f8288610eba565b9650610f9060208901610eba565b95506040880135945060608801359350608088013560ff81168114610fb3578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610fe2578182fd5b610feb83610eba565b946020939093013593505050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611101578581018301518582016040015282016110e5565b818111156111125783604083870101525b50601f01601f1916929092016040019392505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f45524332305065726d69743a206578706972656420646561646c696e65000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60408201527f7565000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f45524332303a206d696e74696e67206d6f7265207468656e204d6178546f746160408201527f6c537570706c7900000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b600082198211156117135761171361177d565b500190565b60008282101561172a5761172a61177d565b500390565b60028104600182168061174357607f821691505b60208210811415610d35577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220276af09e353673f97606ac3dd6811af0faf0a73432ad389482746fa5dde0695d64736f6c63430008000033

Deployed Bytecode Sourcemap

31434:2007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20555:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22722:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21675:108::-;;;:::i;:::-;;;;;;;:::i;23373:422::-;;;;;;:::i;:::-;;:::i;21517:93::-;;;:::i;:::-;;;;;;;:::i;30800:115::-;;;:::i;24204:215::-;;;;;;:::i;:::-;;:::i;32215:107::-;;;;;;:::i;:::-;;:::i;:::-;;31774:102;;;:::i;21846:127::-;;;;;;:::i;:::-;;:::i;2606:148::-;;;:::i;30542:128::-;;;;;;:::i;:::-;;:::i;1955:87::-;;;:::i;:::-;;;;;;;:::i;20774:104::-;;;:::i;32658:107::-;;;;;;:::i;:::-;;:::i;24922:377::-;;;;;;:::i;:::-;;:::i;22186:175::-;;;;;;:::i;:::-;;:::i;29705:771::-;;;;;;:::i;:::-;;:::i;22424:151::-;;;;;;:::i;:::-;;:::i;2909:244::-;;;;;;:::i;:::-;;:::i;20555:100::-;20609:13;20642:5;20635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20555:100;;:::o;22722:169::-;22805:4;22822:39;22831:12;:10;:12::i;:::-;22845:7;22854:6;22822:8;:39::i;:::-;-1:-1:-1;22879:4:0;22722:169;;;;:::o;21675:108::-;21763:12;;21675:108;:::o;23373:422::-;23479:4;23496:36;23506:6;23514:9;23525:6;23496:9;:36::i;:::-;-1:-1:-1;;;;;23572:19:0;;23545:24;23572:19;;;:11;:19;;;;;23545:24;23592:12;:10;:12::i;:::-;-1:-1:-1;;;;;23572:33:0;-1:-1:-1;;;;;23572:33:0;;;;;;;;;;;;;23545:60;;23644:6;23624:16;:26;;23616:79;;;;-1:-1:-1;;;23616:79:0;;;;;;;:::i;:::-;;;;;;;;;23706:57;23715:6;23723:12;:10;:12::i;:::-;23737:25;23756:6;23737:16;:25;:::i;:::-;23706:8;:57::i;:::-;-1:-1:-1;23783:4:0;;23373:422;-1:-1:-1;;;;23373:422:0:o;21517:93::-;21600:2;21517:93;:::o;30800:115::-;30860:7;30887:20;:18;:20::i;:::-;30880:27;;30800:115;:::o;24204:215::-;24292:4;24309:80;24318:12;:10;:12::i;:::-;24332:7;24378:10;24341:11;:25;24353:12;:10;:12::i;:::-;-1:-1:-1;;;;;24341:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24341:25:0;;;:34;;;;;;;;;;:47;;;;:::i;32215:107::-;2186:12;:10;:12::i;:::-;-1:-1:-1;;;;;2175:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2175:23:0;;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;32292:22:::1;32298:7;32307:6;32292:5;:22::i;:::-;32215:107:::0;;:::o;31774:102::-;31853:15;;31774:102;:::o;21846:127::-;-1:-1:-1;;;;;21947:18:0;;21920:7;21947:18;;;;;;;;;;;21846:127;;;;:::o;2606:148::-;2186:12;:10;:12::i;:::-;-1:-1:-1;;;;;2175:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2175:23:0;;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2697:6:::1;::::0;2676:40:::1;::::0;2713:1:::1;::::0;-1:-1:-1;;;;;2697:6:0::1;::::0;2676:40:::1;::::0;2713:1;;2676:40:::1;2727:6;:19:::0;;;::::1;::::0;;2606:148::o;30542:128::-;-1:-1:-1;;;;;30638:14:0;;30611:7;30638:14;;;:7;:14;;;;;:24;;:22;:24::i;:::-;30631:31;30542:128;-1:-1:-1;;30542:128:0:o;1955:87::-;2028:6;;-1:-1:-1;;;;;2028:6:0;1955:87;:::o;20774:104::-;20830:13;20863:7;20856:14;;;;;:::i;32658:107::-;2186:12;:10;:12::i;:::-;-1:-1:-1;;;;;2175:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2175:23:0;;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;32735:22:::1;32741:7;32750:6;32735:5;:22::i;24922:377::-:0;25015:4;25032:24;25059:11;:25;25071:12;:10;:12::i;:::-;-1:-1:-1;;;;;25059:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25059:25:0;;;:34;;;;;;;;;;;-1:-1:-1;25112:35:0;;;;25104:85;;;;-1:-1:-1;;;25104:85:0;;;;;;;:::i;:::-;25200:67;25209:12;:10;:12::i;:::-;25223:7;25232:34;25251:15;25232:16;:34;:::i;25200:67::-;-1:-1:-1;25287:4:0;;24922:377;-1:-1:-1;;;24922:377:0:o;22186:175::-;22272:4;22289:42;22299:12;:10;:12::i;:::-;22313:9;22324:6;22289:9;:42::i;29705:771::-;29934:8;29915:15;:27;;29907:69;;;;-1:-1:-1;;;29907:69:0;;;;;;;:::i;:::-;29989:18;30063:16;30098:5;30122:7;30148:5;30172:16;30182:5;30172:9;:16::i;:::-;30207:8;30034:196;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30010:231;;;;;;29989:252;;30254:12;30269:28;30286:10;30269:16;:28::i;:::-;30254:43;;30310:14;30327:28;30341:4;30347:1;30350;30353;30327:13;:28::i;:::-;30310:45;;30384:5;-1:-1:-1;;;;;30374:15:0;:6;-1:-1:-1;;;;;30374:15:0;;30366:58;;;;-1:-1:-1;;;30366:58:0;;;;;;;:::i;:::-;30437:31;30446:5;30453:7;30462:5;30437:8;:31::i;:::-;29705:771;;;;;;;;;;:::o;22424:151::-;-1:-1:-1;;;;;22540:18:0;;;22513:7;22540:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22424:151::o;2909:244::-;2186:12;:10;:12::i;:::-;-1:-1:-1;;;;;2175:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2175:23:0;;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2998:22:0;::::1;2990:73;;;;-1:-1:-1::0;;;2990:73:0::1;;;;;;;:::i;:::-;3100:6;::::0;3079:38:::1;::::0;-1:-1:-1;;;;;3079:38:0;;::::1;::::0;3100:6:::1;::::0;3079:38:::1;::::0;3100:6:::1;::::0;3079:38:::1;3128:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;3128:17:0;;;::::1;::::0;;;::::1;::::0;;2909:244::o;599:98::-;679:10;599:98;:::o;28094:346::-;-1:-1:-1;;;;;28196:19:0;;28188:68;;;;-1:-1:-1;;;28188:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28275:21:0;;28267:68;;;;-1:-1:-1;;;28267:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28348:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;28400:32;;;;;28378:6;;28400:32;:::i;:::-;;;;;;;;28094:346;;;:::o;25789:544::-;-1:-1:-1;;;;;25895:20:0;;25887:70;;;;-1:-1:-1;;;25887:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25976:23:0;;25968:71;;;;-1:-1:-1;;;25968:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26076:17:0;;26052:21;26076:17;;;;;;;;;;;26112:23;;;;26104:74;;;;-1:-1:-1;;;26104:74:0;;;;;;;:::i;:::-;26209:22;26225:6;26209:13;:22;:::i;:::-;-1:-1:-1;;;;;26189:17:0;;;:9;:17;;;;;;;;;;;:42;;;;26242:20;;;;;;;;:30;;26266:6;;26189:9;26242:30;;26266:6;;26242:30;:::i;:::-;;;;;;;;26307:9;-1:-1:-1;;;;;26290:35:0;26299:6;-1:-1:-1;;;;;26290:35:0;;26318:6;26290:35;;;;;;:::i;:::-;;;;;;;;25789:544;;;;:::o;11814:281::-;11867:7;11908:16;11891:13;:33;11887:201;;;-1:-1:-1;11948:24:0;11941:31;;11887:201;12012:64;12034:10;12046:12;12060:15;12012:21;:64::i;:::-;12005:71;;;;33050:388;-1:-1:-1;;;;;33135:21:0;;33127:65;;;;-1:-1:-1;;;33127:65:0;;;;;;;:::i;:::-;33236:15;;33226:6;33211:12;;:21;;;;:::i;:::-;:40;;33203:92;;;;-1:-1:-1;;;33203:92:0;;;;;;;:::i;:::-;33332:6;33316:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;33349:18:0;;:9;:18;;;;;;;;;;:28;;33371:6;;33349:9;:28;;33371:6;;33349:28;:::i;:::-;;;;-1:-1:-1;;33393:37:0;;-1:-1:-1;;;;;33393:37:0;;;33410:1;;33393:37;;;;33423:6;;33393:37;:::i;:::-;;;;;;;;33050:388;;:::o;3891:114::-;3983:14;;3891:114::o;27224:432::-;-1:-1:-1;;;;;27308:21:0;;27300:67;;;;-1:-1:-1;;;27300:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27405:18:0;;27380:22;27405:18;;;;;;;;;;;27442:24;;;;27434:71;;;;-1:-1:-1;;;27434:71:0;;;;;;;:::i;:::-;27537:23;27554:6;27537:14;:23;:::i;:::-;-1:-1:-1;;;;;27516:18:0;;:9;:18;;;;;;;;;;:44;;;;27571:12;:22;;27587:6;;27516:9;27571:22;;27587:6;;27571:22;:::i;:::-;;;;-1:-1:-1;;27611:37:0;;27637:1;;-1:-1:-1;;;;;27611:37:0;;;;;;;27641:6;;27611:37;:::i;31013:207::-;-1:-1:-1;;;;;31134:14:0;;31073:15;31134:14;;;:7;:14;;;;;31169:15;31134:14;31169:13;:15::i;:::-;31159:25;;31195:17;:5;:15;:17::i;:::-;31013:207;;;;:::o;13082:167::-;13159:7;13186:55;13208:20;:18;:20::i;:::-;13230:10;13186:21;:55::i;6317:1432::-;6402:7;7327:66;7313:80;;;7305:127;;;;-1:-1:-1;;;7305:127:0;;;;;;;:::i;:::-;7451:1;:7;;7456:2;7451:7;:18;;;;7462:1;:7;;7467:2;7462:7;7451:18;7443:65;;;;-1:-1:-1;;;7443:65:0;;;;;;;:::i;:::-;7606:14;7623:24;7633:4;7639:1;7642;7645;7623:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7623:24:0;;-1:-1:-1;;7623:24:0;;;-1:-1:-1;;;;;;;7666:20:0;;7658:57;;;;-1:-1:-1;;;7658:57:0;;;;;;;:::i;:::-;7735:6;6317:1432;-1:-1:-1;;;;;6317:1432:0:o;12103:337::-;12205:7;12285:8;12312:4;12335:7;12361:13;12401:4;12256:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12232:200;;;;;;12225:207;;12103:337;;;;;:::o;4013:127::-;4102:19;;4120:1;4102:19;;;4013:127::o;8668:196::-;8761:7;8827:15;8844:10;8798:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8788:68;;;;;;8781:75;;8668:196;;;;:::o;14:198:1:-;84:20;;-1:-1:-1;;;;;133:54:1;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;:::-;368:41;287:128;-1:-1:-1;;;287:128:1:o;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:717::-;;;;;;;;1258:3;1246:9;1237:7;1233:23;1229:33;1226:2;;;1280:6;1272;1265:22;1226:2;1308:31;1329:9;1308:31;:::i;:::-;1298:41;;1358:40;1394:2;1383:9;1379:18;1358:40;:::i;:::-;1348:50;;1445:2;1434:9;1430:18;1417:32;1407:42;;1496:2;1485:9;1481:18;1468:32;1458:42;;1550:3;1539:9;1535:19;1522:33;1595:4;1588:5;1584:16;1577:5;1574:27;1564:2;;1620:6;1612;1605:22;1564:2;1216:547;;;;-1:-1:-1;1216:547:1;;;;1648:5;1700:3;1685:19;;1672:33;;-1:-1:-1;1752:3:1;1737:19;;;1724:33;;1216:547;-1:-1:-1;;1216:547:1:o;1768:266::-;;;1897:2;1885:9;1876:7;1872:23;1868:32;1865:2;;;1918:6;1910;1903:22;1865:2;1946:31;1967:9;1946:31;:::i;:::-;1936:41;2024:2;2009:18;;;;1996:32;;-1:-1:-1;;;1855:179:1:o;2039:444::-;2309:66;2297:79;;2401:1;2392:11;;2385:27;;;;2437:2;2428:12;;2421:28;2474:2;2465:12;;2287:196::o;2488:226::-;-1:-1:-1;;;;;2652:55:1;;;;2634:74;;2622:2;2607:18;;2589:125::o;2719:187::-;2884:14;;2877:22;2859:41;;2847:2;2832:18;;2814:92::o;2911:177::-;3057:25;;;3045:2;3030:18;;3012:76::o;3093:614::-;3380:25;;;-1:-1:-1;;;;;3502:15:1;;;3497:2;3482:18;;3475:43;3554:15;;;;3549:2;3534:18;;3527:43;3601:2;3586:18;;3579:34;3644:3;3629:19;;3622:35;;;;3688:3;3673:19;;3666:35;3367:3;3352:19;;3334:373::o;3712:512::-;3971:25;;;4027:2;4012:18;;4005:34;;;;4070:2;4055:18;;4048:34;;;;4113:2;4098:18;;4091:34;-1:-1:-1;;;;;4162:55:1;4156:3;4141:19;;4134:84;3958:3;3943:19;;3925:299::o;4229:398::-;4456:25;;;4529:4;4517:17;;;;4512:2;4497:18;;4490:45;4566:2;4551:18;;4544:34;4609:2;4594:18;;4587:34;4443:3;4428:19;;4410:217::o;4632:662::-;;4773:2;4802;4791:9;4784:21;4834:6;4828:13;4877:6;4872:2;4861:9;4857:18;4850:34;4902:4;4915:140;4929:6;4926:1;4923:13;4915:140;;;5024:14;;;5020:23;;5014:30;4990:17;;;5009:2;4986:26;4979:66;4944:10;;4915:140;;;5073:6;5070:1;5067:13;5064:2;;;5143:4;5138:2;5129:6;5118:9;5114:22;5110:31;5103:45;5064:2;-1:-1:-1;5210:2:1;5198:15;-1:-1:-1;;5194:88:1;5179:104;;;;5285:2;5175:113;;4753:541;-1:-1:-1;;;4753:541:1:o;5299:348::-;5501:2;5483:21;;;5540:2;5520:18;;;5513:30;5579:26;5574:2;5559:18;;5552:54;5638:2;5623:18;;5473:174::o;5652:399::-;5854:2;5836:21;;;5893:2;5873:18;;;5866:30;5932:34;5927:2;5912:18;;5905:62;6003:5;5998:2;5983:18;;5976:33;6041:3;6026:19;;5826:225::o;6056:398::-;6258:2;6240:21;;;6297:2;6277:18;;;6270:30;6336:34;6331:2;6316:18;;6309:62;6407:4;6402:2;6387:18;;6380:32;6444:3;6429:19;;6230:224::o;6459:402::-;6661:2;6643:21;;;6700:2;6680:18;;;6673:30;6739:34;6734:2;6719:18;;6712:62;6810:8;6805:2;6790:18;;6783:36;6851:3;6836:19;;6633:228::o;6866:398::-;7068:2;7050:21;;;7107:2;7087:18;;;7080:30;7146:34;7141:2;7126:18;;7119:62;7217:4;7212:2;7197:18;;7190:32;7254:3;7239:19;;7040:224::o;7269:353::-;7471:2;7453:21;;;7510:2;7490:18;;;7483:30;7549:31;7544:2;7529:18;;7522:59;7613:2;7598:18;;7443:179::o;7627:402::-;7829:2;7811:21;;;7868:2;7848:18;;;7841:30;7907:34;7902:2;7887:18;;7880:62;7978:8;7973:2;7958:18;;7951:36;8019:3;8004:19;;7801:228::o;8034:398::-;8236:2;8218:21;;;8275:2;8255:18;;;8248:30;8314:34;8309:2;8294:18;;8287:62;8385:4;8380:2;8365:18;;8358:32;8422:3;8407:19;;8208:224::o;8437:398::-;8639:2;8621:21;;;8678:2;8658:18;;;8651:30;8717:34;8712:2;8697:18;;8690:62;8788:4;8783:2;8768:18;;8761:32;8825:3;8810:19;;8611:224::o;8840:403::-;9042:2;9024:21;;;9081:2;9061:18;;;9054:30;9120:34;9115:2;9100:18;;9093:62;9191:9;9186:2;9171:18;;9164:37;9233:3;9218:19;;9014:229::o;9248:354::-;9450:2;9432:21;;;9489:2;9469:18;;;9462:30;9528:32;9523:2;9508:18;;9501:60;9593:2;9578:18;;9422:180::o;9607:404::-;9809:2;9791:21;;;9848:2;9828:18;;;9821:30;9887:34;9882:2;9867:18;;9860:62;9958:10;9953:2;9938:18;;9931:38;10001:3;9986:19;;9781:230::o;10016:356::-;10218:2;10200:21;;;10237:18;;;10230:30;10296:34;10291:2;10276:18;;10269:62;10363:2;10348:18;;10190:182::o;10377:397::-;10579:2;10561:21;;;10618:2;10598:18;;;10591:30;10657:34;10652:2;10637:18;;10630:62;10728:3;10723:2;10708:18;;10701:31;10764:3;10749:19;;10551:223::o;10779:401::-;10981:2;10963:21;;;11020:2;11000:18;;;10993:30;11059:34;11054:2;11039:18;;11032:62;11130:7;11125:2;11110:18;;11103:35;11170:3;11155:19;;10953:227::o;11185:400::-;11387:2;11369:21;;;11426:2;11406:18;;;11399:30;11465:34;11460:2;11445:18;;11438:62;11536:6;11531:2;11516:18;;11509:34;11575:3;11560:19;;11359:226::o;11590:401::-;11792:2;11774:21;;;11831:2;11811:18;;;11804:30;11870:34;11865:2;11850:18;;11843:62;11941:7;11936:2;11921:18;;11914:35;11981:3;11966:19;;11764:227::o;11996:355::-;12198:2;12180:21;;;12237:2;12217:18;;;12210:30;12276:33;12271:2;12256:18;;12249:61;12342:2;12327:18;;12170:181::o;12538:184::-;12710:4;12698:17;;;;12680:36;;12668:2;12653:18;;12635:87::o;12727:128::-;;12798:1;12794:6;12791:1;12788:13;12785:2;;;12804:18;;:::i;:::-;-1:-1:-1;12840:9:1;;12775:80::o;12860:125::-;;12928:1;12925;12922:8;12919:2;;;12933:18;;:::i;:::-;-1:-1:-1;12970:9:1;;12909:76::o;12990:437::-;13075:1;13065:12;;13122:1;13112:12;;;13133:2;;13187:4;13179:6;13175:17;13165:27;;13133:2;13240;13232:6;13229:14;13209:18;13206:38;13203:2;;;13277:77;13274:1;13267:88;13378:4;13375:1;13368:15;13406:4;13403:1;13396:15;13432:184;13484:77;13481:1;13474:88;13581:4;13578:1;13571:15;13605:4;13602:1;13595:15

Swarm Source

ipfs://276af09e353673f97606ac3dd6811af0faf0a73432ad389482746fa5dde0695d
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.