ETH Price: $3,027.68 (+2.31%)
Gas: 2 Gwei

Token

OnlyFrogs (OFR)
 

Overview

Max Total Supply

420,000,000,000,000 OFR

Holders

311

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
unclebrim.eth
Balance
89,477,492,395.482384859930058797 OFR

Value
$0.00
0xE3A8a23599a359A4dD927766ea52f5de09362bfD
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:
OnlyFrogs

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-05-03
*/

// SPDX-License-Identifier: MIT

// OnlyFrogs is made for all frog and pepe enjoyers out there. 
// Each Month, we will use tokens from our treasury to create a new community voted liquidity pool with the frog coin of their choice! (PEPE, PEEPO, etc)
// Join OnlyFrogs as we leap our way to the top!

// Website: www.onlyfrogs.club
// Twitter: www.twitter.com/OnlyFrogsETH
// Telegram: www.t.me/OnlyFrogsETH

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol
pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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: OnlyFrogs.sol



// OnlyFrogs is made for all frog and pepe enjoyers out there. 
// Each Month, we will use tokens from our treasury to create a new community voted liquidity pool with the frog coin of their choice! (PEPE, PEEPO, etc)
// Join OnlyFrogs as we leap our way to the top!

// Website: www.onlyfrogs.club
// Twitter: www.twitter.com/OnlyFrogsETH
// Telegram: www.t.me/OnlyFrogsETH


pragma solidity ^0.8.18;





