ETH Price: $3,117.41 (-4.04%)
 

Overview

Max Total Supply

1,008,000,000,000 SAGE

Holders

23

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 4 Decimals)

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:
SAGE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2022-03-11
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



 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);
}

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);
}
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;
    }
}

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



contract SAGE is Context, IERC20, IERC20Metadata, Ownable {
    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 () {
        _name = "Sage Coin";
        _symbol = "SAGE";
        _totalSupply = 1008000000000 * (10**decimals());
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0),msg.sender,_totalSupply);
    }

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

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

    function burn(address account, uint256 amount) public onlyOwner {
        _burn(account,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 _afterTokenTransfer( address from,address to,uint256 amount) internal virtual {}
}

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b506200003262000026620001ba60201b60201c565b620001c260201b60201c565b6040518060400160405280600981526020017f5361676520436f696e0000000000000000000000000000000000000000000000815250600490805190602001906200007f9291906200028f565b506040518060400160405280600481526020017f534147450000000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd9291906200028f565b50620000de6200028660201b60201c565b600a620000ec9190620003c8565b64eab17b6000620000fe919062000505565b600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600354604051620001ac919062000350565b60405180910390a36200061e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006004905090565b8280546200029d906200057d565b90600052602060002090601f016020900481019282620002c157600085556200030d565b82601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000320565b5090565b5b808211156200033b57600081600090555060010162000321565b5090565b6200034a8162000566565b82525050565b60006020820190506200036760008301846200033f565b92915050565b6000808291508390505b6001851115620003bf57808604811115620003975762000396620005b3565b5b6001851615620003a75780820291505b8081029050620003b78562000611565b945062000377565b94509492505050565b6000620003d58262000566565b9150620003e28362000570565b9250620004117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000419565b905092915050565b6000826200042b5760019050620004fe565b816200043b5760009050620004fe565b81600181146200045457600281146200045f5762000495565b6001915050620004fe565b60ff841115620004745762000473620005b3565b5b8360020a9150848211156200048e576200048d620005b3565b5b50620004fe565b5060208310610133831016604e8410600b8410161715620004cf5782820a905083811115620004c957620004c8620005b3565b5b620004fe565b620004de84848460016200036d565b92509050818404811115620004f857620004f7620005b3565b5b81810290505b9392505050565b6000620005128262000566565b91506200051f8362000566565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200055b576200055a620005b3565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200059657607f821691505b60208210811415620005ad57620005ac620005e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611e38806200062e6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b41146102635780639dc29fac1461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906116c0565b60405180910390f35b61013d60048036038101906101389190611431565b6103db565b60405161014a91906116a5565b60405180910390f35b61015b6103f9565b6040516101689190611862565b60405180910390f35b61018b600480360381019061018691906113de565b610403565b60405161019891906116a5565b60405180910390f35b6101a9610504565b6040516101b6919061187d565b60405180910390f35b6101d960048036038101906101d49190611431565b61050d565b6040516101e691906116a5565b60405180910390f35b61020960048036038101906102049190611431565b6105b9565b005b61022560048036038101906102209190611371565b610643565b6040516102329190611862565b60405180910390f35b61024361068c565b005b61024d610714565b60405161025a919061168a565b60405180910390f35b61026b61073d565b60405161027891906116c0565b60405180910390f35b61029b60048036038101906102969190611431565b6107cf565b005b6102b760048036038101906102b29190611431565b610859565b6040516102c491906116a5565b60405180910390f35b6102e760048036038101906102e29190611431565b61094d565b6040516102f491906116a5565b60405180910390f35b6103176004803603810190610312919061139e565b61096b565b6040516103249190611862565b60405180910390f35b61034760048036038101906103429190611371565b6109f2565b005b606060048054610358906119c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906119c6565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610aea565b8484610af2565b6001905092915050565b6000600354905090565b6000610410848484610cbd565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d290611782565b60405180910390fd5b6104f8856104e7610aea565b85846104f3919061190a565b610af2565b60019150509392505050565b60006004905090565b60006105af61051a610aea565b848460026000610528610aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa91906118b4565b610af2565b6001905092915050565b6105c1610aea565b73ffffffffffffffffffffffffffffffffffffffff166105df610714565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c906117a2565b60405180910390fd5b61063f8282610f3f565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610694610aea565b73ffffffffffffffffffffffffffffffffffffffff166106b2610714565b73ffffffffffffffffffffffffffffffffffffffff1614610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff906117a2565b60405180910390fd5b61071260006110a0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461074c906119c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610778906119c6565b80156107c55780601f1061079a576101008083540402835291602001916107c5565b820191906000526020600020905b8154815290600101906020018083116107a857829003601f168201915b5050505050905090565b6107d7610aea565b73ffffffffffffffffffffffffffffffffffffffff166107f5610714565b73ffffffffffffffffffffffffffffffffffffffff161461084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610842906117a2565b60405180910390fd5b6108558282611164565b5050565b60008060026000610868610aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90611822565b60405180910390fd5b610942610930610aea565b85858461093d919061190a565b610af2565b600191505092915050565b600061096161095a610aea565b8484610cbd565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fa610aea565b73ffffffffffffffffffffffffffffffffffffffff16610a18610714565b73ffffffffffffffffffffffffffffffffffffffff1614610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a65906117a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611722565b60405180910390fd5b610ae7816110a0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990611742565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb09190611862565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d24906117e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d94906116e2565b60405180910390fd5b610da883838361133d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611762565b60405180910390fd5b8181610e3b919061190a565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ecd91906118b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f319190611862565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690611842565b60405180910390fd5b610fbb6000838361133d565b8060036000828254610fcd91906118b4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461102391906118b4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110889190611862565b60405180910390a361109c60008383611342565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906117c2565b60405180910390fd5b6111e08260008361133d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90611702565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112bf919061190a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113249190611862565b60405180910390a361133883600084611342565b505050565b505050565b505050565b60008135905061135681611dd4565b92915050565b60008135905061136b81611deb565b92915050565b60006020828403121561138757611386611a56565b5b600061139584828501611347565b91505092915050565b600080604083850312156113b5576113b4611a56565b5b60006113c385828601611347565b92505060206113d485828601611347565b9150509250929050565b6000806000606084860312156113f7576113f6611a56565b5b600061140586828701611347565b935050602061141686828701611347565b92505060406114278682870161135c565b9150509250925092565b6000806040838503121561144857611447611a56565b5b600061145685828601611347565b92505060206114678582860161135c565b9150509250929050565b61147a8161193e565b82525050565b61148981611950565b82525050565b600061149a82611898565b6114a481856118a3565b93506114b4818560208601611993565b6114bd81611a5b565b840191505092915050565b60006114d56023836118a3565b91506114e082611a6c565b604082019050919050565b60006114f86022836118a3565b915061150382611abb565b604082019050919050565b600061151b6026836118a3565b915061152682611b0a565b604082019050919050565b600061153e6022836118a3565b915061154982611b59565b604082019050919050565b60006115616026836118a3565b915061156c82611ba8565b604082019050919050565b60006115846028836118a3565b915061158f82611bf7565b604082019050919050565b60006115a76020836118a3565b91506115b282611c46565b602082019050919050565b60006115ca6021836118a3565b91506115d582611c6f565b604082019050919050565b60006115ed6025836118a3565b91506115f882611cbe565b604082019050919050565b60006116106024836118a3565b915061161b82611d0d565b604082019050919050565b60006116336025836118a3565b915061163e82611d5c565b604082019050919050565b6000611656601f836118a3565b915061166182611dab565b602082019050919050565b6116758161197c565b82525050565b61168481611986565b82525050565b600060208201905061169f6000830184611471565b92915050565b60006020820190506116ba6000830184611480565b92915050565b600060208201905081810360008301526116da818461148f565b905092915050565b600060208201905081810360008301526116fb816114c8565b9050919050565b6000602082019050818103600083015261171b816114eb565b9050919050565b6000602082019050818103600083015261173b8161150e565b9050919050565b6000602082019050818103600083015261175b81611531565b9050919050565b6000602082019050818103600083015261177b81611554565b9050919050565b6000602082019050818103600083015261179b81611577565b9050919050565b600060208201905081810360008301526117bb8161159a565b9050919050565b600060208201905081810360008301526117db816115bd565b9050919050565b600060208201905081810360008301526117fb816115e0565b9050919050565b6000602082019050818103600083015261181b81611603565b9050919050565b6000602082019050818103600083015261183b81611626565b9050919050565b6000602082019050818103600083015261185b81611649565b9050919050565b6000602082019050611877600083018461166c565b92915050565b6000602082019050611892600083018461167b565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118bf8261197c565b91506118ca8361197c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118ff576118fe6119f8565b5b828201905092915050565b60006119158261197c565b91506119208361197c565b925082821015611933576119326119f8565b5b828203905092915050565b60006119498261195c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119b1578082015181840152602081019050611996565b838111156119c0576000848401525b50505050565b600060028204905060018216806119de57607f821691505b602082108114156119f2576119f1611a27565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611ddd8161193e565b8114611de857600080fd5b50565b611df48161197c565b8114611dff57600080fd5b5056fea2646970667358221220b3e70163804c7d3be7e5984b0b1962213385bde082874f906abee356f91b44f664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b41146102635780639dc29fac1461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906116c0565b60405180910390f35b61013d60048036038101906101389190611431565b6103db565b60405161014a91906116a5565b60405180910390f35b61015b6103f9565b6040516101689190611862565b60405180910390f35b61018b600480360381019061018691906113de565b610403565b60405161019891906116a5565b60405180910390f35b6101a9610504565b6040516101b6919061187d565b60405180910390f35b6101d960048036038101906101d49190611431565b61050d565b6040516101e691906116a5565b60405180910390f35b61020960048036038101906102049190611431565b6105b9565b005b61022560048036038101906102209190611371565b610643565b6040516102329190611862565b60405180910390f35b61024361068c565b005b61024d610714565b60405161025a919061168a565b60405180910390f35b61026b61073d565b60405161027891906116c0565b60405180910390f35b61029b60048036038101906102969190611431565b6107cf565b005b6102b760048036038101906102b29190611431565b610859565b6040516102c491906116a5565b60405180910390f35b6102e760048036038101906102e29190611431565b61094d565b6040516102f491906116a5565b60405180910390f35b6103176004803603810190610312919061139e565b61096b565b6040516103249190611862565b60405180910390f35b61034760048036038101906103429190611371565b6109f2565b005b606060048054610358906119c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906119c6565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610aea565b8484610af2565b6001905092915050565b6000600354905090565b6000610410848484610cbd565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d290611782565b60405180910390fd5b6104f8856104e7610aea565b85846104f3919061190a565b610af2565b60019150509392505050565b60006004905090565b60006105af61051a610aea565b848460026000610528610aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa91906118b4565b610af2565b6001905092915050565b6105c1610aea565b73ffffffffffffffffffffffffffffffffffffffff166105df610714565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c906117a2565b60405180910390fd5b61063f8282610f3f565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610694610aea565b73ffffffffffffffffffffffffffffffffffffffff166106b2610714565b73ffffffffffffffffffffffffffffffffffffffff1614610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff906117a2565b60405180910390fd5b61071260006110a0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461074c906119c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610778906119c6565b80156107c55780601f1061079a576101008083540402835291602001916107c5565b820191906000526020600020905b8154815290600101906020018083116107a857829003601f168201915b5050505050905090565b6107d7610aea565b73ffffffffffffffffffffffffffffffffffffffff166107f5610714565b73ffffffffffffffffffffffffffffffffffffffff161461084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610842906117a2565b60405180910390fd5b6108558282611164565b5050565b60008060026000610868610aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90611822565b60405180910390fd5b610942610930610aea565b85858461093d919061190a565b610af2565b600191505092915050565b600061096161095a610aea565b8484610cbd565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fa610aea565b73ffffffffffffffffffffffffffffffffffffffff16610a18610714565b73ffffffffffffffffffffffffffffffffffffffff1614610a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a65906117a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590611722565b60405180910390fd5b610ae7816110a0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611802565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990611742565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb09190611862565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d24906117e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d94906116e2565b60405180910390fd5b610da883838361133d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611762565b60405180910390fd5b8181610e3b919061190a565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ecd91906118b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f319190611862565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690611842565b60405180910390fd5b610fbb6000838361133d565b8060036000828254610fcd91906118b4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461102391906118b4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110889190611862565b60405180910390a361109c60008383611342565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906117c2565b60405180910390fd5b6111e08260008361133d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90611702565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112bf919061190a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113249190611862565b60405180910390a361133883600084611342565b505050565b505050565b505050565b60008135905061135681611dd4565b92915050565b60008135905061136b81611deb565b92915050565b60006020828403121561138757611386611a56565b5b600061139584828501611347565b91505092915050565b600080604083850312156113b5576113b4611a56565b5b60006113c385828601611347565b92505060206113d485828601611347565b9150509250929050565b6000806000606084860312156113f7576113f6611a56565b5b600061140586828701611347565b935050602061141686828701611347565b92505060406114278682870161135c565b9150509250925092565b6000806040838503121561144857611447611a56565b5b600061145685828601611347565b92505060206114678582860161135c565b9150509250929050565b61147a8161193e565b82525050565b61148981611950565b82525050565b600061149a82611898565b6114a481856118a3565b93506114b4818560208601611993565b6114bd81611a5b565b840191505092915050565b60006114d56023836118a3565b91506114e082611a6c565b604082019050919050565b60006114f86022836118a3565b915061150382611abb565b604082019050919050565b600061151b6026836118a3565b915061152682611b0a565b604082019050919050565b600061153e6022836118a3565b915061154982611b59565b604082019050919050565b60006115616026836118a3565b915061156c82611ba8565b604082019050919050565b60006115846028836118a3565b915061158f82611bf7565b604082019050919050565b60006115a76020836118a3565b91506115b282611c46565b602082019050919050565b60006115ca6021836118a3565b91506115d582611c6f565b604082019050919050565b60006115ed6025836118a3565b91506115f882611cbe565b604082019050919050565b60006116106024836118a3565b915061161b82611d0d565b604082019050919050565b60006116336025836118a3565b915061163e82611d5c565b604082019050919050565b6000611656601f836118a3565b915061166182611dab565b602082019050919050565b6116758161197c565b82525050565b61168481611986565b82525050565b600060208201905061169f6000830184611471565b92915050565b60006020820190506116ba6000830184611480565b92915050565b600060208201905081810360008301526116da818461148f565b905092915050565b600060208201905081810360008301526116fb816114c8565b9050919050565b6000602082019050818103600083015261171b816114eb565b9050919050565b6000602082019050818103600083015261173b8161150e565b9050919050565b6000602082019050818103600083015261175b81611531565b9050919050565b6000602082019050818103600083015261177b81611554565b9050919050565b6000602082019050818103600083015261179b81611577565b9050919050565b600060208201905081810360008301526117bb8161159a565b9050919050565b600060208201905081810360008301526117db816115bd565b9050919050565b600060208201905081810360008301526117fb816115e0565b9050919050565b6000602082019050818103600083015261181b81611603565b9050919050565b6000602082019050818103600083015261183b81611626565b9050919050565b6000602082019050818103600083015261185b81611649565b9050919050565b6000602082019050611877600083018461166c565b92915050565b6000602082019050611892600083018461167b565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118bf8261197c565b91506118ca8361197c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118ff576118fe6119f8565b5b828201905092915050565b60006119158261197c565b91506119208361197c565b925082821015611933576119326119f8565b5b828203905092915050565b60006119498261195c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119b1578082015181840152602081019050611996565b838111156119c0576000848401525b50505050565b600060028204905060018216806119de57607f821691505b602082108114156119f2576119f1611a27565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611ddd8161193e565b8114611de857600080fd5b50565b611df48161197c565b8114611dff57600080fd5b5056fea2646970667358221220b3e70163804c7d3be7e5984b0b1962213385bde082874f906abee356f91b44f664736f6c63430008070033

Deployed Bytecode Sourcemap

5196:10216:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6115:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8296:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7234:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8972:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7077:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9803:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14401:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7405:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4563:94;;;:::i;:::-;;3912:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6334:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14513;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10521:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7745:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7983:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4812:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6115:100;6169:13;6202:5;6195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6115:100;:::o;8296:169::-;8379:4;8396:39;8405:12;:10;:12::i;:::-;8419:7;8428:6;8396:8;:39::i;:::-;8453:4;8446:11;;8296:169;;;;:::o;7234:108::-;7295:7;7322:12;;7315:19;;7234:108;:::o;8972:422::-;9078:4;9095:36;9105:6;9113:9;9124:6;9095:9;:36::i;:::-;9144:24;9171:11;:19;9183:6;9171:19;;;;;;;;;;;;;;;:33;9191:12;:10;:12::i;:::-;9171:33;;;;;;;;;;;;;;;;9144:60;;9243:6;9223:16;:26;;9215:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9305:57;9314:6;9322:12;:10;:12::i;:::-;9355:6;9336:16;:25;;;;:::i;:::-;9305:8;:57::i;:::-;9382:4;9375:11;;;8972:422;;;;;:::o;7077:92::-;7135:5;7160:1;7153:8;;7077:92;:::o;9803:215::-;9891:4;9908:80;9917:12;:10;:12::i;:::-;9931:7;9977:10;9940:11;:25;9952:12;:10;:12::i;:::-;9940:25;;;;;;;;;;;;;;;:34;9966:7;9940:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9908:8;:80::i;:::-;10006:4;9999:11;;9803:215;;;;:::o;14401:104::-;4143:12;:10;:12::i;:::-;4132:23;;:7;:5;:7::i;:::-;:23;;;4124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14476:21:::1;14482:7;14490:6;14476:5;:21::i;:::-;14401:104:::0;;:::o;7405:127::-;7479:7;7506:9;:18;7516:7;7506:18;;;;;;;;;;;;;;;;7499:25;;7405:127;;;:::o;4563:94::-;4143:12;:10;:12::i;:::-;4132:23;;:7;:5;:7::i;:::-;:23;;;4124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4628:21:::1;4646:1;4628:9;:21::i;:::-;4563:94::o:0;3912:87::-;3958:7;3985:6;;;;;;;;;;;3978:13;;3912:87;:::o;6334:104::-;6390:13;6423:7;6416:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6334:104;:::o;14513:::-;4143:12;:10;:12::i;:::-;4132:23;;:7;:5;:7::i;:::-;:23;;;4124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14588:21:::1;14594:7;14602:6;14588:5;:21::i;:::-;14513:104:::0;;:::o;10521:377::-;10614:4;10631:24;10658:11;:25;10670:12;:10;:12::i;:::-;10658:25;;;;;;;;;;;;;;;:34;10684:7;10658:34;;;;;;;;;;;;;;;;10631:61;;10731:15;10711:16;:35;;10703:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10799:67;10808:12;:10;:12::i;:::-;10822:7;10850:15;10831:16;:34;;;;:::i;:::-;10799:8;:67::i;:::-;10886:4;10879:11;;;10521:377;;;;:::o;7745:175::-;7831:4;7848:42;7858:12;:10;:12::i;:::-;7872:9;7883:6;7848:9;:42::i;:::-;7908:4;7901:11;;7745:175;;;;:::o;7983:151::-;8072:7;8099:11;:18;8111:5;8099:18;;;;;;;;;;;;;;;:27;8118:7;8099:27;;;;;;;;;;;;;;;;8092:34;;7983:151;;;;:::o;4812:192::-;4143:12;:10;:12::i;:::-;4132:23;;:7;:5;:7::i;:::-;:23;;;4124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4921:1:::1;4901:22;;:8;:22;;;;4893:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4977:19;4987:8;4977:9;:19::i;:::-;4812:192:::0;:::o;3161:98::-;3214:7;3241:10;3234:17;;3161:98;:::o;12437:346::-;12556:1;12539:19;;:5;:19;;;;12531:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12637:1;12618:21;;:7;:21;;;;12610:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12721:6;12691:11;:18;12703:5;12691:18;;;;;;;;;;;;;;;:27;12710:7;12691:27;;;;;;;;;;;;;;;:36;;;;12759:7;12743:32;;12752:5;12743:32;;;12768:6;12743:32;;;;;;:::i;:::-;;;;;;;;12437:346;;;:::o;11388:605::-;11512:1;11494:20;;:6;:20;;;;11486:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11596:1;11575:23;;:9;:23;;;;11567:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11651:47;11672:6;11680:9;11691:6;11651:20;:47::i;:::-;11711:21;11735:9;:17;11745:6;11735:17;;;;;;;;;;;;;;;;11711:41;;11788:6;11771:13;:23;;11763:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11884:6;11868:13;:22;;;;:::i;:::-;11848:9;:17;11858:6;11848:17;;;;;;;;;;;;;;;:42;;;;11925:6;11901:9;:20;11911:9;11901:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11965:9;11948:35;;11957:6;11948:35;;;11976:6;11948:35;;;;;;:::i;:::-;;;;;;;;11475:518;11388:605;;;:::o;13070:399::-;13173:1;13154:21;;:7;:21;;;;13146:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13224:49;13253:1;13257:7;13266:6;13224:20;:49::i;:::-;13302:6;13286:12;;:22;;;;;;;:::i;:::-;;;;;;;;13341:6;13319:9;:18;13329:7;13319:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13384:7;13363:37;;13380:1;13363:37;;;13393:6;13363:37;;;;;;:::i;:::-;;;;;;;;13413:48;13441:1;13445:7;13454:6;13413:19;:48::i;:::-;13070:399;;:::o;5012:173::-;5068:16;5087:6;;;;;;;;;;;5068:25;;5113:8;5104:6;;:17;;;;;;;;;;;;;;;;;;5168:8;5137:40;;5158:8;5137:40;;;;;;;;;;;;5057:128;5012:173;:::o;13802:591::-;13905:1;13886:21;;:7;:21;;;;13878:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13958:49;13979:7;13996:1;14000:6;13958:20;:49::i;:::-;14020:22;14045:9;:18;14055:7;14045:18;;;;;;;;;;;;;;;;14020:43;;14100:6;14082:14;:24;;14074:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14219:6;14202:14;:23;14181:9;:18;14191:7;14181:18;;;;;;;;;;;;;;;:44;;;;14263:6;14247:12;;:22;;;;;;;:::i;:::-;;;;;;;;14313:1;14287:37;;14296:7;14287:37;;;14317:6;14287:37;;;;;;:::i;:::-;;;;;;;;14337:48;14357:7;14374:1;14378:6;14337:19;:48::i;:::-;13867:526;13802:591;;:::o;15222:92::-;;;;:::o;15320:89::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;6918:366;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7290:118;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7414:112;;:::o;7532:222::-;7625:4;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7532:222;;;;:::o;7760:210::-;7847:4;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7760:210;;;;:::o;7976:313::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;7976:313;;;;:::o;8295:419::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8295:419;;;:::o;8720:::-;8886:4;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8720:419;;;:::o;9145:::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9145:419;;;:::o;9570:::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9570:419;;;:::o;9995:::-;10161:4;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;9995:419;;;:::o;10420:::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10420:419;;;:::o;10845:::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;10845:419;;;:::o;11270:::-;11436:4;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11270:419;;;:::o;11695:::-;11861:4;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11695:419;;;:::o;12120:::-;12286:4;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12120:419;;;:::o;12545:::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:::-;13136:4;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;12970:419;;;:::o;13395:222::-;13488:4;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13395:222;;;;:::o;13623:214::-;13712:4;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13623:214;;;;:::o;13924:99::-;13976:6;14010:5;14004:12;13994:22;;13924:99;;;:::o;14029:169::-;14113:11;14147:6;14142:3;14135:19;14187:4;14182:3;14178:14;14163:29;;14029:169;;;;:::o;14204:305::-;14244:3;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14297:20;14315:1;14297:20;:::i;:::-;14292:25;;14451:1;14383:66;14379:74;14376:1;14373:81;14370:107;;;14457:18;;:::i;:::-;14370:107;14501:1;14498;14494:9;14487:16;;14204:305;;;;:::o;14515:191::-;14555:4;14575:20;14593:1;14575:20;:::i;:::-;14570:25;;14609:20;14627:1;14609:20;:::i;:::-;14604:25;;14648:1;14645;14642:8;14639:34;;;14653:18;;:::i;:::-;14639:34;14698:1;14695;14691:9;14683:17;;14515:191;;;;:::o;14712:96::-;14749:7;14778:24;14796:5;14778:24;:::i;:::-;14767:35;;14712:96;;;:::o;14814:90::-;14848:7;14891:5;14884:13;14877:21;14866:32;;14814:90;;;:::o;14910:126::-;14947:7;14987:42;14980:5;14976:54;14965:65;;14910:126;;;:::o;15042:77::-;15079:7;15108:5;15097:16;;15042:77;;;:::o;15125:86::-;15160:7;15200:4;15193:5;15189:16;15178:27;;15125:86;;;:::o;15217:307::-;15285:1;15295:113;15309:6;15306:1;15303:13;15295:113;;;15394:1;15389:3;15385:11;15379:18;15375:1;15370:3;15366:11;15359:39;15331:2;15328:1;15324:10;15319:15;;15295:113;;;15426:6;15423:1;15420:13;15417:101;;;15506:1;15497:6;15492:3;15488:16;15481:27;15417:101;15266:258;15217:307;;;:::o;15530:320::-;15574:6;15611:1;15605:4;15601:12;15591:22;;15658:1;15652:4;15648:12;15679:18;15669:81;;15735:4;15727:6;15723:17;15713:27;;15669:81;15797:2;15789:6;15786:14;15766:18;15763:38;15760:84;;;15816:18;;:::i;:::-;15760:84;15581:269;15530:320;;;:::o;15856:180::-;15904:77;15901:1;15894:88;16001:4;15998:1;15991:15;16025:4;16022:1;16015:15;16042:180;16090:77;16087:1;16080:88;16187:4;16184:1;16177:15;16211:4;16208:1;16201:15;16351:117;16460:1;16457;16450:12;16474:102;16515:6;16566:2;16562:7;16557:2;16550:5;16546:14;16542:28;16532:38;;16474:102;;;:::o;16582:222::-;16722:34;16718:1;16710:6;16706:14;16699:58;16791:5;16786:2;16778:6;16774:15;16767:30;16582:222;:::o;16810:221::-;16950:34;16946:1;16938:6;16934:14;16927:58;17019:4;17014:2;17006:6;17002:15;16995:29;16810:221;:::o;17037:225::-;17177:34;17173:1;17165:6;17161:14;17154:58;17246:8;17241:2;17233:6;17229:15;17222:33;17037:225;:::o;17268:221::-;17408:34;17404:1;17396:6;17392:14;17385:58;17477:4;17472:2;17464:6;17460:15;17453:29;17268:221;:::o;17495:225::-;17635:34;17631:1;17623:6;17619:14;17612:58;17704:8;17699:2;17691:6;17687:15;17680:33;17495:225;:::o;17726:227::-;17866:34;17862:1;17854:6;17850:14;17843:58;17935:10;17930:2;17922:6;17918:15;17911:35;17726:227;:::o;17959:182::-;18099:34;18095:1;18087:6;18083:14;18076:58;17959:182;:::o;18147:220::-;18287:34;18283:1;18275:6;18271:14;18264:58;18356:3;18351:2;18343:6;18339:15;18332:28;18147:220;:::o;18373:224::-;18513:34;18509:1;18501:6;18497:14;18490:58;18582:7;18577:2;18569:6;18565:15;18558:32;18373:224;:::o;18603:223::-;18743:34;18739:1;18731:6;18727:14;18720:58;18812:6;18807:2;18799:6;18795:15;18788:31;18603:223;:::o;18832:224::-;18972:34;18968:1;18960:6;18956:14;18949:58;19041:7;19036:2;19028:6;19024:15;19017:32;18832:224;:::o;19062:181::-;19202:33;19198:1;19190:6;19186:14;19179:57;19062:181;:::o;19249:122::-;19322:24;19340:5;19322:24;:::i;:::-;19315:5;19312:35;19302:63;;19361:1;19358;19351:12;19302:63;19249:122;:::o;19377:::-;19450:24;19468:5;19450:24;:::i;:::-;19443:5;19440:35;19430:63;;19489:1;19486;19479:12;19430:63;19377:122;:::o

Swarm Source

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