ETH Price: $3,066.92 (+3.23%)
Gas: 9 Gwei

Token

Wrapped IxiCash (WIXI)
 

Overview

Max Total Supply

210,515,125.53181406 WIXI

Holders

128 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (+1.50%)

Onchain Market Cap

$17,308.55

Circulating Supply Market Cap

$684,769.00

Other Info

Token Contract (WITH 8 Decimals)

Balance
550,691.56058129 WIXI

Value
$45.28 ( ~0.0147639834233067 Eth) [0.2616%]
0x19e923a5C8E0661259402bf398ed7668908226d0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ixian is a fully scalable, decentralized platform that enables encrypted data streaming and high volume of micro-transactions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WIXI

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal 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);
    }

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

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

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




// File: wixi.sol

pragma solidity >=0.6.0 <0.8.6;



contract WIXI is ERC20, Ownable  {

    constructor() ERC20("Wrapped IxiCash", "WIXI") {
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) public onlyOwner {
        _burn(from, amount);
    }
    
    function decimals() public view virtual override returns (uint8) {
      return 8;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f57726170706564204978694361736800000000000000000000000000000000008152506040518060400160405280600481526020017f574958490000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000171565b508060049080519060200190620000af92919062000171565b5050506000620000c46200016960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000286565b600033905090565b8280546200017f9062000221565b90600052602060002090601f016020900481019282620001a35760008555620001ef565b82601f10620001be57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ee578251825591602001919060010190620001d1565b5b509050620001fe919062000202565b5090565b5b808211156200021d57600081600090555060010162000203565b5090565b600060028204905060018216806200023a57607f821691505b6020821081141562000251576200025062000257565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611e9f80620002966000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b41146102635780639dc29fac1461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611727565b60405180910390f35b61013d60048036038101906101389190611498565b6103db565b60405161014a919061170c565b60405180910390f35b61015b6103f9565b60405161016891906118c9565b60405180910390f35b61018b60048036038101906101869190611445565b610403565b604051610198919061170c565b60405180910390f35b6101a96104fb565b6040516101b691906118e4565b60405180910390f35b6101d960048036038101906101d49190611498565b610504565b6040516101e6919061170c565b60405180910390f35b61020960048036038101906102049190611498565b6105b0565b005b610225600480360381019061022091906113d8565b61063a565b60405161023291906118c9565b60405180910390f35b610243610682565b005b61024d6107bf565b60405161025a91906116f1565b60405180910390f35b61026b6107e9565b6040516102789190611727565b60405180910390f35b61029b60048036038101906102969190611498565b61087b565b005b6102b760048036038101906102b29190611498565b610905565b6040516102c4919061170c565b60405180910390f35b6102e760048036038101906102e29190611498565b6109f0565b6040516102f4919061170c565b60405180910390f35b61031760048036038101906103129190611405565b610a0e565b60405161032491906118c9565b60405180910390f35b610347600480360381019061034291906113d8565b610a95565b005b60606003805461035890611a2d565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611a2d565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610c41565b8484610c49565b6001905092915050565b6000600254905090565b6000610410848484610e14565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610c41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906117e9565b60405180910390fd5b6104ef856104e7610c41565b858403610c49565b60019150509392505050565b60006008905090565b60006105a6610511610c41565b84846001600061051f610c41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a1919061191b565b610c49565b6001905092915050565b6105b8610c41565b73ffffffffffffffffffffffffffffffffffffffff166105d66107bf565b73ffffffffffffffffffffffffffffffffffffffff161461062c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062390611809565b60405180910390fd5b610636828261108a565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068a610c41565b73ffffffffffffffffffffffffffffffffffffffff166106a86107bf565b73ffffffffffffffffffffffffffffffffffffffff16146106fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f590611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107f890611a2d565b80601f016020809104026020016040519081016040528092919081815260200182805461082490611a2d565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b610883610c41565b73ffffffffffffffffffffffffffffffffffffffff166108a16107bf565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90611809565b60405180910390fd5b61090182826111de565b5050565b60008060016000610914610c41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611889565b60405180910390fd5b6109e56109dc610c41565b85858403610c49565b600191505092915050565b6000610a046109fd610c41565b8484610e14565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9d610c41565b73ffffffffffffffffffffffffffffffffffffffff16610abb6107bf565b73ffffffffffffffffffffffffffffffffffffffff1614610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890611789565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090611869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906117a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0791906118c9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90611849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611749565b60405180910390fd5b610eff8383836113a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c906117c9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611018919061191b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107c91906118c9565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906118a9565b60405180910390fd5b611106600083836113a9565b8060026000828254611118919061191b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461116d919061191b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111d291906118c9565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590611829565b60405180910390fd5b61125a826000836113a9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790611769565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113379190611971565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161139c91906118c9565b60405180910390a3505050565b505050565b6000813590506113bd81611e3b565b92915050565b6000813590506113d281611e52565b92915050565b6000602082840312156113ee576113ed611abd565b5b60006113fc848285016113ae565b91505092915050565b6000806040838503121561141c5761141b611abd565b5b600061142a858286016113ae565b925050602061143b858286016113ae565b9150509250929050565b60008060006060848603121561145e5761145d611abd565b5b600061146c868287016113ae565b935050602061147d868287016113ae565b925050604061148e868287016113c3565b9150509250925092565b600080604083850312156114af576114ae611abd565b5b60006114bd858286016113ae565b92505060206114ce858286016113c3565b9150509250929050565b6114e1816119a5565b82525050565b6114f0816119b7565b82525050565b6000611501826118ff565b61150b818561190a565b935061151b8185602086016119fa565b61152481611ac2565b840191505092915050565b600061153c60238361190a565b915061154782611ad3565b604082019050919050565b600061155f60228361190a565b915061156a82611b22565b604082019050919050565b600061158260268361190a565b915061158d82611b71565b604082019050919050565b60006115a560228361190a565b91506115b082611bc0565b604082019050919050565b60006115c860268361190a565b91506115d382611c0f565b604082019050919050565b60006115eb60288361190a565b91506115f682611c5e565b604082019050919050565b600061160e60208361190a565b915061161982611cad565b602082019050919050565b600061163160218361190a565b915061163c82611cd6565b604082019050919050565b600061165460258361190a565b915061165f82611d25565b604082019050919050565b600061167760248361190a565b915061168282611d74565b604082019050919050565b600061169a60258361190a565b91506116a582611dc3565b604082019050919050565b60006116bd601f8361190a565b91506116c882611e12565b602082019050919050565b6116dc816119e3565b82525050565b6116eb816119ed565b82525050565b600060208201905061170660008301846114d8565b92915050565b600060208201905061172160008301846114e7565b92915050565b6000602082019050818103600083015261174181846114f6565b905092915050565b600060208201905081810360008301526117628161152f565b9050919050565b6000602082019050818103600083015261178281611552565b9050919050565b600060208201905081810360008301526117a281611575565b9050919050565b600060208201905081810360008301526117c281611598565b9050919050565b600060208201905081810360008301526117e2816115bb565b9050919050565b60006020820190508181036000830152611802816115de565b9050919050565b6000602082019050818103600083015261182281611601565b9050919050565b6000602082019050818103600083015261184281611624565b9050919050565b6000602082019050818103600083015261186281611647565b9050919050565b600060208201905081810360008301526118828161166a565b9050919050565b600060208201905081810360008301526118a28161168d565b9050919050565b600060208201905081810360008301526118c2816116b0565b9050919050565b60006020820190506118de60008301846116d3565b92915050565b60006020820190506118f960008301846116e2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611926826119e3565b9150611931836119e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561196657611965611a5f565b5b828201905092915050565b600061197c826119e3565b9150611987836119e3565b92508282101561199a57611999611a5f565b5b828203905092915050565b60006119b0826119c3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a185780820151818401526020810190506119fd565b83811115611a27576000848401525b50505050565b60006002820490506001821680611a4557607f821691505b60208210811415611a5957611a58611a8e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e44816119a5565b8114611e4f57600080fd5b50565b611e5b816119e3565b8114611e6657600080fd5b5056fea26469706673582212205e73817e5555c07d3d68cc3d2011609d4f33055275c32eb7ee4124ff1b8a442964736f6c63430008050033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b41146102635780639dc29fac1461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611727565b60405180910390f35b61013d60048036038101906101389190611498565b6103db565b60405161014a919061170c565b60405180910390f35b61015b6103f9565b60405161016891906118c9565b60405180910390f35b61018b60048036038101906101869190611445565b610403565b604051610198919061170c565b60405180910390f35b6101a96104fb565b6040516101b691906118e4565b60405180910390f35b6101d960048036038101906101d49190611498565b610504565b6040516101e6919061170c565b60405180910390f35b61020960048036038101906102049190611498565b6105b0565b005b610225600480360381019061022091906113d8565b61063a565b60405161023291906118c9565b60405180910390f35b610243610682565b005b61024d6107bf565b60405161025a91906116f1565b60405180910390f35b61026b6107e9565b6040516102789190611727565b60405180910390f35b61029b60048036038101906102969190611498565b61087b565b005b6102b760048036038101906102b29190611498565b610905565b6040516102c4919061170c565b60405180910390f35b6102e760048036038101906102e29190611498565b6109f0565b6040516102f4919061170c565b60405180910390f35b61031760048036038101906103129190611405565b610a0e565b60405161032491906118c9565b60405180910390f35b610347600480360381019061034291906113d8565b610a95565b005b60606003805461035890611a2d565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611a2d565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610c41565b8484610c49565b6001905092915050565b6000600254905090565b6000610410848484610e14565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610c41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906117e9565b60405180910390fd5b6104ef856104e7610c41565b858403610c49565b60019150509392505050565b60006008905090565b60006105a6610511610c41565b84846001600061051f610c41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a1919061191b565b610c49565b6001905092915050565b6105b8610c41565b73ffffffffffffffffffffffffffffffffffffffff166105d66107bf565b73ffffffffffffffffffffffffffffffffffffffff161461062c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062390611809565b60405180910390fd5b610636828261108a565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068a610c41565b73ffffffffffffffffffffffffffffffffffffffff166106a86107bf565b73ffffffffffffffffffffffffffffffffffffffff16146106fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f590611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107f890611a2d565b80601f016020809104026020016040519081016040528092919081815260200182805461082490611a2d565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b610883610c41565b73ffffffffffffffffffffffffffffffffffffffff166108a16107bf565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee90611809565b60405180910390fd5b61090182826111de565b5050565b60008060016000610914610c41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611889565b60405180910390fd5b6109e56109dc610c41565b85858403610c49565b600191505092915050565b6000610a046109fd610c41565b8484610e14565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9d610c41565b73ffffffffffffffffffffffffffffffffffffffff16610abb6107bf565b73ffffffffffffffffffffffffffffffffffffffff1614610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890611809565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890611789565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090611869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906117a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0791906118c9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90611849565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611749565b60405180910390fd5b610eff8383836113a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c906117c9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611018919061191b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107c91906118c9565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906118a9565b60405180910390fd5b611106600083836113a9565b8060026000828254611118919061191b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461116d919061191b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111d291906118c9565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590611829565b60405180910390fd5b61125a826000836113a9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790611769565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113379190611971565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161139c91906118c9565b60405180910390a3505050565b505050565b6000813590506113bd81611e3b565b92915050565b6000813590506113d281611e52565b92915050565b6000602082840312156113ee576113ed611abd565b5b60006113fc848285016113ae565b91505092915050565b6000806040838503121561141c5761141b611abd565b5b600061142a858286016113ae565b925050602061143b858286016113ae565b9150509250929050565b60008060006060848603121561145e5761145d611abd565b5b600061146c868287016113ae565b935050602061147d868287016113ae565b925050604061148e868287016113c3565b9150509250925092565b600080604083850312156114af576114ae611abd565b5b60006114bd858286016113ae565b92505060206114ce858286016113c3565b9150509250929050565b6114e1816119a5565b82525050565b6114f0816119b7565b82525050565b6000611501826118ff565b61150b818561190a565b935061151b8185602086016119fa565b61152481611ac2565b840191505092915050565b600061153c60238361190a565b915061154782611ad3565b604082019050919050565b600061155f60228361190a565b915061156a82611b22565b604082019050919050565b600061158260268361190a565b915061158d82611b71565b604082019050919050565b60006115a560228361190a565b91506115b082611bc0565b604082019050919050565b60006115c860268361190a565b91506115d382611c0f565b604082019050919050565b60006115eb60288361190a565b91506115f682611c5e565b604082019050919050565b600061160e60208361190a565b915061161982611cad565b602082019050919050565b600061163160218361190a565b915061163c82611cd6565b604082019050919050565b600061165460258361190a565b915061165f82611d25565b604082019050919050565b600061167760248361190a565b915061168282611d74565b604082019050919050565b600061169a60258361190a565b91506116a582611dc3565b604082019050919050565b60006116bd601f8361190a565b91506116c882611e12565b602082019050919050565b6116dc816119e3565b82525050565b6116eb816119ed565b82525050565b600060208201905061170660008301846114d8565b92915050565b600060208201905061172160008301846114e7565b92915050565b6000602082019050818103600083015261174181846114f6565b905092915050565b600060208201905081810360008301526117628161152f565b9050919050565b6000602082019050818103600083015261178281611552565b9050919050565b600060208201905081810360008301526117a281611575565b9050919050565b600060208201905081810360008301526117c281611598565b9050919050565b600060208201905081810360008301526117e2816115bb565b9050919050565b60006020820190508181036000830152611802816115de565b9050919050565b6000602082019050818103600083015261182281611601565b9050919050565b6000602082019050818103600083015261184281611624565b9050919050565b6000602082019050818103600083015261186281611647565b9050919050565b600060208201905081810360008301526118828161166a565b9050919050565b600060208201905081810360008301526118a28161168d565b9050919050565b600060208201905081810360008301526118c2816116b0565b9050919050565b60006020820190506118de60008301846116d3565b92915050565b60006020820190506118f960008301846116e2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611926826119e3565b9150611931836119e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561196657611965611a5f565b5b828201905092915050565b600061197c826119e3565b9150611987836119e3565b92508282101561199a57611999611a5f565b5b828203905092915050565b60006119b0826119c3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a185780820151818401526020810190506119fd565b83811115611a27576000848401525b50505050565b60006002820490506001821680611a4557607f821691505b60208210811415611a5957611a58611a8e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e44816119a5565b8114611e4f57600080fd5b50565b611e5b816119e3565b8114611e6657600080fd5b5056fea26469706673582212205e73817e5555c07d3d68cc3d2011609d4f33055275c32eb7ee4124ff1b8a442964736f6c63430008050033

Deployed Bytecode Sourcemap

18243:412:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9122:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11289:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10242:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11940:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18562:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12841:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18348:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10413:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2857:148;;;:::i;:::-;;2206:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9341:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18451:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13559:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10753:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10991:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3160:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9122:100;9176:13;9209:5;9202:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9122:100;:::o;11289:169::-;11372:4;11389:39;11398:12;:10;:12::i;:::-;11412:7;11421:6;11389:8;:39::i;:::-;11446:4;11439:11;;11289:169;;;;:::o;10242:108::-;10303:7;10330:12;;10323:19;;10242:108;:::o;11940:492::-;12080:4;12097:36;12107:6;12115:9;12126:6;12097:9;:36::i;:::-;12146:24;12173:11;:19;12185:6;12173:19;;;;;;;;;;;;;;;:33;12193:12;:10;:12::i;:::-;12173:33;;;;;;;;;;;;;;;;12146:60;;12245:6;12225:16;:26;;12217:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12332:57;12341:6;12349:12;:10;:12::i;:::-;12382:6;12363:16;:25;12332:8;:57::i;:::-;12420:4;12413:11;;;11940:492;;;;;:::o;18562:90::-;18620:5;18643:1;18636:8;;18562:90;:::o;12841:215::-;12929:4;12946:80;12955:12;:10;:12::i;:::-;12969:7;13015:10;12978:11;:25;12990:12;:10;:12::i;:::-;12978:25;;;;;;;;;;;;;;;:34;13004:7;12978:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12946:8;:80::i;:::-;13044:4;13037:11;;12841:215;;;;:::o;18348:95::-;2437:12;:10;:12::i;:::-;2426:23;;:7;:5;:7::i;:::-;:23;;;2418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18418:17:::1;18424:2;18428:6;18418:5;:17::i;:::-;18348:95:::0;;:::o;10413:127::-;10487:7;10514:9;:18;10524:7;10514:18;;;;;;;;;;;;;;;;10507:25;;10413:127;;;:::o;2857:148::-;2437:12;:10;:12::i;:::-;2426:23;;:7;:5;:7::i;:::-;:23;;;2418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2964:1:::1;2927:40;;2948:6;;;;;;;;;;;2927:40;;;;;;;;;;;;2995:1;2978:6;;:19;;;;;;;;;;;;;;;;;;2857:148::o:0;2206:87::-;2252:7;2279:6;;;;;;;;;;;2272:13;;2206:87;:::o;9341:104::-;9397:13;9430:7;9423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9341:104;:::o;18451:99::-;2437:12;:10;:12::i;:::-;2426:23;;:7;:5;:7::i;:::-;:23;;;2418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18523:19:::1;18529:4;18535:6;18523:5;:19::i;:::-;18451:99:::0;;:::o;13559:413::-;13652:4;13669:24;13696:11;:25;13708:12;:10;:12::i;:::-;13696:25;;;;;;;;;;;;;;;:34;13722:7;13696:34;;;;;;;;;;;;;;;;13669:61;;13769:15;13749:16;:35;;13741:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13862:67;13871:12;:10;:12::i;:::-;13885:7;13913:15;13894:16;:34;13862:8;:67::i;:::-;13960:4;13953:11;;;13559:413;;;;:::o;10753:175::-;10839:4;10856:42;10866:12;:10;:12::i;:::-;10880:9;10891:6;10856:9;:42::i;:::-;10916:4;10909:11;;10753:175;;;;:::o;10991:151::-;11080:7;11107:11;:18;11119:5;11107:18;;;;;;;;;;;;;;;:27;11126:7;11107:27;;;;;;;;;;;;;;;;11100:34;;10991:151;;;;:::o;3160:244::-;2437:12;:10;:12::i;:::-;2426:23;;:7;:5;:7::i;:::-;:23;;;2418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3269:1:::1;3249:22;;:8;:22;;;;3241:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3359:8;3330:38;;3351:6;;;;;;;;;;;3330:38;;;;;;;;;;;;3388:8;3379:6;;:17;;;;;;;;;;;;;;;;;;3160:244:::0;:::o;675:98::-;728:7;755:10;748:17;;675:98;:::o;17062:380::-;17215:1;17198:19;;:5;:19;;;;17190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17296:1;17277:21;;:7;:21;;;;17269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17380:6;17350:11;:18;17362:5;17350:18;;;;;;;;;;;;;;;:27;17369:7;17350:27;;;;;;;;;;;;;;;:36;;;;17418:7;17402:32;;17411:5;17402:32;;;17427:6;17402:32;;;;;;:::i;:::-;;;;;;;;17062:380;;;:::o;14462:674::-;14620:1;14602:20;;:6;:20;;;;14594:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14704:1;14683:23;;:9;:23;;;;14675:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14759:47;14780:6;14788:9;14799:6;14759:20;:47::i;:::-;14819:21;14843:9;:17;14853:6;14843:17;;;;;;;;;;;;;;;;14819:41;;14896:6;14879:13;:23;;14871:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15017:6;15001:13;:22;14981:9;:17;14991:6;14981:17;;;;;;;;;;;;;;;:42;;;;15069:6;15045:9;:20;15055:9;15045:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15110:9;15093:35;;15102:6;15093:35;;;15121:6;15093:35;;;;;;:::i;:::-;;;;;;;;14583:553;14462:674;;;:::o;15423:338::-;15526:1;15507:21;;:7;:21;;;;15499:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15577:49;15606:1;15610:7;15619:6;15577:20;:49::i;:::-;15655:6;15639:12;;:22;;;;;;;:::i;:::-;;;;;;;;15694:6;15672:9;:18;15682:7;15672:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15737:7;15716:37;;15733:1;15716:37;;;15746:6;15716:37;;;;;;:::i;:::-;;;;;;;;15423:338;;:::o;16094:530::-;16197:1;16178:21;;:7;:21;;;;16170:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16250:49;16271:7;16288:1;16292:6;16250:20;:49::i;:::-;16312:22;16337:9;:18;16347:7;16337:18;;;;;;;;;;;;;;;;16312:43;;16392:6;16374:14;:24;;16366:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16511:6;16494:14;:23;16473:9;:18;16483:7;16473:18;;;;;;;;;;;;;;;:44;;;;16555:6;16539:12;;:22;;;;;;;:::i;:::-;;;;;;;;16605:1;16579:37;;16588:7;16579:37;;;16609:6;16579:37;;;;;;:::i;:::-;;;;;;;;16159:465;16094:530;;:::o;18045:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7355:53;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7475:51;;:::o;7532:222::-;7625:4;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7630:124;;;;:::o;7760:210::-;7847:4;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7852:118;;;;:::o;7976:313::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;8094:195;;;;:::o;8295:419::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8466:248;;;:::o;8720:419::-;8886:4;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8891:248;;;:::o;9145:419::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9316:248;;;:::o;9570:419::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9741:248;;;:::o;9995:419::-;10161:4;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;10166:248;;;:::o;10420:419::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10591:248;;;:::o;10845:419::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;11016:248;;;:::o;11270:419::-;11436:4;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11441:248;;;:::o;11695:419::-;11861:4;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11866:248;;;:::o;12120:419::-;12286:4;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12291:248;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12716:248;;;:::o;12970:419::-;13136:4;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;13141:248;;;:::o;13395:222::-;13488:4;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13493:124;;;;:::o;13623:214::-;13712:4;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13717:120;;;;:::o;13924:99::-;13976:6;14010:5;14004:12;13994:22;;13983:40;;;:::o;14029:169::-;14113:11;14147:6;14142:3;14135:19;14187:4;14182:3;14178:14;14163:29;;14125:73;;;;:::o;14204:305::-;14244:3;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14297:20;14315:1;14297:20;:::i;:::-;14292:25;;14451:1;14383:66;14379:74;14376:1;14373:81;14370:2;;;14457:18;;:::i;:::-;14370:2;14501:1;14498;14494:9;14487:16;;14248:261;;;;:::o;14515:191::-;14555:4;14575:20;14593:1;14575:20;:::i;:::-;14570:25;;14609:20;14627:1;14609:20;:::i;:::-;14604:25;;14648:1;14645;14642:8;14639:2;;;14653:18;;:::i;:::-;14639:2;14698:1;14695;14691:9;14683:17;;14560:146;;;;:::o;14712:96::-;14749:7;14778:24;14796:5;14778:24;:::i;:::-;14767:35;;14757:51;;;:::o;14814:90::-;14848:7;14891:5;14884:13;14877:21;14866:32;;14856:48;;;:::o;14910:126::-;14947:7;14987:42;14980:5;14976:54;14965:65;;14955:81;;;:::o;15042:77::-;15079:7;15108:5;15097:16;;15087:32;;;:::o;15125:86::-;15160:7;15200:4;15193:5;15189:16;15178:27;;15168:43;;;:::o;15217:307::-;15285:1;15295:113;15309:6;15306:1;15303:13;15295:113;;;15394:1;15389:3;15385:11;15379:18;15375:1;15370:3;15366:11;15359:39;15331:2;15328:1;15324:10;15319:15;;15295:113;;;15426:6;15423:1;15420:13;15417:2;;;15506:1;15497:6;15492:3;15488:16;15481:27;15417:2;15266:258;;;;:::o;15530:320::-;15574:6;15611:1;15605:4;15601:12;15591:22;;15658:1;15652:4;15648:12;15679:18;15669:2;;15735:4;15727:6;15723:17;15713:27;;15669:2;15797;15789:6;15786:14;15766:18;15763:38;15760:2;;;15816:18;;:::i;:::-;15760:2;15581:269;;;;:::o;15856:180::-;15904:77;15901:1;15894:88;16001:4;15998:1;15991:15;16025:4;16022:1;16015:15;16042:180;16090:77;16087:1;16080:88;16187:4;16184:1;16177:15;16211:4;16208:1;16201:15;16351:117;16460:1;16457;16450:12;16474:102;16515:6;16566:2;16562:7;16557:2;16550:5;16546:14;16542:28;16532:38;;16522:54;;;:::o;16582:222::-;16722:34;16718:1;16710:6;16706:14;16699:58;16791:5;16786:2;16778:6;16774:15;16767:30;16688:116;:::o;16810:221::-;16950:34;16946:1;16938:6;16934:14;16927:58;17019:4;17014:2;17006:6;17002:15;16995:29;16916:115;:::o;17037:225::-;17177:34;17173:1;17165:6;17161:14;17154:58;17246:8;17241:2;17233:6;17229:15;17222:33;17143:119;:::o;17268:221::-;17408:34;17404:1;17396:6;17392:14;17385:58;17477:4;17472:2;17464:6;17460:15;17453:29;17374:115;:::o;17495:225::-;17635:34;17631:1;17623:6;17619:14;17612:58;17704:8;17699:2;17691:6;17687:15;17680:33;17601:119;:::o;17726:227::-;17866:34;17862:1;17854:6;17850:14;17843:58;17935:10;17930:2;17922:6;17918:15;17911:35;17832:121;:::o;17959:182::-;18099:34;18095:1;18087:6;18083:14;18076:58;18065:76;:::o;18147:220::-;18287:34;18283:1;18275:6;18271:14;18264:58;18356:3;18351:2;18343:6;18339:15;18332:28;18253:114;:::o;18373:224::-;18513:34;18509:1;18501:6;18497:14;18490:58;18582:7;18577:2;18569:6;18565:15;18558:32;18479:118;:::o;18603:223::-;18743:34;18739:1;18731:6;18727:14;18720:58;18812:6;18807:2;18799:6;18795:15;18788:31;18709:117;:::o;18832:224::-;18972:34;18968:1;18960:6;18956:14;18949:58;19041:7;19036:2;19028:6;19024:15;19017:32;18938:118;:::o;19062:181::-;19202:33;19198:1;19190:6;19186:14;19179:57;19168:75;:::o;19249:122::-;19322:24;19340:5;19322:24;:::i;:::-;19315:5;19312:35;19302:2;;19361:1;19358;19351:12;19302:2;19292:79;:::o;19377:122::-;19450:24;19468:5;19450:24;:::i;:::-;19443:5;19440:35;19430:2;;19489:1;19486;19479:12;19430:2;19420:79;:::o

Swarm Source

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