ETH Price: $3,465.81 (+2.30%)
Gas: 13 Gwei

Token

Marshall Inu (MRI)
 

Overview

Max Total Supply

1,000,000,000 MRI

Holders

1,603

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
284,000 MRI

Value
$0.00
0xbc5aa0007a24f30f69c9db4f3aa108f0533c0f0e
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:
MarshallInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-14
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the 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 IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping(address => bool) blacklisted;
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Marshall Inu", "MRI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = 345_000_000 * 1e18; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x1078E66d46cC069300cc1518a4BE75dc29D62cAC); // set as marketing wallet
        devWallet = address(0x1078E66d46cC069300cc1518a4BE75dc29D62cAC); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function enableLimits() external onlyOwner returns (bool) {
        limitsInEffect = true;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from Pair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from Pair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function blacklist(address _black) public onlyOwner {
        blacklisted[_black] = true;
    }

    function unblacklist(address _black) public onlyOwner {
        blacklisted[_black] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_black","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_black","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff19166001908117909155601480549092161790553480156200004b57600080fd5b506040518060400160405280600c81526020016b4d61727368616c6c20496e7560a01b815250604051806040016040528060038152602001624d524960e81b8152508160039080519060200190620000a5929190620006bd565b508051620000bb906004906020840190620006bd565b505050620000d8620000d26200040c60201b60201c565b62000410565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000fa81600162000462565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200014057600080fd5b505afa15801562000155573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017b919062000763565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c457600080fd5b505afa158015620001d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ff919062000763565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024857600080fd5b505af11580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000283919062000763565b6001600160a01b031660a08190526200029e90600162000462565b60a051620002ae906001620004dc565b6a084595161401484a0000006008556a108b2a2c28029094000000600a556b011d609779b22c3df9000000600955600060168190556017819055601881905580808080806b033b2e3c9fd0803ce8000000816200030c818062000795565b62000318919062000795565b601555601a849055601b839055601c8290558162000337848662000795565b62000343919062000795565b60195560068054731078e66d46cc069300cc1518a4be75dc29d62cac6001600160a01b031991821681179092556007805490911690911790556200039b620003936005546001600160a01b031690565b600162000530565b620003a830600162000530565b620003b761dead600162000530565b620003d6620003ce6005546001600160a01b031690565b600162000462565b620003e330600162000462565b620003f261dead600162000462565b620003fe3382620005d8565b5050505050505050620007f9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b15760405162461bcd60e51b8152602060048201819052602482015260008051602062003f3083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057b5760405162461bcd60e51b8152602060048201819052602482015260008051602062003f308339815191526044820152606401620004a8565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006305760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004a8565b806002600082825462000644919062000795565b90915550506001600160a01b038216600090815260208190526040812080548392906200067390849062000795565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006cb90620007bc565b90600052602060002090601f016020900481019282620006ef57600085556200073a565b82601f106200070a57805160ff19168380011785556200073a565b828001600101855582156200073a579182015b828111156200073a5782518255916020019190600101906200071d565b50620007489291506200074c565b5090565b5b808211156200074857600081556001016200074d565b6000602082840312156200077657600080fd5b81516001600160a01b03811681146200078e57600080fd5b9392505050565b60008219821115620007b757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620007d157607f821691505b60208210811415620007f357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516136af62000881600039600081816106780152818161159601528181611ca401528181611d4e01528181611d7a015281816121d801528181612d7b01528181612e2c0152612e5801526000818161049c0152818161219a01528181612f620152818161302a01528181613066015281816130e0015261310701526136af6000f3fe6080604052600436106103f35760003560e01c80638a8c523c11610208578063c024666811610118578063e2f45605116100ab578063f63743421161007a578063f637434214610b95578063f8b45b0514610bab578063f9f92be414610bc1578063fe575a8714610be1578063fe72b27a14610c1a57600080fd5b8063e2f4560514610b34578063e884f26014610b4a578063f11a24d314610b5f578063f2fde38b14610b7557600080fd5b8063c8c8ebe4116100e7578063c8c8ebe414610aa2578063d257b34f14610ab8578063d85ba06314610ad8578063dd62ed3e14610aee57600080fd5b8063c024666814610a28578063c17b5b8c14610a48578063c18bc19514610a68578063c876d0b914610a8857600080fd5b80639ec22c0e1161019b578063a4c82a001161016a578063a4c82a0014610983578063a9059cbb14610999578063aacebbe3146109b9578063b62496f5146109d9578063bbc0c74214610a0957600080fd5b80639ec22c0e146109215780639fccce3214610937578063a0d82dc51461094d578063a457c2d71461096357600080fd5b8063924de9b7116101d7578063924de9b7146108b657806395d89b41146108d65780639a7a23d6146108eb5780639c3b4fdc1461090b57600080fd5b80638a8c523c1461084d5780638da5cb5b146108625780638ea5220f1461088057806392136913146108a057600080fd5b80633aeac4e11161030357806370a08231116102965780637571336a116102655780637571336a146107b757806375e3661e146107d757806375f0a874146107f75780637bce5a04146108175780638095d5641461082d57600080fd5b806370a0823114610737578063715018a61461076d578063730c188814610782578063751039fc146107a257600080fd5b80634fbee193116102d25780634fbee193146106b45780636902ca61146106ec5780636a486a8e146107015780636ddd17131461071757600080fd5b80633aeac4e1146106315780633ccfd60b1461065157806349bd5a5e146106665780634a62bb651461069a57600080fd5b80631a8145bb1161038657806327c8f8351161035557806327c8f835146105af5780632c3e486c146105c55780632e82f1a0146105db578063313ce567146105f5578063395093511461061157600080fd5b80631a8145bb146105435780631f3fed8f14610559578063203e727e1461056f57806323b872dd1461058f57600080fd5b806318160ddd116103c257806318160ddd146104d65780631816467f146104f5578063184c16c514610517578063199ffc721461052d57600080fd5b806306fdde03146103ff578063095ea7b31461042a57806310d5de531461045a5780631694505e1461048a57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610c3a565b60405161042191906131ef565b60405180910390f35b34801561043657600080fd5b5061044a610445366004613259565b610ccc565b6040519015158152602001610421565b34801561046657600080fd5b5061044a610475366004613285565b60216020526000908152604090205460ff1681565b34801561049657600080fd5b506104be7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610421565b3480156104e257600080fd5b506002545b604051908152602001610421565b34801561050157600080fd5b50610515610510366004613285565b610ce2565b005b34801561052357600080fd5b506104e7600f5481565b34801561053957600080fd5b506104e7600b5481565b34801561054f57600080fd5b506104e7601e5481565b34801561056557600080fd5b506104e7601d5481565b34801561057b57600080fd5b5061051561058a3660046132a2565b610d72565b34801561059b57600080fd5b5061044a6105aa3660046132bb565b610e4f565b3480156105bb57600080fd5b506104be61dead81565b3480156105d157600080fd5b506104e7600d5481565b3480156105e757600080fd5b50600c5461044a9060ff1681565b34801561060157600080fd5b5060405160128152602001610421565b34801561061d57600080fd5b5061044a61062c366004613259565b610ef9565b34801561063d57600080fd5b5061051561064c3660046132fc565b610f35565b34801561065d57600080fd5b506105156110bb565b34801561067257600080fd5b506104be7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a657600080fd5b5060115461044a9060ff1681565b3480156106c057600080fd5b5061044a6106cf366004613285565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156106f857600080fd5b5061044a611201565b34801561070d57600080fd5b506104e760195481565b34801561072357600080fd5b5060115461044a9062010000900460ff1681565b34801561074357600080fd5b506104e7610752366004613285565b6001600160a01b031660009081526020819052604090205490565b34801561077957600080fd5b50610515611242565b34801561078e57600080fd5b5061051561079d366004613343565b611278565b3480156107ae57600080fd5b5061044a6113a1565b3480156107c357600080fd5b506105156107d236600461337c565b6113de565b3480156107e357600080fd5b506105156107f2366004613285565b611433565b34801561080357600080fd5b506006546104be906001600160a01b031681565b34801561082357600080fd5b506104e760165481565b34801561083957600080fd5b506105156108483660046133aa565b61147e565b34801561085957600080fd5b506105156114d4565b34801561086e57600080fd5b506005546001600160a01b03166104be565b34801561088c57600080fd5b506007546104be906001600160a01b031681565b3480156108ac57600080fd5b506104e7601a5481565b3480156108c257600080fd5b506105156108d13660046133d6565b611515565b3480156108e257600080fd5b5061041461155b565b3480156108f757600080fd5b5061051561090636600461337c565b61156a565b34801561091757600080fd5b506104e760185481565b34801561092d57600080fd5b506104e760105481565b34801561094357600080fd5b506104e7601f5481565b34801561095957600080fd5b506104e7601c5481565b34801561096f57600080fd5b5061044a61097e366004613259565b611646565b34801561098f57600080fd5b506104e7600e5481565b3480156109a557600080fd5b5061044a6109b4366004613259565b6116df565b3480156109c557600080fd5b506105156109d4366004613285565b6116ec565b3480156109e557600080fd5b5061044a6109f4366004613285565b60226020526000908152604090205460ff1681565b348015610a1557600080fd5b5060115461044a90610100900460ff1681565b348015610a3457600080fd5b50610515610a4336600461337c565b611773565b348015610a5457600080fd5b50610515610a633660046133aa565b6117fa565b348015610a7457600080fd5b50610515610a833660046132a2565b611850565b348015610a9457600080fd5b5060145461044a9060ff1681565b348015610aae57600080fd5b506104e760085481565b348015610ac457600080fd5b5061044a610ad33660046132a2565b611921565b348015610ae457600080fd5b506104e760155481565b348015610afa57600080fd5b506104e7610b093660046132fc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b4057600080fd5b506104e760095481565b348015610b5657600080fd5b5061044a611a73565b348015610b6b57600080fd5b506104e760175481565b348015610b8157600080fd5b50610515610b90366004613285565b611ab0565b348015610ba157600080fd5b506104e7601b5481565b348015610bb757600080fd5b506104e7600a5481565b348015610bcd57600080fd5b50610515610bdc366004613285565b611b4b565b348015610bed57600080fd5b5061044a610bfc366004613285565b6001600160a01b031660009081526013602052604090205460ff1690565b348015610c2657600080fd5b5061044a610c353660046132a2565b611b99565b606060038054610c49906133f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c75906133f3565b8015610cc25780601f10610c9757610100808354040283529160200191610cc2565b820191906000526020600020905b815481529060010190602001808311610ca557829003601f168201915b5050505050905090565b6000610cd9338484611e22565b50600192915050565b6005546001600160a01b03163314610d155760405162461bcd60e51b8152600401610d0c9061342e565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d9c5760405162461bcd60e51b8152600401610d0c9061342e565b670de0b6b3a76400006103e8610db160025490565b610dbc906001613479565b610dc69190613498565b610dd09190613498565b811015610e375760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610d0c565b610e4981670de0b6b3a7640000613479565b60085550565b6000610e5c848484611f46565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ee15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610d0c565b610eee8533858403611e22565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cd9918590610f309086906134ba565b611e22565b6005546001600160a01b03163314610f5f5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b038216610fb55760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610d0c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610ff757600080fd5b505afa15801561100b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102f91906134d2565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b15801561107d57600080fd5b505af1158015611091573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b591906134eb565b50505050565b6005546001600160a01b031633146110e55760405162461bcd60e51b8152600401610d0c9061342e565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561111e57600080fd5b505afa158015611132573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115691906134d2565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b15801561119857600080fd5b505af11580156111ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d091906134eb565b5060405133904780156108fc02916000818181858888f193505050501580156111fd573d6000803e3d6000fd5b5050565b6005546000906001600160a01b0316331461122e5760405162461bcd60e51b8152600401610d0c9061342e565b506011805460ff1916600190811790915590565b6005546001600160a01b0316331461126c5760405162461bcd60e51b8152600401610d0c9061342e565b61127660006128eb565b565b6005546001600160a01b031633146112a25760405162461bcd60e51b8152600401610d0c9061342e565b6102588310156113105760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610d0c565b6103e88211158015611320575060015b6113855760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610d0c565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b031633146113ce5760405162461bcd60e51b8152600401610d0c9061342e565b506011805460ff19169055600190565b6005546001600160a01b031633146114085760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461145d5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6005546001600160a01b031633146114a85760405162461bcd60e51b8152600401610d0c9061342e565b601683905560178290556018819055806114c283856134ba565b6114cc91906134ba565b601555505050565b6005546001600160a01b031633146114fe5760405162461bcd60e51b8152600401610d0c9061342e565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461153f5760405162461bcd60e51b8152600401610d0c9061342e565b60118054911515620100000262ff000019909216919091179055565b606060048054610c49906133f3565b6005546001600160a01b031633146115945760405162461bcd60e51b8152600401610d0c9061342e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561163c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610d0c565b6111fd828261293d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d0c565b6116d53385858403611e22565b5060019392505050565b6000610cd9338484611f46565b6005546001600160a01b031633146117165760405162461bcd60e51b8152600401610d0c9061342e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461179d5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118245760405162461bcd60e51b8152600401610d0c9061342e565b601a839055601b829055601c8190558061183e83856134ba565b61184891906134ba565b601955505050565b6005546001600160a01b0316331461187a5760405162461bcd60e51b8152600401610d0c9061342e565b670de0b6b3a76400006103e861188f60025490565b61189a906005613479565b6118a49190613498565b6118ae9190613498565b8110156119095760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610d0c565b61191b81670de0b6b3a7640000613479565b600a5550565b6005546000906001600160a01b0316331461194e5760405162461bcd60e51b8152600401610d0c9061342e565b620186a061195b60025490565b611966906001613479565b6119709190613498565b8210156119dd5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610d0c565b6103e86119e960025490565b6119f4906005613479565b6119fe9190613498565b821115611a6a5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610d0c565b50600955600190565b6005546000906001600160a01b03163314611aa05760405162461bcd60e51b8152600401610d0c9061342e565b506014805460ff19169055600190565b6005546001600160a01b03163314611ada5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b038116611b3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d0c565b611b48816128eb565b50565b6005546001600160a01b03163314611b755760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6005546000906001600160a01b03163314611bc65760405162461bcd60e51b8152600401610d0c9061342e565b600f54601054611bd691906134ba565b4211611c245760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610d0c565b6103e8821115611c895760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610d0c565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b158015611cef57600080fd5b505afa158015611d03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2791906134d2565b90506000611d41612710611d3b8487612991565b906129a4565b90508015611d7657611d767f000000000000000000000000000000000000000000000000000000000000000061dead836129b0565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dd657600080fd5b505af1158015611dea573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611e845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d0c565b6001600160a01b038216611ee55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d0c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611f6c5760405162461bcd60e51b8152600401610d0c90613508565b6001600160a01b038216611f925760405162461bcd60e51b8152600401610d0c9061354d565b6001600160a01b03831660009081526013602052604090205460ff1615611ff05760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610d0c565b6001600160a01b03821660009081526013602052604090205460ff16156120505760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610d0c565b8061206657612061838360006129b0565b505050565b60115460ff1615612532576005546001600160a01b0384811691161480159061209d57506005546001600160a01b03838116911614155b80156120b157506001600160a01b03821615155b80156120c857506001600160a01b03821661dead14155b80156120de5750600554600160a01b900460ff16155b1561253257601154610100900460ff16612174576001600160a01b038316600090815260208052604090205460ff168061212f57506001600160a01b038216600090815260208052604090205460ff165b6121745760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610d0c565b60145460ff16156122cc576005546001600160a01b038381169116148015906121cf57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561220d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156122cc5732600090815260126020526040902054439061222f9060016134ba565b106122b95760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610d0c565b3260009081526012602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff16801561230d57506001600160a01b03821660009081526021602052604090205460ff16155b156123f1576008548111156123825760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610d0c565b600a546001600160a01b0383166000908152602081905260409020546123a890836134ba565b11156123ec5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610d0c565b612532565b6001600160a01b03821660009081526022602052604090205460ff16801561243257506001600160a01b03831660009081526021602052604090205460ff16155b156124a8576008548111156123ec5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610d0c565b6001600160a01b03821660009081526021602052604090205460ff1661253257600a546001600160a01b0383166000908152602081905260409020546124ee90836134ba565b11156125325760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610d0c565b306000908152602081905260409020546009548110801590819061255e575060115462010000900460ff165b80156125745750600554600160a01b900460ff16155b801561259957506001600160a01b03851660009081526022602052604090205460ff16155b80156125bd57506001600160a01b038516600090815260208052604090205460ff16155b80156125e157506001600160a01b038416600090815260208052604090205460ff16155b1561260f576005805460ff60a01b1916600160a01b179055612601612b04565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561264157506001600160a01b03841660009081526022602052604090205460ff165b801561264f5750600c5460ff165b801561266a5750600d54600e5461266691906134ba565b4210155b801561268e57506001600160a01b038516600090815260208052604090205460ff16155b1561269d5761269b612d60565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806126e957506001600160a01b038516600090815260208052604090205460ff165b156126f2575060005b600081156128d7576001600160a01b03861660009081526022602052604090205460ff16801561272457506000601954115b156127dc576127436064611d3b6019548861299190919063ffffffff16565b9050601954601b54826127569190613479565b6127609190613498565b601e600082825461277191906134ba565b9091555050601954601c546127869083613479565b6127909190613498565b601f60008282546127a191906134ba565b9091555050601954601a546127b69083613479565b6127c09190613498565b601d60008282546127d191906134ba565b909155506128b99050565b6001600160a01b03871660009081526022602052604090205460ff16801561280657506000601554115b156128b9576128256064611d3b6015548861299190919063ffffffff16565b9050601554601754826128389190613479565b6128429190613498565b601e600082825461285391906134ba565b90915550506015546018546128689083613479565b6128729190613498565b601f600082825461288391906134ba565b90915550506015546016546128989083613479565b6128a29190613498565b601d60008282546128b391906134ba565b90915550505b80156128ca576128ca8730836129b0565b6128d48186613590565b94505b6128e28787876129b0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061299d8284613479565b9392505050565b600061299d8284613498565b6001600160a01b0383166129d65760405162461bcd60e51b8152600401610d0c90613508565b6001600160a01b0382166129fc5760405162461bcd60e51b8152600401610d0c9061354d565b6001600160a01b03831660009081526020819052604090205481811015612a745760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d0c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612aab9084906134ba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612af791815260200190565b60405180910390a36110b5565b3060009081526020819052604081205490506000601f54601d54601e54612b2b91906134ba565b612b3591906134ba565b90506000821580612b44575081155b15612b4e57505050565b600954612b5c906014613479565b831115612b7457600954612b71906014613479565b92505b6000600283601e5486612b879190613479565b612b919190613498565b612b9b9190613498565b90506000612ba98583612eff565b905047612bb582612f0b565b6000612bc14783612eff565b90506000612bef6002601e54612bd79190613498565b612be19089613590565b601d54611d3b908590612991565b90506000612c1d6002601e54612c059190613498565b612c0f908a613590565b601f54611d3b908690612991565b9050600081612c2c8486613590565b612c369190613590565b6000601e819055601d819055601f8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612c93576040519150601f19603f3d011682016040523d82523d6000602084013e612c98565b606091505b50909850508615801590612cac5750600081115b15612cff57612cbb87826130da565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612d4c576040519150601f19603f3d011682016040523d82523d6000602084013e612d51565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b158015612dc857600080fd5b505afa158015612ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e0091906134d2565b90506000612e1f612710611d3b600b548561299190919063ffffffff16565b90508015612e5457612e547f000000000000000000000000000000000000000000000000000000000000000061dead836129b0565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612eb457600080fd5b505af1158015612ec8573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061299d8284613590565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612f4057612f406135a7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612fb957600080fd5b505afa158015612fcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ff191906135bd565b81600181518110613004576130046135a7565b60200260200101906001600160a01b031690816001600160a01b03168152505061304f307f000000000000000000000000000000000000000000000000000000000000000084611e22565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906130a49085906000908690309042906004016135da565b600060405180830381600087803b1580156130be57600080fd5b505af11580156130d2573d6000803e3d6000fd5b505050505050565b613105307f000000000000000000000000000000000000000000000000000000000000000084611e22565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71982308560008061314c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b1580156131af57600080fd5b505af11580156131c3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906131e8919061364b565b5050505050565b600060208083528351808285015260005b8181101561321c57858101830151858201604001528201613200565b8181111561322e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611b4857600080fd5b6000806040838503121561326c57600080fd5b823561327781613244565b946020939093013593505050565b60006020828403121561329757600080fd5b813561299d81613244565b6000602082840312156132b457600080fd5b5035919050565b6000806000606084860312156132d057600080fd5b83356132db81613244565b925060208401356132eb81613244565b929592945050506040919091013590565b6000806040838503121561330f57600080fd5b823561331a81613244565b9150602083013561332a81613244565b809150509250929050565b8015158114611b4857600080fd5b60008060006060848603121561335857600080fd5b8335925060208401359150604084013561337181613335565b809150509250925092565b6000806040838503121561338f57600080fd5b823561339a81613244565b9150602083013561332a81613335565b6000806000606084860312156133bf57600080fd5b505081359360208301359350604090920135919050565b6000602082840312156133e857600080fd5b813561299d81613335565b600181811c9082168061340757607f821691505b6020821081141561342857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561349357613493613463565b500290565b6000826134b557634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156134cd576134cd613463565b500190565b6000602082840312156134e457600080fd5b5051919050565b6000602082840312156134fd57600080fd5b815161299d81613335565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156135a2576135a2613463565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156135cf57600080fd5b815161299d81613244565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561362a5784516001600160a01b031683529383019391830191600101613605565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561366057600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220de6a666c82a4129e9dafc135c382669427c0ed442b10c63d212620ab99b9944f64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103f35760003560e01c80638a8c523c11610208578063c024666811610118578063e2f45605116100ab578063f63743421161007a578063f637434214610b95578063f8b45b0514610bab578063f9f92be414610bc1578063fe575a8714610be1578063fe72b27a14610c1a57600080fd5b8063e2f4560514610b34578063e884f26014610b4a578063f11a24d314610b5f578063f2fde38b14610b7557600080fd5b8063c8c8ebe4116100e7578063c8c8ebe414610aa2578063d257b34f14610ab8578063d85ba06314610ad8578063dd62ed3e14610aee57600080fd5b8063c024666814610a28578063c17b5b8c14610a48578063c18bc19514610a68578063c876d0b914610a8857600080fd5b80639ec22c0e1161019b578063a4c82a001161016a578063a4c82a0014610983578063a9059cbb14610999578063aacebbe3146109b9578063b62496f5146109d9578063bbc0c74214610a0957600080fd5b80639ec22c0e146109215780639fccce3214610937578063a0d82dc51461094d578063a457c2d71461096357600080fd5b8063924de9b7116101d7578063924de9b7146108b657806395d89b41146108d65780639a7a23d6146108eb5780639c3b4fdc1461090b57600080fd5b80638a8c523c1461084d5780638da5cb5b146108625780638ea5220f1461088057806392136913146108a057600080fd5b80633aeac4e11161030357806370a08231116102965780637571336a116102655780637571336a146107b757806375e3661e146107d757806375f0a874146107f75780637bce5a04146108175780638095d5641461082d57600080fd5b806370a0823114610737578063715018a61461076d578063730c188814610782578063751039fc146107a257600080fd5b80634fbee193116102d25780634fbee193146106b45780636902ca61146106ec5780636a486a8e146107015780636ddd17131461071757600080fd5b80633aeac4e1146106315780633ccfd60b1461065157806349bd5a5e146106665780634a62bb651461069a57600080fd5b80631a8145bb1161038657806327c8f8351161035557806327c8f835146105af5780632c3e486c146105c55780632e82f1a0146105db578063313ce567146105f5578063395093511461061157600080fd5b80631a8145bb146105435780631f3fed8f14610559578063203e727e1461056f57806323b872dd1461058f57600080fd5b806318160ddd116103c257806318160ddd146104d65780631816467f146104f5578063184c16c514610517578063199ffc721461052d57600080fd5b806306fdde03146103ff578063095ea7b31461042a57806310d5de531461045a5780631694505e1461048a57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610c3a565b60405161042191906131ef565b60405180910390f35b34801561043657600080fd5b5061044a610445366004613259565b610ccc565b6040519015158152602001610421565b34801561046657600080fd5b5061044a610475366004613285565b60216020526000908152604090205460ff1681565b34801561049657600080fd5b506104be7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610421565b3480156104e257600080fd5b506002545b604051908152602001610421565b34801561050157600080fd5b50610515610510366004613285565b610ce2565b005b34801561052357600080fd5b506104e7600f5481565b34801561053957600080fd5b506104e7600b5481565b34801561054f57600080fd5b506104e7601e5481565b34801561056557600080fd5b506104e7601d5481565b34801561057b57600080fd5b5061051561058a3660046132a2565b610d72565b34801561059b57600080fd5b5061044a6105aa3660046132bb565b610e4f565b3480156105bb57600080fd5b506104be61dead81565b3480156105d157600080fd5b506104e7600d5481565b3480156105e757600080fd5b50600c5461044a9060ff1681565b34801561060157600080fd5b5060405160128152602001610421565b34801561061d57600080fd5b5061044a61062c366004613259565b610ef9565b34801561063d57600080fd5b5061051561064c3660046132fc565b610f35565b34801561065d57600080fd5b506105156110bb565b34801561067257600080fd5b506104be7f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c81565b3480156106a657600080fd5b5060115461044a9060ff1681565b3480156106c057600080fd5b5061044a6106cf366004613285565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156106f857600080fd5b5061044a611201565b34801561070d57600080fd5b506104e760195481565b34801561072357600080fd5b5060115461044a9062010000900460ff1681565b34801561074357600080fd5b506104e7610752366004613285565b6001600160a01b031660009081526020819052604090205490565b34801561077957600080fd5b50610515611242565b34801561078e57600080fd5b5061051561079d366004613343565b611278565b3480156107ae57600080fd5b5061044a6113a1565b3480156107c357600080fd5b506105156107d236600461337c565b6113de565b3480156107e357600080fd5b506105156107f2366004613285565b611433565b34801561080357600080fd5b506006546104be906001600160a01b031681565b34801561082357600080fd5b506104e760165481565b34801561083957600080fd5b506105156108483660046133aa565b61147e565b34801561085957600080fd5b506105156114d4565b34801561086e57600080fd5b506005546001600160a01b03166104be565b34801561088c57600080fd5b506007546104be906001600160a01b031681565b3480156108ac57600080fd5b506104e7601a5481565b3480156108c257600080fd5b506105156108d13660046133d6565b611515565b3480156108e257600080fd5b5061041461155b565b3480156108f757600080fd5b5061051561090636600461337c565b61156a565b34801561091757600080fd5b506104e760185481565b34801561092d57600080fd5b506104e760105481565b34801561094357600080fd5b506104e7601f5481565b34801561095957600080fd5b506104e7601c5481565b34801561096f57600080fd5b5061044a61097e366004613259565b611646565b34801561098f57600080fd5b506104e7600e5481565b3480156109a557600080fd5b5061044a6109b4366004613259565b6116df565b3480156109c557600080fd5b506105156109d4366004613285565b6116ec565b3480156109e557600080fd5b5061044a6109f4366004613285565b60226020526000908152604090205460ff1681565b348015610a1557600080fd5b5060115461044a90610100900460ff1681565b348015610a3457600080fd5b50610515610a4336600461337c565b611773565b348015610a5457600080fd5b50610515610a633660046133aa565b6117fa565b348015610a7457600080fd5b50610515610a833660046132a2565b611850565b348015610a9457600080fd5b5060145461044a9060ff1681565b348015610aae57600080fd5b506104e760085481565b348015610ac457600080fd5b5061044a610ad33660046132a2565b611921565b348015610ae457600080fd5b506104e760155481565b348015610afa57600080fd5b506104e7610b093660046132fc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b4057600080fd5b506104e760095481565b348015610b5657600080fd5b5061044a611a73565b348015610b6b57600080fd5b506104e760175481565b348015610b8157600080fd5b50610515610b90366004613285565b611ab0565b348015610ba157600080fd5b506104e7601b5481565b348015610bb757600080fd5b506104e7600a5481565b348015610bcd57600080fd5b50610515610bdc366004613285565b611b4b565b348015610bed57600080fd5b5061044a610bfc366004613285565b6001600160a01b031660009081526013602052604090205460ff1690565b348015610c2657600080fd5b5061044a610c353660046132a2565b611b99565b606060038054610c49906133f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c75906133f3565b8015610cc25780601f10610c9757610100808354040283529160200191610cc2565b820191906000526020600020905b815481529060010190602001808311610ca557829003601f168201915b5050505050905090565b6000610cd9338484611e22565b50600192915050565b6005546001600160a01b03163314610d155760405162461bcd60e51b8152600401610d0c9061342e565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d9c5760405162461bcd60e51b8152600401610d0c9061342e565b670de0b6b3a76400006103e8610db160025490565b610dbc906001613479565b610dc69190613498565b610dd09190613498565b811015610e375760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610d0c565b610e4981670de0b6b3a7640000613479565b60085550565b6000610e5c848484611f46565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ee15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610d0c565b610eee8533858403611e22565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cd9918590610f309086906134ba565b611e22565b6005546001600160a01b03163314610f5f5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b038216610fb55760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610d0c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610ff757600080fd5b505afa15801561100b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102f91906134d2565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b15801561107d57600080fd5b505af1158015611091573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b591906134eb565b50505050565b6005546001600160a01b031633146110e55760405162461bcd60e51b8152600401610d0c9061342e565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561111e57600080fd5b505afa158015611132573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115691906134d2565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b15801561119857600080fd5b505af11580156111ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d091906134eb565b5060405133904780156108fc02916000818181858888f193505050501580156111fd573d6000803e3d6000fd5b5050565b6005546000906001600160a01b0316331461122e5760405162461bcd60e51b8152600401610d0c9061342e565b506011805460ff1916600190811790915590565b6005546001600160a01b0316331461126c5760405162461bcd60e51b8152600401610d0c9061342e565b61127660006128eb565b565b6005546001600160a01b031633146112a25760405162461bcd60e51b8152600401610d0c9061342e565b6102588310156113105760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610d0c565b6103e88211158015611320575060015b6113855760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610d0c565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b031633146113ce5760405162461bcd60e51b8152600401610d0c9061342e565b506011805460ff19169055600190565b6005546001600160a01b031633146114085760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461145d5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6005546001600160a01b031633146114a85760405162461bcd60e51b8152600401610d0c9061342e565b601683905560178290556018819055806114c283856134ba565b6114cc91906134ba565b601555505050565b6005546001600160a01b031633146114fe5760405162461bcd60e51b8152600401610d0c9061342e565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461153f5760405162461bcd60e51b8152600401610d0c9061342e565b60118054911515620100000262ff000019909216919091179055565b606060048054610c49906133f3565b6005546001600160a01b031633146115945760405162461bcd60e51b8152600401610d0c9061342e565b7f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c6001600160a01b0316826001600160a01b0316141561163c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610d0c565b6111fd828261293d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d0c565b6116d53385858403611e22565b5060019392505050565b6000610cd9338484611f46565b6005546001600160a01b031633146117165760405162461bcd60e51b8152600401610d0c9061342e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461179d5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118245760405162461bcd60e51b8152600401610d0c9061342e565b601a839055601b829055601c8190558061183e83856134ba565b61184891906134ba565b601955505050565b6005546001600160a01b0316331461187a5760405162461bcd60e51b8152600401610d0c9061342e565b670de0b6b3a76400006103e861188f60025490565b61189a906005613479565b6118a49190613498565b6118ae9190613498565b8110156119095760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610d0c565b61191b81670de0b6b3a7640000613479565b600a5550565b6005546000906001600160a01b0316331461194e5760405162461bcd60e51b8152600401610d0c9061342e565b620186a061195b60025490565b611966906001613479565b6119709190613498565b8210156119dd5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610d0c565b6103e86119e960025490565b6119f4906005613479565b6119fe9190613498565b821115611a6a5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610d0c565b50600955600190565b6005546000906001600160a01b03163314611aa05760405162461bcd60e51b8152600401610d0c9061342e565b506014805460ff19169055600190565b6005546001600160a01b03163314611ada5760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b038116611b3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d0c565b611b48816128eb565b50565b6005546001600160a01b03163314611b755760405162461bcd60e51b8152600401610d0c9061342e565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6005546000906001600160a01b03163314611bc65760405162461bcd60e51b8152600401610d0c9061342e565b600f54601054611bd691906134ba565b4211611c245760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610d0c565b6103e8821115611c895760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610d0c565b426010556040516370a0823160e01b81526001600160a01b037f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c16600482015260009030906370a082319060240160206040518083038186803b158015611cef57600080fd5b505afa158015611d03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2791906134d2565b90506000611d41612710611d3b8487612991565b906129a4565b90508015611d7657611d767f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c61dead836129b0565b60007f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dd657600080fd5b505af1158015611dea573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611e845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d0c565b6001600160a01b038216611ee55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d0c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611f6c5760405162461bcd60e51b8152600401610d0c90613508565b6001600160a01b038216611f925760405162461bcd60e51b8152600401610d0c9061354d565b6001600160a01b03831660009081526013602052604090205460ff1615611ff05760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610d0c565b6001600160a01b03821660009081526013602052604090205460ff16156120505760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610d0c565b8061206657612061838360006129b0565b505050565b60115460ff1615612532576005546001600160a01b0384811691161480159061209d57506005546001600160a01b03838116911614155b80156120b157506001600160a01b03821615155b80156120c857506001600160a01b03821661dead14155b80156120de5750600554600160a01b900460ff16155b1561253257601154610100900460ff16612174576001600160a01b038316600090815260208052604090205460ff168061212f57506001600160a01b038216600090815260208052604090205460ff165b6121745760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610d0c565b60145460ff16156122cc576005546001600160a01b038381169116148015906121cf57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561220d57507f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c6001600160a01b0316826001600160a01b031614155b156122cc5732600090815260126020526040902054439061222f9060016134ba565b106122b95760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610d0c565b3260009081526012602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff16801561230d57506001600160a01b03821660009081526021602052604090205460ff16155b156123f1576008548111156123825760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610d0c565b600a546001600160a01b0383166000908152602081905260409020546123a890836134ba565b11156123ec5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610d0c565b612532565b6001600160a01b03821660009081526022602052604090205460ff16801561243257506001600160a01b03831660009081526021602052604090205460ff16155b156124a8576008548111156123ec5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610d0c565b6001600160a01b03821660009081526021602052604090205460ff1661253257600a546001600160a01b0383166000908152602081905260409020546124ee90836134ba565b11156125325760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610d0c565b306000908152602081905260409020546009548110801590819061255e575060115462010000900460ff165b80156125745750600554600160a01b900460ff16155b801561259957506001600160a01b03851660009081526022602052604090205460ff16155b80156125bd57506001600160a01b038516600090815260208052604090205460ff16155b80156125e157506001600160a01b038416600090815260208052604090205460ff16155b1561260f576005805460ff60a01b1916600160a01b179055612601612b04565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561264157506001600160a01b03841660009081526022602052604090205460ff165b801561264f5750600c5460ff165b801561266a5750600d54600e5461266691906134ba565b4210155b801561268e57506001600160a01b038516600090815260208052604090205460ff16155b1561269d5761269b612d60565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806126e957506001600160a01b038516600090815260208052604090205460ff165b156126f2575060005b600081156128d7576001600160a01b03861660009081526022602052604090205460ff16801561272457506000601954115b156127dc576127436064611d3b6019548861299190919063ffffffff16565b9050601954601b54826127569190613479565b6127609190613498565b601e600082825461277191906134ba565b9091555050601954601c546127869083613479565b6127909190613498565b601f60008282546127a191906134ba565b9091555050601954601a546127b69083613479565b6127c09190613498565b601d60008282546127d191906134ba565b909155506128b99050565b6001600160a01b03871660009081526022602052604090205460ff16801561280657506000601554115b156128b9576128256064611d3b6015548861299190919063ffffffff16565b9050601554601754826128389190613479565b6128429190613498565b601e600082825461285391906134ba565b90915550506015546018546128689083613479565b6128729190613498565b601f600082825461288391906134ba565b90915550506015546016546128989083613479565b6128a29190613498565b601d60008282546128b391906134ba565b90915550505b80156128ca576128ca8730836129b0565b6128d48186613590565b94505b6128e28787876129b0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061299d8284613479565b9392505050565b600061299d8284613498565b6001600160a01b0383166129d65760405162461bcd60e51b8152600401610d0c90613508565b6001600160a01b0382166129fc5760405162461bcd60e51b8152600401610d0c9061354d565b6001600160a01b03831660009081526020819052604090205481811015612a745760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d0c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612aab9084906134ba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612af791815260200190565b60405180910390a36110b5565b3060009081526020819052604081205490506000601f54601d54601e54612b2b91906134ba565b612b3591906134ba565b90506000821580612b44575081155b15612b4e57505050565b600954612b5c906014613479565b831115612b7457600954612b71906014613479565b92505b6000600283601e5486612b879190613479565b612b919190613498565b612b9b9190613498565b90506000612ba98583612eff565b905047612bb582612f0b565b6000612bc14783612eff565b90506000612bef6002601e54612bd79190613498565b612be19089613590565b601d54611d3b908590612991565b90506000612c1d6002601e54612c059190613498565b612c0f908a613590565b601f54611d3b908690612991565b9050600081612c2c8486613590565b612c369190613590565b6000601e819055601d819055601f8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612c93576040519150601f19603f3d011682016040523d82523d6000602084013e612c98565b606091505b50909850508615801590612cac5750600081115b15612cff57612cbb87826130da565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612d4c576040519150601f19603f3d011682016040523d82523d6000602084013e612d51565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c166004820152600090819030906370a082319060240160206040518083038186803b158015612dc857600080fd5b505afa158015612ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e0091906134d2565b90506000612e1f612710611d3b600b548561299190919063ffffffff16565b90508015612e5457612e547f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c61dead836129b0565b60007f00000000000000000000000088ade00b4b79519518d57f6d85ece190b58a384c9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612eb457600080fd5b505af1158015612ec8573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061299d8284613590565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612f4057612f406135a7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612fb957600080fd5b505afa158015612fcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ff191906135bd565b81600181518110613004576130046135a7565b60200260200101906001600160a01b031690816001600160a01b03168152505061304f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e22565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906130a49085906000908690309042906004016135da565b600060405180830381600087803b1580156130be57600080fd5b505af11580156130d2573d6000803e3d6000fd5b505050505050565b613105307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e22565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71982308560008061314c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b1580156131af57600080fd5b505af11580156131c3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906131e8919061364b565b5050505050565b600060208083528351808285015260005b8181101561321c57858101830151858201604001528201613200565b8181111561322e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611b4857600080fd5b6000806040838503121561326c57600080fd5b823561327781613244565b946020939093013593505050565b60006020828403121561329757600080fd5b813561299d81613244565b6000602082840312156132b457600080fd5b5035919050565b6000806000606084860312156132d057600080fd5b83356132db81613244565b925060208401356132eb81613244565b929592945050506040919091013590565b6000806040838503121561330f57600080fd5b823561331a81613244565b9150602083013561332a81613244565b809150509250929050565b8015158114611b4857600080fd5b60008060006060848603121561335857600080fd5b8335925060208401359150604084013561337181613335565b809150509250925092565b6000806040838503121561338f57600080fd5b823561339a81613244565b9150602083013561332a81613335565b6000806000606084860312156133bf57600080fd5b505081359360208301359350604090920135919050565b6000602082840312156133e857600080fd5b813561299d81613335565b600181811c9082168061340757607f821691505b6020821081141561342857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561349357613493613463565b500290565b6000826134b557634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156134cd576134cd613463565b500190565b6000602082840312156134e457600080fd5b5051919050565b6000602082840312156134fd57600080fd5b815161299d81613335565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156135a2576135a2613463565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156135cf57600080fd5b815161299d81613244565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561362a5784516001600160a01b031683529383019391830191600101613605565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561366057600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220de6a666c82a4129e9dafc135c382669427c0ed442b10c63d212620ab99b9944f64736f6c63430008090033

Deployed Bytecode Sourcemap

30966:20402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8925:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11092:169;;;;;;;;;;-1:-1:-1;11092:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11092:169:0;1072:187:1;32642:63:0;;;;;;;;;;-1:-1:-1;32642:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31047:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;31047:51:0;1516:230:1;10045:108:0;;;;;;;;;;-1:-1:-1;10133:12:0;;10045:108;;;1897:25:1;;;1885:2;1870:18;10045:108:0;1751:177:1;39742:157:0;;;;;;;;;;-1:-1:-1;39742:157:0;;;;;:::i;:::-;;:::i;:::-;;31613:47;;;;;;;;;;;;;;;;31427:36;;;;;;;;;;;;;;;;32426:33;;;;;;;;;;;;;;;;32386;;;;;;;;;;;;;;;;37222:275;;;;;;;;;;-1:-1:-1;37222:275:0;;;;;:::i;:::-;;:::i;11743:492::-;;;;;;;;;;-1:-1:-1;11743:492:0;;;;;:::i;:::-;;:::i;31150:53::-;;;;;;;;;;;;31196:6;31150:53;;31523:45;;;;;;;;;;;;;;;;31483:33;;;;;;;;;;-1:-1:-1;31483:33:0;;;;;;;;9887:93;;;;;;;;;;-1:-1:-1;9887:93:0;;9970:2;2929:36:1;;2917:2;2902:18;9887:93:0;2787:184:1;12644:215:0;;;;;;;;;;-1:-1:-1;12644:215:0;;;;;:::i;:::-;;:::i;50869:283::-;;;;;;;;;;-1:-1:-1;50869:283:0;;;;;:::i;:::-;;:::i;50615:246::-;;;;;;;;;;;;;:::i;31105:38::-;;;;;;;;;;;;;;;31711:33;;;;;;;;;;-1:-1:-1;31711:33:0;;;;;;;;39907:126;;;;;;;;;;-1:-1:-1;39907:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39997:28:0;39973:4;39997:28;;;:19;:28;;;;;;;;;39907:126;36331:120;;;;;;;;;;;;;:::i;32241:28::-;;;;;;;;;;;;;;;;31791:31;;;;;;;;;;-1:-1:-1;31791:31:0;;;;;;;;;;;10216:127;;;;;;;;;;-1:-1:-1;10216:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10317:18:0;10290:7;10317:18;;;;;;;;;;;;10216:127;2442:103;;;;;;;;;;;;;:::i;48206:555::-;;;;;;;;;;-1:-1:-1;48206:555:0;;;;;:::i;:::-;;:::i;36202:121::-;;;;;;;;;;;;;:::i;37769:167::-;;;;;;;;;;-1:-1:-1;37769:167:0;;;;;:::i;:::-;;:::i;51265:100::-;;;;;;;;;;-1:-1:-1;51265:100:0;;;;;:::i;:::-;;:::i;31242:30::-;;;;;;;;;;-1:-1:-1;31242:30:0;;;;-1:-1:-1;;;;;31242:30:0;;;32134;;;;;;;;;;;;;;;;38140:332;;;;;;;;;;-1:-1:-1;38140:332:0;;;;;:::i;:::-;;:::i;35995:155::-;;;;;;;;;;;;;:::i;1791:87::-;;;;;;;;;;-1:-1:-1;1864:6:0;;-1:-1:-1;;;;;1864:6:0;1791:87;;31279:24;;;;;;;;;;-1:-1:-1;31279:24:0;;;;-1:-1:-1;;;;;31279:24:0;;;32276:31;;;;;;;;;;;;;;;;38032:100;;;;;;;;;;-1:-1:-1;38032:100:0;;;;;:::i;:::-;;:::i;9144:104::-;;;;;;;;;;;;;:::i;39018:304::-;;;;;;;;;;-1:-1:-1;39018:304:0;;;;;:::i;:::-;;:::i;32208:24::-;;;;;;;;;;;;;;;;31667:35;;;;;;;;;;;;;;;;32466:27;;;;;;;;;;;;;;;;32352:25;;;;;;;;;;;;;;;;13362:413;;;;;;;;;;-1:-1:-1;13362:413:0;;;;;:::i;:::-;;:::i;31575:29::-;;;;;;;;;;;;;;;;10556:175;;;;;;;;;;-1:-1:-1;10556:175:0;;;;;:::i;:::-;;:::i;39526:208::-;;;;;;;;;;-1:-1:-1;39526:208:0;;;;;:::i;:::-;;:::i;32863:57::-;;;;;;;;;;-1:-1:-1;32863:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31751:33;;;;;;;;;;-1:-1:-1;31751:33:0;;;;;;;;;;;38828:182;;;;;;;;;;-1:-1:-1;38828:182:0;;;;;:::i;:::-;;:::i;38480:340::-;;;;;;;;;;-1:-1:-1;38480:340:0;;;;;:::i;:::-;;:::i;37505:256::-;;;;;;;;;;-1:-1:-1;37505:256:0;;;;;:::i;:::-;;:::i;32052:39::-;;;;;;;;;;-1:-1:-1;32052:39:0;;;;;;;;31312:35;;;;;;;;;;;;;;;;36717:497;;;;;;;;;;-1:-1:-1;36717:497:0;;;;;:::i;:::-;;:::i;32100:27::-;;;;;;;;;;;;;;;;10794:151;;;;;;;;;;-1:-1:-1;10794:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10910:18:0;;;10883:7;10910:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10794:151;31354:33;;;;;;;;;;;;;;;;36512:135;;;;;;;;;;;;;:::i;32171:30::-;;;;;;;;;;;;;;;;2700:201;;;;;;;;;;-1:-1:-1;2700:201:0;;;;;:::i;:::-;;:::i;32314:31::-;;;;;;;;;;;;;;;;31394:24;;;;;;;;;;;;;;;;51160:97;;;;;;;;;;-1:-1:-1;51160:97:0;;;;;:::i;:::-;;:::i;40041:113::-;;;;;;;;;;-1:-1:-1;40041:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;40126:20:0;40102:4;40126:20;;;:11;:20;;;;;;;;;40041:113;49558:1049;;;;;;;;;;-1:-1:-1;49558:1049:0;;;;;:::i;:::-;;:::i;8925:100::-;8979:13;9012:5;9005:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8925:100;:::o;11092:169::-;11175:4;11192:39;738:10;11215:7;11224:6;11192:8;:39::i;:::-;-1:-1:-1;11249:4:0;11092:169;;;;:::o;39742:157::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;;;;;;;;;39849:9:::1;::::0;39821:38:::1;::::0;-1:-1:-1;;;;;39849:9:0;;::::1;::::0;39821:38;::::1;::::0;::::1;::::0;39849:9:::1;::::0;39821:38:::1;39870:9;:21:::0;;-1:-1:-1;;;;;;39870:21:0::1;-1:-1:-1::0;;;;;39870:21:0;;;::::1;::::0;;;::::1;::::0;;39742:157::o;37222:275::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;37359:4:::1;37351;37330:13;10133:12:::0;;;10045:108;37330:13:::1;:17;::::0;37346:1:::1;37330:17;:::i;:::-;37329:26;;;;:::i;:::-;37328:35;;;;:::i;:::-;37318:6;:45;;37296:142;;;::::0;-1:-1:-1;;;37296:142:0;;6303:2:1;37296:142:0::1;::::0;::::1;6285:21:1::0;6342:2;6322:18;;;6315:30;6381:34;6361:18;;;6354:62;-1:-1:-1;;;6432:18:1;;;6425:45;6487:19;;37296:142:0::1;6101:411:1::0;37296:142:0::1;37472:17;:6:::0;37482::::1;37472:17;:::i;:::-;37449:20;:40:::0;-1:-1:-1;37222:275:0:o;11743:492::-;11883:4;11900:36;11910:6;11918:9;11929:6;11900:9;:36::i;:::-;-1:-1:-1;;;;;11976:19:0;;11949:24;11976:19;;;:11;:19;;;;;;;;738:10;11976:33;;;;;;;;12028:26;;;;12020:79;;;;-1:-1:-1;;;12020:79:0;;6719:2:1;12020:79:0;;;6701:21:1;6758:2;6738:18;;;6731:30;6797:34;6777:18;;;6770:62;-1:-1:-1;;;6848:18:1;;;6841:38;6896:19;;12020:79:0;6517:404:1;12020:79:0;12135:57;12144:6;738:10;12185:6;12166:16;:25;12135:8;:57::i;:::-;-1:-1:-1;12223:4:0;;11743:492;-1:-1:-1;;;;11743:492:0:o;12644:215::-;738:10;12732:4;12781:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12781:34:0;;;;;;;;;;12732:4;;12749:80;;12772:7;;12781:47;;12818:10;;12781:47;:::i;:::-;12749:8;:80::i;50869:283::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50959:20:0;::::1;50951:59;;;::::0;-1:-1:-1;;;50951:59:0;;7261:2:1;50951:59:0::1;::::0;::::1;7243:21:1::0;7300:2;7280:18;;;7273:30;7339:28;7319:18;;;7312:56;7385:18;;50951:59:0::1;7059:350:1::0;50951:59:0::1;51048:39;::::0;-1:-1:-1;;;51048:39:0;;51081:4:::1;51048:39;::::0;::::1;1689:51:1::0;51021:24:0::1;::::0;-1:-1:-1;;;;;51048:24:0;::::1;::::0;::::1;::::0;1662:18:1;;51048:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51098:46;::::0;-1:-1:-1;;;51098:46:0;;-1:-1:-1;;;;;7795:32:1;;;51098:46:0::1;::::0;::::1;7777:51:1::0;7844:18;;;7837:34;;;51021:66:0;;-1:-1:-1;51098:23:0;;::::1;::::0;::::1;::::0;7750:18:1;;51098:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50940:212;50869:283:::0;;:::o;50615:246::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;50683:46:::1;::::0;-1:-1:-1;;;50683:46:0;;50698:4:::1;50683:46;::::0;::::1;1689:51:1::0;;;50665:15:0::1;::::0;50683:31:::1;::::0;1662:18:1;;50683:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50740:51;::::0;-1:-1:-1;;;50740:51:0;;50771:10:::1;50740:51;::::0;::::1;7777::1::0;7844:18;;;7837:34;;;50665:64:0;;-1:-1:-1;50755:4:0::1;::::0;50740:30:::1;::::0;7750:18:1;;50740:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;50802:51:0::1;::::0;50810:10:::1;::::0;50831:21:::1;50802:51:::0;::::1;;;::::0;::::1;::::0;;;50831:21;50810:10;50802:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50654:207;50615:246::o:0;36331:120::-;1864:6;;36383:4;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;36400:14:0::1;:21:::0;;-1:-1:-1;;36400:21:0::1;36417:4;36400:21:::0;;::::1;::::0;;;36331:120;:::o;2442:103::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;2507:30:::1;2534:1;2507:18;:30::i;:::-;2442:103::o:0;48206:555::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;48408:3:::1;48385:19;:26;;48363:127;;;::::0;-1:-1:-1;;;48363:127:0;;8334:2:1;48363:127:0::1;::::0;::::1;8316:21:1::0;8373:2;8353:18;;;8346:30;8412:34;8392:18;;;8385:62;-1:-1:-1;;;8463:18:1;;;8456:49;8522:19;;48363:127:0::1;8132:415:1::0;48363:127:0::1;48535:4;48523:8;:16;;:33;;;;-1:-1:-1::0;48543:13:0;48523:33:::1;48501:131;;;::::0;-1:-1:-1;;;48501:131:0;;8754:2:1;48501:131:0::1;::::0;::::1;8736:21:1::0;8793:2;8773:18;;;8766:30;8832:34;8812:18;;;8805:62;-1:-1:-1;;;8883:18:1;;;8876:46;8939:19;;48501:131:0::1;8552:412:1::0;48501:131:0::1;48643:15;:37:::0;;;;48691:16:::1;:27:::0;48729:13:::1;:24:::0;;-1:-1:-1;;48729:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48206:555::o;36202:121::-;1864:6;;36254:4;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;36271:14:0::1;:22:::0;;-1:-1:-1;;36271:22:0::1;::::0;;;36202:121;:::o;37769:167::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37882:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37882:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37769:167::o;51265:100::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51330:19:0::1;51352:5;51330:19:::0;;;:11:::1;:19;::::0;;;;:27;;-1:-1:-1;;51330:27:0::1;::::0;;51265:100::o;38140:332::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;38290:15:::1;:31:::0;;;38332:15:::1;:31:::0;;;38374:9:::1;:19:::0;;;38386:7;38419:33:::1;38350:13:::0;38308;38419:33:::1;:::i;:::-;:45;;;;:::i;:::-;38404:12;:60:::0;-1:-1:-1;;;38140:332:0:o;35995:155::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;36050:13:::1;:20:::0;;-1:-1:-1;;36081:18:0;;;;;36127:15:::1;36110:14;:32:::0;35995:155::o;38032:100::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;38103:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38103:21:0;;::::1;::::0;;;::::1;::::0;;38032:100::o;9144:104::-;9200:13;9233:7;9226:14;;;;;:::i;39018:304::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;39162:13:::1;-1:-1:-1::0;;;;;39154:21:0::1;:4;-1:-1:-1::0;;;;;39154:21:0::1;;;39132:128;;;::::0;-1:-1:-1;;;39132:128:0;;9171:2:1;39132:128:0::1;::::0;::::1;9153:21:1::0;9210:2;9190:18;;;9183:30;9249:34;9229:18;;;9222:62;9320:27;9300:18;;;9293:55;9365:19;;39132:128:0::1;8969:421:1::0;39132:128:0::1;39273:41;39302:4;39308:5;39273:28;:41::i;13362:413::-:0;738:10;13455:4;13499:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13499:34:0;;;;;;;;;;13552:35;;;;13544:85;;;;-1:-1:-1;;;13544:85:0;;9597:2:1;13544:85:0;;;9579:21:1;9636:2;9616:18;;;9609:30;9675:34;9655:18;;;9648:62;-1:-1:-1;;;9726:18:1;;;9719:35;9771:19;;13544:85:0;9395:401:1;13544:85:0;13665:67;738:10;13688:7;13716:15;13697:16;:34;13665:8;:67::i;:::-;-1:-1:-1;13763:4:0;;13362:413;-1:-1:-1;;;13362:413:0:o;10556:175::-;10642:4;10659:42;738:10;10683:9;10694:6;10659:9;:42::i;39526:208::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;39663:15:::1;::::0;39620:59:::1;::::0;-1:-1:-1;;;;;39663:15:0;;::::1;::::0;39620:59;::::1;::::0;::::1;::::0;39663:15:::1;::::0;39620:59:::1;39690:15;:36:::0;;-1:-1:-1;;;;;;39690:36:0::1;-1:-1:-1::0;;;;;39690:36:0;;;::::1;::::0;;;::::1;::::0;;39526:208::o;38828:182::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38913:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;38913:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38968:34;;1212:41:1;;;38968:34:0::1;::::0;1185:18:1;38968:34:0::1;;;;;;;38828:182:::0;;:::o;38480:340::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;38631:16:::1;:32:::0;;;38674:16:::1;:32:::0;;;38717:10:::1;:20:::0;;;38730:7;38764:35:::1;38693:13:::0;38650;38764:35:::1;:::i;:::-;:48;;;;:::i;:::-;38748:13;:64:::0;-1:-1:-1;;;38480:340:0:o;37505:256::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;37645:4:::1;37637;37616:13;10133:12:::0;;;10045:108;37616:13:::1;:17;::::0;37632:1:::1;37616:17;:::i;:::-;37615:26;;;;:::i;:::-;37614:35;;;;:::i;:::-;37604:6;:45;;37582:131;;;::::0;-1:-1:-1;;;37582:131:0;;10003:2:1;37582:131:0::1;::::0;::::1;9985:21:1::0;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:1;;;10125:34;10176:19;;37582:131:0::1;9801:400:1::0;37582:131:0::1;37736:17;:6:::0;37746::::1;37736:17;:::i;:::-;37724:9;:29:::0;-1:-1:-1;37505:256:0:o;36717:497::-;1864:6;;36825:4;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;36904:6:::1;36883:13;10133:12:::0;;;10045:108;36883:13:::1;:17;::::0;36899:1:::1;36883:17;:::i;:::-;36882:28;;;;:::i;:::-;36869:9;:41;;36847:144;;;::::0;-1:-1:-1;;;36847:144:0;;10408:2:1;36847:144:0::1;::::0;::::1;10390:21:1::0;10447:2;10427:18;;;10420:30;10486:34;10466:18;;;10459:62;-1:-1:-1;;;10537:18:1;;;10530:51;10598:19;;36847:144:0::1;10206:417:1::0;36847:144:0::1;37059:4;37038:13;10133:12:::0;;;10045:108;37038:13:::1;:17;::::0;37054:1:::1;37038:17;:::i;:::-;37037:26;;;;:::i;:::-;37024:9;:39;;37002:141;;;::::0;-1:-1:-1;;;37002:141:0;;10830:2:1;37002:141:0::1;::::0;::::1;10812:21:1::0;10869:2;10849:18;;;10842:30;10908:34;10888:18;;;10881:62;-1:-1:-1;;;10959:18:1;;;10952:50;11019:19;;37002:141:0::1;10628:416:1::0;37002:141:0::1;-1:-1:-1::0;37154:18:0::1;:30:::0;37202:4:::1;::::0;36717:497::o;36512:135::-;1864:6;;36572:4;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;36589:20:0::1;:28:::0;;-1:-1:-1;;36589:28:0::1;::::0;;;36512:135;:::o;2700:201::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2789:22:0;::::1;2781:73;;;::::0;-1:-1:-1;;;2781:73:0;;11251:2:1;2781:73:0::1;::::0;::::1;11233:21:1::0;11290:2;11270:18;;;11263:30;11329:34;11309:18;;;11302:62;-1:-1:-1;;;11380:18:1;;;11373:36;11426:19;;2781:73:0::1;11049:402:1::0;2781:73:0::1;2865:28;2884:8;2865:18;:28::i;:::-;2700:201:::0;:::o;51160:97::-;1864:6;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51223:19:0::1;;::::0;;;:11:::1;:19;::::0;;;;:26;;-1:-1:-1;;51223:26:0::1;51245:4;51223:26;::::0;;51160:97::o;49558:1049::-;1864:6;;49669:4;;-1:-1:-1;;;;;1864:6:0;738:10;2011:23;2003:68;;;;-1:-1:-1;;;2003:68:0;;;;;;;:::i;:::-;49754:19:::1;;49731:20;;:42;;;;:::i;:::-;49713:15;:60;49691:142;;;::::0;-1:-1:-1;;;49691:142:0;;11658:2:1;49691:142:0::1;::::0;::::1;11640:21:1::0;;;11677:18;;;11670:30;11736:34;11716:18;;;11709:62;11788:18;;49691:142:0::1;11456:356:1::0;49691:142:0::1;49863:4;49852:7;:15;;49844:70;;;::::0;-1:-1:-1;;;49844:70:0;;12019:2:1;49844:70:0::1;::::0;::::1;12001:21:1::0;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;-1:-1:-1;;;12148:18:1;;;12141:40;12198:19;;49844:70:0::1;11817:406:1::0;49844:70:0::1;49948:15;49925:20;:38:::0;50049:29:::1;::::0;-1:-1:-1;;;50049:29:0;;-1:-1:-1;;;;;50064:13:0::1;1707:32:1::0;50049:29:0::1;::::0;::::1;1689:51:1::0;50018:28:0::1;::::0;50049:4:::1;::::0;:14:::1;::::0;1662:18:1;;50049:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50018:60:::0;-1:-1:-1;50128:20:0::1;50151:44;50189:5;50151:33;50018:60:::0;50176:7;50151:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;50128:67:::0;-1:-1:-1;50293:16:0;;50289:110:::1;;50326:61;50342:13;50365:6;50374:12;50326:15;:61::i;:::-;50474:19;50511:13;50474:51;;50536:4;-1:-1:-1::0;;;;;50536:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50563:14:0::1;::::0;::::1;::::0;-1:-1:-1;50563:14:0;;-1:-1:-1;50563:14:0::1;-1:-1:-1::0;50595:4:0::1;::::0;49558:1049;-1:-1:-1;;;;49558:1049:0:o;17046:380::-;-1:-1:-1;;;;;17182:19:0;;17174:68;;;;-1:-1:-1;;;17174:68:0;;12430:2:1;17174:68:0;;;12412:21:1;12469:2;12449:18;;;12442:30;12508:34;12488:18;;;12481:62;-1:-1:-1;;;12559:18:1;;;12552:34;12603:19;;17174:68:0;12228:400:1;17174:68:0;-1:-1:-1;;;;;17261:21:0;;17253:68;;;;-1:-1:-1;;;17253:68:0;;12835:2:1;17253:68:0;;;12817:21:1;12874:2;12854:18;;;12847:30;12913:34;12893:18;;;12886:62;-1:-1:-1;;;12964:18:1;;;12957:32;13006:19;;17253:68:0;12633:398:1;17253:68:0;-1:-1:-1;;;;;17334:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17386:32;;1897:25:1;;;17386:32:0;;1870:18:1;17386:32:0;;;;;;;17046:380;;;:::o;40162:5138::-;-1:-1:-1;;;;;40294:18:0;;40286:68;;;;-1:-1:-1;;;40286:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40373:16:0;;40365:64;;;;-1:-1:-1;;;40365:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40449:17:0;;;;;;:11;:17;;;;;;;;40448:18;40440:48;;;;-1:-1:-1;;;40440:48:0;;14048:2:1;40440:48:0;;;14030:21:1;14087:2;14067:18;;;14060:30;-1:-1:-1;;;14106:18:1;;;14099:48;14164:18;;40440:48:0;13846:342:1;40440:48:0;-1:-1:-1;;;;;40508:15:0;;;;;;:11;:15;;;;;;;;40507:16;40499:48;;;;-1:-1:-1;;;40499:48:0;;14395:2:1;40499:48:0;;;14377:21:1;14434:2;14414:18;;;14407:30;-1:-1:-1;;;14453:18:1;;;14446:50;14513:18;;40499:48:0;14193:344:1;40499:48:0;40564:11;40560:93;;40592:28;40608:4;40614:2;40618:1;40592:15;:28::i;:::-;40162:5138;;;:::o;40560:93::-;40669:14;;;;40665:2496;;;1864:6;;-1:-1:-1;;;;;40722:15:0;;;1864:6;;40722:15;;;;:49;;-1:-1:-1;1864:6:0;;-1:-1:-1;;;;;40758:13:0;;;1864:6;;40758:13;;40722:49;:86;;;;-1:-1:-1;;;;;;40792:16:0;;;;40722:86;:128;;;;-1:-1:-1;;;;;;40829:21:0;;40843:6;40829:21;;40722:128;:158;;;;-1:-1:-1;40872:8:0;;-1:-1:-1;;;40872:8:0;;;;40871:9;40722:158;40700:2450;;;40920:13;;;;;;;40915:223;;-1:-1:-1;;;;;40992:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41021:23:0;;;;;;:19;:23;;;;;;;;40992:52;40958:160;;;;-1:-1:-1;;;40958:160:0;;14744:2:1;40958:160:0;;;14726:21:1;14783:2;14763:18;;;14756:30;-1:-1:-1;;;14802:18:1;;;14795:52;14864:18;;40958:160:0;14542:346:1;40958:160:0;41294:20;;;;41290:650;;;1864:6;;-1:-1:-1;;;;;41369:13:0;;;1864:6;;41369:13;;;;:72;;;41425:15;-1:-1:-1;;;;;41411:30:0;:2;-1:-1:-1;;;;;41411:30:0;;;41369:72;:129;;;;;41484:13;-1:-1:-1;;;;;41470:28:0;:2;-1:-1:-1;;;;;41470:28:0;;;41369:129;41339:582;;;41616:9;41587:39;;;;:28;:39;;;;;;41666:12;;41587:43;;41629:1;41587:43;:::i;:::-;:91;41549:267;;;;-1:-1:-1;;;41549:267:0;;15095:2:1;41549:267:0;;;15077:21:1;15134:2;15114:18;;;15107:30;15173:34;15153:18;;;15146:62;15244:34;15224:18;;;15217:62;-1:-1:-1;;;15295:19:1;;;15288:45;15350:19;;41549:267:0;14893:482:1;41549:267:0;41872:9;41843:39;;;;:28;:39;;;;;41885:12;41843:54;;41339:582;-1:-1:-1;;;;;42014:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42071:35:0;;;;;;:31;:35;;;;;;;;42070:36;42014:92;41988:1147;;;42193:20;;42183:6;:30;;42149:169;;;;-1:-1:-1;;;42149:169:0;;15582:2:1;42149:169:0;;;15564:21:1;15621:2;15601:18;;;15594:30;15660:34;15640:18;;;15633:62;-1:-1:-1;;;15711:18:1;;;15704:51;15772:19;;42149:169:0;15380:417:1;42149:169:0;42401:9;;-1:-1:-1;;;;;10317:18:0;;10290:7;10317:18;;;;;;;;;;;42375:22;;:6;:22;:::i;:::-;:35;;42341:140;;;;-1:-1:-1;;;42341:140:0;;16004:2:1;42341:140:0;;;15986:21:1;16043:2;16023:18;;;16016:30;-1:-1:-1;;;16062:18:1;;;16055:49;16121:18;;42341:140:0;15802:343:1;42341:140:0;41988:1147;;;-1:-1:-1;;;;;42579:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42634:37:0;;;;;;:31;:37;;;;;;;;42633:38;42579:92;42553:582;;;42758:20;;42748:6;:30;;42714:170;;;;-1:-1:-1;;;42714:170:0;;16352:2:1;42714:170:0;;;16334:21:1;16391:2;16371:18;;;16364:30;16430:34;16410:18;;;16403:62;-1:-1:-1;;;16481:18:1;;;16474:52;16543:19;;42714:170:0;16150:418:1;42553:582:0;-1:-1:-1;;;;;42915:35:0;;;;;;:31;:35;;;;;;;;42910:225;;43035:9;;-1:-1:-1;;;;;10317:18:0;;10290:7;10317:18;;;;;;;;;;;43009:22;;:6;:22;:::i;:::-;:35;;42975:140;;;;-1:-1:-1;;;42975:140:0;;16004:2:1;42975:140:0;;;15986:21:1;16043:2;16023:18;;;16016:30;-1:-1:-1;;;16062:18:1;;;16055:49;16121:18;;42975:140:0;15802:343:1;42975:140:0;43222:4;43173:28;10317:18;;;;;;;;;;;43280;;43256:42;;;;;;;43329:35;;-1:-1:-1;43353:11:0;;;;;;;43329:35;:61;;;;-1:-1:-1;43382:8:0;;-1:-1:-1;;;43382:8:0;;;;43381:9;43329:61;:110;;;;-1:-1:-1;;;;;;43408:31:0;;;;;;:25;:31;;;;;;;;43407:32;43329:110;:153;;;;-1:-1:-1;;;;;;43457:25:0;;;;;;:19;:25;;;;;;;;43456:26;43329:153;:194;;;;-1:-1:-1;;;;;;43500:23:0;;;;;;:19;:23;;;;;;;;43499:24;43329:194;43311:326;;;43550:8;:15;;-1:-1:-1;;;;43550:15:0;-1:-1:-1;;;43550:15:0;;;43582:10;:8;:10::i;:::-;43609:8;:16;;-1:-1:-1;;;;43609:16:0;;;43311:326;43668:8;;-1:-1:-1;;;43668:8:0;;;;43667:9;:55;;;;-1:-1:-1;;;;;;43693:29:0;;;;;;:25;:29;;;;;;;;43667:55;:85;;;;-1:-1:-1;43739:13:0;;;;43667:85;:153;;;;;43805:15;;43788:14;;:32;;;;:::i;:::-;43769:15;:51;;43667:153;:196;;;;-1:-1:-1;;;;;;43838:25:0;;;;;;:19;:25;;;;;;;;43837:26;43667:196;43649:282;;;43890:29;:27;:29::i;:::-;;43649:282;43959:8;;-1:-1:-1;;;;;44069:25:0;;43943:12;44069:25;;;:19;:25;;;;;;43959:8;-1:-1:-1;;;43959:8:0;;;;;43958:9;;44069:25;;:52;;-1:-1:-1;;;;;;44098:23:0;;;;;;:19;:23;;;;;;;;44069:52;44065:100;;;-1:-1:-1;44148:5:0;44065:100;44177:12;44282:7;44278:969;;;-1:-1:-1;;;;;44334:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44383:1;44367:13;;:17;44334:50;44330:768;;;44412:34;44442:3;44412:25;44423:13;;44412:6;:10;;:25;;;;:::i;:34::-;44405:41;;44515:13;;44495:16;;44488:4;:23;;;;:::i;:::-;44487:41;;;;:::i;:::-;44465:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44585:13:0;;44571:10;;44564:17;;:4;:17;:::i;:::-;44563:35;;;;:::i;:::-;44547:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44667:13:0;;44647:16;;44640:23;;:4;:23;:::i;:::-;44639:41;;;;:::i;:::-;44617:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44330:768:0;;-1:-1:-1;44330:768:0;;-1:-1:-1;;;;;44742:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44792:1;44777:12;;:16;44742:51;44738:360;;;44821:33;44850:3;44821:24;44832:12;;44821:6;:10;;:24;;;;:::i;:33::-;44814:40;;44922:12;;44903:15;;44896:4;:22;;;;:::i;:::-;44895:39;;;;:::i;:::-;44873:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44990:12:0;;44977:9;;44970:16;;:4;:16;:::i;:::-;44969:33;;;;:::i;:::-;44953:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45070:12:0;;45051:15;;45044:22;;:4;:22;:::i;:::-;45043:39;;;;:::i;:::-;45021:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44738:360:0;45118:8;;45114:91;;45147:42;45163:4;45177;45184;45147:15;:42::i;:::-;45221:14;45231:4;45221:14;;:::i;:::-;;;44278:969;45259:33;45275:4;45281:2;45285:6;45259:15;:33::i;:::-;40275:5025;;;;40162:5138;;;:::o;3061:191::-;3154:6;;;-1:-1:-1;;;;;3171:17:0;;;-1:-1:-1;;;;;;3171:17:0;;;;;;;3204:40;;3154:6;;;3171:17;3154:6;;3204:40;;3135:16;;3204:40;3124:128;3061:191;:::o;39330:188::-;-1:-1:-1;;;;;39413:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39413:39:0;;;;;;;;;;39470:40;;39413:39;;:31;39470:40;;;39330:188;;:::o;22178:98::-;22236:7;22263:5;22267:1;22263;:5;:::i;:::-;22256:12;22178:98;-1:-1:-1;;;22178:98:0:o;22577:::-;22635:7;22662:5;22666:1;22662;:5;:::i;14265:733::-;-1:-1:-1;;;;;14405:20:0;;14397:70;;;;-1:-1:-1;;;14397:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14486:23:0;;14478:71;;;;-1:-1:-1;;;14478:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14646:17:0;;14622:21;14646:17;;;;;;;;;;;14682:23;;;;14674:74;;;;-1:-1:-1;;;14674:74:0;;16905:2:1;14674:74:0;;;16887:21:1;16944:2;16924:18;;;16917:30;16983:34;16963:18;;;16956:62;-1:-1:-1;;;17034:18:1;;;17027:36;17080:19;;14674:74:0;16703:402:1;14674:74:0;-1:-1:-1;;;;;14784:17:0;;;:9;:17;;;;;;;;;;;14804:22;;;14784:42;;14848:20;;;;;;;;:30;;14820:6;;14784:9;14848:30;;14820:6;;14848:30;:::i;:::-;;;;;;;;14913:9;-1:-1:-1;;;;;14896:35:0;14905:6;-1:-1:-1;;;;;14896:35:0;;14924:6;14896:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;14896:35:0;;;;;;;;14944:46;40162:5138;46426:1772;46509:4;46465:23;10317:18;;;;;;;;;;;46465:50;;46526:25;46622:12;;46588:18;;46554;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;46526:108;-1:-1:-1;46645:12:0;46674:20;;;:46;;-1:-1:-1;46698:22:0;;46674:46;46670:85;;;46737:7;;;46426:1772::o;46670:85::-;46789:18;;:23;;46810:2;46789:23;:::i;:::-;46771:15;:41;46767:115;;;46847:18;;:23;;46868:2;46847:23;:::i;:::-;46829:41;;46767:115;46943:23;47056:1;47023:17;46988:18;;46970:15;:36;;;;:::i;:::-;46969:71;;;;:::i;:::-;:88;;;;:::i;:::-;46943:114;-1:-1:-1;47068:26:0;47097:36;:15;46943:114;47097:19;:36::i;:::-;47068:65;-1:-1:-1;47174:21:0;47208:36;47068:65;47208:16;:36::i;:::-;47257:18;47278:44;:21;47304:17;47278:25;:44::i;:::-;47257:65;;47335:23;47361:84;47442:1;47421:18;;:22;;;;:::i;:::-;47400:44;;:17;:44;:::i;:::-;47376:18;;47361:34;;:10;;:14;:34::i;:84::-;47335:110;;47466:17;47486:78;47561:1;47540:18;;:22;;;;:::i;:::-;47519:44;;:17;:44;:::i;:::-;47501:12;;47486:28;;:10;;:14;:28::i;:78::-;47466:98;-1:-1:-1;47577:23:0;47466:98;47603:28;47616:15;47603:10;:28;:::i;:::-;:40;;;;:::i;:::-;47677:1;47656:18;:22;;;47689:18;:22;;;47722:12;:16;;;47773:9;;47765:45;;47577:66;;-1:-1:-1;;;;;;47773:9:0;;47796;;47765:45;47677:1;47765:45;47796:9;47773;47765:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47751:59:0;;-1:-1:-1;;47827:19:0;;;;;:42;;;47868:1;47850:15;:19;47827:42;47823:278;;;47886:46;47899:15;47916;47886:12;:46::i;:::-;48056:18;;47952:137;;;17522:25:1;;;17578:2;17563:18;;17556:34;;;17606:18;;;17599:34;;;;47952:137:0;;;;;;17510:2:1;47952:137:0;;;47823:278;48135:15;;48127:63;;-1:-1:-1;;;;;48135:15:0;;;;48164:21;;48127:63;;;;48164:21;48135:15;48127:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;46426:1772:0:o;48769:781::-;48860:15;48843:14;:32;48961:29;;-1:-1:-1;;;48961:29:0;;-1:-1:-1;;;;;48976:13:0;1707:32:1;48961:29:0;;;1689:51:1;48826:4:0;;;;48961;;:14;;1662:18:1;;48961:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48930:60;;49040:20;49063:77;49124:5;49063:42;49088:16;;49063:20;:24;;:42;;;;:::i;:77::-;49040:100;-1:-1:-1;49238:16:0;;49234:110;;49271:61;49287:13;49310:6;49319:12;49271:15;:61::i;:::-;49419:19;49456:13;49419:51;;49481:4;-1:-1:-1;;;;;49481:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49508:12:0;;;;-1:-1:-1;49508:12:0;;-1:-1:-1;49508:12:0;49538:4;49531:11;;;;;48769:781;:::o;21821:98::-;21879:7;21906:5;21910:1;21906;:5;:::i;45308:589::-;45458:16;;;45472:1;45458:16;;;;;;;;45434:21;;45458:16;;;;;;;;;;-1:-1:-1;45458:16:0;45434:40;;45503:4;45485;45490:1;45485:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45485:23:0;;;-1:-1:-1;;;;;45485:23:0;;;;;45529:15;-1:-1:-1;;;;;45529:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45519:4;45524:1;45519:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45519:32:0;;;-1:-1:-1;;;;;45519:32:0;;;;;45564:62;45581:4;45596:15;45614:11;45564:8;:62::i;:::-;45665:224;;-1:-1:-1;;;45665:224:0;;-1:-1:-1;;;;;45665:15:0;:66;;;;:224;;45746:11;;45772:1;;45816:4;;45843;;45863:15;;45665:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45363:534;45308:589;:::o;45905:513::-;46053:62;46070:4;46085:15;46103:11;46053:8;:62::i;:::-;46158:15;-1:-1:-1;;;;;46158:31:0;;46197:9;46230:4;46250:11;46276:1;46319;46362:7;1864:6;;-1:-1:-1;;;;;1864:6:0;;1791:87;46362:7;46158:252;;;;;;-1:-1:-1;;;;;;46158:252:0;;;-1:-1:-1;;;;;19508:15:1;;;46158:252:0;;;19490:34:1;19540:18;;;19533:34;;;;19583:18;;;19576:34;;;;19626:18;;;19619:34;19690:15;;;19669:19;;;19662:44;46384:15:0;19722:19:1;;;19715:35;19424:19;;46158:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45905:513;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:388::-;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;-1:-1:-1;3286:2:1;3271:18;;3258:32;3299:33;3258:32;3299:33;:::i;:::-;3351:7;3341:17;;;2976:388;;;;;:::o;3369:118::-;3455:5;3448:13;3441:21;3434:5;3431:32;3421:60;;3477:1;3474;3467:12;3492:377;3566:6;3574;3582;3635:2;3623:9;3614:7;3610:23;3606:32;3603:52;;;3651:1;3648;3641:12;3603:52;3687:9;3674:23;3664:33;;3744:2;3733:9;3729:18;3716:32;3706:42;;3798:2;3787:9;3783:18;3770:32;3811:28;3833:5;3811:28;:::i;:::-;3858:5;3848:15;;;3492:377;;;;;:::o;3874:382::-;3939:6;3947;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4055:9;4042:23;4074:31;4099:5;4074:31;:::i;:::-;4124:5;-1:-1:-1;4181:2:1;4166:18;;4153:32;4194:30;4153:32;4194:30;:::i;4261:316::-;4338:6;4346;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;-1:-1:-1;;4446:23:1;;;4516:2;4501:18;;4488:32;;-1:-1:-1;4567:2:1;4552:18;;;4539:32;;4261:316;-1:-1:-1;4261:316:1:o;4582:241::-;4638:6;4691:2;4679:9;4670:7;4666:23;4662:32;4659:52;;;4707:1;4704;4697:12;4659:52;4746:9;4733:23;4765:28;4787:5;4765:28;:::i;4828:380::-;4907:1;4903:12;;;;4950;;;4971:61;;5025:4;5017:6;5013:17;5003:27;;4971:61;5078:2;5070:6;5067:14;5047:18;5044:38;5041:161;;;5124:10;5119:3;5115:20;5112:1;5105:31;5159:4;5156:1;5149:15;5187:4;5184:1;5177:15;5041:161;;4828:380;;;:::o;5213:356::-;5415:2;5397:21;;;5434:18;;;5427:30;5493:34;5488:2;5473:18;;5466:62;5560:2;5545:18;;5213:356::o;5574:127::-;5635:10;5630:3;5626:20;5623:1;5616:31;5666:4;5663:1;5656:15;5690:4;5687:1;5680:15;5706:168;5746:7;5812:1;5808;5804:6;5800:14;5797:1;5794:21;5789:1;5782:9;5775:17;5771:45;5768:71;;;5819:18;;:::i;:::-;-1:-1:-1;5859:9:1;;5706:168::o;5879:217::-;5919:1;5945;5935:132;;5989:10;5984:3;5980:20;5977:1;5970:31;6024:4;6021:1;6014:15;6052:4;6049:1;6042:15;5935:132;-1:-1:-1;6081:9:1;;5879:217::o;6926:128::-;6966:3;6997:1;6993:6;6990:1;6987:13;6984:39;;;7003:18;;:::i;:::-;-1:-1:-1;7039:9:1;;6926:128::o;7414:184::-;7484:6;7537:2;7525:9;7516:7;7512:23;7508:32;7505:52;;;7553:1;7550;7543:12;7505:52;-1:-1:-1;7576:16:1;;7414:184;-1:-1:-1;7414:184:1:o;7882:245::-;7949:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:52;;;8018:1;8015;8008:12;7970:52;8050:9;8044:16;8069:28;8091:5;8069:28;:::i;13036:401::-;13238:2;13220:21;;;13277:2;13257:18;;;13250:30;13316:34;13311:2;13296:18;;13289:62;-1:-1:-1;;;13382:2:1;13367:18;;13360:35;13427:3;13412:19;;13036:401::o;13442:399::-;13644:2;13626:21;;;13683:2;13663:18;;;13656:30;13722:34;13717:2;13702:18;;13695:62;-1:-1:-1;;;13788:2:1;13773:18;;13766:33;13831:3;13816:19;;13442:399::o;16573:125::-;16613:4;16641:1;16638;16635:8;16632:34;;;16646:18;;:::i;:::-;-1:-1:-1;16683:9:1;;16573:125::o;17776:127::-;17837:10;17832:3;17828:20;17825:1;17818:31;17868:4;17865:1;17858:15;17892:4;17889:1;17882:15;17908:251;17978:6;18031:2;18019:9;18010:7;18006:23;18002:32;17999:52;;;18047:1;18044;18037:12;17999:52;18079:9;18073:16;18098:31;18123:5;18098:31;:::i;18164:980::-;18426:4;18474:3;18463:9;18459:19;18505:6;18494:9;18487:25;18531:2;18569:6;18564:2;18553:9;18549:18;18542:34;18612:3;18607:2;18596:9;18592:18;18585:31;18636:6;18671;18665:13;18702:6;18694;18687:22;18740:3;18729:9;18725:19;18718:26;;18779:2;18771:6;18767:15;18753:29;;18800:1;18810:195;18824:6;18821:1;18818:13;18810:195;;;18889:13;;-1:-1:-1;;;;;18885:39:1;18873:52;;18980:15;;;;18945:12;;;;18921:1;18839:9;18810:195;;;-1:-1:-1;;;;;;;19061:32:1;;;;19056:2;19041:18;;19034:60;-1:-1:-1;;;19125:3:1;19110:19;19103:35;19022:3;18164:980;-1:-1:-1;;;18164:980:1:o;19761:306::-;19849:6;19857;19865;19918:2;19906:9;19897:7;19893:23;19889:32;19886:52;;;19934:1;19931;19924:12;19886:52;19963:9;19957:16;19947:26;;20013:2;20002:9;19998:18;19992:25;19982:35;;20057:2;20046:9;20042:18;20036:25;20026:35;;19761:306;;;;;:::o

Swarm Source

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