ETH Price: $3,159.88 (-7.58%)
Gas: 4 Gwei

Token

DINO (DINO)
 

Overview

Max Total Supply

95,932,459.420495266872855374 DINO

Holders

2,338

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: DINO-USDT 3
Balance
48,786.784269067167910029 DINO

Value
$0.00
0x253355c3f3dd144cd614f7a59fd1c5bbfe974091
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:
DinoToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-12
*/

// Sources flattened with hardhat v2.13.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.8.0) (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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File contracts/dino/component/TakeFee.sol


pragma solidity ^0.8.0;



interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
     function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );
}

abstract contract TakeFee is Ownable,ERC20{
    
    using SafeMath for uint256;

    uint256 private constant FEE_RATE_BASE = 1e4;
    uint256 public feeRateBuy = 1e2;
    uint256 public feeRateSell = 1e2;

    mapping(address=>bool) public lps;
    mapping(address=>bool) public feeExcept;
    bool public feeExceptEffect;
    address private settor;

    event Fee(address indexed from,address indexed to,address lp,bool  isBuy,uint256 feeAmount);

    function _initUniLp() internal {
        IUniswapV2Router02 r = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        IUniswapV2Factory f = IUniswapV2Factory(r.factory());
        address usdt_this_lp = f.createPair(address(this),0xdAC17F958D2ee523a2206206994597C13D831ec7);
        lps[usdt_this_lp] = true;
    }

    function transfer(address to, uint256 amount)
        public
        override
        returns (bool)
    {
        _router(_msgSender(), to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _router(from, to, amount);
        uint256 currentAllowance = allowance(from, _msgSender());
        require(currentAllowance >= amount, "ERC20: exceeds allowance");
        super._approve(from, _msgSender(), currentAllowance.sub(amount));
        return true;
    }

    function _router(address from,address to,uint256 amount) private{

        if( (feeRateBuy==0&&feeRateSell==0)||
            from==owner()||to==owner()||
            (feeExceptEffect&&(feeExcept[from]||feeExcept[to]))
        ){
            super._transfer(from,to,amount);
            return;
        }

        if(lps[from]){
            // buy or remove lp
            uint256 fee = amount.mul(feeRateBuy).div(FEE_RATE_BASE);
            
            if(fee>0){
                super._transfer(from,address(this),fee);
                _burn(address(this), fee);
            }

            super._transfer(from,to,amount.sub(fee));

            emit Fee(from,address(0),to,true,fee);
            return;
        }

        if(lps[to]){
            //sell or add lp
            uint256 fee = amount.mul(feeRateSell).div(FEE_RATE_BASE);
            
            if(fee>0){
                super._transfer(from,address(this),fee);
                _burn(address(this), fee);
            }
            super._transfer(from,to,amount.sub(fee));

            emit Fee(from,address(0),to,false,fee);
            return;
        }

        super._transfer(from,to,amount);

    }

    function getSettor() public view returns(address){
        return settor;
    }

    modifier onlyS(){
        require(msg.sender==owner()||msg.sender==settor,"ban");
        _;
    }

    function setSettor(address _s) public onlyS{
        settor = _s;
    }

    function setFeeRateBuy(uint256 _rate) public onlyS{
        require(_rate<=FEE_RATE_BASE,"too large");
        feeRateBuy = _rate;
    }

    function setFeeRateSell(uint256 _rate) public onlyS{
        require(_rate<=FEE_RATE_BASE,"too large");
        feeRateSell = _rate;
    } 

    function setLp(address _lp,bool _islp) public onlyS{
        require(_lp!=address(0),"address zero");
        lps[_lp] = _islp;
    }

    function setFeeExceptEffect(bool _isEffect) public onlyS{
        feeExceptEffect = _isEffect;
    }

    function setFeeExcept(address[] memory addrs,bool isExcept) public onlyS{
        require(addrs.length>0,"args err");
        for(uint256 i=0;i<addrs.length;i++){
            
            if(addrs[i]==address(0)){
                continue;
            }

            if(feeExcept[addrs[i]]!=isExcept){
                feeExcept[addrs[i]] = isExcept;
            }
        }
    }

}


// File contracts/dino/DinoToken.sol


pragma solidity ^0.8.0;

contract DinoToken is TakeFee{

    uint256 private TOTAL_SUPPLY = 100_000_000*1e18;

    constructor() ERC20("DINO","DINO"){
        _mint(msg.sender,TOTAL_SUPPLY);
        _initUniLp();
        setFeeExceptEffect(true);
        feeExcept[msg.sender] = true;
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":"address","name":"lp","type":"address"},{"indexed":false,"internalType":"bool","name":"isBuy","type":"bool"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"Fee","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"feeExcept","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeExceptEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRateBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRateSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSettor","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"lps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"bool","name":"isExcept","type":"bool"}],"name":"setFeeExcept","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEffect","type":"bool"}],"name":"setFeeExceptEffect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setFeeRateBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setFeeRateSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"},{"internalType":"bool","name":"_islp","type":"bool"}],"name":"setLp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_s","type":"address"}],"name":"setSettor","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

