ETH Price: $3,451.98 (-0.83%)
Gas: 9 Gwei

Token

PSYOP (PSYOP)
 

Overview

Max Total Supply

1,000,000,000,000 PSYOP

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
100,000,000 PSYOP

Value
$0.00
0xa3583714A38eE683150D8b96caa5aB4C719a2421
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:
PSYOP

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

interface IUniV2Router {
    function factory() external pure returns (address);
}

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

// File: PSYOP.sol

pragma solidity ^0.8.0;

contract PSYOP is ERC20, Ownable {

    address public pair;
    uint256 public maxHoldingAmount;
    bool public tradingOn = true;
    bool public sellingOn = false;
    bool public limitOn = false;
    mapping(address => bool) public haramlist;

    constructor() ERC20("PSYOP", "PSYOP") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
         address ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        address WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
        pair = IUniV2Factory(IUniV2Router(ROUTER).factory()).createPair(WETH, address(this));
    }

    function setHaramlist(address _address, bool _isHaram) external onlyOwner {
        haramlist[_address] = _isHaram;
    }

    function setRule(bool _tradingOn, bool _sellingOn, bool _limitOn, uint256 _maxHoldingAmount) external onlyOwner {
        tradingOn = _tradingOn;
        sellingOn = _sellingOn;
        limitOn = _limitOn;
        maxHoldingAmount = _maxHoldingAmount;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual {
        require(!haramlist[to] && !haramlist[from], "SEEK ALLAH");
        if (!tradingOn) {
            require(from == owner() || to == owner(), "AL-SAGHA'IR");
        } else {
            require(sellingOn || to != pair, "AL-KABIRAH");
            if (limitOn && from == pair) {
                require(super.balanceOf(to) + amount <= maxHoldingAmount, "absolutely psyop");
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"haramlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"limitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isHaram","type":"bool"}],"name":"setHaramlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOn","type":"bool"},{"internalType":"bool","name":"_sellingOn","type":"bool"},{"internalType":"bool","name":"_limitOn","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","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":[],"name":"tradingOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805462ffff001960ff199091166001171690553480156200002657600080fd5b5060408051808201825260058082526405053594f560dc1b60208084018281528551808701909652928552840152815191929162000067916003916200051b565b5080516200007d9060049060208401906200051b565b5050506200009a620000946200022260201b60201c565b62000226565b620000cd33620000a962000278565b620000b690600a6200074a565b620000c79064e8d4a5100062000835565b6200027d565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29050816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200013957600080fd5b505afa1580156200014e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001749190620005c1565b6001600160a01b031663c9c6539682306040518363ffffffff1660e01b8152600401620001a3929190620005f1565b602060405180830381600087803b158015620001be57600080fd5b505af1158015620001d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f99190620005c1565b600680546001600160a01b0319166001600160a01b039290921691909117905550620008aa9050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600990565b6001600160a01b038216620002af5760405162461bcd60e51b8152600401620002a690620006a2565b60405180910390fd5b620002bd600083836200035f565b8060026000828254620002d19190620006e2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000300908490620006e2565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000345908590620006d9565b60405180910390a36200035b60008383620004ec565b5050565b6001600160a01b03821660009081526009602052604090205460ff16158015620003a257506001600160a01b03831660009081526009602052604090205460ff16155b620003c15760405162461bcd60e51b8152600401620002a69062000654565b60085460ff166200043557620003d6620004f1565b6001600160a01b0316836001600160a01b03161480620004105750620003fb620004f1565b6001600160a01b0316826001600160a01b0316145b6200042f5760405162461bcd60e51b8152600401620002a6906200062f565b620004ec565b600854610100900460ff16806200045a57506006546001600160a01b03838116911614155b620004795760405162461bcd60e51b8152600401620002a6906200060b565b60085462010000900460ff1680156200049f57506006546001600160a01b038481169116145b15620004ec5760075481620004bf846200050060201b620004de1760201c565b620004cb9190620006e2565b1115620004ec5760405162461bcd60e51b8152600401620002a69062000678565b505050565b6005546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b828054620005299062000857565b90600052602060002090601f0160209004810192826200054d576000855562000598565b82601f106200056857805160ff191683800117855562000598565b8280016001018555821562000598579182015b82811115620005985782518255916020019190600101906200057b565b50620005a6929150620005aa565b5090565b5b80821115620005a65760008155600101620005ab565b600060208284031215620005d3578081fd5b81516001600160a01b0381168114620005ea578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b6020808252600a9082015269082985a96828492a482960b31b604082015260600190565b6020808252600b908201526a20a616a9a0a3a42093a4a960a91b604082015260600190565b6020808252600a90820152690a68a8a964082989882960b31b604082015260600190565b60208082526010908201526f06162736f6c7574656c79207073796f760841b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620006f857620006f862000894565b500190565b80825b600180861162000711575062000741565b81870482111562000726576200072662000894565b808616156200073457918102915b9490941c93800262000700565b94509492505050565b6000620005ea60001960ff8516846000826200076957506001620005ea565b816200077857506000620005ea565b81600181146200079157600281146200079c57620007d0565b6001915050620005ea565b60ff841115620007b057620007b062000894565b6001841b915084821115620007c957620007c962000894565b50620005ea565b5060208310610133831016604e8410600b841016171562000808575081810a8381111562000802576200080262000894565b620005ea565b620008178484846001620006fd565b8086048211156200082c576200082c62000894565b02949350505050565b600081600019048311821515161562000852576200085262000894565b500290565b6002810460018216806200086c57607f821691505b602082108114156200088e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61104b80620008ba6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063b671efbb1161007c578063b671efbb14610260578063d9cc405b14610273578063dd62ed3e14610286578063e402aa5814610299578063f2fde38b146102a1578063fd1bc2ca146102b457610142565b80638da5cb5b1461021557806395d89b411461022a578063a457c2d714610232578063a8aa1b3114610245578063a9059cbb1461024d57610142565b8063313ce5671161010a578063313ce567146101c257806339509351146101d757806370a08231146101ea578063715018a6146101fd57806371f482341461020557806389f9a1d31461020d57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018557806323b872dd1461019a5780632cffb599146101ad575b600080fd5b61014f6102bc565b60405161015c9190610c59565b60405180910390f35b610178610173366004610bc7565b61034e565b60405161015c9190610c4e565b61018d61036b565b60405161015c9190610f9f565b6101786101a8366004610b63565b610371565b6101c06101bb366004610bf0565b61040a565b005b6101ca610485565b60405161015c9190610fa8565b6101786101e5366004610bc7565b61048a565b61018d6101f8366004610b10565b6104de565b6101c06104fd565b610178610548565b61018d610557565b61021d61055d565b60405161015c9190610c3a565b61014f61056c565b610178610240366004610bc7565b61057b565b61021d6105f4565b61017861025b366004610bc7565b610603565b6101c061026e366004610b9e565b610617565b610178610281366004610b10565b610681565b61018d610294366004610b31565b610696565b6101786106c1565b6101c06102af366004610b10565b6106cf565b610178610740565b6060600380546102cb90610fda565b80601f01602080910402602001604051908101604052809291908181526020018280546102f790610fda565b80156103445780601f1061031957610100808354040283529160200191610344565b820191906000526020600020905b81548152906001019060200180831161032757829003601f168201915b5050505050905090565b600061036261035b610749565b848461074d565b50600192915050565b60025490565b600061037e848484610801565b6001600160a01b03841660009081526001602052604081208161039f610749565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103eb5760405162461bcd60e51b81526004016103e290610de1565b60405180910390fd5b6103ff856103f7610749565b85840361074d565b506001949350505050565b610412610749565b6001600160a01b031661042361055d565b6001600160a01b0316146104495760405162461bcd60e51b81526004016103e290610e29565b6008805460ff19169415159490941761ff001916610100931515939093029290921762ff00001916620100009115159190910217909155600755565b600990565b6000610362610497610749565b8484600160006104a5610749565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104d99190610fb6565b61074d565b6001600160a01b0381166000908152602081905260409020545b919050565b610505610749565b6001600160a01b031661051661055d565b6001600160a01b03161461053c5760405162461bcd60e51b81526004016103e290610e29565b610546600061092b565b565b60085462010000900460ff1681565b60075481565b6005546001600160a01b031690565b6060600480546102cb90610fda565b6000806001600061058a610749565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105d65760405162461bcd60e51b81526004016103e290610f5a565b6105ea6105e1610749565b8585840361074d565b5060019392505050565b6006546001600160a01b031681565b6000610362610610610749565b8484610801565b61061f610749565b6001600160a01b031661063061055d565b6001600160a01b0316146106565760405162461bcd60e51b81526004016103e290610e29565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60096020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600854610100900460ff1681565b6106d7610749565b6001600160a01b03166106e861055d565b6001600160a01b03161461070e5760405162461bcd60e51b81526004016103e290610e29565b6001600160a01b0381166107345760405162461bcd60e51b81526004016103e290610cef565b61073d8161092b565b50565b60085460ff1681565b3390565b6001600160a01b0383166107735760405162461bcd60e51b81526004016103e290610eec565b6001600160a01b0382166107995760405162461bcd60e51b81526004016103e290610d35565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f4908590610f9f565b60405180910390a3505050565b6001600160a01b0383166108275760405162461bcd60e51b81526004016103e290610e83565b6001600160a01b03821661084d5760405162461bcd60e51b81526004016103e290610cac565b61085883838361097d565b6001600160a01b038316600090815260208190526040902054818110156108915760405162461bcd60e51b81526004016103e290610d9b565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108c8908490610fb6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109129190610f9f565b60405180910390a3610925848484610ae4565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526009602052604090205460ff161580156109bf57506001600160a01b03831660009081526009602052604090205460ff16155b6109db5760405162461bcd60e51b81526004016103e290610ec8565b60085460ff16610a45576109ed61055d565b6001600160a01b0316836001600160a01b03161480610a245750610a0f61055d565b6001600160a01b0316826001600160a01b0316145b610a405760405162461bcd60e51b81526004016103e290610e5e565b610ae4565b600854610100900460ff1680610a6957506006546001600160a01b03838116911614155b610a855760405162461bcd60e51b81526004016103e290610d77565b60085462010000900460ff168015610aaa57506006546001600160a01b038481169116145b15610ae45760075481610abc846104de565b610ac69190610fb6565b1115610ae45760405162461bcd60e51b81526004016103e290610f30565b505050565b80356001600160a01b03811681146104f857600080fd5b803580151581146104f857600080fd5b600060208284031215610b21578081fd5b610b2a82610ae9565b9392505050565b60008060408385031215610b43578081fd5b610b4c83610ae9565b9150610b5a60208401610ae9565b90509250929050565b600080600060608486031215610b77578081fd5b610b8084610ae9565b9250610b8e60208501610ae9565b9150604084013590509250925092565b60008060408385031215610bb0578182fd5b610bb983610ae9565b9150610b5a60208401610b00565b60008060408385031215610bd9578182fd5b610be283610ae9565b946020939093013593505050565b60008060008060808587031215610c05578081fd5b610c0e85610b00565b9350610c1c60208601610b00565b9250610c2a60408601610b00565b9396929550929360600135925050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c8557858101830151858201604001528201610c69565b81811115610c965783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600a9082015269082985a96828492a482960b31b604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600b908201526a20a616a9a0a3a42093a4a960a91b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252600a90820152690a68a8a964082989882960b31b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526010908201526f06162736f6c7574656c79207073796f760841b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610fd557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610fee57607f821691505b6020821081141561100f57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212208f87b4ea13062d1bce91ddbf5658586f7dff7f7bda1c57765cb1c52fa95d256464736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063b671efbb1161007c578063b671efbb14610260578063d9cc405b14610273578063dd62ed3e14610286578063e402aa5814610299578063f2fde38b146102a1578063fd1bc2ca146102b457610142565b80638da5cb5b1461021557806395d89b411461022a578063a457c2d714610232578063a8aa1b3114610245578063a9059cbb1461024d57610142565b8063313ce5671161010a578063313ce567146101c257806339509351146101d757806370a08231146101ea578063715018a6146101fd57806371f482341461020557806389f9a1d31461020d57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018557806323b872dd1461019a5780632cffb599146101ad575b600080fd5b61014f6102bc565b60405161015c9190610c59565b60405180910390f35b610178610173366004610bc7565b61034e565b60405161015c9190610c4e565b61018d61036b565b60405161015c9190610f9f565b6101786101a8366004610b63565b610371565b6101c06101bb366004610bf0565b61040a565b005b6101ca610485565b60405161015c9190610fa8565b6101786101e5366004610bc7565b61048a565b61018d6101f8366004610b10565b6104de565b6101c06104fd565b610178610548565b61018d610557565b61021d61055d565b60405161015c9190610c3a565b61014f61056c565b610178610240366004610bc7565b61057b565b61021d6105f4565b61017861025b366004610bc7565b610603565b6101c061026e366004610b9e565b610617565b610178610281366004610b10565b610681565b61018d610294366004610b31565b610696565b6101786106c1565b6101c06102af366004610b10565b6106cf565b610178610740565b6060600380546102cb90610fda565b80601f01602080910402602001604051908101604052809291908181526020018280546102f790610fda565b80156103445780601f1061031957610100808354040283529160200191610344565b820191906000526020600020905b81548152906001019060200180831161032757829003601f168201915b5050505050905090565b600061036261035b610749565b848461074d565b50600192915050565b60025490565b600061037e848484610801565b6001600160a01b03841660009081526001602052604081208161039f610749565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103eb5760405162461bcd60e51b81526004016103e290610de1565b60405180910390fd5b6103ff856103f7610749565b85840361074d565b506001949350505050565b610412610749565b6001600160a01b031661042361055d565b6001600160a01b0316146104495760405162461bcd60e51b81526004016103e290610e29565b6008805460ff19169415159490941761ff001916610100931515939093029290921762ff00001916620100009115159190910217909155600755565b600990565b6000610362610497610749565b8484600160006104a5610749565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104d99190610fb6565b61074d565b6001600160a01b0381166000908152602081905260409020545b919050565b610505610749565b6001600160a01b031661051661055d565b6001600160a01b03161461053c5760405162461bcd60e51b81526004016103e290610e29565b610546600061092b565b565b60085462010000900460ff1681565b60075481565b6005546001600160a01b031690565b6060600480546102cb90610fda565b6000806001600061058a610749565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105d65760405162461bcd60e51b81526004016103e290610f5a565b6105ea6105e1610749565b8585840361074d565b5060019392505050565b6006546001600160a01b031681565b6000610362610610610749565b8484610801565b61061f610749565b6001600160a01b031661063061055d565b6001600160a01b0316146106565760405162461bcd60e51b81526004016103e290610e29565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60096020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600854610100900460ff1681565b6106d7610749565b6001600160a01b03166106e861055d565b6001600160a01b03161461070e5760405162461bcd60e51b81526004016103e290610e29565b6001600160a01b0381166107345760405162461bcd60e51b81526004016103e290610cef565b61073d8161092b565b50565b60085460ff1681565b3390565b6001600160a01b0383166107735760405162461bcd60e51b81526004016103e290610eec565b6001600160a01b0382166107995760405162461bcd60e51b81526004016103e290610d35565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107f4908590610f9f565b60405180910390a3505050565b6001600160a01b0383166108275760405162461bcd60e51b81526004016103e290610e83565b6001600160a01b03821661084d5760405162461bcd60e51b81526004016103e290610cac565b61085883838361097d565b6001600160a01b038316600090815260208190526040902054818110156108915760405162461bcd60e51b81526004016103e290610d9b565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108c8908490610fb6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109129190610f9f565b60405180910390a3610925848484610ae4565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526009602052604090205460ff161580156109bf57506001600160a01b03831660009081526009602052604090205460ff16155b6109db5760405162461bcd60e51b81526004016103e290610ec8565b60085460ff16610a45576109ed61055d565b6001600160a01b0316836001600160a01b03161480610a245750610a0f61055d565b6001600160a01b0316826001600160a01b0316145b610a405760405162461bcd60e51b81526004016103e290610e5e565b610ae4565b600854610100900460ff1680610a6957506006546001600160a01b03838116911614155b610a855760405162461bcd60e51b81526004016103e290610d77565b60085462010000900460ff168015610aaa57506006546001600160a01b038481169116145b15610ae45760075481610abc846104de565b610ac69190610fb6565b1115610ae45760405162461bcd60e51b81526004016103e290610f30565b505050565b80356001600160a01b03811681146104f857600080fd5b803580151581146104f857600080fd5b600060208284031215610b21578081fd5b610b2a82610ae9565b9392505050565b60008060408385031215610b43578081fd5b610b4c83610ae9565b9150610b5a60208401610ae9565b90509250929050565b600080600060608486031215610b77578081fd5b610b8084610ae9565b9250610b8e60208501610ae9565b9150604084013590509250925092565b60008060408385031215610bb0578182fd5b610bb983610ae9565b9150610b5a60208401610b00565b60008060408385031215610bd9578182fd5b610be283610ae9565b946020939093013593505050565b60008060008060808587031215610c05578081fd5b610c0e85610b00565b9350610c1c60208601610b00565b9250610c2a60408601610b00565b9396929550929360600135925050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c8557858101830151858201604001528201610c69565b81811115610c965783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600a9082015269082985a96828492a482960b31b604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600b908201526a20a616a9a0a3a42093a4a960a91b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252600a90820152690a68a8a964082989882960b31b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526010908201526f06162736f6c7574656c79207073796f760841b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610fd557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610fee57607f821691505b6020821081141561100f57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212208f87b4ea13062d1bce91ddbf5658586f7dff7f7bda1c57765cb1c52fa95d256464736f6c63430008000033

Deployed Bytecode Sourcemap

19353:1532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9134:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11300:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10253:108::-;;;:::i;:::-;;;;;;;:::i;11951:492::-;;;;;;:::i;:::-;;:::i;20095:262::-;;;;;;:::i;:::-;;:::i;:::-;;10096:92;;;:::i;:::-;;;;;;;:::i;12852:215::-;;;;;;:::i;:::-;;:::i;10424:127::-;;;;;;:::i;:::-;;:::i;2535:103::-;;;:::i;19530:27::-;;;:::i;19421:31::-;;;:::i;1884:87::-;;;:::i;:::-;;;;;;;:::i;9353:104::-;;;:::i;13570:413::-;;;;;;:::i;:::-;;:::i;19395:19::-;;;:::i;10764:175::-;;;;;;:::i;:::-;;:::i;19964:123::-;;;;;;:::i;:::-;;:::i;19564:41::-;;;;;;:::i;:::-;;:::i;11002:151::-;;;;;;:::i;:::-;;:::i;19494:29::-;;;:::i;2793:201::-;;;;;;:::i;:::-;;:::i;19459:28::-;;;:::i;9134:100::-;9188:13;9221:5;9214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9134:100;:::o;11300:169::-;11383:4;11400:39;11409:12;:10;:12::i;:::-;11423:7;11432:6;11400:8;:39::i;:::-;-1:-1:-1;11457:4:0;11300:169;;;;:::o;10253:108::-;10341:12;;10253:108;:::o;11951:492::-;12091:4;12108:36;12118:6;12126:9;12137:6;12108:9;:36::i;:::-;-1:-1:-1;;;;;12184:19:0;;12157:24;12184:19;;;:11;:19;;;;;12157:24;12204:12;:10;:12::i;:::-;-1:-1:-1;;;;;12184:33:0;-1:-1:-1;;;;;12184:33:0;;;;;;;;;;;;;12157:60;;12256:6;12236:16;:26;;12228:79;;;;-1:-1:-1;;;12228:79:0;;;;;;;:::i;:::-;;;;;;;;;12343:57;12352:6;12360:12;:10;:12::i;:::-;12393:6;12374:16;:25;12343:8;:57::i;:::-;-1:-1:-1;12431:4:0;;11951:492;-1:-1:-1;;;;11951:492:0:o;20095:262::-;2115:12;:10;:12::i;:::-;-1:-1:-1;;;;;2104:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2104:23:0;;2096:68;;;;-1:-1:-1;;;2096:68:0;;;;;;;:::i;:::-;20218:9:::1;:22:::0;;-1:-1:-1;;20218:22:0::1;::::0;::::1;;::::0;;;::::1;-1:-1:-1::0;;20251:22:0::1;20218;20251::::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;20284:18:0::1;::::0;;::::1;;::::0;;;::::1;;::::0;;;20313:16:::1;:36:::0;20095:262::o;10096:92::-;10179:1;10096:92;:::o;12852:215::-;12940:4;12957:80;12966:12;:10;:12::i;:::-;12980:7;13026:10;12989:11;:25;13001:12;:10;:12::i;:::-;-1:-1:-1;;;;;12989:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12989:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;12957:8;:80::i;10424:127::-;-1:-1:-1;;;;;10525:18:0;;10498:7;10525:18;;;;;;;;;;;10424:127;;;;:::o;2535:103::-;2115:12;:10;:12::i;:::-;-1:-1:-1;;;;;2104:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2104:23:0;;2096:68;;;;-1:-1:-1;;;2096:68:0;;;;;;;:::i;:::-;2600:30:::1;2627:1;2600:18;:30::i;:::-;2535:103::o:0;19530:27::-;;;;;;;;;:::o;19421:31::-;;;;:::o;1884:87::-;1957:6;;-1:-1:-1;;;;;1957:6:0;1884:87;:::o;9353:104::-;9409:13;9442:7;9435:14;;;;;:::i;13570:413::-;13663:4;13680:24;13707:11;:25;13719:12;:10;:12::i;:::-;-1:-1:-1;;;;;13707:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13707:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13760:35:0;;;;13752:85;;;;-1:-1:-1;;;13752:85:0;;;;;;;:::i;:::-;13873:67;13882:12;:10;:12::i;:::-;13896:7;13924:15;13905:16;:34;13873:8;:67::i;:::-;-1:-1:-1;13971:4:0;;13570:413;-1:-1:-1;;;13570:413:0:o;19395:19::-;;;-1:-1:-1;;;;;19395:19:0;;:::o;10764:175::-;10850:4;10867:42;10877:12;:10;:12::i;:::-;10891:9;10902:6;10867:9;:42::i;19964:123::-;2115:12;:10;:12::i;:::-;-1:-1:-1;;;;;2104:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2104:23:0;;2096:68;;;;-1:-1:-1;;;2096:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20049:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:30;;-1:-1:-1;;20049:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19964:123::o;19564:41::-;;;;;;;;;;;;;;;:::o;11002:151::-;-1:-1:-1;;;;;11118:18:0;;;11091:7;11118:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11002:151::o;19494:29::-;;;;;;;;;:::o;2793:201::-;2115:12;:10;:12::i;:::-;-1:-1:-1;;;;;2104:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2104:23:0;;2096:68;;;;-1:-1:-1;;;2096:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2882:22:0;::::1;2874:73;;;;-1:-1:-1::0;;;2874:73:0::1;;;;;;;:::i;:::-;2958:28;2977:8;2958:18;:28::i;:::-;2793:201:::0;:::o;19459:28::-;;;;;;:::o;602:98::-;682:10;602:98;:::o;17254:380::-;-1:-1:-1;;;;;17390:19:0;;17382:68;;;;-1:-1:-1;;;17382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17469:21:0;;17461:68;;;;-1:-1:-1;;;17461:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17542:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17594:32;;;;;17572:6;;17594:32;:::i;:::-;;;;;;;;17254:380;;;:::o;14473:733::-;-1:-1:-1;;;;;14613:20:0;;14605:70;;;;-1:-1:-1;;;14605:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14694:23:0;;14686:71;;;;-1:-1:-1;;;14686:71:0;;;;;;;:::i;:::-;14770:47;14791:6;14799:9;14810:6;14770:20;:47::i;:::-;-1:-1:-1;;;;;14854:17:0;;14830:21;14854:17;;;;;;;;;;;14890:23;;;;14882:74;;;;-1:-1:-1;;;14882:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14992:17:0;;;:9;:17;;;;;;;;;;;15012:22;;;14992:42;;15056:20;;;;;;;;:30;;15028:6;;14992:9;15056:30;;15028:6;;15056:30;:::i;:::-;;;;;;;;15121:9;-1:-1:-1;;;;;15104:35:0;15113:6;-1:-1:-1;;;;;15104:35:0;;15132:6;15104:35;;;;;;:::i;:::-;;;;;;;;15152:46;15172:6;15180:9;15191:6;15152:19;:46::i;:::-;14473:733;;;;:::o;3154:191::-;3247:6;;;-1:-1:-1;;;;;3264:17:0;;;-1:-1:-1;;;;;;3264:17:0;;;;;;;3297:40;;3247:6;;;3264:17;3247:6;;3297:40;;3228:16;;3297:40;3154:191;;:::o;20365:517::-;-1:-1:-1;;;;;20483:13:0;;;;;;:9;:13;;;;;;;;20482:14;:34;;;;-1:-1:-1;;;;;;20501:15:0;;;;;;:9;:15;;;;;;;;20500:16;20482:34;20474:57;;;;-1:-1:-1;;;20474:57:0;;;;;;;:::i;:::-;20547:9;;;;20542:333;;20589:7;:5;:7::i;:::-;-1:-1:-1;;;;;20581:15:0;:4;-1:-1:-1;;;;;20581:15:0;;:32;;;;20606:7;:5;:7::i;:::-;-1:-1:-1;;;;;20600:13:0;:2;-1:-1:-1;;;;;20600:13:0;;20581:32;20573:56;;;;-1:-1:-1;;;20573:56:0;;;;;;;:::i;:::-;20542:333;;;20670:9;;;;;;;;:23;;-1:-1:-1;20689:4:0;;-1:-1:-1;;;;;20683:10:0;;;20689:4;;20683:10;;20670:23;20662:46;;;;-1:-1:-1;;;20662:46:0;;;;;;;:::i;:::-;20727:7;;;;;;;:23;;;;-1:-1:-1;20746:4:0;;-1:-1:-1;;;;;20738:12:0;;;20746:4;;20738:12;20727:23;20723:141;;;20811:16;;20801:6;20779:19;20795:2;20779:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20771:77;;;;-1:-1:-1;;;20771:77:0;;;;;;;:::i;:::-;20365:517;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:401::-;;;;;1888:3;1876:9;1867:7;1863:23;1859:33;1856:2;;;1910:6;1902;1895:22;1856:2;1938:28;1956:9;1938:28;:::i;:::-;1928:38;;1985:37;2018:2;2007:9;2003:18;1985:37;:::i;:::-;1975:47;;2041:37;2074:2;2063:9;2059:18;2041:37;:::i;:::-;1846:289;;;;-1:-1:-1;2031:47:1;;2125:2;2110:18;2097:32;;-1:-1:-1;;1846:289:1:o;2140:203::-;-1:-1:-1;;;;;2304:32:1;;;;2286:51;;2274:2;2259:18;;2241:102::o;2348:187::-;2513:14;;2506:22;2488:41;;2476:2;2461:18;;2443:92::o;2540:603::-;;2681:2;2710;2699:9;2692:21;2742:6;2736:13;2785:6;2780:2;2769:9;2765:18;2758:34;2810:4;2823:140;2837:6;2834:1;2831:13;2823:140;;;2932:14;;;2928:23;;2922:30;2898:17;;;2917:2;2894:26;2887:66;2852:10;;2823:140;;;2981:6;2978:1;2975:13;2972:2;;;3051:4;3046:2;3037:6;3026:9;3022:22;3018:31;3011:45;2972:2;-1:-1:-1;3127:2:1;3106:15;-1:-1:-1;;3102:29:1;3087:45;;;;3134:2;3083:54;;2661:482;-1:-1:-1;;;2661:482:1:o;3148:399::-;3350:2;3332:21;;;3389:2;3369:18;;;3362:30;3428:34;3423:2;3408:18;;3401:62;-1:-1:-1;;;3494:2:1;3479:18;;3472:33;3537:3;3522:19;;3322:225::o;3552:402::-;3754:2;3736:21;;;3793:2;3773:18;;;3766:30;3832:34;3827:2;3812:18;;3805:62;-1:-1:-1;;;3898:2:1;3883:18;;3876:36;3944:3;3929:19;;3726:228::o;3959:398::-;4161:2;4143:21;;;4200:2;4180:18;;;4173:30;4239:34;4234:2;4219:18;;4212:62;-1:-1:-1;;;4305:2:1;4290:18;;4283:32;4347:3;4332:19;;4133:224::o;4362:334::-;4564:2;4546:21;;;4603:2;4583:18;;;4576:30;-1:-1:-1;;;4637:2:1;4622:18;;4615:40;4687:2;4672:18;;4536:160::o;4701:402::-;4903:2;4885:21;;;4942:2;4922:18;;;4915:30;4981:34;4976:2;4961:18;;4954:62;-1:-1:-1;;;5047:2:1;5032:18;;5025:36;5093:3;5078:19;;4875:228::o;5108:404::-;5310:2;5292:21;;;5349:2;5329:18;;;5322:30;5388:34;5383:2;5368:18;;5361:62;-1:-1:-1;;;5454:2:1;5439:18;;5432:38;5502:3;5487:19;;5282:230::o;5517:356::-;5719:2;5701:21;;;5738:18;;;5731:30;5797:34;5792:2;5777:18;;5770:62;5864:2;5849:18;;5691:182::o;5878:335::-;6080:2;6062:21;;;6119:2;6099:18;;;6092:30;-1:-1:-1;;;6153:2:1;6138:18;;6131:41;6204:2;6189:18;;6052:161::o;6218:401::-;6420:2;6402:21;;;6459:2;6439:18;;;6432:30;6498:34;6493:2;6478:18;;6471:62;-1:-1:-1;;;6564:2:1;6549:18;;6542:35;6609:3;6594:19;;6392:227::o;6624:334::-;6826:2;6808:21;;;6865:2;6845:18;;;6838:30;-1:-1:-1;;;6899:2:1;6884:18;;6877:40;6949:2;6934:18;;6798:160::o;6963:400::-;7165:2;7147:21;;;7204:2;7184:18;;;7177:30;7243:34;7238:2;7223:18;;7216:62;-1:-1:-1;;;7309:2:1;7294:18;;7287:34;7353:3;7338:19;;7137:226::o;7368:340::-;7570:2;7552:21;;;7609:2;7589:18;;;7582:30;-1:-1:-1;;;7643:2:1;7628:18;;7621:46;7699:2;7684:18;;7542:166::o;7713:401::-;7915:2;7897:21;;;7954:2;7934:18;;;7927:30;7993:34;7988:2;7973:18;;7966:62;-1:-1:-1;;;8059:2:1;8044:18;;8037:35;8104:3;8089:19;;7887:227::o;8119:177::-;8265:25;;;8253:2;8238:18;;8220:76::o;8301:184::-;8473:4;8461:17;;;;8443:36;;8431:2;8416:18;;8398:87::o;8490:229::-;;8561:1;8557:6;8554:1;8551:13;8548:2;;;-1:-1:-1;;;8587:33:1;;8643:4;8640:1;8633:15;8673:4;8594:3;8661:17;8548:2;-1:-1:-1;8704:9:1;;8538:181::o;8724:380::-;8809:1;8799:12;;8856:1;8846:12;;;8867:2;;8921:4;8913:6;8909:17;8899:27;;8867:2;8974;8966:6;8963:14;8943:18;8940:38;8937:2;;;9020:10;9015:3;9011:20;9008:1;9001:31;9055:4;9052:1;9045:15;9083:4;9080:1;9073:15;8937:2;;8779:325;;;:::o

Swarm Source

ipfs://8f87b4ea13062d1bce91ddbf5658586f7dff7f7bda1c57765cb1c52fa95d2564
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.