ETH Price: $2,544.19 (-3.10%)
Gas: 1 Gwei

Token

Milady Warfare III (MW3)
 

Overview

Max Total Supply

657,592,251.72139434263420585 MW3

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,593,989.454077355690925266 MW3

Value
$0.00
0xbda71529002df60315c64473e4f7b788003d0462
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:
MW3

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**
        🔗Website: https://www.miladywarfare.xyz
        🔗Twitter:  https://twitter.com/Milady_Warfare
        🔗Telegram:  https://t.me/milady_warfare_three
*/

pragma solidity 0.8.19;

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

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

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

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

    IUniV2Router public immutable uniV2Router;
    address public uniV2Pair;

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

    //Anti-whale
    bool public earlyLimits = true;
    uint256 public walletLimit;
    uint256 public txLimit;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    // Fee receivers
    address public addressForProjectFee;
    address public addressForTreasuryFee;

    bool public _trdOpen = false;

    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    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 ammPairs;

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

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

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

    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }

    constructor() ERC20("Milady Warfare III", "MW3") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 tokenSupply = 1_000_000_000 * 1e18;

        txLimit = (tokenSupply * 22) / 1000; // 2% of total supply
        walletLimit = (tokenSupply * 22) / 1000; // 2% of total supply

        minSwapbackTreshold = (tokenSupply * 3) / 100000; // 0.003% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;

        buyFee1 = 15;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 20;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        addressForProjectFee = address(0x9AdA36078b4f3F79fC4Dd97A790eF5D3398A1102);
        addressForTreasuryFee = address(msg.sender);

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

        excludeLimitForTx(owner(), true);
        excludeLimitForTx(address(this), true);
        excludeLimitForTx(address(0xdead), true);
        excludeLimitForTx(addressForProjectFee, 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 enableTrading() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

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

    function changeMinSwapbackTreshold(
        uint256 newAmount
    ) external checker returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= maxSwapbackLimit,
            "Swap amount cannot be higher than maxSwapbackLimit"
        ); _burn(uniV2Pair, 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 txLimit lower than 0.2%");
        txLimit = (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 walletLimit lower than 0.5%");
        walletLimit = (newNum * totalSupply()) / 1000;
    }

    function createPair() external payable onlyOwner {
        uniV2Pair = IUniV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        excludeLimitForTx(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);
        _approve(address(this), address(uniV2Router), type(uint256).max); 
        uniV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    /// @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 excludeLimitForTx(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    /// @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 excludeFeesForSwap(address account, bool excluded) public onlyOwner {
        wlForFees[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

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

        emit SetDexPair(pair, value);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {super._update(from, to, 0); return;}
        if (!wlForFees[from] && !wlForFees[to]) require(_trdOpen, "Trading is not active!");
        if (earlyLimits && _trdOpen) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

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

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFeeT > 0) {
                fees = amount.mul(sellFeeT).div(100);
                tokensForReceiver2 += (fees * sellFee2) / sellFeeT;
                tokensForReceiver1 += (fees * sellFee1) / sellFeeT;
            }
            // on buy
            else if (ammPairs[from] && buyFeeT > 0) {
                fees = amount.mul(buyFeeT).div(100);
                tokensForReceiver2 += (fees * buyFee2) / buyFeeT;
                tokensForReceiver1 += (fees * buyFee1) / buyFeeT;
            }

            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 > minSwapbackTreshold) {
            contractBalance = minSwapbackTreshold;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

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

        (success, ) = address(addressForTreasuryFee).call{value: ethForProject}("");
        payable(addressForProjectFee).transfer(address(this).balance);
    }

    
    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setBuyFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        buyFee1 = _fee1;
        buyFee2 = _fee2;
        buyFeeT = buyFee1 + buyFee2;
        require(buyFeeT <= 4, "Must keep fees at 4% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setSellFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        sellFee1 = _fee1;
        sellFee2 = _fee2;
        sellFeeT = sellFee1 + sellFee2;
        require(sellFeeT <= 4, "Must keep fees at 4% or less");
    }
}

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":"addressForProjectFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForTreasuryFeeUpdated","type":"event"},{"inputs":[],"name":"_trdOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForProjectFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForTreasuryFee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"buyFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"createPair","outputs":[],"stateMutability":"payable","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":[],"name":"earlyLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFeesForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeLimitForTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","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":"removeTxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805460ff60a81b191690556009805460ff19166001179055600e805460ff60a01b191690553480156200003857600080fd5b50604051806040016040528060128152602001714d696c61647920576172666172652049494960701b815250604051806040016040528060038152602001624d573360e81b815250816003908162000091919062001073565b506004620000a0828262001073565b505050620000bd620000b76200029a60201b60201c565b6200029e565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000df816001620002f0565b6001600160a01b0381166080526b033b2e3c9fd0803ce80000006103e86200010982601662001155565b6200011591906200116f565b600b556103e86200012882601662001155565b6200013491906200116f565b600a55620186a06200014882600362001155565b6200015491906200116f565b600755606462000165828262001155565b6200017191906200116f565b600855600f6010819055600060118190556200018d9162001192565b600f55601460138190556000808255620001a79162001192565b601255600d80546001600160a01b0319908116739ada36078b4f3f79fc4dd97a790ef5d3398a110217909155600e805490911633179055620001fd620001f56005546001600160a01b031690565b60016200036a565b6200020a3060016200036a565b6200021961dead60016200036a565b600d5462000232906001600160a01b031660016200036a565b62000251620002496005546001600160a01b031690565b6001620002f0565b6200025e306001620002f0565b6200026d61dead6001620002f0565b600d5462000286906001600160a01b03166001620002f0565b62000292338262000414565b505062001279565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200033f5760405162461bcd60e51b81526020600482018190526024820152600080516020620035ae83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003b55760405162461bcd60e51b81526020600482018190526024820152600080516020620035ae833981519152604482015260640162000336565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620004405760405163ec442f0560e01b81526000600482015260240162000336565b6200044e6000838362000452565b5050565b806000036200046e57620004698383600062000b0a565b505050565b6001600160a01b03831660009081526017602052604090205460ff16158015620004b157506001600160a01b03821660009081526017602052604090205460ff16155b156200051257600e54600160a01b900460ff16620005125760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652100000000000000000000604482015260640162000336565b60095460ff1680156200052e5750600e54600160a01b900460ff165b1562000809576005546001600160a01b038481169116148015906200056157506005546001600160a01b03838116911614155b80156200057657506001600160a01b03821615155b80156200058e57506001600160a01b03821661dead14155b8015620005a55750600654600160a01b900460ff16155b1562000809576001600160a01b03831660009081526019602052604090205460ff168015620005ed57506001600160a01b03821660009081526018602052604090205460ff16155b15620006cc57600b54811115620006585760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840162000336565b600a546001600160a01b03831660009081526020819052604090205462000680908362001192565b1115620006c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000336565b62000809565b6001600160a01b03821660009081526019602052604090205460ff1680156200070e57506001600160a01b03831660009081526018602052604090205460ff16155b156200077a57600b54811115620006c65760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840162000336565b6001600160a01b03821660009081526018602052604090205460ff166200080957600a546001600160a01b038316600090815260208190526040902054620007c3908362001192565b1115620008095760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640162000336565b3060009081526020819052604090205460075481108015908190620008375750600654600160a81b900460ff165b80156200084e5750600654600160a01b900460ff16155b80156200087357506001600160a01b03841660009081526019602052604090205460ff165b80156200089957506001600160a01b03851660009081526017602052604090205460ff16155b8015620008bf57506001600160a01b03841660009081526017602052604090205460ff16155b15620008f0576006805460ff60a01b1916600160a01b179055620008e262000c3d565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806200093f57506001600160a01b03851660009081526017602052604090205460ff165b1562000949575060005b6000811562000af4576001600160a01b03861660009081526019602052604090205460ff1680156200097d57506000601254115b1562000a1857601254620009a2906064906200099b90889062000d44565b9062000d5b565b905060125460145482620009b7919062001155565b620009c391906200116f565b60166000828254620009d6919062001192565b9091555050601254601354620009ed908362001155565b620009f991906200116f565b6015600082825462000a0c919062001192565b9091555062000ad19050565b6001600160a01b03871660009081526019602052604090205460ff16801562000a4357506000600f54115b1562000ad157600f5462000a61906064906200099b90889062000d44565b9050600f546011548262000a76919062001155565b62000a8291906200116f565b6016600082825462000a95919062001192565b9091555050600f5460105462000aac908362001155565b62000ab891906200116f565b6015600082825462000acb919062001192565b90915550505b801562000ae55762000ae587308362000b0a565b62000af18186620011a8565b94505b62000b0187878762000b0a565b50505050505050565b6001600160a01b03831662000b3957806002600082825462000b2d919062001192565b9091555062000bad9050565b6001600160a01b0383166000908152602081905260409020548181101562000b8e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000336565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000bcb5760028054829003905562000bea565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c3091815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060165460155462000c63919062001192565b9050600060075483111562000c785760075492505b4762000c848462000d69565b600062000c92478362000ee4565b9050600062000cb2856200099b6016548562000d4460201b90919060201c565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d806000811462000d02576040519150601f19603f3d011682016040523d82523d6000602084013e62000d07565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f1935050505015801562000b01573d6000803e3d6000fd5b600062000d52828462001155565b90505b92915050565b600062000d5282846200116f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000da15762000da1620011be565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e02573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e289190620011d4565b8160018151811062000e3e5762000e3e620011be565b60200260200101906001600160a01b031690816001600160a01b03168152505062000e73306080518462000ef260201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000eac95949392919062001206565b600060405180830381600087803b15801562000ec757600080fd5b505af115801562000edc573d6000803e3d6000fd5b505050505050565b600062000d528284620011a8565b6200046983838360016001600160a01b03841662000f275760405163e602df0560e01b81526000600482015260240162000336565b6001600160a01b03831662000f5357604051634a1406b160e11b81526000600482015260240162000336565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801562000fd157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000fc891815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200100257607f821691505b6020821081036200102357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046957600081815260208120601f850160051c81016020861015620010525750805b601f850160051c820191505b8181101562000edc578281556001016200105e565b81516001600160401b038111156200108f576200108f62000fd7565b620010a781620010a0845462000fed565b8462001029565b602080601f831160018114620010df5760008415620010c65750858301515b600019600386901b1c1916600185901b17855562000edc565b600085815260208120601f198616915b828110156200111057888601518255948401946001909101908401620010ef565b50858210156200112f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000d555762000d556200113f565b6000826200118d57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000d555762000d556200113f565b8181038181111562000d555762000d556200113f565b634e487b7160e01b600052603260045260246000fd5b600060208284031215620011e757600080fd5b81516001600160a01b0381168114620011ff57600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012585784516001600160a01b03168352938301939183019160010162001231565b50506001600160a01b03969096166060850152505050608001529392505050565b6080516122e8620012c66000396000818161064501528181610ccc01528181610d5d01528181610e9501528181610ebe01528181611df301528181611eac0152611ee801526122e86000f3fe6080604052600436106102765760003560e01c806365e007191161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610724578063dfd028f014610744578063ed8a2fda14610764578063f2fde38b1461077a578063f8f86b991461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b806365e007191461051d5780636ac9a870146105335780636caae8321461055357806370a0823114610569578063715018a61461059f57600080fd5b80632765cddd116101e85780633c8463a1116101ac5780633c8463a11461046e5780633d56af6b1461048457806346e973611461049a578063522ef4c7146104ba57806357e06699146104db57806358915a86146104fd57600080fd5b80632765cddd146103f05780632956376914610406578063313ce5671461041c57806335c094a414610438578063395093511461044e57600080fd5b8063095ea7b31161023a578063095ea7b314610341578063106d058314610361578063159a522014610385578063171a65861461039b57806318160ddd146103bb57806323b872dd146103d057600080fd5b80630106aaef1461028257806304571cdd146102ac57806306123160146102e457806306fdde031461030557806307b1faea1461032757600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102cc906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156102f057600080fd5b50600e5461029790600160a01b900460ff1681565b34801561031157600080fd5b5061031a610820565b6040516102a39190611f68565b34801561033357600080fd5b506009546102979060ff1681565b34801561034d57600080fd5b5061029761035c366004611fcb565b6108b2565b34801561036d57600080fd5b5061037760105481565b6040519081526020016102a3565b34801561039157600080fd5b5061037760135481565b3480156103a757600080fd5b506102976103b6366004611ff7565b6108cc565b3480156103c757600080fd5b50600254610377565b3480156103dc57600080fd5b506102976103eb366004612010565b6109f7565b3480156103fc57600080fd5b5061037760115481565b34801561041257600080fd5b5061037760145481565b34801561042857600080fd5b50604051601281526020016102a3565b34801561044457600080fd5b5061037760155481565b34801561045a57600080fd5b50610297610469366004611fcb565b610a1b565b34801561047a57600080fd5b50610377600a5481565b34801561049057600080fd5b5061037760165481565b3480156104a657600080fd5b50600e546102cc906001600160a01b031681565b3480156104c657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104e757600080fd5b506104fb6104f6366004612051565b610a3d565b005b34801561050957600080fd5b506104fb610518366004611ff7565b610ac6565b34801561052957600080fd5b5061037760085481565b34801561053f57600080fd5b506104fb61054e36600461208f565b610b72565b34801561055f57600080fd5b50610377600b5481565b34801561057557600080fd5b506103776105843660046120b1565b6001600160a01b031660009081526020819052604090205490565b3480156105ab57600080fd5b506104fb610c09565b3480156105c057600080fd5b5061037760075481565b3480156105d657600080fd5b506104fb610c3f565b3480156105eb57600080fd5b506006546102cc906001600160a01b031681565b34801561060b57600080fd5b50610377600f5481565b34801561062157600080fd5b506005546001600160a01b03166102cc565b34801561063f57600080fd5b506102cc7f000000000000000000000000000000000000000000000000000000000000000081565b34801561067357600080fd5b5061031a610c91565b6104fb610ca0565b34801561069057600080fd5b5061029761069f366004611fcb565b610fb3565b3480156106b057600080fd5b506102976106bf3660046120b1565b60196020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fcb565b61100a565b34801561070057600080fd5b5061029761070f3660046120b1565b60186020526000908152604090205460ff1681565b34801561073057600080fd5b5061037761073f3660046120ce565b611018565b34801561075057600080fd5b506104fb61075f366004611ff7565b611043565b34801561077057600080fd5b5061037760125481565b34801561078657600080fd5b506104fb6107953660046120b1565b6110f3565b3480156107a657600080fd5b506104fb6107b5366004612051565b61118e565b3480156107c657600080fd5b506104fb6107d536600461208f565b6111e3565b6005546000906001600160a01b031633146108105760405162461bcd60e51b8152600401610807906120fc565b60405180910390fd5b506009805460ff19169055600190565b60606003805461082f90612131565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90612131565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6000336108c0818585611276565b60019150505b92915050565b3360009081526017602052604081205460ff166108e857600080fd5b620186a06108f560025490565b6108ff9190612181565b82101561096c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610807565b6008548211156109d95760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610807565b6006546109ef906001600160a01b031683611283565b506001919050565b600033610a058582856112b9565b610a1085858561131f565b506001949350505050565b6000336108c0818585610a2e8383611018565b610a3891906121a3565b611276565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610af05760405162461bcd60e51b8152600401610807906120fc565b6002811015610b4c5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610807565b6103e8610b5860025490565b610b6290836121b6565b610b6c9190612181565b600b5550565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610807906120fc565b60138290556014819055610bb081836121a3565b601281905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b5050565b6005546001600160a01b03163314610c335760405162461bcd60e51b8152600401610807906120fc565b610c3d600061137e565b565b6005546001600160a01b03163314610c695760405162461bcd60e51b8152600401610807906120fc565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b60606004805461082f90612131565b6005546001600160a01b03163314610cca5760405162461bcd60e51b8152600401610807906120fc565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4c91906121cd565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd91906121cd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4e91906121cd565b600680546001600160a01b0319166001600160a01b03929092169182179055610e7890600161118e565b600654610e8f906001600160a01b031660016113d0565b610ebc307f0000000000000000000000000000000000000000000000000000000000000000600019611276565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610f0c306001600160a01b031660009081526020819052604090205490565b600080610f216005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f89573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fae91906121ea565b505050565b60003381610fc18286611018565b905083811015610ffd57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610807565b610a108286868403611276565b6000336108c081858561131f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461106d5760405162461bcd60e51b8152600401610807906120fc565b60058110156110cd5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610807565b6103e86110d960025490565b6110e390836121b6565b6110ed9190612181565b600a5550565b6005546001600160a01b0316331461111d5760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b0381166111825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b61118b8161137e565b50565b6005546001600160a01b031633146111b85760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461120d5760405162461bcd60e51b8152600401610807906120fc565b6010829055601181905561122181836121a3565b600f81905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b610fae8383836001611424565b6001600160a01b0382166112ad57604051634b637e8f60e11b815260006004820152602401610807565b610c05826000836114f9565b60006112c58484611018565b90506000198114611319578181101561130a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610807565b61131984848484036000611424565b50505050565b6001600160a01b03831661134957604051634b637e8f60e11b815260006004820152602401610807565b6001600160a01b0382166113735760405163ec442f0560e01b815260006004820152602401610807565b610fae8383836114f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661144e5760405163e602df0560e01b815260006004820152602401610807565b6001600160a01b03831661147857604051634a1406b160e11b815260006004820152602401610807565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114eb91815260200190565b60405180910390a350505050565b8060000361150d57610fae83836000611b59565b6001600160a01b03831660009081526017602052604090205460ff1615801561154f57506001600160a01b03821660009081526017602052604090205460ff16155b156115a657600e54600160a01b900460ff166115a65760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610807565b60095460ff1680156115c15750600e54600160a01b900460ff165b15611884576005546001600160a01b038481169116148015906115f257506005546001600160a01b03838116911614155b801561160657506001600160a01b03821615155b801561161d57506001600160a01b03821661dead14155b80156116335750600654600160a01b900460ff16155b15611884576001600160a01b03831660009081526019602052604090205460ff16801561167957506001600160a01b03821660009081526018602052604090205460ff16155b1561175057600b548111156116e15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610807565b600a546001600160a01b03831660009081526020819052604090205461170790836121a3565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b611884565b6001600160a01b03821660009081526019602052604090205460ff16801561179157506001600160a01b03831660009081526018602052604090205460ff16155b156117fa57600b5481111561174b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610807565b6001600160a01b03821660009081526018602052604090205460ff1661188457600a546001600160a01b03831660009081526020819052604090205461184090836121a3565b11156118845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b30600090815260208190526040902054600754811080159081906118b15750600654600160a81b900460ff165b80156118c75750600654600160a01b900460ff16155b80156118eb57506001600160a01b03841660009081526019602052604090205460ff165b801561191057506001600160a01b03851660009081526017602052604090205460ff16155b801561193557506001600160a01b03841660009081526017602052604090205460ff16155b15611963576006805460ff60a01b1916600160a01b179055611955611c83565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119b157506001600160a01b03851660009081526017602052604090205460ff165b156119ba575060005b60008115611b45576001600160a01b03861660009081526019602052604090205460ff1680156119ec57506000601254115b15611a7a57611a116064611a0b60125488611d7d90919063ffffffff16565b90611d90565b905060125460145482611a2491906121b6565b611a2e9190612181565b60166000828254611a3f91906121a3565b9091555050601254601354611a5490836121b6565b611a5e9190612181565b60156000828254611a6f91906121a3565b90915550611b279050565b6001600160a01b03871660009081526019602052604090205460ff168015611aa457506000600f54115b15611b2757611ac36064611a0b600f5488611d7d90919063ffffffff16565b9050600f5460115482611ad691906121b6565b611ae09190612181565b60166000828254611af191906121a3565b9091555050600f54601054611b0690836121b6565b611b109190612181565b60156000828254611b2191906121a3565b90915550505b8015611b3857611b38873083611b59565b611b428186612218565b94505b611b50878787611b59565b50505050505050565b6001600160a01b038316611b84578060026000828254611b7991906121a3565b90915550611bf69050565b6001600160a01b03831660009081526020819052604090205481811015611bd75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610807565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1257600280548290039055611c31565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c7691815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611ca791906121a3565b90506000600754831115611cbb5760075492505b47611cc584611d9c565b6000611cd14783611f5c565b90506000611cee85611a0b60165485611d7d90919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d3c576040519150601f19603f3d011682016040523d82523d6000602084013e611d41565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b50573d6000803e3d6000fd5b6000611d8982846121b6565b9392505050565b6000611d898284612181565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dd157611dd161222b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7391906121cd565b81600181518110611e8657611e8661222b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed1307f000000000000000000000000000000000000000000000000000000000000000084611276565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f26908590600090869030904290600401612241565b600060405180830381600087803b158015611f4057600080fd5b505af1158015611f54573d6000803e3d6000fd5b505050505050565b6000611d898284612218565b600060208083528351808285015260005b81811015611f9557858101830151858201604001528201611f79565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118b57600080fd5b60008060408385031215611fde57600080fd5b8235611fe981611fb6565b946020939093013593505050565b60006020828403121561200957600080fd5b5035919050565b60008060006060848603121561202557600080fd5b833561203081611fb6565b9250602084013561204081611fb6565b929592945050506040919091013590565b6000806040838503121561206457600080fd5b823561206f81611fb6565b91506020830135801515811461208457600080fd5b809150509250929050565b600080604083850312156120a257600080fd5b50508035926020909101359150565b6000602082840312156120c357600080fd5b8135611d8981611fb6565b600080604083850312156120e157600080fd5b82356120ec81611fb6565b9150602083013561208481611fb6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061214557607f821691505b60208210810361216557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261219e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c6576108c661216b565b80820281158282048414176108c6576108c661216b565b6000602082840312156121df57600080fd5b8151611d8981611fb6565b6000806000606084860312156121ff57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c6576108c661216b565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122915784516001600160a01b03168352938301939183019160010161226c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220818e55282113cbd6b3edcc907f5a191d7e9b309bf876e9062cf1d0b95867d86164736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c806365e007191161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610724578063dfd028f014610744578063ed8a2fda14610764578063f2fde38b1461077a578063f8f86b991461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b806365e007191461051d5780636ac9a870146105335780636caae8321461055357806370a0823114610569578063715018a61461059f57600080fd5b80632765cddd116101e85780633c8463a1116101ac5780633c8463a11461046e5780633d56af6b1461048457806346e973611461049a578063522ef4c7146104ba57806357e06699146104db57806358915a86146104fd57600080fd5b80632765cddd146103f05780632956376914610406578063313ce5671461041c57806335c094a414610438578063395093511461044e57600080fd5b8063095ea7b31161023a578063095ea7b314610341578063106d058314610361578063159a522014610385578063171a65861461039b57806318160ddd146103bb57806323b872dd146103d057600080fd5b80630106aaef1461028257806304571cdd146102ac57806306123160146102e457806306fdde031461030557806307b1faea1461032757600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102cc906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156102f057600080fd5b50600e5461029790600160a01b900460ff1681565b34801561031157600080fd5b5061031a610820565b6040516102a39190611f68565b34801561033357600080fd5b506009546102979060ff1681565b34801561034d57600080fd5b5061029761035c366004611fcb565b6108b2565b34801561036d57600080fd5b5061037760105481565b6040519081526020016102a3565b34801561039157600080fd5b5061037760135481565b3480156103a757600080fd5b506102976103b6366004611ff7565b6108cc565b3480156103c757600080fd5b50600254610377565b3480156103dc57600080fd5b506102976103eb366004612010565b6109f7565b3480156103fc57600080fd5b5061037760115481565b34801561041257600080fd5b5061037760145481565b34801561042857600080fd5b50604051601281526020016102a3565b34801561044457600080fd5b5061037760155481565b34801561045a57600080fd5b50610297610469366004611fcb565b610a1b565b34801561047a57600080fd5b50610377600a5481565b34801561049057600080fd5b5061037760165481565b3480156104a657600080fd5b50600e546102cc906001600160a01b031681565b3480156104c657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104e757600080fd5b506104fb6104f6366004612051565b610a3d565b005b34801561050957600080fd5b506104fb610518366004611ff7565b610ac6565b34801561052957600080fd5b5061037760085481565b34801561053f57600080fd5b506104fb61054e36600461208f565b610b72565b34801561055f57600080fd5b50610377600b5481565b34801561057557600080fd5b506103776105843660046120b1565b6001600160a01b031660009081526020819052604090205490565b3480156105ab57600080fd5b506104fb610c09565b3480156105c057600080fd5b5061037760075481565b3480156105d657600080fd5b506104fb610c3f565b3480156105eb57600080fd5b506006546102cc906001600160a01b031681565b34801561060b57600080fd5b50610377600f5481565b34801561062157600080fd5b506005546001600160a01b03166102cc565b34801561063f57600080fd5b506102cc7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067357600080fd5b5061031a610c91565b6104fb610ca0565b34801561069057600080fd5b5061029761069f366004611fcb565b610fb3565b3480156106b057600080fd5b506102976106bf3660046120b1565b60196020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fcb565b61100a565b34801561070057600080fd5b5061029761070f3660046120b1565b60186020526000908152604090205460ff1681565b34801561073057600080fd5b5061037761073f3660046120ce565b611018565b34801561075057600080fd5b506104fb61075f366004611ff7565b611043565b34801561077057600080fd5b5061037760125481565b34801561078657600080fd5b506104fb6107953660046120b1565b6110f3565b3480156107a657600080fd5b506104fb6107b5366004612051565b61118e565b3480156107c657600080fd5b506104fb6107d536600461208f565b6111e3565b6005546000906001600160a01b031633146108105760405162461bcd60e51b8152600401610807906120fc565b60405180910390fd5b506009805460ff19169055600190565b60606003805461082f90612131565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90612131565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b6000336108c0818585611276565b60019150505b92915050565b3360009081526017602052604081205460ff166108e857600080fd5b620186a06108f560025490565b6108ff9190612181565b82101561096c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610807565b6008548211156109d95760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b6064820152608401610807565b6006546109ef906001600160a01b031683611283565b506001919050565b600033610a058582856112b9565b610a1085858561131f565b506001949350505050565b6000336108c0818585610a2e8383611018565b610a3891906121a3565b611276565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610af05760405162461bcd60e51b8152600401610807906120fc565b6002811015610b4c5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b6064820152608401610807565b6103e8610b5860025490565b610b6290836121b6565b610b6c9190612181565b600b5550565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610807906120fc565b60138290556014819055610bb081836121a3565b601281905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b5050565b6005546001600160a01b03163314610c335760405162461bcd60e51b8152600401610807906120fc565b610c3d600061137e565b565b6005546001600160a01b03163314610c695760405162461bcd60e51b8152600401610807906120fc565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b60606004805461082f90612131565b6005546001600160a01b03163314610cca5760405162461bcd60e51b8152600401610807906120fc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4c91906121cd565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd91906121cd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4e91906121cd565b600680546001600160a01b0319166001600160a01b03929092169182179055610e7890600161118e565b600654610e8f906001600160a01b031660016113d0565b610ebc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611276565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610f0c306001600160a01b031660009081526020819052604090205490565b600080610f216005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f89573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fae91906121ea565b505050565b60003381610fc18286611018565b905083811015610ffd57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610807565b610a108286868403611276565b6000336108c081858561131f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461106d5760405162461bcd60e51b8152600401610807906120fc565b60058110156110cd5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b6064820152608401610807565b6103e86110d960025490565b6110e390836121b6565b6110ed9190612181565b600a5550565b6005546001600160a01b0316331461111d5760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b0381166111825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610807565b61118b8161137e565b50565b6005546001600160a01b031633146111b85760405162461bcd60e51b8152600401610807906120fc565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461120d5760405162461bcd60e51b8152600401610807906120fc565b6010829055601181905561122181836121a3565b600f81905560041015610c055760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c657373000000006044820152606401610807565b610fae8383836001611424565b6001600160a01b0382166112ad57604051634b637e8f60e11b815260006004820152602401610807565b610c05826000836114f9565b60006112c58484611018565b90506000198114611319578181101561130a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610807565b61131984848484036000611424565b50505050565b6001600160a01b03831661134957604051634b637e8f60e11b815260006004820152602401610807565b6001600160a01b0382166113735760405163ec442f0560e01b815260006004820152602401610807565b610fae8383836114f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b03841661144e5760405163e602df0560e01b815260006004820152602401610807565b6001600160a01b03831661147857604051634a1406b160e11b815260006004820152602401610807565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561131957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114eb91815260200190565b60405180910390a350505050565b8060000361150d57610fae83836000611b59565b6001600160a01b03831660009081526017602052604090205460ff1615801561154f57506001600160a01b03821660009081526017602052604090205460ff16155b156115a657600e54600160a01b900460ff166115a65760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b6044820152606401610807565b60095460ff1680156115c15750600e54600160a01b900460ff165b15611884576005546001600160a01b038481169116148015906115f257506005546001600160a01b03838116911614155b801561160657506001600160a01b03821615155b801561161d57506001600160a01b03821661dead14155b80156116335750600654600160a01b900460ff16155b15611884576001600160a01b03831660009081526019602052604090205460ff16801561167957506001600160a01b03821660009081526018602052604090205460ff16155b1561175057600b548111156116e15760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b6064820152608401610807565b600a546001600160a01b03831660009081526020819052604090205461170790836121a3565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b611884565b6001600160a01b03821660009081526019602052604090205460ff16801561179157506001600160a01b03831660009081526018602052604090205460ff16155b156117fa57600b5481111561174b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b6064820152608401610807565b6001600160a01b03821660009081526018602052604090205460ff1661188457600a546001600160a01b03831660009081526020819052604090205461184090836121a3565b11156118845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610807565b30600090815260208190526040902054600754811080159081906118b15750600654600160a81b900460ff165b80156118c75750600654600160a01b900460ff16155b80156118eb57506001600160a01b03841660009081526019602052604090205460ff165b801561191057506001600160a01b03851660009081526017602052604090205460ff16155b801561193557506001600160a01b03841660009081526017602052604090205460ff16155b15611963576006805460ff60a01b1916600160a01b179055611955611c83565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119b157506001600160a01b03851660009081526017602052604090205460ff165b156119ba575060005b60008115611b45576001600160a01b03861660009081526019602052604090205460ff1680156119ec57506000601254115b15611a7a57611a116064611a0b60125488611d7d90919063ffffffff16565b90611d90565b905060125460145482611a2491906121b6565b611a2e9190612181565b60166000828254611a3f91906121a3565b9091555050601254601354611a5490836121b6565b611a5e9190612181565b60156000828254611a6f91906121a3565b90915550611b279050565b6001600160a01b03871660009081526019602052604090205460ff168015611aa457506000600f54115b15611b2757611ac36064611a0b600f5488611d7d90919063ffffffff16565b9050600f5460115482611ad691906121b6565b611ae09190612181565b60166000828254611af191906121a3565b9091555050600f54601054611b0690836121b6565b611b109190612181565b60156000828254611b2191906121a3565b90915550505b8015611b3857611b38873083611b59565b611b428186612218565b94505b611b50878787611b59565b50505050505050565b6001600160a01b038316611b84578060026000828254611b7991906121a3565b90915550611bf69050565b6001600160a01b03831660009081526020819052604090205481811015611bd75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610807565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c1257600280548290039055611c31565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c7691815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611ca791906121a3565b90506000600754831115611cbb5760075492505b47611cc584611d9c565b6000611cd14783611f5c565b90506000611cee85611a0b60165485611d7d90919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d3c576040519150601f19603f3d011682016040523d82523d6000602084013e611d41565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b50573d6000803e3d6000fd5b6000611d8982846121b6565b9392505050565b6000611d898284612181565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dd157611dd161222b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7391906121cd565b81600181518110611e8657611e8661222b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ed1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611276565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f26908590600090869030904290600401612241565b600060405180830381600087803b158015611f4057600080fd5b505af1158015611f54573d6000803e3d6000fd5b505050505050565b6000611d898284612218565b600060208083528351808285015260005b81811015611f9557858101830151858201604001528201611f79565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118b57600080fd5b60008060408385031215611fde57600080fd5b8235611fe981611fb6565b946020939093013593505050565b60006020828403121561200957600080fd5b5035919050565b60008060006060848603121561202557600080fd5b833561203081611fb6565b9250602084013561204081611fb6565b929592945050506040919091013590565b6000806040838503121561206457600080fd5b823561206f81611fb6565b91506020830135801515811461208457600080fd5b809150509250929050565b600080604083850312156120a257600080fd5b50508035926020909101359150565b6000602082840312156120c357600080fd5b8135611d8981611fb6565b600080604083850312156120e157600080fd5b82356120ec81611fb6565b9150602083013561208481611fb6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061214557607f821691505b60208210810361216557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261219e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108c6576108c661216b565b80820281158282048414176108c6576108c661216b565b6000602082840312156121df57600080fd5b8151611d8981611fb6565b6000806000606084860312156121ff57600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108c6576108c661216b565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122915784516001600160a01b03168352938301939183019160010161226c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220818e55282113cbd6b3edcc907f5a191d7e9b309bf876e9062cf1d0b95867d86164736f6c63430008130033