6080604052606460065560646007556a52b7d2dcc80cd2e4000000600b553480156200002a57600080fd5b506040518060400160405280600481526020016344494e4f60e01b8152506040518060400160405280600481526020016344494e4f60e01b8152506200007f62000079620000e960201b60201c565b620000ed565b60046200008d838262000453565b5060056200009c828262000453565b505050620000b333600b546200013d60201b60201c565b620000bd62000206565b620000c960016200033a565b336000908152600960205260409020805460ff1916600117905562000579565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001995760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060036000828254620001ad91906200051f565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000286919062000547565b6040516364e329cb60e11b815230600482015273dac17f958d2ee523a2206206994597c13d831ec760248201529091506000906001600160a01b0383169063c9c65396906044016020604051808303816000875af1158015620002ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000313919062000547565b6001600160a01b03166000908152600860205260409020805460ff19166001179055505050565b6000546001600160a01b0316331480620003635750600a5461010090046001600160a01b031633145b620003975760405162461bcd60e51b81526020600482015260036024820152623130b760e91b604482015260640162000190565b600a805460ff1916911515919091179055565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003da57607f821691505b602082108103620003fb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003aa57600081815260208120601f850160051c810160208610156200042a5750805b601f850160051c820191505b818110156200044b5782815560010162000436565b505050505050565b81516001600160401b038111156200046f576200046f620003af565b6200048781620004808454620003c5565b8462000401565b602080601f831160018114620004bf5760008415620004a65750858301515b600019600386901b1c1916600185901b1785556200044b565b600085815260208120601f198616915b82811015620004f057888601518255948401946001909101908401620004cf565b50858210156200050f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200054157634e487b7160e01b600052601160045260246000fd5b92915050565b6000602082840312156200055a57600080fd5b81516001600160a01b03811681146200057257600080fd5b9392505050565b61154080620005896000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d0dac43711610071578063d0dac43714610386578063d12e733214610399578063dd62ed3e146103bc578063f2fde38b146103cf57600080fd5b8063a457c2d71461034d578063a9059cbb14610360578063b930d1491461037357600080fd5b80638da5cb5b116100d35780638da5cb5b146102fd57806395d89b411461032257806398f5283e1461032a5780639f944f8c1461033757600080fd5b806370a08231146102b9578063715018a6146102e25780638701d7b2146102ea57600080fd5b8063313ce56711610166578063395093511161014057806339509351146102675780633f66a5cf1461027a57806342966c681461029d578063509e0ec1146102b057600080fd5b8063313ce5671461023c5780633251c43b1461024b57806334fb976a1461025e57600080fd5b806306fdde03146101ae57806309517613146101cc578063095ea7b3146101e157806311bb009b1461020457806318160ddd1461021757806323b872dd14610229575b600080fd5b6101b66103e2565b6040516101c39190611196565b60405180910390f35b6101df6101da3660046111e4565b610474565b005b6101f46101ef366004611219565b610504565b60405190151581526020016101c3565b6101df610212366004611269565b61051e565b6003545b6040519081526020016101c3565b6101f4610237366004611340565b610693565b604051601281526020016101c3565b6101df61025936600461137c565b61071d565b61021b60075481565b6101f4610275366004611219565b610774565b6101f4610288366004611397565b60096020526000908152604090205460ff1681565b6101df6102ab3660046111e4565b610791565b61021b60065481565b61021b6102c7366004611397565b6001600160a01b031660009081526001602052604090205490565b6101df61079e565b6101df6102f83660046113b2565b6107b2565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b6101b6610866565b600a546101f49060ff1681565b600a5461010090046001600160a01b031661030a565b6101f461035b366004611219565b610875565b6101f461036e366004611219565b6108f0565b6101df610381366004611397565b610906565b6101df6103943660046111e4565b610972565b6101f46103a7366004611397565b60086020526000908152604090205460ff1681565b61021b6103ca3660046113e5565b6109f9565b6101df6103dd366004611397565b610a24565b6060600480546103f19061140f565b80601f016020809104026020016040519081016040528092919081815260200182805461041d9061140f565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b6000546001600160a01b031633148061049c5750600a5461010090046001600160a01b031633145b6104c15760405162461bcd60e51b81526004016104b890611449565b60405180910390fd5b6127108111156104ff5760405162461bcd60e51b8152602060048201526009602482015268746f6f206c6172676560b81b60448201526064016104b8565b600655565b600033610512818585610a9a565b60019150505b92915050565b6000546001600160a01b03163314806105465750600a5461010090046001600160a01b031633145b6105625760405162461bcd60e51b81526004016104b890611449565b600082511161059e5760405162461bcd60e51b815260206004820152600860248201526730b933b99032b93960c11b60448201526064016104b8565b60005b825181101561068e5760006001600160a01b03168382815181106105c7576105c7611466565b60200260200101516001600160a01b0316031561067c57811515600960008584815181106105f7576105f7611466565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615151461067c57816009600085848151811061063c5761063c611466565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061068681611492565b9150506105a1565b505050565b60006106a0848484610bbe565b60006106ac85336109f9565b9050828110156106fe5760405162461bcd60e51b815260206004820152601860248201527f45524332303a206578636565647320616c6c6f77616e6365000000000000000060448201526064016104b8565b610712853361070d8487610def565b610a9a565b506001949350505050565b6000546001600160a01b03163314806107455750600a5461010090046001600160a01b031633145b6107615760405162461bcd60e51b81526004016104b890611449565b600a805460ff1916911515919091179055565b60003361051281858561078783836109f9565b61070d91906114ab565b61079b3382610e02565b50565b6107a6610f36565b6107b06000610f90565b565b6000546001600160a01b03163314806107da5750600a5461010090046001600160a01b031633145b6107f65760405162461bcd60e51b81526004016104b890611449565b6001600160a01b03821661083b5760405162461bcd60e51b815260206004820152600c60248201526b61646472657373207a65726f60a01b60448201526064016104b8565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6060600580546103f19061140f565b6000338161088382866109f9565b9050838110156108e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b8565b6107128286868403610a9a565b60006108fd338484610bbe565b50600192915050565b6000546001600160a01b031633148061092e5750600a5461010090046001600160a01b031633145b61094a5760405162461bcd60e51b81526004016104b890611449565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633148061099a5750600a5461010090046001600160a01b031633145b6109b65760405162461bcd60e51b81526004016104b890611449565b6127108111156109f45760405162461bcd60e51b8152602060048201526009602482015268746f6f206c6172676560b81b60448201526064016104b8565b600755565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610a2c610f36565b6001600160a01b038116610a915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b8565b61079b81610f90565b6001600160a01b038316610afc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b8565b6001600160a01b038216610b5d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b8565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600654158015610bce5750600754155b80610be657506000546001600160a01b038481169116145b80610bfe57506000546001600160a01b038381169116145b80610c505750600a5460ff168015610c5057506001600160a01b03831660009081526009602052604090205460ff1680610c5057506001600160a01b03821660009081526009602052604090205460ff165b15610c605761068e838383610fe0565b6001600160a01b03831660009081526008602052604090205460ff1615610d2d576000610ca4612710610c9e6006548561117e90919063ffffffff16565b9061118a565b90508015610cc157610cb7843083610fe0565b610cc13082610e02565b610cd58484610cd08585610def565b610fe0565b604080516001600160a01b038581168252600160208301529181018390526000918616907f3ac5f7a0cb11fcc1edfa45b01bf71d52d3a29c62b82cea68089b78f32be91b7a906060015b60405180910390a350505050565b6001600160a01b03821660009081526008602052604090205460ff1615610de4576000610d6b612710610c9e6007548561117e90919063ffffffff16565b90508015610d8857610d7e843083610fe0565b610d883082610e02565b610d978484610cd08585610def565b604080516001600160a01b0385811682526000602083018190529282018490528616907f3ac5f7a0cb11fcc1edfa45b01bf71d52d3a29c62b82cea68089b78f32be91b7a90606001610d1f565b61068e838383610fe0565b6000610dfb82846114be565b9392505050565b6001600160a01b038216610e625760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b8565b6001600160a01b03821660009081526001602052604090205481811015610ed65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b8565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6000546001600160a01b031633146107b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166110445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b6001600160a01b0382166110a65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b8565b6001600160a01b0383166000908152600160205260409020548181101561111e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b8565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d1f9086815260200190565b6000610dfb82846114d1565b6000610dfb82846114e8565b600060208083528351808285015260005b818110156111c3578581018301518582016040015282016111a7565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156111f657600080fd5b5035919050565b80356001600160a01b038116811461121457600080fd5b919050565b6000806040838503121561122c57600080fd5b611235836111fd565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8035801515811461121457600080fd5b6000806040838503121561127c57600080fd5b823567ffffffffffffffff8082111561129457600080fd5b818501915085601f8301126112a857600080fd5b81356020828211156112bc576112bc611243565b8160051b604051601f19603f830116810181811086821117156112e1576112e1611243565b6040529283528183019350848101820192898411156112ff57600080fd5b948201945b8386101561132457611315866111fd565b85529482019493820193611304565b96506113339050878201611259565b9450505050509250929050565b60008060006060848603121561135557600080fd5b61135e846111fd565b925061136c602085016111fd565b9150604084013590509250925092565b60006020828403121561138e57600080fd5b610dfb82611259565b6000602082840312156113a957600080fd5b610dfb826111fd565b600080604083850312156113c557600080fd5b6113ce836111fd565b91506113dc60208401611259565b90509250929050565b600080604083850312156113f857600080fd5b611401836111fd565b91506113dc602084016111fd565b600181811c9082168061142357607f821691505b60208210810361144357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600390820152623130b760e91b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016114a4576114a461147c565b5060010190565b808201808211156105185761051861147c565b818103818111156105185761051861147c565b80820281158282048414176105185761051861147c565b60008261150557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212209d0ce91e04325f8c2b80bcd7b4cdda1d68bf4eb9dd07c0e8bbe5af7d24ba21c264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d0dac43711610071578063d0dac43714610386578063d12e733214610399578063dd62ed3e146103bc578063f2fde38b146103cf57600080fd5b8063a457c2d71461034d578063a9059cbb14610360578063b930d1491461037357600080fd5b80638da5cb5b116100d35780638da5cb5b146102fd57806395d89b411461032257806398f5283e1461032a5780639f944f8c1461033757600080fd5b806370a08231146102b9578063715018a6146102e25780638701d7b2146102ea57600080fd5b8063313ce56711610166578063395093511161014057806339509351146102675780633f66a5cf1461027a57806342966c681461029d578063509e0ec1146102b057600080fd5b8063313ce5671461023c5780633251c43b1461024b57806334fb976a1461025e57600080fd5b806306fdde03146101ae57806309517613146101cc578063095ea7b3146101e157806311bb009b1461020457806318160ddd1461021757806323b872dd14610229575b600080fd5b6101b66103e2565b6040516101c39190611196565b60405180910390f35b6101df6101da3660046111e4565b610474565b005b6101f46101ef366004611219565b610504565b60405190151581526020016101c3565b6101df610212366004611269565b61051e565b6003545b6040519081526020016101c3565b6101f4610237366004611340565b610693565b604051601281526020016101c3565b6101df61025936600461137c565b61071d565b61021b60075481565b6101f4610275366004611219565b610774565b6101f4610288366004611397565b60096020526000908152604090205460ff1681565b6101df6102ab3660046111e4565b610791565b61021b60065481565b61021b6102c7366004611397565b6001600160a01b031660009081526001602052604090205490565b6101df61079e565b6101df6102f83660046113b2565b6107b2565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b6101b6610866565b600a546101f49060ff1681565b600a5461010090046001600160a01b031661030a565b6101f461035b366004611219565b610875565b6101f461036e366004611219565b6108f0565b6101df610381366004611397565b610906565b6101df6103943660046111e4565b610972565b6101f46103a7366004611397565b60086020526000908152604090205460ff1681565b61021b6103ca3660046113e5565b6109f9565b6101df6103dd366004611397565b610a24565b6060600480546103f19061140f565b80601f016020809104026020016040519081016040528092919081815260200182805461041d9061140f565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b6000546001600160a01b031633148061049c5750600a5461010090046001600160a01b031633145b6104c15760405162461bcd60e51b81526004016104b890611449565b60405180910390fd5b6127108111156104ff5760405162461bcd60e51b8152602060048201526009602482015268746f6f206c6172676560b81b60448201526064016104b8565b600655565b600033610512818585610a9a565b60019150505b92915050565b6000546001600160a01b03163314806105465750600a5461010090046001600160a01b031633145b6105625760405162461bcd60e51b81526004016104b890611449565b600082511161059e5760405162461bcd60e51b815260206004820152600860248201526730b933b99032b93960c11b60448201526064016104b8565b60005b825181101561068e5760006001600160a01b03168382815181106105c7576105c7611466565b60200260200101516001600160a01b0316031561067c57811515600960008584815181106105f7576105f7611466565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615151461067c57816009600085848151811061063c5761063c611466565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061068681611492565b9150506105a1565b505050565b60006106a0848484610bbe565b60006106ac85336109f9565b9050828110156106fe5760405162461bcd60e51b815260206004820152601860248201527f45524332303a206578636565647320616c6c6f77616e6365000000000000000060448201526064016104b8565b610712853361070d8487610def565b610a9a565b506001949350505050565b6000546001600160a01b03163314806107455750600a5461010090046001600160a01b031633145b6107615760405162461bcd60e51b81526004016104b890611449565b600a805460ff1916911515919091179055565b60003361051281858561078783836109f9565b61070d91906114ab565b61079b3382610e02565b50565b6107a6610f36565b6107b06000610f90565b565b6000546001600160a01b03163314806107da5750600a5461010090046001600160a01b031633145b6107f65760405162461bcd60e51b81526004016104b890611449565b6001600160a01b03821661083b5760405162461bcd60e51b815260206004820152600c60248201526b61646472657373207a65726f60a01b60448201526064016104b8565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6060600580546103f19061140f565b6000338161088382866109f9565b9050838110156108e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b8565b6107128286868403610a9a565b60006108fd338484610bbe565b50600192915050565b6000546001600160a01b031633148061092e5750600a5461010090046001600160a01b031633145b61094a5760405162461bcd60e51b81526004016104b890611449565b600a80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633148061099a5750600a5461010090046001600160a01b031633145b6109b65760405162461bcd60e51b81526004016104b890611449565b6127108111156109f45760405162461bcd60e51b8152602060048201526009602482015268746f6f206c6172676560b81b60448201526064016104b8565b600755565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610a2c610f36565b6001600160a01b038116610a915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b8565b61079b81610f90565b6001600160a01b038316610afc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b8565b6001600160a01b038216610b5d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b8565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600654158015610bce5750600754155b80610be657506000546001600160a01b038481169116145b80610bfe57506000546001600160a01b038381169116145b80610c505750600a5460ff168015610c5057506001600160a01b03831660009081526009602052604090205460ff1680610c5057506001600160a01b03821660009081526009602052604090205460ff165b15610c605761068e838383610fe0565b6001600160a01b03831660009081526008602052604090205460ff1615610d2d576000610ca4612710610c9e6006548561117e90919063ffffffff16565b9061118a565b90508015610cc157610cb7843083610fe0565b610cc13082610e02565b610cd58484610cd08585610def565b610fe0565b604080516001600160a01b038581168252600160208301529181018390526000918616907f3ac5f7a0cb11fcc1edfa45b01bf71d52d3a29c62b82cea68089b78f32be91b7a906060015b60405180910390a350505050565b6001600160a01b03821660009081526008602052604090205460ff1615610de4576000610d6b612710610c9e6007548561117e90919063ffffffff16565b90508015610d8857610d7e843083610fe0565b610d883082610e02565b610d978484610cd08585610def565b604080516001600160a01b0385811682526000602083018190529282018490528616907f3ac5f7a0cb11fcc1edfa45b01bf71d52d3a29c62b82cea68089b78f32be91b7a90606001610d1f565b61068e838383610fe0565b6000610dfb82846114be565b9392505050565b6001600160a01b038216610e625760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b8565b6001600160a01b03821660009081526001602052604090205481811015610ed65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b8565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6000546001600160a01b031633146107b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166110445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b6001600160a01b0382166110a65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b8565b6001600160a01b0383166000908152600160205260409020548181101561111e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b8565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d1f9086815260200190565b6000610dfb82846114d1565b6000610dfb82846114e8565b600060208083528351808285015260005b818110156111c3578581018301518582016040015282016111a7565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156111f657600080fd5b5035919050565b80356001600160a01b038116811461121457600080fd5b919050565b6000806040838503121561122c57600080fd5b611235836111fd565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8035801515811461121457600080fd5b6000806040838503121561127c57600080fd5b823567ffffffffffffffff8082111561129457600080fd5b818501915085601f8301126112a857600080fd5b81356020828211156112bc576112bc611243565b8160051b604051601f19603f830116810181811086821117156112e1576112e1611243565b6040529283528183019350848101820192898411156112ff57600080fd5b948201945b8386101561132457611315866111fd565b85529482019493820193611304565b96506113339050878201611259565b9450505050509250929050565b60008060006060848603121561135557600080fd5b61135e846111fd565b925061136c602085016111fd565b9150604084013590509250925092565b60006020828403121561138e57600080fd5b610dfb82611259565b6000602082840312156113a957600080fd5b610dfb826111fd565b600080604083850312156113c557600080fd5b6113ce836111fd565b91506113dc60208401611259565b90509250929050565b600080604083850312156113f857600080fd5b611401836111fd565b91506113dc602084016111fd565b600181811c9082168061142357607f821691505b60208210810361144357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600390820152623130b760e91b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016114a4576114a461147c565b5060010190565b808201808211156105185761051861147c565b818103818111156105185761051861147c565b80820281158282048414176105185761051861147c565b60008261150557634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212209d0ce91e04325f8c2b80bcd7b4cdda1d68bf4eb9dd07c0e8bbe5af7d24ba21c264736f6c63430008120033

