ETH Price: $3,353.02 (-0.41%)
Gas: 5 Gwei

Token

Fck Jared (FJFS)
 

Overview

Max Total Supply

210,000,000,000 FJFS

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.186391158450821097 FJFS

Value
$0.00
0xa58a4fcc4b729a3da0e299ab7740c26f3296fa03
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:
FJFSToken

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-15
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/token/ERC20/extensions/ERC20Burnable.sol



pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contracts/FJFS.sol


pragma solidity ^0.8.0;




contract FJFSToken is ERC20, ERC20Burnable, Ownable {
    mapping(address => bool) public isBlocked;

    constructor() ERC20("Fck Jared", "FJFS") {
        _mint(msg.sender, 210000000000 * 10 ** decimals());
    }

    modifier isNotBlocked(address _address) {
        require(!isBlocked[_address], "Address is blocked from trading");
        _;
    }

    function blockAddress(address _address) public onlyOwner {
        isBlocked[_address] = true;
    }

    function unblockAddress(address _address) public onlyOwner {
        isBlocked[_address] = false;
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        isNotBlocked(msg.sender)
        isNotBlocked(recipient)
        returns (bool)
    {
        return super.transfer(recipient, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override isNotBlocked(sender) isNotBlocked(recipient) returns (bool) {
        return super.transferFrom(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"blockAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"unblockAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260098152681198dac812985c995960ba1b602080830191825283518085019094526004845263464a465360e01b9084015281519192916200005f916003916200020d565b508051620000759060049060208401906200020d565b505050620000926200008c620000cb60201b60201c565b620000cf565b620000c533620000a162000121565b620000ae90600a6200035b565b620000bf906430e4f9b40062000453565b62000126565b620004c8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601290565b6001600160a01b038216620001585760405162461bcd60e51b81526004016200014f90620002b3565b60405180910390fd5b620001666000838362000208565b80600260008282546200017a9190620002f3565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a9908490620002f3565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ee908590620002ea565b60405180910390a3620002046000838362000208565b5050565b505050565b8280546200021b9062000475565b90600052602060002090601f0160209004810192826200023f57600085556200028a565b82601f106200025a57805160ff19168380011785556200028a565b828001600101855582156200028a579182015b828111156200028a5782518255916020019190600101906200026d565b50620002989291506200029c565b5090565b5b808211156200029857600081556001016200029d565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003095762000309620004b2565b500190565b80825b600180861162000322575062000352565b818704821115620003375762000337620004b2565b808616156200034557918102915b9490941c93800262000311565b94509492505050565b60006200036f60001960ff85168462000376565b9392505050565b60008262000387575060016200036f565b8162000396575060006200036f565b8160018114620003af5760028114620003ba57620003ee565b60019150506200036f565b60ff841115620003ce57620003ce620004b2565b6001841b915084821115620003e757620003e7620004b2565b506200036f565b5060208310610133831016604e8410600b841016171562000426575081810a83811115620004205762000420620004b2565b6200036f565b6200043584848460016200030e565b8086048211156200044a576200044a620004b2565b02949350505050565b6000816000190483118215151615620004705762000470620004b2565b500290565b6002810460018216806200048a57607f821691505b60208210811415620004ac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6110d980620004d86000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461023a578063ad2bb1b31461024d578063dd62ed3e14610260578063f2fde38b14610273578063fbac39511461028657610121565b8063715018a6146101ef57806379cc6790146101f75780638da5cb5b1461020a57806395d89b411461021f578063a457c2d71461022757610121565b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806339509351146101b657806342966c68146101c957806370a08231146101dc57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd14610164578063186d9d8814610179575b600080fd5b61012e610299565b60405161013b9190610c5f565b60405180910390f35b610157610152366004610bff565b61032b565b60405161013b9190610c54565b61016c610348565b60405161013b919061100c565b61018c610187366004610b71565b61034e565b005b61015761019c366004610bc4565b6103b7565b6101a9610442565b60405161013b9190611015565b6101576101c4366004610bff565b610447565b61018c6101d7366004610c28565b61049b565b61016c6101ea366004610b71565b6104af565b61018c6104ce565b61018c610205366004610bff565b610519565b61021261056c565b60405161013b9190610c40565b61012e61057b565b610157610235366004610bff565b61058a565b610157610248366004610bff565b610603565b61018c61025b366004610b71565b610684565b61016c61026e366004610b92565b6106e7565b61018c610281366004610b71565b610712565b610157610294366004610b71565b610780565b6060600380546102a890611052565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490611052565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f610338610795565b8484610799565b50600192915050565b60025490565b610356610795565b6001600160a01b031661036761056c565b6001600160a01b0316146103965760405162461bcd60e51b815260040161038d90610e84565b60405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b038316600090815260066020526040812054849060ff16156103f25760405162461bcd60e51b815260040161038d90610cb2565b6001600160a01b038416600090815260066020526040902054849060ff161561042d5760405162461bcd60e51b815260040161038d90610cb2565b61043886868661084d565b9695505050505050565b601290565b600061033f610454610795565b848460016000610462610795565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104969190611023565b610799565b6104ac6104a6610795565b826108dd565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6104d6610795565b6001600160a01b03166104e761056c565b6001600160a01b03161461050d5760405162461bcd60e51b815260040161038d90610e84565b61051760006109ce565b565b60006105278361026e610795565b9050818110156105495760405162461bcd60e51b815260040161038d90610eb9565b61055d83610555610795565b848403610799565b61056783836108dd565b505050565b6005546001600160a01b031690565b6060600480546102a890611052565b60008060016000610599610795565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105e55760405162461bcd60e51b815260040161038d90610fc7565b6105f96105f0610795565b85858403610799565b5060019392505050565b3360008181526006602052604081205490919060ff16156106365760405162461bcd60e51b815260040161038d90610cb2565b6001600160a01b038416600090815260066020526040902054849060ff16156106715760405162461bcd60e51b815260040161038d90610cb2565b61067b8585610a20565b95945050505050565b61068c610795565b6001600160a01b031661069d61056c565b6001600160a01b0316146106c35760405162461bcd60e51b815260040161038d90610e84565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61071a610795565b6001600160a01b031661072b61056c565b6001600160a01b0316146107515760405162461bcd60e51b815260040161038d90610e84565b6001600160a01b0381166107775760405162461bcd60e51b815260040161038d90610d6e565b6104ac816109ce565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b0383166107bf5760405162461bcd60e51b815260040161038d90610f83565b6001600160a01b0382166107e55760405162461bcd60e51b815260040161038d90610db4565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061084090859061100c565b60405180910390a3505050565b600061085a848484610a30565b6001600160a01b03841660009081526001602052604081208161087b610795565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156108be5760405162461bcd60e51b815260040161038d90610e3c565b6108d2856108ca610795565b858403610799565b506001949350505050565b6001600160a01b0382166109035760405162461bcd60e51b815260040161038d90610efd565b61090f82600083610567565b6001600160a01b038216600090815260208190526040902054818110156109485760405162461bcd60e51b815260040161038d90610d2c565b6001600160a01b038316600090815260208190526040812083830390556002805484929061097790849061103b565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109ba90869061100c565b60405180910390a361056783600084610567565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061033f610a2d610795565b84845b6001600160a01b038316610a565760405162461bcd60e51b815260040161038d90610f3e565b6001600160a01b038216610a7c5760405162461bcd60e51b815260040161038d90610ce9565b610a87838383610567565b6001600160a01b03831660009081526020819052604090205481811015610ac05760405162461bcd60e51b815260040161038d90610df6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610af7908490611023565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b41919061100c565b60405180910390a3610b54848484610567565b50505050565b80356001600160a01b03811681146104c957600080fd5b600060208284031215610b82578081fd5b610b8b82610b5a565b9392505050565b60008060408385031215610ba4578081fd5b610bad83610b5a565b9150610bbb60208401610b5a565b90509250929050565b600080600060608486031215610bd8578081fd5b610be184610b5a565b9250610bef60208501610b5a565b9150604084013590509250925092565b60008060408385031215610c11578182fd5b610c1a83610b5a565b946020939093013593505050565b600060208284031215610c39578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c8b57858101830151858201604001528201610c6f565b81811115610c9c5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601f908201527f4164647265737320697320626c6f636b65642066726f6d2074726164696e6700604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156110365761103661108d565b500190565b60008282101561104d5761104d61108d565b500390565b60028104600182168061106657607f821691505b6020821081141561108757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200c3bf8c5cc1284b8600512eea98acdeb4fa20761f97a86cd84c3cfe672cb38a964736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461023a578063ad2bb1b31461024d578063dd62ed3e14610260578063f2fde38b14610273578063fbac39511461028657610121565b8063715018a6146101ef57806379cc6790146101f75780638da5cb5b1461020a57806395d89b411461021f578063a457c2d71461022757610121565b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806339509351146101b657806342966c68146101c957806370a08231146101dc57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd14610164578063186d9d8814610179575b600080fd5b61012e610299565b60405161013b9190610c5f565b60405180910390f35b610157610152366004610bff565b61032b565b60405161013b9190610c54565b61016c610348565b60405161013b919061100c565b61018c610187366004610b71565b61034e565b005b61015761019c366004610bc4565b6103b7565b6101a9610442565b60405161013b9190611015565b6101576101c4366004610bff565b610447565b61018c6101d7366004610c28565b61049b565b61016c6101ea366004610b71565b6104af565b61018c6104ce565b61018c610205366004610bff565b610519565b61021261056c565b60405161013b9190610c40565b61012e61057b565b610157610235366004610bff565b61058a565b610157610248366004610bff565b610603565b61018c61025b366004610b71565b610684565b61016c61026e366004610b92565b6106e7565b61018c610281366004610b71565b610712565b610157610294366004610b71565b610780565b6060600380546102a890611052565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490611052565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f610338610795565b8484610799565b50600192915050565b60025490565b610356610795565b6001600160a01b031661036761056c565b6001600160a01b0316146103965760405162461bcd60e51b815260040161038d90610e84565b60405180910390fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b038316600090815260066020526040812054849060ff16156103f25760405162461bcd60e51b815260040161038d90610cb2565b6001600160a01b038416600090815260066020526040902054849060ff161561042d5760405162461bcd60e51b815260040161038d90610cb2565b61043886868661084d565b9695505050505050565b601290565b600061033f610454610795565b848460016000610462610795565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104969190611023565b610799565b6104ac6104a6610795565b826108dd565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6104d6610795565b6001600160a01b03166104e761056c565b6001600160a01b03161461050d5760405162461bcd60e51b815260040161038d90610e84565b61051760006109ce565b565b60006105278361026e610795565b9050818110156105495760405162461bcd60e51b815260040161038d90610eb9565b61055d83610555610795565b848403610799565b61056783836108dd565b505050565b6005546001600160a01b031690565b6060600480546102a890611052565b60008060016000610599610795565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105e55760405162461bcd60e51b815260040161038d90610fc7565b6105f96105f0610795565b85858403610799565b5060019392505050565b3360008181526006602052604081205490919060ff16156106365760405162461bcd60e51b815260040161038d90610cb2565b6001600160a01b038416600090815260066020526040902054849060ff16156106715760405162461bcd60e51b815260040161038d90610cb2565b61067b8585610a20565b95945050505050565b61068c610795565b6001600160a01b031661069d61056c565b6001600160a01b0316146106c35760405162461bcd60e51b815260040161038d90610e84565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61071a610795565b6001600160a01b031661072b61056c565b6001600160a01b0316146107515760405162461bcd60e51b815260040161038d90610e84565b6001600160a01b0381166107775760405162461bcd60e51b815260040161038d90610d6e565b6104ac816109ce565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b0383166107bf5760405162461bcd60e51b815260040161038d90610f83565b6001600160a01b0382166107e55760405162461bcd60e51b815260040161038d90610db4565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061084090859061100c565b60405180910390a3505050565b600061085a848484610a30565b6001600160a01b03841660009081526001602052604081208161087b610795565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156108be5760405162461bcd60e51b815260040161038d90610e3c565b6108d2856108ca610795565b858403610799565b506001949350505050565b6001600160a01b0382166109035760405162461bcd60e51b815260040161038d90610efd565b61090f82600083610567565b6001600160a01b038216600090815260208190526040902054818110156109485760405162461bcd60e51b815260040161038d90610d2c565b6001600160a01b038316600090815260208190526040812083830390556002805484929061097790849061103b565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109ba90869061100c565b60405180910390a361056783600084610567565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061033f610a2d610795565b84845b6001600160a01b038316610a565760405162461bcd60e51b815260040161038d90610f3e565b6001600160a01b038216610a7c5760405162461bcd60e51b815260040161038d90610ce9565b610a87838383610567565b6001600160a01b03831660009081526020819052604090205481811015610ac05760405162461bcd60e51b815260040161038d90610df6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610af7908490611023565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b41919061100c565b60405180910390a3610b54848484610567565b50505050565b80356001600160a01b03811681146104c957600080fd5b600060208284031215610b82578081fd5b610b8b82610b5a565b9392505050565b60008060408385031215610ba4578081fd5b610bad83610b5a565b9150610bbb60208401610b5a565b90509250929050565b600080600060608486031215610bd8578081fd5b610be184610b5a565b9250610bef60208501610b5a565b9150604084013590509250925092565b60008060408385031215610c11578182fd5b610c1a83610b5a565b946020939093013593505050565b600060208284031215610c39578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c8b57858101830151858201604001528201610c6f565b81811115610c9c5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601f908201527f4164647265737320697320626c6f636b65642066726f6d2074726164696e6700604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156110365761103661108d565b500190565b60008282101561104d5761104d61108d565b500390565b60028104600182168061106657607f821691505b6020821081141561108757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200c3bf8c5cc1284b8600512eea98acdeb4fa20761f97a86cd84c3cfe672cb38a964736f6c63430008000033

Deployed Bytecode Sourcemap

20340:1100:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8984:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11151:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10104:108::-;;;:::i;:::-;;;;;;;:::i;20820:105::-;;;;;;:::i;:::-;;:::i;:::-;;21183:254;;;;;;:::i;:::-;;:::i;9946:93::-;;;:::i;:::-;;;;;;;:::i;12703:215::-;;;;;;:::i;:::-;;:::i;19489:91::-;;;;;;:::i;:::-;;:::i;10275:127::-;;;;;;:::i;:::-;;:::i;2629:94::-;;;:::i;19899:368::-;;;;;;:::i;:::-;;:::i;1978:87::-;;;:::i;:::-;;;;;;;:::i;9203:104::-;;;:::i;13421:413::-;;;;;;:::i;:::-;;:::i;20933:242::-;;;;;;:::i;:::-;;:::i;20710:102::-;;;;;;:::i;:::-;;:::i;10853:151::-;;;;;;:::i;:::-;;:::i;2878:192::-;;;;;;:::i;:::-;;:::i;20399:41::-;;;;;;:::i;:::-;;:::i;8984:100::-;9038:13;9071:5;9064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8984:100;:::o;11151:169::-;11234:4;11251:39;11260:12;:10;:12::i;:::-;11274:7;11283:6;11251:8;:39::i;:::-;-1:-1:-1;11308:4:0;11151:169;;;;:::o;10104:108::-;10192:12;;10104:108;:::o;20820:105::-;2209:12;:10;:12::i;:::-;-1:-1:-1;;;;;2198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2198:23:0;;2190:68;;;;-1:-1:-1;;;2190:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;20890:19:0::1;20912:5;20890:19:::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;20890:27:0::1;::::0;;20820:105::o;21183:254::-;-1:-1:-1;;;;;20627:19:0;;21360:4;20627:19;;;:9;:19;;;;;;21319:6;;20627:19;;20626:20;20618:64;;;;-1:-1:-1;;;20618:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20627:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;21340:9;;20627:19:::1;;20626:20;20618:64;;;;-1:-1:-1::0;;;20618:64:0::1;;;;;;;:::i;:::-;21384:45:::2;21403:6;21411:9;21422:6;21384:18;:45::i;:::-;21377:52:::0;21183:254;-1:-1:-1;;;;;;21183:254:0:o;9946:93::-;10029:2;9946:93;:::o;12703:215::-;12791:4;12808:80;12817:12;:10;:12::i;:::-;12831:7;12877:10;12840:11;:25;12852:12;:10;:12::i;:::-;-1:-1:-1;;;;;12840:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12840:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;12808:8;:80::i;19489:91::-;19545:27;19551:12;:10;:12::i;:::-;19565:6;19545:5;:27::i;:::-;19489:91;:::o;10275:127::-;-1:-1:-1;;;;;10376:18:0;;10349:7;10376:18;;;;;;;;;;;10275:127;;;;:::o;2629:94::-;2209:12;:10;:12::i;:::-;-1:-1:-1;;;;;2198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2198:23:0;;2190:68;;;;-1:-1:-1;;;2190:68:0;;;;;;;:::i;:::-;2694:21:::1;2712:1;2694:9;:21::i;:::-;2629:94::o:0;19899:368::-;19976:24;20003:32;20013:7;20022:12;:10;:12::i;20003:32::-;19976:59;;20074:6;20054:16;:26;;20046:75;;;;-1:-1:-1;;;20046:75:0;;;;;;;:::i;:::-;20157:58;20166:7;20175:12;:10;:12::i;:::-;20208:6;20189:16;:25;20157:8;:58::i;:::-;20237:22;20243:7;20252:6;20237:5;:22::i;:::-;19899:368;;;:::o;1978:87::-;2051:6;;-1:-1:-1;;;;;2051:6:0;1978:87;:::o;9203:104::-;9259:13;9292:7;9285:14;;;;;:::i;13421:413::-;13514:4;13531:24;13558:11;:25;13570:12;:10;:12::i;:::-;-1:-1:-1;;;;;13558:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13558:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13611:35:0;;;;13603:85;;;;-1:-1:-1;;;13603:85:0;;;;;;;:::i;:::-;13724:67;13733:12;:10;:12::i;:::-;13747:7;13775:15;13756:16;:34;13724:8;:67::i;:::-;-1:-1:-1;13822:4:0;;13421:413;-1:-1:-1;;;13421:413:0:o;20933:242::-;21042:10;21105:4;20627:19;;;:9;:19;;;;;;21105:4;;21042:10;20627:19;;20626:20;20618:64;;;;-1:-1:-1;;;20618:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20627:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;21076:9;;20627:19:::1;;20626:20;20618:64;;;;-1:-1:-1::0;;;20618:64:0::1;;;;;;;:::i;:::-;21134:33:::2;21149:9;21160:6;21134:14;:33::i;:::-;21127:40:::0;20933:242;-1:-1:-1;;;;;20933:242:0:o;20710:102::-;2209:12;:10;:12::i;:::-;-1:-1:-1;;;;;2198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2198:23:0;;2190:68;;;;-1:-1:-1;;;2190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20778:19:0::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;20778:26:0::1;20800:4;20778:26;::::0;;20710:102::o;10853:151::-;-1:-1:-1;;;;;10969:18:0;;;10942:7;10969:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10853:151::o;2878:192::-;2209:12;:10;:12::i;:::-;-1:-1:-1;;;;;2198:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2198:23:0;;2190:68;;;;-1:-1:-1;;;2190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2967:22:0;::::1;2959:73;;;;-1:-1:-1::0;;;2959:73:0::1;;;;;;;:::i;:::-;3043:19;3053:8;3043:9;:19::i;20399:41::-:0;;;;;;;;;;;;;;;:::o;713:98::-;793:10;713:98;:::o;17105:380::-;-1:-1:-1;;;;;17241:19:0;;17233:68;;;;-1:-1:-1;;;17233:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17320:21:0;;17312:68;;;;-1:-1:-1;;;17312:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17393:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17445:32;;;;;17423:6;;17445:32;:::i;:::-;;;;;;;;17105:380;;;:::o;11802:492::-;11942:4;11959:36;11969:6;11977:9;11988:6;11959:9;:36::i;:::-;-1:-1:-1;;;;;12035:19:0;;12008:24;12035:19;;;:11;:19;;;;;12008:24;12055:12;:10;:12::i;:::-;-1:-1:-1;;;;;12035:33:0;-1:-1:-1;;;;;12035:33:0;;;;;;;;;;;;;12008:60;;12107:6;12087:16;:26;;12079:79;;;;-1:-1:-1;;;12079:79:0;;;;;;;:::i;:::-;12194:57;12203:6;12211:12;:10;:12::i;:::-;12244:6;12225:16;:25;12194:8;:57::i;:::-;-1:-1:-1;12282:4:0;;11802:492;-1:-1:-1;;;;11802:492:0:o;16076:591::-;-1:-1:-1;;;;;16160:21:0;;16152:67;;;;-1:-1:-1;;;16152:67:0;;;;;;;:::i;:::-;16232:49;16253:7;16270:1;16274:6;16232:20;:49::i;:::-;-1:-1:-1;;;;;16319:18:0;;16294:22;16319:18;;;;;;;;;;;16356:24;;;;16348:71;;;;-1:-1:-1;;;16348:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16455:18:0;;:9;:18;;;;;;;;;;16476:23;;;16455:44;;16521:12;:22;;16493:6;;16455:9;16521:22;;16493:6;;16521:22;:::i;:::-;;;;-1:-1:-1;;16561:37:0;;16587:1;;-1:-1:-1;;;;;16561:37:0;;;;;;;16591:6;;16561:37;:::i;:::-;;;;;;;;16611:48;16631:7;16648:1;16652:6;16611:19;:48::i;3078:173::-;3153:6;;;-1:-1:-1;;;;;3170:17:0;;;-1:-1:-1;;;;;;3170:17:0;;;;;;;3203:40;;3153:6;;;3170:17;3153:6;;3203:40;;3134:16;;3203:40;3078:173;;:::o;10615:175::-;10701:4;10718:42;10728:12;:10;:12::i;:::-;10742:9;10753:6;14324:733;-1:-1:-1;;;;;14464:20:0;;14456:70;;;;-1:-1:-1;;;14456:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14545:23:0;;14537:71;;;;-1:-1:-1;;;14537:71:0;;;;;;;:::i;:::-;14621:47;14642:6;14650:9;14661:6;14621:20;:47::i;:::-;-1:-1:-1;;;;;14705:17:0;;14681:21;14705:17;;;;;;;;;;;14741:23;;;;14733:74;;;;-1:-1:-1;;;14733:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14843:17:0;;;:9;:17;;;;;;;;;;;14863:22;;;14843:42;;14907:20;;;;;;;;:30;;14879:6;;14843:9;14907:30;;14879:6;;14907:30;:::i;:::-;;;;;;;;14972:9;-1:-1:-1;;;;;14955:35:0;14964:6;-1:-1:-1;;;;;14955:35:0;;14983:6;14955:35;;;;;;:::i;:::-;;;;;;;;15003:46;15023:6;15031:9;15042:6;15003:19;:46::i;:::-;14324:733;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;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;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;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:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:355::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:33;2772:2;2757:18;;2750:61;2843:2;2828:18;;2671:181::o;2857:399::-;3059:2;3041:21;;;3098:2;3078:18;;;3071:30;3137:34;3132:2;3117:18;;3110:62;-1:-1:-1;;;3203:2:1;3188:18;;3181:33;3246:3;3231:19;;3031:225::o;3261:398::-;3463:2;3445:21;;;3502:2;3482:18;;;3475:30;3541:34;3536:2;3521:18;;3514:62;-1:-1:-1;;;3607:2:1;3592:18;;3585:32;3649:3;3634:19;;3435:224::o;3664:402::-;3866:2;3848:21;;;3905:2;3885:18;;;3878:30;3944:34;3939:2;3924:18;;3917:62;-1:-1:-1;;;4010:2:1;3995:18;;3988:36;4056:3;4041:19;;3838:228::o;4071:398::-;4273:2;4255:21;;;4312:2;4292:18;;;4285:30;4351:34;4346:2;4331:18;;4324:62;-1:-1:-1;;;4417:2:1;4402:18;;4395:32;4459:3;4444:19;;4245:224::o;4474:402::-;4676:2;4658:21;;;4715:2;4695:18;;;4688:30;4754:34;4749:2;4734:18;;4727:62;-1:-1:-1;;;4820:2:1;4805:18;;4798:36;4866:3;4851:19;;4648:228::o;4881:404::-;5083:2;5065:21;;;5122:2;5102:18;;;5095:30;5161:34;5156:2;5141:18;;5134:62;-1:-1:-1;;;5227:2:1;5212:18;;5205:38;5275:3;5260:19;;5055:230::o;5290:356::-;5492:2;5474:21;;;5511:18;;;5504:30;5570:34;5565:2;5550:18;;5543:62;5637:2;5622:18;;5464:182::o;5651:400::-;5853:2;5835:21;;;5892:2;5872:18;;;5865:30;5931:34;5926:2;5911:18;;5904:62;-1:-1:-1;;;5997:2:1;5982:18;;5975:34;6041:3;6026:19;;5825:226::o;6056:397::-;6258:2;6240:21;;;6297:2;6277:18;;;6270:30;6336:34;6331:2;6316:18;;6309:62;-1:-1:-1;;;6402:2:1;6387:18;;6380:31;6443:3;6428:19;;6230:223::o;6458:401::-;6660:2;6642:21;;;6699:2;6679:18;;;6672:30;6738:34;6733:2;6718:18;;6711:62;-1:-1:-1;;;6804:2:1;6789:18;;6782:35;6849:3;6834:19;;6632:227::o;6864:400::-;7066:2;7048:21;;;7105:2;7085:18;;;7078:30;7144:34;7139:2;7124:18;;7117:62;-1:-1:-1;;;7210:2:1;7195:18;;7188:34;7254:3;7239:19;;7038:226::o;7269:401::-;7471:2;7453:21;;;7510:2;7490:18;;;7483:30;7549:34;7544:2;7529:18;;7522:62;-1:-1:-1;;;7615:2:1;7600:18;;7593:35;7660:3;7645:19;;7443:227::o;7675:177::-;7821:25;;;7809:2;7794:18;;7776:76::o;7857:184::-;8029:4;8017:17;;;;7999:36;;7987:2;7972:18;;7954:87::o;8046:128::-;;8117:1;8113:6;8110:1;8107:13;8104:2;;;8123:18;;:::i;:::-;-1:-1:-1;8159:9:1;;8094:80::o;8179:125::-;;8247:1;8244;8241:8;8238:2;;;8252:18;;:::i;:::-;-1:-1:-1;8289:9:1;;8228:76::o;8309:380::-;8394:1;8384:12;;8441:1;8431:12;;;8452:2;;8506:4;8498:6;8494:17;8484:27;;8452:2;8559;8551:6;8548:14;8528:18;8525:38;8522:2;;;8605:10;8600:3;8596:20;8593:1;8586:31;8640:4;8637:1;8630:15;8668:4;8665:1;8658:15;8522:2;;8364:325;;;:::o;8694:127::-;8755:10;8750:3;8746:20;8743:1;8736:31;8786:4;8783:1;8776:15;8810:4;8807:1;8800:15

Swarm Source

ipfs://0c3bf8c5cc1284b8600512eea98acdeb4fa20761f97a86cd84c3cfe672cb38a9
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.