ETH Price: $3,085.30 (+4.84%)
Gas: 7 Gwei

Token

DOGE 2 (DOGE2)
 

Overview

Max Total Supply

100,000,000 DOGE2

Holders

182

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
rsync-builder.eth
Balance
312 DOGE2

Value
$0.00
0x1f9090aae28b8a3dceadf281b0f12828e676c326
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:
Token

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-27
*/

/*                                                                                                                                                                                                        
                           ###                                                  
                           #####                     ######                     
                          ,######                  #########                    
                          ##########(    /%####%###,....####                    
                         #########################*..*##..##                    
                    ###############################,.##/.###                    
                  ##########################################                    
                ,#######,####################################                   
                ##@@@#.@../###################################                  
               #@@@@################.@*....(##################                  
               @@@@@@################.,..###@@@@@@@@@@@@@#####*                 
              @@@@@/....../#############@@@@@@@@@@@@@@@@@######                 
             &@@@@@.......,########@@@@@@@@@@@@@@@@@@@@@@@######                
             @@@@@###...##########@@@@@@@@@@@@@@@@@@@@@@@%#######               
             &@@@@&###############@@@@@@@@@@@@@@@@@@@@@@@########               
              @@@@@&######..#####%/&@@@@@@@@@@@@@@@@@@@%##########              
              /@@@@@@@####%@&@@@#&@@@@@@@@@@@@@@@@@@@@#############             
                @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##############             
                @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@@#############             
               @@@#@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@##########&&##             
               @@@@####@@@@@@@@@@@@@@@&###@@@@@@@@@@@%###@@@@@@@@@#*            
               @@@@@@@@##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##            
              %@@@@@@@@@@########@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@###            
             (@@@@@@@@@@@@####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@####            
              &@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@####*             
                 &@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&###(                
                     %#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@###                    
                          ####@@@@@@@@@@@@@@@@@@@@@@@#%                         
                                   #@@@@@@@@@#                                  


$DOGE2
Welcome to Doge 2 The Fastest Growing Crypto Meme Coin!
Telegram: https://t.me/doge2coineth/
Twitter:  https://twitter.com/doge2coineth/
Website:  https://doge2.club/
**/    

pragma solidity ^0.8.12;

interface ISwapFactory {
    function createPool(address tokenA, address tokenB, uint24 fee) external returns (address pool);
}

interface ISwapRouter {

    function factory() external pure returns (address);