Deployed Bytecode Sourcemap

33142:366:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9479:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32120:139;;;;;;:::i;:::-;;:::i;:::-;;11830:201;;;;;;:::i;:::-;;:::i;:::-;;;1354:14:1;;1347:22;1329:41;;1317:2;1302:18;11830:201:0;1189:187:1;32671:391:0;;;;;;:::i;:::-;;:::i;10599:108::-;10687:12;;10599:108;;;3020:25:1;;;3008:2;2993:18;10599:108:0;2874:177:1;30193:419:0;;;;;;:::i;:::-;;:::i;10441:93::-;;;10524:2;3531:36:1;;3519:2;3504:18;10441:93:0;3389:184:1;32561:102:0;;;;;;:::i;:::-;;:::i;29365:32::-;;;;;;13315:238;;;;;;:::i;:::-;;:::i;29446:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33424:81;;;;;;:::i;:::-;;:::i;29327:31::-;;;;;;10770:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10871:18:0;10844:7;10871:18;;;:9;:18;;;;;;;10770:127;2884:103;;;:::i;32417:136::-;;;;;;:::i;:::-;;:::i;2236:87::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;2236:87;;;-1:-1:-1;;;;;4377:32:1;;;4359:51;;4347:2;4332:18;2236:87:0;4213:203:1;9698:104:0;;;:::i;29492:27::-;;;;;;;;;31841:81;31908:6;;;;;-1:-1:-1;;;;;31908:6:0;31841:81;;14056:436;;;;;;:::i;:::-;;:::i;30002:183::-;;;;;;:::i;:::-;;:::i;32039:73::-;;;;;;:::i;:::-;;:::i;32267:141::-;;;;;;:::i;:::-;;:::i;29406:33::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11359:151;;;;;;:::i;:::-;;:::i;3142:201::-;;;;;;:::i;:::-;;:::i;9479:100::-;9533:13;9566:5;9559:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9479:100;:::o;32120:139::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;31965:10;:19;;:39;;-1:-1:-1;31998:6:0;;;;;-1:-1:-1;;;;;31998:6:0;31986:10;:18;31965:39;31957:54;;;;-1:-1:-1;;;31957:54:0;;;;;;;:::i;:::-;;;;;;;;;29317:3:::1;32189:5;:20;;32181:41;;;::::0;-1:-1:-1;;;32181:41:0;;5604:2:1;32181:41:0::1;::::0;::::1;5586:21:1::0;5643:1;5623:18;;;5616:29;-1:-1:-1;;;5661:18:1;;;5654:39;5710:18;;32181:41:0::1;5402:332:1::0;32181:41:0::1;32233:10;:18:::0;32120:139::o;11830:201::-;11913:4;861:10;11969:32;861:10;11985:7;11994:6;11969:8;:32::i;:::-;12019:4;12012:11;;;11830:201;;;;;:::o;32671:391::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;31965:10;:19;;:39;;-1:-1:-1;31998:6:0;;;;;-1:-1:-1;;;;;31998:6:0;31986:10;:18;31965:39;31957:54;;;;-1:-1:-1;;;31957:54:0;;;;;;;:::i;:::-;32775:1:::1;32762:5;:12;:14;32754:34;;;::::0;-1:-1:-1;;;32754:34:0;;5941:2:1;32754:34:0::1;::::0;::::1;5923:21:1::0;5980:1;5960:18;;;5953:29;-1:-1:-1;;;5998:18:1;;;5991:38;6046:18;;32754:34:0::1;5739:331:1::0;32754:34:0::1;32803:9;32799:256;32817:5;:12;32815:1;:14;32799:256;;;32884:1;-1:-1:-1::0;;;;;32866:20:0::1;:5;32872:1;32866:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;32866:20:0::1;::::0;32863:67;32906:8:::1;32863:67;32970:8;32949:29;;:9;:19;32959:5;32965:1;32959:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;32949:19:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;32949:19:0;;::::1;;:29;;;32946:98;;33020:8;32998:9;:19;33008:5;33014:1;33008:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;32998:19:0::1;-1:-1:-1::0;;;;;32998:19:0::1;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;32946:98;32830:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32799:256;;;;32671:391:::0;;:::o;30193:419::-;30324:4;30341:25;30349:4;30355:2;30359:6;30341:7;:25::i;:::-;30377:24;30404:29;30414:4;861:10;11359:151;:::i;30404:29::-;30377:56;;30472:6;30452:16;:26;;30444:63;;;;-1:-1:-1;;;30444:63:0;;6681:2:1;30444:63:0;;;6663:21:1;6720:2;6700:18;;;6693:30;6759:26;6739:18;;;6732:54;6803:18;;30444:63:0;6479:348:1;30444:63:0;30518:64;30533:4;861:10;30553:28;:16;30574:6;30553:20;:28::i;:::-;30518:14;:64::i;:::-;-1:-1:-1;30600:4:0;;30193:419;-1:-1:-1;;;;30193:419:0:o;32561:102::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;31965:10;:19;;:39;;-1:-1:-1;31998:6:0;;;;;-1:-1:-1;;;;;31998:6:0;31986:10;:18;31965:39;31957:54;;;;-1:-1:-1;;;31957:54:0;;;;;;;:::i;:::-;32628:15:::1;:27:::0;;-1:-1:-1;;32628:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32561:102::o;13315:238::-;13403:4;861:10;13459:64;861:10;13475:7;13512:10;13484:25;861:10;13475:7;13484:9;:25::i;:::-;:38;;;;:::i;33424:81::-;33473:24;33479:10;33491:5;33473;:24::i;:::-;33424:81;:::o;2884:103::-;2122:13;:11;:13::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;32417:136::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;31965:10;:19;;:39;;-1:-1:-1;31998:6:0;;;;;-1:-1:-1;;;;;31998:6:0;31986:10;:18;31965:39;31957:54;;;;-1:-1:-1;;;31957:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32487:15:0;::::1;32479:39;;;::::0;-1:-1:-1;;;32479:39:0;;7164:2:1;32479:39:0::1;::::0;::::1;7146:21:1::0;7203:2;7183:18;;;7176:30;-1:-1:-1;;;7222:18:1;;;7215:42;7274:18;;32479:39:0::1;6962:336:1::0;32479:39:0::1;-1:-1:-1::0;;;;;32529:8:0;;;::::1;;::::0;;;:3:::1;:8;::::0;;;;:16;;-1:-1:-1;;32529:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32417:136::o;9698:104::-;9754:13;9787:7;9780:14;;;;;:::i;14056:436::-;14149:4;861:10;14149:4;14232:25;861:10;14249:7;14232:9;:25::i;:::-;14205:52;;14296:15;14276:16;:35;;14268:85;;;;-1:-1:-1;;;14268:85:0;;7505:2:1;14268:85:0;;;7487:21:1;7544:2;7524:18;;;7517:30;7583:34;7563:18;;;7556:62;-1:-1:-1;;;7634:18:1;;;7627:35;7679:19;;14268:85:0;7303:401:1;14268:85:0;14389:60;14398:5;14405:7;14433:15;14414:16;:34;14389:8;:60::i;30002:183::-;30100:4;30122:33;861:10;30144:2;30148:6;30122:7;:33::i;:::-;-1:-1:-1;30173:4:0;30002:183;;;;:::o;32039:73::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;31965:10;:19;;:39;;-1:-1:-1;31998:6:0;;;;;-1:-1:-1;;;;;31998:6:0;31986:10;:18;31965:39;31957:54;;;;-1:-1:-1;;;31957:54:0;;;;;;;:::i;:::-;32093:6:::1;:11:::0;;-1:-1:-1;;;;;32093:11:0;;::::1;;;-1:-1:-1::0;;;;;;32093:11:0;;::::1;::::0;;;::::1;::::0;;32039:73::o;32267:141::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;31965:10;:19;;:39;;-1:-1:-1;31998:6:0;;;;;-1:-1:-1;;;;;31998:6:0;31986:10;:18;31965:39;31957:54;;;;-1:-1:-1;;;31957:54:0;;;;;;;:::i;:::-;29317:3:::1;32337:5;:20;;32329:41;;;::::0;-1:-1:-1;;;32329:41:0;;5604:2:1;32329:41:0::1;::::0;::::1;5586:21:1::0;5643:1;5623:18;;;5616:29;-1:-1:-1;;;5661:18:1;;;5654:39;5710:18;;32329:41:0::1;5402:332:1::0;32329:41:0::1;32381:11;:19:::0;32267:141::o;11359:151::-;-1:-1:-1;;;;;11475:18:0;;;11448:7;11475:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11359:151::o;3142:201::-;2122:13;:11;:13::i;:::-;-1:-1:-1;;;;;3231:22:0;::::1;3223:73;;;::::0;-1:-1:-1;;;3223:73:0;;7911:2:1;3223:73:0::1;::::0;::::1;7893:21:1::0;7950:2;7930:18;;;7923:30;7989:34;7969:18;;;7962:62;-1:-1:-1;;;8040:18:1;;;8033:36;8086:19;;3223:73:0::1;7709:402:1::0;3223:73:0::1;3307:28;3326:8;3307:18;:28::i;18083:380::-:0;-1:-1:-1;;;;;18219:19:0;;18211:68;;;;-1:-1:-1;;;18211:68:0;;8318:2:1;18211:68:0;;;8300:21:1;8357:2;8337:18;;;8330:30;8396:34;8376:18;;;8369:62;-1:-1:-1;;;8447:18:1;;;8440:34;8491:19;;18211:68:0;8116:400:1;18211:68:0;-1:-1:-1;;;;;18298:21:0;;18290:68;;;;-1:-1:-1;;;18290:68:0;;8723:2:1;18290:68:0;;;8705:21:1;8762:2;8742:18;;;8735:30;8801:34;8781:18;;;8774:62;-1:-1:-1;;;8852:18:1;;;8845:32;8894:19;;18290:68:0;8521:398:1;18290:68:0;-1:-1:-1;;;;;18371:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18423:32;;3020:25:1;;;18423:32:0;;2993:18:1;18423:32:0;;;;;;;18083:380;;;:::o;30620:1213::-;30702:10;;:13;:29;;;;-1:-1:-1;30717:11:0;;:14;30702:29;30701:60;;;-1:-1:-1;2282:7:0;2309:6;-1:-1:-1;;;;;30748:13:0;;;2309:6;;30748:13;30701:60;:73;;;-1:-1:-1;2282:7:0;2309:6;-1:-1:-1;;;;;30763:11:0;;;2309:6;;30763:11;30701:73;:140;;;-1:-1:-1;30791:15:0;;;;:49;;;;-1:-1:-1;;;;;;30809:15:0;;;;;;:9;:15;;;;;;;;;:30;;-1:-1:-1;;;;;;30826:13:0;;;;;;:9;:13;;;;;;;;30809:30;30697:234;;;30867:31;30883:4;30888:2;30891:6;30867:15;:31::i;30697:234::-;-1:-1:-1;;;;;30946:9:0;;;;;;:3;:9;;;;;;;;30943:415;;;31004:11;31018:41;29317:3;31018:22;31029:10;;31018:6;:10;;:22;;;;:::i;:::-;:26;;:41::i;:::-;31004:55;-1:-1:-1;31091:5:0;;31088:127;;31116:39;31132:4;31145;31151:3;31116:15;:39::i;:::-;31174:25;31188:4;31195:3;31174:5;:25::i;:::-;31231:40;31247:4;31252:2;31255:15;:6;31266:3;31255:10;:15::i;:::-;31231;:40::i;:::-;31293:32;;;-1:-1:-1;;;;;9138:32:1;;;9120:51;;31316:4:0;9202:2:1;9187:18;;9180:50;9246:18;;;9239:34;;;31310:1:0;;31293:32;;;;;9108:2:1;9093:18;31293:32:0;;;;;;;;31340:7;30620:1213;;;:::o;30943:415::-;-1:-1:-1;;;;;31373:7:0;;;;;;:3;:7;;;;;;;;31370:410;;;31426:11;31440:42;29317:3;31440:23;31451:11;;31440:6;:10;;:23;;;;:::i;:42::-;31426:56;-1:-1:-1;31514:5:0;;31511:127;;31539:39;31555:4;31568;31574:3;31539:15;:39::i;:::-;31597:25;31611:4;31618:3;31597:5;:25::i;:::-;31652:40;31668:4;31673:2;31676:15;:6;31687:3;31676:10;:15::i;31652:40::-;31714:33;;;-1:-1:-1;;;;;9138:32:1;;;9120:51;;31731:1:0;9202:2:1;9187:18;;9180:50;;;9246:18;;;9239:34;;;31714:33:0;;;;;9108:2:1;9093:18;31714:33:0;8924:355:1;31370:410:0;31792:31;31808:4;31813:2;31816:6;31792:15;:31::i;23932:98::-;23990:7;24017:5;24021:1;24017;:5;:::i;:::-;24010:12;23932:98;-1:-1:-1;;;23932:98:0:o;16970:675::-;-1:-1:-1;;;;;17054:21:0;;17046:67;;;;-1:-1:-1;;;17046:67:0;;9619:2:1;17046:67:0;;;9601:21:1;9658:2;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;-1:-1:-1;;;9748:18:1;;;9741:31;9789:19;;17046:67:0;9417:397:1;17046:67:0;-1:-1:-1;;;;;17213:18:0;;17188:22;17213:18;;;:9;:18;;;;;;17250:24;;;;17242:71;;;;-1:-1:-1;;;17242:71:0;;10021:2:1;17242:71:0;;;10003:21:1;10060:2;10040:18;;;10033:30;10099:34;10079:18;;;10072:62;-1:-1:-1;;;10150:18:1;;;10143:32;10192:19;;17242:71:0;9819:398:1;17242:71:0;-1:-1:-1;;;;;17349:18:0;;;;;;:9;:18;;;;;;;;17370:23;;;17349:44;;17488:12;:22;;;;;;;17539:37;3020:25:1;;;17349:18:0;;;17539:37;;2993:18:1;17539:37:0;;;;;;;32799:256:::1;32671:391:::0;;:::o;2401:132::-;2282:7;2309:6;-1:-1:-1;;;;;2309:6:0;861:10;2465:23;2457:68;;;;-1:-1:-1;;;2457:68:0;;10424:2:1;2457:68:0;;;10406:21:1;;;10443:18;;;10436:30;10502:34;10482:18;;;10475:62;10554:18;;2457:68:0;10222:356:1;3503:191:0;3577:16;3596:6;;-1:-1:-1;;;;;3613:17:0;;;-1:-1:-1;;;;;;3613:17:0;;;;;;3646:40;;3596:6;;;;;;;3646:40;;3577:16;3646:40;3566:128;3503:191;:::o;14962:840::-;-1:-1:-1;;;;;15093:18:0;;15085:68;;;;-1:-1:-1;;;15085:68:0;;10785:2:1;15085:68:0;;;10767:21:1;10824:2;10804:18;;;10797:30;10863:34;10843:18;;;10836:62;-1:-1:-1;;;10914:18:1;;;10907:35;10959:19;;15085:68:0;10583:401:1;15085:68:0;-1:-1:-1;;;;;15172:16:0;;15164:64;;;;-1:-1:-1;;;15164:64:0;;11191:2:1;15164:64:0;;;11173:21:1;11230:2;11210:18;;;11203:30;11269:34;11249:18;;;11242:62;-1:-1:-1;;;11320:18:1;;;11313:33;11363:19;;15164:64:0;10989:399:1;15164:64:0;-1:-1:-1;;;;;15314:15:0;;15292:19;15314:15;;;:9;:15;;;;;;15348:21;;;;15340:72;;;;-1:-1:-1;;;15340:72:0;;11595:2:1;15340:72:0;;;11577:21:1;11634:2;11614:18;;;11607:30;11673:34;11653:18;;;11646:62;-1:-1:-1;;;11724:18:1;;;11717:36;11770:19;;15340:72:0;11393:402:1;15340:72:0;-1:-1:-1;;;;;15448:15:0;;;;;;;:9;:15;;;;;;15466:20;;;15448:38;;15666:13;;;;;;;;;;:23;;;;;;15718:26;;;;;;15480:6;3020:25:1;;3008:2;2993:18;;2874:177;24289:98:0;24347:7;24374:5;24378:1;24374;:5;:::i;24688:98::-;24746:7;24773:5;24777:1;24773;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:173::-;820:20;;-1:-1:-1;;;;;869:31:1;;859:42;;849:70;;915:1;912;905:12;849:70;752:173;;;:::o;930:254::-;998:6;1006;1059:2;1047:9;1038:7;1034:23;1030:32;1027:52;;;1075:1;1072;1065:12;1027:52;1098:29;1117:9;1098:29;:::i;:::-;1088:39;1174:2;1159:18;;;;1146:32;;-1:-1:-1;;;930:254:1:o;1381:127::-;1442:10;1437:3;1433:20;1430:1;1423:31;1473:4;1470:1;1463:15;1497:4;1494:1;1487:15;1513:160;1578:20;;1634:13;;1627:21;1617:32;;1607:60;;1663:1;1660;1653:12;1678:1191;1768:6;1776;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;1885:9;1872:23;1914:18;1955:2;1947:6;1944:14;1941:34;;;1971:1;1968;1961:12;1941:34;2009:6;1998:9;1994:22;1984:32;;2054:7;2047:4;2043:2;2039:13;2035:27;2025:55;;2076:1;2073;2066:12;2025:55;2112:2;2099:16;2134:4;2157:2;2153;2150:10;2147:36;;;2163:18;;:::i;:::-;2209:2;2206:1;2202:10;2241:2;2235:9;2304:2;2300:7;2295:2;2291;2287:11;2283:25;2275:6;2271:38;2359:6;2347:10;2344:22;2339:2;2327:10;2324:18;2321:46;2318:72;;;2370:18;;:::i;:::-;2406:2;2399:22;2456:18;;;2490:15;;;;-1:-1:-1;2532:11:1;;;2528:20;;;2560:19;;;2557:39;;;2592:1;2589;2582:12;2557:39;2616:11;;;;2636:148;2652:6;2647:3;2644:15;2636:148;;;2718:23;2737:3;2718:23;:::i;:::-;2706:36;;2669:12;;;;2762;;;;2636:148;;;2803:6;-1:-1:-1;2828:35:1;;-1:-1:-1;2844:18:1;;;2828:35;:::i;:::-;2818:45;;;;;;1678:1191;;;;;:::o;3056:328::-;3133:6;3141;3149;3202:2;3190:9;3181:7;3177:23;3173:32;3170:52;;;3218:1;3215;3208:12;3170:52;3241:29;3260:9;3241:29;:::i;:::-;3231:39;;3289:38;3323:2;3312:9;3308:18;3289:38;:::i;:::-;3279:48;;3374:2;3363:9;3359:18;3346:32;3336:42;;3056:328;;;;;:::o;3578:180::-;3634:6;3687:2;3675:9;3666:7;3662:23;3658:32;3655:52;;;3703:1;3700;3693:12;3655:52;3726:26;3742:9;3726:26;:::i;3763:186::-;3822:6;3875:2;3863:9;3854:7;3850:23;3846:32;3843:52;;;3891:1;3888;3881:12;3843:52;3914:29;3933:9;3914:29;:::i;3954:254::-;4019:6;4027;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;:::-;4109:39;;4167:35;4198:2;4187:9;4183:18;4167:35;:::i;:::-;4157:45;;3954:254;;;;;:::o;4421:260::-;4489:6;4497;4550:2;4538:9;4529:7;4525:23;4521:32;4518:52;;;4566:1;4563;4556:12;4518:52;4589:29;4608:9;4589:29;:::i;:::-;4579:39;;4637:38;4671:2;4660:9;4656:18;4637:38;:::i;4686:380::-;4765:1;4761:12;;;;4808;;;4829:61;;4883:4;4875:6;4871:17;4861:27;;4829:61;4936:2;4928:6;4925:14;4905:18;4902:38;4899:161;;4982:10;4977:3;4973:20;4970:1;4963:31;5017:4;5014:1;5007:15;5045:4;5042:1;5035:15;4899:161;;4686:380;;;:::o;5071:326::-;5273:2;5255:21;;;5312:1;5292:18;;;5285:29;-1:-1:-1;;;5345:2:1;5330:18;;5323:33;5388:2;5373:18;;5071:326::o;6075:127::-;6136:10;6131:3;6127:20;6124:1;6117:31;6167:4;6164:1;6157:15;6191:4;6188:1;6181:15;6207:127;6268:10;6263:3;6259:20;6256:1;6249:31;6299:4;6296:1;6289:15;6323:4;6320:1;6313:15;6339:135;6378:3;6399:17;;;6396:43;;6419:18;;:::i;:::-;-1:-1:-1;6466:1:1;6455:13;;6339:135::o;6832:125::-;6897:9;;;6918:10;;;6915:36;;;6931:18;;:::i;9284:128::-;9351:9;;;9372:11;;;9369:37;;;9386:18;;:::i;11800:168::-;11873:9;;;11904;;11921:15;;;11915:22;;11901:37;11891:71;;11942:18;;:::i;11973:217::-;12013:1;12039;12029:132;;12083:10;12078:3;12074:20;12071:1;12064:31;12118:4;12115:1;12108:15;12146:4;12143:1;12136:15;12029:132;-1:-1:-1;12175:9:1;;11973:217::o

Swarm Source

ipfs://9d0ce91e04325f8c2b80bcd7b4cdda1d68bf4eb9dd07c0e8bbe5af7d24ba21c2
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.