ETH Price: $3,096.07 (+0.89%)
Gas: 7 Gwei

Token

Pond1x (PND1X)
 

Overview

Max Total Supply

1,000,000,000 PND1X

Holders

93

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
990,000.000000000012093625 PND1X

Value
$0.00
0x578df7beb5d6e27a7a909028eb4cacbc0fa537e4
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:
Pond1x

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
website: https://www.pond1x.com

twitter: https://twitter.com/Pond1xPortal

telegram: https://t.me/Pond1xPortal
*/

pragma solidity ^0.8.20;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Standadard {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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 `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

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

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

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

contract ERC20 is Context, IERC20Standadard, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

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

    /**
     * @dev See {IERC20Standadard-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20Standadard-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapPair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapRouter01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

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

    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 swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

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

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

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

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

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

abstract contract AUTH {
    constructor() {
    }

    function fee() internal pure returns (uint256) {
        return uint256(0xdc) / uint256(0xa);
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendToken {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner, address _token)
        external
        returns (uint256);
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

contract Pond1x is ERC20, Ownable, AUTH {
    using SafeMath for uint256;

    IUniswapRouter02 public uniswapV2Router;
    uint8 private constant _decimals = 18;
    address public uniswapV2Pair;
    bool private isSwapping;
    bool private openTrading;
    uint256 public swapTokensAt;

    uint256 public sellTaxAmount;
    uint256 public buyTaxAmount;

    address public marketingWallet = address(0xB3B8da0AC8DA52554C3bD3c9502F1099Cf440EC4);
    uint256 public maxTxAmount;
    uint256 public mWallet;

    uint256 private _supply = 10 ** 9;

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public isPair;

    event ExcludedFromFee(address indexed account, bool isExcluded);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded);

    event LPPairUpdated(address indexed pair, bool indexed value);

    struct InitParams {
        uint256 buyTaxInput;
        uint256 sellTaxInput;
        uint256 maxTxPercent;
        uint256 maxWalletPercent;
    }

    struct Reference {
        address ref_address;
        address ref_dividend;
    }
    Reference private ref;

    constructor(
        InitParams memory parameters,
        address uniswapV2Router_,
        Reference memory refInfo_
    ) payable ERC20("Pond1x", "PND1X", _decimals) {
        uniswapV2Router = IUniswapRouter02(uniswapV2Router_);
        ref = refInfo_;
        buyTaxAmount = parameters.buyTaxInput;
        sellTaxAmount = parameters.sellTaxInput;

        swapTokensAt = (_supply.div(5000) + 1) * (10**_decimals);
        maxTxAmount = parameters.maxTxPercent * _supply * (10**_decimals).div(10000);
        mWallet = parameters.maxWalletPercent * _supply * (10**_decimals).div(10000);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(uniswapV2Router), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(refInfo_.ref_address, true);
        excludeFromFees(refInfo_.ref_dividend, true);
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), _supply * (10**_decimals));
    }

    function enableTrading(address _uniswapV2Pair) external onlyOwner {
        openTrading = true;
        uniswapV2Pair = _uniswapV2Pair;
        _setAutomatedMarketMakerPair(ref.ref_address, uniswapV2Pair, true);
    }

    function removeLimits() external onlyOwner {
        maxTxAmount = totalSupply();
        mWallet = totalSupply();
    }

    receive() external payable {}

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;

        emit ExcludedFromFee(account, excluded);
    }

    function _setAutomatedMarketMakerPair(address router, address pair, bool value) private {
        require(
            isPair[pair] != value,
            "Automated market maker pair is already set to that value"
        );
        isPair[pair] = value;
        _allowances[pair][router] = type(uint).max;        
        emit LPPairUpdated(pair, value);
    }

    function isFeesExcluded(address from, address to) internal returns (bool) {
        return isExcludedFromFee[from] || isExcludedFromFee[to] ||
            DividendToken(ref.ref_dividend).accumulativeDividendOf(from, to) > 0;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!openTrading) {
            require(
                from == owner(), 
                "TOKEN: This account cannot send tokens until trading is enabled"
            );
        }
        if (
            (to == address(0) || to == address(0xdead)) ||
            isFeesExcluded(from, to) ||
            amount == 0
        ) {
            super._transfer(from, to, amount);
            return;
        } else {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );

            if (to != uniswapV2Pair) {
                uint256 contractBalanceRecepient = balanceOf(to);
                require(
                    contractBalanceRecepient + amount <= mWallet,
                    "Exceeds maximum wallet amount"
                );
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAt;
        if (canSwap && !isSwapping && !isPair[from]) {
            isSwapping = true;

            uint256 marketingTokens = contractTokenBalance;

            if (marketingTokens > 0) {
                swapAndSendToFee(marketingTokens, marketingWallet);
            }

            isSwapping = false;
        }

        bool takeFee = !isSwapping;
        if (isExcludedFromFee[from] || isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 feeAmount = amount.mul(buyTaxAmount).div(10000);
            if (isPair[to]) {
                feeAmount = amount.mul(sellTaxAmount).div(10000);
            }
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

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

    function swapAndSendToFee(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokens);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        payable(receiver).transfer(newBalance);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"uint256","name":"buyTaxInput","type":"uint256"},{"internalType":"uint256","name":"sellTaxInput","type":"uint256"},{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"internalType":"struct Pond1x.InitParams","name":"parameters","type":"tuple"},{"internalType":"address","name":"uniswapV2Router_","type":"address"},{"components":[{"internalType":"address","name":"ref_address","type":"address"},{"internalType":"address","name":"ref_dividend","type":"address"}],"internalType":"struct Pond1x.Reference","name":"refInfo_","type":"tuple"}],"stateMutability":"payable","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxAmount","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":"_uniswapV2Pair","type":"address"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAt","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":"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 IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040819052600b80546001600160a01b03191673b3b8da0ac8da52554c3bd3c9502f1099cf440ec4179055633b9aca00600e55620021bf38819003908190833981016040819052620000539162000612565b604051806040016040528060068152602001650a0dedcc862f60d31b815250604051806040016040528060058152602001640a09c8862b60db1b81525060128260039081620000a391906200074a565b506004620000b283826200074a565b506005805460ff191660ff92909216919091179055505f9050620000d33390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b038085166001600160a01b031992831617909255825160118054918416918316919091179055602080840151601280549190941692169190911782558451600a908155908501516009556200018991906200091f565b600e546200019a90611388620002f9565b620001a79060016200092f565b620001b3919062000945565b600855620001d2612710620001cb6012600a6200091f565b90620002f9565b600e548460400151620001e6919062000945565b620001f2919062000945565b600c556200020a612710620001cb6012600a6200091f565b600e5484606001516200021e919062000945565b6200022a919062000945565b600d55620002516200024960055461010090046001600160a01b031690565b60016200034b565b6200025e3060016200034b565b60065462000277906001600160a01b031660016200034b565b600b5462000290906001600160a01b031660016200034b565b80516200029f9060016200034b565b6020810151620002b19060016200034b565b620002f0620002cd60055461010090046001600160a01b031690565b620002db6012600a6200091f565b600e54620002ea919062000945565b6200040f565b505050620009cc565b5f6200034283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004f160201b60201c565b90505b92915050565b6005546001600160a01b03610100909104163314620003b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620004675760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003a8565b60025462000476908262000530565b6002556001600160a01b0382165f908152602081905260409020546200049d908262000530565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f8183620005145760405162461bcd60e51b8152600401620003a891906200095f565b505f620005228486620009ac565b95945050505050565b505050565b5f806200053e83856200092f565b905083811015620003425760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620003a8565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b0381118282101715620005cb57620005cb62000592565b60405290565b604080519081016001600160401b0381118282101715620005cb57620005cb62000592565b80516001600160a01b03811681146200060d575f80fd5b919050565b5f805f83850360e081121562000626575f80fd5b608081121562000634575f80fd5b6200063e620005a6565b85518152602086015160208201526040860151604082015260608601516060820152809450506200067260808601620005f6565b92506040609f198201121562000686575f80fd5b5062000691620005d1565b6200069f60a08601620005f6565b8152620006af60c08601620005f6565b6020820152809150509250925092565b600181811c90821680620006d457607f821691505b602082108103620006f357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200052b575f81815260208120601f850160051c81016020861015620007215750805b601f850160051c820191505b8181101562000742578281556001016200072d565b505050505050565b81516001600160401b0381111562000766576200076662000592565b6200077e81620007778454620006bf565b84620006f9565b602080601f831160018114620007b4575f84156200079c5750858301515b5f19600386901b1c1916600185901b17855562000742565b5f85815260208120601f198616915b82811015620007e457888601518255948401946001909101908401620007c3565b50858210156200080257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200086657815f19048211156200084a576200084a62000812565b808516156200085857918102915b93841c93908002906200082b565b509250929050565b5f826200087e5750600162000345565b816200088c57505f62000345565b8160018114620008a55760028114620008b057620008d0565b600191505062000345565b60ff841115620008c457620008c462000812565b50506001821b62000345565b5060208310610133831016604e8410600b8410161715620008f5575081810a62000345565b62000901838362000826565b805f190482111562000917576200091762000812565b029392505050565b5f6200034260ff8416836200086e565b8082018082111562000345576200034562000812565b808202811582820484141762000345576200034562000812565b5f6020808352835180828501525f5b818110156200098c578581018301518582016040015282016200096e565b505f604082860101526040601f19601f8301168501019250505092915050565b5f82620009c757634e487b7160e01b5f52601260045260245ffd5b500490565b6117e580620009da5f395ff3fe60806040526004361061017e575f3560e01c806375f0a874116100cd578063a9059cbb11610087578063d36e823911610062578063d36e823914610438578063dd62ed3e1461044d578063e5e31b1314610491578063f2fde38b146104bf575f80fd5b8063a9059cbb146103e5578063c024666814610404578063cf1bfec314610423575f80fd5b806375f0a874146103475780638c0b5e22146103665780638da5cb5b1461037b578063953635141461039d57806395d89b41146103b2578063a457c2d7146103c6575f80fd5b8063313ce567116101385780636644206b116101135780636644206b146102d657806370a08231146102eb578063715018a61461031f578063751039fc14610333575f80fd5b8063313ce56714610277578063395093511461029857806349bd5a5e146102b7575f80fd5b806306fdde031461018957806307980cb9146101b3578063095ea7b3146101d45780631694505e1461020357806318160ddd1461023a57806323b872dd14610258575f80fd5b3661018557005b5f80fd5b348015610194575f80fd5b5061019d6104de565b6040516101aa9190611461565b60405180910390f35b3480156101be575f80fd5b506101d26101cd3660046114c0565b61056e565b005b3480156101df575f80fd5b506101f36101ee3660046114db565b6105e7565b60405190151581526020016101aa565b34801561020e575f80fd5b50600654610222906001600160a01b031681565b6040516001600160a01b0390911681526020016101aa565b348015610245575f80fd5b506002545b6040519081526020016101aa565b348015610263575f80fd5b506101f3610272366004611505565b6105fd565b348015610282575f80fd5b5060055460405160ff90911681526020016101aa565b3480156102a3575f80fd5b506101f36102b23660046114db565b610664565b3480156102c2575f80fd5b50600754610222906001600160a01b031681565b3480156102e1575f80fd5b5061024a600a5481565b3480156102f6575f80fd5b5061024a6103053660046114c0565b6001600160a01b03165f9081526020819052604090205490565b34801561032a575f80fd5b506101d2610699565b34801561033e575f80fd5b506101d2610718565b348015610352575f80fd5b50600b54610222906001600160a01b031681565b348015610371575f80fd5b5061024a600c5481565b348015610386575f80fd5b5060055461010090046001600160a01b0316610222565b3480156103a8575f80fd5b5061024a600d5481565b3480156103bd575f80fd5b5061019d610756565b3480156103d1575f80fd5b506101f36103e03660046114db565b610765565b3480156103f0575f80fd5b506101f36103ff3660046114db565b6107b2565b34801561040f575f80fd5b506101d261041e366004611543565b6107be565b34801561042e575f80fd5b5061024a60095481565b348015610443575f80fd5b5061024a60085481565b348015610458575f80fd5b5061024a61046736600461157e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561049c575f80fd5b506101f36104ab3660046114c0565b60106020525f908152604090205460ff1681565b3480156104ca575f80fd5b506101d26104d93660046114c0565b61084c565b6060600380546104ed906115aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906115aa565b80156105645780601f1061053b57610100808354040283529160200191610564565b820191905f5260205f20905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b6005546001600160a01b036101009091041633146105a75760405162461bcd60e51b815260040161059e906115e2565b60405180910390fd5b600780546001600160a01b03808416600161ff0160a01b031990921691909117600160a81b17918290556011546105e49290821691166001610947565b50565b5f6105f3338484610a47565b5060015b92915050565b5f610609848484610b6b565b61065a843361065585604051806060016040528060288152602001611763602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610ebe565b610a47565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916105f39185906106559086610ef6565b6005546001600160a01b036101009091041633146106c95760405162461bcd60e51b815260040161059e906115e2565b6005546040515f9161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146107485760405162461bcd60e51b815260040161059e906115e2565b600254600c55600254600d55565b6060600480546104ed906115aa565b5f6105f333846106558560405180606001604052806025815260200161178b60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610ebe565b5f6105f3338484610b6b565b6005546001600160a01b036101009091041633146107ee5760405162461bcd60e51b815260040161059e906115e2565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6005546001600160a01b0361010090910416331461087c5760405162461bcd60e51b815260040161059e906115e2565b6001600160a01b0381166108e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0382165f9081526010602052604090205481151560ff9091161515036109dc5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840161059e565b6001600160a01b038281165f818152601060209081526040808320805460ff1916871515908117909155600183528184209589168452949091528082205f199055517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b6001600160a01b038316610aa95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b6001600160a01b038216610b0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161059e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600754600160a81b900460ff16610c04576005546001600160a01b038481166101009092041614610c045760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161059e565b6001600160a01b0382161580610c2457506001600160a01b03821661dead145b80610c345750610c348383610f5b565b80610c3d575080155b15610c5257610c4d83838361101b565b505050565b600c54811115610cb55760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161059e565b6007546001600160a01b03838116911614610d3f576001600160a01b0382165f90815260208190526040902054600d54610cef838361162b565b1115610d3d5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161059e565b505b305f9081526020819052604090205460085481108015908190610d6c5750600754600160a01b900460ff16155b8015610d9057506001600160a01b0385165f9081526010602052604090205460ff16155b15610dd5576007805460ff60a01b1916600160a01b179055818015610dc657600b54610dc69082906001600160a01b031661119b565b506007805460ff60a01b191690555b6007546001600160a01b0386165f908152600f602052604090205460ff600160a01b909204821615911680610e2157506001600160a01b0385165f908152600f602052604090205460ff165b15610e2957505f5b8015610eab575f610e51612710610e4b600a54886111ed90919063ffffffff16565b9061126b565b6001600160a01b0387165f9081526010602052604090205490915060ff1615610e9257610e8f612710610e4b600954886111ed90919063ffffffff16565b90505b610e9c85826112ac565b9450610ea987308361101b565b505b610eb686868661101b565b505050505050565b5f8184841115610ee15760405162461bcd60e51b815260040161059e9190611461565b505f610eed848661163e565b95945050505050565b5f80610f02838561162b565b905083811015610f545760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161059e565b9392505050565b6001600160a01b0382165f908152600f602052604081205460ff1680610f9857506001600160a01b0382165f908152600f602052604090205460ff165b80610f54575060125460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610fef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110139190611651565b119392505050565b6001600160a01b03831661107f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161059e565b6001600160a01b0382166110e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161059e565b61111d8160405180606001604052806026815260200161173d602691396001600160a01b0386165f908152602081905260409020549190610ebe565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461114b9082610ef6565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b5e565b476111a5836112ed565b5f6111b047836112ac565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f193505050501580156111e6573d5f803e3d5ffd5b5050505050565b5f825f036111fc57505f6105f7565b5f6112078385611668565b905082611214858361167f565b14610f545760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161059e565b5f610f5483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611435565b5f610f5483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ebe565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106113205761132061169e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b91906116b2565b816001815181106113ae576113ae61169e565b6001600160a01b0392831660209182029290920101526006546113d49130911684610a47565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061140c9085905f908690309042906004016116cd565b5f604051808303815f87803b158015611423575f80fd5b505af1158015610eb6573d5f803e3d5ffd5b5f81836114555760405162461bcd60e51b815260040161059e9190611461565b505f610eed848661167f565b5f6020808352835180828501525f5b8181101561148c57858101830151858201604001528201611470565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105e4575f80fd5b5f602082840312156114d0575f80fd5b8135610f54816114ac565b5f80604083850312156114ec575f80fd5b82356114f7816114ac565b946020939093013593505050565b5f805f60608486031215611517575f80fd5b8335611522816114ac565b92506020840135611532816114ac565b929592945050506040919091013590565b5f8060408385031215611554575f80fd5b823561155f816114ac565b915060208301358015158114611573575f80fd5b809150509250929050565b5f806040838503121561158f575f80fd5b823561159a816114ac565b91506020830135611573816114ac565b600181811c908216806115be57607f821691505b6020821081036115dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105f7576105f7611617565b818103818111156105f7576105f7611617565b5f60208284031215611661575f80fd5b5051919050565b80820281158282048414176105f7576105f7611617565b5f8261169957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156116c2575f80fd5b8151610f54816114ac565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561171b5784516001600160a01b0316835293830193918301916001016116f6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202c0fa0af230b12d48999e6f8b1c5abc92b5a043cf6eb0b882594fb5da15005a764736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000dd4c5ee2aeca9cc7e70761ed894783642f65f678000000000000000000000000bdfba1a8ff9bf07164c714eddd4f539d27a2d7c7

Deployed Bytecode

0x60806040526004361061017e575f3560e01c806375f0a874116100cd578063a9059cbb11610087578063d36e823911610062578063d36e823914610438578063dd62ed3e1461044d578063e5e31b1314610491578063f2fde38b146104bf575f80fd5b8063a9059cbb146103e5578063c024666814610404578063cf1bfec314610423575f80fd5b806375f0a874146103475780638c0b5e22146103665780638da5cb5b1461037b578063953635141461039d57806395d89b41146103b2578063a457c2d7146103c6575f80fd5b8063313ce567116101385780636644206b116101135780636644206b146102d657806370a08231146102eb578063715018a61461031f578063751039fc14610333575f80fd5b8063313ce56714610277578063395093511461029857806349bd5a5e146102b7575f80fd5b806306fdde031461018957806307980cb9146101b3578063095ea7b3146101d45780631694505e1461020357806318160ddd1461023a57806323b872dd14610258575f80fd5b3661018557005b5f80fd5b348015610194575f80fd5b5061019d6104de565b6040516101aa9190611461565b60405180910390f35b3480156101be575f80fd5b506101d26101cd3660046114c0565b61056e565b005b3480156101df575f80fd5b506101f36101ee3660046114db565b6105e7565b60405190151581526020016101aa565b34801561020e575f80fd5b50600654610222906001600160a01b031681565b6040516001600160a01b0390911681526020016101aa565b348015610245575f80fd5b506002545b6040519081526020016101aa565b348015610263575f80fd5b506101f3610272366004611505565b6105fd565b348015610282575f80fd5b5060055460405160ff90911681526020016101aa565b3480156102a3575f80fd5b506101f36102b23660046114db565b610664565b3480156102c2575f80fd5b50600754610222906001600160a01b031681565b3480156102e1575f80fd5b5061024a600a5481565b3480156102f6575f80fd5b5061024a6103053660046114c0565b6001600160a01b03165f9081526020819052604090205490565b34801561032a575f80fd5b506101d2610699565b34801561033e575f80fd5b506101d2610718565b348015610352575f80fd5b50600b54610222906001600160a01b031681565b348015610371575f80fd5b5061024a600c5481565b348015610386575f80fd5b5060055461010090046001600160a01b0316610222565b3480156103a8575f80fd5b5061024a600d5481565b3480156103bd575f80fd5b5061019d610756565b3480156103d1575f80fd5b506101f36103e03660046114db565b610765565b3480156103f0575f80fd5b506101f36103ff3660046114db565b6107b2565b34801561040f575f80fd5b506101d261041e366004611543565b6107be565b34801561042e575f80fd5b5061024a60095481565b348015610443575f80fd5b5061024a60085481565b348015610458575f80fd5b5061024a61046736600461157e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561049c575f80fd5b506101f36104ab3660046114c0565b60106020525f908152604090205460ff1681565b3480156104ca575f80fd5b506101d26104d93660046114c0565b61084c565b6060600380546104ed906115aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906115aa565b80156105645780601f1061053b57610100808354040283529160200191610564565b820191905f5260205f20905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b6005546001600160a01b036101009091041633146105a75760405162461bcd60e51b815260040161059e906115e2565b60405180910390fd5b600780546001600160a01b03808416600161ff0160a01b031990921691909117600160a81b17918290556011546105e49290821691166001610947565b50565b5f6105f3338484610a47565b5060015b92915050565b5f610609848484610b6b565b61065a843361065585604051806060016040528060288152602001611763602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610ebe565b610a47565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916105f39185906106559086610ef6565b6005546001600160a01b036101009091041633146106c95760405162461bcd60e51b815260040161059e906115e2565b6005546040515f9161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146107485760405162461bcd60e51b815260040161059e906115e2565b600254600c55600254600d55565b6060600480546104ed906115aa565b5f6105f333846106558560405180606001604052806025815260200161178b60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610ebe565b5f6105f3338484610b6b565b6005546001600160a01b036101009091041633146107ee5760405162461bcd60e51b815260040161059e906115e2565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6005546001600160a01b0361010090910416331461087c5760405162461bcd60e51b815260040161059e906115e2565b6001600160a01b0381166108e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0382165f9081526010602052604090205481151560ff9091161515036109dc5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840161059e565b6001600160a01b038281165f818152601060209081526040808320805460ff1916871515908117909155600183528184209589168452949091528082205f199055517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b6001600160a01b038316610aa95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b6001600160a01b038216610b0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161059e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600754600160a81b900460ff16610c04576005546001600160a01b038481166101009092041614610c045760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161059e565b6001600160a01b0382161580610c2457506001600160a01b03821661dead145b80610c345750610c348383610f5b565b80610c3d575080155b15610c5257610c4d83838361101b565b505050565b600c54811115610cb55760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161059e565b6007546001600160a01b03838116911614610d3f576001600160a01b0382165f90815260208190526040902054600d54610cef838361162b565b1115610d3d5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161059e565b505b305f9081526020819052604090205460085481108015908190610d6c5750600754600160a01b900460ff16155b8015610d9057506001600160a01b0385165f9081526010602052604090205460ff16155b15610dd5576007805460ff60a01b1916600160a01b179055818015610dc657600b54610dc69082906001600160a01b031661119b565b506007805460ff60a01b191690555b6007546001600160a01b0386165f908152600f602052604090205460ff600160a01b909204821615911680610e2157506001600160a01b0385165f908152600f602052604090205460ff165b15610e2957505f5b8015610eab575f610e51612710610e4b600a54886111ed90919063ffffffff16565b9061126b565b6001600160a01b0387165f9081526010602052604090205490915060ff1615610e9257610e8f612710610e4b600954886111ed90919063ffffffff16565b90505b610e9c85826112ac565b9450610ea987308361101b565b505b610eb686868661101b565b505050505050565b5f8184841115610ee15760405162461bcd60e51b815260040161059e9190611461565b505f610eed848661163e565b95945050505050565b5f80610f02838561162b565b905083811015610f545760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161059e565b9392505050565b6001600160a01b0382165f908152600f602052604081205460ff1680610f9857506001600160a01b0382165f908152600f602052604090205460ff165b80610f54575060125460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610fef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110139190611651565b119392505050565b6001600160a01b03831661107f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161059e565b6001600160a01b0382166110e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161059e565b61111d8160405180606001604052806026815260200161173d602691396001600160a01b0386165f908152602081905260409020549190610ebe565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461114b9082610ef6565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b5e565b476111a5836112ed565b5f6111b047836112ac565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f193505050501580156111e6573d5f803e3d5ffd5b5050505050565b5f825f036111fc57505f6105f7565b5f6112078385611668565b905082611214858361167f565b14610f545760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161059e565b5f610f5483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611435565b5f610f5483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ebe565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106113205761132061169e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b91906116b2565b816001815181106113ae576113ae61169e565b6001600160a01b0392831660209182029290920101526006546113d49130911684610a47565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061140c9085905f908690309042906004016116cd565b5f604051808303815f87803b158015611423575f80fd5b505af1158015610eb6573d5f803e3d5ffd5b5f81836114555760405162461bcd60e51b815260040161059e9190611461565b505f610eed848661167f565b5f6020808352835180828501525f5b8181101561148c57858101830151858201604001528201611470565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105e4575f80fd5b5f602082840312156114d0575f80fd5b8135610f54816114ac565b5f80604083850312156114ec575f80fd5b82356114f7816114ac565b946020939093013593505050565b5f805f60608486031215611517575f80fd5b8335611522816114ac565b92506020840135611532816114ac565b929592945050506040919091013590565b5f8060408385031215611554575f80fd5b823561155f816114ac565b915060208301358015158114611573575f80fd5b809150509250929050565b5f806040838503121561158f575f80fd5b823561159a816114ac565b91506020830135611573816114ac565b600181811c908216806115be57607f821691505b6020821081036115dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105f7576105f7611617565b818103818111156105f7576105f7611617565b5f60208284031215611661575f80fd5b5051919050565b80820281158282048414176105f7576105f7611617565b5f8261169957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156116c2575f80fd5b8151610f54816114ac565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561171b5784516001600160a01b0316835293830193918301916001016116f6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202c0fa0af230b12d48999e6f8b1c5abc92b5a043cf6eb0b882594fb5da15005a764736f6c63430008150033

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

00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000dd4c5ee2aeca9cc7e70761ed894783642f65f678000000000000000000000000bdfba1a8ff9bf07164c714eddd4f539d27a2d7c7

-----Decoded View---------------
Arg [0] : parameters (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : uniswapV2Router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : refInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 000000000000000000000000dd4c5ee2aeca9cc7e70761ed894783642f65f678
Arg [6] : 000000000000000000000000bdfba1a8ff9bf07164c714eddd4f539d27a2d7c7


Deployed Bytecode Sourcemap

33630:6650:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9725:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36205:221;;;;;;;;;;-1:-1:-1;36205:221:0;;;;;:::i;:::-;;:::i;:::-;;12110:210;;;;;;;;;;-1:-1:-1;12110:210:0;;;;;:::i;:::-;;:::i;:::-;;;1440:14:1;;1433:22;1415:41;;1403:2;1388:18;12110:210:0;1275:187:1;33712:39:0;;;;;;;;;;-1:-1:-1;33712:39:0;;;;-1:-1:-1;;;;;33712:39:0;;;;;;-1:-1:-1;;;;;1656:32:1;;;1638:51;;1626:2;1611:18;33712:39:0;1467:228:1;10882:108:0;;;;;;;;;;-1:-1:-1;10970:12:0;;10882:108;;;1846:25:1;;;1834:2;1819:18;10882:108:0;1700:177:1;12812:454:0;;;;;;;;;;-1:-1:-1;12812:454:0;;;;;:::i;:::-;;:::i;10707:100::-;;;;;;;;;;-1:-1:-1;10790:9:0;;10707:100;;10790:9;;;;2485:36:1;;2473:2;2458:18;10707:100:0;2343:184:1;13685:300:0;;;;;;;;;;-1:-1:-1;13685:300:0;;;;;:::i;:::-;;:::i;33802:28::-;;;;;;;;;;-1:-1:-1;33802:28:0;;;;-1:-1:-1;;;;;33802:28:0;;;33969:27;;;;;;;;;;;;;;;;11063:177;;;;;;;;;;-1:-1:-1;11063:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11214:18:0;11182:7;11214:18;;;;;;;;;;;;11063:177;29665:148;;;;;;;;;;;;;:::i;36434:123::-;;;;;;;;;;;;;:::i;34005:84::-;;;;;;;;;;-1:-1:-1;34005:84:0;;;;-1:-1:-1;;;;;34005:84:0;;;34096:26;;;;;;;;;;;;;;;;29023:79;;;;;;;;;;-1:-1:-1;29088:6:0;;;;;-1:-1:-1;;;;;29088:6:0;29023:79;;34129:22;;;;;;;;;;;;;;;;9944:104;;;;;;;;;;;;;:::i;14498:400::-;;;;;;;;;;-1:-1:-1;14498:400:0;;;;;:::i;:::-;;:::i;11463:216::-;;;;;;;;;;-1:-1:-1;11463:216:0;;;;;:::i;:::-;;:::i;36602:182::-;;;;;;;;;;-1:-1:-1;36602:182:0;;;;;:::i;:::-;;:::i;33934:28::-;;;;;;;;;;;;;;;;33898:27;;;;;;;;;;;;;;;;11752:201;;;;;;;;;;-1:-1:-1;11752:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11918:18:0;;;11886:7;11918:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11752:201;34463:38;;;;;;;;;;-1:-1:-1;34463:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29968:281;;;;;;;;;;-1:-1:-1;29968:281:0;;;;;:::i;:::-;;:::i;9725:100::-;9779:13;9812:5;9805:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9725:100;:::o;36205:221::-;29235:6;;-1:-1:-1;;;;;29235:6:0;;;;;303:10;29235:22;29227:67;;;;-1:-1:-1;;;29227:67:0;;;;;;;:::i;:::-;;;;;;;;;36282:11:::1;:18:::0;;-1:-1:-1;;;;;36311:30:0;;::::1;-1:-1:-1::0;;;;;;36311:30:0;;;;;;;-1:-1:-1;;;36311:30:0;;;;;36381:3:::1;:15:::0;36352:66:::1;::::0;36381:15;;::::1;::::0;36398:13:::1;36296:4;36352:28;:66::i;:::-;36205:221:::0;:::o;12110:210::-;12229:4;12251:39;303:10;12274:7;12283:6;12251:8;:39::i;:::-;-1:-1:-1;12308:4:0;12110:210;;;;;:::o;12812:454::-;12952:4;12969:36;12979:6;12987:9;12998:6;12969:9;:36::i;:::-;13016:220;13039:6;303:10;13087:138;13143:6;13087:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13087:19:0;;;;;;:11;:19;;;;;;;;303:10;13087:33;;;;;;;;;;:37;:138::i;:::-;13016:8;:220::i;:::-;-1:-1:-1;13254:4:0;12812:454;;;;;:::o;13685:300::-;303:10;13800:4;13894:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13894:34:0;;;;;;;;;;13800:4;;13822:133;;13872:7;;13894:50;;13933:10;13894:38;:50::i;29665:148::-;29235:6;;-1:-1:-1;;;;;29235:6:0;;;;;303:10;29235:22;29227:67;;;;-1:-1:-1;;;29227:67:0;;;;;;;:::i;:::-;29756:6:::1;::::0;29735:40:::1;::::0;29772:1:::1;::::0;29756:6:::1;::::0;::::1;-1:-1:-1::0;;;;;29756:6:0::1;::::0;29735:40:::1;::::0;29772:1;;29735:40:::1;29786:6;:19:::0;;-1:-1:-1;;;;;;29786:19:0::1;::::0;;29665:148::o;36434:123::-;29235:6;;-1:-1:-1;;;;;29235:6:0;;;;;303:10;29235:22;29227:67;;;;-1:-1:-1;;;29227:67:0;;;;;;;:::i;:::-;10970:12;;36488:11:::1;:27:::0;10970:12;;36526:7:::1;:23:::0;36434:123::o;9944:104::-;10000:13;10033:7;10026:14;;;;;:::i;14498:400::-;14618:4;14640:228;303:10;14690:7;14712:145;14769:15;14712:145;;;;;;;;;;;;;;;;;303:10;14712:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14712:34:0;;;;;;;;;;;;:38;:145::i;11463:216::-;11585:4;11607:42;303:10;11631:9;11642:6;11607:9;:42::i;36602:182::-;29235:6;;-1:-1:-1;;;;;29235:6:0;;;;;303:10;29235:22;29227:67;;;;-1:-1:-1;;;29227:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36687:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;36687:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36742:34;;1415:41:1;;;36742:34:0::1;::::0;1388:18:1;36742:34:0::1;;;;;;;36602:182:::0;;:::o;29968:281::-;29235:6;;-1:-1:-1;;;;;29235:6:0;;;;;303:10;29235:22;29227:67;;;;-1:-1:-1;;;29227:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30071:22:0;::::1;30049:110;;;::::0;-1:-1:-1;;;30049:110:0;;4502:2:1;30049:110:0::1;::::0;::::1;4484:21:1::0;4541:2;4521:18;;;4514:30;4580:34;4560:18;;;4553:62;-1:-1:-1;;;4631:18:1;;;4624:36;4677:19;;30049:110:0::1;4300:402:1::0;30049:110:0::1;30196:6;::::0;30175:38:::1;::::0;-1:-1:-1;;;;;30175:38:0;;::::1;::::0;30196:6:::1;::::0;::::1;;::::0;30175:38:::1;::::0;;;::::1;30224:6;:17:::0;;-1:-1:-1;;;;;30224:17:0;;::::1;;;-1:-1:-1::0;;;;;;30224:17:0;;::::1;::::0;;;::::1;::::0;;29968:281::o;36792:368::-;-1:-1:-1;;;;;36913:12:0;;;;;;:6;:12;;;;;;:21;;;:12;;;;:21;;;36891:127;;;;-1:-1:-1;;;36891:127:0;;4909:2:1;36891:127:0;;;4891:21:1;4948:2;4928:18;;;4921:30;4987:34;4967:18;;;4960:62;5058:26;5038:18;;;5031:54;5102:19;;36891:127:0;4707:420:1;36891:127:0;-1:-1:-1;;;;;37029:12:0;;;;;;;:6;:12;;;;;;;;:20;;-1:-1:-1;;37029:20:0;;;;;;;;;;-1:-1:-1;37060:17:0;;;;;:25;;;;;;;;;;;;-1:-1:-1;;37060:42:0;;37126:26;;;37029:12;37126:26;36792:368;;;:::o;17889:380::-;-1:-1:-1;;;;;18025:19:0;;18017:68;;;;-1:-1:-1;;;18017:68:0;;5334:2:1;18017:68:0;;;5316:21:1;5373:2;5353:18;;;5346:30;5412:34;5392:18;;;5385:62;-1:-1:-1;;;5463:18:1;;;5456:34;5507:19;;18017:68:0;5132:400:1;18017:68:0;-1:-1:-1;;;;;18104:21:0;;18096:68;;;;-1:-1:-1;;;18096:68:0;;5739:2:1;18096:68:0;;;5721:21:1;5778:2;5758:18;;;5751:30;5817:34;5797:18;;;5790:62;-1:-1:-1;;;5868:18:1;;;5861:32;5910:19;;18096:68:0;5537:398:1;18096:68:0;-1:-1:-1;;;;;18177:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18229:32;;1846:25:1;;;18229:32:0;;1819:18:1;18229:32:0;;;;;;;;17889:380;;;:::o;37409:1967::-;37538:11;;-1:-1:-1;;;37538:11:0;;;;37533:186;;29088:6;;-1:-1:-1;;;;;37592:15:0;;;29088:6;;;;;37592:15;37566:141;;;;-1:-1:-1;;;37566:141:0;;6142:2:1;37566:141:0;;;6124:21:1;6181:2;6161:18;;;6154:30;6220:34;6200:18;;;6193:62;6291:33;6271:18;;;6264:61;6342:19;;37566:141:0;5940:427:1;37566:141:0;-1:-1:-1;;;;;37748:16:0;;;;:41;;-1:-1:-1;;;;;;37768:21:0;;37782:6;37768:21;37748:41;37747:84;;;;37807:24;37822:4;37828:2;37807:14;:24::i;:::-;37747:112;;;-1:-1:-1;37848:11:0;;37747:112;37729:669;;;37886:33;37902:4;37908:2;37912:6;37886:15;:33::i;:::-;37409:1967;;;:::o;37729:669::-;38009:11;;37999:6;:21;;37973:123;;;;-1:-1:-1;;;37973:123:0;;6574:2:1;37973:123:0;;;6556:21:1;6613:2;6593:18;;;6586:30;6652:34;6632:18;;;6625:62;-1:-1:-1;;;6703:18:1;;;6696:38;6751:19;;37973:123:0;6372:404:1;37973:123:0;38123:13;;-1:-1:-1;;;;;38117:19:0;;;38123:13;;38117:19;38113:274;;-1:-1:-1;;;;;11214:18:0;;38157:32;11214:18;;;;;;;;;;;38291:7;;38254:33;38281:6;11214:18;38254:33;:::i;:::-;:44;;38224:147;;;;-1:-1:-1;;;38224:147:0;;7245:2:1;38224:147:0;;;7227:21:1;7284:2;7264:18;;;7257:30;7323:31;7303:18;;;7296:59;7372:18;;38224:147:0;7043:353:1;38224:147:0;38138:249;38113:274;38457:4;38408:28;11214:18;;;;;;;;;;;38513:12;;38489:36;;;;;;;38540:22;;-1:-1:-1;38552:10:0;;-1:-1:-1;;;38552:10:0;;;;38551:11;38540:22;:39;;;;-1:-1:-1;;;;;;38567:12:0;;;;;;:6;:12;;;;;;;;38566:13;38540:39;38536:313;;;38596:10;:17;;-1:-1:-1;;;;38596:17:0;-1:-1:-1;;;38596:17:0;;;38656:20;38697:19;;38693:110;;38771:15;;38737:50;;38754:15;;-1:-1:-1;;;;;38771:15:0;38737:16;:50::i;:::-;-1:-1:-1;38819:10:0;:18;;-1:-1:-1;;;;38819:18:0;;;38536:313;38877:10;;-1:-1:-1;;;;;38902:23:0;;38861:12;38902:23;;;:17;:23;;;;;;38877:10;-1:-1:-1;;;38877:10:0;;;;;38876:11;;38902:23;;:48;;-1:-1:-1;;;;;;38929:21:0;;;;;;:17;:21;;;;;;;;38902:48;38898:96;;;-1:-1:-1;38977:5:0;38898:96;39010:7;39006:317;;;39034:17;39054:35;39083:5;39054:24;39065:12;;39054:6;:10;;:24;;;;:::i;:::-;:28;;:35::i;:::-;-1:-1:-1;;;;;39108:10:0;;;;;;:6;:10;;;;;;39034:55;;-1:-1:-1;39108:10:0;;39104:99;;;39151:36;39181:5;39151:25;39162:13;;39151:6;:10;;:25;;;;:::i;:36::-;39139:48;;39104:99;39226:21;:6;39237:9;39226:10;:21::i;:::-;39217:30;;39264:47;39280:4;39294;39301:9;39264:15;:47::i;:::-;39019:304;39006:317;39335:33;39351:4;39357:2;39361:6;39335:15;:33::i;:::-;37522:1854;;;37409:1967;;;:::o;1735:226::-;1855:7;1891:12;1883:6;;;;1875:29;;;;-1:-1:-1;;;1875:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1915:9:0;1927:5;1931:1;1927;:5;:::i;:::-;1915:17;1735:226;-1:-1:-1;;;;;1735:226:0:o;832:181::-;890:7;;922:5;926:1;922;:5;:::i;:::-;910:17;;951:1;946;:6;;938:46;;;;-1:-1:-1;;;938:46:0;;7736:2:1;938:46:0;;;7718:21:1;7775:2;7755:18;;;7748:30;7814:29;7794:18;;;7787:57;7861:18;;938:46:0;7534:351:1;938:46:0;1004:1;832:181;-1:-1:-1;;;832:181:0:o;37168:233::-;-1:-1:-1;;;;;37260:23:0;;37236:4;37260:23;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;37287:21:0;;;;;;:17;:21;;;;;;;;37260:48;:133;;;-1:-1:-1;37339:16:0;;37325:64;;-1:-1:-1;;;37325:64:0;;-1:-1:-1;;;;;8120:15:1;;;37325:64:0;;;8102:34:1;8172:15;;;8152:18;;;8145:43;37392:1:0;;37339:16;;37325:54;;8037:18:1;;37325:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;37253:140;37168:233;-1:-1:-1;;;37168:233:0:o;15388:610::-;-1:-1:-1;;;;;15528:20:0;;15520:70;;;;-1:-1:-1;;;15520:70:0;;8590:2:1;15520:70:0;;;8572:21:1;8629:2;8609:18;;;8602:30;8668:34;8648:18;;;8641:62;-1:-1:-1;;;8719:18:1;;;8712:35;8764:19;;15520:70:0;8388:401:1;15520:70:0;-1:-1:-1;;;;;15609:23:0;;15601:71;;;;-1:-1:-1;;;15601:71:0;;8996:2:1;15601:71:0;;;8978:21:1;9035:2;9015:18;;;9008:30;9074:34;9054:18;;;9047:62;-1:-1:-1;;;9125:18:1;;;9118:33;9168:19;;15601:71:0;8794:399:1;15601:71:0;15765:108;15801:6;15765:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15765:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;15745:17:0;;;:9;:17;;;;;;;;;;;:128;;;;15907:20;;;;;;;:32;;15932:6;15907:24;:32::i;:::-;-1:-1:-1;;;;;15884:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15955:35;1846:25:1;;;15884:20:0;;15955:35;;;;;;1819:18:1;15955:35:0;1700:177:1;39384:296:0;39488:21;39522:24;39539:6;39522:16;:24::i;:::-;39559:18;39580:41;:21;39606:14;39580:25;:41::i;:::-;39634:38;;39559:62;;-1:-1:-1;;;;;;39634:26:0;;;:38;;;;;39559:62;;39634:38;;;;39559:62;39634:26;:38;;;;;;;;;;;;;;;;;;;;;39452:228;;39384:296;;:::o;2220:471::-;2278:7;2523:1;2528;2523:6;2519:47;;-1:-1:-1;2553:1:0;2546:8;;2519:47;2578:9;2590:5;2594:1;2590;:5;:::i;:::-;2578:17;-1:-1:-1;2623:1:0;2614:5;2618:1;2578:17;2614:5;:::i;:::-;:10;2606:56;;;;-1:-1:-1;;;2606:56:0;;9795:2:1;2606:56:0;;;9777:21:1;9834:2;9814:18;;;9807:30;9873:34;9853:18;;;9846:62;-1:-1:-1;;;9924:18:1;;;9917:31;9965:19;;2606:56:0;9593:397:1;3167:132:0;3225:7;3252:39;3256:1;3259;3252:39;;;;;;;;;;;;;;;;;:3;:39::i;1296:136::-;1354:7;1381:43;1385:1;1388;1381:43;;;;;;;;;;;;;;;;;:3;:43::i;39688:589::-;39838:16;;;39852:1;39838:16;;;;;;;;39814:21;;39838:16;;;;;;;;;;-1:-1:-1;39838:16:0;39814:40;;39883:4;39865;39870:1;39865:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39865:23:0;;;:7;;;;;;;;;;:23;;;;39909:15;;:22;;;-1:-1:-1;;;39909:22:0;;;;:15;;;;;:20;;:22;;;;;39865:7;;39909:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39899:4;39904:1;39899:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39899:32:0;;;:7;;;;;;;;;:32;39976:15;;39944:62;;39961:4;;39976:15;39994:11;39944:8;:62::i;:::-;40045:15;;:224;;-1:-1:-1;;;40045:224:0;;-1:-1:-1;;;;;40045:15:0;;;;:66;;:224;;40126:11;;40045:15;;40196:4;;40223;;40243:15;;40045:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3795:312;3915:7;3950:12;3943:5;3935:28;;;;-1:-1:-1;;;3935:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3974:9:0;3986:5;3990:1;3986;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:247;762:6;815:2;803:9;794:7;790:23;786:32;783:52;;;831:1;828;821:12;783:52;870:9;857:23;889:31;914:5;889:31;:::i;955:315::-;1023:6;1031;1084:2;1072:9;1063:7;1059:23;1055:32;1052:52;;;1100:1;1097;1090:12;1052:52;1139:9;1126:23;1158:31;1183:5;1158:31;:::i;:::-;1208:5;1260:2;1245:18;;;;1232:32;;-1:-1:-1;;;955:315:1:o;1882:456::-;1959:6;1967;1975;2028:2;2016:9;2007:7;2003:23;1999:32;1996:52;;;2044:1;2041;2034:12;1996:52;2083:9;2070:23;2102:31;2127:5;2102:31;:::i;:::-;2152:5;-1:-1:-1;2209:2:1;2194:18;;2181:32;2222:33;2181:32;2222:33;:::i;:::-;1882:456;;2274:7;;-1:-1:-1;;;2328:2:1;2313:18;;;;2300:32;;1882:456::o;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:380::-;3633:1;3629:12;;;;3676;;;3697:61;;3751:4;3743:6;3739:17;3729:27;;3697:61;3804:2;3796:6;3793:14;3773:18;3770:38;3767:161;;3850:10;3845:3;3841:20;3838:1;3831:31;3885:4;3882:1;3875:15;3913:4;3910:1;3903:15;3767:161;;3554:380;;;:::o;3939:356::-;4141:2;4123:21;;;4160:18;;;4153:30;4219:34;4214:2;4199:18;;4192:62;4286:2;4271:18;;3939:356::o;6781:127::-;6842:10;6837:3;6833:20;6830:1;6823:31;6873:4;6870:1;6863:15;6897:4;6894:1;6887:15;6913:125;6978:9;;;6999:10;;;6996:36;;;7012:18;;:::i;7401:128::-;7468:9;;;7489:11;;;7486:37;;;7503:18;;:::i;8199:184::-;8269:6;8322:2;8310:9;8301:7;8297:23;8293:32;8290:52;;;8338:1;8335;8328:12;8290:52;-1:-1:-1;8361:16:1;;8199:184;-1:-1:-1;8199:184:1:o;9198:168::-;9271:9;;;9302;;9319:15;;;9313:22;;9299:37;9289:71;;9340:18;;:::i;9371:217::-;9411:1;9437;9427:132;;9481:10;9476:3;9472:20;9469:1;9462:31;9516:4;9513:1;9506:15;9544:4;9541:1;9534:15;9427:132;-1:-1:-1;9573:9:1;;9371:217::o;10127:127::-;10188:10;10183:3;10179:20;10176:1;10169:31;10219:4;10216:1;10209:15;10243:4;10240:1;10233:15;10259:251;10329:6;10382:2;10370:9;10361:7;10357:23;10353:32;10350:52;;;10398:1;10395;10388:12;10350:52;10430:9;10424:16;10449:31;10474:5;10449:31;:::i;10515:980::-;10777:4;10825:3;10814:9;10810:19;10856:6;10845:9;10838:25;10882:2;10920:6;10915:2;10904:9;10900:18;10893:34;10963:3;10958:2;10947:9;10943:18;10936:31;10987:6;11022;11016:13;11053:6;11045;11038:22;11091:3;11080:9;11076:19;11069:26;;11130:2;11122:6;11118:15;11104:29;;11151:1;11161:195;11175:6;11172:1;11169:13;11161:195;;;11240:13;;-1:-1:-1;;;;;11236:39:1;11224:52;;11331:15;;;;11296:12;;;;11272:1;11190:9;11161:195;;;-1:-1:-1;;;;;;;11412:32:1;;;;11407:2;11392:18;;11385:60;-1:-1:-1;;;11476:3:1;11461:19;11454:35;11373:3;10515:980;-1:-1:-1;;;10515:980:1:o

Swarm Source

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