ETH Price: $2,637.69 (+6.22%)
Gas: 4 Gwei

Token

Ninja Inu (NJINU)
 

Overview

Max Total Supply

100,000,000,000 NJINU

Holders

183

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 NJINU

Value
$0.00
0x9059b7c20390161af7a8fd2aac21f1b9ac7b22be
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NinjaInu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-16
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: @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 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 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 (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");
        _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");

        _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 { }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        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: contracts/NinjaInu.sol

pragma solidity ^0.8.0;



contract NinjaInu is ERC20, Ownable {
    constructor() ERC20("Ninja Inu", "NJINU") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }

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

    function renounceOwnership() public override onlyOwner {
    }
}

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":[{"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4e696e6a6120496e7500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e4a494e5500000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000325565b508060049080519060200190620000af92919062000325565b5050506000620000c4620001aa60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001a43362000178620001b260201b60201c565b600a62000186919062000515565b64174876e80062000198919062000652565b620001bb60201b60201c565b62000794565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000225906200040d565b60405180910390fd5b62000242600083836200032060201b60201c565b80600260008282546200025691906200045d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ad91906200045d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031491906200042f565b60405180910390a35050565b505050565b8280546200033390620006ca565b90600052602060002090601f016020900481019282620003575760008555620003a3565b82601f106200037257805160ff1916838001178555620003a3565b82800160010185558215620003a3579182015b82811115620003a257825182559160200191906001019062000385565b5b509050620003b29190620003b6565b5090565b5b80821115620003d1576000816000905550600101620003b7565b5090565b6000620003e4601f836200044c565b9150620003f1826200076b565b602082019050919050565b6200040781620006b3565b82525050565b600060208201905081810360008301526200042881620003d5565b9050919050565b6000602082019050620004466000830184620003fc565b92915050565b600082825260208201905092915050565b60006200046a82620006b3565b91506200047783620006b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004af57620004ae62000700565b5b828201905092915050565b6000808291508390505b60018511156200050c57808604811115620004e457620004e362000700565b5b6001851615620004f45780820291505b808102905062000504856200075e565b9450620004c4565b94509492505050565b60006200052282620006b3565b91506200052f83620006bd565b92506200055e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000566565b905092915050565b6000826200057857600190506200064b565b816200058857600090506200064b565b8160018114620005a15760028114620005ac57620005e2565b60019150506200064b565b60ff841115620005c157620005c062000700565b5b8360020a915084821115620005db57620005da62000700565b5b506200064b565b5060208310610133831016604e8410600b84101617156200061c5782820a90508381111562000616576200061562000700565b5b6200064b565b6200062b8484846001620004ba565b9250905081840481111562000645576200064462000700565b5b81810290505b9392505050565b60006200065f82620006b3565b91506200066c83620006b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006a857620006a762000700565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006e357607f821691505b60208210811415620006fa57620006f96200072f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a4680620007a46000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906113b1565b60405180910390f35b610132600480360381019061012d919061116c565b6103b4565b60405161013f9190611396565b60405180910390f35b6101506103d2565b60405161015d9190611513565b60405180910390f35b610180600480360381019061017b919061111d565b6103dc565b60405161018d9190611396565b60405180910390f35b61019e6104dd565b6040516101ab919061152e565b60405180910390f35b6101ce60048036038101906101c9919061116c565b6104e6565b6040516101db9190611396565b60405180910390f35b6101fe60048036038101906101f9919061116c565b610592565b005b61021a600480360381019061021591906110b8565b61061c565b6040516102279190611513565b60405180910390f35b610238610664565b005b6102426106e2565b60405161024f919061137b565b60405180910390f35b61026061070c565b60405161026d91906113b1565b60405180910390f35b610290600480360381019061028b919061116c565b61079e565b60405161029d9190611396565b60405180910390f35b6102c060048036038101906102bb919061116c565b610892565b6040516102cd9190611396565b60405180910390f35b6102f060048036038101906102eb91906110e1565b6108b0565b6040516102fd9190611513565b60405180910390f35b610320600480360381019061031b91906110b8565b610937565b005b60606003805461033190611677565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611677565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610ae3565b8484610aeb565b6001905092915050565b6000600254905090565b60006103e9848484610cb6565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610ae3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab90611453565b60405180910390fd5b6104d1856104c0610ae3565b85846104cc91906115bb565b610aeb565b60019150509392505050565b60006012905090565b60006105886104f3610ae3565b848460016000610501610ae3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105839190611565565b610aeb565b6001905092915050565b61059a610ae3565b73ffffffffffffffffffffffffffffffffffffffff166105b86106e2565b73ffffffffffffffffffffffffffffffffffffffff161461060e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060590611473565b60405180910390fd5b6106188282610f35565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066c610ae3565b73ffffffffffffffffffffffffffffffffffffffff1661068a6106e2565b73ffffffffffffffffffffffffffffffffffffffff16146106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d790611473565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071b90611677565b80601f016020809104026020016040519081016040528092919081815260200182805461074790611677565b80156107945780601f1061076957610100808354040283529160200191610794565b820191906000526020600020905b81548152906001019060200180831161077757829003601f168201915b5050505050905090565b600080600160006107ad610ae3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610861906114d3565b60405180910390fd5b610887610875610ae3565b85858461088291906115bb565b610aeb565b600191505092915050565b60006108a661089f610ae3565b8484610cb6565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61093f610ae3565b73ffffffffffffffffffffffffffffffffffffffff1661095d6106e2565b73ffffffffffffffffffffffffffffffffffffffff16146109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90611473565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a906113f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b52906114b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611413565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ca99190611513565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90611493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906113d3565b60405180910390fd5b610da1838383611089565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90611433565b60405180910390fd5b8181610e3391906115bb565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ec39190611565565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f279190611513565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906114f3565b60405180910390fd5b610fb160008383611089565b8060026000828254610fc39190611565565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110189190611565565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161107d9190611513565b60405180910390a35050565b505050565b60008135905061109d816119e2565b92915050565b6000813590506110b2816119f9565b92915050565b6000602082840312156110ca57600080fd5b60006110d88482850161108e565b91505092915050565b600080604083850312156110f457600080fd5b60006111028582860161108e565b92505060206111138582860161108e565b9150509250929050565b60008060006060848603121561113257600080fd5b60006111408682870161108e565b93505060206111518682870161108e565b9250506040611162868287016110a3565b9150509250925092565b6000806040838503121561117f57600080fd5b600061118d8582860161108e565b925050602061119e858286016110a3565b9150509250929050565b6111b1816115ef565b82525050565b6111c081611601565b82525050565b60006111d182611549565b6111db8185611554565b93506111eb818560208601611644565b6111f481611707565b840191505092915050565b600061120c602383611554565b915061121782611718565b604082019050919050565b600061122f602683611554565b915061123a82611767565b604082019050919050565b6000611252602283611554565b915061125d826117b6565b604082019050919050565b6000611275602683611554565b915061128082611805565b604082019050919050565b6000611298602883611554565b91506112a382611854565b604082019050919050565b60006112bb602083611554565b91506112c6826118a3565b602082019050919050565b60006112de602583611554565b91506112e9826118cc565b604082019050919050565b6000611301602483611554565b915061130c8261191b565b604082019050919050565b6000611324602583611554565b915061132f8261196a565b604082019050919050565b6000611347601f83611554565b9150611352826119b9565b602082019050919050565b6113668161162d565b82525050565b61137581611637565b82525050565b600060208201905061139060008301846111a8565b92915050565b60006020820190506113ab60008301846111b7565b92915050565b600060208201905081810360008301526113cb81846111c6565b905092915050565b600060208201905081810360008301526113ec816111ff565b9050919050565b6000602082019050818103600083015261140c81611222565b9050919050565b6000602082019050818103600083015261142c81611245565b9050919050565b6000602082019050818103600083015261144c81611268565b9050919050565b6000602082019050818103600083015261146c8161128b565b9050919050565b6000602082019050818103600083015261148c816112ae565b9050919050565b600060208201905081810360008301526114ac816112d1565b9050919050565b600060208201905081810360008301526114cc816112f4565b9050919050565b600060208201905081810360008301526114ec81611317565b9050919050565b6000602082019050818103600083015261150c8161133a565b9050919050565b6000602082019050611528600083018461135d565b92915050565b6000602082019050611543600083018461136c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115708261162d565b915061157b8361162d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115b0576115af6116a9565b5b828201905092915050565b60006115c68261162d565b91506115d18361162d565b9250828210156115e4576115e36116a9565b5b828203905092915050565b60006115fa8261160d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611662578082015181840152602081019050611647565b83811115611671576000848401525b50505050565b6000600282049050600182168061168f57607f821691505b602082108114156116a3576116a26116d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119eb816115ef565b81146119f657600080fd5b50565b611a028161162d565b8114611a0d57600080fd5b5056fea2646970667358221220ed0c1255429d21ae8d8416a0f7933a6d70d704d3636a78766f3ee4948c65c28a64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906113b1565b60405180910390f35b610132600480360381019061012d919061116c565b6103b4565b60405161013f9190611396565b60405180910390f35b6101506103d2565b60405161015d9190611513565b60405180910390f35b610180600480360381019061017b919061111d565b6103dc565b60405161018d9190611396565b60405180910390f35b61019e6104dd565b6040516101ab919061152e565b60405180910390f35b6101ce60048036038101906101c9919061116c565b6104e6565b6040516101db9190611396565b60405180910390f35b6101fe60048036038101906101f9919061116c565b610592565b005b61021a600480360381019061021591906110b8565b61061c565b6040516102279190611513565b60405180910390f35b610238610664565b005b6102426106e2565b60405161024f919061137b565b60405180910390f35b61026061070c565b60405161026d91906113b1565b60405180910390f35b610290600480360381019061028b919061116c565b61079e565b60405161029d9190611396565b60405180910390f35b6102c060048036038101906102bb919061116c565b610892565b6040516102cd9190611396565b60405180910390f35b6102f060048036038101906102eb91906110e1565b6108b0565b6040516102fd9190611513565b60405180910390f35b610320600480360381019061031b91906110b8565b610937565b005b60606003805461033190611677565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611677565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610ae3565b8484610aeb565b6001905092915050565b6000600254905090565b60006103e9848484610cb6565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610ae3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab90611453565b60405180910390fd5b6104d1856104c0610ae3565b85846104cc91906115bb565b610aeb565b60019150509392505050565b60006012905090565b60006105886104f3610ae3565b848460016000610501610ae3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105839190611565565b610aeb565b6001905092915050565b61059a610ae3565b73ffffffffffffffffffffffffffffffffffffffff166105b86106e2565b73ffffffffffffffffffffffffffffffffffffffff161461060e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060590611473565b60405180910390fd5b6106188282610f35565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066c610ae3565b73ffffffffffffffffffffffffffffffffffffffff1661068a6106e2565b73ffffffffffffffffffffffffffffffffffffffff16146106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d790611473565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071b90611677565b80601f016020809104026020016040519081016040528092919081815260200182805461074790611677565b80156107945780601f1061076957610100808354040283529160200191610794565b820191906000526020600020905b81548152906001019060200180831161077757829003601f168201915b5050505050905090565b600080600160006107ad610ae3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610861906114d3565b60405180910390fd5b610887610875610ae3565b85858461088291906115bb565b610aeb565b600191505092915050565b60006108a661089f610ae3565b8484610cb6565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61093f610ae3565b73ffffffffffffffffffffffffffffffffffffffff1661095d6106e2565b73ffffffffffffffffffffffffffffffffffffffff16146109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90611473565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a906113f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b52906114b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611413565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ca99190611513565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90611493565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906113d3565b60405180910390fd5b610da1838383611089565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90611433565b60405180910390fd5b8181610e3391906115bb565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ec39190611565565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f279190611513565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906114f3565b60405180910390fd5b610fb160008383611089565b8060026000828254610fc39190611565565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110189190611565565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161107d9190611513565b60405180910390a35050565b505050565b60008135905061109d816119e2565b92915050565b6000813590506110b2816119f9565b92915050565b6000602082840312156110ca57600080fd5b60006110d88482850161108e565b91505092915050565b600080604083850312156110f457600080fd5b60006111028582860161108e565b92505060206111138582860161108e565b9150509250929050565b60008060006060848603121561113257600080fd5b60006111408682870161108e565b93505060206111518682870161108e565b9250506040611162868287016110a3565b9150509250925092565b6000806040838503121561117f57600080fd5b600061118d8582860161108e565b925050602061119e858286016110a3565b9150509250929050565b6111b1816115ef565b82525050565b6111c081611601565b82525050565b60006111d182611549565b6111db8185611554565b93506111eb818560208601611644565b6111f481611707565b840191505092915050565b600061120c602383611554565b915061121782611718565b604082019050919050565b600061122f602683611554565b915061123a82611767565b604082019050919050565b6000611252602283611554565b915061125d826117b6565b604082019050919050565b6000611275602683611554565b915061128082611805565b604082019050919050565b6000611298602883611554565b91506112a382611854565b604082019050919050565b60006112bb602083611554565b91506112c6826118a3565b602082019050919050565b60006112de602583611554565b91506112e9826118cc565b604082019050919050565b6000611301602483611554565b915061130c8261191b565b604082019050919050565b6000611324602583611554565b915061132f8261196a565b604082019050919050565b6000611347601f83611554565b9150611352826119b9565b602082019050919050565b6113668161162d565b82525050565b61137581611637565b82525050565b600060208201905061139060008301846111a8565b92915050565b60006020820190506113ab60008301846111b7565b92915050565b600060208201905081810360008301526113cb81846111c6565b905092915050565b600060208201905081810360008301526113ec816111ff565b9050919050565b6000602082019050818103600083015261140c81611222565b9050919050565b6000602082019050818103600083015261142c81611245565b9050919050565b6000602082019050818103600083015261144c81611268565b9050919050565b6000602082019050818103600083015261146c8161128b565b9050919050565b6000602082019050818103600083015261148c816112ae565b9050919050565b600060208201905081810360008301526114ac816112d1565b9050919050565b600060208201905081810360008301526114cc816112f4565b9050919050565b600060208201905081810360008301526114ec81611317565b9050919050565b6000602082019050818103600083015261150c8161133a565b9050919050565b6000602082019050611528600083018461135d565b92915050565b6000602082019050611543600083018461136c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115708261162d565b915061157b8361162d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115b0576115af6116a9565b5b828201905092915050565b60006115c68261162d565b91506115d18361162d565b9250828210156115e4576115e36116a9565b5b828203905092915050565b60006115fa8261160d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611662578082015181840152602081019050611647565b83811115611671576000848401525b50505050565b6000600282049050600182168061168f57607f821691505b602082108114156116a3576116a26116d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119eb816115ef565b81146119f657600080fd5b50565b611a028161162d565b8114611a0d57600080fd5b5056fea2646970667358221220ed0c1255429d21ae8d8416a0f7933a6d70d704d3636a78766f3ee4948c65c28a64736f6c63430008040033

