BNB Price: $615.43 (+3.06%)
 

Overview

Max Total Supply

2,100WFTX

Holders

11,981

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
JumpToken: JMPT Token
Balance
0.000000000000000001 WFTX

Value
$0.00
0x88d7e9b65dc24cf54f5edef929225fc3e1580c25
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
WFTX

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2024-07-30
*/

/**
 *Submitted for verification at BscScan.com on 2022-09-14
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity >=0.6.0 <=0.8.15;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

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



pragma solidity >=0.6.0 <=0.8.15;

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

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

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



pragma solidity >=0.6.0 <=0.8.15;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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;
    }
}

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



pragma solidity >=0.6.0 <=0.8.15;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);
}

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



pragma solidity >=0.6.0 <=0.8.15;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

    /**
     * @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 {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-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 {IERC20-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 {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _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 {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _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:
     *
     * - `to` 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

// File: interface/IUniswapV2Factory.sol

pragma solidity >=0.6.0 <=0.8.15;

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

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

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

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

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

// File: interface/IUniswapV2Pair.sol

pragma solidity >=0.6.0 <=0.8.15;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: interface/IUniswapV2Router02.sol

pragma solidity >=0.6.0 <=0.8.15;

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

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

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

pragma solidity >=0.6.0 <=0.8.15;

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

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

// File: contracts/thx.sol

pragma solidity >=0.6.0 <=0.8.15;
pragma experimental ABIEncoderV2;

contract WFTX is Ownable, ERC20 {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
    address public  USDT = 0x55d398326f99059fF775485246999027B3197955;
    
    uint256 public maxvalue;

    constructor() ERC20("WFTX", "WFTX") {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), USDT);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        maxvalue = 1*(10**18);
        
        _mint(msg.sender, 2100 * (10**18));
    }

    receive() external payable {}

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

        if (from == uniswapV2Pair){
            require(amount <= maxvalue, "uniswap Exceeding the limit");
        }

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

    function emergency(address _token, address payable _account,uint _amount) external onlyOwner{
        if(_token == address(0)){
           _account.transfer(_amount);
        }else{
            IERC20(_token).transfer(_account,_amount);
        }
    }

    function setMaxvalue(uint256 val) external onlyOwner {
        maxvalue = val*(10**18);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"USDT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address payable","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergency","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":[],"name":"maxvalue","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040527355d398326f99059ff775485246999027b3197955600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600481526020017f57465458000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f57465458000000000000000000000000000000000000000000000000000000008152506000620000e5620003ac60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350816004908162000194919062000846565b508060059081620001a6919062000846565b506012600660006101000a81548160ff021916908360ff160217905550505060007310ed43c718714eb63d5aa57b78b54704e256024e905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062000997565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620002b0929190620009da565b6020604051808303816000875af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062000997565b905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550670de0b6b3a7640000600981905550620003a4336871d75ab9b920500000620003b460201b60201c565b505062000bb6565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000426576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041d9062000a68565b60405180910390fd5b6200043a600083836200056460201b60201c565b62000456816003546200056960201b62000f361790919060201c565b600381905550620004b581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200056960201b62000f361790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000558919062000a9b565b60405180910390a35050565b505050565b60008082846200057a919062000ae7565b905083811015620005c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b99062000b94565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064e57607f821691505b60208210810362000664576200066362000606565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200068f565b620006da86836200068f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000727620007216200071b84620006f2565b620006fc565b620006f2565b9050919050565b6000819050919050565b620007438362000706565b6200075b62000752826200072e565b8484546200069c565b825550505050565b600090565b6200077262000763565b6200077f81848462000738565b505050565b5b81811015620007a7576200079b60008262000768565b60018101905062000785565b5050565b601f821115620007f657620007c0816200066a565b620007cb846200067f565b81016020851015620007db578190505b620007f3620007ea856200067f565b83018262000784565b50505b505050565b600082821c905092915050565b60006200081b60001984600802620007fb565b1980831691505092915050565b600062000836838362000808565b9150826002028217905092915050565b6200085182620005cc565b67ffffffffffffffff8111156200086d576200086c620005d7565b5b62000879825462000635565b62000886828285620007ab565b600060209050601f831160018114620008be5760008415620008a9578287015190505b620008b5858262000828565b86555062000925565b601f198416620008ce866200066a565b60005b82811015620008f857848901518255600182019150602085019450602081019050620008d1565b8683101562000918578489015162000914601f89168262000808565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200095f8262000932565b9050919050565b620009718162000952565b81146200097d57600080fd5b50565b600081519050620009918162000966565b92915050565b600060208284031215620009b057620009af6200092d565b5b6000620009c08482850162000980565b91505092915050565b620009d48162000952565b82525050565b6000604082019050620009f16000830185620009c9565b62000a006020830184620009c9565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a50601f8362000a07565b915062000a5d8262000a18565b602082019050919050565b6000602082019050818103600083015262000a838162000a41565b9050919050565b62000a9581620006f2565b82525050565b600060208201905062000ab2600083018462000a8a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af482620006f2565b915062000b0183620006f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b395762000b3862000ab8565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000b7c601b8362000a07565b915062000b898262000b44565b602082019050919050565b6000602082019050818103600083015262000baf8162000b6d565b9050919050565b6120348062000bc66000396000f3fe6080604052600436106101235760003560e01c8063715018a6116100a0578063a457c2d711610064578063a457c2d7146103e4578063a9059cbb14610421578063c54e44eb1461045e578063dd62ed3e14610489578063f2fde38b146104c65761012a565b8063715018a6146103235780638da5cb5b1461033a5780639338e30914610365578063937794eb1461038e57806395d89b41146103b95761012a565b806323b872dd116100e757806323b872dd14610216578063313ce56714610253578063395093511461027e57806349bd5a5e146102bb57806370a08231146102e65761012a565b806306fdde031461012f578063095ea7b31461015a57806311dea9ff146101975780631694505e146101c057806318160ddd146101eb5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101446104ef565b60405161015191906115a3565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c919061165e565b610581565b60405161018e91906116b9565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190611712565b61059f565b005b3480156101cc57600080fd5b506101d5610720565b6040516101e291906117c4565b60405180910390f35b3480156101f757600080fd5b50610200610746565b60405161020d91906117ee565b60405180910390f35b34801561022257600080fd5b5061023d60048036038101906102389190611809565b610750565b60405161024a91906116b9565b60405180910390f35b34801561025f57600080fd5b50610268610829565b6040516102759190611878565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a0919061165e565b610840565b6040516102b291906116b9565b60405180910390f35b3480156102c757600080fd5b506102d06108f3565b6040516102dd91906118a2565b60405180910390f35b3480156102f257600080fd5b5061030d600480360381019061030891906118bd565b610919565b60405161031a91906117ee565b60405180910390f35b34801561032f57600080fd5b50610338610962565b005b34801561034657600080fd5b5061034f610a9c565b60405161035c91906118a2565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906118ea565b610ac5565b005b34801561039a57600080fd5b506103a3610b5e565b6040516103b091906117ee565b60405180910390f35b3480156103c557600080fd5b506103ce610b64565b6040516103db91906115a3565b60405180910390f35b3480156103f057600080fd5b5061040b6004803603810190610406919061165e565b610bf6565b60405161041891906116b9565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061165e565b610cc3565b60405161045591906116b9565b60405180910390f35b34801561046a57600080fd5b50610473610ce1565b60405161048091906118a2565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190611917565b610d07565b6040516104bd91906117ee565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906118bd565b610d8e565b005b6060600480546104fe90611986565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611986565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b600061059561058e610f94565b8484610f9c565b6001905092915050565b6105a7610f94565b73ffffffffffffffffffffffffffffffffffffffff166105c5610a9c565b73ffffffffffffffffffffffffffffffffffffffff161461061b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061290611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361069b578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610695573d6000803e3d6000fd5b5061071b565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016106d6929190611a44565b6020604051808303816000875af11580156106f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107199190611a99565b505b505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600061075d848484611165565b61081e84610769610f94565b61081985604051806060016040528060288152602001611fb260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107cf610f94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112109092919063ffffffff16565b610f9c565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006108e961084d610f94565b846108e4856002600061085e610f94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f3690919063ffffffff16565b610f9c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61096a610f94565b73ffffffffffffffffffffffffffffffffffffffff16610988610a9c565b73ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610acd610f94565b73ffffffffffffffffffffffffffffffffffffffff16610aeb610a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890611a03565b60405180910390fd5b670de0b6b3a764000081610b559190611af5565b60098190555050565b60095481565b606060058054610b7390611986565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f90611986565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b5050505050905090565b6000610cb9610c03610f94565b84610cb485604051806060016040528060258152602001611fda6025913960026000610c2d610f94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112109092919063ffffffff16565b610f9c565b6001905092915050565b6000610cd7610cd0610f94565b8484611165565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d96610f94565b73ffffffffffffffffffffffffffffffffffffffff16610db4610a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090611bc1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610f459190611be1565b905083811015610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190611c83565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290611d15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190611da7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161115891906117ee565b60405180910390a3505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611200576009548111156111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690611e13565b60405180910390fd5b5b61120b83838361126e565b505050565b6000838311158290611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f91906115a3565b60405180910390fd5b5082846112659190611e33565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490611ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390611f6b565b60405180910390fd5b611357838383611505565b6113c381604051806060016040528060268152602001611f8c60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112109092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f3690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f891906117ee565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611544578082015181840152602081019050611529565b83811115611553576000848401525b50505050565b6000601f19601f8301169050919050565b60006115758261150a565b61157f8185611515565b935061158f818560208601611526565b61159881611559565b840191505092915050565b600060208201905081810360008301526115bd818461156a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115f5826115ca565b9050919050565b611605816115ea565b811461161057600080fd5b50565b600081359050611622816115fc565b92915050565b6000819050919050565b61163b81611628565b811461164657600080fd5b50565b60008135905061165881611632565b92915050565b60008060408385031215611675576116746115c5565b5b600061168385828601611613565b925050602061169485828601611649565b9150509250929050565b60008115159050919050565b6116b38161169e565b82525050565b60006020820190506116ce60008301846116aa565b92915050565b60006116df826115ca565b9050919050565b6116ef816116d4565b81146116fa57600080fd5b50565b60008135905061170c816116e6565b92915050565b60008060006060848603121561172b5761172a6115c5565b5b600061173986828701611613565b935050602061174a868287016116fd565b925050604061175b86828701611649565b9150509250925092565b6000819050919050565b600061178a611785611780846115ca565b611765565b6115ca565b9050919050565b600061179c8261176f565b9050919050565b60006117ae82611791565b9050919050565b6117be816117a3565b82525050565b60006020820190506117d960008301846117b5565b92915050565b6117e881611628565b82525050565b600060208201905061180360008301846117df565b92915050565b600080600060608486031215611822576118216115c5565b5b600061183086828701611613565b935050602061184186828701611613565b925050604061185286828701611649565b9150509250925092565b600060ff82169050919050565b6118728161185c565b82525050565b600060208201905061188d6000830184611869565b92915050565b61189c816115ea565b82525050565b60006020820190506118b76000830184611893565b92915050565b6000602082840312156118d3576118d26115c5565b5b60006118e184828501611613565b91505092915050565b600060208284031215611900576118ff6115c5565b5b600061190e84828501611649565b91505092915050565b6000806040838503121561192e5761192d6115c5565b5b600061193c85828601611613565b925050602061194d85828601611613565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061199e57607f821691505b6020821081036119b1576119b0611957565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ed602083611515565b91506119f8826119b7565b602082019050919050565b60006020820190508181036000830152611a1c816119e0565b9050919050565b6000611a2e82611791565b9050919050565b611a3e81611a23565b82525050565b6000604082019050611a596000830185611a35565b611a6660208301846117df565b9392505050565b611a768161169e565b8114611a8157600080fd5b50565b600081519050611a9381611a6d565b92915050565b600060208284031215611aaf57611aae6115c5565b5b6000611abd84828501611a84565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b0082611628565b9150611b0b83611628565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b4457611b43611ac6565b5b828202905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bab602683611515565b9150611bb682611b4f565b604082019050919050565b60006020820190508181036000830152611bda81611b9e565b9050919050565b6000611bec82611628565b9150611bf783611628565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2c57611c2b611ac6565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611c6d601b83611515565b9150611c7882611c37565b602082019050919050565b60006020820190508181036000830152611c9c81611c60565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cff602483611515565b9150611d0a82611ca3565b604082019050919050565b60006020820190508181036000830152611d2e81611cf2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d91602283611515565b9150611d9c82611d35565b604082019050919050565b60006020820190508181036000830152611dc081611d84565b9050919050565b7f756e697377617020457863656564696e6720746865206c696d69740000000000600082015250565b6000611dfd601b83611515565b9150611e0882611dc7565b602082019050919050565b60006020820190508181036000830152611e2c81611df0565b9050919050565b6000611e3e82611628565b9150611e4983611628565b925082821015611e5c57611e5b611ac6565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ec3602583611515565b9150611ece82611e67565b604082019050919050565b60006020820190508181036000830152611ef281611eb6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f55602383611515565b9150611f6082611ef9565b604082019050919050565b60006020820190508181036000830152611f8481611f48565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203e7b645b5f8c919468c897db6d10050b51962e46908ff70c7a89fc54eee330ec64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101235760003560e01c8063715018a6116100a0578063a457c2d711610064578063a457c2d7146103e4578063a9059cbb14610421578063c54e44eb1461045e578063dd62ed3e14610489578063f2fde38b146104c65761012a565b8063715018a6146103235780638da5cb5b1461033a5780639338e30914610365578063937794eb1461038e57806395d89b41146103b95761012a565b806323b872dd116100e757806323b872dd14610216578063313ce56714610253578063395093511461027e57806349bd5a5e146102bb57806370a08231146102e65761012a565b806306fdde031461012f578063095ea7b31461015a57806311dea9ff146101975780631694505e146101c057806318160ddd146101eb5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101446104ef565b60405161015191906115a3565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c919061165e565b610581565b60405161018e91906116b9565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190611712565b61059f565b005b3480156101cc57600080fd5b506101d5610720565b6040516101e291906117c4565b60405180910390f35b3480156101f757600080fd5b50610200610746565b60405161020d91906117ee565b60405180910390f35b34801561022257600080fd5b5061023d60048036038101906102389190611809565b610750565b60405161024a91906116b9565b60405180910390f35b34801561025f57600080fd5b50610268610829565b6040516102759190611878565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a0919061165e565b610840565b6040516102b291906116b9565b60405180910390f35b3480156102c757600080fd5b506102d06108f3565b6040516102dd91906118a2565b60405180910390f35b3480156102f257600080fd5b5061030d600480360381019061030891906118bd565b610919565b60405161031a91906117ee565b60405180910390f35b34801561032f57600080fd5b50610338610962565b005b34801561034657600080fd5b5061034f610a9c565b60405161035c91906118a2565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906118ea565b610ac5565b005b34801561039a57600080fd5b506103a3610b5e565b6040516103b091906117ee565b60405180910390f35b3480156103c557600080fd5b506103ce610b64565b6040516103db91906115a3565b60405180910390f35b3480156103f057600080fd5b5061040b6004803603810190610406919061165e565b610bf6565b60405161041891906116b9565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061165e565b610cc3565b60405161045591906116b9565b60405180910390f35b34801561046a57600080fd5b50610473610ce1565b60405161048091906118a2565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190611917565b610d07565b6040516104bd91906117ee565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906118bd565b610d8e565b005b6060600480546104fe90611986565b80601f016020809104026020016040519081016040528092919081815260200182805461052a90611986565b80156105775780601f1061054c57610100808354040283529160200191610577565b820191906000526020600020905b81548152906001019060200180831161055a57829003601f168201915b5050505050905090565b600061059561058e610f94565b8484610f9c565b6001905092915050565b6105a7610f94565b73ffffffffffffffffffffffffffffffffffffffff166105c5610a9c565b73ffffffffffffffffffffffffffffffffffffffff161461061b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061290611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361069b578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610695573d6000803e3d6000fd5b5061071b565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016106d6929190611a44565b6020604051808303816000875af11580156106f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107199190611a99565b505b505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600061075d848484611165565b61081e84610769610f94565b61081985604051806060016040528060288152602001611fb260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107cf610f94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112109092919063ffffffff16565b610f9c565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006108e961084d610f94565b846108e4856002600061085e610f94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f3690919063ffffffff16565b610f9c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61096a610f94565b73ffffffffffffffffffffffffffffffffffffffff16610988610a9c565b73ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610acd610f94565b73ffffffffffffffffffffffffffffffffffffffff16610aeb610a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890611a03565b60405180910390fd5b670de0b6b3a764000081610b559190611af5565b60098190555050565b60095481565b606060058054610b7390611986565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f90611986565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b5050505050905090565b6000610cb9610c03610f94565b84610cb485604051806060016040528060258152602001611fda6025913960026000610c2d610f94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112109092919063ffffffff16565b610f9c565b6001905092915050565b6000610cd7610cd0610f94565b8484611165565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d96610f94565b73ffffffffffffffffffffffffffffffffffffffff16610db4610a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090611bc1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610f459190611be1565b905083811015610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190611c83565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290611d15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190611da7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161115891906117ee565b60405180910390a3505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611200576009548111156111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690611e13565b60405180910390fd5b5b61120b83838361126e565b505050565b6000838311158290611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f91906115a3565b60405180910390fd5b5082846112659190611e33565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490611ed9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390611f6b565b60405180910390fd5b611357838383611505565b6113c381604051806060016040528060268152602001611f8c60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112109092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f3690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f891906117ee565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611544578082015181840152602081019050611529565b83811115611553576000848401525b50505050565b6000601f19601f8301169050919050565b60006115758261150a565b61157f8185611515565b935061158f818560208601611526565b61159881611559565b840191505092915050565b600060208201905081810360008301526115bd818461156a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115f5826115ca565b9050919050565b611605816115ea565b811461161057600080fd5b50565b600081359050611622816115fc565b92915050565b6000819050919050565b61163b81611628565b811461164657600080fd5b50565b60008135905061165881611632565b92915050565b60008060408385031215611675576116746115c5565b5b600061168385828601611613565b925050602061169485828601611649565b9150509250929050565b60008115159050919050565b6116b38161169e565b82525050565b60006020820190506116ce60008301846116aa565b92915050565b60006116df826115ca565b9050919050565b6116ef816116d4565b81146116fa57600080fd5b50565b60008135905061170c816116e6565b92915050565b60008060006060848603121561172b5761172a6115c5565b5b600061173986828701611613565b935050602061174a868287016116fd565b925050604061175b86828701611649565b9150509250925092565b6000819050919050565b600061178a611785611780846115ca565b611765565b6115ca565b9050919050565b600061179c8261176f565b9050919050565b60006117ae82611791565b9050919050565b6117be816117a3565b82525050565b60006020820190506117d960008301846117b5565b92915050565b6117e881611628565b82525050565b600060208201905061180360008301846117df565b92915050565b600080600060608486031215611822576118216115c5565b5b600061183086828701611613565b935050602061184186828701611613565b925050604061185286828701611649565b9150509250925092565b600060ff82169050919050565b6118728161185c565b82525050565b600060208201905061188d6000830184611869565b92915050565b61189c816115ea565b82525050565b60006020820190506118b76000830184611893565b92915050565b6000602082840312156118d3576118d26115c5565b5b60006118e184828501611613565b91505092915050565b600060208284031215611900576118ff6115c5565b5b600061190e84828501611649565b91505092915050565b6000806040838503121561192e5761192d6115c5565b5b600061193c85828601611613565b925050602061194d85828601611613565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061199e57607f821691505b6020821081036119b1576119b0611957565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ed602083611515565b91506119f8826119b7565b602082019050919050565b60006020820190508181036000830152611a1c816119e0565b9050919050565b6000611a2e82611791565b9050919050565b611a3e81611a23565b82525050565b6000604082019050611a596000830185611a35565b611a6660208301846117df565b9392505050565b611a768161169e565b8114611a8157600080fd5b50565b600081519050611a9381611a6d565b92915050565b600060208284031215611aaf57611aae6115c5565b5b6000611abd84828501611a84565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b0082611628565b9150611b0b83611628565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b4457611b43611ac6565b5b828202905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bab602683611515565b9150611bb682611b4f565b604082019050919050565b60006020820190508181036000830152611bda81611b9e565b9050919050565b6000611bec82611628565b9150611bf783611628565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2c57611c2b611ac6565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611c6d601b83611515565b9150611c7882611c37565b602082019050919050565b60006020820190508181036000830152611c9c81611c60565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cff602483611515565b9150611d0a82611ca3565b604082019050919050565b60006020820190508181036000830152611d2e81611cf2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d91602283611515565b9150611d9c82611d35565b604082019050919050565b60006020820190508181036000830152611dc081611d84565b9050919050565b7f756e697377617020457863656564696e6720746865206c696d69740000000000600082015250565b6000611dfd601b83611515565b9150611e0882611dc7565b602082019050919050565b60006020820190508181036000830152611e2c81611df0565b9050919050565b6000611e3e82611628565b9150611e4983611628565b925082821015611e5c57611e5b611ac6565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ec3602583611515565b9150611ece82611e67565b604082019050919050565b60006020820190508181036000830152611ef281611eb6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f55602383611515565b9150611f6082611ef9565b604082019050919050565b60006020820190508181036000830152611f8481611f48565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203e7b645b5f8c919468c897db6d10050b51962e46908ff70c7a89fc54eee330ec64736f6c634300080f0033

Deployed Bytecode Sourcemap

33052:1401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15836:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17982:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34089:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33126:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16935:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18633:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16779:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19363:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33174:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17106:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10306:148;;;;;;;;;;;;;:::i;:::-;;9655:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34355:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33288:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16046:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20084:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17446:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33210:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17684:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10609:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15836:91;15881:13;15914:5;15907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15836:91;:::o;17982:169::-;18065:4;18082:39;18091:12;:10;:12::i;:::-;18105:7;18114:6;18082:8;:39::i;:::-;18139:4;18132:11;;17982:169;;;;:::o;34089:258::-;9886:12;:10;:12::i;:::-;9875:23;;:7;:5;:7::i;:::-;:23;;;9867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34213:1:::1;34195:20;;:6;:20;;::::0;34192:148:::1;;34230:8;:17;;:26;34248:7;34230:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;34192:148;;;34294:6;34287:23;;;34311:8;34320:7;34287:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34192:148;34089:258:::0;;;:::o;33126:41::-;;;;;;;;;;;;;:::o;16935:108::-;16996:7;17023:12;;17016:19;;16935:108;:::o;18633:321::-;18739:4;18756:36;18766:6;18774:9;18785:6;18756:9;:36::i;:::-;18803:121;18812:6;18820:12;:10;:12::i;:::-;18834:89;18872:6;18834:89;;;;;;;;;;;;;;;;;:11;:19;18846:6;18834:19;;;;;;;;;;;;;;;:33;18854:12;:10;:12::i;:::-;18834:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18803:8;:121::i;:::-;18942:4;18935:11;;18633:321;;;;;:::o;16779:91::-;16828:5;16853:9;;;;;;;;;;;16846:16;;16779:91;:::o;19363:218::-;19451:4;19468:83;19477:12;:10;:12::i;:::-;19491:7;19500:50;19539:10;19500:11;:25;19512:12;:10;:12::i;:::-;19500:25;;;;;;;;;;;;;;;:34;19526:7;19500:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19468:8;:83::i;:::-;19569:4;19562:11;;19363:218;;;;:::o;33174:29::-;;;;;;;;;;;;;:::o;17106:127::-;17180:7;17207:9;:18;17217:7;17207:18;;;;;;;;;;;;;;;;17200:25;;17106:127;;;:::o;10306:148::-;9886:12;:10;:12::i;:::-;9875:23;;:7;:5;:7::i;:::-;:23;;;9867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10413:1:::1;10376:40;;10397:6;::::0;::::1;;;;;;;;10376:40;;;;;;;;;;;;10444:1;10427:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10306:148::o:0;9655:87::-;9701:7;9728:6;;;;;;;;;;;9721:13;;9655:87;:::o;34355:95::-;9886:12;:10;:12::i;:::-;9875:23;;:7;:5;:7::i;:::-;:23;;;9867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34435:6:::1;34430:3;:12;;;;:::i;:::-;34419:8;:23;;;;34355:95:::0;:::o;33288:23::-;;;;:::o;16046:95::-;16093:13;16126:7;16119:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16046:95;:::o;20084:269::-;20177:4;20194:129;20203:12;:10;:12::i;:::-;20217:7;20226:96;20265:15;20226:96;;;;;;;;;;;;;;;;;:11;:25;20238:12;:10;:12::i;:::-;20226:25;;;;;;;;;;;;;;;:34;20252:7;20226:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20194:8;:129::i;:::-;20341:4;20334:11;;20084:269;;;;:::o;17446:175::-;17532:4;17549:42;17559:12;:10;:12::i;:::-;17573:9;17584:6;17549:9;:42::i;:::-;17609:4;17602:11;;17446:175;;;;:::o;33210:65::-;;;;;;;;;;;;;:::o;17684:151::-;17773:7;17800:11;:18;17812:5;17800:18;;;;;;;;;;;;;;;:27;17819:7;17800:27;;;;;;;;;;;;;;;;17793:34;;17684:151;;;;:::o;10609:244::-;9886:12;:10;:12::i;:::-;9875:23;;:7;:5;:7::i;:::-;:23;;;9867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10718:1:::1;10698:22;;:8;:22;;::::0;10690:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10808:8;10779:38;;10800:6;::::0;::::1;;;;;;;;10779:38;;;;;;;;;;;;10837:8;10828:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;10609:244:::0;:::o;2900:179::-;2958:7;2978:9;2994:1;2990;:5;;;;:::i;:::-;2978:17;;3019:1;3014;:6;;3006:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3070:1;3063:8;;;2900:179;;;;:::o;8205:98::-;8258:7;8285:10;8278:17;;8205:98;:::o;23231:346::-;23350:1;23333:19;;:5;:19;;;23325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23431:1;23412:21;;:7;:21;;;23404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23515:6;23485:11;:18;23497:5;23485:18;;;;;;;;;;;;;;;:27;23504:7;23485:27;;;;;;;;;;;;;;;:36;;;;23553:7;23537:32;;23546:5;23537:32;;;23562:6;23537:32;;;;;;:::i;:::-;;;;;;;;23231:346;;;:::o;33820:261::-;33931:13;;;;;;;;;;;33923:21;;:4;:21;;;33919:111;;33978:8;;33968:6;:18;;33960:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33919:111;34042:31;34058:4;34063:2;34066:6;34042:15;:31::i;:::-;33820:261;;;:::o;5727:166::-;5813:7;5846:1;5841;:6;;5849:12;5833:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5884:1;5880;:5;;;;:::i;:::-;5873:12;;5727:166;;;;;:::o;20843:539::-;20967:1;20949:20;;:6;:20;;;20941:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;21051:1;21030:23;;:9;:23;;;21022:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21106:47;21127:6;21135:9;21146:6;21106:20;:47::i;:::-;21186:71;21208:6;21186:71;;;;;;;;;;;;;;;;;:9;:17;21196:6;21186:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21166:9;:17;21176:6;21166:17;;;;;;;;;;;;;;;:91;;;;21291:32;21316:6;21291:9;:20;21301:9;21291:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21268:9;:20;21278:9;21268:20;;;;;;;;;;;;;;;:55;;;;21356:9;21339:35;;21348:6;21339:35;;;21367:6;21339:35;;;;;;:::i;:::-;;;;;;;;20843:539;;;:::o;24610:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:104::-;3539:7;3568:24;3586:5;3568:24;:::i;:::-;3557:35;;3494:104;;;:::o;3604:138::-;3685:32;3711:5;3685:32;:::i;:::-;3678:5;3675:43;3665:71;;3732:1;3729;3722:12;3665:71;3604:138;:::o;3748:155::-;3802:5;3840:6;3827:20;3818:29;;3856:41;3891:5;3856:41;:::i;:::-;3748:155;;;;:::o;3909:635::-;3994:6;4002;4010;4059:2;4047:9;4038:7;4034:23;4030:32;4027:119;;;4065:79;;:::i;:::-;4027:119;4185:1;4210:53;4255:7;4246:6;4235:9;4231:22;4210:53;:::i;:::-;4200:63;;4156:117;4312:2;4338:61;4391:7;4382:6;4371:9;4367:22;4338:61;:::i;:::-;4328:71;;4283:126;4448:2;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4419:118;3909:635;;;;;:::o;4550:60::-;4578:3;4599:5;4592:12;;4550:60;;;:::o;4616:142::-;4666:9;4699:53;4717:34;4726:24;4744:5;4726:24;:::i;:::-;4717:34;:::i;:::-;4699:53;:::i;:::-;4686:66;;4616:142;;;:::o;4764:126::-;4814:9;4847:37;4878:5;4847:37;:::i;:::-;4834:50;;4764:126;;;:::o;4896:153::-;4973:9;5006:37;5037:5;5006:37;:::i;:::-;4993:50;;4896:153;;;:::o;5055:185::-;5169:64;5227:5;5169:64;:::i;:::-;5164:3;5157:77;5055:185;;:::o;5246:276::-;5366:4;5404:2;5393:9;5389:18;5381:26;;5417:98;5512:1;5501:9;5497:17;5488:6;5417:98;:::i;:::-;5246:276;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:86::-;6540:7;6580:4;6573:5;6569:16;6558:27;;6505:86;;;:::o;6597:112::-;6680:22;6696:5;6680:22;:::i;:::-;6675:3;6668:35;6597:112;;:::o;6715:214::-;6804:4;6842:2;6831:9;6827:18;6819:26;;6855:67;6919:1;6908:9;6904:17;6895:6;6855:67;:::i;:::-;6715:214;;;;:::o;6935:118::-;7022:24;7040:5;7022:24;:::i;:::-;7017:3;7010:37;6935:118;;:::o;7059:222::-;7152:4;7190:2;7179:9;7175:18;7167:26;;7203:71;7271:1;7260:9;7256:17;7247:6;7203:71;:::i;:::-;7059:222;;;;:::o;7287:329::-;7346:6;7395:2;7383:9;7374:7;7370:23;7366:32;7363:119;;;7401:79;;:::i;:::-;7363:119;7521:1;7546:53;7591:7;7582:6;7571:9;7567:22;7546:53;:::i;:::-;7536:63;;7492:117;7287:329;;;;:::o;7622:::-;7681:6;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7622:329;;;;:::o;7957:474::-;8025:6;8033;8082:2;8070:9;8061:7;8057:23;8053:32;8050:119;;;8088:79;;:::i;:::-;8050:119;8208:1;8233:53;8278:7;8269:6;8258:9;8254:22;8233:53;:::i;:::-;8223:63;;8179:117;8335:2;8361:53;8406:7;8397:6;8386:9;8382:22;8361:53;:::i;:::-;8351:63;;8306:118;7957:474;;;;;:::o;8437:180::-;8485:77;8482:1;8475:88;8582:4;8579:1;8572:15;8606:4;8603:1;8596:15;8623:320;8667:6;8704:1;8698:4;8694:12;8684:22;;8751:1;8745:4;8741:12;8772:18;8762:81;;8828:4;8820:6;8816:17;8806:27;;8762:81;8890:2;8882:6;8879:14;8859:18;8856:38;8853:84;;8909:18;;:::i;:::-;8853:84;8674:269;8623:320;;;:::o;8949:182::-;9089:34;9085:1;9077:6;9073:14;9066:58;8949:182;:::o;9137:366::-;9279:3;9300:67;9364:2;9359:3;9300:67;:::i;:::-;9293:74;;9376:93;9465:3;9376:93;:::i;:::-;9494:2;9489:3;9485:12;9478:19;;9137:366;;;:::o;9509:419::-;9675:4;9713:2;9702:9;9698:18;9690:26;;9762:9;9756:4;9752:20;9748:1;9737:9;9733:17;9726:47;9790:131;9916:4;9790:131;:::i;:::-;9782:139;;9509:419;;;:::o;9934:134::-;9992:9;10025:37;10056:5;10025:37;:::i;:::-;10012:50;;9934:134;;;:::o;10074:147::-;10169:45;10208:5;10169:45;:::i;:::-;10164:3;10157:58;10074:147;;:::o;10227:348::-;10356:4;10394:2;10383:9;10379:18;10371:26;;10407:79;10483:1;10472:9;10468:17;10459:6;10407:79;:::i;:::-;10496:72;10564:2;10553:9;10549:18;10540:6;10496:72;:::i;:::-;10227:348;;;;;:::o;10581:116::-;10651:21;10666:5;10651:21;:::i;:::-;10644:5;10641:32;10631:60;;10687:1;10684;10677:12;10631:60;10581:116;:::o;10703:137::-;10757:5;10788:6;10782:13;10773:22;;10804:30;10828:5;10804:30;:::i;:::-;10703:137;;;;:::o;10846:345::-;10913:6;10962:2;10950:9;10941:7;10937:23;10933:32;10930:119;;;10968:79;;:::i;:::-;10930:119;11088:1;11113:61;11166:7;11157:6;11146:9;11142:22;11113:61;:::i;:::-;11103:71;;11059:125;10846:345;;;;:::o;11197:180::-;11245:77;11242:1;11235:88;11342:4;11339:1;11332:15;11366:4;11363:1;11356:15;11383:348;11423:7;11446:20;11464:1;11446:20;:::i;:::-;11441:25;;11480:20;11498:1;11480:20;:::i;:::-;11475:25;;11668:1;11600:66;11596:74;11593:1;11590:81;11585:1;11578:9;11571:17;11567:105;11564:131;;;11675:18;;:::i;:::-;11564:131;11723:1;11720;11716:9;11705:20;;11383:348;;;;:::o;11737:225::-;11877:34;11873:1;11865:6;11861:14;11854:58;11946:8;11941:2;11933:6;11929:15;11922:33;11737:225;:::o;11968:366::-;12110:3;12131:67;12195:2;12190:3;12131:67;:::i;:::-;12124:74;;12207:93;12296:3;12207:93;:::i;:::-;12325:2;12320:3;12316:12;12309:19;;11968:366;;;:::o;12340:419::-;12506:4;12544:2;12533:9;12529:18;12521:26;;12593:9;12587:4;12583:20;12579:1;12568:9;12564:17;12557:47;12621:131;12747:4;12621:131;:::i;:::-;12613:139;;12340:419;;;:::o;12765:305::-;12805:3;12824:20;12842:1;12824:20;:::i;:::-;12819:25;;12858:20;12876:1;12858:20;:::i;:::-;12853:25;;13012:1;12944:66;12940:74;12937:1;12934:81;12931:107;;;13018:18;;:::i;:::-;12931:107;13062:1;13059;13055:9;13048:16;;12765:305;;;;:::o;13076:177::-;13216:29;13212:1;13204:6;13200:14;13193:53;13076:177;:::o;13259:366::-;13401:3;13422:67;13486:2;13481:3;13422:67;:::i;:::-;13415:74;;13498:93;13587:3;13498:93;:::i;:::-;13616:2;13611:3;13607:12;13600:19;;13259:366;;;:::o;13631:419::-;13797:4;13835:2;13824:9;13820:18;13812:26;;13884:9;13878:4;13874:20;13870:1;13859:9;13855:17;13848:47;13912:131;14038:4;13912:131;:::i;:::-;13904:139;;13631:419;;;:::o;14056:223::-;14196:34;14192:1;14184:6;14180:14;14173:58;14265:6;14260:2;14252:6;14248:15;14241:31;14056:223;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:221::-;15222:34;15218:1;15210:6;15206:14;15199:58;15291:4;15286:2;15278:6;15274:15;15267:29;15082:221;:::o;15309:366::-;15451:3;15472:67;15536:2;15531:3;15472:67;:::i;:::-;15465:74;;15548:93;15637:3;15548:93;:::i;:::-;15666:2;15661:3;15657:12;15650:19;;15309:366;;;:::o;15681:419::-;15847:4;15885:2;15874:9;15870:18;15862:26;;15934:9;15928:4;15924:20;15920:1;15909:9;15905:17;15898:47;15962:131;16088:4;15962:131;:::i;:::-;15954:139;;15681:419;;;:::o;16106:177::-;16246:29;16242:1;16234:6;16230:14;16223:53;16106:177;:::o;16289:366::-;16431:3;16452:67;16516:2;16511:3;16452:67;:::i;:::-;16445:74;;16528:93;16617:3;16528:93;:::i;:::-;16646:2;16641:3;16637:12;16630:19;;16289:366;;;:::o;16661:419::-;16827:4;16865:2;16854:9;16850:18;16842:26;;16914:9;16908:4;16904:20;16900:1;16889:9;16885:17;16878:47;16942:131;17068:4;16942:131;:::i;:::-;16934:139;;16661:419;;;:::o;17086:191::-;17126:4;17146:20;17164:1;17146:20;:::i;:::-;17141:25;;17180:20;17198:1;17180:20;:::i;:::-;17175:25;;17219:1;17216;17213:8;17210:34;;;17224:18;;:::i;:::-;17210:34;17269:1;17266;17262:9;17254:17;;17086:191;;;;:::o;17283:224::-;17423:34;17419:1;17411:6;17407:14;17400:58;17492:7;17487:2;17479:6;17475:15;17468:32;17283:224;:::o;17513:366::-;17655:3;17676:67;17740:2;17735:3;17676:67;:::i;:::-;17669:74;;17752:93;17841:3;17752:93;:::i;:::-;17870:2;17865:3;17861:12;17854:19;;17513:366;;;:::o;17885:419::-;18051:4;18089:2;18078:9;18074:18;18066:26;;18138:9;18132:4;18128:20;18124:1;18113:9;18109:17;18102:47;18166:131;18292:4;18166:131;:::i;:::-;18158:139;;17885:419;;;:::o;18310:222::-;18450:34;18446:1;18438:6;18434:14;18427:58;18519:5;18514:2;18506:6;18502:15;18495:30;18310:222;:::o;18538:366::-;18680:3;18701:67;18765:2;18760:3;18701:67;:::i;:::-;18694:74;;18777:93;18866:3;18777:93;:::i;:::-;18895:2;18890:3;18886:12;18879:19;;18538:366;;;:::o;18910:419::-;19076:4;19114:2;19103:9;19099:18;19091:26;;19163:9;19157:4;19153:20;19149:1;19138:9;19134:17;19127:47;19191:131;19317:4;19191:131;:::i;:::-;19183:139;;18910:419;;;:::o

Swarm Source

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