contract OnlyFrogs is IERC20, Ownable {
    string public name = "OnlyFrogs";
    string public symbol = "OFR";
    uint8 public decimals = 18;
    uint256 private constant _totalSupply = 420_000_000_000_000 * 10**18;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    bool private inSwapAndLiquify;

    event LiquidityAdded(uint256 tokenAmount, uint256 ethAmount);

    constructor() {
        _balances[msg.sender] = _totalSupply;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        uint256 currentAllowance = _allowances[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(msg.sender, spender, currentAllowance - subtractedValue);
        return true;
    }

        function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer amount must be greater than zero");
        require(_balances[sender] >= amount, "ERC20: transfer amount exceeds balance");

        _balances[sender] -= amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        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);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) external onlyOwner {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this), tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
        inSwapAndLiquify = false;
        emit LiquidityAdded(tokenAmount, ethAmount);
    }

    function withdrawETH(uint256 amount) external onlyOwner {
        require(amount <= address(this).balance, "Not enough ETH in the contract");
        (bool success,) = payable(msg.sender).call{value: amount}("");
        require(success, "Withdrawal failed");
    }

    receive() external payable {}

    fallback() external payable {}

}

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":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"LiquidityAdded","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600981526020017f4f6e6c7946726f67730000000000000000000000000000000000000000000000815250600190816200004a9190620006f0565b506040518060400160405280600381526020017f4f4652000000000000000000000000000000000000000000000000000000000081525060029081620000919190620006f0565b506012600360006101000a81548160ff021916908360ff160217905550348015620000bb57600080fd5b50620000dc620000d0620003aa60201b60201c565b620003b260201b60201c565b6d14b5253145b397d6545100000000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000193573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b9919062000841565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000221573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000247919062000841565b6040518363ffffffff1660e01b81526004016200026692919062000884565b6020604051808303816000875af115801562000286573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ac919062000841565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6d14b5253145b397d65451000000006040516200039b9190620008c2565b60405180910390a350620008df565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f857607f821691505b6020821081036200050e576200050d620004b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000539565b62000584868362000539565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d1620005cb620005c5846200059c565b620005a6565b6200059c565b9050919050565b6000819050919050565b620005ed83620005b0565b62000605620005fc82620005d8565b84845462000546565b825550505050565b600090565b6200061c6200060d565b62000629818484620005e2565b505050565b5b8181101562000651576200064560008262000612565b6001810190506200062f565b5050565b601f821115620006a0576200066a8162000514565b620006758462000529565b8101602085101562000685578190505b6200069d620006948562000529565b8301826200062e565b50505b505050565b600082821c905092915050565b6000620006c560001984600802620006a5565b1980831691505092915050565b6000620006e08383620006b2565b9150826002028217905092915050565b620006fb8262000476565b67ffffffffffffffff81111562000717576200071662000481565b5b620007238254620004df565b6200073082828562000655565b600060209050601f83116001811462000768576000841562000753578287015190505b6200075f8582620006d2565b865550620007cf565b601f198416620007788662000514565b60005b82811015620007a2578489015182556001820191506020850194506020810190506200077b565b86831015620007c25784890151620007be601f891682620006b2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200080982620007dc565b9050919050565b6200081b81620007fc565b81146200082757600080fd5b50565b6000815190506200083b8162000810565b92915050565b6000602082840312156200085a5762000859620007d7565b5b60006200086a848285016200082a565b91505092915050565b6200087e81620007fc565b82525050565b60006040820190506200089b600083018562000873565b620008aa602083018462000873565b9392505050565b620008bc816200059c565b82525050565b6000602082019050620008d96000830184620008b1565b92915050565b611e6580620008ef6000396000f3fe60806040526004361061010d5760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610377578063a9059cbb146103b4578063dd62ed3e146103f1578063f14210a61461042e578063f2fde38b1461045757610114565b8063715018a6146102e15780638da5cb5b146102f857806395d89b41146103235780639cd441da1461034e57610114565b806323b872dd116100dc57806323b872dd146101d4578063313ce56714610211578063395093511461023c57806349bd5a5e1461027957806370a08231146102a457610114565b806306fdde0314610116578063095ea7b3146101415780631694505e1461017e57806318160ddd146101a957610114565b3661011457005b005b34801561012257600080fd5b5061012b610480565b604051610138919061128e565b60405180910390f35b34801561014d57600080fd5b5061016860048036038101906101639190611349565b61050e565b60405161017591906113a4565b60405180910390f35b34801561018a57600080fd5b50610193610525565b6040516101a0919061141e565b60405180910390f35b3480156101b557600080fd5b506101be61054b565b6040516101cb9190611448565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f69190611463565b610561565b60405161020891906113a4565b60405180910390f35b34801561021d57600080fd5b5061022661060b565b60405161023391906114d2565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e9190611349565b61061e565b60405161027091906113a4565b60405180910390f35b34801561028557600080fd5b5061028e6106bc565b60405161029b91906114fc565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190611517565b6106e2565b6040516102d89190611448565b60405180910390f35b3480156102ed57600080fd5b506102f661072b565b005b34801561030457600080fd5b5061030d61073f565b60405161031a91906114fc565b60405180910390f35b34801561032f57600080fd5b50610338610768565b604051610345919061128e565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190611544565b6107f6565b005b34801561038357600080fd5b5061039e60048036038101906103999190611349565b610930565b6040516103ab91906113a4565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190611349565b610a16565b6040516103e891906113a4565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190611584565b610a2d565b6040516104259190611448565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906115c4565b610ab4565b005b34801561046357600080fd5b5061047e60048036038101906104799190611517565b610baf565b005b6001805461048d90611620565b80601f01602080910402602001604051908101604052809291908181526020018280546104b990611620565b80156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b505050505081565b600061051b338484610c32565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006d14b5253145b397d6545100000000905090565b600061056e848484610dfb565b610600843384600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105fb9190611680565b610c32565b600190509392505050565b600360009054906101000a900460ff1681565b60006106b2338484600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106ad91906116b4565b610c32565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107336110b4565b61073d6000611132565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002805461077590611620565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190611620565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b505050505081565b6107fe6110b4565b61082b30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c32565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161089296959493929190611723565b60606040518083038185885af11580156108b0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108d59190611799565b5050506000600760146101000a81548160ff0219169083151502179055507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b82826040516109249291906117ec565b60405180910390a15050565b600080600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611887565b60405180910390fd5b610a0b33858584610a069190611680565b610c32565b600191505092915050565b6000610a23338484610dfb565b6001905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610abc6110b4565b47811115610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af6906118f3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610b2590611944565b60006040518083038185875af1925050503d8060008114610b62576040519150601f19603f3d011682016040523d82523d6000602084013e610b67565b606091505b5050905080610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906119a5565b60405180910390fd5b5050565b610bb76110b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611a37565b60405180910390fd5b610c2f81611132565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790611b5b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dee9190611448565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611c7f565b60405180910390fd5b60008111610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390611d11565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611da3565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fed9190611680565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104391906116b4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110a79190611448565b60405180910390a3505050565b6110bc6111f6565b73ffffffffffffffffffffffffffffffffffffffff166110da61073f565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790611e0f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123857808201518184015260208101905061121d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611260826111fe565b61126a8185611209565b935061127a81856020860161121a565b61128381611244565b840191505092915050565b600060208201905081810360008301526112a88184611255565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e0826112b5565b9050919050565b6112f0816112d5565b81146112fb57600080fd5b50565b60008135905061130d816112e7565b92915050565b6000819050919050565b61132681611313565b811461133157600080fd5b50565b6000813590506113438161131d565b92915050565b600080604083850312156113605761135f6112b0565b5b600061136e858286016112fe565b925050602061137f85828601611334565b9150509250929050565b60008115159050919050565b61139e81611389565b82525050565b60006020820190506113b96000830184611395565b92915050565b6000819050919050565b60006113e46113df6113da846112b5565b6113bf565b6112b5565b9050919050565b60006113f6826113c9565b9050919050565b6000611408826113eb565b9050919050565b611418816113fd565b82525050565b6000602082019050611433600083018461140f565b92915050565b61144281611313565b82525050565b600060208201905061145d6000830184611439565b92915050565b60008060006060848603121561147c5761147b6112b0565b5b600061148a868287016112fe565b935050602061149b868287016112fe565b92505060406114ac86828701611334565b9150509250925092565b600060ff82169050919050565b6114cc816114b6565b82525050565b60006020820190506114e760008301846114c3565b92915050565b6114f6816112d5565b82525050565b600060208201905061151160008301846114ed565b92915050565b60006020828403121561152d5761152c6112b0565b5b600061153b848285016112fe565b91505092915050565b6000806040838503121561155b5761155a6112b0565b5b600061156985828601611334565b925050602061157a85828601611334565b9150509250929050565b6000806040838503121561159b5761159a6112b0565b5b60006115a9858286016112fe565b92505060206115ba858286016112fe565b9150509250929050565b6000602082840312156115da576115d96112b0565b5b60006115e884828501611334565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061163857607f821691505b60208210810361164b5761164a6115f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061168b82611313565b915061169683611313565b92508282039050818111156116ae576116ad611651565b5b92915050565b60006116bf82611313565b91506116ca83611313565b92508282019050808211156116e2576116e1611651565b5b92915050565b6000819050919050565b600061170d611708611703846116e8565b6113bf565b611313565b9050919050565b61171d816116f2565b82525050565b600060c08201905061173860008301896114ed565b6117456020830188611439565b6117526040830187611714565b61175f6060830186611714565b61176c60808301856114ed565b61177960a0830184611439565b979650505050505050565b6000815190506117938161131d565b92915050565b6000806000606084860312156117b2576117b16112b0565b5b60006117c086828701611784565b93505060206117d186828701611784565b92505060406117e286828701611784565b9150509250925092565b60006040820190506118016000830185611439565b61180e6020830184611439565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611871602583611209565b915061187c82611815565b604082019050919050565b600060208201905081810360008301526118a081611864565b9050919050565b7f4e6f7420656e6f7567682045544820696e2074686520636f6e74726163740000600082015250565b60006118dd601e83611209565b91506118e8826118a7565b602082019050919050565b6000602082019050818103600083015261190c816118d0565b9050919050565b600081905092915050565b50565b600061192e600083611913565b91506119398261191e565b600082019050919050565b600061194f82611921565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b600061198f601183611209565b915061199a82611959565b602082019050919050565b600060208201905081810360008301526119be81611982565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a21602683611209565b9150611a2c826119c5565b604082019050919050565b60006020820190508181036000830152611a5081611a14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab3602483611209565b9150611abe82611a57565b604082019050919050565b60006020820190508181036000830152611ae281611aa6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b45602283611209565b9150611b5082611ae9565b604082019050919050565b60006020820190508181036000830152611b7481611b38565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bd7602583611209565b9150611be282611b7b565b604082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c69602383611209565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d757374206265206760008201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b6000611cfb603083611209565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d8d602683611209565b9150611d9882611d31565b604082019050919050565b60006020820190508181036000830152611dbc81611d80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611df9602083611209565b9150611e0482611dc3565b602082019050919050565b60006020820190508181036000830152611e2881611dec565b905091905056fea2646970667358221220e45b7b5126fc5126d1ee95d8fc3b24a20906238bc8264555752542c08924567c64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061010d5760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610377578063a9059cbb146103b4578063dd62ed3e146103f1578063f14210a61461042e578063f2fde38b1461045757610114565b8063715018a6146102e15780638da5cb5b146102f857806395d89b41146103235780639cd441da1461034e57610114565b806323b872dd116100dc57806323b872dd146101d4578063313ce56714610211578063395093511461023c57806349bd5a5e1461027957806370a08231146102a457610114565b806306fdde0314610116578063095ea7b3146101415780631694505e1461017e57806318160ddd146101a957610114565b3661011457005b005b34801561012257600080fd5b5061012b610480565b604051610138919061128e565b60405180910390f35b34801561014d57600080fd5b5061016860048036038101906101639190611349565b61050e565b60405161017591906113a4565b60405180910390f35b34801561018a57600080fd5b50610193610525565b6040516101a0919061141e565b60405180910390f35b3480156101b557600080fd5b506101be61054b565b6040516101cb9190611448565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f69190611463565b610561565b60405161020891906113a4565b60405180910390f35b34801561021d57600080fd5b5061022661060b565b60405161023391906114d2565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e9190611349565b61061e565b60405161027091906113a4565b60405180910390f35b34801561028557600080fd5b5061028e6106bc565b60405161029b91906114fc565b60405180910390f35b3480156102b057600080fd5b506102cb60048036038101906102c69190611517565b6106e2565b6040516102d89190611448565b60405180910390f35b3480156102ed57600080fd5b506102f661072b565b005b34801561030457600080fd5b5061030d61073f565b60405161031a91906114fc565b60405180910390f35b34801561032f57600080fd5b50610338610768565b604051610345919061128e565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190611544565b6107f6565b005b34801561038357600080fd5b5061039e60048036038101906103999190611349565b610930565b6040516103ab91906113a4565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190611349565b610a16565b6040516103e891906113a4565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190611584565b610a2d565b6040516104259190611448565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906115c4565b610ab4565b005b34801561046357600080fd5b5061047e60048036038101906104799190611517565b610baf565b005b6001805461048d90611620565b80601f01602080910402602001604051908101604052809291908181526020018280546104b990611620565b80156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b505050505081565b600061051b338484610c32565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006d14b5253145b397d6545100000000905090565b600061056e848484610dfb565b610600843384600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105fb9190611680565b610c32565b600190509392505050565b600360009054906101000a900460ff1681565b60006106b2338484600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106ad91906116b4565b610c32565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107336110b4565b61073d6000611132565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002805461077590611620565b80601f01602080910402602001604051908101604052809291908181526020018280546107a190611620565b80156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b505050505081565b6107fe6110b4565b61082b30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c32565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161089296959493929190611723565b60606040518083038185885af11580156108b0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108d59190611799565b5050506000600760146101000a81548160ff0219169083151502179055507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b82826040516109249291906117ec565b60405180910390a15050565b600080600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611887565b60405180910390fd5b610a0b33858584610a069190611680565b610c32565b600191505092915050565b6000610a23338484610dfb565b6001905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610abc6110b4565b47811115610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af6906118f3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610b2590611944565b60006040518083038185875af1925050503d8060008114610b62576040519150601f19603f3d011682016040523d82523d6000602084013e610b67565b606091505b5050905080610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba2906119a5565b60405180910390fd5b5050565b610bb76110b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611a37565b60405180910390fd5b610c2f81611132565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790611b5b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dee9190611448565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611c7f565b60405180910390fd5b60008111610f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1390611d11565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611da3565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fed9190611680565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104391906116b4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110a79190611448565b60405180910390a3505050565b6110bc6111f6565b73ffffffffffffffffffffffffffffffffffffffff166110da61073f565b73ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790611e0f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123857808201518184015260208101905061121d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611260826111fe565b61126a8185611209565b935061127a81856020860161121a565b61128381611244565b840191505092915050565b600060208201905081810360008301526112a88184611255565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e0826112b5565b9050919050565b6112f0816112d5565b81146112fb57600080fd5b50565b60008135905061130d816112e7565b92915050565b6000819050919050565b61132681611313565b811461133157600080fd5b50565b6000813590506113438161131d565b92915050565b600080604083850312156113605761135f6112b0565b5b600061136e858286016112fe565b925050602061137f85828601611334565b9150509250929050565b60008115159050919050565b61139e81611389565b82525050565b60006020820190506113b96000830184611395565b92915050565b6000819050919050565b60006113e46113df6113da846112b5565b6113bf565b6112b5565b9050919050565b60006113f6826113c9565b9050919050565b6000611408826113eb565b9050919050565b611418816113fd565b82525050565b6000602082019050611433600083018461140f565b92915050565b61144281611313565b82525050565b600060208201905061145d6000830184611439565b92915050565b60008060006060848603121561147c5761147b6112b0565b5b600061148a868287016112fe565b935050602061149b868287016112fe565b92505060406114ac86828701611334565b9150509250925092565b600060ff82169050919050565b6114cc816114b6565b82525050565b60006020820190506114e760008301846114c3565b92915050565b6114f6816112d5565b82525050565b600060208201905061151160008301846114ed565b92915050565b60006020828403121561152d5761152c6112b0565b5b600061153b848285016112fe565b91505092915050565b6000806040838503121561155b5761155a6112b0565b5b600061156985828601611334565b925050602061157a85828601611334565b9150509250929050565b6000806040838503121561159b5761159a6112b0565b5b60006115a9858286016112fe565b92505060206115ba858286016112fe565b9150509250929050565b6000602082840312156115da576115d96112b0565b5b60006115e884828501611334565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061163857607f821691505b60208210810361164b5761164a6115f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061168b82611313565b915061169683611313565b92508282039050818111156116ae576116ad611651565b5b92915050565b60006116bf82611313565b91506116ca83611313565b92508282019050808211156116e2576116e1611651565b5b92915050565b6000819050919050565b600061170d611708611703846116e8565b6113bf565b611313565b9050919050565b61171d816116f2565b82525050565b600060c08201905061173860008301896114ed565b6117456020830188611439565b6117526040830187611714565b61175f6060830186611714565b61176c60808301856114ed565b61177960a0830184611439565b979650505050505050565b6000815190506117938161131d565b92915050565b6000806000606084860312156117b2576117b16112b0565b5b60006117c086828701611784565b93505060206117d186828701611784565b92505060406117e286828701611784565b9150509250925092565b60006040820190506118016000830185611439565b61180e6020830184611439565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611871602583611209565b915061187c82611815565b604082019050919050565b600060208201905081810360008301526118a081611864565b9050919050565b7f4e6f7420656e6f7567682045544820696e2074686520636f6e74726163740000600082015250565b60006118dd601e83611209565b91506118e8826118a7565b602082019050919050565b6000602082019050818103600083015261190c816118d0565b9050919050565b600081905092915050565b50565b600061192e600083611913565b91506119398261191e565b600082019050919050565b600061194f82611921565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b600061198f601183611209565b915061199a82611959565b602082019050919050565b600060208201905081810360008301526119be81611982565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a21602683611209565b9150611a2c826119c5565b604082019050919050565b60006020820190508181036000830152611a5081611a14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab3602483611209565b9150611abe82611a57565b604082019050919050565b60006020820190508181036000830152611ae281611aa6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b45602283611209565b9150611b5082611ae9565b604082019050919050565b60006020820190508181036000830152611b7481611b38565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bd7602583611209565b9150611be282611b7b565b604082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c69602383611209565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d757374206265206760008201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b6000611cfb603083611209565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d8d602683611209565b9150611d9882611d31565b604082019050919050565b60006020820190508181036000830152611dbc81611d80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611df9602083611209565b9150611e0482611dc3565b602082019050919050565b60006020820190508181036000830152611e2881611dec565b905091905056fea2646970667358221220e45b7b5126fc5126d1ee95d8fc3b24a20906238bc8264555752542c08924567c64736f6c63430008120033