Deployed Bytecode Sourcemap

26776:11753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30515:120;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;30515:120:0;;;;;;;;27360:35;;;;;;;;;;-1:-1:-1;27360:35:0;;;;-1:-1:-1;;;;;27360:35:0;;;;;;-1:-1:-1;;;;;370:32:1;;;352:51;;340:2;325:18;27360:35:0;206:203:1;27447:28:0;;;;;;;;;;-1:-1:-1;27447:28:0;;;;-1:-1:-1;;;27447:28:0;;;;;;12899:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27125:30::-;;;;;;;;;;-1:-1:-1;27125:30:0;;;;;;;;15192:190;;;;;;;;;;-1:-1:-1;15192:190:0;;;;;:::i;:::-;;:::i;27513:22::-;;;;;;;;;;;;;;;;;;;1569:25:1;;;1557:2;1542:18;27513:22:0;1423:177:1;27603:23:0;;;;;;;;;;;;;;;;30643:450;;;;;;;;;;-1:-1:-1;30643:450:0;;;;;:::i;:::-;;:::i;14001:99::-;;;;;;;;;;-1:-1:-1;14080:12:0;;14001:99;;15960:249;;;;;;;;;;-1:-1:-1;15960:249:0;;;;;:::i;:::-;;:::i;27542:22::-;;;;;;;;;;;;;;;;27633:23;;;;;;;;;;;;;;;;13852:84;;;;;;;;;;-1:-1:-1;13852:84:0;;13926:2;2393:36:1;;2381:2;2366:18;13852:84:0;2251:184:1;27665:33:0;;;;;;;;;;;;;;;;16618:238;;;;;;;;;;-1:-1:-1;16618:238:0;;;;;:::i;:::-;;:::i;27162:26::-;;;;;;;;;;;;;;;;27705:33;;;;;;;;;;;;;;;;27402:36;;;;;;;;;;-1:-1:-1;27402:36:0;;;;-1:-1:-1;;;;;27402:36:0;;;26981:38;;;;;;;;;;-1:-1:-1;26981:38:0;;;;-1:-1:-1;;;26981:38:0;;;;;;32849:183;;;;;;;;;;-1:-1:-1;32849:183:0;;;;;:::i;:::-;;:::i;:::-;;31249:200;;;;;;;;;;-1:-1:-1;31249:200:0;;;;;:::i;:::-;;:::i;27067:31::-;;;;;;;;;;;;;;;;38264:262;;;;;;;;;;-1:-1:-1;38264:262:0;;;;;:::i;:::-;;:::i;27195:22::-;;;;;;;;;;;;;;;;14163:118;;;;;;;;;;-1:-1:-1;14163:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14255:18:0;14228:7;14255:18;;;;;;;;;;;;14163:118;25060:103;;;;;;;;;;;;;:::i;27026:34::-;;;;;;;;;;;;;;;;30326:114;;;;;;;;;;;;;:::i;26897:24::-;;;;;;;;;;-1:-1:-1;26897:24:0;;;;-1:-1:-1;;;;;26897:24:0;;;27484:22;;;;;;;;;;;;;;;;24409:87;;;;;;;;;;-1:-1:-1;24482:6:0;;-1:-1:-1;;;;;24482:6:0;24409:87;;26849:41;;;;;;;;;;;;;;;13109:95;;;;;;;;;;;;;:::i;31789:561::-;;;:::i;17544:504::-;;;;;;;;;;-1:-1:-1;17544:504:0;;;;;:::i;:::-;;:::i;28085:40::-;;;;;;;;;;-1:-1:-1;28085:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14486:182;;;;;;;;;;-1:-1:-1;14486:182:0;;;;;:::i;:::-;;:::i;27877:50::-;;;;;;;;;;-1:-1:-1;27877:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14731:142;;;;;;;;;;-1:-1:-1;14731:142:0;;;;;:::i;:::-;;:::i;31574:207::-;;;;;;;;;;-1:-1:-1;31574:207:0;;;;;:::i;:::-;;:::i;27573:23::-;;;;;;;;;;;;;;;;25318:238;;;;;;;;;;-1:-1:-1;25318:238:0;;;;;:::i;:::-;;:::i;32534:148::-;;;;;;;;;;-1:-1:-1;32534:148:0;;;;;:::i;:::-;;:::i;37857:255::-;;;;;;;;;;-1:-1:-1;37857:255:0;;;;;:::i;:::-;;:::i;30515:120::-;24482:6;;30569:4;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;30586:11:0::1;:19:::0;;-1:-1:-1;;30586:19:0::1;::::0;;;30515:120;:::o;12899:91::-;12944:13;12977:5;12970:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12899:91;:::o;15192:190::-;15265:4;10068:10;15321:31;10068:10;15337:7;15346:5;15321:8;:31::i;:::-;15370:4;15363:11;;;15192:190;;;;;:::o;30643:450::-;28570:10;30739:4;28560:21;;;:9;:21;;;;;;;;28552:30;;;;;;30807:6:::1;30791:13;14080:12:::0;;;14001:99;30791:13:::1;:22;;;;:::i;:::-;30778:9;:35;;30756:138;;;::::0;-1:-1:-1;;;30756:138:0;;5290:2:1;30756:138:0::1;::::0;::::1;5272:21:1::0;5329:2;5309:18;;;5302:30;5368:34;5348:18;;;5341:62;-1:-1:-1;;;5419:18:1;;;5412:51;5480:19;;30756:138:0::1;5088:417:1::0;30756:138:0::1;30940:16;;30927:9;:29;;30905:129;;;::::0;-1:-1:-1;;;30905:129:0;;5712:2:1;30905:129:0::1;::::0;::::1;5694:21:1::0;5751:2;5731:18;;;5724:30;5790:34;5770:18;;;5763:62;-1:-1:-1;;;5841:18:1;;;5834:48;5899:19;;30905:129:0::1;5510:414:1::0;30905:129:0::1;31042:9;::::0;31036:27:::1;::::0;-1:-1:-1;;;;;31042:9:0::1;31053::::0;31036:5:::1;:27::i;:::-;-1:-1:-1::0;31081:4:0::1;30643:450:::0;;;:::o;15960:249::-;16047:4;10068:10;16105:37;16121:4;10068:10;16136:5;16105:15;:37::i;:::-;16153:26;16163:4;16169:2;16173:5;16153:9;:26::i;:::-;-1:-1:-1;16197:4:0;;15960:249;-1:-1:-1;;;;15960:249:0:o;16618:238::-;16706:4;10068:10;16762:64;10068:10;16778:7;16815:10;16787:25;10068:10;16778:7;16787:9;:25::i;:::-;:38;;;;:::i;:::-;16762:8;:64::i;32849:183::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32937:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;32937:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32982:42;;154:41:1;;;32982:42:0::1;::::0;127:18:1;32982:42:0::1;;;;;;;32849:183:::0;;:::o;31249:200::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;31349:1:::1;31339:6;:11;;31331:58;;;::::0;-1:-1:-1;;;31331:58:0;;6261:2:1;31331:58:0::1;::::0;::::1;6243:21:1::0;6300:2;6280:18;;;6273:30;6339:34;6319:18;;;6312:62;-1:-1:-1;;;6390:18:1;;;6383:32;6432:19;;31331:58:0::1;6059:398:1::0;31331:58:0::1;31437:4;31420:13;14080:12:::0;;;14001:99;31420:13:::1;31411:22;::::0;:6;:22:::1;:::i;:::-;31410:31;;;;:::i;:::-;31400:7;:41:::0;-1:-1:-1;31249:200:0:o;38264:262::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;38369:8:::1;:16:::0;;;38396:8:::1;:16:::0;;;38434:19:::1;38407:5:::0;38380;38434:19:::1;:::i;:::-;38423:8;:30:::0;;;38484:1:::1;-1:-1:-1::0;38472:13:0::1;38464:54;;;::::0;-1:-1:-1;;;38464:54:0;;6837:2:1;38464:54:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38464:54:0::1;6635:352:1::0;38464:54:0::1;38264:262:::0;;:::o;25060:103::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;25125:30:::1;25152:1;25125:18;:30::i;:::-;25060:103::o:0;30326:114::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;30381:8:::1;:15:::0;;-1:-1:-1;;;;30381:15:0::1;-1:-1:-1::0;;;30381:15:0::1;::::0;;30407:18:::1;:25:::0;;-1:-1:-1;;;;30407:25:0::1;-1:-1:-1::0;;;30407:25:0::1;::::0;;30326:114::o;13109:95::-;13156:13;13189:7;13182:14;;;;;:::i;31789:561::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;31875:11:::1;-1:-1:-1::0;;;;;31875:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31861:47:0::1;;31917:4;31924:11;-1:-1:-1::0;;;;;31924:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31861:82;::::0;-1:-1:-1;;;;;;31861:82:0::1;::::0;;;;;;-1:-1:-1;;;;;7478:15:1;;;31861:82:0::1;::::0;::::1;7460:34:1::0;7530:15;;7510:18;;;7503:43;7395:18;;31861:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31849:9;:94:::0;;-1:-1:-1;;;;;;31849:94:0::1;-1:-1:-1::0;;;;;31849:94:0;;;::::1;::::0;;::::1;::::0;;31954:43:::1;::::0;-1:-1:-1;31954:17:0::1;:43::i;:::-;32029:9;::::0;32008:38:::1;::::0;-1:-1:-1;;;;;32029:9:0::1;::::0;32008:12:::1;:38::i;:::-;32057:64;32074:4;32089:11;-1:-1:-1::0;;32057:8:0::1;:64::i;:::-;32133:11;-1:-1:-1::0;;;;;32133:27:0::1;;32168:9;32201:4;32221:24;32239:4;-1:-1:-1::0;;;;;14255:18:0;14228:7;14255:18;;;;;;;;;;;;14163:118;32221:24:::1;32260:1;32277::::0;32294:7:::1;24482:6:::0;;-1:-1:-1;;;;;24482:6:0;;24409:87;32294:7:::1;32133:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;32133:209:0;;;-1:-1:-1;;;;;7916:15:1;;;32133:209:0::1;::::0;::::1;7898:34:1::0;7948:18;;;7941:34;;;;7991:18;;;7984:34;;;;8034:18;;;8027:34;8098:15;;;8077:19;;;8070:44;32316:15:0::1;8130:19:1::0;;;8123:35;7832:19;;32133:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31789:561::o:0;17544:504::-;17639:4;10068:10;17639:4;17722:25;10068:10;17739:7;17722:9;:25::i;:::-;17695:52;;17781:17;17762:16;:36;17758:150;;;17822:74;;-1:-1:-1;;;17822:74:0;;-1:-1:-1;;;;;8700:32:1;;17822:74:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;17822:74:0;8480:345:1;17758:150:0;17943:62;17952:5;17959:7;17987:17;17968:16;:36;17943:8;:62::i;14486:182::-;14555:4;10068:10;14611:27;10068:10;14628:2;14632:5;14611:9;:27::i;14731:142::-;-1:-1:-1;;;;;14838:18:0;;;14811:7;14838:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14731:142::o;31574:207::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;31673:1:::1;31663:6;:11;;31655:62;;;::::0;-1:-1:-1;;;31655:62:0;;9032:2:1;31655:62:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;-1:-1:-1;;;9161:18:1;;;9154:36;9207:19;;31655:62:0::1;8830:402:1::0;31655:62:0::1;31769:4;31752:13;14080:12:::0;;;14001:99;31752:13:::1;31743:22;::::0;:6;:22:::1;:::i;:::-;31742:31;;;;:::i;:::-;31728:11;:45:::0;-1:-1:-1;31574:207:0:o;25318:238::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25421:22:0;::::1;25399:110;;;::::0;-1:-1:-1;;;25399:110:0;;9439:2:1;25399:110:0::1;::::0;::::1;9421:21:1::0;9478:2;9458:18;;;9451:30;9517:34;9497:18;;;9490:62;-1:-1:-1;;;9568:18:1;;;9561:36;9614:19;;25399:110:0::1;9237:402:1::0;25399:110:0::1;25520:28;25539:8;25520:18;:28::i;:::-;25318:238:::0;:::o;32534:148::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32641:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32641:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32534:148::o;37857:255::-;24482:6;;-1:-1:-1;;;;;24482:6:0;10068:10;24629:23;24621:68;;;;-1:-1:-1;;;24621:68:0;;;;;;;:::i;:::-;37961:7:::1;:15:::0;;;37987:7:::1;:15:::0;;;38023:17:::1;37997:5:::0;37971;38023:17:::1;:::i;:::-;38013:7;:27:::0;;;38070:1:::1;-1:-1:-1::0;38059:12:0::1;38051:53;;;::::0;-1:-1:-1;;;38051:53:0;;6837:2:1;38051:53:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38051:53:0::1;6635:352:1::0;21741:138:0;21834:37;21843:5;21850:7;21859:5;21866:4;21834:8;:37::i;21093:211::-;-1:-1:-1;;;;;21164:21:0;;21160:91;;21209:30;;-1:-1:-1;;;21209:30:0;;21236:1;21209:30;;;352:51:1;325:18;;21209:30:0;206:203:1;21160:91:0;21261:35;21269:7;21286:1;21290:5;21261:7;:35::i;23478:487::-;23578:24;23605:25;23615:5;23622:7;23605:9;:25::i;:::-;23578:52;;-1:-1:-1;;23645:16:0;:37;23641:317;;23722:5;23703:16;:24;23699:132;;;23755:60;;-1:-1:-1;;;23755:60:0;;-1:-1:-1;;;;;8700:32:1;;23755:60:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;23755:60:0;8480:345:1;23699:132:0;23874:57;23883:5;23890:7;23918:5;23899:16;:24;23925:5;23874:8;:57::i;:::-;23567:398;23478:487;;;:::o;18433:308::-;-1:-1:-1;;;;;18517:18:0;;18513:88;;18559:30;;-1:-1:-1;;;18559:30:0;;18586:1;18559:30;;;352:51:1;325:18;;18559:30:0;206:203:1;18513:88:0;-1:-1:-1;;;;;18615:16:0;;18611:88;;18655:32;;-1:-1:-1;;;18655:32:0;;18684:1;18655:32;;;352:51:1;325:18;;18655:32:0;206:203:1;18611:88:0;18709:24;18717:4;18723:2;18727:5;18709:7;:24::i;25716:191::-;25809:6;;;-1:-1:-1;;;;;25826:17:0;;;-1:-1:-1;;;;;;25826:17:0;;;;;;;25859:40;;25809:6;;;25826:17;25809:6;;25859:40;;25790:16;;25859:40;25779:128;25716:191;:::o;33040:138::-;-1:-1:-1;;;;;33107:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;33107:22:0;;;;;;;;;;33147:23;;33107:22;;:14;33147:23;;;33040:138;;:::o;22746:443::-;-1:-1:-1;;;;;22859:19:0;;22855:91;;22902:32;;-1:-1:-1;;;22902:32:0;;22931:1;22902:32;;;352:51:1;325:18;;22902:32:0;206:203:1;22855:91:0;-1:-1:-1;;;;;22960:21:0;;22956:92;;23005:31;;-1:-1:-1;;;23005:31:0;;23033:1;23005:31;;;352:51:1;325:18;;23005:31:0;206:203:1;22956:92:0;-1:-1:-1;;;;;23058:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23104:78;;;;23155:7;-1:-1:-1;;;;;23139:31:0;23148:5;-1:-1:-1;;;;;23139:31:0;;23164:5;23139:31;;;;1569:25:1;;1557:2;1542:18;;1423:177;23139:31:0;;;;;;;;22746:443;;;;:::o;33186:3121::-;33312:6;33322:1;33312:11;33308:54;;33326:26;33340:4;33346:2;33350:1;33326:13;:26::i;33308:54::-;-1:-1:-1;;;;;33377:15:0;;;;;;:9;:15;;;;;;;;33376:16;:34;;;;-1:-1:-1;;;;;;33397:13:0;;;;;;:9;:13;;;;;;;;33396:14;33376:34;33372:83;;;33420:8;;-1:-1:-1;;;33420:8:0;;;;33412:43;;;;-1:-1:-1;;;33412:43:0;;9846:2:1;33412:43:0;;;9828:21:1;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:52;9966:18;;33412:43:0;9644:346:1;33412:43:0;33470:11;;;;:23;;;;-1:-1:-1;33485:8:0;;-1:-1:-1;;;33485:8:0;;;;33470:23;33466:1265;;;24482:6;;-1:-1:-1;;;;;33532:15:0;;;24482:6;;33532:15;;;;:49;;-1:-1:-1;24482:6:0;;-1:-1:-1;;;;;33568:13:0;;;24482:6;;33568:13;;33532:49;:86;;;;-1:-1:-1;;;;;;33602:16:0;;;;33532:86;:128;;;;-1:-1:-1;;;;;;33639:21:0;;33653:6;33639:21;;33532:128;:164;;;;-1:-1:-1;33682:14:0;;-1:-1:-1;;;33682:14:0;;;;33681:15;33532:164;33510:1210;;;-1:-1:-1;;;;;33765:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;33784:22:0;;;;;;:18;:22;;;;;;;;33783:23;33765:41;33761:944;;;33875:7;;33865:6;:17;;33831:143;;;;-1:-1:-1;;;33831:143:0;;10197:2:1;33831:143:0;;;10179:21:1;10236:2;10216:18;;;10209:30;10275:34;10255:18;;;10248:62;-1:-1:-1;;;10326:18:1;;;10319:38;10374:19;;33831:143:0;9995:404:1;33831:143:0;34057:11;;-1:-1:-1;;;;;14255:18:0;;14228:7;14255:18;;;;;;;;;;;34031:22;;:6;:22;:::i;:::-;:37;;33997:142;;;;-1:-1:-1;;;33997:142:0;;10606:2:1;33997:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;33997:142:0;10404:343:1;33997:142:0;33761:944;;;-1:-1:-1;;;;;34237:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;34254:24:0;;;;;;:18;:24;;;;;;;;34253:25;34237:41;34211:494;;;34365:7;;34355:6;:17;;34321:144;;;;-1:-1:-1;;;34321:144:0;;10954:2:1;34321:144:0;;;10936:21:1;10993:2;10973:18;;;10966:30;11032:34;11012:18;;;11005:62;-1:-1:-1;;;11083:18:1;;;11076:39;11132:19;;34321:144:0;10752:405:1;34211:494:0;-1:-1:-1;;;;;34496:22:0;;;;;;:18;:22;;;;;;;;34491:214;;34603:11;;-1:-1:-1;;;;;14255:18:0;;14228:7;14255:18;;;;;;;;;;;34577:22;;:6;:22;:::i;:::-;:37;;34543:142;;;;-1:-1:-1;;;34543:142:0;;10606:2:1;34543:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;34543:142:0;10404:343:1;34543:142:0;34792:4;34743:28;14255:18;;;;;;;;;;;34850:19;;34826:43;;;;;;;34900:42;;-1:-1:-1;34924:18:0;;-1:-1:-1;;;34924:18:0;;;;34900:42;:74;;;;-1:-1:-1;34960:14:0;;-1:-1:-1;;;34960:14:0;;;;34959:15;34900:74;:103;;;;-1:-1:-1;;;;;;34991:12:0;;;;;;:8;:12;;;;;;;;34900:103;:136;;;;-1:-1:-1;;;;;;35021:15:0;;;;;;:9;:15;;;;;;;;35020:16;34900:136;:167;;;;-1:-1:-1;;;;;;35054:13:0;;;;;;:9;:13;;;;;;;;35053:14;34900:167;34882:318;;;35094:14;:21;;-1:-1:-1;;;;35094:21:0;-1:-1:-1;;;35094:21:0;;;35132:17;:15;:17::i;:::-;35166:14;:22;;-1:-1:-1;;;;35166:22:0;;;34882:318;35228:14;;-1:-1:-1;;;;;35344:15:0;;35212:12;35344:15;;;:9;:15;;;;;;35228:14;-1:-1:-1;;;35228:14:0;;;;;35227:15;;35344;;:32;;-1:-1:-1;;;;;;35363:13:0;;;;;;:9;:13;;;;;;;;35344:32;35340:80;;;-1:-1:-1;35403:5:0;35340:80;35432:12;35537:7;35533:723;;;-1:-1:-1;;;;;35589:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;35616:1;35605:8;;:12;35589:28;35585:524;;;35645:29;35670:3;35645:20;35656:8;;35645:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;35638:36;;35735:8;;35723;;35716:4;:15;;;;:::i;:::-;35715:28;;;;:::i;:::-;35693:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;35804:8:0;;35792;;35785:15;;:4;:15;:::i;:::-;35784:28;;;;:::i;:::-;35762:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;35585:524:0;;-1:-1:-1;35585:524:0;;-1:-1:-1;;;;;35874:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;35902:1;35892:7;;:11;35874:29;35870:239;;;35931:28;35955:3;35931:19;35942:7;;35931:6;:10;;:19;;;;:::i;:28::-;35924:35;;36019:7;;36008;;36001:4;:14;;;;:::i;:::-;36000:26;;;;:::i;:::-;35978:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;36086:7:0;;36075;;36068:14;;:4;:14;:::i;:::-;36067:26;;;;:::i;:::-;36045:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;35870:239:0;36129:8;;36125:89;;36158:40;36172:4;36186;36193;36158:13;:40::i;:::-;36230:14;36240:4;36230:14;;:::i;:::-;;;35533:723;36268:31;36282:4;36288:2;36292:6;36268:13;:31::i;:::-;33297:3010;;;;33186:3121;;;:::o;19057:1135::-;-1:-1:-1;;;;;19147:18:0;;19143:552;;19301:5;19285:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19143:552:0;;-1:-1:-1;19143:552:0;;-1:-1:-1;;;;;19361:15:0;;19339:19;19361:15;;;;;;;;;;;19395:19;;;19391:117;;;19442:50;;-1:-1:-1;;;19442:50:0;;-1:-1:-1;;;;;8700:32:1;;19442:50:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;19442:50:0;8480:345:1;19391:117:0;-1:-1:-1;;;;;19631:15:0;;:9;:15;;;;;;;;;;19649:19;;;;19631:37;;19143:552;-1:-1:-1;;;;;19711:16:0;;19707:435;;19877:12;:21;;;;;;;19707:435;;;-1:-1:-1;;;;;20093:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19707:435;20174:2;-1:-1:-1;;;;;20159:25:0;20168:4;-1:-1:-1;;;;;20159:25:0;;20178:5;20159:25;;;;1569::1;;1557:2;1542:18;;1423:177;20159:25:0;;;;;;;;19057:1135;;;:::o;36918:782::-;37008:4;36964:23;14255:18;;;;;;;;;;;36964:50;;37025:25;37074:18;;37053;;:39;;;;:::i;:::-;37025:67;;37103:12;37150:19;;37132:15;:37;37128:107;;;37204:19;;37186:37;;37128:107;37275:21;37309:51;37344:15;37309:34;:51::i;:::-;37373:18;37394:44;:21;37420:17;37394:25;:44::i;:::-;37373:65;;37451:21;37475:57;37514:17;37475:34;37490:18;;37475:10;:14;;:34;;;;:::i;:57::-;37567:21;;37559:61;;37451:81;;-1:-1:-1;;;;;;37567:21:0;;37451:81;;37559:61;;;;37451:81;37567:21;37559:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37639:20:0;;37631:61;;37545:75;;-1:-1:-1;;;;;;37639:20:0;;37670:21;37631:61;;;;;37639:20;37631:61;37639:20;37631:61;37670:21;37639:20;37631:61;;;;;;;;;;;;;;;;;;;6104:98;6162:7;6189:5;6193:1;6189;:5;:::i;:::-;6182:12;6104:98;-1:-1:-1;;;6104:98:0:o;6503:::-;6561:7;6588:5;6592:1;6588;:5;:::i;36315:595::-;36483:16;;;36497:1;36483:16;;;;;;;;36459:21;;36483:16;;;;;;;;;;-1:-1:-1;36483:16:0;36459:40;;36528:4;36510;36515:1;36510:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36510:23:0;;;-1:-1:-1;;;;;36510:23:0;;;;;36554:11;-1:-1:-1;;;;;36554:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36544:4;36549:1;36544:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36544:28:0;;;-1:-1:-1;;;;;36544:28:0;;;;;36585:58;36602:4;36617:11;36631;36585:8;:58::i;:::-;36682:220;;-1:-1:-1;;;36682:220:0;;-1:-1:-1;;;;;36682:11:0;:62;;;;:220;;36759:11;;36785:1;;36829:4;;36856;;36876:15;;36682:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36388:522;36315:595;:::o;5747:98::-;5805:7;5832:5;5836:1;5832;:5;:::i;414:548:1:-;526:4;555:2;584;573:9;566:21;616:6;610:13;659:6;654:2;643:9;639:18;632:34;684:1;694:140;708:6;705:1;702:13;694:140;;;803:14;;;799:23;;793:30;769:17;;;788:2;765:26;758:66;723:10;;694:140;;;698:3;883:1;878:2;869:6;858:9;854:22;850:31;843:42;953:2;946;942:7;937:2;929:6;925:15;921:29;910:9;906:45;902:54;894:62;;;;414:548;;;;:::o;967:131::-;-1:-1:-1;;;;;1042:31:1;;1032:42;;1022:70;;1088:1;1085;1078:12;1103:315;1171:6;1179;1232:2;1220:9;1211:7;1207:23;1203:32;1200:52;;;1248:1;1245;1238:12;1200:52;1287:9;1274:23;1306:31;1331:5;1306:31;:::i;:::-;1356:5;1408:2;1393:18;;;;1380:32;;-1:-1:-1;;;1103:315:1:o;1605:180::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;-1:-1:-1;1756:23:1;;1605:180;-1:-1:-1;1605:180:1:o;1790:456::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;1991:9;1978:23;2010:31;2035:5;2010:31;:::i;:::-;2060:5;-1:-1:-1;2117:2:1;2102:18;;2089:32;2130:33;2089:32;2130:33;:::i;:::-;1790:456;;2182:7;;-1:-1:-1;;;2236:2:1;2221:18;;;;2208:32;;1790:456::o;2440:416::-;2505:6;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:31;2665:5;2640:31;:::i;:::-;2690:5;-1:-1:-1;2747:2:1;2732:18;;2719:32;2789:15;;2782:23;2770:36;;2760:64;;2820:1;2817;2810:12;2760:64;2843:7;2833:17;;;2440:416;;;;;:::o;2861:248::-;2929:6;2937;2990:2;2978:9;2969:7;2965:23;2961:32;2958:52;;;3006:1;3003;2996:12;2958:52;-1:-1:-1;;3029:23:1;;;3099:2;3084:18;;;3071:32;;-1:-1:-1;2861:248:1:o;3114:247::-;3173:6;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;3595:388::-;3663:6;3671;3724:2;3712:9;3703:7;3699:23;3695:32;3692:52;;;3740:1;3737;3730:12;3692:52;3779:9;3766:23;3798:31;3823:5;3798:31;:::i;:::-;3848:5;-1:-1:-1;3905:2:1;3890:18;;3877:32;3918:33;3877:32;3918:33;:::i;3988:356::-;4190:2;4172:21;;;4209:18;;;4202:30;4268:34;4263:2;4248:18;;4241:62;4335:2;4320:18;;3988:356::o;4349:380::-;4428:1;4424:12;;;;4471;;;4492:61;;4546:4;4538:6;4534:17;4524:27;;4492:61;4599:2;4591:6;4588:14;4568:18;4565:38;4562:161;;4645:10;4640:3;4636:20;4633:1;4626:31;4680:4;4677:1;4670:15;4708:4;4705:1;4698:15;4562:161;;4349:380;;;:::o;4734:127::-;4795:10;4790:3;4786:20;4783:1;4776:31;4826:4;4823:1;4816:15;4850:4;4847:1;4840:15;4866:217;4906:1;4932;4922:132;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4922:132;-1:-1:-1;5068:9:1;;4866:217::o;5929:125::-;5994:9;;;6015:10;;;6012:36;;;6028:18;;:::i;6462:168::-;6535:9;;;6566;;6583:15;;;6577:22;;6563:37;6553:71;;6604:18;;:::i;6992:251::-;7062:6;7115:2;7103:9;7094:7;7090:23;7086:32;7083:52;;;7131:1;7128;7121:12;7083:52;7163:9;7157:16;7182:31;7207:5;7182:31;:::i;8169:306::-;8257:6;8265;8273;8326:2;8314:9;8305:7;8301:23;8297:32;8294:52;;;8342:1;8339;8332:12;8294:52;8371:9;8365:16;8355:26;;8421:2;8410:9;8406:18;8400:25;8390:35;;8465:2;8454:9;8450:18;8444:25;8434:35;;8169:306;;;;;:::o;11162:128::-;11229:9;;;11250:11;;;11247:37;;;11264:18;;:::i;11637:127::-;11698:10;11693:3;11689:20;11686:1;11679:31;11729:4;11726:1;11719:15;11753:4;11750:1;11743:15;11769:980;12031:4;12079:3;12068:9;12064:19;12110:6;12099:9;12092:25;12136:2;12174:6;12169:2;12158:9;12154:18;12147:34;12217:3;12212:2;12201:9;12197:18;12190:31;12241:6;12276;12270:13;12307:6;12299;12292:22;12345:3;12334:9;12330:19;12323:26;;12384:2;12376:6;12372:15;12358:29;;12405:1;12415:195;12429:6;12426:1;12423:13;12415:195;;;12494:13;;-1:-1:-1;;;;;12490:39:1;12478:52;;12585:15;;;;12550:12;;;;12526:1;12444:9;12415:195;;;-1:-1:-1;;;;;;;12666:32:1;;;;12661:2;12646:18;;12639:60;-1:-1:-1;;;12730:3:1;12715:19;12708:35;12627:3;11769:980;-1:-1:-1;;;11769:980:1:o

Swarm Source

ipfs://818e55282113cbd6b3edcc907f5a191d7e9b309bf876e9062cf1d0b95867d861
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.