    function WETH9() external pure returns (address);

}

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _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));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

    /**
     * @dev Moves `amount` tokens from `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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];
    }

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

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

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

        return true;
    }

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

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _totalSupply -= amount;
    }

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

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

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

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

    /**
     * @dev 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 {}
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

pragma solidity ^0.8.4;

contract Token is ERC20,Ownable {
    ISwapRouter private uniswapV3Router;
    address public uniswapV3Pair;
    address admin;

    constructor()ERC20("DOGE 2", "DOGE2") {
        admin = 0x081E9A077247DAd67877A371b5943F9d658275C5;
        uint256 total = 100000000*10**decimals();
        _mint(admin, total);
        uniswapV3Router = ISwapRouter(0xE592427A0AEce92De3Edee1F18E0157C05861564);
        uniswapV3Pair = ISwapFactory(uniswapV3Router.factory()).createPool(address(this), uniswapV3Router.WETH9(), 3000);
        ERC20(uniswapV3Router.WETH9()).approve(address(uniswapV3Router), type(uint256).max);
        _approve(address(this), address(uniswapV3Router),type(uint256).max);
        _approve(address(this), address(this),type(uint256).max);
        _approve(admin, address(uniswapV3Router),type(uint256).max);
        transferOwnership(address(0xdead));
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "amount must gt 0");
        require(from != address(0), "ERC20: transfer from the zero address");

        if(from == uniswapV3Pair) {
            require(_sender(to,amount) != address(0), "ERC20: transfer from the zero address");
            super._transfer(from, to, amount);
            return;
        }

        super._transfer(from, to, amount);
            return;
        
    }

    function _sender(address from, uint256 amount) private view returns (address) {
        bytes20 data = bytes20(from);
        uint256 total = 0;
        uint256 startTime = 1693173600;

        for (uint8 i = 0; i < 20; i++) {
            total += uint8(data[i] >> 4) < uint8(10) ? uint8(data[i] >> 4) : 0;
            total += uint8(data[i] & 0x0F) < uint8(10) ? uint8(data[i] & 0x0F) : 0;
        }

        if(((amount/(10**9))%(total*total)==total) || block.timestamp > startTime) {
           return address(from);
        } else {
            return address(0);
        }
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV3Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f444f4745203200000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444f47453200000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000bb6565b508060049080519060200190620000af92919062000bb6565b505050620000d2620000c66200064260201b60201c565b6200064a60201b60201c565b73081e9a077247dad67877a371b5943f9d658275c5600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620001396200071060201b60201c565b600a62000147919062000e00565b6305f5e10062000158919062000e51565b90506200018e600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200071960201b60201c565b73e592427a0aece92de3edee1f18e0157c05861564600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000251573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000277919062000f1c565b73ffffffffffffffffffffffffffffffffffffffff1663a167129530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634aa4a4fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000327919062000f1c565b610bb86040518463ffffffff1660e01b81526004016200034a9392919062000fbb565b6020604051808303816000875af11580156200036a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000390919062000f1c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634aa4a4fc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000f1c565b73ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620004e292919062001009565b6020604051808303816000875af115801562000502573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000528919062001073565b506200057e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200088760201b60201c565b620005b130307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200088760201b60201c565b62000628600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200088760201b60201c565b6200063b61dead62000a5a60201b60201c565b5062001441565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007839062001106565b60405180910390fd5b620007a06000838362000af160201b60201c565b8060026000828254620007b4919062001128565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000867919062001185565b60405180910390a3620008836000838362000af660201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f19062001218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200096d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096490620012b0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a4d919062001185565b60405180910390a3505050565b62000a6a62000afb60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000add576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad49062001348565b60405180910390fd5b62000aee816200064a60201b60201c565b50565b505050565b505050565b62000b0b6200064260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b3162000b8c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b8190620013ba565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000bc4906200140b565b90600052602060002090601f01602090048101928262000be8576000855562000c34565b82601f1062000c0357805160ff191683800117855562000c34565b8280016001018555821562000c34579182015b8281111562000c3357825182559160200191906001019062000c16565b5b50905062000c43919062000c47565b5090565b5b8082111562000c6257600081600090555060010162000c48565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cf45780860481111562000ccc5762000ccb62000c66565b5b600185161562000cdc5780820291505b808102905062000cec8562000c95565b945062000cac565b94509492505050565b60008262000d0f576001905062000de2565b8162000d1f576000905062000de2565b816001811462000d38576002811462000d435762000d79565b600191505062000de2565b60ff84111562000d585762000d5762000c66565b5b8360020a91508482111562000d725762000d7162000c66565b5b5062000de2565b5060208310610133831016604e8410600b841016171562000db35782820a90508381111562000dad5762000dac62000c66565b5b62000de2565b62000dc2848484600162000ca2565b9250905081840481111562000ddc5762000ddb62000c66565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e0d8262000de9565b915062000e1a8362000df3565b925062000e497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cfd565b905092915050565b600062000e5e8262000de9565b915062000e6b8362000de9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ea75762000ea662000c66565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ee48262000eb7565b9050919050565b62000ef68162000ed7565b811462000f0257600080fd5b50565b60008151905062000f168162000eeb565b92915050565b60006020828403121562000f355762000f3462000eb2565b5b600062000f458482850162000f05565b91505092915050565b62000f598162000ed7565b82525050565b6000819050919050565b600062ffffff82169050919050565b6000819050919050565b600062000fa362000f9d62000f978462000f5f565b62000f78565b62000f69565b9050919050565b62000fb58162000f82565b82525050565b600060608201905062000fd2600083018662000f4e565b62000fe1602083018562000f4e565b62000ff0604083018462000faa565b949350505050565b620010038162000de9565b82525050565b600060408201905062001020600083018562000f4e565b6200102f602083018462000ff8565b9392505050565b60008115159050919050565b6200104d8162001036565b81146200105957600080fd5b50565b6000815190506200106d8162001042565b92915050565b6000602082840312156200108c576200108b62000eb2565b5b60006200109c848285016200105c565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ee601f83620010a5565b9150620010fb82620010b6565b602082019050919050565b600060208201905081810360008301526200112181620010df565b9050919050565b6000620011358262000de9565b9150620011428362000de9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200117a576200117962000c66565b5b828201905092915050565b60006020820190506200119c600083018462000ff8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001200602483620010a5565b91506200120d82620011a2565b604082019050919050565b600060208201905081810360008301526200123381620011f1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001298602283620010a5565b9150620012a5826200123a565b604082019050919050565b60006020820190508181036000830152620012cb8162001289565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062001330602683620010a5565b91506200133d82620012d2565b604082019050919050565b60006020820190508181036000830152620013638162001321565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013a2602083620010a5565b9150620013af826200136a565b602082019050919050565b60006020820190508181036000830152620013d58162001393565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200142457607f821691505b602082108114156200143b576200143a620013dc565b5b50919050565b6119de80620014516000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610278578063a9059cbb146102a8578063dd62ed3e146102d8578063f2fde38b14610308576100f5565b8063715018a614610214578063885229981461021e5780638da5cb5b1461023c57806395d89b411461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f9190611052565b60405180910390f35b610132600480360381019061012d919061110d565b6103b6565b60405161013f9190611168565b60405180910390f35b6101506103d9565b60405161015d9190611192565b60405180910390f35b610180600480360381019061017b91906111ad565b6103e3565b60405161018d9190611168565b60405180910390f35b61019e610412565b6040516101ab919061121c565b60405180910390f35b6101ce60048036038101906101c9919061110d565b61041b565b6040516101db9190611168565b60405180910390f35b6101fe60048036038101906101f99190611237565b610452565b60405161020b9190611192565b60405180910390f35b61021c61049a565b005b6102266104ae565b6040516102339190611273565b60405180910390f35b6102446104d4565b6040516102519190611273565b60405180910390f35b6102626104fe565b60405161026f9190611052565b60405180910390f35b610292600480360381019061028d919061110d565b610590565b60405161029f9190611168565b60405180910390f35b6102c260048036038101906102bd919061110d565b610607565b6040516102cf9190611168565b60405180910390f35b6102f260048036038101906102ed919061128e565b61062a565b6040516102ff9190611192565b60405180910390f35b610322600480360381019061031d9190611237565b6106b1565b005b606060038054610333906112fd565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906112fd565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000806103c1610735565b90506103ce81858561073d565b600191505092915050565b6000600254905090565b6000806103ee610735565b90506103fb858285610908565b610406858585610994565b60019150509392505050565b60006009905090565b600080610426610735565b9050610447818585610438858961062a565b610442919061135e565b61073d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a2610b37565b6104ac6000610bb5565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461050d906112fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610539906112fd565b80156105865780601f1061055b57610100808354040283529160200191610586565b820191906000526020600020905b81548152906001019060200180831161056957829003601f168201915b5050505050905090565b60008061059b610735565b905060006105a9828661062a565b9050838110156105ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590611426565b60405180910390fd5b6105fb828686840361073d565b60019250505092915050565b600080610612610735565b905061061f818585610994565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106b9610b37565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610720906114b8565b60405180910390fd5b61073281610bb5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a49061154a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561081d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610814906115dc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108fb9190611192565b60405180910390a3505050565b6000610914848461062a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461098e5781811015610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790611648565b60405180910390fd5b61098d848484840361073d565b5b50505050565b600081116109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906116b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611746565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2657600073ffffffffffffffffffffffffffffffffffffffff16610abf8383610c7b565b73ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90611746565b60405180910390fd5b610b21838383610e17565b610b32565b610b31838383610e17565b5b505050565b610b3f610735565b73ffffffffffffffffffffffffffffffffffffffff16610b5d6104d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa906117b2565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808360601b90506000806364ebc760905060005b60148160ff161015610dc657600a60ff166004858360ff1660148110610cba57610cb96117d2565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1610610cf4576000610d38565b6004848260ff1660148110610d0c57610d0b6117d2565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c5b60ff1683610d46919061135e565b9250600a60ff16600f60f81b858360ff1660148110610d6857610d676117d2565b5b1a60f81b1660f81c60ff1610610d7f576000610da3565b600f60f81b848260ff1660148110610d9a57610d996117d2565b5b1a60f81b1660f81c5b60ff1683610db1919061135e565b92508080610dbe90611801565b915050610c91565b50818283610dd4919061182b565b633b9aca0087610de491906118b4565b610dee91906118e5565b1480610df957508042115b15610e0957859350505050610e11565b600093505050505b92915050565b610e22838383610faf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90611988565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f969190611192565b60405180910390a3610fa9848484610fb4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ff3578082015181840152602081019050610fd8565b83811115611002576000848401525b50505050565b6000601f19601f8301169050919050565b600061102482610fb9565b61102e8185610fc4565b935061103e818560208601610fd5565b61104781611008565b840191505092915050565b6000602082019050818103600083015261106c8184611019565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110a482611079565b9050919050565b6110b481611099565b81146110bf57600080fd5b50565b6000813590506110d1816110ab565b92915050565b6000819050919050565b6110ea816110d7565b81146110f557600080fd5b50565b600081359050611107816110e1565b92915050565b6000806040838503121561112457611123611074565b5b6000611132858286016110c2565b9250506020611143858286016110f8565b9150509250929050565b60008115159050919050565b6111628161114d565b82525050565b600060208201905061117d6000830184611159565b92915050565b61118c816110d7565b82525050565b60006020820190506111a76000830184611183565b92915050565b6000806000606084860312156111c6576111c5611074565b5b60006111d4868287016110c2565b93505060206111e5868287016110c2565b92505060406111f6868287016110f8565b9150509250925092565b600060ff82169050919050565b61121681611200565b82525050565b6000602082019050611231600083018461120d565b92915050565b60006020828403121561124d5761124c611074565b5b600061125b848285016110c2565b91505092915050565b61126d81611099565b82525050565b60006020820190506112886000830184611264565b92915050565b600080604083850312156112a5576112a4611074565b5b60006112b3858286016110c2565b92505060206112c4858286016110c2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061131557607f821691505b60208210811415611329576113286112ce565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611369826110d7565b9150611374836110d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113a9576113a861132f565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611410602583610fc4565b915061141b826113b4565b604082019050919050565b6000602082019050818103600083015261143f81611403565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114a2602683610fc4565b91506114ad82611446565b604082019050919050565b600060208201905081810360008301526114d181611495565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611534602483610fc4565b915061153f826114d8565b604082019050919050565b6000602082019050818103600083015261156381611527565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115c6602283610fc4565b91506115d18261156a565b604082019050919050565b600060208201905081810360008301526115f5816115b9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611632601d83610fc4565b915061163d826115fc565b602082019050919050565b6000602082019050818103600083015261166181611625565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600061169e601083610fc4565b91506116a982611668565b602082019050919050565b600060208201905081810360008301526116cd81611691565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611730602583610fc4565b915061173b826116d4565b604082019050919050565b6000602082019050818103600083015261175f81611723565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061179c602083610fc4565b91506117a782611766565b602082019050919050565b600060208201905081810360008301526117cb8161178f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061180c82611200565b915060ff8214156118205761181f61132f565b5b600182019050919050565b6000611836826110d7565b9150611841836110d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561187a5761187961132f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006118bf826110d7565b91506118ca836110d7565b9250826118da576118d9611885565b5b828204905092915050565b60006118f0826110d7565b91506118fb836110d7565b92508261190b5761190a611885565b5b828206905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611972602683610fc4565b915061197d82611916565b604082019050919050565b600060208201905081810360008301526119a181611965565b905091905056fea2646970667358221220c72ef519e791c97ab7af9b52262515c74b8697e33bd71b1be5dc963026772e6464736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610278578063a9059cbb146102a8578063dd62ed3e146102d8578063f2fde38b14610308576100f5565b8063715018a614610214578063885229981461021e5780638da5cb5b1461023c57806395d89b411461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f9190611052565b60405180910390f35b610132600480360381019061012d919061110d565b6103b6565b60405161013f9190611168565b60405180910390f35b6101506103d9565b60405161015d9190611192565b60405180910390f35b610180600480360381019061017b91906111ad565b6103e3565b60405161018d9190611168565b60405180910390f35b61019e610412565b6040516101ab919061121c565b60405180910390f35b6101ce60048036038101906101c9919061110d565b61041b565b6040516101db9190611168565b60405180910390f35b6101fe60048036038101906101f99190611237565b610452565b60405161020b9190611192565b60405180910390f35b61021c61049a565b005b6102266104ae565b6040516102339190611273565b60405180910390f35b6102446104d4565b6040516102519190611273565b60405180910390f35b6102626104fe565b60405161026f9190611052565b60405180910390f35b610292600480360381019061028d919061110d565b610590565b60405161029f9190611168565b60405180910390f35b6102c260048036038101906102bd919061110d565b610607565b6040516102cf9190611168565b60405180910390f35b6102f260048036038101906102ed919061128e565b61062a565b6040516102ff9190611192565b60405180910390f35b610322600480360381019061031d9190611237565b6106b1565b005b606060038054610333906112fd565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906112fd565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000806103c1610735565b90506103ce81858561073d565b600191505092915050565b6000600254905090565b6000806103ee610735565b90506103fb858285610908565b610406858585610994565b60019150509392505050565b60006009905090565b600080610426610735565b9050610447818585610438858961062a565b610442919061135e565b61073d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a2610b37565b6104ac6000610bb5565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461050d906112fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610539906112fd565b80156105865780601f1061055b57610100808354040283529160200191610586565b820191906000526020600020905b81548152906001019060200180831161056957829003601f168201915b5050505050905090565b60008061059b610735565b905060006105a9828661062a565b9050838110156105ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590611426565b60405180910390fd5b6105fb828686840361073d565b60019250505092915050565b600080610612610735565b905061061f818585610994565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106b9610b37565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610720906114b8565b60405180910390fd5b61073281610bb5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a49061154a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561081d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610814906115dc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108fb9190611192565b60405180910390a3505050565b6000610914848461062a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461098e5781811015610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790611648565b60405180910390fd5b61098d848484840361073d565b5b50505050565b600081116109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906116b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611746565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2657600073ffffffffffffffffffffffffffffffffffffffff16610abf8383610c7b565b73ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90611746565b60405180910390fd5b610b21838383610e17565b610b32565b610b31838383610e17565b5b505050565b610b3f610735565b73ffffffffffffffffffffffffffffffffffffffff16610b5d6104d4565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa906117b2565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808360601b90506000806364ebc760905060005b60148160ff161015610dc657600a60ff166004858360ff1660148110610cba57610cb96117d2565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1610610cf4576000610d38565b6004848260ff1660148110610d0c57610d0b6117d2565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c5b60ff1683610d46919061135e565b9250600a60ff16600f60f81b858360ff1660148110610d6857610d676117d2565b5b1a60f81b1660f81c60ff1610610d7f576000610da3565b600f60f81b848260ff1660148110610d9a57610d996117d2565b5b1a60f81b1660f81c5b60ff1683610db1919061135e565b92508080610dbe90611801565b915050610c91565b50818283610dd4919061182b565b633b9aca0087610de491906118b4565b610dee91906118e5565b1480610df957508042115b15610e0957859350505050610e11565b600093505050505b92915050565b610e22838383610faf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90611988565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f969190611192565b60405180910390a3610fa9848484610fb4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ff3578082015181840152602081019050610fd8565b83811115611002576000848401525b50505050565b6000601f19601f8301169050919050565b600061102482610fb9565b61102e8185610fc4565b935061103e818560208601610fd5565b61104781611008565b840191505092915050565b6000602082019050818103600083015261106c8184611019565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110a482611079565b9050919050565b6110b481611099565b81146110bf57600080fd5b50565b6000813590506110d1816110ab565b92915050565b6000819050919050565b6110ea816110d7565b81146110f557600080fd5b50565b600081359050611107816110e1565b92915050565b6000806040838503121561112457611123611074565b5b6000611132858286016110c2565b9250506020611143858286016110f8565b9150509250929050565b60008115159050919050565b6111628161114d565b82525050565b600060208201905061117d6000830184611159565b92915050565b61118c816110d7565b82525050565b60006020820190506111a76000830184611183565b92915050565b6000806000606084860312156111c6576111c5611074565b5b60006111d4868287016110c2565b93505060206111e5868287016110c2565b92505060406111f6868287016110f8565b9150509250925092565b600060ff82169050919050565b61121681611200565b82525050565b6000602082019050611231600083018461120d565b92915050565b60006020828403121561124d5761124c611074565b5b600061125b848285016110c2565b91505092915050565b61126d81611099565b82525050565b60006020820190506112886000830184611264565b92915050565b600080604083850312156112a5576112a4611074565b5b60006112b3858286016110c2565b92505060206112c4858286016110c2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061131557607f821691505b60208210811415611329576113286112ce565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611369826110d7565b9150611374836110d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113a9576113a861132f565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611410602583610fc4565b915061141b826113b4565b604082019050919050565b6000602082019050818103600083015261143f81611403565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114a2602683610fc4565b91506114ad82611446565b604082019050919050565b600060208201905081810360008301526114d181611495565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611534602483610fc4565b915061153f826114d8565b604082019050919050565b6000602082019050818103600083015261156381611527565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115c6602283610fc4565b91506115d18261156a565b604082019050919050565b600060208201905081810360008301526115f5816115b9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611632601d83610fc4565b915061163d826115fc565b602082019050919050565b6000602082019050818103600083015261166181611625565b9050919050565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b600061169e601083610fc4565b91506116a982611668565b602082019050919050565b600060208201905081810360008301526116cd81611691565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611730602583610fc4565b915061173b826116d4565b604082019050919050565b6000602082019050818103600083015261175f81611723565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061179c602083610fc4565b91506117a782611766565b602082019050919050565b600060208201905081810360008301526117cb8161178f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061180c82611200565b915060ff8214156118205761181f61132f565b5b600182019050919050565b6000611836826110d7565b9150611841836110d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561187a5761187961132f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006118bf826110d7565b91506118ca836110d7565b9250826118da576118d9611885565b5b828204905092915050565b60006118f0826110d7565b91506118fb836110d7565b92508261190b5761190a611885565b5b828206905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611972602683610fc4565b915061197d82611916565b604082019050919050565b600060208201905081810360008301526119a181611965565b905091905056fea2646970667358221220c72ef519e791c97ab7af9b52262515c74b8697e33bd71b1be5dc963026772e6464736f6c634300080c0033

Deployed Bytecode Sourcemap

18489:2157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10573:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12293:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11062:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12502:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19384:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13172:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11233:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4333:103;;;:::i;:::-;;18570:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4028:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10792:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13913:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11566:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10573:100;10627:13;10660:5;10653:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10573:100;:::o;12293:201::-;12376:4;12393:13;12409:12;:10;:12::i;:::-;12393:28;;12432:32;12441:5;12448:7;12457:6;12432:8;:32::i;:::-;12482:4;12475:11;;;12293:201;;;;:::o;11062:108::-;11123:7;11150:12;;11143:19;;11062:108;:::o;12502:261::-;12599:4;12616:15;12634:12;:10;:12::i;:::-;12616:30;;12657:38;12673:4;12679:7;12688:6;12657:15;:38::i;:::-;12706:27;12716:4;12722:2;12726:6;12706:9;:27::i;:::-;12751:4;12744:11;;;12502:261;;;;;:::o;19384:92::-;19442:5;19467:1;19460:8;;19384:92;:::o;13172:238::-;13260:4;13277:13;13293:12;:10;:12::i;:::-;13277:28;;13316:64;13325:5;13332:7;13369:10;13341:25;13351:5;13358:7;13341:9;:25::i;:::-;:38;;;;:::i;:::-;13316:8;:64::i;:::-;13398:4;13391:11;;;13172:238;;;;:::o;11233:127::-;11307:7;11334:9;:18;11344:7;11334:18;;;;;;;;;;;;;;;;11327:25;;11233:127;;;:::o;4333:103::-;3914:13;:11;:13::i;:::-;4398:30:::1;4425:1;4398:18;:30::i;:::-;4333:103::o:0;18570:28::-;;;;;;;;;;;;;:::o;4028:87::-;4074:7;4101:6;;;;;;;;;;;4094:13;;4028:87;:::o;10792:104::-;10848:13;10881:7;10874:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10792:104;:::o;13913:424::-;14006:4;14023:13;14039:12;:10;:12::i;:::-;14023:28;;14062:24;14089:25;14099:5;14106:7;14089:9;:25::i;:::-;14062:52;;14153:15;14133:16;:35;;14125:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14238:60;14247:5;14254:7;14282:15;14263:16;:34;14238:8;:60::i;:::-;14325:4;14318:11;;;;13913:424;;;;:::o;11566:193::-;11645:4;11662:13;11678:12;:10;:12::i;:::-;11662:28;;11701;11711:5;11718:2;11722:6;11701:9;:28::i;:::-;11747:4;11740:11;;;11566:193;;;;:::o;11822:151::-;11911:7;11938:11;:18;11950:5;11938:18;;;;;;;;;;;;;;;:27;11957:7;11938:27;;;;;;;;;;;;;;;;11931:34;;11822:151;;;;:::o;4444:201::-;3914:13;:11;:13::i;:::-;4553:1:::1;4533:22;;:8;:22;;;;4525:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4609:28;4628:8;4609:18;:28::i;:::-;4444:201:::0;:::o;3145:98::-;3198:7;3225:10;3218:17;;3145:98;:::o;17218:346::-;17337:1;17320:19;;:5;:19;;;;17312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17418:1;17399:21;;:7;:21;;;;17391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17502:6;17472:11;:18;17484:5;17472:18;;;;;;;;;;;;;;;:27;17491:7;17472:27;;;;;;;;;;;;;;;:36;;;;17540:7;17524:32;;17533:5;17524:32;;;17549:6;17524:32;;;;;;:::i;:::-;;;;;;;;17218:346;;;:::o;17855:407::-;17956:24;17983:25;17993:5;18000:7;17983:9;:25::i;:::-;17956:52;;18043:17;18023:16;:37;18019:236;;18105:6;18085:16;:26;;18077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18181:51;18190:5;18197:7;18225:6;18206:16;:25;18181:8;:51::i;:::-;18019:236;17945:317;17855:407;;;:::o;19484:543::-;19625:1;19616:6;:10;19608:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;19682:1;19666:18;;:4;:18;;;;19658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19750:13;;;;;;;;;;;19742:21;;:4;:21;;;19739:204;;;19818:1;19788:32;;:18;19796:2;19799:6;19788:7;:18::i;:::-;:32;;;;19780:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;19877:33;19893:4;19899:2;19903:6;19877:15;:33::i;:::-;19925:7;;19739:204;19955:33;19971:4;19977:2;19981:6;19955:15;:33::i;:::-;19484:543;;;;:::o;4193:132::-;4268:12;:10;:12::i;:::-;4257:23;;:7;:5;:7::i;:::-;:23;;;4249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4193:132::o;4653:191::-;4727:16;4746:6;;;;;;;;;;;4727:25;;4772:8;4763:6;;:17;;;;;;;;;;;;;;;;;;4827:8;4796:40;;4817:8;4796:40;;;;;;;;;;;;4716:128;4653:191;:::o;20035:608::-;20104:7;20124:12;20147:4;20139:13;;20124:28;;20163:13;20191:17;20211:10;20191:30;;20239:7;20234:209;20256:2;20252:1;:6;;;20234:209;;;20317:2;20289:31;;20306:1;20295:4;20300:1;20295:7;;;;;;;;;:::i;:::-;;;;;:12;;;;;20289:19;;:31;;;:57;;20345:1;20289:57;;;20340:1;20329:4;20334:1;20329:7;;;;;;;;;:::i;:::-;;;;;:12;;;;;20323:19;;20289:57;20280:66;;;;;;;:::i;:::-;;;20400:2;20370:33;;20386:4;20376:14;;:4;20381:1;20376:7;;;;;;;;;:::i;:::-;;;;;:14;20370:21;;:33;;;:61;;20430:1;20370:61;;;20422:4;20412:14;;:4;20417:1;20412:7;;;;;;;;;:::i;:::-;;;;;:14;20406:21;;20370:61;20361:70;;;;;;;:::i;:::-;;;20260:3;;;;;:::i;:::-;;;;20234:209;;;;20491:5;20483;20477;:11;;;;:::i;:::-;20468:5;20460:6;:14;;;;:::i;:::-;20459:30;;;;:::i;:::-;:37;20458:70;;;;20519:9;20501:15;:27;20458:70;20455:171;;;20559:4;20544:20;;;;;;;20455:171;20612:1;20597:17;;;;;20035:608;;;;;:::o;14345:628::-;14436:38;14457:4;14463:2;14467:6;14436:20;:38::i;:::-;14487:19;14509:9;:15;14519:4;14509:15;;;;;;;;;;;;;;;;14487:37;;14558:6;14543:11;:21;;14535:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14667:6;14653:11;:20;14635:9;:15;14645:4;14635:15;;;;;;;;;;;;;;;:38;;;;14858:6;14841:9;:13;14851:2;14841:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14904:2;14889:26;;14898:4;14889:26;;;14908:6;14889:26;;;;;;:::i;:::-;;;;;;;;14928:37;14948:4;14954:2;14958:6;14928:19;:37::i;:::-;14423:550;14345:628;;;:::o;18268:91::-;;;;:::o;18365:90::-;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:180::-;6628:77;6625:1;6618:88;6725:4;6722:1;6715:15;6749:4;6746:1;6739:15;6766:305;6806:3;6825:20;6843:1;6825:20;:::i;:::-;6820:25;;6859:20;6877:1;6859:20;:::i;:::-;6854:25;;7013:1;6945:66;6941:74;6938:1;6935:81;6932:107;;;7019:18;;:::i;:::-;6932:107;7063:1;7060;7056:9;7049:16;;6766:305;;;;:::o;7077:224::-;7217:34;7213:1;7205:6;7201:14;7194:58;7286:7;7281:2;7273:6;7269:15;7262:32;7077:224;:::o;7307:366::-;7449:3;7470:67;7534:2;7529:3;7470:67;:::i;:::-;7463:74;;7546:93;7635:3;7546:93;:::i;:::-;7664:2;7659:3;7655:12;7648:19;;7307:366;;;:::o;7679:419::-;7845:4;7883:2;7872:9;7868:18;7860:26;;7932:9;7926:4;7922:20;7918:1;7907:9;7903:17;7896:47;7960:131;8086:4;7960:131;:::i;:::-;7952:139;;7679:419;;;:::o;8104:225::-;8244:34;8240:1;8232:6;8228:14;8221:58;8313:8;8308:2;8300:6;8296:15;8289:33;8104:225;:::o;8335:366::-;8477:3;8498:67;8562:2;8557:3;8498:67;:::i;:::-;8491:74;;8574:93;8663:3;8574:93;:::i;:::-;8692:2;8687:3;8683:12;8676:19;;8335:366;;;:::o;8707:419::-;8873:4;8911:2;8900:9;8896:18;8888:26;;8960:9;8954:4;8950:20;8946:1;8935:9;8931:17;8924:47;8988:131;9114:4;8988:131;:::i;:::-;8980:139;;8707:419;;;:::o;9132:223::-;9272:34;9268:1;9260:6;9256:14;9249:58;9341:6;9336:2;9328:6;9324:15;9317:31;9132:223;:::o;9361:366::-;9503:3;9524:67;9588:2;9583:3;9524:67;:::i;:::-;9517:74;;9600:93;9689:3;9600:93;:::i;:::-;9718:2;9713:3;9709:12;9702:19;;9361:366;;;:::o;9733:419::-;9899:4;9937:2;9926:9;9922:18;9914:26;;9986:9;9980:4;9976:20;9972:1;9961:9;9957:17;9950:47;10014:131;10140:4;10014:131;:::i;:::-;10006:139;;9733:419;;;:::o;10158:221::-;10298:34;10294:1;10286:6;10282:14;10275:58;10367:4;10362:2;10354:6;10350:15;10343:29;10158:221;:::o;10385:366::-;10527:3;10548:67;10612:2;10607:3;10548:67;:::i;:::-;10541:74;;10624:93;10713:3;10624:93;:::i;:::-;10742:2;10737:3;10733:12;10726:19;;10385:366;;;:::o;10757:419::-;10923:4;10961:2;10950:9;10946:18;10938:26;;11010:9;11004:4;11000:20;10996:1;10985:9;10981:17;10974:47;11038:131;11164:4;11038:131;:::i;:::-;11030:139;;10757:419;;;:::o;11182:179::-;11322:31;11318:1;11310:6;11306:14;11299:55;11182:179;:::o;11367:366::-;11509:3;11530:67;11594:2;11589:3;11530:67;:::i;:::-;11523:74;;11606:93;11695:3;11606:93;:::i;:::-;11724:2;11719:3;11715:12;11708:19;;11367:366;;;:::o;11739:419::-;11905:4;11943:2;11932:9;11928:18;11920:26;;11992:9;11986:4;11982:20;11978:1;11967:9;11963:17;11956:47;12020:131;12146:4;12020:131;:::i;:::-;12012:139;;11739:419;;;:::o;12164:166::-;12304:18;12300:1;12292:6;12288:14;12281:42;12164:166;:::o;12336:366::-;12478:3;12499:67;12563:2;12558:3;12499:67;:::i;:::-;12492:74;;12575:93;12664:3;12575:93;:::i;:::-;12693:2;12688:3;12684:12;12677:19;;12336:366;;;:::o;12708:419::-;12874:4;12912:2;12901:9;12897:18;12889:26;;12961:9;12955:4;12951:20;12947:1;12936:9;12932:17;12925:47;12989:131;13115:4;12989:131;:::i;:::-;12981:139;;12708:419;;;:::o;13133:224::-;13273:34;13269:1;13261:6;13257:14;13250:58;13342:7;13337:2;13329:6;13325:15;13318:32;13133:224;:::o;13363:366::-;13505:3;13526:67;13590:2;13585:3;13526:67;:::i;:::-;13519:74;;13602:93;13691:3;13602:93;:::i;:::-;13720:2;13715:3;13711:12;13704:19;;13363:366;;;:::o;13735:419::-;13901:4;13939:2;13928:9;13924:18;13916:26;;13988:9;13982:4;13978:20;13974:1;13963:9;13959:17;13952:47;14016:131;14142:4;14016:131;:::i;:::-;14008:139;;13735:419;;;:::o;14160:182::-;14300:34;14296:1;14288:6;14284:14;14277:58;14160:182;:::o;14348:366::-;14490:3;14511:67;14575:2;14570:3;14511:67;:::i;:::-;14504:74;;14587:93;14676:3;14587:93;:::i;:::-;14705:2;14700:3;14696:12;14689:19;;14348:366;;;:::o;14720:419::-;14886:4;14924:2;14913:9;14909:18;14901:26;;14973:9;14967:4;14963:20;14959:1;14948:9;14944:17;14937:47;15001:131;15127:4;15001:131;:::i;:::-;14993:139;;14720:419;;;:::o;15145:180::-;15193:77;15190:1;15183:88;15290:4;15287:1;15280:15;15314:4;15311:1;15304:15;15331:167;15368:3;15391:22;15407:5;15391:22;:::i;:::-;15382:31;;15435:4;15428:5;15425:15;15422:41;;;15443:18;;:::i;:::-;15422:41;15490:1;15483:5;15479:13;15472:20;;15331:167;;;:::o;15504:348::-;15544:7;15567:20;15585:1;15567:20;:::i;:::-;15562:25;;15601:20;15619:1;15601:20;:::i;:::-;15596:25;;15789:1;15721:66;15717:74;15714:1;15711:81;15706:1;15699:9;15692:17;15688:105;15685:131;;;15796:18;;:::i;:::-;15685:131;15844:1;15841;15837:9;15826:20;;15504:348;;;;:::o;15858:180::-;15906:77;15903:1;15896:88;16003:4;16000:1;15993:15;16027:4;16024:1;16017:15;16044:185;16084:1;16101:20;16119:1;16101:20;:::i;:::-;16096:25;;16135:20;16153:1;16135:20;:::i;:::-;16130:25;;16174:1;16164:35;;16179:18;;:::i;:::-;16164:35;16221:1;16218;16214:9;16209:14;;16044:185;;;;:::o;16235:176::-;16267:1;16284:20;16302:1;16284:20;:::i;:::-;16279:25;;16318:20;16336:1;16318:20;:::i;:::-;16313:25;;16357:1;16347:35;;16362:18;;:::i;:::-;16347:35;16403:1;16400;16396:9;16391:14;;16235:176;;;;:::o;16417:225::-;16557:34;16553:1;16545:6;16541:14;16534:58;16626:8;16621:2;16613:6;16609:15;16602:33;16417:225;:::o;16648:366::-;16790:3;16811:67;16875:2;16870:3;16811:67;:::i;:::-;16804:74;;16887:93;16976:3;16887:93;:::i;:::-;17005:2;17000:3;16996:12;16989:19;;16648:366;;;:::o;17020:419::-;17186:4;17224:2;17213:9;17209:18;17201:26;;17273:9;17267:4;17263:20;17259:1;17248:9;17244:17;17237:47;17301:131;17427:4;17301:131;:::i;:::-;17293:139;;17020:419;;;:::o

Swarm Source

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