ETH Price: $3,399.21 (-0.10%)
Gas: 22 Gwei

Token

Kuma Inu (KUMA)
 

Overview

Max Total Supply

1,000,000,000,000,000 KUMA

Holders

4,382 ( -0.322%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,196,313,028.30685159901619024 KUMA

Value
$0.00
0x6f73ae14657ca017e7220ef7a730f2467c5ddd44
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Token migration announcement. Kuma Inu token contract has migrated to 0x48c276e8d03813224bb1e55f953adb6d02fd3e02

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KumaToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-05-12
*/

/**
 * Website: https://kumatoken.com
 * Telegram: https://t.me/KumaInuOfficial
*/

// File: node_modules\@openzeppelin\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: node_modules\@openzeppelin\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: node_modules\@openzeppelin\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;
    }
}

/**
 * @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 {
    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 = msg.sender;
        _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() == msg.sender, "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: @openzeppelin\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 KumaToken is Context, IERC20, IERC20Metadata, Ownable {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _maxTxPercent = 1000;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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 () {
        _name = "Kuma Inu";
        _symbol = "KUMA";
        _mint(msg.sender, 1000000000000000 * (10 ** uint256(decimals())));
    }

    /**
     * @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");
        _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");
        _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");
        if(sender != owner() && recipient != owner()) {
            require(amount <= _totalSupply * _maxTxPercent / 1000, "Transfer amount exceeds the max transfer amount");
        }

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _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:
     *
     * - `to` 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");
        _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 { }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxPercent = maxTxPercent;
    }
}

Contract Security Audit

Contract ABI

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

60806040526103e86004553480156200001757600080fd5b506000339050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600881526020017f4b756d6120496e75000000000000000000000000000000000000000000000000815250600590805190602001906200010692919062000315565b506040518060400160405280600481526020017f4b554d4100000000000000000000000000000000000000000000000000000000815250600690805190602001906200015492919062000315565b506200019b336200016a620001a160201b60201c565b60ff16600a6200017b919062000520565b66038d7ea4c680006200018f91906200065d565b620001aa60201b60201c565b62000769565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200021d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002149062000418565b60405180910390fd5b62000231600083836200031060201b60201c565b806003600082825462000245919062000468565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200029d919062000468565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030491906200043a565b60405180910390a35050565b505050565b8280546200032390620006c8565b90600052602060002090601f01602090048101928262000347576000855562000393565b82601f106200036257805160ff191683800117855562000393565b8280016001018555821562000393579182015b828111156200039257825182559160200191906001019062000375565b5b509050620003a29190620003a6565b5090565b5b80821115620003c1576000816000905550600101620003a7565b5090565b6000620003d4601f8362000457565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200041281620006be565b82525050565b600060208201905081810360008301526200043381620003c5565b9050919050565b600060208201905062000451600083018462000407565b92915050565b600082825260208201905092915050565b60006200047582620006be565b91506200048283620006be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ba57620004b9620006fe565b5b828201905092915050565b6000808291508390505b60018511156200051757808604811115620004ef57620004ee620006fe565b5b6001851615620004ff5780820291505b80810290506200050f856200075c565b9450620004cf565b94509492505050565b60006200052d82620006be565b91506200053a83620006be565b9250620005697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000571565b905092915050565b60008262000583576001905062000656565b8162000593576000905062000656565b8160018114620005ac5760028114620005b757620005ed565b600191505062000656565b60ff841115620005cc57620005cb620006fe565b5b8360020a915084821115620005e657620005e5620006fe565b5b5062000656565b5060208310610133831016604e8410600b8410161715620006275782820a905083811115620006215762000620620006fe565b5b62000656565b620006368484846001620004c5565b9250905081840481111562000650576200064f620006fe565b5b81810290505b9392505050565b60006200066a82620006be565b91506200067783620006be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006b357620006b2620006fe565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620006e157607f821691505b60208210811415620006f857620006f76200072d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611b0180620007796000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063d543dbeb146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061167c565b60405180910390f35b610132600480360381019061012d9190611196565b6103b4565b60405161013f9190611661565b60405180910390f35b6101506103d2565b60405161015d91906117de565b60405180910390f35b610180600480360381019061017b9190611147565b6103dc565b60405161018d9190611661565b60405180910390f35b61019e6104dd565b6040516101ab91906117f9565b60405180910390f35b6101ce60048036038101906101c99190611196565b6104e6565b6040516101db9190611661565b60405180910390f35b6101fe60048036038101906101f991906110e2565b610592565b60405161020b91906117de565b60405180910390f35b61021c6105db565b005b61022661070e565b6040516102339190611646565b60405180910390f35b610244610737565b604051610251919061167c565b60405180910390f35b610274600480360381019061026f9190611196565b6107c9565b6040516102819190611661565b60405180910390f35b6102a4600480360381019061029f9190611196565b6108bd565b6040516102b19190611661565b60405180910390f35b6102d460048036038101906102cf91906111d2565b6108db565b005b6102f060048036038101906102eb919061110b565b61095a565b6040516102fd91906117de565b60405180910390f35b610320600480360381019061031b91906110e2565b6109e1565b005b606060058054610331906119cd565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906119cd565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610b83565b8484610b8b565b6001905092915050565b6000600354905090565b60006103e9848484610d56565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610b83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab9061173e565b60405180910390fd5b6104d1856104c0610b83565b85846104cc9190611911565b610b8b565b60019150509392505050565b60006012905090565b60006105886104f3610b83565b848460026000610501610b83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105839190611830565b610b8b565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105fa61070e565b73ffffffffffffffffffffffffffffffffffffffff1614610650576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106479061175e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610746906119cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610772906119cd565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b600080600260006107d8610b83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c906117be565b60405180910390fd5b6108b26108a0610b83565b8585846108ad9190611911565b610b8b565b600191505092915050565b60006108d16108ca610b83565b8484610d56565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166108fa61070e565b73ffffffffffffffffffffffffffffffffffffffff1614610950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109479061175e565b60405180910390fd5b8060048190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16610a0061070e565b73ffffffffffffffffffffffffffffffffffffffff1614610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061175e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906116be565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf29061179e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c62906116de565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d4991906117de565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd9061177e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061169e565b60405180910390fd5b610e3e61070e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610eac5750610e7c61070e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610f11576103e8600454600354610ec491906118b7565b610ece9190611886565b811115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f07906116fe565b60405180910390fd5b5b610f1c8383836110b3565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a9061171e565b60405180910390fd5b8181610faf9190611911565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110419190611830565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110a591906117de565b60405180910390a350505050565b505050565b6000813590506110c781611a9d565b92915050565b6000813590506110dc81611ab4565b92915050565b6000602082840312156110f457600080fd5b6000611102848285016110b8565b91505092915050565b6000806040838503121561111e57600080fd5b600061112c858286016110b8565b925050602061113d858286016110b8565b9150509250929050565b60008060006060848603121561115c57600080fd5b600061116a868287016110b8565b935050602061117b868287016110b8565b925050604061118c868287016110cd565b9150509250925092565b600080604083850312156111a957600080fd5b60006111b7858286016110b8565b92505060206111c8858286016110cd565b9150509250929050565b6000602082840312156111e457600080fd5b60006111f2848285016110cd565b91505092915050565b61120481611945565b82525050565b61121381611957565b82525050565b600061122482611814565b61122e818561181f565b935061123e81856020860161199a565b61124781611a8c565b840191505092915050565b600061125f60238361181f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112c560268361181f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061132b60228361181f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611391602f8361181f565b91507f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008301527f7472616e7366657220616d6f756e7400000000000000000000000000000000006020830152604082019050919050565b60006113f760268361181f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061145d60288361181f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c360208361181f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061150360258361181f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061156960248361181f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115cf60258361181f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61163181611983565b82525050565b6116408161198d565b82525050565b600060208201905061165b60008301846111fb565b92915050565b6000602082019050611676600083018461120a565b92915050565b600060208201905081810360008301526116968184611219565b905092915050565b600060208201905081810360008301526116b781611252565b9050919050565b600060208201905081810360008301526116d7816112b8565b9050919050565b600060208201905081810360008301526116f78161131e565b9050919050565b6000602082019050818103600083015261171781611384565b9050919050565b60006020820190508181036000830152611737816113ea565b9050919050565b6000602082019050818103600083015261175781611450565b9050919050565b60006020820190508181036000830152611777816114b6565b9050919050565b60006020820190508181036000830152611797816114f6565b9050919050565b600060208201905081810360008301526117b78161155c565b9050919050565b600060208201905081810360008301526117d7816115c2565b9050919050565b60006020820190506117f36000830184611628565b92915050565b600060208201905061180e6000830184611637565b92915050565b600081519050919050565b600082825260208201905092915050565b600061183b82611983565b915061184683611983565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561187b5761187a6119ff565b5b828201905092915050565b600061189182611983565b915061189c83611983565b9250826118ac576118ab611a2e565b5b828204905092915050565b60006118c282611983565b91506118cd83611983565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611906576119056119ff565b5b828202905092915050565b600061191c82611983565b915061192783611983565b92508282101561193a576119396119ff565b5b828203905092915050565b600061195082611963565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119b857808201518184015260208101905061199d565b838111156119c7576000848401525b50505050565b600060028204905060018216806119e557607f821691505b602082108114156119f9576119f8611a5d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611aa681611945565b8114611ab157600080fd5b50565b611abd81611983565b8114611ac857600080fd5b5056fea26469706673582212207dfe79d94765c90009b581563bb9b1272dd234d1677d5808fecafbac7f3043d464736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063d543dbeb146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061167c565b60405180910390f35b610132600480360381019061012d9190611196565b6103b4565b60405161013f9190611661565b60405180910390f35b6101506103d2565b60405161015d91906117de565b60405180910390f35b610180600480360381019061017b9190611147565b6103dc565b60405161018d9190611661565b60405180910390f35b61019e6104dd565b6040516101ab91906117f9565b60405180910390f35b6101ce60048036038101906101c99190611196565b6104e6565b6040516101db9190611661565b60405180910390f35b6101fe60048036038101906101f991906110e2565b610592565b60405161020b91906117de565b60405180910390f35b61021c6105db565b005b61022661070e565b6040516102339190611646565b60405180910390f35b610244610737565b604051610251919061167c565b60405180910390f35b610274600480360381019061026f9190611196565b6107c9565b6040516102819190611661565b60405180910390f35b6102a4600480360381019061029f9190611196565b6108bd565b6040516102b19190611661565b60405180910390f35b6102d460048036038101906102cf91906111d2565b6108db565b005b6102f060048036038101906102eb919061110b565b61095a565b6040516102fd91906117de565b60405180910390f35b610320600480360381019061031b91906110e2565b6109e1565b005b606060058054610331906119cd565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906119cd565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610b83565b8484610b8b565b6001905092915050565b6000600354905090565b60006103e9848484610d56565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610b83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab9061173e565b60405180910390fd5b6104d1856104c0610b83565b85846104cc9190611911565b610b8b565b60019150509392505050565b60006012905090565b60006105886104f3610b83565b848460026000610501610b83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105839190611830565b610b8b565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105fa61070e565b73ffffffffffffffffffffffffffffffffffffffff1614610650576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106479061175e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610746906119cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610772906119cd565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b600080600260006107d8610b83565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c906117be565b60405180910390fd5b6108b26108a0610b83565b8585846108ad9190611911565b610b8b565b600191505092915050565b60006108d16108ca610b83565b8484610d56565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166108fa61070e565b73ffffffffffffffffffffffffffffffffffffffff1614610950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109479061175e565b60405180910390fd5b8060048190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16610a0061070e565b73ffffffffffffffffffffffffffffffffffffffff1614610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061175e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906116be565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf29061179e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c62906116de565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d4991906117de565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd9061177e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061169e565b60405180910390fd5b610e3e61070e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610eac5750610e7c61070e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610f11576103e8600454600354610ec491906118b7565b610ece9190611886565b811115610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f07906116fe565b60405180910390fd5b5b610f1c8383836110b3565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a9061171e565b60405180910390fd5b8181610faf9190611911565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110419190611830565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110a591906117de565b60405180910390a350505050565b505050565b6000813590506110c781611a9d565b92915050565b6000813590506110dc81611ab4565b92915050565b6000602082840312156110f457600080fd5b6000611102848285016110b8565b91505092915050565b6000806040838503121561111e57600080fd5b600061112c858286016110b8565b925050602061113d858286016110b8565b9150509250929050565b60008060006060848603121561115c57600080fd5b600061116a868287016110b8565b935050602061117b868287016110b8565b925050604061118c868287016110cd565b9150509250925092565b600080604083850312156111a957600080fd5b60006111b7858286016110b8565b92505060206111c8858286016110cd565b9150509250929050565b6000602082840312156111e457600080fd5b60006111f2848285016110cd565b91505092915050565b61120481611945565b82525050565b61121381611957565b82525050565b600061122482611814565b61122e818561181f565b935061123e81856020860161199a565b61124781611a8c565b840191505092915050565b600061125f60238361181f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112c560268361181f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061132b60228361181f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611391602f8361181f565b91507f5472616e7366657220616d6f756e74206578636565647320746865206d61782060008301527f7472616e7366657220616d6f756e7400000000000000000000000000000000006020830152604082019050919050565b60006113f760268361181f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061145d60288361181f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c360208361181f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061150360258361181f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061156960248361181f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115cf60258361181f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61163181611983565b82525050565b6116408161198d565b82525050565b600060208201905061165b60008301846111fb565b92915050565b6000602082019050611676600083018461120a565b92915050565b600060208201905081810360008301526116968184611219565b905092915050565b600060208201905081810360008301526116b781611252565b9050919050565b600060208201905081810360008301526116d7816112b8565b9050919050565b600060208201905081810360008301526116f78161131e565b9050919050565b6000602082019050818103600083015261171781611384565b9050919050565b60006020820190508181036000830152611737816113ea565b9050919050565b6000602082019050818103600083015261175781611450565b9050919050565b60006020820190508181036000830152611777816114b6565b9050919050565b60006020820190508181036000830152611797816114f6565b9050919050565b600060208201905081810360008301526117b78161155c565b9050919050565b600060208201905081810360008301526117d7816115c2565b9050919050565b60006020820190506117f36000830184611628565b92915050565b600060208201905061180e6000830184611637565b92915050565b600081519050919050565b600082825260208201905092915050565b600061183b82611983565b915061184683611983565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561187b5761187a6119ff565b5b828201905092915050565b600061189182611983565b915061189c83611983565b9250826118ac576118ab611a2e565b5b828204905092915050565b60006118c282611983565b91506118cd83611983565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611906576119056119ff565b5b828202905092915050565b600061191c82611983565b915061192783611983565b92508282101561193a576119396119ff565b5b828203905092915050565b600061195082611963565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119b857808201518184015260208101905061199d565b838111156119c7576000848401525b50505050565b600060028204905060018216806119e557607f821691505b602082108114156119f9576119f8611a5d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611aa681611945565b8114611ab157600080fd5b50565b611abd81611983565b8114611ac857600080fd5b5056fea26469706673582212207dfe79d94765c90009b581563bb9b1272dd234d1677d5808fecafbac7f3043d464736f6c63430008000033

Deployed Bytecode Sourcemap

8037:9957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8914:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11081:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10034:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11732:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9876:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12563:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10205:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6203:148;;;:::i;:::-;;5554:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9133:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13281:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10545:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17878:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10783:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6506:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8914:100;8968:13;9001:5;8994:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8914:100;:::o;11081:169::-;11164:4;11181:39;11190:12;:10;:12::i;:::-;11204:7;11213:6;11181:8;:39::i;:::-;11238:4;11231:11;;11081:169;;;;:::o;10034:108::-;10095:7;10122:12;;10115:19;;10034:108;:::o;11732:422::-;11838:4;11855:36;11865:6;11873:9;11884:6;11855:9;:36::i;:::-;11904:24;11931:11;:19;11943:6;11931:19;;;;;;;;;;;;;;;:33;11951:12;:10;:12::i;:::-;11931:33;;;;;;;;;;;;;;;;11904:60;;12003:6;11983:16;:26;;11975:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12065:57;12074:6;12082:12;:10;:12::i;:::-;12115:6;12096:16;:25;;;;:::i;:::-;12065:8;:57::i;:::-;12142:4;12135:11;;;11732:422;;;;;:::o;9876:93::-;9934:5;9959:2;9952:9;;9876:93;:::o;12563:215::-;12651:4;12668:80;12677:12;:10;:12::i;:::-;12691:7;12737:10;12700:11;:25;12712:12;:10;:12::i;:::-;12700:25;;;;;;;;;;;;;;;:34;12726:7;12700:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12668:8;:80::i;:::-;12766:4;12759:11;;12563:215;;;;:::o;10205:127::-;10279:7;10306:9;:18;10316:7;10306:18;;;;;;;;;;;;;;;;10299:25;;10205:127;;;:::o;6203:148::-;5785:10;5774:21;;:7;:5;:7::i;:::-;:21;;;5766:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6310:1:::1;6273:40;;6294:6;::::0;::::1;;;;;;;;6273:40;;;;;;;;;;;;6341:1;6324:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;6203:148::o:0;5554:87::-;5600:7;5627:6;;;;;;;;;;;5620:13;;5554:87;:::o;9133:104::-;9189:13;9222:7;9215:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133:104;:::o;13281:377::-;13374:4;13391:24;13418:11;:25;13430:12;:10;:12::i;:::-;13418:25;;;;;;;;;;;;;;;:34;13444:7;13418:34;;;;;;;;;;;;;;;;13391:61;;13491:15;13471:16;:35;;13463:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13559:67;13568:12;:10;:12::i;:::-;13582:7;13610:15;13591:16;:34;;;;:::i;:::-;13559:8;:67::i;:::-;13646:4;13639:11;;;13281:377;;;;:::o;10545:175::-;10631:4;10648:42;10658:12;:10;:12::i;:::-;10672:9;10683:6;10648:9;:42::i;:::-;10708:4;10701:11;;10545:175;;;;:::o;17878:113::-;5785:10;5774:21;;:7;:5;:7::i;:::-;:21;;;5766:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;17971:12:::1;17955:13;:28;;;;17878:113:::0;:::o;10783:151::-;10872:7;10899:11;:18;10911:5;10899:18;;;;;;;;;;;;;;;:27;10918:7;10899:27;;;;;;;;;;;;;;;;10892:34;;10783:151;;;;:::o;6506:244::-;5785:10;5774:21;;:7;:5;:7::i;:::-;:21;;;5766:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6615:1:::1;6595:22;;:8;:22;;;;6587:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6705:8;6676:38;;6697:6;::::0;::::1;;;;;;;;6676:38;;;;;;;;;;;;6734:8;6725:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;6506:244:::0;:::o;4212:98::-;4265:7;4292:10;4285:17;;4212:98;:::o;16825:346::-;16944:1;16927:19;;:5;:19;;;;16919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17025:1;17006:21;;:7;:21;;;;16998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17109:6;17079:11;:18;17091:5;17079:18;;;;;;;;;;;;;;;:27;17098:7;17079:27;;;;;;;;;;;;;;;:36;;;;17147:7;17131:32;;17140:5;17131:32;;;17156:6;17131:32;;;;;;:::i;:::-;;;;;;;;16825:346;;;:::o;14148:792::-;14272:1;14254:20;;:6;:20;;;;14246:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14356:1;14335:23;;:9;:23;;;;14327:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14422:7;:5;:7::i;:::-;14412:17;;:6;:17;;;;:41;;;;;14446:7;:5;:7::i;:::-;14433:20;;:9;:20;;;;14412:41;14409:178;;;14519:4;14503:13;;14488:12;;:28;;;;:::i;:::-;:35;;;;:::i;:::-;14478:6;:45;;14470:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;14409:178;14599:47;14620:6;14628:9;14639:6;14599:20;:47::i;:::-;14659:21;14683:9;:17;14693:6;14683:17;;;;;;;;;;;;;;;;14659:41;;14736:6;14719:13;:23;;14711:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14832:6;14816:13;:22;;;;:::i;:::-;14796:9;:17;14806:6;14796:17;;;;;;;;;;;;;;;:42;;;;14873:6;14849:9;:20;14859:9;14849:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14914:9;14897:35;;14906:6;14897:35;;;14925:6;14897:35;;;;;;:::i;:::-;;;;;;;;14148:792;;;;:::o;17774:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::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::-;;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:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:370::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:8;3520:2;3515:3;3511:12;3504:30;3560:2;3555:3;3551:12;3544:19;;3345:224;;;:::o;3575:366::-;;3738:67;3802:2;3797:3;3738:67;:::i;:::-;3731:74;;3835:34;3831:1;3826:3;3822:11;3815:55;3901:4;3896:2;3891:3;3887:12;3880:26;3932:2;3927:3;3923:12;3916:19;;3721:220;;;:::o;3947:379::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:17;4268:2;4263:3;4259:12;4252:39;4317:2;4312:3;4308:12;4301:19;;4093:233;;;:::o;4332:370::-;;4495:67;4559:2;4554:3;4495:67;:::i;:::-;4488:74;;4592:34;4588:1;4583:3;4579:11;4572:55;4658:8;4653:2;4648:3;4644:12;4637:30;4693:2;4688:3;4684:12;4677:19;;4478:224;;;:::o;4708:372::-;;4871:67;4935:2;4930:3;4871:67;:::i;:::-;4864:74;;4968:34;4964:1;4959:3;4955:11;4948:55;5034:10;5029:2;5024:3;5020:12;5013:32;5071:2;5066:3;5062:12;5055:19;;4854:226;;;:::o;5086:330::-;;5249:67;5313:2;5308:3;5249:67;:::i;:::-;5242:74;;5346:34;5342:1;5337:3;5333:11;5326:55;5407:2;5402:3;5398:12;5391:19;;5232:184;;;:::o;5422:369::-;;5585:67;5649:2;5644:3;5585:67;:::i;:::-;5578:74;;5682:34;5678:1;5673:3;5669:11;5662:55;5748:7;5743:2;5738:3;5734:12;5727:29;5782:2;5777:3;5773:12;5766:19;;5568:223;;;:::o;5797:368::-;;5960:67;6024:2;6019:3;5960:67;:::i;:::-;5953:74;;6057:34;6053:1;6048:3;6044:11;6037:55;6123:6;6118:2;6113:3;6109:12;6102:28;6156:2;6151:3;6147:12;6140:19;;5943:222;;;:::o;6171:369::-;;6334:67;6398:2;6393:3;6334:67;:::i;:::-;6327:74;;6431:34;6427:1;6422:3;6418:11;6411:55;6497:7;6492:2;6487:3;6483:12;6476:29;6531:2;6526:3;6522:12;6515:19;;6317:223;;;:::o;6546:118::-;6633:24;6651:5;6633:24;:::i;:::-;6628:3;6621:37;6611:53;;:::o;6670:112::-;6753:22;6769:5;6753:22;:::i;:::-;6748:3;6741:35;6731:51;;:::o;6788:222::-;;6919:2;6908:9;6904:18;6896:26;;6932:71;7000:1;6989:9;6985:17;6976:6;6932:71;:::i;:::-;6886:124;;;;:::o;7016:210::-;;7141:2;7130:9;7126:18;7118:26;;7154:65;7216:1;7205:9;7201:17;7192:6;7154:65;:::i;:::-;7108:118;;;;:::o;7232:313::-;;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:78;7533:4;7524:6;7460:78;:::i;:::-;7452:86;;7350:195;;;;:::o;7551:419::-;;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:131;7958:4;7832:131;:::i;:::-;7824:139;;7722:248;;;:::o;7976:419::-;;8180:2;8169:9;8165:18;8157:26;;8229:9;8223:4;8219:20;8215:1;8204:9;8200:17;8193:47;8257:131;8383:4;8257:131;:::i;:::-;8249:139;;8147:248;;;:::o;8401:419::-;;8605:2;8594:9;8590:18;8582:26;;8654:9;8648:4;8644:20;8640:1;8629:9;8625:17;8618:47;8682:131;8808:4;8682:131;:::i;:::-;8674:139;;8572:248;;;:::o;8826:419::-;;9030:2;9019:9;9015:18;9007:26;;9079:9;9073:4;9069:20;9065:1;9054:9;9050:17;9043:47;9107:131;9233:4;9107:131;:::i;:::-;9099:139;;8997:248;;;:::o;9251:419::-;;9455:2;9444:9;9440:18;9432:26;;9504:9;9498:4;9494:20;9490:1;9479:9;9475:17;9468:47;9532:131;9658:4;9532:131;:::i;:::-;9524:139;;9422:248;;;:::o;9676:419::-;;9880:2;9869:9;9865:18;9857:26;;9929:9;9923:4;9919:20;9915:1;9904:9;9900:17;9893:47;9957:131;10083:4;9957:131;:::i;:::-;9949:139;;9847:248;;;:::o;10101:419::-;;10305:2;10294:9;10290:18;10282:26;;10354:9;10348:4;10344:20;10340:1;10329:9;10325:17;10318:47;10382:131;10508:4;10382:131;:::i;:::-;10374:139;;10272:248;;;:::o;10526:419::-;;10730:2;10719:9;10715:18;10707:26;;10779:9;10773:4;10769:20;10765:1;10754:9;10750:17;10743:47;10807:131;10933:4;10807:131;:::i;:::-;10799:139;;10697:248;;;:::o;10951:419::-;;11155:2;11144:9;11140:18;11132:26;;11204:9;11198:4;11194:20;11190:1;11179:9;11175:17;11168:47;11232:131;11358:4;11232:131;:::i;:::-;11224:139;;11122:248;;;:::o;11376:419::-;;11580:2;11569:9;11565:18;11557:26;;11629:9;11623:4;11619:20;11615:1;11604:9;11600:17;11593:47;11657:131;11783:4;11657:131;:::i;:::-;11649:139;;11547:248;;;:::o;11801:222::-;;11932:2;11921:9;11917:18;11909:26;;11945:71;12013:1;12002:9;11998:17;11989:6;11945:71;:::i;:::-;11899:124;;;;:::o;12029:214::-;;12156:2;12145:9;12141:18;12133:26;;12169:67;12233:1;12222:9;12218:17;12209:6;12169:67;:::i;:::-;12123:120;;;;:::o;12249:99::-;;12335:5;12329:12;12319:22;;12308:40;;;:::o;12354:169::-;;12472:6;12467:3;12460:19;12512:4;12507:3;12503:14;12488:29;;12450:73;;;;:::o;12529:305::-;;12588:20;12606:1;12588:20;:::i;:::-;12583:25;;12622:20;12640:1;12622:20;:::i;:::-;12617:25;;12776:1;12708:66;12704:74;12701:1;12698:81;12695:2;;;12782:18;;:::i;:::-;12695:2;12826:1;12823;12819:9;12812:16;;12573:261;;;;:::o;12840:185::-;;12897:20;12915:1;12897:20;:::i;:::-;12892:25;;12931:20;12949:1;12931:20;:::i;:::-;12926:25;;12970:1;12960:2;;12975:18;;:::i;:::-;12960:2;13017:1;13014;13010:9;13005:14;;12882:143;;;;:::o;13031:348::-;;13094:20;13112:1;13094:20;:::i;:::-;13089:25;;13128:20;13146:1;13128:20;:::i;:::-;13123:25;;13316:1;13248:66;13244:74;13241:1;13238:81;13233:1;13226:9;13219:17;13215:105;13212:2;;;13323:18;;:::i;:::-;13212:2;13371:1;13368;13364:9;13353:20;;13079:300;;;;:::o;13385:191::-;;13445:20;13463:1;13445:20;:::i;:::-;13440:25;;13479:20;13497:1;13479:20;:::i;:::-;13474:25;;13518:1;13515;13512:8;13509:2;;;13523:18;;:::i;:::-;13509:2;13568:1;13565;13561:9;13553:17;;13430:146;;;;:::o;13582:96::-;;13648:24;13666:5;13648:24;:::i;:::-;13637:35;;13627:51;;;:::o;13684:90::-;;13761:5;13754:13;13747:21;13736:32;;13726:48;;;:::o;13780:126::-;;13857:42;13850:5;13846:54;13835:65;;13825:81;;;:::o;13912:77::-;;13978:5;13967:16;;13957:32;;;:::o;13995:86::-;;14070:4;14063:5;14059:16;14048:27;;14038:43;;;:::o;14087:307::-;14155:1;14165:113;14179:6;14176:1;14173:13;14165:113;;;14264:1;14259:3;14255:11;14249:18;14245:1;14240:3;14236:11;14229:39;14201:2;14198:1;14194:10;14189:15;;14165:113;;;14296:6;14293:1;14290:13;14287:2;;;14376:1;14367:6;14362:3;14358:16;14351:27;14287:2;14136:258;;;;:::o;14400:320::-;;14481:1;14475:4;14471:12;14461:22;;14528:1;14522:4;14518:12;14549:18;14539:2;;14605:4;14597:6;14593:17;14583:27;;14539:2;14667;14659:6;14656:14;14636:18;14633:38;14630:2;;;14686:18;;:::i;:::-;14630:2;14451:269;;;;:::o;14726:180::-;14774:77;14771:1;14764:88;14871:4;14868:1;14861:15;14895:4;14892:1;14885:15;14912:180;14960:77;14957:1;14950:88;15057:4;15054:1;15047:15;15081:4;15078:1;15071:15;15098:180;15146:77;15143:1;15136:88;15243:4;15240:1;15233:15;15267:4;15264:1;15257:15;15284:102;;15376:2;15372:7;15367:2;15360:5;15356:14;15352:28;15342:38;;15332:54;;;:::o;15392:122::-;15465:24;15483:5;15465:24;:::i;:::-;15458:5;15455:35;15445:2;;15504:1;15501;15494:12;15445:2;15435:79;:::o;15520:122::-;15593:24;15611:5;15593:24;:::i;:::-;15586:5;15583:35;15573:2;;15632:1;15629;15622:12;15573:2;15563:79;:::o

Swarm Source

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