Deployed Bytecode Sourcemap

17648:331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6516:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8683:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7636:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9334:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7478:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17810:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7807:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17913:63;;;:::i;:::-;;16377:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6735:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10883:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8147:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8385:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17331:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6516:100;6570:13;6603:5;6596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6516:100;:::o;8683:169::-;8766:4;8783:39;8792:12;:10;:12::i;:::-;8806:7;8815:6;8783:8;:39::i;:::-;8840:4;8833:11;;8683:169;;;;:::o;7636:108::-;7697:7;7724:12;;7717:19;;7636:108;:::o;9334:422::-;9440:4;9457:36;9467:6;9475:9;9486:6;9457:9;:36::i;:::-;9506:24;9533:11;:19;9545:6;9533:19;;;;;;;;;;;;;;;:33;9553:12;:10;:12::i;:::-;9533:33;;;;;;;;;;;;;;;;9506:60;;9605:6;9585:16;:26;;9577:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9667:57;9676:6;9684:12;:10;:12::i;:::-;9717:6;9698:16;:25;;;;:::i;:::-;9667:8;:57::i;:::-;9744:4;9737:11;;;9334:422;;;;;:::o;7478:93::-;7536:5;7561:2;7554:9;;7478:93;:::o;10165:215::-;10253:4;10270:80;10279:12;:10;:12::i;:::-;10293:7;10339:10;10302:11;:25;10314:12;:10;:12::i;:::-;10302:25;;;;;;;;;;;;;;;:34;10328:7;10302:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10270:8;:80::i;:::-;10368:4;10361:11;;10165:215;;;;:::o;17810:95::-;16608:12;:10;:12::i;:::-;16597:23;;:7;:5;:7::i;:::-;:23;;;16589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17880:17:::1;17886:2;17890:6;17880:5;:17::i;:::-;17810:95:::0;;:::o;7807:127::-;7881:7;7908:9;:18;7918:7;7908:18;;;;;;;;;;;;;;;;7901:25;;7807:127;;;:::o;17913:63::-;16608:12;:10;:12::i;:::-;16597:23;;:7;:5;:7::i;:::-;:23;;;16589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17913:63::o;16377:87::-;16423:7;16450:6;;;;;;;;;;;16443:13;;16377:87;:::o;6735:104::-;6791:13;6824:7;6817:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6735:104;:::o;10883:377::-;10976:4;10993:24;11020:11;:25;11032:12;:10;:12::i;:::-;11020:25;;;;;;;;;;;;;;;:34;11046:7;11020:34;;;;;;;;;;;;;;;;10993:61;;11093:15;11073:16;:35;;11065:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11161:67;11170:12;:10;:12::i;:::-;11184:7;11212:15;11193:16;:34;;;;:::i;:::-;11161:8;:67::i;:::-;11248:4;11241:11;;;10883:377;;;;:::o;8147:175::-;8233:4;8250:42;8260:12;:10;:12::i;:::-;8274:9;8285:6;8250:9;:42::i;:::-;8310:4;8303:11;;8147:175;;;;:::o;8385:151::-;8474:7;8501:11;:18;8513:5;8501:18;;;;;;;;;;;;;;;:27;8520:7;8501:27;;;;;;;;;;;;;;;;8494:34;;8385:151;;;;:::o;17331:244::-;16608:12;:10;:12::i;:::-;16597:23;;:7;:5;:7::i;:::-;:23;;;16589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17440:1:::1;17420:22;;:8;:22;;;;17412:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17530:8;17501:38;;17522:6;;;;;;;;;;;17501:38;;;;;;;;;;;;17559:8;17550:6;;:17;;;;;;;;;;;;;;;;;;17331:244:::0;:::o;4107:98::-;4160:7;4187:10;4180:17;;4107:98;:::o;14239:346::-;14358:1;14341:19;;:5;:19;;;;14333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14439:1;14420:21;;:7;:21;;;;14412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14523:6;14493:11;:18;14505:5;14493:18;;;;;;;;;;;;;;;:27;14512:7;14493:27;;;;;;;;;;;;;;;:36;;;;14561:7;14545:32;;14554:5;14545:32;;;14570:6;14545:32;;;;;;:::i;:::-;;;;;;;;14239:346;;;:::o;11750:604::-;11874:1;11856:20;;:6;:20;;;;11848:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11937:23;;:9;:23;;;;11929:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12013:47;12034:6;12042:9;12053:6;12013:20;:47::i;:::-;12073:21;12097:9;:17;12107:6;12097:17;;;;;;;;;;;;;;;;12073:41;;12150:6;12133:13;:23;;12125:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12246:6;12230:13;:22;;;;:::i;:::-;12210:9;:17;12220:6;12210:17;;;;;;;;;;;;;;;:42;;;;12287:6;12263:9;:20;12273:9;12263:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12328:9;12311:35;;12320:6;12311:35;;;12339:6;12311:35;;;;;;:::i;:::-;;;;;;;;11750:604;;;;:::o;12636:338::-;12739:1;12720:21;;:7;:21;;;;12712:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12790:49;12819:1;12823:7;12832:6;12790:20;:49::i;:::-;12868:6;12852:12;;:22;;;;;;;:::i;:::-;;;;;;;;12907:6;12885:9;:18;12895:7;12885:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12950:7;12929:37;;12946:1;12929:37;;;12959:6;12929:37;;;;;;:::i;:::-;;;;;;;;12636:338;;:::o;15188:92::-;;;;:::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:262::-;356:6;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::-;633:6;641;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::-;1055:6;1063;1071;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::-;1604:6;1612;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:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:366::-;5304:3;5325:67;5389:2;5384:3;5325:67;:::i;:::-;5318:74;;5401:93;5490:3;5401:93;:::i;:::-;5519:2;5514:3;5510:12;5503:19;;5308:220;;;:::o;5534:366::-;5676:3;5697:67;5761:2;5756:3;5697:67;:::i;:::-;5690:74;;5773:93;5862:3;5773:93;:::i;:::-;5891:2;5886:3;5882:12;5875:19;;5680:220;;;:::o;5906:366::-;6048:3;6069:67;6133:2;6128:3;6069:67;:::i;:::-;6062:74;;6145:93;6234:3;6145:93;:::i;:::-;6263:2;6258:3;6254:12;6247:19;;6052:220;;;:::o;6278:118::-;6365:24;6383:5;6365:24;:::i;:::-;6360:3;6353:37;6343:53;;:::o;6402:112::-;6485:22;6501:5;6485:22;:::i;:::-;6480:3;6473:35;6463:51;;:::o;6520:222::-;6613:4;6651:2;6640:9;6636:18;6628:26;;6664:71;6732:1;6721:9;6717:17;6708:6;6664:71;:::i;:::-;6618:124;;;;:::o;6748:210::-;6835:4;6873:2;6862:9;6858:18;6850:26;;6886:65;6948:1;6937:9;6933:17;6924:6;6886:65;:::i;:::-;6840:118;;;;:::o;6964:313::-;7077:4;7115:2;7104:9;7100:18;7092:26;;7164:9;7158:4;7154:20;7150:1;7139:9;7135:17;7128:47;7192:78;7265:4;7256:6;7192:78;:::i;:::-;7184:86;;7082:195;;;;:::o;7283:419::-;7449:4;7487:2;7476:9;7472:18;7464:26;;7536:9;7530:4;7526:20;7522:1;7511:9;7507:17;7500:47;7564:131;7690:4;7564:131;:::i;:::-;7556:139;;7454:248;;;:::o;7708:419::-;7874:4;7912:2;7901:9;7897:18;7889:26;;7961:9;7955:4;7951:20;7947:1;7936:9;7932:17;7925:47;7989:131;8115:4;7989:131;:::i;:::-;7981:139;;7879:248;;;:::o;8133:419::-;8299:4;8337:2;8326:9;8322:18;8314:26;;8386:9;8380:4;8376:20;8372:1;8361:9;8357:17;8350:47;8414:131;8540:4;8414:131;:::i;:::-;8406:139;;8304:248;;;:::o;8558:419::-;8724:4;8762:2;8751:9;8747:18;8739:26;;8811:9;8805:4;8801:20;8797:1;8786:9;8782:17;8775:47;8839:131;8965:4;8839:131;:::i;:::-;8831:139;;8729:248;;;:::o;8983:419::-;9149:4;9187:2;9176:9;9172:18;9164:26;;9236:9;9230:4;9226:20;9222:1;9211:9;9207:17;9200:47;9264:131;9390:4;9264:131;:::i;:::-;9256:139;;9154:248;;;:::o;9408:419::-;9574:4;9612:2;9601:9;9597:18;9589:26;;9661:9;9655:4;9651:20;9647:1;9636:9;9632:17;9625:47;9689:131;9815:4;9689:131;:::i;:::-;9681:139;;9579:248;;;:::o;9833:419::-;9999:4;10037:2;10026:9;10022:18;10014:26;;10086:9;10080:4;10076:20;10072:1;10061:9;10057:17;10050:47;10114:131;10240:4;10114:131;:::i;:::-;10106:139;;10004:248;;;:::o;10258:419::-;10424:4;10462:2;10451:9;10447:18;10439:26;;10511:9;10505:4;10501:20;10497:1;10486:9;10482:17;10475:47;10539:131;10665:4;10539:131;:::i;:::-;10531:139;;10429:248;;;:::o;10683:419::-;10849:4;10887:2;10876:9;10872:18;10864:26;;10936:9;10930:4;10926:20;10922:1;10911:9;10907:17;10900:47;10964:131;11090:4;10964:131;:::i;:::-;10956:139;;10854:248;;;:::o;11108:419::-;11274:4;11312:2;11301:9;11297:18;11289:26;;11361:9;11355:4;11351:20;11347:1;11336:9;11332:17;11325:47;11389:131;11515:4;11389:131;:::i;:::-;11381:139;;11279:248;;;:::o;11533:222::-;11626:4;11664:2;11653:9;11649:18;11641:26;;11677:71;11745:1;11734:9;11730:17;11721:6;11677:71;:::i;:::-;11631:124;;;;:::o;11761:214::-;11850:4;11888:2;11877:9;11873:18;11865:26;;11901:67;11965:1;11954:9;11950:17;11941:6;11901:67;:::i;:::-;11855:120;;;;:::o;11981:99::-;12033:6;12067:5;12061:12;12051:22;;12040:40;;;:::o;12086:169::-;12170:11;12204:6;12199:3;12192:19;12244:4;12239:3;12235:14;12220:29;;12182:73;;;;:::o;12261:305::-;12301:3;12320:20;12338:1;12320:20;:::i;:::-;12315:25;;12354:20;12372:1;12354:20;:::i;:::-;12349:25;;12508:1;12440:66;12436:74;12433:1;12430:81;12427:2;;;12514:18;;:::i;:::-;12427:2;12558:1;12555;12551:9;12544:16;;12305:261;;;;:::o;12572:191::-;12612:4;12632:20;12650:1;12632:20;:::i;:::-;12627:25;;12666:20;12684:1;12666:20;:::i;:::-;12661:25;;12705:1;12702;12699:8;12696:2;;;12710:18;;:::i;:::-;12696:2;12755:1;12752;12748:9;12740:17;;12617:146;;;;:::o;12769:96::-;12806:7;12835:24;12853:5;12835:24;:::i;:::-;12824:35;;12814:51;;;:::o;12871:90::-;12905:7;12948:5;12941:13;12934:21;12923:32;;12913:48;;;:::o;12967:126::-;13004:7;13044:42;13037:5;13033:54;13022:65;;13012:81;;;:::o;13099:77::-;13136:7;13165:5;13154:16;;13144:32;;;:::o;13182:86::-;13217:7;13257:4;13250:5;13246:16;13235:27;;13225:43;;;:::o;13274:307::-;13342:1;13352:113;13366:6;13363:1;13360:13;13352:113;;;13451:1;13446:3;13442:11;13436:18;13432:1;13427:3;13423:11;13416:39;13388:2;13385:1;13381:10;13376:15;;13352:113;;;13483:6;13480:1;13477:13;13474:2;;;13563:1;13554:6;13549:3;13545:16;13538:27;13474:2;13323:258;;;;:::o;13587:320::-;13631:6;13668:1;13662:4;13658:12;13648:22;;13715:1;13709:4;13705:12;13736:18;13726:2;;13792:4;13784:6;13780:17;13770:27;;13726:2;13854;13846:6;13843:14;13823:18;13820:38;13817:2;;;13873:18;;:::i;:::-;13817:2;13638:269;;;;:::o;13913:180::-;13961:77;13958:1;13951:88;14058:4;14055:1;14048:15;14082:4;14079:1;14072:15;14099:180;14147:77;14144:1;14137:88;14244:4;14241:1;14234:15;14268:4;14265:1;14258:15;14285:102;14326:6;14377:2;14373:7;14368:2;14361:5;14357:14;14353:28;14343:38;;14333:54;;;:::o;14393:222::-;14533:34;14529:1;14521:6;14517:14;14510:58;14602:5;14597:2;14589:6;14585:15;14578:30;14499:116;:::o;14621:225::-;14761:34;14757:1;14749:6;14745:14;14738:58;14830:8;14825:2;14817:6;14813:15;14806:33;14727:119;:::o;14852:221::-;14992:34;14988:1;14980:6;14976:14;14969:58;15061:4;15056:2;15048:6;15044:15;15037:29;14958:115;:::o;15079:225::-;15219:34;15215:1;15207:6;15203:14;15196:58;15288:8;15283:2;15275:6;15271:15;15264:33;15185:119;:::o;15310:227::-;15450:34;15446:1;15438:6;15434:14;15427:58;15519:10;15514:2;15506:6;15502:15;15495:35;15416:121;:::o;15543:182::-;15683:34;15679:1;15671:6;15667:14;15660:58;15649:76;:::o;15731:224::-;15871:34;15867:1;15859:6;15855:14;15848:58;15940:7;15935:2;15927:6;15923:15;15916:32;15837:118;:::o;15961:223::-;16101:34;16097:1;16089:6;16085:14;16078:58;16170:6;16165:2;16157:6;16153:15;16146:31;16067:117;:::o;16190:224::-;16330:34;16326:1;16318:6;16314:14;16307:58;16399:7;16394:2;16386:6;16382:15;16375:32;16296:118;:::o;16420:181::-;16560:33;16556:1;16548:6;16544:14;16537:57;16526:75;:::o;16607:122::-;16680:24;16698:5;16680:24;:::i;:::-;16673:5;16670:35;16660:2;;16719:1;16716;16709:12;16660:2;16650:79;:::o;16735:122::-;16808:24;16826:5;16808:24;:::i;:::-;16801:5;16798:35;16788:2;;16847:1;16844;16837:12;16788:2;16778:79;:::o

Swarm Source

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