ETH Price: $3,103.05 (+2.56%)
Gas: 3 Gwei

Token

Bill (BILL)
 

Overview

Max Total Supply

420,069,069,069,069 BILL

Holders

127

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
417,844,206,324.961102785993626075 BILL

Value
$0.00
0x596af881270b995f7fe9476f29967086d882718c
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:
Bill

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// Find Bill on:
// website: https://www.belikebill.vip/
// telegram: https://t.me/Billcoineth
// twitter: https://twitter.com/billcoineth

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 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 contracts/Bill.sol



pragma solidity ^0.8.0;


contract Bill is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("Bill", "BILL") {
        _mint(msg.sender, _totalSupply*10**decimals());
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","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":"minHoldingAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","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":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e7f38038062002e7f833981810160405281019062000037919062000666565b6040518060400160405280600481526020017f42696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42494c4c00000000000000000000000000000000000000000000000000000000815250620000c3620000b76200012c60201b60201c565b6200013460201b60201c565b8160049081620000d4919062000908565b508060059081620000e6919062000908565b5050506200012533620000fe620001f860201b60201c565b600a6200010c919062000b7f565b8362000119919062000bd0565b6200020160201b60201c565b5062000deb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000273576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026a9062000c7c565b60405180910390fd5b62000287600083836200037a60201b60201c565b80600360008282546200029b919062000c9e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002f3919062000c9e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035a919062000cea565b60405180910390a36200037660008383620005af60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200049d57620003e1620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000455575062000426620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048e9062000d57565b60405180910390fd5b620005aa565b600660009054906101000a900460ff168015620005075750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620005a957600754816200052784620005dd60201b620007781760201c565b62000533919062000c9e565b11158015620005665750600854816200055784620005dd60201b620007781760201c565b62000563919062000c9e565b10155b620005a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059f9062000dc9565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b62000640816200062b565b81146200064c57600080fd5b50565b600081519050620006608162000635565b92915050565b6000602082840312156200067f576200067e62000626565b5b60006200068f848285016200064f565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071a57607f821691505b60208210810362000730576200072f620006d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200079a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075b565b620007a686836200075b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007e9620007e3620007dd846200062b565b620007be565b6200062b565b9050919050565b6000819050919050565b6200080583620007c8565b6200081d6200081482620007f0565b84845462000768565b825550505050565b600090565b6200083462000825565b62000841818484620007fa565b505050565b5b8181101562000869576200085d6000826200082a565b60018101905062000847565b5050565b601f821115620008b857620008828162000736565b6200088d846200074b565b810160208510156200089d578190505b620008b5620008ac856200074b565b83018262000846565b50505b505050565b600082821c905092915050565b6000620008dd60001984600802620008bd565b1980831691505092915050565b6000620008f88383620008ca565b9150826002028217905092915050565b620009138262000698565b67ffffffffffffffff8111156200092f576200092e620006a3565b5b6200093b825462000701565b620009488282856200086d565b600060209050601f8311600181146200098057600084156200096b578287015190505b620009778582620008ea565b865550620009e7565b601f198416620009908662000736565b60005b82811015620009ba5784890151825560018201915060208501945060208101905062000993565b86831015620009da5784890151620009d6601f891682620008ca565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a7d5780860481111562000a555762000a54620009ef565b5b600185161562000a655780820291505b808102905062000a758562000a1e565b945062000a35565b94509492505050565b60008262000a98576001905062000b6b565b8162000aa8576000905062000b6b565b816001811462000ac1576002811462000acc5762000b02565b600191505062000b6b565b60ff84111562000ae15762000ae0620009ef565b5b8360020a91508482111562000afb5762000afa620009ef565b5b5062000b6b565b5060208310610133831016604e8410600b841016171562000b3c5782820a90508381111562000b365762000b35620009ef565b5b62000b6b565b62000b4b848484600162000a2b565b9250905081840481111562000b655762000b64620009ef565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b8c826200062b565b915062000b998362000b72565b925062000bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a86565b905092915050565b600062000bdd826200062b565b915062000bea836200062b565b925082820262000bfa816200062b565b9150828204841483151762000c145762000c13620009ef565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c64601f8362000c1b565b915062000c718262000c2c565b602082019050919050565b6000602082019050818103600083015262000c978162000c55565b9050919050565b600062000cab826200062b565b915062000cb8836200062b565b925082820190508082111562000cd35762000cd2620009ef565b5b92915050565b62000ce4816200062b565b82525050565b600060208201905062000d01600083018462000cd9565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000d3f60168362000c1b565b915062000d4c8262000d07565b602082019050919050565b6000602082019050818103600083015262000d728162000d30565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000db160068362000c1b565b915062000dbe8262000d79565b602082019050919050565b6000602082019050818103600083015262000de48162000da2565b9050919050565b6120848062000dfb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611523565b60405180910390f35b610169600480360381019061016491906115de565b61047f565b6040516101769190611639565b60405180910390f35b61018761049d565b6040516101949190611663565b60405180910390f35b6101a56104a7565b6040516101b29190611663565b60405180910390f35b6101d560048036038101906101d0919061167e565b6104ad565b6040516101e29190611639565b60405180910390f35b6101f36105a5565b60405161020091906116ed565b60405180910390f35b610223600480360381019061021e91906115de565b6105ae565b6040516102309190611639565b60405180910390f35b610253600480360381019061024e9190611734565b61065a565b005b61026f600480360381019061026a919061179b565b610745565b005b610279610752565b60405161028691906117d7565b60405180910390f35b6102a960048036038101906102a491906117f2565b610778565b6040516102b69190611663565b60405180910390f35b6102c76107c1565b005b6102d1610849565b6040516102de9190611639565b60405180910390f35b6102ef61085c565b6040516102fc9190611663565b60405180910390f35b61030d610862565b60405161031a91906117d7565b60405180910390f35b61032b61088b565b6040516103389190611523565b60405180910390f35b61035b600480360381019061035691906115de565b61091d565b6040516103689190611639565b60405180910390f35b61038b600480360381019061038691906115de565b610a08565b6040516103989190611639565b60405180910390f35b6103bb60048036038101906103b6919061181f565b610a26565b6040516103c89190611663565b60405180910390f35b6103eb60048036038101906103e691906117f2565b610aad565b005b6060600480546103fc9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546104289061188e565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba4565b8484610bac565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d75565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611931565b60405180910390fd5b61059985610591610ba4565b858403610bac565b60019150509392505050565b60006012905090565b60006106506105bb610ba4565b8484600260006105c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611980565b610bac565b6001905092915050565b610662610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610680610862565b73ffffffffffffffffffffffffffffffffffffffff16146106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90611a00565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61074f3382610ff7565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff166107e7610862565b73ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611a00565b60405180910390fd5b61084760006111cf565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c69061188e565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611a92565b60405180910390fd5b6109fd6109f4610ba4565b85858403610bac565b600191505092915050565b6000610a1c610a15610ba4565b8484610d75565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611b24565b60405180910390fd5b610ba1816111cf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611bb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611c48565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d689190611663565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611cda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611d6c565b60405180910390fd5b610e5e838383611293565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611dfe565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190611980565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fde9190611663565b60405180910390a3610ff184848461148e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e90565b60405180910390fd5b61107282600083611293565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611f22565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111519190611f42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b69190611663565b60405180910390a36111ca8360008461148e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113a0576112f1610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061135c575061132d610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290611fc2565b60405180910390fd5b611489565b600660009054906101000a900460ff1680156114095750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611488576007548161141b84610778565b6114259190611980565b1115801561144857506008548161143b84610778565b6114459190611980565b10155b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061202e565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114cd5780820151818401526020810190506114b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006114f582611493565b6114ff818561149e565b935061150f8185602086016114af565b611518816114d9565b840191505092915050565b6000602082019050818103600083015261153d81846114ea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115758261154a565b9050919050565b6115858161156a565b811461159057600080fd5b50565b6000813590506115a28161157c565b92915050565b6000819050919050565b6115bb816115a8565b81146115c657600080fd5b50565b6000813590506115d8816115b2565b92915050565b600080604083850312156115f5576115f4611545565b5b600061160385828601611593565b9250506020611614858286016115c9565b9150509250929050565b60008115159050919050565b6116338161161e565b82525050565b600060208201905061164e600083018461162a565b92915050565b61165d816115a8565b82525050565b60006020820190506116786000830184611654565b92915050565b60008060006060848603121561169757611696611545565b5b60006116a586828701611593565b93505060206116b686828701611593565b92505060406116c7868287016115c9565b9150509250925092565b600060ff82169050919050565b6116e7816116d1565b82525050565b600060208201905061170260008301846116de565b92915050565b6117118161161e565b811461171c57600080fd5b50565b60008135905061172e81611708565b92915050565b6000806000806080858703121561174e5761174d611545565b5b600061175c8782880161171f565b945050602061176d87828801611593565b935050604061177e878288016115c9565b925050606061178f878288016115c9565b91505092959194509250565b6000602082840312156117b1576117b0611545565b5b60006117bf848285016115c9565b91505092915050565b6117d18161156a565b82525050565b60006020820190506117ec60008301846117c8565b92915050565b60006020828403121561180857611807611545565b5b600061181684828501611593565b91505092915050565b6000806040838503121561183657611835611545565b5b600061184485828601611593565b925050602061185585828601611593565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118a657607f821691505b6020821081036118b9576118b861185f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061191b60288361149e565b9150611926826118bf565b604082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198b826115a8565b9150611996836115a8565b92508282019050808211156119ae576119ad611951565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ea60208361149e565b91506119f5826119b4565b602082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60258361149e565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60268361149e565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba060248361149e565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c3260228361149e565b9150611c3d82611bd6565b604082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc460258361149e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660238361149e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de860268361149e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60218361149e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0c60228361149e565b9150611f1782611eb0565b604082019050919050565b60006020820190508181036000830152611f3b81611eff565b9050919050565b6000611f4d826115a8565b9150611f58836115a8565b9250828203905081811115611f7057611f6f611951565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611fac60168361149e565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061201860068361149e565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea264697066735822122087e11aab8719f0e875c494aef5d713ca8c0b0ab3cb62ef179d08296c1b5cf1d464736f6c6343000811003300000000000000000000000000000000000000000000000000017e0cf3a49b0d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611523565b60405180910390f35b610169600480360381019061016491906115de565b61047f565b6040516101769190611639565b60405180910390f35b61018761049d565b6040516101949190611663565b60405180910390f35b6101a56104a7565b6040516101b29190611663565b60405180910390f35b6101d560048036038101906101d0919061167e565b6104ad565b6040516101e29190611639565b60405180910390f35b6101f36105a5565b60405161020091906116ed565b60405180910390f35b610223600480360381019061021e91906115de565b6105ae565b6040516102309190611639565b60405180910390f35b610253600480360381019061024e9190611734565b61065a565b005b61026f600480360381019061026a919061179b565b610745565b005b610279610752565b60405161028691906117d7565b60405180910390f35b6102a960048036038101906102a491906117f2565b610778565b6040516102b69190611663565b60405180910390f35b6102c76107c1565b005b6102d1610849565b6040516102de9190611639565b60405180910390f35b6102ef61085c565b6040516102fc9190611663565b60405180910390f35b61030d610862565b60405161031a91906117d7565b60405180910390f35b61032b61088b565b6040516103389190611523565b60405180910390f35b61035b600480360381019061035691906115de565b61091d565b6040516103689190611639565b60405180910390f35b61038b600480360381019061038691906115de565b610a08565b6040516103989190611639565b60405180910390f35b6103bb60048036038101906103b6919061181f565b610a26565b6040516103c89190611663565b60405180910390f35b6103eb60048036038101906103e691906117f2565b610aad565b005b6060600480546103fc9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546104289061188e565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba4565b8484610bac565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d75565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611931565b60405180910390fd5b61059985610591610ba4565b858403610bac565b60019150509392505050565b60006012905090565b60006106506105bb610ba4565b8484600260006105c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611980565b610bac565b6001905092915050565b610662610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610680610862565b73ffffffffffffffffffffffffffffffffffffffff16146106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90611a00565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61074f3382610ff7565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff166107e7610862565b73ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611a00565b60405180910390fd5b61084760006111cf565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c69061188e565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611a92565b60405180910390fd5b6109fd6109f4610ba4565b85858403610bac565b600191505092915050565b6000610a1c610a15610ba4565b8484610d75565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611b24565b60405180910390fd5b610ba1816111cf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611bb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611c48565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d689190611663565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611cda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611d6c565b60405180910390fd5b610e5e838383611293565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611dfe565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190611980565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fde9190611663565b60405180910390a3610ff184848461148e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e90565b60405180910390fd5b61107282600083611293565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611f22565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111519190611f42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b69190611663565b60405180910390a36111ca8360008461148e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113a0576112f1610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061135c575061132d610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290611fc2565b60405180910390fd5b611489565b600660009054906101000a900460ff1680156114095750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611488576007548161141b84610778565b6114259190611980565b1115801561144857506008548161143b84610778565b6114459190611980565b10155b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061202e565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114cd5780820151818401526020810190506114b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006114f582611493565b6114ff818561149e565b935061150f8185602086016114af565b611518816114d9565b840191505092915050565b6000602082019050818103600083015261153d81846114ea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115758261154a565b9050919050565b6115858161156a565b811461159057600080fd5b50565b6000813590506115a28161157c565b92915050565b6000819050919050565b6115bb816115a8565b81146115c657600080fd5b50565b6000813590506115d8816115b2565b92915050565b600080604083850312156115f5576115f4611545565b5b600061160385828601611593565b9250506020611614858286016115c9565b9150509250929050565b60008115159050919050565b6116338161161e565b82525050565b600060208201905061164e600083018461162a565b92915050565b61165d816115a8565b82525050565b60006020820190506116786000830184611654565b92915050565b60008060006060848603121561169757611696611545565b5b60006116a586828701611593565b93505060206116b686828701611593565b92505060406116c7868287016115c9565b9150509250925092565b600060ff82169050919050565b6116e7816116d1565b82525050565b600060208201905061170260008301846116de565b92915050565b6117118161161e565b811461171c57600080fd5b50565b60008135905061172e81611708565b92915050565b6000806000806080858703121561174e5761174d611545565b5b600061175c8782880161171f565b945050602061176d87828801611593565b935050604061177e878288016115c9565b925050606061178f878288016115c9565b91505092959194509250565b6000602082840312156117b1576117b0611545565b5b60006117bf848285016115c9565b91505092915050565b6117d18161156a565b82525050565b60006020820190506117ec60008301846117c8565b92915050565b60006020828403121561180857611807611545565b5b600061181684828501611593565b91505092915050565b6000806040838503121561183657611835611545565b5b600061184485828601611593565b925050602061185585828601611593565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118a657607f821691505b6020821081036118b9576118b861185f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061191b60288361149e565b9150611926826118bf565b604082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198b826115a8565b9150611996836115a8565b92508282019050808211156119ae576119ad611951565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ea60208361149e565b91506119f5826119b4565b602082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60258361149e565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60268361149e565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba060248361149e565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c3260228361149e565b9150611c3d82611bd6565b604082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc460258361149e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660238361149e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de860268361149e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60218361149e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0c60228361149e565b9150611f1782611eb0565b604082019050919050565b60006020820190508181036000830152611f3b81611eff565b9050919050565b6000611f4d826115a8565b9150611f58836115a8565b9250828203905081811115611f7057611f6f611951565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611fac60168361149e565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061201860068361149e565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea264697066735822122087e11aab8719f0e875c494aef5d713ca8c0b0ab3cb62ef179d08296c1b5cf1d464736f6c63430008110033

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

00000000000000000000000000000000000000000000000000017e0cf3a49b0d

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420069069069069

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000017e0cf3a49b0d


Deployed Bytecode Sourcemap

19359:1202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9333:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11500:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10453:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19462:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12151:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10295:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13052:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19666:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20477:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19500:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10624:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2734:103;;;:::i;:::-;;19398:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19424:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2083:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9552:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13770:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10964:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11202:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2992:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9333:100;9387:13;9420:5;9413:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9333:100;:::o;11500:169::-;11583:4;11600:39;11609:12;:10;:12::i;:::-;11623:7;11632:6;11600:8;:39::i;:::-;11657:4;11650:11;;11500:169;;;;:::o;10453:108::-;10514:7;10541:12;;10534:19;;10453:108;:::o;19462:31::-;;;;:::o;12151:492::-;12291:4;12308:36;12318:6;12326:9;12337:6;12308:9;:36::i;:::-;12357:24;12384:11;:19;12396:6;12384:19;;;;;;;;;;;;;;;:33;12404:12;:10;:12::i;:::-;12384:33;;;;;;;;;;;;;;;;12357:60;;12456:6;12436:16;:26;;12428:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12543:57;12552:6;12560:12;:10;:12::i;:::-;12593:6;12574:16;:25;12543:8;:57::i;:::-;12631:4;12624:11;;;12151:492;;;;;:::o;10295:93::-;10353:5;10378:2;10371:9;;10295:93;:::o;13052:215::-;13140:4;13157:80;13166:12;:10;:12::i;:::-;13180:7;13226:10;13189:11;:25;13201:12;:10;:12::i;:::-;13189:25;;;;;;;;;;;;;;;:34;13215:7;13189:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13157:8;:80::i;:::-;13255:4;13248:11;;13052:215;;;;:::o;19666:301::-;2314:12;:10;:12::i;:::-;2303:23;;:7;:5;:7::i;:::-;:23;;;2295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19816:8:::1;19806:7;;:18;;;;;;;;;;;;;;;;;;19851:14;19835:13;;:30;;;;;;;;;;;;;;;;;;19895:17;19876:16;:36;;;;19942:17;19923:16;:36;;;;19666:301:::0;;;;:::o;20477:81::-;20526:24;20532:10;20544:5;20526;:24::i;:::-;20477:81;:::o;19500:28::-;;;;;;;;;;;;;:::o;10624:127::-;10698:7;10725:9;:18;10735:7;10725:18;;;;;;;;;;;;;;;;10718:25;;10624:127;;;:::o;2734:103::-;2314:12;:10;:12::i;:::-;2303:23;;:7;:5;:7::i;:::-;:23;;;2295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2799:30:::1;2826:1;2799:18;:30::i;:::-;2734:103::o:0;19398:19::-;;;;;;;;;;;;;:::o;19424:31::-;;;;:::o;2083:87::-;2129:7;2156:6;;;;;;;;;;;2149:13;;2083:87;:::o;9552:104::-;9608:13;9641:7;9634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9552:104;:::o;13770:413::-;13863:4;13880:24;13907:11;:25;13919:12;:10;:12::i;:::-;13907:25;;;;;;;;;;;;;;;:34;13933:7;13907:34;;;;;;;;;;;;;;;;13880:61;;13980:15;13960:16;:35;;13952:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14073:67;14082:12;:10;:12::i;:::-;14096:7;14124:15;14105:16;:34;14073:8;:67::i;:::-;14171:4;14164:11;;;13770:413;;;;:::o;10964:175::-;11050:4;11067:42;11077:12;:10;:12::i;:::-;11091:9;11102:6;11067:9;:42::i;:::-;11127:4;11120:11;;10964:175;;;;:::o;11202:151::-;11291:7;11318:11;:18;11330:5;11318:18;;;;;;;;;;;;;;;:27;11337:7;11318:27;;;;;;;;;;;;;;;;11311:34;;11202:151;;;;:::o;2992:201::-;2314:12;:10;:12::i;:::-;2303:23;;:7;:5;:7::i;:::-;:23;;;2295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3101:1:::1;3081:22;;:8;:22;;::::0;3073:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:28;3176:8;3157:18;:28::i;:::-;2992:201:::0;:::o;801:98::-;854:7;881:10;874:17;;801:98;:::o;17454:380::-;17607:1;17590:19;;:5;:19;;;17582:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17688:1;17669:21;;:7;:21;;;17661:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17772:6;17742:11;:18;17754:5;17742:18;;;;;;;;;;;;;;;:27;17761:7;17742:27;;;;;;;;;;;;;;;:36;;;;17810:7;17794:32;;17803:5;17794:32;;;17819:6;17794:32;;;;;;:::i;:::-;;;;;;;;17454:380;;;:::o;14673:733::-;14831:1;14813:20;;:6;:20;;;14805:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14915:1;14894:23;;:9;:23;;;14886:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14970:47;14991:6;14999:9;15010:6;14970:20;:47::i;:::-;15030:21;15054:9;:17;15064:6;15054:17;;;;;;;;;;;;;;;;15030:41;;15107:6;15090:13;:23;;15082:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15228:6;15212:13;:22;15192:9;:17;15202:6;15192:17;;;;;;;;;;;;;;;:42;;;;15280:6;15256:9;:20;15266:9;15256:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15321:9;15304:35;;15313:6;15304:35;;;15332:6;15304:35;;;;;;:::i;:::-;;;;;;;;15352:46;15372:6;15380:9;15391:6;15352:19;:46::i;:::-;14794:612;14673:733;;;:::o;16425:591::-;16528:1;16509:21;;:7;:21;;;16501:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16581:49;16602:7;16619:1;16623:6;16581:20;:49::i;:::-;16643:22;16668:9;:18;16678:7;16668:18;;;;;;;;;;;;;;;;16643:43;;16723:6;16705:14;:24;;16697:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16842:6;16825:14;:23;16804:9;:18;16814:7;16804:18;;;;;;;;;;;;;;;:44;;;;16886:6;16870:12;;:22;;;;;;;:::i;:::-;;;;;;;;16936:1;16910:37;;16919:7;16910:37;;;16940:6;16910:37;;;;;;:::i;:::-;;;;;;;;16960:48;16980:7;16997:1;17001:6;16960:19;:48::i;:::-;16490:526;16425:591;;:::o;3353:191::-;3427:16;3446:6;;;;;;;;;;;3427:25;;3472:8;3463:6;;:17;;;;;;;;;;;;;;;;;;3527:8;3496:40;;3517:8;3496:40;;;;;;;;;;;;3416:128;3353:191;:::o;19975:494::-;20147:1;20122:27;;:13;;;;;;;;;;;:27;;;20118:148;;20182:7;:5;:7::i;:::-;20174:15;;:4;:15;;;:32;;;;20199:7;:5;:7::i;:::-;20193:13;;:2;:13;;;20174:32;20166:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20248:7;;20118:148;20282:7;;;;;;;;;;;:32;;;;;20301:13;;;;;;;;;;;20293:21;;:4;:21;;;20282:32;20278:184;;;20371:16;;20361:6;20339:19;20355:2;20339:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20423:16;;20413:6;20391:19;20407:2;20391:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20339:100;20331:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20278:184;19975:494;;;;:::o;19163:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:759::-;5197:6;5205;5213;5221;5270:3;5258:9;5249:7;5245:23;5241:33;5238:120;;;5277:79;;:::i;:::-;5238:120;5397:1;5422:50;5464:7;5455:6;5444:9;5440:22;5422:50;:::i;:::-;5412:60;;5368:114;5521:2;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5492:118;5649:2;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5620:118;5777:2;5803:53;5848:7;5839:6;5828:9;5824:22;5803:53;:::i;:::-;5793:63;;5748:118;5114:759;;;;;;;:::o;5879:329::-;5938:6;5987:2;5975:9;5966:7;5962:23;5958:32;5955:119;;;5993:79;;:::i;:::-;5955:119;6113:1;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6084:117;5879:329;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:329::-;6625:6;6674:2;6662:9;6653:7;6649:23;6645:32;6642:119;;;6680:79;;:::i;:::-;6642:119;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6566:329;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:227::-;8033:34;8029:1;8021:6;8017:14;8010:58;8102:10;8097:2;8089:6;8085:15;8078:35;7893:227;:::o;8126:366::-;8268:3;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8365:93;8454:3;8365:93;:::i;:::-;8483:2;8478:3;8474:12;8467:19;;8126:366;;;:::o;8498:419::-;8664:4;8702:2;8691:9;8687:18;8679:26;;8751:9;8745:4;8741:20;8737:1;8726:9;8722:17;8715:47;8779:131;8905:4;8779:131;:::i;:::-;8771:139;;8498:419;;;:::o;8923:180::-;8971:77;8968:1;8961:88;9068:4;9065:1;9058:15;9092:4;9089:1;9082:15;9109:191;9149:3;9168:20;9186:1;9168:20;:::i;:::-;9163:25;;9202:20;9220:1;9202:20;:::i;:::-;9197:25;;9245:1;9242;9238:9;9231:16;;9266:3;9263:1;9260:10;9257:36;;;9273:18;;:::i;:::-;9257:36;9109:191;;;;:::o;9306:182::-;9446:34;9442:1;9434:6;9430:14;9423:58;9306:182;:::o;9494:366::-;9636:3;9657:67;9721:2;9716:3;9657:67;:::i;:::-;9650:74;;9733:93;9822:3;9733:93;:::i;:::-;9851:2;9846:3;9842:12;9835:19;;9494:366;;;:::o;9866:419::-;10032:4;10070:2;10059:9;10055:18;10047:26;;10119:9;10113:4;10109:20;10105:1;10094:9;10090:17;10083:47;10147:131;10273:4;10147:131;:::i;:::-;10139:139;;9866:419;;;:::o;10291:224::-;10431:34;10427:1;10419:6;10415:14;10408:58;10500:7;10495:2;10487:6;10483:15;10476:32;10291:224;:::o;10521:366::-;10663:3;10684:67;10748:2;10743:3;10684:67;:::i;:::-;10677:74;;10760:93;10849:3;10760:93;:::i;:::-;10878:2;10873:3;10869:12;10862:19;;10521:366;;;:::o;10893:419::-;11059:4;11097:2;11086:9;11082:18;11074:26;;11146:9;11140:4;11136:20;11132:1;11121:9;11117:17;11110:47;11174:131;11300:4;11174:131;:::i;:::-;11166:139;;10893:419;;;:::o;11318:225::-;11458:34;11454:1;11446:6;11442:14;11435:58;11527:8;11522:2;11514:6;11510:15;11503:33;11318:225;:::o;11549:366::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:419::-;12087:4;12125:2;12114:9;12110:18;12102:26;;12174:9;12168:4;12164:20;12160:1;12149:9;12145:17;12138:47;12202:131;12328:4;12202:131;:::i;:::-;12194:139;;11921:419;;;:::o;12346:223::-;12486:34;12482:1;12474:6;12470:14;12463:58;12555:6;12550:2;12542:6;12538:15;12531:31;12346:223;:::o;12575:366::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:419::-;13113:4;13151:2;13140:9;13136:18;13128:26;;13200:9;13194:4;13190:20;13186:1;13175:9;13171:17;13164:47;13228:131;13354:4;13228:131;:::i;:::-;13220:139;;12947:419;;;:::o;13372:221::-;13512:34;13508:1;13500:6;13496:14;13489:58;13581:4;13576:2;13568:6;13564:15;13557:29;13372:221;:::o;13599:366::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:419::-;14137:4;14175:2;14164:9;14160:18;14152:26;;14224:9;14218:4;14214:20;14210:1;14199:9;14195:17;14188:47;14252:131;14378:4;14252:131;:::i;:::-;14244:139;;13971:419;;;:::o;14396:224::-;14536:34;14532:1;14524:6;14520:14;14513:58;14605:7;14600:2;14592:6;14588:15;14581:32;14396:224;:::o;14626:366::-;14768:3;14789:67;14853:2;14848:3;14789:67;:::i;:::-;14782:74;;14865:93;14954:3;14865:93;:::i;:::-;14983:2;14978:3;14974:12;14967:19;;14626:366;;;:::o;14998:419::-;15164:4;15202:2;15191:9;15187:18;15179:26;;15251:9;15245:4;15241:20;15237:1;15226:9;15222:17;15215:47;15279:131;15405:4;15279:131;:::i;:::-;15271:139;;14998:419;;;:::o;15423:222::-;15563:34;15559:1;15551:6;15547:14;15540:58;15632:5;15627:2;15619:6;15615:15;15608:30;15423:222;:::o;15651:366::-;15793:3;15814:67;15878:2;15873:3;15814:67;:::i;:::-;15807:74;;15890:93;15979:3;15890:93;:::i;:::-;16008:2;16003:3;15999:12;15992:19;;15651:366;;;:::o;16023:419::-;16189:4;16227:2;16216:9;16212:18;16204:26;;16276:9;16270:4;16266:20;16262:1;16251:9;16247:17;16240:47;16304:131;16430:4;16304:131;:::i;:::-;16296:139;;16023:419;;;:::o;16448:225::-;16588:34;16584:1;16576:6;16572:14;16565:58;16657:8;16652:2;16644:6;16640:15;16633:33;16448:225;:::o;16679:366::-;16821:3;16842:67;16906:2;16901:3;16842:67;:::i;:::-;16835:74;;16918:93;17007:3;16918:93;:::i;:::-;17036:2;17031:3;17027:12;17020:19;;16679:366;;;:::o;17051:419::-;17217:4;17255:2;17244:9;17240:18;17232:26;;17304:9;17298:4;17294:20;17290:1;17279:9;17275:17;17268:47;17332:131;17458:4;17332:131;:::i;:::-;17324:139;;17051:419;;;:::o;17476:220::-;17616:34;17612:1;17604:6;17600:14;17593:58;17685:3;17680:2;17672:6;17668:15;17661:28;17476:220;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:221::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:4;18703:2;18695:6;18691:15;18684:29;18499:221;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:419::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:131;19505:4;19379:131;:::i;:::-;19371:139;;19098:419;;;:::o;19523:194::-;19563:4;19583:20;19601:1;19583:20;:::i;:::-;19578:25;;19617:20;19635:1;19617:20;:::i;:::-;19612:25;;19661:1;19658;19654:9;19646:17;;19685:1;19679:4;19676:11;19673:37;;;19690:18;;:::i;:::-;19673:37;19523:194;;;;:::o;19723:172::-;19863:24;19859:1;19851:6;19847:14;19840:48;19723:172;:::o;19901:366::-;20043:3;20064:67;20128:2;20123:3;20064:67;:::i;:::-;20057:74;;20140:93;20229:3;20140:93;:::i;:::-;20258:2;20253:3;20249:12;20242:19;;19901:366;;;:::o;20273:419::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:156::-;20838:8;20834:1;20826:6;20822:14;20815:32;20698:156;:::o;20860:365::-;21002:3;21023:66;21087:1;21082:3;21023:66;:::i;:::-;21016:73;;21098:93;21187:3;21098:93;:::i;:::-;21216:2;21211:3;21207:12;21200:19;;20860:365;;;:::o;21231:419::-;21397:4;21435:2;21424:9;21420:18;21412:26;;21484:9;21478:4;21474:20;21470:1;21459:9;21455:17;21448:47;21512:131;21638:4;21512:131;:::i;:::-;21504:139;;21231:419;;;:::o

Swarm Source

ipfs://87e11aab8719f0e875c494aef5d713ca8c0b0ab3cb62ef179d08296c1b5cf1d4
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.