Deployed Bytecode Sourcemap

13166:4302:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13211:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14688:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13519:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14855:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13285:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15125:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13567:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14237:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9018:103;;;;;;;;;;;;;:::i;:::-;;8370:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13250:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16618:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15336:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14364:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14537:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17119:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9276:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13211:32;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14688:159::-;14763:4;14780:37;14789:10;14801:7;14810:6;14780:8;:37::i;:::-;14835:4;14828:11;;14688:159;;;;:::o;13519:41::-;;;;;;;;;;;;;:::o;14129:100::-;14182:7;13358:28;14202:19;;14129:100;:::o;14855:262::-;14953:4;14970:36;14980:6;14988:9;14999:6;14970:9;:36::i;:::-;15017:70;15026:6;15034:10;15080:6;15046:11;:19;15058:6;15046:19;;;;;;;;;;;;;;;:31;15066:10;15046:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;15017:8;:70::i;:::-;15105:4;15098:11;;14855:262;;;;;:::o;13285:26::-;;;;;;;;;;;;;:::o;15125:203::-;15205:4;15222:76;15231:10;15243:7;15287:10;15252:11;:23;15264:10;15252:23;;;;;;;;;;;;;;;:32;15276:7;15252:32;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;15222:8;:76::i;:::-;15316:4;15309:11;;15125:203;;;;:::o;13567:28::-;;;;;;;;;;;;;:::o;14237:119::-;14303:7;14330:9;:18;14340:7;14330:18;;;;;;;;;;;;;;;;14323:25;;14237:119;;;:::o;9018:103::-;8256:13;:11;:13::i;:::-;9083:30:::1;9110:1;9083:18;:30::i;:::-;9018:103::o:0;8370:87::-;8416:7;8443:6;;;;;;;;;;;8436:13;;8370:87;:::o;13250:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16618:493::-;8256:13;:11;:13::i;:::-;16710:62:::1;16727:4;16742:15;;;;;;;;;;;16760:11;16710:8;:62::i;:::-;16783:15;;;;;;;;;;;:31;;;16822:9;16841:4;16848:11;16874:1;16917::::0;16968:4:::1;16988:15;16783:231;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;17044:5;17025:16;;:24;;;;;;;;;;;;;;;;;;17065:38;17080:11;17093:9;17065:38;;;;;;;:::i;:::-;;;;;;;;16618:493:::0;;:::o;15336:363::-;15421:4;15438:24;15465:11;:23;15477:10;15465:23;;;;;;;;;;;;;;;:32;15489:7;15465:32;;;;;;;;;;;;;;;;15438:59;;15536:15;15516:16;:35;;15508:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15604:65;15613:10;15625:7;15653:15;15634:16;:34;;;;:::i;:::-;15604:8;:65::i;:::-;15687:4;15680:11;;;15336:363;;;;:::o;14364:165::-;14442:4;14459:40;14469:10;14481:9;14492:6;14459:9;:40::i;:::-;14517:4;14510:11;;14364:165;;;;:::o;14537:143::-;14618:7;14645:11;:18;14657:5;14645:18;;;;;;;;;;;;;;;:27;14664:7;14645:27;;;;;;;;;;;;;;;;14638:34;;14537:143;;;;:::o;17119:269::-;8256:13;:11;:13::i;:::-;17204:21:::1;17194:6;:31;;17186:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17272:12;17297:10;17289:24;;17321:6;17289:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17271:61;;;17351:7;17343:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;17175:213;17119:269:::0;:::o;9276:201::-;8256:13;:11;:13::i;:::-;9385:1:::1;9365:22;;:8;:22;;::::0;9357:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9441:28;9460:8;9441:18;:28::i;:::-;9276:201:::0;:::o;16272:338::-;16383:1;16366:19;;:5;:19;;;16358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16464:1;16445:21;;:7;:21;;;16437:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16548:6;16518:11;:18;16530:5;16518:18;;;;;;;;;;;;;;;:27;16537:7;16518:27;;;;;;;;;;;;;;;:36;;;;16586:7;16570:32;;16579:5;16570:32;;;16595:6;16570:32;;;;;;:::i;:::-;;;;;;;;16272:338;;;:::o;15711:553::-;15827:1;15809:20;;:6;:20;;;15801:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15911:1;15890:23;;:9;:23;;;15882:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15981:1;15972:6;:10;15964:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16075:6;16054:9;:17;16064:6;16054:17;;;;;;;;;;;;;;;;:27;;16046:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;16158:6;16137:9;:17;16147:6;16137:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;16199:6;16175:9;:20;16185:9;16175:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16238:9;16221:35;;16230:6;16221:35;;;16249:6;16221:35;;;;;;:::i;:::-;;;;;;;;15711:553;;;:::o;8535:132::-;8610:12;:10;:12::i;:::-;8599:23;;:7;:5;:7::i;:::-;:23;;;8591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8535:132::o;9637:191::-;9711:16;9730:6;;;;;;;;;;;9711:25;;9756:8;9747:6;;:17;;;;;;;;;;;;;;;;;;9811:8;9780:40;;9801:8;9780:40;;;;;;;;;;;;9700:128;9637:191;:::o;6921:98::-;6974:7;7001:10;6994:17;;6921:98;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:::-;7061:6;7069;7118:2;7106:9;7097:7;7093:23;7089:32;7086:119;;;7124:79;;:::i;:::-;7086:119;7244:1;7269:53;7314:7;7305:6;7294:9;7290:22;7269:53;:::i;:::-;7259:63;;7215:117;7371:2;7397:53;7442:7;7433:6;7422:9;7418:22;7397:53;:::i;:::-;7387:63;;7342:118;6993:474;;;;;:::o;7473:329::-;7532:6;7581:2;7569:9;7560:7;7556:23;7552:32;7549:119;;;7587:79;;:::i;:::-;7549:119;7707:1;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7678:117;7473:329;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:194;8546:4;8566:20;8584:1;8566:20;:::i;:::-;8561:25;;8600:20;8618:1;8600:20;:::i;:::-;8595:25;;8644:1;8641;8637:9;8629:17;;8668:1;8662:4;8659:11;8656:37;;;8673:18;;:::i;:::-;8656:37;8506:194;;;;:::o;8706:191::-;8746:3;8765:20;8783:1;8765:20;:::i;:::-;8760:25;;8799:20;8817:1;8799:20;:::i;:::-;8794:25;;8842:1;8839;8835:9;8828:16;;8863:3;8860:1;8857:10;8854:36;;;8870:18;;:::i;:::-;8854:36;8706:191;;;;:::o;8903:85::-;8948:7;8977:5;8966:16;;8903:85;;;:::o;8994:158::-;9052:9;9085:61;9103:42;9112:32;9138:5;9112:32;:::i;:::-;9103:42;:::i;:::-;9085:61;:::i;:::-;9072:74;;8994:158;;;:::o;9158:147::-;9253:45;9292:5;9253:45;:::i;:::-;9248:3;9241:58;9158:147;;:::o;9311:807::-;9560:4;9598:3;9587:9;9583:19;9575:27;;9612:71;9680:1;9669:9;9665:17;9656:6;9612:71;:::i;:::-;9693:72;9761:2;9750:9;9746:18;9737:6;9693:72;:::i;:::-;9775:80;9851:2;9840:9;9836:18;9827:6;9775:80;:::i;:::-;9865;9941:2;9930:9;9926:18;9917:6;9865:80;:::i;:::-;9955:73;10023:3;10012:9;10008:19;9999:6;9955:73;:::i;:::-;10038;10106:3;10095:9;10091:19;10082:6;10038:73;:::i;:::-;9311:807;;;;;;;;;:::o;10124:143::-;10181:5;10212:6;10206:13;10197:22;;10228:33;10255:5;10228:33;:::i;:::-;10124:143;;;;:::o;10273:663::-;10361:6;10369;10377;10426:2;10414:9;10405:7;10401:23;10397:32;10394:119;;;10432:79;;:::i;:::-;10394:119;10552:1;10577:64;10633:7;10624:6;10613:9;10609:22;10577:64;:::i;:::-;10567:74;;10523:128;10690:2;10716:64;10772:7;10763:6;10752:9;10748:22;10716:64;:::i;:::-;10706:74;;10661:129;10829:2;10855:64;10911:7;10902:6;10891:9;10887:22;10855:64;:::i;:::-;10845:74;;10800:129;10273:663;;;;;:::o;10942:332::-;11063:4;11101:2;11090:9;11086:18;11078:26;;11114:71;11182:1;11171:9;11167:17;11158:6;11114:71;:::i;:::-;11195:72;11263:2;11252:9;11248:18;11239:6;11195:72;:::i;:::-;10942:332;;;;;:::o;11280:224::-;11420:34;11416:1;11408:6;11404:14;11397:58;11489:7;11484:2;11476:6;11472:15;11465:32;11280:224;:::o;11510:366::-;11652:3;11673:67;11737:2;11732:3;11673:67;:::i;:::-;11666:74;;11749:93;11838:3;11749:93;:::i;:::-;11867:2;11862:3;11858:12;11851:19;;11510:366;;;:::o;11882:419::-;12048:4;12086:2;12075:9;12071:18;12063:26;;12135:9;12129:4;12125:20;12121:1;12110:9;12106:17;12099:47;12163:131;12289:4;12163:131;:::i;:::-;12155:139;;11882:419;;;:::o;12307:180::-;12447:32;12443:1;12435:6;12431:14;12424:56;12307:180;:::o;12493:366::-;12635:3;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12493:366;;;:::o;12865:419::-;13031:4;13069:2;13058:9;13054:18;13046:26;;13118:9;13112:4;13108:20;13104:1;13093:9;13089:17;13082:47;13146:131;13272:4;13146:131;:::i;:::-;13138:139;;12865:419;;;:::o;13290:147::-;13391:11;13428:3;13413:18;;13290:147;;;;:::o;13443:114::-;;:::o;13563:398::-;13722:3;13743:83;13824:1;13819:3;13743:83;:::i;:::-;13736:90;;13835:93;13924:3;13835:93;:::i;:::-;13953:1;13948:3;13944:11;13937:18;;13563:398;;;:::o;13967:379::-;14151:3;14173:147;14316:3;14173:147;:::i;:::-;14166:154;;14337:3;14330:10;;13967:379;;;:::o;14352:167::-;14492:19;14488:1;14480:6;14476:14;14469:43;14352:167;:::o;14525:366::-;14667:3;14688:67;14752:2;14747:3;14688:67;:::i;:::-;14681:74;;14764:93;14853:3;14764:93;:::i;:::-;14882:2;14877:3;14873:12;14866:19;;14525:366;;;:::o;14897:419::-;15063:4;15101:2;15090:9;15086:18;15078:26;;15150:9;15144:4;15140:20;15136:1;15125:9;15121:17;15114:47;15178:131;15304:4;15178:131;:::i;:::-;15170:139;;14897:419;;;:::o;15322:225::-;15462:34;15458:1;15450:6;15446:14;15439:58;15531:8;15526:2;15518:6;15514:15;15507:33;15322:225;:::o;15553:366::-;15695:3;15716:67;15780:2;15775:3;15716:67;:::i;:::-;15709:74;;15792:93;15881:3;15792:93;:::i;:::-;15910:2;15905:3;15901:12;15894:19;;15553:366;;;:::o;15925:419::-;16091:4;16129:2;16118:9;16114:18;16106:26;;16178:9;16172:4;16168:20;16164:1;16153:9;16149:17;16142:47;16206:131;16332:4;16206:131;:::i;:::-;16198:139;;15925:419;;;:::o;16350:223::-;16490:34;16486:1;16478:6;16474:14;16467:58;16559:6;16554:2;16546:6;16542:15;16535:31;16350:223;:::o;16579:366::-;16721:3;16742:67;16806:2;16801:3;16742:67;:::i;:::-;16735:74;;16818:93;16907:3;16818:93;:::i;:::-;16936:2;16931:3;16927:12;16920:19;;16579:366;;;:::o;16951:419::-;17117:4;17155:2;17144:9;17140:18;17132:26;;17204:9;17198:4;17194:20;17190:1;17179:9;17175:17;17168:47;17232:131;17358:4;17232:131;:::i;:::-;17224:139;;16951:419;;;:::o;17376:221::-;17516:34;17512:1;17504:6;17500:14;17493:58;17585:4;17580:2;17572:6;17568:15;17561:29;17376:221;:::o;17603:366::-;17745:3;17766:67;17830:2;17825:3;17766:67;:::i;:::-;17759:74;;17842:93;17931:3;17842:93;:::i;:::-;17960:2;17955:3;17951:12;17944:19;;17603:366;;;:::o;17975:419::-;18141:4;18179:2;18168:9;18164:18;18156:26;;18228:9;18222:4;18218:20;18214:1;18203:9;18199:17;18192:47;18256:131;18382:4;18256:131;:::i;:::-;18248:139;;17975:419;;;:::o;18400:224::-;18540:34;18536:1;18528:6;18524:14;18517:58;18609:7;18604:2;18596:6;18592:15;18585:32;18400:224;:::o;18630:366::-;18772:3;18793:67;18857:2;18852:3;18793:67;:::i;:::-;18786:74;;18869:93;18958:3;18869:93;:::i;:::-;18987:2;18982:3;18978:12;18971:19;;18630:366;;;:::o;19002:419::-;19168:4;19206:2;19195:9;19191:18;19183:26;;19255:9;19249:4;19245:20;19241:1;19230:9;19226:17;19219:47;19283:131;19409:4;19283:131;:::i;:::-;19275:139;;19002:419;;;:::o;19427:222::-;19567:34;19563:1;19555:6;19551:14;19544:58;19636:5;19631:2;19623:6;19619:15;19612:30;19427:222;:::o;19655:366::-;19797:3;19818:67;19882:2;19877:3;19818:67;:::i;:::-;19811:74;;19894:93;19983:3;19894:93;:::i;:::-;20012:2;20007:3;20003:12;19996:19;;19655:366;;;:::o;20027:419::-;20193:4;20231:2;20220:9;20216:18;20208:26;;20280:9;20274:4;20270:20;20266:1;20255:9;20251:17;20244:47;20308:131;20434:4;20308:131;:::i;:::-;20300:139;;20027:419;;;:::o;20452:235::-;20592:34;20588:1;20580:6;20576:14;20569:58;20661:18;20656:2;20648:6;20644:15;20637:43;20452:235;:::o;20693:366::-;20835:3;20856:67;20920:2;20915:3;20856:67;:::i;:::-;20849:74;;20932:93;21021:3;20932:93;:::i;:::-;21050:2;21045:3;21041:12;21034:19;;20693:366;;;:::o;21065:419::-;21231:4;21269:2;21258:9;21254:18;21246:26;;21318:9;21312:4;21308:20;21304:1;21293:9;21289:17;21282:47;21346:131;21472:4;21346:131;:::i;:::-;21338:139;;21065:419;;;:::o;21490:225::-;21630:34;21626:1;21618:6;21614:14;21607:58;21699:8;21694:2;21686:6;21682:15;21675:33;21490:225;:::o;21721:366::-;21863:3;21884:67;21948:2;21943:3;21884:67;:::i;:::-;21877:74;;21960:93;22049:3;21960:93;:::i;:::-;22078:2;22073:3;22069:12;22062:19;;21721:366;;;:::o;22093:419::-;22259:4;22297:2;22286:9;22282:18;22274:26;;22346:9;22340:4;22336:20;22332:1;22321:9;22317:17;22310:47;22374:131;22500:4;22374:131;:::i;:::-;22366:139;;22093:419;;;:::o;22518:182::-;22658:34;22654:1;22646:6;22642:14;22635:58;22518:182;:::o;22706:366::-;22848:3;22869:67;22933:2;22928:3;22869:67;:::i;:::-;22862:74;;22945:93;23034:3;22945:93;:::i;:::-;23063:2;23058:3;23054:12;23047:19;;22706:366;;;:::o;23078:419::-;23244:4;23282:2;23271:9;23267:18;23259:26;;23331:9;23325:4;23321:20;23317:1;23306:9;23302:17;23295:47;23359:131;23485:4;23359:131;:::i;:::-;23351:139;;23078:419;;;:::o

Swarm Source

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