ETH Price: $2,358.36 (+1.37%)

Token

DEKU (Deku)
 

Overview

Max Total Supply

1,000,000,000 Deku

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,466,423.817492019676818217 Deku

Value
$0.00
0xef0e78e967537e95c2882b3defc4d2b8175de236
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Deku

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-19
*/

/**

Website : https://DEKU.pro/ 

Telegram : https://t.me/DEKU_ETH

Twitter : https://twitter.com/DEKUERC


*/

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @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 default value returned by this function, unless
     * it's overridden.
     *
     * 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

    /**
     * @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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: popi.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract Deku is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 1_000_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(15);
    Tax public sellTaxes = Tax(25);
    Tax public transferTaxes = Tax(5);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => bool) private isblacklisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;

    //Wallets
    address public marketingWallet = 0xEcB93F598F234fa54F23B7DCcC196DAc7a3590C1 ;
    uint256 public maxWalletPercentage = 2;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWalletChanged(uint256 percentage);

    constructor() ERC20("DEKU", "Deku") {


       uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
 
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWalletChanged(_percentage);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }


        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Add transfer delay logic
    if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Check if the addresses are blacklisted
    require(!isblacklisted[_from], "Transfer from blacklisted address");
    require(!isblacklisted[_to], "Transfer to blacklisted address");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }

    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }
    function Isblacklisted(address a) public view returns (bool){
      return isblacklisted[a];
    }

    function addtoblacklist(address[] memory isblacklisted_) public onlyOwner {
        for (uint i = 0; i < isblacklisted_.length; i++) {
            isblacklisted[isblacklisted_[i]] = true;
        }
    }

    function removefromblacklist(address[] memory isnotblacklisted_) public onlyOwner {
      for (uint i = 0; i < isnotblacklisted_.length; i++) {
          isblacklisted[isnotblacklisted_[i]] = false;
      }
    }

        function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"Isblacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"isblacklisted_","type":"address[]"}],"name":"addtoblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"enableTrading","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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"isnotblacklisted_","type":"address[]"}],"name":"removefromblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600f60c0819052600655601960e081905260075561012060405260056101008190526008556200003f620f42406b033b2e3c9fd0803ce8000000620003f7565b600c55600d805462ffffff19166001179055600f805474ecb93f598f234fa54f23b7dccc196dac7a3590c1016001600160a81b031990911617905560026010553480156200008c57600080fd5b506040518060400160405280600481526020016344454b5560e01b8152506040518060400160405280600481526020016344656b7560e01b8152508160039081620000d89190620004be565b506004620000e78282620004be565b50505062000104620000fe620002d660201b60201c565b620002da565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200015a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018091906200058a565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f691906200058a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026a91906200058a565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002d0906b033b2e3c9fd0803ce80000006200032c565b620005e4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200039b9190620005bc565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200041557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044557607f821691505b6020821081036200046657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f257600081815260208120601f850160051c81016020861015620004955750805b601f850160051c820191505b81811015620004b657828155600101620004a1565b505050505050565b81516001600160401b03811115620004da57620004da6200041a565b620004f281620004eb845462000430565b846200046c565b602080601f8311600181146200052a5760008415620005115750858301515b600019600386901b1c1916600185901b178555620004b6565b600085815260208120601f198616915b828110156200055b578886015182559484019460019091019084016200053a565b50858210156200057a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200059d57600080fd5b81516001600160a01b0381168114620005b557600080fd5b9392505050565b80820180821115620005de57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05161209062000649600039600081816105fb015281816111420152818161117f015281816114bf015281816116350152818161175301526117870152600081816104a001528181611aec01528181611ba50152611be101526120906000f3fe60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4d565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9b565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cd9565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d05565b610882565b3480156102f457600080fd5b50610296610303366004611d59565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e1e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e1e565b610952565b34801561038c57600080fd5b506102b861039b366004611e3b565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cd9565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e1e565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9b565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c9b565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cd9565b610c6f565b3480156105f557600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b34801561062957600080fd5b506102b8610638366004611cd9565b610cf5565b34801561064957600080fd5b50610296610658366004611c9b565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7c565b610dfa565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e1e565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d59565b610e25565b34801561073157600080fd5b50610296610e95565b34801561074657600080fd5b50610296610755366004611e1e565b610ec4565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eaa565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eaa565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3d565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee4565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f97565b60019150505b92915050565b61088a610f3d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3d565b60005b815181101561094e576001600a600084848151811061090a5761090a611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f54565b9150506108e9565b5050565b61095a610f3d565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110bb565b610a27858585611135565b60019150505b9392505050565b600033610876818585610a478383610dfa565b610a519190611f6d565b610f97565b610a5e610f3d565b610a6860006116a9565b565b610a72610f3d565b6064601055600f805460ff191690556000600855565b610a90610f3d565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3d565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eaa565b610c1b610f3d565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee4565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610dfa565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f97565b506001949350505050565b600033610876818585611135565b610d0b610f3d565b600081118015610d3e57506103e8610d306b033b2e3c9fd0803ce80000006005611f80565b610d3a9190611f97565b8111155b610dc75760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2d610f3d565b60005b815181101561094e576000600a6000848481518110610e5157610e51611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8d81611f54565b915050610e30565b610e9d610f3d565b600d5460ff16610eae576001610eb1565b60005b600d805460ff1916911515919091179055565b610ecc610f3d565b6001600160a01b038116610f315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f3a816116a9565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ff95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b03821661105a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c78484610dfa565b9050600019811461112f57818110156111225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b61112f8484848403610f97565b50505050565b600f5460ff1615611236577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111b457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561123657326000908152600b602052604090205443116112235760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128c5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e25760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113445760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b75760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff16156114205760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546b033b2e3c9fd0803ce800000061143e9190611f80565b6114489190611f97565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148d57506001600160a01b03831660009081526009602052604090205460ff16155b80156114a157506001600160a01b03831615155b80156114b657506001600160a01b0383163014155b80156114f457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561157257808261151a856001600160a01b031660009081526020819052604090205490565b6115249190611f6d565b11156115725760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b600061157f8585856116fb565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d757506001600160a01b03851660009081526009602052604090205460ff16155b1561169657600d5462010000900460ff166116295760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614801561166c5750600d5460ff165b80156116755750805b80156116895750600d54610100900460ff16155b1561169657611696611802565b6116a18686846118f1565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173a57506001600160a01b03831660009081526009602052604090205460ff165b15611746575080610a2d565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361178557506007546117c3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117c357506006545b600081156117ee5760646117d78386611f80565b6117e19190611f97565b90506117ee8630836118f1565b6117f88185611fb9565b9695505050505050565b600d805461ff0019166101001790553060009081526020819052604081205490508060000361182e5750565b3060009081526020819052604090205461184790611a95565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611899576040519150601f19603f3d011682016040523d82523d6000602084013e61189e565b606091505b50509050806118e25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119b75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aca57611aca611f28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6c9190611fcc565b81600181518110611b7f57611b7f611f28565b60200260200101906001600160a01b031690816001600160a01b031681525050611bca307f000000000000000000000000000000000000000000000000000000000000000084610f97565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c1f908590600090869030904290600401611fe9565b600060405180830381600087803b158015611c3957600080fd5b505af11580156116a1573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7a57858101830151858201604001528201611c5e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cad57600080fd5b5035919050565b6001600160a01b0381168114610f3a57600080fd5b8035611cd481611cb4565b919050565b60008060408385031215611cec57600080fd5b8235611cf781611cb4565b946020939093013593505050565b60008060408385031215611d1857600080fd5b8235611d2381611cb4565b915060208301358015158114611d3857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6c57600080fd5b823567ffffffffffffffff80821115611d8457600080fd5b818501915085601f830112611d9857600080fd5b813581811115611daa57611daa611d43565b8060051b604051601f19603f83011681018181108582111715611dcf57611dcf611d43565b604052918252848201925083810185019188831115611ded57600080fd5b938501935b82851015611e1257611e0385611cc9565b84529385019392850192611df2565b98975050505050505050565b600060208284031215611e3057600080fd5b8135610a2d81611cb4565b600080600060608486031215611e5057600080fd5b8335611e5b81611cb4565b92506020840135611e6b81611cb4565b929592945050506040919091013590565b60008060408385031215611e8f57600080fd5b8235611e9a81611cb4565b91506020830135611d3881611cb4565b600181811c90821680611ebe57607f821691505b602082108103611ede57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6657611f66611f3e565b5060010190565b8082018082111561087c5761087c611f3e565b808202811582820484141761087c5761087c611f3e565b600082611fb457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f3e565b600060208284031215611fde57600080fd5b8151610a2d81611cb4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120395784516001600160a01b031683529383019391830191600101612014565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206e4548719780c8f7d150c6d1c6d79a46782b96df8238a102fe0afa19348baa9b64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4d565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9b565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cd9565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d05565b610882565b3480156102f457600080fd5b50610296610303366004611d59565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e1e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e1e565b610952565b34801561038c57600080fd5b506102b861039b366004611e3b565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cd9565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e1e565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9b565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c9b565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cd9565b610c6f565b3480156105f557600080fd5b506104c27f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d97381565b34801561062957600080fd5b506102b8610638366004611cd9565b610cf5565b34801561064957600080fd5b50610296610658366004611c9b565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7c565b610dfa565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e1e565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d59565b610e25565b34801561073157600080fd5b50610296610e95565b34801561074657600080fd5b50610296610755366004611e1e565b610ec4565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eaa565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eaa565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3d565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee4565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f97565b60019150505b92915050565b61088a610f3d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3d565b60005b815181101561094e576001600a600084848151811061090a5761090a611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f54565b9150506108e9565b5050565b61095a610f3d565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110bb565b610a27858585611135565b60019150505b9392505050565b600033610876818585610a478383610dfa565b610a519190611f6d565b610f97565b610a5e610f3d565b610a6860006116a9565b565b610a72610f3d565b6064601055600f805460ff191690556000600855565b610a90610f3d565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3d565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eaa565b610c1b610f3d565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee4565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610dfa565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f97565b506001949350505050565b600033610876818585611135565b610d0b610f3d565b600081118015610d3e57506103e8610d306b033b2e3c9fd0803ce80000006005611f80565b610d3a9190611f97565b8111155b610dc75760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2d610f3d565b60005b815181101561094e576000600a6000848481518110610e5157610e51611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8d81611f54565b915050610e30565b610e9d610f3d565b600d5460ff16610eae576001610eb1565b60005b600d805460ff1916911515919091179055565b610ecc610f3d565b6001600160a01b038116610f315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f3a816116a9565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ff95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b03821661105a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c78484610dfa565b9050600019811461112f57818110156111225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b61112f8484848403610f97565b50505050565b600f5460ff1615611236577f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d9736001600160a01b0316826001600160a01b0316141580156111b457507f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d9736001600160a01b0316826001600160a01b031614155b1561123657326000908152600b602052604090205443116112235760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128c5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e25760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113445760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b75760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff16156114205760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546b033b2e3c9fd0803ce800000061143e9190611f80565b6114489190611f97565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148d57506001600160a01b03831660009081526009602052604090205460ff16155b80156114a157506001600160a01b03831615155b80156114b657506001600160a01b0383163014155b80156114f457507f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d9736001600160a01b0316836001600160a01b031614155b1561157257808261151a856001600160a01b031660009081526020819052604090205490565b6115249190611f6d565b11156115725760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b600061157f8585856116fb565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d757506001600160a01b03851660009081526009602052604090205460ff16155b1561169657600d5462010000900460ff166116295760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d9736001600160a01b031614801561166c5750600d5460ff165b80156116755750805b80156116895750600d54610100900460ff16155b1561169657611696611802565b6116a18686846118f1565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173a57506001600160a01b03831660009081526009602052604090205460ff165b15611746575080610a2d565b6008546001600160a01b037f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d97381169085160361178557506007546117c3565b7f0000000000000000000000004bcb82350cd8e57b72a8d5d82f2bca4a6f70d9736001600160a01b0316856001600160a01b0316036117c357506006545b600081156117ee5760646117d78386611f80565b6117e19190611f97565b90506117ee8630836118f1565b6117f88185611fb9565b9695505050505050565b600d805461ff0019166101001790553060009081526020819052604081205490508060000361182e5750565b3060009081526020819052604090205461184790611a95565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611899576040519150601f19603f3d011682016040523d82523d6000602084013e61189e565b606091505b50509050806118e25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119b75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aca57611aca611f28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6c9190611fcc565b81600181518110611b7f57611b7f611f28565b60200260200101906001600160a01b031690816001600160a01b031681525050611bca307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f97565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c1f908590600090869030904290600401611fe9565b600060405180830381600087803b158015611c3957600080fd5b505af11580156116a1573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7a57858101830151858201604001528201611c5e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cad57600080fd5b5035919050565b6001600160a01b0381168114610f3a57600080fd5b8035611cd481611cb4565b919050565b60008060408385031215611cec57600080fd5b8235611cf781611cb4565b946020939093013593505050565b60008060408385031215611d1857600080fd5b8235611d2381611cb4565b915060208301358015158114611d3857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6c57600080fd5b823567ffffffffffffffff80821115611d8457600080fd5b818501915085601f830112611d9857600080fd5b813581811115611daa57611daa611d43565b8060051b604051601f19603f83011681018181108582111715611dcf57611dcf611d43565b604052918252848201925083810185019188831115611ded57600080fd5b938501935b82851015611e1257611e0385611cc9565b84529385019392850192611df2565b98975050505050505050565b600060208284031215611e3057600080fd5b8135610a2d81611cb4565b600080600060608486031215611e5057600080fd5b8335611e5b81611cb4565b92506020840135611e6b81611cb4565b929592945050506040919091013590565b60008060408385031215611e8f57600080fd5b8235611e9a81611cb4565b91506020830135611d3881611cb4565b600181811c90821680611ebe57607f821691505b602082108103611ede57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6657611f66611f3e565b5060010190565b8082018082111561087c5761087c611f3e565b808202811582820484141761087c5761087c611f3e565b600082611fb457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f3e565b600060208284031215611fde57600080fd5b8151610a2d81611cb4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120395784516001600160a01b031683529383019391830191600101612014565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206e4548719780c8f7d150c6d1c6d79a46782b96df8238a102fe0afa19348baa9b64736f6c63430008130033

Deployed Bytecode Sourcemap

28292:8362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16377:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31066:246;;;;;;;;;;-1:-1:-1;31066:246:0;;;;;:::i;:::-;;:::i;:::-;;18737:201;;;;;;;;;;-1:-1:-1;18737:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;18737:201:0;1347:187:1;31834:195:0;;;;;;;;;;-1:-1:-1;31834:195:0;;;;;:::i;:::-;;:::i;35553:207::-;;;;;;;;;;-1:-1:-1;35553:207:0;;;;;:::i;:::-;;:::i;17506:108::-;;;;;;;;;;-1:-1:-1;17594:12:0;;17506:108;;;3364:25:1;;;3352:2;3337:18;17506:108:0;3218:177:1;32037:116:0;;;;;;;;;;-1:-1:-1;32037:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32125:20:0;32101:4;32125:20;;;:11;:20;;;;;;;;;32037:116;30312:297;;;;;;;;;;-1:-1:-1;30312:297:0;;;;;:::i;:::-;;:::i;19518:261::-;;;;;;;;;;-1:-1:-1;19518:261:0;;;;;:::i;:::-;;:::i;17348:93::-;;;;;;;;;;-1:-1:-1;17348:93:0;;17431:2;4255:36:1;;4243:2;4228:18;17348:93:0;4113:184:1;20188:238:0;;;;;;;;;;-1:-1:-1;20188:238:0;;;;;:::i;:::-;;:::i;29050:40::-;;;;;;;;;;-1:-1:-1;29050:40:0;;;;;;;;29134:34;;;;;;;;;;-1:-1:-1;29134:34:0;;;;;;;;;;;28650:33;;;;;;;;;;-1:-1:-1;28650:33:0;;;;;;29360:38;;;;;;;;;;;;;;;;17677:127;;;;;;;;;;-1:-1:-1;17677:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17778:18:0;17751:7;17778:18;;;;;;;;;;;;17677:127;9832:103;;;;;;;;;;;;;:::i;28472:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4484:32:1;;;4466:51;;4454:2;4439:18;28472:40:0;4302:221:1;35996:163:0;;;;;;;;;;;;;:::i;29277:75::-;;;;;;;;;;-1:-1:-1;29277:75:0;;;;;;;-1:-1:-1;;;;;29277:75:0;;;29175:32;;;;;;;;;;;;;;;;32159:308;;;;;;;;;;-1:-1:-1;32159:308:0;;;;;:::i;:::-;;:::i;28577:29::-;;;;;;;;;;-1:-1:-1;28577:29:0;;;;;;30615:192;;;;;;;;;;;;;:::i;9191:87::-;;;;;;;;;;-1:-1:-1;9264:6:0;;-1:-1:-1;;;;;9264:6:0;9191:87;;16596:104;;;;;;;;;;;;;:::i;30815:243::-;;;;;;;;;;-1:-1:-1;30815:243:0;;;;;:::i;:::-;;:::i;20929:436::-;;;;;;;;;;-1:-1:-1;20929:436:0;;;;;:::i;:::-;;:::i;28519:36::-;;;;;;;;;;;;;;;18010:193;;;;;;;;;;-1:-1:-1;18010:193:0;;;;;:::i;:::-;;:::i;31320:372::-;;;;;;;;;;-1:-1:-1;31320:372:0;;;;;:::i;:::-;;:::i;29097:30::-;;;;;;;;;;-1:-1:-1;29097:30:0;;;;;;;;;;;29214:39;;;;;;;;;;-1:-1:-1;29214:39:0;;;;;;;;18266:151;;;;;;;;;;-1:-1:-1;18266:151:0;;;;;:::i;:::-;;:::i;28942:60::-;;;;;;;;;;;;;;;;35445:100;;;;;;;;;;-1:-1:-1;35445:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;35521:16:0;35500:4;35521:16;;;:13;:16;;;;;;;;;35445:100;35768:216;;;;;;;;;;-1:-1:-1;35768:216:0;;;;;:::i;:::-;;:::i;31700:126::-;;;;;;;;;;;;;:::i;10090:201::-;;;;;;;;;;-1:-1:-1;10090:201:0;;;;;:::i;:::-;;:::i;28613:30::-;;;;;;;;;;-1:-1:-1;28613:30:0;;;;;;16377:100;16431:13;16464:5;16457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16377:100;:::o;31066:246::-;9077:13;:11;:13::i;:::-;31141:9:::1;:38:::0;;;31215:2:::1;31198:19:::0;::::1;;31190:68;;;;-1:-1:-1::0;;;31190:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31274:30;::::0;31290:13;;31274:30:::1;::::0;;;::::1;31066:246:::0;:::o;18737:201::-;18820:4;7822:10;18876:32;7822:10;18892:7;18901:6;18876:8;:32::i;:::-;18926:4;18919:11;;;18737:201;;;;;:::o;31834:195::-;9077:13;:11;:13::i;:::-;-1:-1:-1;;;;;31948:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31948:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31994:27;;31948:30;;:20;31994:27:::1;::::0;::::1;31834:195:::0;;:::o;35553:207::-;9077:13;:11;:13::i;:::-;35643:6:::1;35638:115;35659:14;:21;35655:1;:25;35638:115;;;35737:4;35702:13;:32;35716:14;35731:1;35716:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35702:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35702:32:0;:39;;-1:-1:-1;;35702:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35682:3;::::1;::::0;::::1;:::i;:::-;;;;35638:115;;;;35553:207:::0;:::o;30312:297::-;9077:13;:11;:13::i;:::-;-1:-1:-1;;;;;30415:27:0;::::1;30393:113;;;::::0;-1:-1:-1;;;30393:113:0;;6525:2:1;30393:113:0::1;::::0;::::1;6507:21:1::0;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:34;6698:19;;30393:113:0::1;6323:400:1::0;30393:113:0::1;30517:15;:31:::0;;-1:-1:-1;;;;;;30517:31:0::1;;-1:-1:-1::0;;;;;30517:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30564:37:::1;::::0;::::1;::::0;-1:-1:-1;;30564:37:0::1;30312:297:::0;:::o;19518:261::-;19615:4;7822:10;19673:38;19689:4;7822:10;19704:6;19673:15;:38::i;:::-;19722:27;19732:4;19738:2;19742:6;19722:9;:27::i;:::-;19767:4;19760:11;;;19518:261;;;;;;:::o;20188:238::-;20276:4;7822:10;20332:64;7822:10;20348:7;20385:10;20357:25;7822:10;20348:7;20357:9;:25::i;:::-;:38;;;;:::i;:::-;20332:8;:64::i;9832:103::-;9077:13;:11;:13::i;:::-;9897:30:::1;9924:1;9897:18;:30::i;:::-;9832:103::o:0;35996:163::-;9077:13;:11;:13::i;:::-;36070:3:::1;36049:19;:24:::0;36084:20:::1;:26:::0;;-1:-1:-1;;36084:26:0::1;::::0;;36105:5:::1;36121:13;:30:::0;35996:163::o;32159:308::-;9077:13;:11;:13::i;:::-;32260:1:::1;32246:11;:15;32238:62;;;::::0;-1:-1:-1;;;32238:62:0;;7060:2:1;32238:62:0::1;::::0;::::1;7042:21:1::0;7099:2;7079:18;;;7072:30;7138:34;7118:18;;;7111:62;-1:-1:-1;;;7189:18:1;;;7182:32;7231:19;;32238:62:0::1;6858:398:1::0;32238:62:0::1;32330:3;32315:11;:18;;32307:75;;;::::0;-1:-1:-1;;;32307:75:0;;7463:2:1;32307:75:0::1;::::0;::::1;7445:21:1::0;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:1;;;7585:42;7644:19;;32307:75:0::1;7261:408:1::0;32307:75:0::1;32389:19;:33:::0;;;32434:29:::1;::::0;3364:25:1;;;32434:29:0::1;::::0;3352:2:1;3337:18;32434:29:0::1;;;;;;;32159:308:::0;:::o;30615:192::-;9077:13;:11;:13::i;:::-;30679:14:::1;::::0;;;::::1;;;30678:15;30670:54;;;::::0;-1:-1:-1;;;30670:54:0;;7876:2:1;30670:54:0::1;::::0;::::1;7858:21:1::0;7915:2;7895:18;;;7888:30;7954:28;7934:18;;;7927:56;8000:18;;30670:54:0::1;7674:350:1::0;30670:54:0::1;30735:14;:21:::0;;-1:-1:-1;;30735:21:0::1;::::0;::::1;::::0;;30787:12:::1;30767:17;:32:::0;30615:192::o;16596:104::-;16652:13;16685:7;16678:14;;;;;:::i;30815:243::-;9077:13;:11;:13::i;:::-;30889:8:::1;:37:::0;;;30962:2:::1;30945:19:::0;::::1;;30937:68;;;;-1:-1:-1::0;;;30937:68:0::1;;;;;;;:::i;:::-;31021:29;::::0;31036:13;;31021:29:::1;::::0;;;::::1;30815:243:::0;:::o;20929:436::-;21022:4;7822:10;21022:4;21105:25;7822:10;21122:7;21105:9;:25::i;:::-;21078:52;;21169:15;21149:16;:35;;21141:85;;;;-1:-1:-1;;;21141:85:0;;8231:2:1;21141:85:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:35;8405:19;;21141:85:0;8029:401:1;21141:85:0;21262:60;21271:5;21278:7;21306:15;21287:16;:34;21262:8;:60::i;:::-;-1:-1:-1;21353:4:0;;20929:436;-1:-1:-1;;;;20929:436:0:o;18010:193::-;18089:4;7822:10;18145:28;7822:10;18162:2;18166:6;18145:9;:28::i;31320:372::-;9077:13;:11;:13::i;:::-;31436:1:::1;31423:10;:14;:57;;;;-1:-1:-1::0;31476:4:0::1;31456:16;28429:20;31471:1;31456:16;:::i;:::-;31455:25;;;;:::i;:::-;31441:10;:39;;31423:57;31401:185;;;::::0;-1:-1:-1;;;31401:185:0;;9032:2:1;31401:185:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;9181:34;9161:18;;;9154:62;-1:-1:-1;;;9232:19:1;;;9225:45;9287:19;;31401:185:0::1;8830:482:1::0;31401:185:0::1;31597:18;:31:::0;;;31644:40:::1;::::0;31618:10;;31644:40:::1;::::0;;;::::1;31320:372:::0;:::o;18266:151::-;-1:-1:-1;;;;;18382:18:0;;;18355:7;18382:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18266:151::o;35768:216::-;9077:13;:11;:13::i;:::-;35864:6:::1;35859:118;35880:17;:24;35876:1;:28;35859:118;;;35962:5;35924:13;:35;35938:17;35956:1;35938:20;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35924:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35924:35:0;:43;;-1:-1:-1;;35924:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35906:3;::::1;::::0;::::1;:::i;:::-;;;;35859:118;;31700:126:::0;9077:13;:11;:13::i;:::-;31781:21:::1;::::0;::::1;;31780:38;;31814:4;31780:38;;;31806:5;31780:38;31756:21;:62:::0;;-1:-1:-1;;31756:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31700:126::o;10090:201::-;9077:13;:11;:13::i;:::-;-1:-1:-1;;;;;10179:22:0;::::1;10171:73;;;::::0;-1:-1:-1;;;10171:73:0;;9519:2:1;10171:73:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:36;9694:19;;10171:73:0::1;9317:402:1::0;10171:73:0::1;10255:28;10274:8;10255:18;:28::i;:::-;10090:201:::0;:::o;9356:132::-;9264:6;;-1:-1:-1;;;;;9264:6:0;7822:10;9420:23;9412:68;;;;-1:-1:-1;;;9412:68:0;;9926:2:1;9412:68:0;;;9908:21:1;;;9945:18;;;9938:30;10004:34;9984:18;;;9977:62;10056:18;;9412:68:0;9724:356:1;24922:346:0;-1:-1:-1;;;;;25024:19:0;;25016:68;;;;-1:-1:-1;;;25016:68:0;;10287:2:1;25016:68:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:34;10460:19;;25016:68:0;10085:400:1;25016:68:0;-1:-1:-1;;;;;25103:21:0;;25095:68;;;;-1:-1:-1;;;25095:68:0;;10692:2:1;25095:68:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:32;10863:19;;25095:68:0;10490:398:1;25095:68:0;-1:-1:-1;;;;;25176:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25228:32;;3364:25:1;;;25228:32:0;;3337:18:1;25228:32:0;;;;;;;24922:346;;;:::o;25559:419::-;25660:24;25687:25;25697:5;25704:7;25687:9;:25::i;:::-;25660:52;;-1:-1:-1;;25727:16:0;:37;25723:248;;25809:6;25789:16;:26;;25781:68;;;;-1:-1:-1;;;25781:68:0;;11095:2:1;25781:68:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:31;11153:18;;;11146:59;11222:18;;25781:68:0;10893:353:1;25781:68:0;25893:51;25902:5;25909:7;25937:6;25918:16;:25;25893:8;:51::i;:::-;25649:329;25559:419;;;:::o;33296:1742::-;33448:20;;;;33444:307;;;33500:11;-1:-1:-1;;;;;33485:27:0;:3;-1:-1:-1;;;;;33485:27:0;;;:58;;;;;33531:11;-1:-1:-1;;;;;33516:27:0;:3;-1:-1:-1;;;;;33516:27:0;;;33485:58;33481:263;;;33597:9;33568:39;;;;:28;:39;;;;;;33610:12;-1:-1:-1;33560:103:0;;;;-1:-1:-1;;;33560:103:0;;11453:2:1;33560:103:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:34;11626:19;;33560:103:0;11251:400:1;33560:103:0;33707:9;33678:39;;;;:28;:39;;;;;33720:12;33678:54;;33481:263;-1:-1:-1;;;;;33767:19:0;;33759:58;;;;-1:-1:-1;;;33759:58:0;;11858:2:1;33759:58:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:28;11916:18;;;11909:56;11982:18;;33759:58:0;11656:350:1;33759:58:0;-1:-1:-1;;;;;33832:17:0;;33824:54;;;;-1:-1:-1;;;33824:54:0;;12213:2:1;33824:54:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:26;12271:18;;;12264:54;12335:18;;33824:54:0;12011:348:1;33824:54:0;33903:1;33893:7;:11;33885:65;;;;-1:-1:-1;;;33885:65:0;;12566:2:1;33885:65:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:39;12744:19;;33885:65:0;12364:405:1;33885:65:0;-1:-1:-1;;;;;34015:20:0;;;;;;:13;:20;;;;;;;;34014:21;34006:67;;;;-1:-1:-1;;;34006:67:0;;12976:2:1;34006:67:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;34006:67:0;12774:397:1;34006:67:0;-1:-1:-1;;;;;34089:18:0;;;;;;:13;:18;;;;;;;;34088:19;34080:63;;;;-1:-1:-1;;;34080:63:0;;13378:2:1;34080:63:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:33;13436:18;;;13429:61;13507:18;;34080:63:0;13176:355:1;34080:63:0;34256:23;34319:3;34297:19;;28429:20;34282:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34404:18:0;;;;;;:11;:18;;;;;;34256:66;;-1:-1:-1;34404:18:0;;34403:19;:40;;;;-1:-1:-1;;;;;;34427:16:0;;;;;;:11;:16;;;;;;;;34426:17;34403:40;:61;;;;-1:-1:-1;;;;;;34447:17:0;;;;34403:61;:85;;;;-1:-1:-1;;;;;;34468:20:0;;34483:4;34468:20;;34403:85;:107;;;;;34499:11;-1:-1:-1;;;;;34492:18:0;:3;-1:-1:-1;;;;;34492:18:0;;;34403:107;34399:217;;;34559:15;34548:7;34531:14;34541:3;-1:-1:-1;;;;;17778:18:0;17751:7;17778:18;;;;;;;;;;;;17677:127;34531:14;:24;;;;:::i;:::-;:43;;34523:85;;;;-1:-1:-1;;;34523:85:0;;13738:2:1;34523:85:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:31;13796:18;;;13789:59;13865:18;;34523:85:0;13536:353:1;34523:85:0;34624:18;34645:29;34654:5;34661:3;34666:7;34645:8;:29::i;:::-;34726:18;;34716:4;34683:12;17778:18;;;;;;;;;;;;-1:-1:-1;;;;;34756:18:0;;;;:11;:18;;;;;;;34624:50;;-1:-1:-1;;34698:46:0;;34756:18;;34755:19;:40;;;;-1:-1:-1;;;;;;34779:16:0;;;;;;:11;:16;;;;;;;;34778:17;34755:40;34751:236;;;34816:14;;;;;;;34808:45;;;;-1:-1:-1;;;34808:45:0;;14096:2:1;34808:45:0;;;14078:21:1;14135:2;14115:18;;;14108:30;-1:-1:-1;;;14154:18:1;;;14147:48;14212:18;;34808:45:0;13894:342:1;34808:45:0;34883:3;-1:-1:-1;;;;;34868:18:0;:11;-1:-1:-1;;;;;34868:18:0;;:43;;;;-1:-1:-1;34890:21:0;;;;34868:43;:54;;;;;34915:7;34868:54;:69;;;;-1:-1:-1;34927:10:0;;;;;;;34926:11;34868:69;34864:116;;;34954:14;:12;:14::i;:::-;34995:39;35011:5;35018:3;35023:10;34995:15;:39::i;:::-;33404:1634;;;33296:1742;;;:::o;10451:191::-;10544:6;;;-1:-1:-1;;;;;10561:17:0;;;-1:-1:-1;;;;;;10561:17:0;;;;;;;10594:40;;10544:6;;;10561:17;10544:6;;10594:40;;10525:16;;10594:40;10514:128;10451:191;:::o;32613:679::-;-1:-1:-1;;;;;32752:18:0;;32728:7;32752:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32774:16:0;;;;;;:11;:16;;;;;;;;32752:38;32748:85;;;-1:-1:-1;32814:7:0;32807:14;;32748:85;32864:13;:26;-1:-1:-1;;;;;32914:11:0;32907:18;;;;;;32903:175;;-1:-1:-1;32953:9:0;:22;32903:175;;;33006:11;-1:-1:-1;;;;;32997:20:0;:5;-1:-1:-1;;;;;32997:20:0;;32993:85;;-1:-1:-1;33045:8:0;:21;32993:85;33092:11;33122:12;;33118:134;;33180:3;33158:18;33168:8;33158:7;:18;:::i;:::-;33157:26;;;;:::i;:::-;33151:32;;33198:42;33214:5;33229:4;33236:3;33198:15;:42::i;:::-;33270:13;33280:3;33270:7;:13;:::i;:::-;33262:22;32613:679;-1:-1:-1;;;;;;32613:679:0:o;35046:393::-;35090:10;:17;;-1:-1:-1;;35090:17:0;;;;;35156:4;-1:-1:-1;17778:18:0;;;;;;;;;;;35118:44;;35178:9;35191:1;35178:14;35174:53;;35209:7;35046:393::o;35174:53::-;35265:4;17751:7;17778:18;;;;;;;;;;;35237:35;;:9;:35::i;:::-;35301:15;;:54;;35283:12;;35301:15;;;-1:-1:-1;;;;;35301:15:0;;35329:21;;35283:12;35301:54;35283:12;35301:54;35329:21;35301:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35282:73;;;35374:7;35366:36;;;;-1:-1:-1;;;35366:36:0;;14786:2:1;35366:36:0;;;14768:21:1;14825:2;14805:18;;;14798:30;-1:-1:-1;;;14844:18:1;;;14837:46;14900:18;;35366:36:0;14584:340:1;35366:36:0;-1:-1:-1;;35413:10:0;:18;;-1:-1:-1;;35413:18:0;;;35046:393::o;21835:806::-;-1:-1:-1;;;;;21932:18:0;;21924:68;;;;-1:-1:-1;;;21924:68:0;;15131:2:1;21924:68:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:35;15305:19;;21924:68:0;14929:401:1;21924:68:0;-1:-1:-1;;;;;22011:16:0;;22003:64;;;;-1:-1:-1;;;22003:64:0;;15537:2:1;22003:64:0;;;15519:21:1;15576:2;15556:18;;;15549:30;15615:34;15595:18;;;15588:62;-1:-1:-1;;;15666:18:1;;;15659:33;15709:19;;22003:64:0;15335:399:1;22003:64:0;-1:-1:-1;;;;;22153:15:0;;22131:19;22153:15;;;;;;;;;;;22187:21;;;;22179:72;;;;-1:-1:-1;;;22179:72:0;;15941:2:1;22179:72:0;;;15923:21:1;15980:2;15960:18;;;15953:30;16019:34;15999:18;;;15992:62;-1:-1:-1;;;16070:18:1;;;16063:36;16116:19;;22179:72:0;15739:402:1;22179:72:0;-1:-1:-1;;;;;22287:15:0;;;:9;:15;;;;;;;;;;;22305:20;;;22287:38;;22505:13;;;;;;;;;;:23;;;;;;22557:26;;3364:25:1;;;22505:13:0;;22557:26;;3337:18:1;22557:26:0;;;;;;;22596:37;26578:91;36167:447;36247:16;;;36261:1;36247:16;;;;;;;;36223:21;;36247:16;;;;;;;;;;-1:-1:-1;36247:16:0;36223:40;;36292:4;36274;36279:1;36274:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36274:23:0;;;-1:-1:-1;;;;;36274:23:0;;;;;36318:13;-1:-1:-1;;;;;36318:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36308:4;36313:1;36308:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36308:30:0;;;-1:-1:-1;;;;;36308:30:0;;;;;36349:56;36366:4;36381:13;36397:7;36349:8;:56::i;:::-;36416:190;;-1:-1:-1;;;36416:190:0;;-1:-1:-1;;;;;36416:13:0;:64;;;;:190;;36495:7;;36517:1;;36533:4;;36560;;36580:15;;36416:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1539:416::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1720:9;1707:23;1739:31;1764:5;1739:31;:::i;:::-;1789:5;-1:-1:-1;1846:2:1;1831:18;;1818:32;1888:15;;1881:23;1869:36;;1859:64;;1919:1;1916;1909:12;1859:64;1942:7;1932:17;;;1539:416;;;;;:::o;1960:127::-;2021:10;2016:3;2012:20;2009:1;2002:31;2052:4;2049:1;2042:15;2076:4;2073:1;2066:15;2092:1121;2176:6;2207:2;2250;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2306:9;2293:23;2335:18;2376:2;2368:6;2365:14;2362:34;;;2392:1;2389;2382:12;2362:34;2430:6;2419:9;2415:22;2405:32;;2475:7;2468:4;2464:2;2460:13;2456:27;2446:55;;2497:1;2494;2487:12;2446:55;2533:2;2520:16;2555:2;2551;2548:10;2545:36;;;2561:18;;:::i;:::-;2607:2;2604:1;2600:10;2639:2;2633:9;2702:2;2698:7;2693:2;2689;2685:11;2681:25;2673:6;2669:38;2757:6;2745:10;2742:22;2737:2;2725:10;2722:18;2719:46;2716:72;;;2768:18;;:::i;:::-;2804:2;2797:22;2854:18;;;2888:15;;;;-1:-1:-1;2930:11:1;;;2926:20;;;2958:19;;;2955:39;;;2990:1;2987;2980:12;2955:39;3014:11;;;;3034:148;3050:6;3045:3;3042:15;3034:148;;;3116:23;3135:3;3116:23;:::i;:::-;3104:36;;3067:12;;;;3160;;;;3034:148;;;3201:6;2092:1121;-1:-1:-1;;;;;;;;2092:1121:1:o;3400:247::-;3459:6;3512:2;3500:9;3491:7;3487:23;3483:32;3480:52;;;3528:1;3525;3518:12;3480:52;3567:9;3554:23;3586:31;3611:5;3586:31;:::i;3652:456::-;3729:6;3737;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3853:9;3840:23;3872:31;3897:5;3872:31;:::i;:::-;3922:5;-1:-1:-1;3979:2:1;3964:18;;3951:32;3992:33;3951:32;3992:33;:::i;:::-;3652:456;;4044:7;;-1:-1:-1;;;4098:2:1;4083:18;;;;4070:32;;3652:456::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5129:380::-;5208:1;5204:12;;;;5251;;;5272:61;;5326:4;5318:6;5314:17;5304:27;;5272:61;5379:2;5371:6;5368:14;5348:18;5345:38;5342:161;;5425:10;5420:3;5416:20;5413:1;5406:31;5460:4;5457:1;5450:15;5488:4;5485:1;5478:15;5342:161;;5129:380;;;:::o;5514:400::-;5716:2;5698:21;;;5755:2;5735:18;;;5728:30;5794:34;5789:2;5774:18;;5767:62;-1:-1:-1;;;5860:2:1;5845:18;;5838:34;5904:3;5889:19;;5514:400::o;5919:127::-;5980:10;5975:3;5971:20;5968:1;5961:31;6011:4;6008:1;6001:15;6035:4;6032:1;6025:15;6051:127;6112:10;6107:3;6103:20;6100:1;6093:31;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6183:135;6222:3;6243:17;;;6240:43;;6263:18;;:::i;:::-;-1:-1:-1;6310:1:1;6299:13;;6183:135::o;6728:125::-;6793:9;;;6814:10;;;6811:36;;;6827:18;;:::i;8435:168::-;8508:9;;;8539;;8556:15;;;8550:22;;8536:37;8526:71;;8577:18;;:::i;8608:217::-;8648:1;8674;8664:132;;8718:10;8713:3;8709:20;8706:1;8699:31;8753:4;8750:1;8743:15;8781:4;8778:1;8771:15;8664:132;-1:-1:-1;8810:9:1;;8608:217::o;14241:128::-;14308:9;;;14329:11;;;14326:37;;;14343:18;;:::i;16146:251::-;16216:6;16269:2;16257:9;16248:7;16244:23;16240:32;16237:52;;;16285:1;16282;16275:12;16237:52;16317:9;16311:16;16336:31;16361:5;16336:31;:::i;16402:980::-;16664:4;16712:3;16701:9;16697:19;16743:6;16732:9;16725:25;16769:2;16807:6;16802:2;16791:9;16787:18;16780:34;16850:3;16845:2;16834:9;16830:18;16823:31;16874:6;16909;16903:13;16940:6;16932;16925:22;16978:3;16967:9;16963:19;16956:26;;17017:2;17009:6;17005:15;16991:29;;17038:1;17048:195;17062:6;17059:1;17056:13;17048:195;;;17127:13;;-1:-1:-1;;;;;17123:39:1;17111:52;;17218:15;;;;17183:12;;;;17159:1;17077:9;17048:195;;;-1:-1:-1;;;;;;;17299:32:1;;;;17294:2;17279:18;;17272:60;-1:-1:-1;;;17363:3:1;17348:19;17341:35;17260:3;16402:980;-1:-1:-1;;;16402:980:1:o

Swarm Source

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