ETH Price: $2,505.39 (-0.44%)
Gas: 1.92 Gwei

Token

X-Diamond (DIAMOND)
 

Overview

Max Total Supply

1,000,000,000 DIAMOND

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,474,344.194913290522460938 DIAMOND

Value
$0.00
0x21df7d23f20269bd49a8f82cdc0f8354a325bd67
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:
XDiamond

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 * SPDX-License-Identifier: MIT
 * https://twitter.com/xDaily/status/1696974122771722688
 */
pragma solidity 0.8.20;

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 substraction 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;
        }
    }
}

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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

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

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @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 returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        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
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

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

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

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

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

    function WETH() external pure returns (address);

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

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

    IUniV2Router public immutable uniV2Router;
    address public immutable uniV2Pair;

    // Swapback
    bool private duringSwapBack;
    bool public swapForFeesEnabled = false;
    uint256 public minSwapbackTreshold;
    uint256 public maxSwapbackLimit;

    //Anti-whale
    bool public launchTradingLimitsInPlace = true;
    bool public sameBlockTxLimitOn = true;
    uint256 public maxWalletPerAddress;
    uint256 public maxTokensPerTransfer;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    // Fee receivers
    address public feeReceiverWallet1;
    address public feeReceiverWallet2;

    bool public isTradingEnabled = false;

    uint256 public totalFeeForBuys;
    uint256 public fee1ForBuy;
    uint256 public fee2ForBuy;

    uint256 public totalFeeForSells;
    uint256 public fee1ForSell;
    uint256 public fee2ForSell;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private feeWhitelisted;
    mapping(address => bool) public txLimitWhitelisted;

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

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

    event feeReceiverWallet1Updated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event feeReceiverWallet2Updated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("X-Diamond", "DIAMOND") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        exemptFromTxLimits(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uniV2Pair = IUniV2Factory(_uniV2Router.factory())
            .createPair(address(this), _uniV2Router.WETH());
        exemptFromTxLimits(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);

        uint256 tokenSupply = 1000000000 * 1e18;

        maxTokensPerTransfer = (tokenSupply * 1) / 100; // 1% of total supply
        maxWalletPerAddress = (tokenSupply * 1) / 100; // 1% of total supply

        minSwapbackTreshold = (tokenSupply * 5) / 10000; // 0.05% swapback trigger
        maxSwapbackLimit = (tokenSupply * 4) / 100; // 4% max swapback

        fee1ForBuy = 20;
        fee2ForBuy = 5;
        totalFeeForBuys = fee1ForBuy + fee2ForBuy;

        fee1ForSell = 40;
        fee2ForSell = 15;
        totalFeeForSells = fee1ForSell + fee2ForSell;

        feeReceiverWallet1 = address(0xdF31278B9132d914dB098E9D082346Ce627C6dFD);
        feeReceiverWallet2 = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        exemptFromSwapFees(owner(), true);
        exemptFromSwapFees(address(this), true);
        exemptFromSwapFees(address(0xdead), true);
        exemptFromSwapFees(feeReceiverWallet1, true);

        exemptFromTxLimits(owner(), true);
        exemptFromTxLimits(address(this), true);
        exemptFromTxLimits(address(0xdead), true);
        exemptFromTxLimits(feeReceiverWallet1, true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, tokenSupply);
    }

    receive() external payable {}

    /// @notice Launches the token and enables trading. Irriversable.
    function habibi() external onlyOwner {
        isTradingEnabled = true;
        swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function halal() external onlyOwner returns (bool) {
        launchTradingLimitsInPlace = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function removeSameBlockRestriction() external onlyOwner returns (bool) {
        sameBlockTxLimitOn = false;
        return true;
    }

    function changeMinSwapbackTreshold(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (500 * totalSupply()) / 100000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        require(
            newAmount <= maxSwapbackLimit,
            "Swap amount cannot be higher than maxSwapbackLimit"
        );
        minSwapbackTreshold = newAmount;
        return true;
    }

    function changeMaxSwapbackLimit(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= minSwapbackTreshold,
            "Swap amount cannot be lower than minSwapbackTreshold"
        );
        maxSwapbackLimit = newAmount;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTokensPerTransfer lower than 0.2%");
        maxTokensPerTransfer = (newNum * totalSupply()) / 1000;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWalletPerAddress lower than 0.5%");
        maxWalletPerAddress = (newNum * totalSupply()) / 1000;
    }

    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function exemptFromTxLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function changeSwapForFeesEnabled(bool enabled) external onlyOwner {
        swapForFeesEnabled = enabled;
    }

    /// @notice Sets the fees for buys
    /// @param _treasuryFee The fee for the treasury wallet
    /// @param _projectFee The fee for the dev wallet
    function changeFeesForBuys(
        uint256 _treasuryFee,
        uint256 _projectFee
    ) external onlyOwner {
        fee1ForBuy = _treasuryFee;
        fee2ForBuy = _projectFee;
        totalFeeForBuys = fee1ForBuy + fee2ForBuy;
    }

    /// @notice Sets the fees for sells
    /// @param _treasuryFee The fee for the treasury wallet
    /// @param _projectFee The fee for the dev wallet
    function changeFeesForSells(
        uint256 _treasuryFee,
        uint256 _projectFee
    ) external onlyOwner {
        fee1ForSell = _treasuryFee;
        fee2ForSell = _projectFee;
        totalFeeForSells = fee1ForSell + fee2ForSell;
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function exemptFromSwapFees(address account, bool excluded) public onlyOwner {
        feeWhitelisted[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    function changeAddressIsDexPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniV2Pair,
            "The pair cannot be removed from isDexPair"
        );

        SetAsDexPair(pair, value);
    }

    function SetAsDexPair(address pair, bool value) private {
        isDexPair[pair] = value;

        emit SetDexPair(pair, value);
    }

    /// @notice Sets a wallet as the new fee receiver 1 wallet
    /// @param newFeeReceiver1 The new fee receiver 1 wallet
    function changeFeeReceiver1(
        address newFeeReceiver1
    ) external onlyOwner {
        emit feeReceiverWallet1Updated(newFeeReceiver1, feeReceiverWallet1);
        feeReceiverWallet1 = newFeeReceiver1;
    }

    /// @notice Sets a wallet as the new fee receiver 2 wallet
    /// @param newFeeReceiver2 The new fee receiver 2 wallet
    function changeFeeReceiver2(address newFeeReceiver2) external onlyOwner {
        emit feeReceiverWallet2Updated(newFeeReceiver2, feeReceiverWallet2);
        feeReceiverWallet2 = newFeeReceiver2;
    }

    function isAddressWhitelistedFromFees(address account) public view returns (bool) {
        return feeWhitelisted[account];
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (launchTradingLimitsInPlace) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {
                if (!isTradingEnabled) {
                    require(
                        feeWhitelisted[from] || feeWhitelisted[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (sameBlockTxLimitOn) {
                    if (
                        to != owner() &&
                        to != address(uniV2Router) &&
                        to != address(uniV2Pair)
                    ) {
                        require(
                            lastTransferBlock[tx.origin] <
                                block.number,
                            "_update:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        lastTransferBlock[tx.origin] = block.number;
                    }
                }

                //when buy
                if (isDexPair[from] && !txLimitWhitelisted[to]) {
                    require(
                        amount <= maxTokensPerTransfer,
                        "Buy transfer amount exceeds the maxTokensPerTransfer."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletPerAddress,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    isDexPair[to] && !txLimitWhitelisted[from]
                ) {
                    require(
                        amount <= maxTokensPerTransfer,
                        "Sell transfer amount exceeds the maxTokensPerTransfer."
                    );
                } else if (!txLimitWhitelisted[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletPerAddress,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

        if (
            canSwap &&
            swapForFeesEnabled &&
            !duringSwapBack &&
            !isDexPair[from] &&
            !feeWhitelisted[from] &&
            !feeWhitelisted[to]
        ) {
            duringSwapBack = true;

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (feeWhitelisted[from] || feeWhitelisted[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (isDexPair[to] && totalFeeForSells > 0) {
                fees = amount.mul(totalFeeForSells).div(100);
                tokensForReceiver2 += (fees * fee2ForSell) / totalFeeForSells;
                tokensForReceiver1 += (fees * fee1ForSell) / totalFeeForSells;
            }
            // on buy
            else if (isDexPair[from] && totalFeeForBuys > 0) {
                fees = amount.mul(totalFeeForBuys).div(100);
                tokensForReceiver2 += (fees * fee2ForBuy) / totalFeeForBuys;
                tokensForReceiver1 += (fees * fee1ForBuy) / totalFeeForBuys;
            }

            if (fees > 0) {
                super._update(from, address(this), fees);
            }

            amount -= fees;
        }

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

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

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

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

    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > maxSwapbackLimit) {
            contractBalance = maxSwapbackLimit;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap);

        tokensForReceiver1 = 0;
        tokensForReceiver2 = 0;

        (success, ) = address(feeReceiverWallet2).call{value: ethForProject}("");

        (success, ) = address(feeReceiverWallet1).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeReceiverWallet1Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeReceiverWallet2Updated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"changeAddressIsDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver1","type":"address"}],"name":"changeFeeReceiver1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver2","type":"address"}],"name":"changeFeeReceiver2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"changeFeesForBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"changeFeesForSells","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMaxSwapbackLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"changeSwapForFeesEnabled","outputs":[],"stateMutability":"nonpayable","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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromSwapFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromTxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee1ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee1ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee2ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee2ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiverWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiverWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"habibi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"halal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAddressWhitelistedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDexPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTradingLimitsInPlace","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","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":"removeSameBlockRestriction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sameBlockTxLimitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeForBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeForSells","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff60a01b1916905534801562000039575f80fd5b5060405180604001604052806009815260200168160b511a585b5bdb9960ba1b815250604051806040016040528060078152602001661112505353d39160ca1b81525081600390816200008d919062001354565b5060046200009c828262001354565b505050620000b9620000b36200040660201b60201c565b6200040a565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000db8160016200045b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000124573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200014a91906200141c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000196573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001bc91906200141c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000207573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022d91906200141c565b6001600160a01b031660a0819052620002489060016200045b565b60a05162000258906001620004d3565b6b033b2e3c9fd0803ce80000006064620002748260016200145f565b62000280919062001479565b600a556064620002928260016200145f565b6200029e919062001479565b600955612710620002b18260056200145f565b620002bd919062001479565b6006556064620002cf8260046200145f565b620002db919062001479565b6007556014600f81905560056010819055620002f79162001499565b600e5560286012819055600f6013819055620003139162001499565b601155600c80546001600160a01b031990811673df31278b9132d914db098e9d082346ce627c6dfd17909155600d80549091163317905562000369620003616005546001600160a01b031690565b600162000526565b6200037630600162000526565b6200038561dead600162000526565b600c546200039e906001600160a01b0316600162000526565b620003bd620003b56005546001600160a01b031690565b60016200045b565b620003ca3060016200045b565b620003d961dead60016200045b565b600c54620003f2906001600160a01b031660016200045b565b620003fe3382620005ce565b50506200154a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004a95760405162461bcd60e51b815260206004820181905260248201525f8051602062003aba83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b03163314620005705760405162461bcd60e51b815260206004820181905260248201525f8051602062003aba8339815191526044820152606401620004a0565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620005f95760405163ec442f0560e01b81525f6004820152602401620004a0565b620006065f83836200060a565b5050565b805f0362000624576200061f83835f62000dc9565b505050565b60085460ff161562000ad7576005546001600160a01b038481169116148015906200065d57506005546001600160a01b03838116911614155b80156200067257506001600160a01b03821615155b80156200068a57506001600160a01b03821661dead14155b8015620006a15750600554600160a01b900460ff16155b1562000ad757600d54600160a01b900460ff1662000745576001600160a01b0383165f9081526016602052604090205460ff1680620006f757506001600160a01b0382165f9081526016602052604090205460ff165b620007455760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004a0565b600854610100900460ff161562000857576005546001600160a01b038381169116148015906200078957506080516001600160a01b0316826001600160a01b031614155b8015620007aa575060a0516001600160a01b0316826001600160a01b031614155b156200085757325f908152600b60205260409020544311620008455760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004a0565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526018602052604090205460ff1680156200089757506001600160a01b0382165f9081526017602052604090205460ff16155b156200098a57600a54811115620009175760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178546f6b656e735065725472616e736665722e00000000000000000000006064820152608401620004a0565b6009546001600160a01b0383165f908152602081905260409020546200093e908362001499565b1115620009845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a0565b62000ad7565b6001600160a01b0382165f9081526018602052604090205460ff168015620009ca57506001600160a01b0383165f9081526017602052604090205460ff16155b1562000a4a57600a54811115620009845760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d6178546f6b656e735065725472616e736665722e000000000000000000006064820152608401620004a0565b6001600160a01b0382165f9081526017602052604090205460ff1662000ad7576009546001600160a01b0383165f9081526020819052604090205462000a91908362001499565b111562000ad75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a0565b305f908152602081905260409020546006548110801590819062000b045750600554600160a81b900460ff165b801562000b1b5750600554600160a01b900460ff16155b801562000b4057506001600160a01b0385165f9081526018602052604090205460ff16155b801562000b6557506001600160a01b0385165f9081526016602052604090205460ff16155b801562000b8a57506001600160a01b0384165f9081526016602052604090205460ff16155b1562000bbb576005805460ff60a01b1916600160a01b17905562000bad62000ef8565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526016602052604090205460ff600160a01b90920482161591168062000c0857506001600160a01b0385165f9081526016602052604090205460ff165b1562000c1157505f5b5f811562000db3576001600160a01b0386165f9081526018602052604090205460ff16801562000c4257505f601154115b1562000cdb5760115462000c679060649062000c609088906200103a565b9062001050565b90506011546013548262000c7c91906200145f565b62000c88919062001479565b60155f82825462000c9a919062001499565b909155505060115460125462000cb190836200145f565b62000cbd919062001479565b60145f82825462000ccf919062001499565b9091555062000d909050565b6001600160a01b0387165f9081526018602052604090205460ff16801562000d0457505f600e54115b1562000d9057600e5462000d229060649062000c609088906200103a565b9050600e546010548262000d3791906200145f565b62000d43919062001479565b60155f82825462000d55919062001499565b9091555050600e54600f5462000d6c90836200145f565b62000d78919062001479565b60145f82825462000d8a919062001499565b90915550505b801562000da45762000da487308362000dc9565b62000db08186620014af565b94505b62000dc087878762000dc9565b50505050505050565b6001600160a01b03831662000df7578060025f82825462000deb919062001499565b9091555062000e699050565b6001600160a01b0383165f908152602081905260409020548181101562000e4b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004a0565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000e875760028054829003905562000ea5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000eeb91815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f60155460145462000f1c919062001499565b90505f82158062000f2b575081155b1562000f3657505050565b60075483111562000f475760075492505b4762000f53846200105d565b5f62000f604783620011ce565b90505f62000f7f8562000c60601554856200103a60201b90919060201c565b5f60148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d805f811462000fd6576040519150601f19603f3d011682016040523d82523d5f602084013e62000fdb565b606091505b5050600c546040519195506001600160a01b03169047905f81818185875af1925050503d805f81146200102a576040519150601f19603f3d011682016040523d82523d5f602084013e6200102f565b606091505b505050505050505050565b5f6200104782846200145f565b90505b92915050565b5f62001047828462001479565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110620010935762001093620014c5565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620010f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200111891906200141c565b816001815181106200112e576200112e620014c5565b60200260200101906001600160a01b031690816001600160a01b031681525050620011633060805184620011db60201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b81526004016200119b959493929190620014d9565b5f604051808303815f87803b158015620011b3575f80fd5b505af1158015620011c6573d5f803e3d5ffd5b505050505050565b5f620010478284620014af565b6200061f83838360016001600160a01b0384166200120f5760405163e602df0560e01b81525f6004820152602401620004a0565b6001600160a01b0383166200123a57604051634a1406b160e11b81525f6004820152602401620004a0565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015620012b757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620012ae91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620012e657607f821691505b6020821081036200130557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200061f575f81815260208120601f850160051c81016020861015620013335750805b601f850160051c820191505b81811015620011c6578281556001016200133f565b81516001600160401b03811115620013705762001370620012bd565b6200138881620013818454620012d1565b846200130b565b602080601f831160018114620013be575f8415620013a65750858301515b5f19600386901b1c1916600185901b178555620011c6565b5f85815260208120601f198616915b82811015620013ee57888601518255948401946001909101908401620013cd565b50858210156200140c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200142d575f80fd5b81516001600160a01b038116811462001444575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200104a576200104a6200144b565b5f826200149457634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200104a576200104a6200144b565b818103818111156200104a576200104a6200144b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015620015295784516001600160a01b03168352938301939183019160010162001502565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a051612524620015965f395f81816106ab0152818161111a015261178e01525f81816106fb015281816117500152818161205c01528181612113015261214f01526125245ff3fe6080604052600436106102f6575f3560e01c8063715018a611610189578063c138cea4116100d8578063e09f6b0b11610092578063f2fde38b1161006d578063f2fde38b146108c9578063f66d2e15146108e8578063fdf27e4114610907578063fe2655a01461091c575f80fd5b8063e09f6b0b14610880578063ec7311ab14610895578063eda376c6146108b4575f80fd5b8063c138cea4146107e5578063c72d783e146107fa578063cc7e59ac14610819578063d026ba421461082e578063dd62ed3e14610842578063dfd028f014610861575f80fd5b806395d89b4111610143578063a9059cbb1161011e578063a9059cbb14610765578063aaa1fe4514610784578063b317766a146107b2578063bb27b8b8146107c6575f80fd5b806395d89b411461071d578063a42bff2014610731578063a457c2d714610746575f80fd5b8063715018a6146106525780637600627314610666578063868f4cbc1461067b5780638bcea9391461069a5780638da5cb5b146106cd578063958c2e52146106ea575f80fd5b80633c594ed511610245578063536c7d67116101ff5780635e92fef6116101da5780635e92fef6146105b357806365e00719146105ea5780636886ad3e146105ff57806370a082311461061e575f80fd5b8063536c7d671461055c57806358915a86146105755780635b97752014610594575f80fd5b80633c594ed5146104995780633d56af6b146104ae57806340009927146104c3578063435bb2f9146104f1578063522ef4c71461050557806352a0c53c14610525575f80fd5b806318c39fb3116102b0578063313ce5671161028b578063313ce5671461042b57806335c094a414610446578063383041de1461045b578063395093511461047a575f80fd5b806318c39fb3146103cc57806323b872dd146103ed5780632548dd3e1461040c575f80fd5b8063064a59d01461030157806306fdde0314610336578063095ea7b31461035757806309b0ba5a14610376578063171a65861461039957806318160ddd146103b8575f80fd5b366102fd57005b5f80fd5b34801561030c575f80fd5b50600d5461032190600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b348015610341575f80fd5b5061034a61093a565b60405161032d91906121c8565b348015610362575f80fd5b50610321610371366004612227565b6109ca565b348015610381575f80fd5b5061038b60095481565b60405190815260200161032d565b3480156103a4575f80fd5b506103216103b3366004612251565b6109e3565b3480156103c3575f80fd5b5060025461038b565b3480156103d7575f80fd5b506103eb6103e6366004612268565b610ba6565b005b3480156103f8575f80fd5b50610321610407366004612283565b610c2c565b348015610417575f80fd5b506103eb610426366004612268565b610c4f565b348015610436575f80fd5b506040516012815260200161032d565b348015610451575f80fd5b5061038b60145481565b348015610466575f80fd5b50610321610475366004612251565b610cd5565b348015610485575f80fd5b50610321610494366004612227565b610d79565b3480156104a4575f80fd5b5061038b60105481565b3480156104b9575f80fd5b5061038b60155481565b3480156104ce575f80fd5b506103216104dd366004612268565b60186020525f908152604090205460ff1681565b3480156104fc575f80fd5b506103eb610d9a565b348015610510575f80fd5b5060055461032190600160a81b900460ff1681565b348015610530575f80fd5b50600d54610544906001600160a01b031681565b6040516001600160a01b03909116815260200161032d565b348015610567575f80fd5b506008546103219060ff1681565b348015610580575f80fd5b506103eb61058f366004612251565b610dec565b34801561059f575f80fd5b506103eb6105ae3660046122c1565b610ea5565b3480156105be575f80fd5b506103216105cd366004612268565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156105f5575f80fd5b5061038b60075481565b34801561060a575f80fd5b506103eb6106193660046122f0565b610eea565b348015610629575f80fd5b5061038b610638366004612268565b6001600160a01b03165f9081526020819052604090205490565b34801561065d575f80fd5b506103eb610f3e565b348015610671575f80fd5b5061038b60065481565b348015610686575f80fd5b506103eb6106953660046122c1565b610f73565b3480156106a5575f80fd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d8575f80fd5b506005546001600160a01b0316610544565b3480156106f5575f80fd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b348015610728575f80fd5b5061034a610fb8565b34801561073c575f80fd5b5061038b60135481565b348015610751575f80fd5b50610321610760366004612227565b610fc7565b348015610770575f80fd5b5061032161077f366004612227565b61101d565b34801561078f575f80fd5b5061032161079e366004612268565b60176020525f908152604090205460ff1681565b3480156107bd575f80fd5b5061032161102a565b3480156107d1575f80fd5b506103eb6107e03660046122f0565b611066565b3480156107f0575f80fd5b5061038b60125481565b348015610805575f80fd5b506103eb6108143660046122f0565b6110ee565b348015610824575f80fd5b5061038b600f5481565b348015610839575f80fd5b506103216111b9565b34801561084d575f80fd5b5061038b61085c366004612323565b6111f6565b34801561086c575f80fd5b506103eb61087b366004612251565b611220565b34801561088b575f80fd5b5061038b60115481565b3480156108a0575f80fd5b50600c54610544906001600160a01b031681565b3480156108bf575f80fd5b5061038b600e5481565b3480156108d4575f80fd5b506103eb6108e3366004612268565b6112d8565b3480156108f3575f80fd5b506103eb61090236600461235a565b611373565b348015610912575f80fd5b5061038b600a5481565b348015610927575f80fd5b5060085461032190610100900460ff1681565b60606003805461094990612373565b80601f016020809104026020016040519081016040528092919081815260200182805461097590612373565b80156109c05780601f10610997576101008083540402835291602001916109c0565b820191905f5260205f20905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b5f336109d78185856113bb565b60019150505b92915050565b6005545f906001600160a01b03163314610a185760405162461bcd60e51b8152600401610a0f906123ab565b60405180910390fd5b620186a0610a2560025490565b610a2f91906123f4565b821015610a9c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a0f565b620186a0610aa960025490565b610ab5906101f4612413565b610abf91906123f4565b821115610b2b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a0f565b600754821115610b985760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610a0f565b50600681905560015b919050565b6005546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610a0f906123ab565b600d546040516001600160a01b03918216918316907f4c735f7a680994fe54ecedae3b22c35421143bb5e6b561532c043b9ab4c2a989905f90a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610c398582856113cd565b610c44858585611430565b506001949350505050565b6005546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a0f906123ab565b600c546040516001600160a01b03918216918316907ff6a29a3723f5ef6e6b95ccefa6940cb9225e185e80c83681168ceb24b6345be9905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b03163314610d015760405162461bcd60e51b8152600401610a0f906123ab565b600654821015610d705760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273081b5a5b94ddd85c189858dad51c995cda1bdb1960621b6064820152608401610a0f565b50600755600190565b5f336109d7818585610d8b83836111f6565b610d95919061242a565b6113bb565b6005546001600160a01b03163314610dc45760405162461bcd60e51b8152600401610a0f906123ab565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610e165760405162461bcd60e51b8152600401610a0f906123ab565b6002811015610e7f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d6178546f6b656e735065725472616e736665722060448201526e6c6f776572207468616e20302e322560881b6064820152608401610a0f565b6103e8610e8b60025490565b610e959083612413565b610e9f91906123f4565b600a5550565b6005546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610a0f906123ab565b600f8290556010819055610ee3818361242a565b600e555050565b6005546001600160a01b03163314610f145760405162461bcd60e51b8152600401610a0f906123ab565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f685760405162461bcd60e51b8152600401610a0f906123ab565b610f715f61148d565b565b6005546001600160a01b03163314610f9d5760405162461bcd60e51b8152600401610a0f906123ab565b60128290556013819055610fb1818361242a565b6011555050565b60606004805461094990612373565b5f3381610fd482866111f6565b90508381101561101057604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a0f565b610c4482868684036113bb565b5f336109d7818585611430565b6005545f906001600160a01b031633146110565760405162461bcd60e51b8152600401610a0f906123ab565b506008805460ff19169055600190565b6005546001600160a01b031633146110905760405162461bcd60e51b8152600401610a0f906123ab565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b031633146111185760405162461bcd60e51b8152600401610a0f906123ab565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111ab5760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a232bc2830b4b960b91b6064820152608401610a0f565b6111b582826114de565b5050565b6005545f906001600160a01b031633146111e55760405162461bcd60e51b8152600401610a0f906123ab565b506008805461ff0019169055600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461124a5760405162461bcd60e51b8152600401610a0f906123ab565b60058110156112b25760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d617857616c6c657450657241646472657373206c60448201526d6f776572207468616e20302e352560901b6064820152608401610a0f565b6103e86112be60025490565b6112c89083612413565b6112d291906123f4565b60095550565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610a0f906123ab565b6001600160a01b0381166113675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0f565b6113708161148d565b50565b6005546001600160a01b0316331461139d5760405162461bcd60e51b8152600401610a0f906123ab565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6113c88383836001611531565b505050565b5f6113d884846111f6565b90505f19811461142a578181101561141c57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a0f565b61142a84848484035f611531565b50505050565b6001600160a01b03831661145957604051634b637e8f60e11b81525f6004820152602401610a0f565b6001600160a01b0382166114825760405163ec442f0560e01b81525f6004820152602401610a0f565b6113c8838383611603565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661155a5760405163e602df0560e01b81525f6004820152602401610a0f565b6001600160a01b03831661158357604051634a1406b160e11b81525f6004820152602401610a0f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561142a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115f591815260200190565b60405180910390a350505050565b805f03611615576113c883835f611d92565b60085460ff1615611acc576005546001600160a01b0384811691161480159061164c57506005546001600160a01b03838116911614155b801561166057506001600160a01b03821615155b801561167757506001600160a01b03821661dead14155b801561168d5750600554600160a01b900460ff16155b15611acc57600d54600160a01b900460ff16611725576001600160a01b0383165f9081526016602052604090205460ff16806116e057506001600160a01b0382165f9081526016602052604090205460ff165b6117255760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a0f565b600854610100900460ff161561186d576005546001600160a01b0383811691161480159061178557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117c357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561186d57325f908152600b6020526040902054431161185b5760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a0f565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526018602052604090205460ff1680156118ac57506001600160a01b0382165f9081526017602052604090205460ff16155b1561198f57600a548111156119215760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a37b5b2b739a832b92a3930b739b332b91760591b6064820152608401610a0f565b6009546001600160a01b0383165f90815260208190526040902054611946908361242a565b111561198a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b611acc565b6001600160a01b0382165f9081526018602052604090205460ff1680156119ce57506001600160a01b0383165f9081526017602052604090205460ff16155b15611a4457600a5481111561198a5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a0f565b6001600160a01b0382165f9081526017602052604090205460ff16611acc576009546001600160a01b0383165f90815260208190526040902054611a88908361242a565b1115611acc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b305f9081526020819052604090205460065481108015908190611af85750600554600160a81b900460ff165b8015611b0e5750600554600160a01b900460ff16155b8015611b3257506001600160a01b0385165f9081526018602052604090205460ff16155b8015611b5657506001600160a01b0385165f9081526016602052604090205460ff16155b8015611b7a57506001600160a01b0384165f9081526016602052604090205460ff16155b15611ba8576005805460ff60a01b1916600160a01b179055611b9a611eb8565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526016602052604090205460ff600160a01b909204821615911680611bf457506001600160a01b0385165f9081526016602052604090205460ff165b15611bfc57505f5b5f8115611d7e576001600160a01b0386165f9081526018602052604090205460ff168015611c2b57505f601154115b15611cb757611c506064611c4a60115488611fea90919063ffffffff16565b90611ffc565b905060115460135482611c639190612413565b611c6d91906123f4565b60155f828254611c7d919061242a565b9091555050601154601254611c929083612413565b611c9c91906123f4565b60145f828254611cac919061242a565b90915550611d609050565b6001600160a01b0387165f9081526018602052604090205460ff168015611cdf57505f600e54115b15611d6057611cfe6064611c4a600e5488611fea90919063ffffffff16565b9050600e5460105482611d119190612413565b611d1b91906123f4565b60155f828254611d2b919061242a565b9091555050600e54600f54611d409083612413565b611d4a91906123f4565b60145f828254611d5a919061242a565b90915550505b8015611d7157611d71873083611d92565b611d7b818661243d565b94505b611d89878787611d92565b50505050505050565b6001600160a01b038316611dbc578060025f828254611db1919061242a565b90915550611e2c9050565b6001600160a01b0383165f9081526020819052604090205481811015611e0e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a0f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611e4857600280548290039055611e66565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611eab91815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f601554601454611eda919061242a565b90505f821580611ee8575081155b15611ef257505050565b600754831115611f025760075492505b47611f0c84612007565b5f611f1747836121bd565b90505f611f3385611c4a60155485611fea90919063ffffffff16565b5f60148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d805f8114611f88576040519150601f19603f3d011682016040523d82523d5f602084013e611f8d565b606091505b5050600c546040519195506001600160a01b03169047905f81818185875af1925050503d805f8114611fda576040519150601f19603f3d011682016040523d82523d5f602084013e611fdf565b606091505b505050505050505050565b5f611ff58284612413565b9392505050565b5f611ff582846123f4565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061203a5761203a612450565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120da9190612464565b816001815181106120ed576120ed612450565b60200260200101906001600160a01b031690816001600160a01b031681525050612138307f0000000000000000000000000000000000000000000000000000000000000000846113bb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061218c9085905f9086903090429060040161247f565b5f604051808303815f87803b1580156121a3575f80fd5b505af11580156121b5573d5f803e3d5ffd5b505050505050565b5f611ff5828461243d565b5f6020808352835180828501525f5b818110156121f3578581018301518582016040015282016121d7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611370575f80fd5b5f8060408385031215612238575f80fd5b823561224381612213565b946020939093013593505050565b5f60208284031215612261575f80fd5b5035919050565b5f60208284031215612278575f80fd5b8135611ff581612213565b5f805f60608486031215612295575f80fd5b83356122a081612213565b925060208401356122b081612213565b929592945050506040919091013590565b5f80604083850312156122d2575f80fd5b50508035926020909101359150565b80358015158114610ba1575f80fd5b5f8060408385031215612301575f80fd5b823561230c81612213565b915061231a602084016122e1565b90509250929050565b5f8060408385031215612334575f80fd5b823561233f81612213565b9150602083013561234f81612213565b809150509250929050565b5f6020828403121561236a575f80fd5b611ff5826122e1565b600181811c9082168061238757607f821691505b6020821081036123a557634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b5f8261240e57634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176109dd576109dd6123e0565b808201808211156109dd576109dd6123e0565b818103818111156109dd576109dd6123e0565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612474575f80fd5b8151611ff581612213565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124cd5784516001600160a01b0316835293830193918301916001016124a8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220781dfca9150a5d51e77090e4b9b4dea51ffa2909a3b7c96fc6da33beac56a43a64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102f6575f3560e01c8063715018a611610189578063c138cea4116100d8578063e09f6b0b11610092578063f2fde38b1161006d578063f2fde38b146108c9578063f66d2e15146108e8578063fdf27e4114610907578063fe2655a01461091c575f80fd5b8063e09f6b0b14610880578063ec7311ab14610895578063eda376c6146108b4575f80fd5b8063c138cea4146107e5578063c72d783e146107fa578063cc7e59ac14610819578063d026ba421461082e578063dd62ed3e14610842578063dfd028f014610861575f80fd5b806395d89b4111610143578063a9059cbb1161011e578063a9059cbb14610765578063aaa1fe4514610784578063b317766a146107b2578063bb27b8b8146107c6575f80fd5b806395d89b411461071d578063a42bff2014610731578063a457c2d714610746575f80fd5b8063715018a6146106525780637600627314610666578063868f4cbc1461067b5780638bcea9391461069a5780638da5cb5b146106cd578063958c2e52146106ea575f80fd5b80633c594ed511610245578063536c7d67116101ff5780635e92fef6116101da5780635e92fef6146105b357806365e00719146105ea5780636886ad3e146105ff57806370a082311461061e575f80fd5b8063536c7d671461055c57806358915a86146105755780635b97752014610594575f80fd5b80633c594ed5146104995780633d56af6b146104ae57806340009927146104c3578063435bb2f9146104f1578063522ef4c71461050557806352a0c53c14610525575f80fd5b806318c39fb3116102b0578063313ce5671161028b578063313ce5671461042b57806335c094a414610446578063383041de1461045b578063395093511461047a575f80fd5b806318c39fb3146103cc57806323b872dd146103ed5780632548dd3e1461040c575f80fd5b8063064a59d01461030157806306fdde0314610336578063095ea7b31461035757806309b0ba5a14610376578063171a65861461039957806318160ddd146103b8575f80fd5b366102fd57005b5f80fd5b34801561030c575f80fd5b50600d5461032190600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b348015610341575f80fd5b5061034a61093a565b60405161032d91906121c8565b348015610362575f80fd5b50610321610371366004612227565b6109ca565b348015610381575f80fd5b5061038b60095481565b60405190815260200161032d565b3480156103a4575f80fd5b506103216103b3366004612251565b6109e3565b3480156103c3575f80fd5b5060025461038b565b3480156103d7575f80fd5b506103eb6103e6366004612268565b610ba6565b005b3480156103f8575f80fd5b50610321610407366004612283565b610c2c565b348015610417575f80fd5b506103eb610426366004612268565b610c4f565b348015610436575f80fd5b506040516012815260200161032d565b348015610451575f80fd5b5061038b60145481565b348015610466575f80fd5b50610321610475366004612251565b610cd5565b348015610485575f80fd5b50610321610494366004612227565b610d79565b3480156104a4575f80fd5b5061038b60105481565b3480156104b9575f80fd5b5061038b60155481565b3480156104ce575f80fd5b506103216104dd366004612268565b60186020525f908152604090205460ff1681565b3480156104fc575f80fd5b506103eb610d9a565b348015610510575f80fd5b5060055461032190600160a81b900460ff1681565b348015610530575f80fd5b50600d54610544906001600160a01b031681565b6040516001600160a01b03909116815260200161032d565b348015610567575f80fd5b506008546103219060ff1681565b348015610580575f80fd5b506103eb61058f366004612251565b610dec565b34801561059f575f80fd5b506103eb6105ae3660046122c1565b610ea5565b3480156105be575f80fd5b506103216105cd366004612268565b6001600160a01b03165f9081526016602052604090205460ff1690565b3480156105f5575f80fd5b5061038b60075481565b34801561060a575f80fd5b506103eb6106193660046122f0565b610eea565b348015610629575f80fd5b5061038b610638366004612268565b6001600160a01b03165f9081526020819052604090205490565b34801561065d575f80fd5b506103eb610f3e565b348015610671575f80fd5b5061038b60065481565b348015610686575f80fd5b506103eb6106953660046122c1565b610f73565b3480156106a5575f80fd5b506105447f000000000000000000000000469abb57d1c73035279fb7a773da2ba086d1862181565b3480156106d8575f80fd5b506005546001600160a01b0316610544565b3480156106f5575f80fd5b506105447f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610728575f80fd5b5061034a610fb8565b34801561073c575f80fd5b5061038b60135481565b348015610751575f80fd5b50610321610760366004612227565b610fc7565b348015610770575f80fd5b5061032161077f366004612227565b61101d565b34801561078f575f80fd5b5061032161079e366004612268565b60176020525f908152604090205460ff1681565b3480156107bd575f80fd5b5061032161102a565b3480156107d1575f80fd5b506103eb6107e03660046122f0565b611066565b3480156107f0575f80fd5b5061038b60125481565b348015610805575f80fd5b506103eb6108143660046122f0565b6110ee565b348015610824575f80fd5b5061038b600f5481565b348015610839575f80fd5b506103216111b9565b34801561084d575f80fd5b5061038b61085c366004612323565b6111f6565b34801561086c575f80fd5b506103eb61087b366004612251565b611220565b34801561088b575f80fd5b5061038b60115481565b3480156108a0575f80fd5b50600c54610544906001600160a01b031681565b3480156108bf575f80fd5b5061038b600e5481565b3480156108d4575f80fd5b506103eb6108e3366004612268565b6112d8565b3480156108f3575f80fd5b506103eb61090236600461235a565b611373565b348015610912575f80fd5b5061038b600a5481565b348015610927575f80fd5b5060085461032190610100900460ff1681565b60606003805461094990612373565b80601f016020809104026020016040519081016040528092919081815260200182805461097590612373565b80156109c05780601f10610997576101008083540402835291602001916109c0565b820191905f5260205f20905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b5f336109d78185856113bb565b60019150505b92915050565b6005545f906001600160a01b03163314610a185760405162461bcd60e51b8152600401610a0f906123ab565b60405180910390fd5b620186a0610a2560025490565b610a2f91906123f4565b821015610a9c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a0f565b620186a0610aa960025490565b610ab5906101f4612413565b610abf91906123f4565b821115610b2b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a0f565b600754821115610b985760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610a0f565b50600681905560015b919050565b6005546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610a0f906123ab565b600d546040516001600160a01b03918216918316907f4c735f7a680994fe54ecedae3b22c35421143bb5e6b561532c043b9ab4c2a989905f90a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610c398582856113cd565b610c44858585611430565b506001949350505050565b6005546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a0f906123ab565b600c546040516001600160a01b03918216918316907ff6a29a3723f5ef6e6b95ccefa6940cb9225e185e80c83681168ceb24b6345be9905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b03163314610d015760405162461bcd60e51b8152600401610a0f906123ab565b600654821015610d705760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273081b5a5b94ddd85c189858dad51c995cda1bdb1960621b6064820152608401610a0f565b50600755600190565b5f336109d7818585610d8b83836111f6565b610d95919061242a565b6113bb565b6005546001600160a01b03163314610dc45760405162461bcd60e51b8152600401610a0f906123ab565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610e165760405162461bcd60e51b8152600401610a0f906123ab565b6002811015610e7f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d6178546f6b656e735065725472616e736665722060448201526e6c6f776572207468616e20302e322560881b6064820152608401610a0f565b6103e8610e8b60025490565b610e959083612413565b610e9f91906123f4565b600a5550565b6005546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610a0f906123ab565b600f8290556010819055610ee3818361242a565b600e555050565b6005546001600160a01b03163314610f145760405162461bcd60e51b8152600401610a0f906123ab565b6001600160a01b03919091165f908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f685760405162461bcd60e51b8152600401610a0f906123ab565b610f715f61148d565b565b6005546001600160a01b03163314610f9d5760405162461bcd60e51b8152600401610a0f906123ab565b60128290556013819055610fb1818361242a565b6011555050565b60606004805461094990612373565b5f3381610fd482866111f6565b90508381101561101057604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a0f565b610c4482868684036113bb565b5f336109d7818585611430565b6005545f906001600160a01b031633146110565760405162461bcd60e51b8152600401610a0f906123ab565b506008805460ff19169055600190565b6005546001600160a01b031633146110905760405162461bcd60e51b8152600401610a0f906123ab565b6001600160a01b0382165f81815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b031633146111185760405162461bcd60e51b8152600401610a0f906123ab565b7f000000000000000000000000469abb57d1c73035279fb7a773da2ba086d186216001600160a01b0316826001600160a01b0316036111ab5760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a232bc2830b4b960b91b6064820152608401610a0f565b6111b582826114de565b5050565b6005545f906001600160a01b031633146111e55760405162461bcd60e51b8152600401610a0f906123ab565b506008805461ff0019169055600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461124a5760405162461bcd60e51b8152600401610a0f906123ab565b60058110156112b25760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d617857616c6c657450657241646472657373206c60448201526d6f776572207468616e20302e352560901b6064820152608401610a0f565b6103e86112be60025490565b6112c89083612413565b6112d291906123f4565b60095550565b6005546001600160a01b031633146113025760405162461bcd60e51b8152600401610a0f906123ab565b6001600160a01b0381166113675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0f565b6113708161148d565b50565b6005546001600160a01b0316331461139d5760405162461bcd60e51b8152600401610a0f906123ab565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6113c88383836001611531565b505050565b5f6113d884846111f6565b90505f19811461142a578181101561141c57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a0f565b61142a84848484035f611531565b50505050565b6001600160a01b03831661145957604051634b637e8f60e11b81525f6004820152602401610a0f565b6001600160a01b0382166114825760405163ec442f0560e01b81525f6004820152602401610a0f565b6113c8838383611603565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661155a5760405163e602df0560e01b81525f6004820152602401610a0f565b6001600160a01b03831661158357604051634a1406b160e11b81525f6004820152602401610a0f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561142a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115f591815260200190565b60405180910390a350505050565b805f03611615576113c883835f611d92565b60085460ff1615611acc576005546001600160a01b0384811691161480159061164c57506005546001600160a01b03838116911614155b801561166057506001600160a01b03821615155b801561167757506001600160a01b03821661dead14155b801561168d5750600554600160a01b900460ff16155b15611acc57600d54600160a01b900460ff16611725576001600160a01b0383165f9081526016602052604090205460ff16806116e057506001600160a01b0382165f9081526016602052604090205460ff165b6117255760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a0f565b600854610100900460ff161561186d576005546001600160a01b0383811691161480159061178557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117c357507f000000000000000000000000469abb57d1c73035279fb7a773da2ba086d186216001600160a01b0316826001600160a01b031614155b1561186d57325f908152600b6020526040902054431161185b5760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a0f565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526018602052604090205460ff1680156118ac57506001600160a01b0382165f9081526017602052604090205460ff16155b1561198f57600a548111156119215760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a37b5b2b739a832b92a3930b739b332b91760591b6064820152608401610a0f565b6009546001600160a01b0383165f90815260208190526040902054611946908361242a565b111561198a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b611acc565b6001600160a01b0382165f9081526018602052604090205460ff1680156119ce57506001600160a01b0383165f9081526017602052604090205460ff16155b15611a4457600a5481111561198a5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a0f565b6001600160a01b0382165f9081526017602052604090205460ff16611acc576009546001600160a01b0383165f90815260208190526040902054611a88908361242a565b1115611acc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b305f9081526020819052604090205460065481108015908190611af85750600554600160a81b900460ff165b8015611b0e5750600554600160a01b900460ff16155b8015611b3257506001600160a01b0385165f9081526018602052604090205460ff16155b8015611b5657506001600160a01b0385165f9081526016602052604090205460ff16155b8015611b7a57506001600160a01b0384165f9081526016602052604090205460ff16155b15611ba8576005805460ff60a01b1916600160a01b179055611b9a611eb8565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526016602052604090205460ff600160a01b909204821615911680611bf457506001600160a01b0385165f9081526016602052604090205460ff165b15611bfc57505f5b5f8115611d7e576001600160a01b0386165f9081526018602052604090205460ff168015611c2b57505f601154115b15611cb757611c506064611c4a60115488611fea90919063ffffffff16565b90611ffc565b905060115460135482611c639190612413565b611c6d91906123f4565b60155f828254611c7d919061242a565b9091555050601154601254611c929083612413565b611c9c91906123f4565b60145f828254611cac919061242a565b90915550611d609050565b6001600160a01b0387165f9081526018602052604090205460ff168015611cdf57505f600e54115b15611d6057611cfe6064611c4a600e5488611fea90919063ffffffff16565b9050600e5460105482611d119190612413565b611d1b91906123f4565b60155f828254611d2b919061242a565b9091555050600e54600f54611d409083612413565b611d4a91906123f4565b60145f828254611d5a919061242a565b90915550505b8015611d7157611d71873083611d92565b611d7b818661243d565b94505b611d89878787611d92565b50505050505050565b6001600160a01b038316611dbc578060025f828254611db1919061242a565b90915550611e2c9050565b6001600160a01b0383165f9081526020819052604090205481811015611e0e5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a0f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611e4857600280548290039055611e66565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611eab91815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f601554601454611eda919061242a565b90505f821580611ee8575081155b15611ef257505050565b600754831115611f025760075492505b47611f0c84612007565b5f611f1747836121bd565b90505f611f3385611c4a60155485611fea90919063ffffffff16565b5f60148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d805f8114611f88576040519150601f19603f3d011682016040523d82523d5f602084013e611f8d565b606091505b5050600c546040519195506001600160a01b03169047905f81818185875af1925050503d805f8114611fda576040519150601f19603f3d011682016040523d82523d5f602084013e611fdf565b606091505b505050505050505050565b5f611ff58284612413565b9392505050565b5f611ff582846123f4565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061203a5761203a612450565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120da9190612464565b816001815181106120ed576120ed612450565b60200260200101906001600160a01b031690816001600160a01b031681525050612138307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113bb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061218c9085905f9086903090429060040161247f565b5f604051808303815f87803b1580156121a3575f80fd5b505af11580156121b5573d5f803e3d5ffd5b505050505050565b5f611ff5828461243d565b5f6020808352835180828501525f5b818110156121f3578581018301518582016040015282016121d7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611370575f80fd5b5f8060408385031215612238575f80fd5b823561224381612213565b946020939093013593505050565b5f60208284031215612261575f80fd5b5035919050565b5f60208284031215612278575f80fd5b8135611ff581612213565b5f805f60608486031215612295575f80fd5b83356122a081612213565b925060208401356122b081612213565b929592945050506040919091013590565b5f80604083850312156122d2575f80fd5b50508035926020909101359150565b80358015158114610ba1575f80fd5b5f8060408385031215612301575f80fd5b823561230c81612213565b915061231a602084016122e1565b90509250929050565b5f8060408385031215612334575f80fd5b823561233f81612213565b9150602083013561234f81612213565b809150509250929050565b5f6020828403121561236a575f80fd5b611ff5826122e1565b600181811c9082168061238757607f821691505b6020821081036123a557634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b5f8261240e57634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176109dd576109dd6123e0565b808201808211156109dd576109dd6123e0565b818103818111156109dd576109dd6123e0565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612474575f80fd5b8151611ff581612213565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124cd5784516001600160a01b0316835293830193918301916001016124a8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220781dfca9150a5d51e77090e4b9b4dea51ffa2909a3b7c96fc6da33beac56a43a64736f6c63430008140033

Deployed Bytecode Sourcemap

26316:15053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27077:36;;;;;;;;;;-1:-1:-1;27077:36:0;;;;-1:-1:-1;;;27077:36:0;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;27077:36:0;;;;;;;;12786:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15079:190::-;;;;;;;;;;-1:-1:-1;15079:190:0;;;;;:::i;:::-;;:::i;26776:34::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;26776:34:0;1215:177:1;30727:621:0;;;;;;;;;;-1:-1:-1;30727:621:0;;;;;:::i;:::-;;:::i;13888:99::-;;;;;;;;;;-1:-1:-1;13967:12:0;;13888:99;;35186:205;;;;;;;;;;-1:-1:-1;35186:205:0;;;;;:::i;:::-;;:::i;:::-;;15847:249;;;;;;;;;;-1:-1:-1;15847:249:0;;;;;:::i;:::-;;:::i;34831:221::-;;;;;;;;;;-1:-1:-1;34831:221:0;;;;;:::i;:::-;;:::i;13739:84::-;;;;;;;;;;-1:-1:-1;13739:84:0;;13813:2;2437:36:1;;2425:2;2410:18;13739:84:0;2295:184:1;27331:33:0;;;;;;;;;;;;;;;;31356:315;;;;;;;;;;-1:-1:-1;31356:315:0;;;;;:::i;:::-;;:::i;16505:238::-;;;;;;;;;;-1:-1:-1;16505:238:0;;;;;:::i;:::-;;:::i;27191:25::-;;;;;;;;;;;;;;;;27371:33;;;;;;;;;;;;;;;;27756:41;;;;;;;;;;-1:-1:-1;27756:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30193:115;;;;;;;;;;;;;:::i;26536:38::-;;;;;;;;;;-1:-1:-1;26536:38:0;;;;-1:-1:-1;;;26536:38:0;;;;;;27035:33;;;;;;;;;;-1:-1:-1;27035:33:0;;;;-1:-1:-1;;;;;27035:33:0;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;27035:33:0;2484:203:1;26680:45:0;;;;;;;;;;-1:-1:-1;26680:45:0;;;;;;;;31829:226;;;;;;;;;;-1:-1:-1;31829:226:0;;;;;:::i;:::-;;:::i;33134:245::-;;;;;;;;;;-1:-1:-1;33134:245:0;;;;;:::i;:::-;;:::i;35399:131::-;;;;;;;;;;-1:-1:-1;35399:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;35499:23:0;35475:4;35499:23;;;:14;:23;;;;;;;;;35399:131;26622:31;;;;;;;;;;;;;;;;32589:149;;;;;;;;;;-1:-1:-1;32589:149:0;;;;;:::i;:::-;;:::i;14050:118::-;;;;;;;;;;-1:-1:-1;14050:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14142:18:0;14115:7;14142:18;;;;;;;;;;;;14050:118;24947:103;;;;;;;;;;;;;:::i;26581:34::-;;;;;;;;;;;;;;;;33544:251;;;;;;;;;;-1:-1:-1;33544:251:0;;;;;:::i;:::-;;:::i;26442:34::-;;;;;;;;;;;;;;;24296:87;;;;;;;;;;-1:-1:-1;24369:6:0;;-1:-1:-1;;;;;24369:6:0;24296:87;;26394:41;;;;;;;;;;;;;;;12996:95;;;;;;;;;;;;;:::i;27296:26::-;;;;;;;;;;;;;;;;17431:504;;;;;;;;;;-1:-1:-1;17431:504:0;;;;;:::i;:::-;;:::i;14373:182::-;;;;;;;;;;-1:-1:-1;14373:182:0;;;;;:::i;:::-;;:::i;27548:50::-;;;;;;;;;;-1:-1:-1;27548:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30383:126;;;;;;;;;;;;;:::i;33962:188::-;;;;;;;;;;-1:-1:-1;33962:188:0;;;;;:::i;:::-;;:::i;27263:26::-;;;;;;;;;;;;;;;;34285:265;;;;;;;;;;-1:-1:-1;34285:265:0;;;;;:::i;:::-;;:::i;27159:25::-;;;;;;;;;;;;;;;;30580:139;;;;;;;;;;;;;:::i;14618:142::-;;;;;;;;;;-1:-1:-1;14618:142:0;;;;;:::i;:::-;;:::i;32180:223::-;;;;;;;;;;-1:-1:-1;32180:223:0;;;;;:::i;:::-;;:::i;27225:31::-;;;;;;;;;;;;;;;;26995:33;;;;;;;;;;-1:-1:-1;26995:33:0;;;;-1:-1:-1;;;;;26995:33:0;;;27122:30;;;;;;;;;;;;;;;;25205:238;;;;;;;;;;-1:-1:-1;25205:238:0;;;;;:::i;:::-;;:::i;32856:114::-;;;;;;;;;;-1:-1:-1;32856:114:0;;;;;:::i;:::-;;:::i;26817:35::-;;;;;;;;;;;;;;;;26732:37;;;;;;;;;;-1:-1:-1;26732:37:0;;;;;;;;;;;12786:91;12831:13;12864:5;12857:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12786:91;:::o;15079:190::-;15152:4;9955:10;15208:31;9955:10;15224:7;15233:5;15208:8;:31::i;:::-;15257:4;15250:11;;;15079:190;;;;;:::o;30727:621::-;24369:6;;30825:4;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;;;;;;;;;30893:6:::1;30877:13;13967:12:::0;;;13888:99;30877:13:::1;:22;;;;:::i;:::-;30864:9;:35;;30842:138;;;::::0;-1:-1:-1;;;30842:138:0;;5539:2:1;30842:138:0::1;::::0;::::1;5521:21:1::0;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;-1:-1:-1;;;5668:18:1;;;5661:51;5729:19;;30842:138:0::1;5337:417:1::0;30842:138:0::1;31050:6;31033:13;13967:12:::0;;;13888:99;31033:13:::1;31027:19;::::0;:3:::1;:19;:::i;:::-;31026:30;;;;:::i;:::-;31013:9;:43;;30991:145;;;::::0;-1:-1:-1;;;30991:145:0;;6134:2:1;30991:145:0::1;::::0;::::1;6116:21:1::0;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;-1:-1:-1;;;6263:18:1;;;6256:50;6323:19;;30991:145:0::1;5932:416:1::0;30991:145:0::1;31182:16;;31169:9;:29;;31147:129;;;::::0;-1:-1:-1;;;31147:129:0;;6555:2:1;31147:129:0::1;::::0;::::1;6537:21:1::0;6594:2;6574:18;;;6567:30;6633:34;6613:18;;;6606:62;-1:-1:-1;;;6684:18:1;;;6677:48;6742:19;;31147:129:0::1;6353:414:1::0;31147:129:0::1;-1:-1:-1::0;31287:19:0::1;:31:::0;;;31336:4:::1;24587:1;30727:621:::0;;;:::o;35186:205::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;35317:18:::1;::::0;35274:62:::1;::::0;-1:-1:-1;;;;;35317:18:0;;::::1;::::0;35274:62;::::1;::::0;::::1;::::0;35317:18:::1;::::0;35274:62:::1;35347:18;:36:::0;;-1:-1:-1;;;;;;35347:36:0::1;-1:-1:-1::0;;;;;35347:36:0;;;::::1;::::0;;;::::1;::::0;;35186:205::o;15847:249::-;15934:4;9955:10;15992:37;16008:4;9955:10;16023:5;15992:15;:37::i;:::-;16040:26;16050:4;16056:2;16060:5;16040:9;:26::i;:::-;-1:-1:-1;16084:4:0;;15847:249;-1:-1:-1;;;;15847:249:0:o;34831:221::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;34978:18:::1;::::0;34935:62:::1;::::0;-1:-1:-1;;;;;34978:18:0;;::::1;::::0;34935:62;::::1;::::0;::::1;::::0;34978:18:::1;::::0;34935:62:::1;35008:18;:36:::0;;-1:-1:-1;;;;;;35008:36:0::1;-1:-1:-1::0;;;;;35008:36:0;;;::::1;::::0;;;::::1;::::0;;34831:221::o;31356:315::-;24369:6;;31451:4;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;31503:19:::1;;31490:9;:32;;31468:134;;;::::0;-1:-1:-1;;;31468:134:0;;6974:2:1;31468:134:0::1;::::0;::::1;6956:21:1::0;7013:2;6993:18;;;6986:30;7052:34;7032:18;;;7025:62;-1:-1:-1;;;7103:18:1;;;7096:50;7163:19;;31468:134:0::1;6772:416:1::0;31468:134:0::1;-1:-1:-1::0;31613:16:0::1;:28:::0;31659:4:::1;::::0;31356:315::o;16505:238::-;16593:4;9955:10;16649:64;9955:10;16665:7;16702:10;16674:25;9955:10;16665:7;16674:9;:25::i;:::-;:38;;;;:::i;:::-;16649:8;:64::i;30193:115::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;30241:16:::1;:23:::0;;-1:-1:-1;;;;30241:23:0::1;-1:-1:-1::0;;;30241:23:0::1;::::0;;30275:18:::1;:25:::0;;-1:-1:-1;;;;30275:25:0::1;-1:-1:-1::0;;;30275:25:0::1;::::0;;30193:115::o;31829:226::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;31929:1:::1;31919:6;:11;;31911:71;;;::::0;-1:-1:-1;;;31911:71:0;;7525:2:1;31911:71:0::1;::::0;::::1;7507:21:1::0;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:45;7709:19;;31911:71:0::1;7323:411:1::0;31911:71:0::1;32043:4;32026:13;13967:12:::0;;;13888:99;32026:13:::1;32017:22;::::0;:6;:22:::1;:::i;:::-;32016:31;;;;:::i;:::-;31993:20;:54:::0;-1:-1:-1;31829:226:0:o;33134:245::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;33259:10:::1;:25:::0;;;33295:10:::1;:24:::0;;;33348:23:::1;33308:11:::0;33272:12;33348:23:::1;:::i;:::-;33330:15;:41:::0;-1:-1:-1;;33134:245:0:o;32589:149::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32697:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32697:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32589:149::o;24947:103::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;25012:30:::1;25039:1;25012:18;:30::i;:::-;24947:103::o:0;33544:251::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;33670:11:::1;:26:::0;;;33707:11:::1;:25:::0;;;33762::::1;33721:11:::0;33684:12;33762:25:::1;:::i;:::-;33743:16;:44:::0;-1:-1:-1;;33544:251:0:o;12996:95::-;13043:13;13076:7;13069:14;;;;;:::i;17431:504::-;17526:4;9955:10;17526:4;17609:25;9955:10;17626:7;17609:9;:25::i;:::-;17582:52;;17668:17;17649:16;:36;17645:150;;;17709:74;;-1:-1:-1;;;17709:74:0;;-1:-1:-1;;;;;7959:32:1;;17709:74:0;;;7941:51:1;8008:18;;;8001:34;;;8051:18;;;8044:34;;;7914:18;;17709:74:0;7739:345:1;17645:150:0;17830:62;17839:5;17846:7;17874:17;17855:16;:36;17830:8;:62::i;14373:182::-;14442:4;9955:10;14498:27;9955:10;14515:2;14519:5;14498:9;:27::i;30383:126::-;24369:6;;30428:4;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;-1:-1:-1;30445:26:0::1;:34:::0;;-1:-1:-1;;30445:34:0::1;::::0;;;30383:126;:::o;33962:188::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34050:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34050:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34100:42;;154:41:1;;;34100:42:0::1;::::0;127:18:1;34100:42:0::1;;;;;;;33962:188:::0;;:::o;34285:265::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;34426:9:::1;-1:-1:-1::0;;;;;34418:17:0::1;:4;-1:-1:-1::0;;;;;34418:17:0::1;::::0;34396:108:::1;;;::::0;-1:-1:-1;;;34396:108:0;;8291:2:1;34396:108:0::1;::::0;::::1;8273:21:1::0;8330:2;8310:18;;;8303:30;8369:34;8349:18;;;8342:62;-1:-1:-1;;;8420:18:1;;;8413:39;8469:19;;34396:108:0::1;8089:405:1::0;34396:108:0::1;34517:25;34530:4;34536:5;34517:12;:25::i;:::-;34285:265:::0;;:::o;30580:139::-;24369:6;;30646:4;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;-1:-1:-1;30663:18:0::1;:26:::0;;-1:-1:-1;;30663:26:0::1;::::0;;:18:::1;30580:139:::0;:::o;14618:142::-;-1:-1:-1;;;;;14725:18:0;;;14698:7;14725:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14618:142::o;32180:223::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;32279:1:::1;32269:6;:11;;32261:70;;;::::0;-1:-1:-1;;;32261:70:0;;8701:2:1;32261:70:0::1;::::0;::::1;8683:21:1::0;8740:2;8720:18;;;8713:30;8779:34;8759:18;;;8752:62;-1:-1:-1;;;8830:18:1;;;8823:44;8884:19;;32261:70:0::1;8499:410:1::0;32261:70:0::1;32391:4;32374:13;13967:12:::0;;;13888:99;32374:13:::1;32365:22;::::0;:6;:22:::1;:::i;:::-;32364:31;;;;:::i;:::-;32342:19;:53:::0;-1:-1:-1;32180:223:0:o;25205:238::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25308:22:0;::::1;25286:110;;;::::0;-1:-1:-1;;;25286:110:0;;9116:2:1;25286:110:0::1;::::0;::::1;9098:21:1::0;9155:2;9135:18;;;9128:30;9194:34;9174:18;;;9167:62;-1:-1:-1;;;9245:18:1;;;9238:36;9291:19;;25286:110:0::1;8914:402:1::0;25286:110:0::1;25407:28;25426:8;25407:18;:28::i;:::-;25205:238:::0;:::o;32856:114::-;24369:6;;-1:-1:-1;;;;;24369:6:0;9955:10;24516:23;24508:68;;;;-1:-1:-1;;;24508:68:0;;;;;;;:::i;:::-;32934:18:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;32934:28:0::1;-1:-1:-1::0;;;;32934:28:0;;::::1;::::0;;;::::1;::::0;;32856:114::o;21628:138::-;21721:37;21730:5;21737:7;21746:5;21753:4;21721:8;:37::i;:::-;21628:138;;;:::o;23365:487::-;23465:24;23492:25;23502:5;23509:7;23492:9;:25::i;:::-;23465:52;;-1:-1:-1;;23532:16:0;:37;23528:317;;23609:5;23590:16;:24;23586:132;;;23642:60;;-1:-1:-1;;;23642:60:0;;-1:-1:-1;;;;;7959:32:1;;23642:60:0;;;7941:51:1;8008:18;;;8001:34;;;8051:18;;;8044:34;;;7914:18;;23642:60:0;7739:345:1;23586:132:0;23761:57;23770:5;23777:7;23805:5;23786:16;:24;23812:5;23761:8;:57::i;:::-;23454:398;23365:487;;;:::o;18320:308::-;-1:-1:-1;;;;;18404:18:0;;18400:88;;18446:30;;-1:-1:-1;;;18446:30:0;;18473:1;18446:30;;;2630:51:1;2603:18;;18446:30:0;2484:203:1;18400:88:0;-1:-1:-1;;;;;18502:16:0;;18498:88;;18542:32;;-1:-1:-1;;;18542:32:0;;18571:1;18542:32;;;2630:51:1;2603:18;;18542:32:0;2484:203:1;18498:88:0;18596:24;18604:4;18610:2;18614:5;18596:7;:24::i;25603:191::-;25696:6;;;-1:-1:-1;;;;;25713:17:0;;;-1:-1:-1;;;;;;25713:17:0;;;;;;;25746:40;;25696:6;;;25713:17;25696:6;;25746:40;;25677:16;;25746:40;25666:128;25603:191;:::o;34558:139::-;-1:-1:-1;;;;;34625:15:0;;;;;;:9;:15;;;;;;:23;;-1:-1:-1;;34625:23:0;;;;;;;;;;34666;;34625;;:15;34666:23;;;34558:139;;:::o;22633:443::-;-1:-1:-1;;;;;22746:19:0;;22742:91;;22789:32;;-1:-1:-1;;;22789:32:0;;22818:1;22789:32;;;2630:51:1;2603:18;;22789:32:0;2484:203:1;22742:91:0;-1:-1:-1;;;;;22847:21:0;;22843:92;;22892:31;;-1:-1:-1;;;22892:31:0;;22920:1;22892:31;;;2630:51:1;2603:18;;22892:31:0;2484:203:1;22843:92:0;-1:-1:-1;;;;;22945:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;22991:78;;;;23042:7;-1:-1:-1;;;;;23026:31:0;23035:5;-1:-1:-1;;;;;23026:31:0;;23051:5;23026:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;23026:31:0;;;;;;;;22633:443;;;;:::o;35538:4234::-;35664:6;35674:1;35664:11;35660:91;;35692:26;35706:4;35712:2;35716:1;35692:13;:26::i;35660:91::-;35767:26;;;;35763:2331;;;24369:6;;-1:-1:-1;;;;;35832:15:0;;;24369:6;;35832:15;;;;:49;;-1:-1:-1;24369:6:0;;-1:-1:-1;;;;;35868:13:0;;;24369:6;;35868:13;;35832:49;:86;;;;-1:-1:-1;;;;;;35902:16:0;;;;35832:86;:128;;;;-1:-1:-1;;;;;;35939:21:0;;35953:6;35939:21;;35832:128;:164;;;;-1:-1:-1;35982:14:0;;-1:-1:-1;;;35982:14:0;;;;35981:15;35832:164;35810:2273;;;36036:16;;-1:-1:-1;;;36036:16:0;;;;36031:216;;-1:-1:-1;;;;;36111:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;36135:18:0;;;;;;:14;:18;;;;;;;;36111:42;36077:150;;;;-1:-1:-1;;;36077:150:0;;9523:2:1;36077:150:0;;;9505:21:1;9562:2;9542:18;;;9535:30;-1:-1:-1;;;9581:18:1;;;9574:52;9643:18;;36077:150:0;9321:346:1;36077:150:0;36403:18;;;;;;;36399:607;;;24369:6;;-1:-1:-1;;;;;36476:13:0;;;24369:6;;36476:13;;;;:68;;;36532:11;-1:-1:-1;;;;;36518:26:0;:2;-1:-1:-1;;;;;36518:26:0;;;36476:68;:121;;;;;36587:9;-1:-1:-1;;;;;36573:24:0;:2;-1:-1:-1;;;;;36573:24:0;;;36476:121;36446:541;;;36704:9;36686:28;;;;:17;:28;;;;;;36750:12;-1:-1:-1;36648:245:0;;;;-1:-1:-1;;;36648:245:0;;9874:2:1;36648:245:0;;;9856:21:1;9913:2;9893:18;;;9886:30;9952:34;9932:18;;;9925:62;10023:34;10003:18;;;9996:62;-1:-1:-1;;;10074:19:1;;;10067:38;10122:19;;36648:245:0;9672:475:1;36648:245:0;36938:9;36920:28;;;;:17;:28;;;;;36951:12;36920:43;;36446:541;-1:-1:-1;;;;;37058:15:0;;;;;;:9;:15;;;;;;;;:42;;;;-1:-1:-1;;;;;;37078:22:0;;;;;;:18;:22;;;;;;;;37077:23;37058:42;37054:1014;;;37169:20;;37159:6;:30;;37125:169;;;;-1:-1:-1;;;37125:169:0;;10354:2:1;37125:169:0;;;10336:21:1;10393:2;10373:18;;;10366:30;10432:34;10412:18;;;10405:62;-1:-1:-1;;;10483:18:1;;;10476:51;10544:19;;37125:169:0;10152:417:1;37125:169:0;37377:19;;-1:-1:-1;;;;;14142:18:0;;14115:7;14142:18;;;;;;;;;;;37351:22;;:6;:22;:::i;:::-;:45;;37317:150;;;;-1:-1:-1;;;37317:150:0;;10776:2:1;37317:150:0;;;10758:21:1;10815:2;10795:18;;;10788:30;-1:-1:-1;;;10834:18:1;;;10827:49;10893:18;;37317:150:0;10574:343:1;37317:150:0;37054:1014;;;-1:-1:-1;;;;;37565:13:0;;;;;;:9;:13;;;;;;;;:42;;;;-1:-1:-1;;;;;;37583:24:0;;;;;;:18;:24;;;;;;;;37582:25;37565:42;37539:529;;;37694:20;;37684:6;:30;;37650:170;;;;-1:-1:-1;;;37650:170:0;;11124:2:1;37650:170:0;;;11106:21:1;11163:2;11143:18;;;11136:30;11202:34;11182:18;;;11175:62;-1:-1:-1;;;11253:18:1;;;11246:52;11315:19;;37650:170:0;10922:418:1;37539:529:0;-1:-1:-1;;;;;37851:22:0;;;;;;:18;:22;;;;;;;;37846:222;;37958:19;;-1:-1:-1;;;;;14142:18:0;;14115:7;14142:18;;;;;;;;;;;37932:22;;:6;:22;:::i;:::-;:45;;37898:150;;;;-1:-1:-1;;;37898:150:0;;10776:2:1;37898:150:0;;;10758:21:1;10815:2;10795:18;;;10788:30;-1:-1:-1;;;10834:18:1;;;10827:49;10893:18;;37898:150:0;10574:343:1;37898:150:0;38155:4;38106:28;14142:18;;;;;;;;;;;38213:19;;38189:43;;;;;;;38263:42;;-1:-1:-1;38287:18:0;;-1:-1:-1;;;38287:18:0;;;;38263:42;:74;;;;-1:-1:-1;38323:14:0;;-1:-1:-1;;;38323:14:0;;;;38322:15;38263:74;:107;;;;-1:-1:-1;;;;;;38355:15:0;;;;;;:9;:15;;;;;;;;38354:16;38263:107;:145;;;;-1:-1:-1;;;;;;38388:20:0;;;;;;:14;:20;;;;;;;;38387:21;38263:145;:181;;;;-1:-1:-1;;;;;;38426:18:0;;;;;;:14;:18;;;;;;;;38425:19;38263:181;38245:332;;;38471:14;:21;;-1:-1:-1;;;;38471:21:0;-1:-1:-1;;;38471:21:0;;;38509:17;:15;:17::i;:::-;38543:14;:22;;-1:-1:-1;;;;38543:22:0;;;38245:332;38605:14;;-1:-1:-1;;;;;38721:20:0;;38589:12;38721:20;;;:14;:20;;;;;;38605:14;-1:-1:-1;;;38605:14:0;;;;;38604:15;;38721:20;;:42;;-1:-1:-1;;;;;;38745:18:0;;;;;;:14;:18;;;;;;;;38721:42;38717:90;;;-1:-1:-1;38790:5:0;38717:90;38819:12;38924:7;38920:801;;;-1:-1:-1;;;;;38976:13:0;;;;;;:9;:13;;;;;;;;:37;;;;;39012:1;38993:16;;:20;38976:37;38972:602;;;39041:37;39074:3;39041:28;39052:16;;39041:6;:10;;:28;;;;:::i;:::-;:32;;:37::i;:::-;39034:44;;39142:16;;39127:11;;39120:4;:18;;;;:::i;:::-;39119:39;;;;:::i;:::-;39097:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;39222:16:0;;39207:11;;39200:18;;:4;:18;:::i;:::-;39199:39;;;;:::i;:::-;39177:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;38972:602:0;;-1:-1:-1;38972:602:0;;-1:-1:-1;;;;;39300:15:0;;;;;;:9;:15;;;;;;;;:38;;;;;39337:1;39319:15;;:19;39300:38;39296:278;;;39366:36;39398:3;39366:27;39377:15;;39366:6;:10;;:27;;;;:::i;:36::-;39359:43;;39465:15;;39451:10;;39444:4;:17;;;;:::i;:::-;39443:37;;;;:::i;:::-;39421:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39543:15:0;;39529:10;;39522:17;;:4;:17;:::i;:::-;39521:37;;;;:::i;:::-;39499:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39296:278:0;39594:8;;39590:89;;39623:40;39637:4;39651;39658;39623:13;:40::i;:::-;39695:14;39705:4;39695:14;;:::i;:::-;;;38920:801;39733:31;39747:4;39753:2;39757:6;39733:13;:31::i;:::-;35649:4123;;;;35538:4234;;;:::o;18944:1135::-;-1:-1:-1;;;;;19034:18:0;;19030:552;;19188:5;19172:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19030:552:0;;-1:-1:-1;19030:552:0;;-1:-1:-1;;;;;19248:15:0;;19226:19;19248:15;;;;;;;;;;;19282:19;;;19278:117;;;19329:50;;-1:-1:-1;;;19329:50:0;;-1:-1:-1;;;;;7959:32:1;;19329:50:0;;;7941:51:1;8008:18;;;8001:34;;;8051:18;;;8044:34;;;7914:18;;19329:50:0;7739:345:1;19278:117:0;-1:-1:-1;;;;;19518:15:0;;:9;:15;;;;;;;;;;19536:19;;;;19518:37;;19030:552;-1:-1:-1;;;;;19598:16:0;;19594:435;;19764:12;:21;;;;;;;19594:435;;;-1:-1:-1;;;;;19980:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19594:435;20061:2;-1:-1:-1;;;;;20046:25:0;20055:4;-1:-1:-1;;;;;20046:25:0;;20065:5;20046:25;;;;1361::1;;1349:2;1334:18;;1215:177;20046:25:0;;;;;;;;18944:1135;;;:::o;40383:983::-;40473:4;40429:23;14142:18;;;;;;;;;;;40429:50;;40490:25;40539:18;;40518;;:39;;;;:::i;:::-;40490:67;-1:-1:-1;40568:12:0;40597:20;;;:46;;-1:-1:-1;40621:22:0;;40597:46;40593:85;;;40660:7;;;40383:983::o;40593:85::-;40712:16;;40694:15;:34;40690:101;;;40763:16;;40745:34;;40690:101;40831:21;40865:51;40900:15;40865:34;:51::i;:::-;40929:18;40950:44;:21;40976:17;40950:25;:44::i;:::-;40929:65;;41007:21;41031:57;41070:17;41031:34;41046:18;;41031:10;:14;;:34;;;;:::i;:57::-;41122:1;41101:18;:22;;;41134:18;:22;;;41191:18;;41183:58;;41007:81;;-1:-1:-1;;;;;;41191:18:0;;41007:81;;41183:58;41122:1;41183:58;41007:81;41191:18;41183:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41276:18:0;;41268:90;;41169:72;;-1:-1:-1;;;;;;41276:18:0;;41322:21;;41268:90;;;;41322:21;41276:18;41268:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;40383:983:0:o;3342:98::-;3400:7;3427:5;3431:1;3427;:5;:::i;:::-;3420:12;3342:98;-1:-1:-1;;;3342:98:0:o;3741:::-;3799:7;3826:5;3830:1;3826;:5;:::i;39780:595::-;39948:16;;;39962:1;39948:16;;;;;;;;39924:21;;39948:16;;;;;;;;;;-1:-1:-1;39948:16:0;39924:40;;39993:4;39975;39980:1;39975:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39975:23:0;;;-1:-1:-1;;;;;39975:23:0;;;;;40019:11;-1:-1:-1;;;;;40019:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40009:4;40014:1;40009:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;40009:28:0;;;-1:-1:-1;;;;;40009:28:0;;;;;40050:58;40067:4;40082:11;40096;40050:8;:58::i;:::-;40147:220;;-1:-1:-1;;;40147:220:0;;-1:-1:-1;;;;;40147:11:0;:62;;;;:220;;40224:11;;40250:1;;40294:4;;40321;;40341:15;;40147:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39853:522;39780:595;:::o;2985:98::-;3043:7;3070:5;3074:1;3070;:5;:::i;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:247::-;1641:6;1694:2;1682:9;1673:7;1669:23;1665:32;1662:52;;;1710:1;1707;1700:12;1662:52;1749:9;1736:23;1768:31;1793:5;1768:31;:::i;1834:456::-;1911:6;1919;1927;1980:2;1968:9;1959:7;1955:23;1951:32;1948:52;;;1996:1;1993;1986:12;1948:52;2035:9;2022:23;2054:31;2079:5;2054:31;:::i;:::-;2104:5;-1:-1:-1;2161:2:1;2146:18;;2133:32;2174:33;2133:32;2174:33;:::i;:::-;1834:456;;2226:7;;-1:-1:-1;;;2280:2:1;2265:18;;;;2252:32;;1834:456::o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:160::-;3010:20;;3066:13;;3059:21;3049:32;;3039:60;;3095:1;3092;3085:12;3110:315;3175:6;3183;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3291:9;3278:23;3310:31;3335:5;3310:31;:::i;:::-;3360:5;-1:-1:-1;3384:35:1;3415:2;3400:18;;3384:35;:::i;:::-;3374:45;;3110:315;;;;;:::o;3659:388::-;3727:6;3735;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3843:9;3830:23;3862:31;3887:5;3862:31;:::i;:::-;3912:5;-1:-1:-1;3969:2:1;3954:18;;3941:32;3982:33;3941:32;3982:33;:::i;:::-;4034:7;4024:17;;;3659:388;;;;;:::o;4052:180::-;4108:6;4161:2;4149:9;4140:7;4136:23;4132:32;4129:52;;;4177:1;4174;4167:12;4129:52;4200:26;4216:9;4200:26;:::i;4237:380::-;4316:1;4312:12;;;;4359;;;4380:61;;4434:4;4426:6;4422:17;4412:27;;4380:61;4487:2;4479:6;4476:14;4456:18;4453:38;4450:161;;4533:10;4528:3;4524:20;4521:1;4514:31;4568:4;4565:1;4558:15;4596:4;4593:1;4586:15;4450:161;;4237:380;;;:::o;4622:356::-;4824:2;4806:21;;;4843:18;;;4836:30;4902:34;4897:2;4882:18;;4875:62;4969:2;4954:18;;4622:356::o;4983:127::-;5044:10;5039:3;5035:20;5032:1;5025:31;5075:4;5072:1;5065:15;5099:4;5096:1;5089:15;5115:217;5155:1;5181;5171:132;;5225:10;5220:3;5216:20;5213:1;5206:31;5260:4;5257:1;5250:15;5288:4;5285:1;5278:15;5171:132;-1:-1:-1;5317:9:1;;5115:217::o;5759:168::-;5832:9;;;5863;;5880:15;;;5874:22;;5860:37;5850:71;;5901:18;;:::i;7193:125::-;7258:9;;;7279:10;;;7276:36;;;7292:18;;:::i;11345:128::-;11412:9;;;11433:11;;;11430:37;;;11447:18;;:::i;11820:127::-;11881:10;11876:3;11872:20;11869:1;11862:31;11912:4;11909:1;11902:15;11936:4;11933:1;11926:15;11952:251;12022:6;12075:2;12063:9;12054:7;12050:23;12046:32;12043:52;;;12091:1;12088;12081:12;12043:52;12123:9;12117:16;12142:31;12167:5;12142:31;:::i;12208:980::-;12470:4;12518:3;12507:9;12503:19;12549:6;12538:9;12531:25;12575:2;12613:6;12608:2;12597:9;12593:18;12586:34;12656:3;12651:2;12640:9;12636:18;12629:31;12680:6;12715;12709:13;12746:6;12738;12731:22;12784:3;12773:9;12769:19;12762:26;;12823:2;12815:6;12811:15;12797:29;;12844:1;12854:195;12868:6;12865:1;12862:13;12854:195;;;12933:13;;-1:-1:-1;;;;;12929:39:1;12917:52;;13024:15;;;;12989:12;;;;12965:1;12883:9;12854:195;;;-1:-1:-1;;;;;;;13105:32:1;;;;13100:2;13085:18;;13078:60;-1:-1:-1;;;13169:3:1;13154:19;13147:35;13066:3;12208:980;-1:-1:-1;;;12208:980:1:o

Swarm Source

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