ETH Price: $2,458.92 (+0.56%)

Token

Black Mamba (MAMBA)
 

Overview

Max Total Supply

100,000,000 MAMBA

Holders

162

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
51,084.034266992687853088 MAMBA

Value
$0.00
0xe8f5063ff291bc1e24aa723a8abdf2f72ee3646f
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:
BlackMamba

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-25
*/

/**

Telegram: https://t.me/blackmambatoken
Twitter: https://twitter.com/mambatoken/
Website: https://blackmambatoken.com
Medium: https://medium.com/@MambaToken

*/

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

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

    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
    bool public transferDelayEnabled = true;

    // Blacklist Map
    mapping (address => bool) private _blacklist;

    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;

    // block number of opened trading
    uint256 launchedAt;

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

    // exlcude 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
    );

    constructor() ERC20("Black Mamba", "MAMBA") {
        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 = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 10;

        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 15;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 30) / 1000; // 3% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 30) / 1000; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 10000; // 0.04% swap wallet

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

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

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

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(devWallet, 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;
        launchedAt = block.number;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        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;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function blacklistAccounts(address[] memory accounts) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _blacklist[accounts[i]] = true;
        }
    }

    function unBlacklistAccounts(address[] memory accounts) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _blacklist[accounts[i]] = false;
        }
    }

    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 _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(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");

        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] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block 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"
                    );
                }
            }
        }

        // anti bot logic
        if (block.number <= (launchedAt + 2) &&
                to != uniswapV2Pair && 
                to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
            ) { 
            _blacklist[to] = true;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        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
            deadAddress,
            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
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"accounts","type":"address[]"}],"name":"blacklistAccounts","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":"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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"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":"accounts","type":"address[]"}],"name":"unBlacklistAccounts","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"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166001908117909155600d805460ff191690911790553480156200003057600080fd5b506040518060400160405280600b81526020016a426c61636b204d616d626160a81b815250604051806040016040528060058152602001644d414d424160d81b8152508160039081620000849190620007a4565b506004620000938282620007a4565b505050620000b0620000aa6200044860201b60201c565b6200044c565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d28160016200049e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000143919062000870565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000191573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b7919062000870565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022b919062000870565b6001600160a01b031660a0819052620002469060016200049e565b60a0516200025690600162000518565b600a6000818082600f6a52b7d2dcc80cd2e40000006103e86200027b82601e620008b8565b620002879190620008d8565b6008556103e86200029a82601e620008b8565b620002a69190620008d8565b600a55612710620002b9826004620008b8565b620002c59190620008d8565b60095560108790556011869055601285905584620002e48789620008fb565b620002f09190620008fb565b600f55601484905560158390556016829055816200030f8486620008fb565b6200031b9190620008fb565b6013556006805473e1a3d6fe187dd9942acc679065f178ca9f4b36bb6001600160a01b03199182168117909255600780549091169091179055620003736200036b6005546001600160a01b031690565b60016200056c565b6006546200038c906001600160a01b031660016200056c565b600754620003a5906001600160a01b031660016200056c565b620003b23060016200056c565b620003c161dead60016200056c565b620003e0620003d86005546001600160a01b031690565b60016200049e565b600654620003f9906001600160a01b031660016200049e565b60075462000412906001600160a01b031660016200049e565b6200041f3060016200049e565b6200042e61dead60016200049e565b6200043a338262000616565b505050505050505062000911565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004ed5760405162461bcd60e51b815260206004820181905260248201526000805160206200373e83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005b75760405162461bcd60e51b815260206004820181905260248201526000805160206200373e8339815191526044820152606401620004e4565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200066e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e4565b8060026000828254620006829190620008fb565b90915550506001600160a01b03821660009081526020819052604081208054839290620006b1908490620008fb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200072b57607f821691505b6020821081036200074c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006fb57600081815260208120601f850160051c810160208610156200077b5750805b601f850160051c820191505b818110156200079c5782815560010162000787565b505050505050565b81516001600160401b03811115620007c057620007c062000700565b620007d881620007d1845462000716565b8462000752565b602080601f831160018114620008105760008415620007f75750858301515b600019600386901b1c1916600185901b1785556200079c565b600085815260208120601f198616915b82811015620008415788860151825594840194600190910190840162000820565b5085821015620008605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200088357600080fd5b81516001600160a01b03811681146200089b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008d257620008d2620008a2565b92915050565b600082620008f657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008d257620008d2620008a2565b60805160a051612dc86200097660003960008181610583015281816110c201528181611a6a0152611dcd01526000818161041801528181611a2c01528181612640015281816126f901528181612735015281816127af015261280c0152612dc86000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610a0a578063f2fde38b14610a20578063f637434214610a40578063f8b45b0514610a5657600080fd5b8063dd62ed3e14610999578063e2f45605146109df578063e884f260146109f557600080fd5b8063c876d0b9116100d1578063c876d0b914610933578063c8c8ebe41461094d578063d257b34f14610963578063d85ba0631461098357600080fd5b8063c0246668146108d3578063c17b5b8c146108f3578063c18bc1951461091357600080fd5b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610844578063aacebbe314610864578063b62496f514610884578063bbc0c742146108b457600080fd5b80639fccce32146107f8578063a0d82dc51461080e578063a457c2d71461082457600080fd5b8063924de9b7116101a0578063924de9b71461078d57806395d89b41146107ad5780639a7a23d6146107c25780639c3b4fdc146107e257600080fd5b80638da5cb5b146107395780638ea5220f14610757578063921369131461077757600080fd5b806349bd5a5e116102a0578063751039fc1161023e5780637bce5a04116102185780637bce5a04146106ce5780637cc34b61146106e45780638095d564146107045780638a8c523c1461072457600080fd5b8063751039fc146106795780637571336a1461068e57806375f0a874146106ae57600080fd5b80636a486a8e1161027a5780636a486a8e146105f85780636ddd17131461060e57806370a082311461062e578063715018a61461066457600080fd5b806349bd5a5e146105715780634a62bb65146105a55780634fbee193146105bf57600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104ff578063313ce56714610515578063395093511461053157806345a0b8911461055157600080fd5b80631f3fed8f146104a9578063203e727e146104bf57806323b872dd146104df57600080fd5b80631694505e116103495780631694505e1461040657806318160ddd146104525780631816467f146104715780631a8145bb1461049357600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a6c565b60405161039d919061288a565b60405180910390f35b3480156103b257600080fd5b506103c66103c13660046128f8565b610afe565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612924565b601c6020526000908152604090205460ff1681565b34801561041257600080fd5b5061043a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561045e57600080fd5b506002545b60405190815260200161039d565b34801561047d57600080fd5b5061049161048c366004612924565b610b15565b005b34801561049f57600080fd5b5061046360185481565b3480156104b557600080fd5b5061046360175481565b3480156104cb57600080fd5b506104916104da366004612941565b610ba5565b3480156104eb57600080fd5b506103c66104fa36600461295a565b610c82565b34801561050b57600080fd5b5061043a61dead81565b34801561052157600080fd5b506040516012815260200161039d565b34801561053d57600080fd5b506103c661054c3660046128f8565b610d2c565b34801561055d57600080fd5b5061049161056c3660046129b1565b610d68565b34801561057d57600080fd5b5061043a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105b157600080fd5b50600b546103c69060ff1681565b3480156105cb57600080fd5b506103c66105da366004612924565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561060457600080fd5b5061046360135481565b34801561061a57600080fd5b50600b546103c69062010000900460ff1681565b34801561063a57600080fd5b50610463610649366004612924565b6001600160a01b031660009081526020819052604090205490565b34801561067057600080fd5b50610491610dfe565b34801561068557600080fd5b506103c6610e34565b34801561069a57600080fd5b506104916106a9366004612a86565b610e71565b3480156106ba57600080fd5b5060065461043a906001600160a01b031681565b3480156106da57600080fd5b5061046360105481565b3480156106f057600080fd5b506104916106ff3660046129b1565b610ec6565b34801561071057600080fd5b5061049161071f366004612abb565b610f58565b34801561073057600080fd5b50610491611000565b34801561074557600080fd5b506005546001600160a01b031661043a565b34801561076357600080fd5b5060075461043a906001600160a01b031681565b34801561078357600080fd5b5061046360145481565b34801561079957600080fd5b506104916107a8366004612ae7565b611041565b3480156107b957600080fd5b50610390611087565b3480156107ce57600080fd5b506104916107dd366004612a86565b611096565b3480156107ee57600080fd5b5061046360125481565b34801561080457600080fd5b5061046360195481565b34801561081a57600080fd5b5061046360165481565b34801561083057600080fd5b506103c661083f3660046128f8565b611171565b34801561085057600080fd5b506103c661085f3660046128f8565b61120a565b34801561087057600080fd5b5061049161087f366004612924565b611217565b34801561089057600080fd5b506103c661089f366004612924565b601d6020526000908152604090205460ff1681565b3480156108c057600080fd5b50600b546103c690610100900460ff1681565b3480156108df57600080fd5b506104916108ee366004612a86565b61129e565b3480156108ff57600080fd5b5061049161090e366004612abb565b611327565b34801561091f57600080fd5b5061049161092e366004612941565b6113ca565b34801561093f57600080fd5b50600d546103c69060ff1681565b34801561095957600080fd5b5061046360085481565b34801561096f57600080fd5b506103c661097e366004612941565b61149b565b34801561098f57600080fd5b50610463600f5481565b3480156109a557600080fd5b506104636109b4366004612b02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109eb57600080fd5b5061046360095481565b348015610a0157600080fd5b506103c66115f2565b348015610a1657600080fd5b5061046360115481565b348015610a2c57600080fd5b50610491610a3b366004612924565b61162f565b348015610a4c57600080fd5b5061046360155481565b348015610a6257600080fd5b50610463600a5481565b606060038054610a7b90612b3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa790612b3b565b8015610af45780601f10610ac957610100808354040283529160200191610af4565b820191906000526020600020905b815481529060010190602001808311610ad757829003601f168201915b5050505050905090565b6000610b0b3384846116ca565b5060015b92915050565b6005546001600160a01b03163314610b485760405162461bcd60e51b8152600401610b3f90612b75565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bcf5760405162461bcd60e51b8152600401610b3f90612b75565b670de0b6b3a76400006103e8610be460025490565b610bef906001612bc0565b610bf99190612bd7565b610c039190612bd7565b811015610c6a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b3f565b610c7c81670de0b6b3a7640000612bc0565b60085550565b6000610c8f8484846117ee565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d145760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b3f565b610d2185338584036116ca565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b0b918590610d63908690612bf9565b6116ca565b6005546001600160a01b03163314610d925760405162461bcd60e51b8152600401610b3f90612b75565b60005b8151811015610dfa576001600e6000848481518110610db657610db6612c0c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610df281612c22565b915050610d95565b5050565b6005546001600160a01b03163314610e285760405162461bcd60e51b8152600401610b3f90612b75565b610e326000612189565b565b6005546000906001600160a01b03163314610e615760405162461bcd60e51b8152600401610b3f90612b75565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e9b5760405162461bcd60e51b8152600401610b3f90612b75565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b3f90612b75565b60005b8151811015610dfa576000600e6000848481518110610f1457610f14612c0c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f5081612c22565b915050610ef3565b6005546001600160a01b03163314610f825760405162461bcd60e51b8152600401610b3f90612b75565b60108390556011829055601281905580610f9c8385612bf9565b610fa69190612bf9565b600f819055600a1015610ffb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3f565b505050565b6005546001600160a01b0316331461102a5760405162461bcd60e51b8152600401610b3f90612b75565b600b805462ffff0019166201010017905543601a55565b6005546001600160a01b0316331461106b5760405162461bcd60e51b8152600401610b3f90612b75565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a7b90612b3b565b6005546001600160a01b031633146110c05760405162461bcd60e51b8152600401610b3f90612b75565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111675760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b3f565b610dfa82826121db565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111f35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b3f565b61120033858584036116ca565b5060019392505050565b6000610b0b3384846117ee565b6005546001600160a01b031633146112415760405162461bcd60e51b8152600401610b3f90612b75565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112c85760405162461bcd60e51b8152600401610b3f90612b75565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113515760405162461bcd60e51b8152600401610b3f90612b75565b6014839055601582905560168190558061136b8385612bf9565b6113759190612bf9565b6013819055600a1015610ffb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3f565b6005546001600160a01b031633146113f45760405162461bcd60e51b8152600401610b3f90612b75565b670de0b6b3a76400006103e861140960025490565b611414906005612bc0565b61141e9190612bd7565b6114289190612bd7565b8110156114835760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b3f565b61149581670de0b6b3a7640000612bc0565b600a5550565b6005546000906001600160a01b031633146114c85760405162461bcd60e51b8152600401610b3f90612b75565b620186a06114d560025490565b6114e0906001612bc0565b6114ea9190612bd7565b8210156115575760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b3f565b6103e861156360025490565b61156e906005612bc0565b6115789190612bd7565b8211156115e45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b3f565b50600981905560015b919050565b6005546000906001600160a01b0316331461161f5760405162461bcd60e51b8152600401610b3f90612b75565b50600d805460ff19169055600190565b6005546001600160a01b031633146116595760405162461bcd60e51b8152600401610b3f90612b75565b6001600160a01b0381166116be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b3f565b6116c781612189565b50565b6001600160a01b03831661172c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b3f565b6001600160a01b03821661178d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b3f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118145760405162461bcd60e51b8152600401610b3f90612c3b565b6001600160a01b03821661183a5760405162461bcd60e51b8152600401610b3f90612c80565b6001600160a01b0382166000908152600e602052604090205460ff1615801561187c57506001600160a01b0383166000908152600e602052604090205460ff16155b6118e25760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610b3f565b806000036118f657610ffb8383600061222f565b600b5460ff1615611db3576005546001600160a01b0384811691161480159061192d57506005546001600160a01b03838116911614155b801561194157506001600160a01b03821615155b801561195857506001600160a01b03821661dead14155b801561196e5750600554600160a01b900460ff16155b15611db357600b54610100900460ff16611a06576001600160a01b0383166000908152601b602052604090205460ff16806119c157506001600160a01b0382166000908152601b602052604090205460ff165b611a065760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b3f565b600d5460ff1615611b4d576005546001600160a01b03838116911614801590611a6157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a9f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611b4d57326000908152600c60205260409020544311611b3a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b3f565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601d602052604090205460ff168015611b8e57506001600160a01b0382166000908152601c602052604090205460ff16155b15611c7257600854811115611c035760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b3f565b600a546001600160a01b038316600090815260208190526040902054611c299083612bf9565b1115611c6d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3f565b611db3565b6001600160a01b0382166000908152601d602052604090205460ff168015611cb357506001600160a01b0383166000908152601c602052604090205460ff16155b15611d2957600854811115611c6d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b3f565b6001600160a01b0382166000908152601c602052604090205460ff16611db357600a546001600160a01b038316600090815260208190526040902054611d6f9083612bf9565b1115611db35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3f565b601a54611dc1906002612bf9565b4311158015611e0257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611e2b57506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b15611e54576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b3060009081526020819052604090205460095481108015908190611e805750600b5462010000900460ff165b8015611e965750600554600160a01b900460ff16155b8015611ebb57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611ee057506001600160a01b0385166000908152601b602052604090205460ff16155b8015611f0557506001600160a01b0384166000908152601b602052604090205460ff16155b15611f33576005805460ff60a01b1916600160a01b179055611f25612384565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611f8157506001600160a01b0385166000908152601b602052604090205460ff165b15611f8a575060005b60008115612175576001600160a01b0386166000908152601d602052604090205460ff168015611fbc57506000601354115b1561207a57611fe16064611fdb601354886125be90919063ffffffff16565b906125d1565b905060135460155482611ff49190612bc0565b611ffe9190612bd7565b6018600082825461200f9190612bf9565b90915550506013546016546120249083612bc0565b61202e9190612bd7565b6019600082825461203f9190612bf9565b90915550506013546014546120549083612bc0565b61205e9190612bd7565b6017600082825461206f9190612bf9565b909155506121579050565b6001600160a01b0387166000908152601d602052604090205460ff1680156120a457506000600f54115b15612157576120c36064611fdb600f54886125be90919063ffffffff16565b9050600f54601154826120d69190612bc0565b6120e09190612bd7565b601860008282546120f19190612bf9565b9091555050600f546012546121069083612bc0565b6121109190612bd7565b601960008282546121219190612bf9565b9091555050600f546010546121369083612bc0565b6121409190612bd7565b601760008282546121519190612bf9565b90915550505b80156121685761216887308361222f565b6121728186612cc3565b94505b61218087878761222f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122555760405162461bcd60e51b8152600401610b3f90612c3b565b6001600160a01b03821661227b5760405162461bcd60e51b8152600401610b3f90612c80565b6001600160a01b038316600090815260208190526040902054818110156122f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b3f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061232a908490612bf9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161237691815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006019546017546018546123ab9190612bf9565b6123b59190612bf9565b905060008215806123c4575081155b156123ce57505050565b6009546123dc906014612bc0565b8311156123f4576009546123f1906014612bc0565b92505b6000600283601854866124079190612bc0565b6124119190612bd7565b61241b9190612bd7565b9050600061242985836125dd565b905047612435826125e9565b600061244147836125dd565b9050600061245e87611fdb601754856125be90919063ffffffff16565b9050600061247b88611fdb601954866125be90919063ffffffff16565b905060008161248a8486612cc3565b6124949190612cc3565b60006018819055601781905560198190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b5090985050861580159061250a5750600081115b1561255d5761251987826127a9565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146125aa576040519150601f19603f3d011682016040523d82523d6000602084013e6125af565b606091505b50505050505050505050505050565b60006125ca8284612bc0565b9392505050565b60006125ca8284612bd7565b60006125ca8284612cc3565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061261e5761261e612c0c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561269c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c09190612cd6565b816001815181106126d3576126d3612c0c565b60200260200101906001600160a01b031690816001600160a01b03168152505061271e307f0000000000000000000000000000000000000000000000000000000000000000846116ca565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612773908590600090869030904290600401612cf3565b600060405180830381600087803b15801561278d57600080fd5b505af11580156127a1573d6000803e3d6000fd5b505050505050565b6127d4307f0000000000000000000000000000000000000000000000000000000000000000846116ca565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561285e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128839190612d64565b5050505050565b600060208083528351808285015260005b818110156128b75785810183015185820160400152820161289b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c757600080fd5b80356115ed816128d8565b6000806040838503121561290b57600080fd5b8235612916816128d8565b946020939093013593505050565b60006020828403121561293657600080fd5b81356125ca816128d8565b60006020828403121561295357600080fd5b5035919050565b60008060006060848603121561296f57600080fd5b833561297a816128d8565b9250602084013561298a816128d8565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156129c457600080fd5b823567ffffffffffffffff808211156129dc57600080fd5b818501915085601f8301126129f057600080fd5b813581811115612a0257612a0261299b565b8060051b604051601f19603f83011681018181108582111715612a2757612a2761299b565b604052918252848201925083810185019188831115612a4557600080fd5b938501935b82851015612a6a57612a5b856128ed565b84529385019392850192612a4a565b98975050505050505050565b803580151581146115ed57600080fd5b60008060408385031215612a9957600080fd5b8235612aa4816128d8565b9150612ab260208401612a76565b90509250929050565b600080600060608486031215612ad057600080fd5b505081359360208301359350604090920135919050565b600060208284031215612af957600080fd5b6125ca82612a76565b60008060408385031215612b1557600080fd5b8235612b20816128d8565b91506020830135612b30816128d8565b809150509250929050565b600181811c90821680612b4f57607f821691505b602082108103612b6f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0f57610b0f612baa565b600082612bf457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b0f57610b0f612baa565b634e487b7160e01b600052603260045260246000fd5b600060018201612c3457612c34612baa565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b0f57610b0f612baa565b600060208284031215612ce857600080fd5b81516125ca816128d8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d435784516001600160a01b031683529383019391830191600101612d1e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612d7957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207f9b5a1b131e0c1e3b1a4918da9c6c97e2d9a7267d4018dbc41dd30a7b33bbd964736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610a0a578063f2fde38b14610a20578063f637434214610a40578063f8b45b0514610a5657600080fd5b8063dd62ed3e14610999578063e2f45605146109df578063e884f260146109f557600080fd5b8063c876d0b9116100d1578063c876d0b914610933578063c8c8ebe41461094d578063d257b34f14610963578063d85ba0631461098357600080fd5b8063c0246668146108d3578063c17b5b8c146108f3578063c18bc1951461091357600080fd5b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610844578063aacebbe314610864578063b62496f514610884578063bbc0c742146108b457600080fd5b80639fccce32146107f8578063a0d82dc51461080e578063a457c2d71461082457600080fd5b8063924de9b7116101a0578063924de9b71461078d57806395d89b41146107ad5780639a7a23d6146107c25780639c3b4fdc146107e257600080fd5b80638da5cb5b146107395780638ea5220f14610757578063921369131461077757600080fd5b806349bd5a5e116102a0578063751039fc1161023e5780637bce5a04116102185780637bce5a04146106ce5780637cc34b61146106e45780638095d564146107045780638a8c523c1461072457600080fd5b8063751039fc146106795780637571336a1461068e57806375f0a874146106ae57600080fd5b80636a486a8e1161027a5780636a486a8e146105f85780636ddd17131461060e57806370a082311461062e578063715018a61461066457600080fd5b806349bd5a5e146105715780634a62bb65146105a55780634fbee193146105bf57600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104ff578063313ce56714610515578063395093511461053157806345a0b8911461055157600080fd5b80631f3fed8f146104a9578063203e727e146104bf57806323b872dd146104df57600080fd5b80631694505e116103495780631694505e1461040657806318160ddd146104525780631816467f146104715780631a8145bb1461049357600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a6c565b60405161039d919061288a565b60405180910390f35b3480156103b257600080fd5b506103c66103c13660046128f8565b610afe565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612924565b601c6020526000908152604090205460ff1681565b34801561041257600080fd5b5061043a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561045e57600080fd5b506002545b60405190815260200161039d565b34801561047d57600080fd5b5061049161048c366004612924565b610b15565b005b34801561049f57600080fd5b5061046360185481565b3480156104b557600080fd5b5061046360175481565b3480156104cb57600080fd5b506104916104da366004612941565b610ba5565b3480156104eb57600080fd5b506103c66104fa36600461295a565b610c82565b34801561050b57600080fd5b5061043a61dead81565b34801561052157600080fd5b506040516012815260200161039d565b34801561053d57600080fd5b506103c661054c3660046128f8565b610d2c565b34801561055d57600080fd5b5061049161056c3660046129b1565b610d68565b34801561057d57600080fd5b5061043a7f00000000000000000000000046b1797027672144d53a98a12bbe527a02a4324681565b3480156105b157600080fd5b50600b546103c69060ff1681565b3480156105cb57600080fd5b506103c66105da366004612924565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561060457600080fd5b5061046360135481565b34801561061a57600080fd5b50600b546103c69062010000900460ff1681565b34801561063a57600080fd5b50610463610649366004612924565b6001600160a01b031660009081526020819052604090205490565b34801561067057600080fd5b50610491610dfe565b34801561068557600080fd5b506103c6610e34565b34801561069a57600080fd5b506104916106a9366004612a86565b610e71565b3480156106ba57600080fd5b5060065461043a906001600160a01b031681565b3480156106da57600080fd5b5061046360105481565b3480156106f057600080fd5b506104916106ff3660046129b1565b610ec6565b34801561071057600080fd5b5061049161071f366004612abb565b610f58565b34801561073057600080fd5b50610491611000565b34801561074557600080fd5b506005546001600160a01b031661043a565b34801561076357600080fd5b5060075461043a906001600160a01b031681565b34801561078357600080fd5b5061046360145481565b34801561079957600080fd5b506104916107a8366004612ae7565b611041565b3480156107b957600080fd5b50610390611087565b3480156107ce57600080fd5b506104916107dd366004612a86565b611096565b3480156107ee57600080fd5b5061046360125481565b34801561080457600080fd5b5061046360195481565b34801561081a57600080fd5b5061046360165481565b34801561083057600080fd5b506103c661083f3660046128f8565b611171565b34801561085057600080fd5b506103c661085f3660046128f8565b61120a565b34801561087057600080fd5b5061049161087f366004612924565b611217565b34801561089057600080fd5b506103c661089f366004612924565b601d6020526000908152604090205460ff1681565b3480156108c057600080fd5b50600b546103c690610100900460ff1681565b3480156108df57600080fd5b506104916108ee366004612a86565b61129e565b3480156108ff57600080fd5b5061049161090e366004612abb565b611327565b34801561091f57600080fd5b5061049161092e366004612941565b6113ca565b34801561093f57600080fd5b50600d546103c69060ff1681565b34801561095957600080fd5b5061046360085481565b34801561096f57600080fd5b506103c661097e366004612941565b61149b565b34801561098f57600080fd5b50610463600f5481565b3480156109a557600080fd5b506104636109b4366004612b02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109eb57600080fd5b5061046360095481565b348015610a0157600080fd5b506103c66115f2565b348015610a1657600080fd5b5061046360115481565b348015610a2c57600080fd5b50610491610a3b366004612924565b61162f565b348015610a4c57600080fd5b5061046360155481565b348015610a6257600080fd5b50610463600a5481565b606060038054610a7b90612b3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa790612b3b565b8015610af45780601f10610ac957610100808354040283529160200191610af4565b820191906000526020600020905b815481529060010190602001808311610ad757829003601f168201915b5050505050905090565b6000610b0b3384846116ca565b5060015b92915050565b6005546001600160a01b03163314610b485760405162461bcd60e51b8152600401610b3f90612b75565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bcf5760405162461bcd60e51b8152600401610b3f90612b75565b670de0b6b3a76400006103e8610be460025490565b610bef906001612bc0565b610bf99190612bd7565b610c039190612bd7565b811015610c6a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b3f565b610c7c81670de0b6b3a7640000612bc0565b60085550565b6000610c8f8484846117ee565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d145760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b3f565b610d2185338584036116ca565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b0b918590610d63908690612bf9565b6116ca565b6005546001600160a01b03163314610d925760405162461bcd60e51b8152600401610b3f90612b75565b60005b8151811015610dfa576001600e6000848481518110610db657610db6612c0c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610df281612c22565b915050610d95565b5050565b6005546001600160a01b03163314610e285760405162461bcd60e51b8152600401610b3f90612b75565b610e326000612189565b565b6005546000906001600160a01b03163314610e615760405162461bcd60e51b8152600401610b3f90612b75565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e9b5760405162461bcd60e51b8152600401610b3f90612b75565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b3f90612b75565b60005b8151811015610dfa576000600e6000848481518110610f1457610f14612c0c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f5081612c22565b915050610ef3565b6005546001600160a01b03163314610f825760405162461bcd60e51b8152600401610b3f90612b75565b60108390556011829055601281905580610f9c8385612bf9565b610fa69190612bf9565b600f819055600a1015610ffb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3f565b505050565b6005546001600160a01b0316331461102a5760405162461bcd60e51b8152600401610b3f90612b75565b600b805462ffff0019166201010017905543601a55565b6005546001600160a01b0316331461106b5760405162461bcd60e51b8152600401610b3f90612b75565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a7b90612b3b565b6005546001600160a01b031633146110c05760405162461bcd60e51b8152600401610b3f90612b75565b7f00000000000000000000000046b1797027672144d53a98a12bbe527a02a432466001600160a01b0316826001600160a01b0316036111675760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b3f565b610dfa82826121db565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111f35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b3f565b61120033858584036116ca565b5060019392505050565b6000610b0b3384846117ee565b6005546001600160a01b031633146112415760405162461bcd60e51b8152600401610b3f90612b75565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112c85760405162461bcd60e51b8152600401610b3f90612b75565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113515760405162461bcd60e51b8152600401610b3f90612b75565b6014839055601582905560168190558061136b8385612bf9565b6113759190612bf9565b6013819055600a1015610ffb5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3f565b6005546001600160a01b031633146113f45760405162461bcd60e51b8152600401610b3f90612b75565b670de0b6b3a76400006103e861140960025490565b611414906005612bc0565b61141e9190612bd7565b6114289190612bd7565b8110156114835760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b3f565b61149581670de0b6b3a7640000612bc0565b600a5550565b6005546000906001600160a01b031633146114c85760405162461bcd60e51b8152600401610b3f90612b75565b620186a06114d560025490565b6114e0906001612bc0565b6114ea9190612bd7565b8210156115575760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b3f565b6103e861156360025490565b61156e906005612bc0565b6115789190612bd7565b8211156115e45760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b3f565b50600981905560015b919050565b6005546000906001600160a01b0316331461161f5760405162461bcd60e51b8152600401610b3f90612b75565b50600d805460ff19169055600190565b6005546001600160a01b031633146116595760405162461bcd60e51b8152600401610b3f90612b75565b6001600160a01b0381166116be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b3f565b6116c781612189565b50565b6001600160a01b03831661172c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b3f565b6001600160a01b03821661178d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b3f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118145760405162461bcd60e51b8152600401610b3f90612c3b565b6001600160a01b03821661183a5760405162461bcd60e51b8152600401610b3f90612c80565b6001600160a01b0382166000908152600e602052604090205460ff1615801561187c57506001600160a01b0383166000908152600e602052604090205460ff16155b6118e25760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610b3f565b806000036118f657610ffb8383600061222f565b600b5460ff1615611db3576005546001600160a01b0384811691161480159061192d57506005546001600160a01b03838116911614155b801561194157506001600160a01b03821615155b801561195857506001600160a01b03821661dead14155b801561196e5750600554600160a01b900460ff16155b15611db357600b54610100900460ff16611a06576001600160a01b0383166000908152601b602052604090205460ff16806119c157506001600160a01b0382166000908152601b602052604090205460ff165b611a065760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b3f565b600d5460ff1615611b4d576005546001600160a01b03838116911614801590611a6157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a9f57507f00000000000000000000000046b1797027672144d53a98a12bbe527a02a432466001600160a01b0316826001600160a01b031614155b15611b4d57326000908152600c60205260409020544311611b3a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b3f565b326000908152600c602052604090204390555b6001600160a01b0383166000908152601d602052604090205460ff168015611b8e57506001600160a01b0382166000908152601c602052604090205460ff16155b15611c7257600854811115611c035760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b3f565b600a546001600160a01b038316600090815260208190526040902054611c299083612bf9565b1115611c6d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3f565b611db3565b6001600160a01b0382166000908152601d602052604090205460ff168015611cb357506001600160a01b0383166000908152601c602052604090205460ff16155b15611d2957600854811115611c6d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b3f565b6001600160a01b0382166000908152601c602052604090205460ff16611db357600a546001600160a01b038316600090815260208190526040902054611d6f9083612bf9565b1115611db35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3f565b601a54611dc1906002612bf9565b4311158015611e0257507f00000000000000000000000046b1797027672144d53a98a12bbe527a02a432466001600160a01b0316826001600160a01b031614155b8015611e2b57506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b15611e54576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b3060009081526020819052604090205460095481108015908190611e805750600b5462010000900460ff165b8015611e965750600554600160a01b900460ff16155b8015611ebb57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611ee057506001600160a01b0385166000908152601b602052604090205460ff16155b8015611f0557506001600160a01b0384166000908152601b602052604090205460ff16155b15611f33576005805460ff60a01b1916600160a01b179055611f25612384565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611f8157506001600160a01b0385166000908152601b602052604090205460ff165b15611f8a575060005b60008115612175576001600160a01b0386166000908152601d602052604090205460ff168015611fbc57506000601354115b1561207a57611fe16064611fdb601354886125be90919063ffffffff16565b906125d1565b905060135460155482611ff49190612bc0565b611ffe9190612bd7565b6018600082825461200f9190612bf9565b90915550506013546016546120249083612bc0565b61202e9190612bd7565b6019600082825461203f9190612bf9565b90915550506013546014546120549083612bc0565b61205e9190612bd7565b6017600082825461206f9190612bf9565b909155506121579050565b6001600160a01b0387166000908152601d602052604090205460ff1680156120a457506000600f54115b15612157576120c36064611fdb600f54886125be90919063ffffffff16565b9050600f54601154826120d69190612bc0565b6120e09190612bd7565b601860008282546120f19190612bf9565b9091555050600f546012546121069083612bc0565b6121109190612bd7565b601960008282546121219190612bf9565b9091555050600f546010546121369083612bc0565b6121409190612bd7565b601760008282546121519190612bf9565b90915550505b80156121685761216887308361222f565b6121728186612cc3565b94505b61218087878761222f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122555760405162461bcd60e51b8152600401610b3f90612c3b565b6001600160a01b03821661227b5760405162461bcd60e51b8152600401610b3f90612c80565b6001600160a01b038316600090815260208190526040902054818110156122f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b3f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061232a908490612bf9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161237691815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006019546017546018546123ab9190612bf9565b6123b59190612bf9565b905060008215806123c4575081155b156123ce57505050565b6009546123dc906014612bc0565b8311156123f4576009546123f1906014612bc0565b92505b6000600283601854866124079190612bc0565b6124119190612bd7565b61241b9190612bd7565b9050600061242985836125dd565b905047612435826125e9565b600061244147836125dd565b9050600061245e87611fdb601754856125be90919063ffffffff16565b9050600061247b88611fdb601954866125be90919063ffffffff16565b905060008161248a8486612cc3565b6124949190612cc3565b60006018819055601781905560198190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b5090985050861580159061250a5750600081115b1561255d5761251987826127a9565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146125aa576040519150601f19603f3d011682016040523d82523d6000602084013e6125af565b606091505b50505050505050505050505050565b60006125ca8284612bc0565b9392505050565b60006125ca8284612bd7565b60006125ca8284612cc3565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061261e5761261e612c0c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561269c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c09190612cd6565b816001815181106126d3576126d3612c0c565b60200260200101906001600160a01b031690816001600160a01b03168152505061271e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ca565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612773908590600090869030904290600401612cf3565b600060405180830381600087803b15801561278d57600080fd5b505af11580156127a1573d6000803e3d6000fd5b505050505050565b6127d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ca565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561285e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128839190612d64565b5050505050565b600060208083528351808285015260005b818110156128b75785810183015185820160400152820161289b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c757600080fd5b80356115ed816128d8565b6000806040838503121561290b57600080fd5b8235612916816128d8565b946020939093013593505050565b60006020828403121561293657600080fd5b81356125ca816128d8565b60006020828403121561295357600080fd5b5035919050565b60008060006060848603121561296f57600080fd5b833561297a816128d8565b9250602084013561298a816128d8565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156129c457600080fd5b823567ffffffffffffffff808211156129dc57600080fd5b818501915085601f8301126129f057600080fd5b813581811115612a0257612a0261299b565b8060051b604051601f19603f83011681018181108582111715612a2757612a2761299b565b604052918252848201925083810185019188831115612a4557600080fd5b938501935b82851015612a6a57612a5b856128ed565b84529385019392850192612a4a565b98975050505050505050565b803580151581146115ed57600080fd5b60008060408385031215612a9957600080fd5b8235612aa4816128d8565b9150612ab260208401612a76565b90509250929050565b600080600060608486031215612ad057600080fd5b505081359360208301359350604090920135919050565b600060208284031215612af957600080fd5b6125ca82612a76565b60008060408385031215612b1557600080fd5b8235612b20816128d8565b91506020830135612b30816128d8565b809150509250929050565b600181811c90821680612b4f57607f821691505b602082108103612b6f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610b0f57610b0f612baa565b600082612bf457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610b0f57610b0f612baa565b634e487b7160e01b600052603260045260246000fd5b600060018201612c3457612c34612baa565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b0f57610b0f612baa565b600060208284031215612ce857600080fd5b81516125ca816128d8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d435784516001600160a01b031683529383019391830191600101612d1e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612d7957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207f9b5a1b131e0c1e3b1a4918da9c6c97e2d9a7267d4018dbc41dd30a7b33bbd964736f6c63430008110033

Deployed Bytecode Sourcemap

33009:17472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9863:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12171:210;;;;;;;;;;-1:-1:-1;12171:210:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;12171:210:0;1162:187:1;34498:63:0;;;;;;;;;;-1:-1:-1;34498:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33089:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1797:32:1;;;1779:51;;1767:2;1752:18;33089:51:0;1606:230:1;10983:108:0;;;;;;;;;;-1:-1:-1;11071:12:0;;10983:108;;;1987:25:1;;;1975:2;1960:18;10983:108:0;1841:177:1;42208:157:0;;;;;;;;;;-1:-1:-1;42208:157:0;;;;;:::i;:::-;;:::i;:::-;;34216:33;;;;;;;;;;;;;;;;34176;;;;;;;;;;;;;;;;39125:275;;;;;;;;;;-1:-1:-1;39125:275:0;;;;;:::i;:::-;;:::i;12863:529::-;;;;;;;;;;-1:-1:-1;12863:529:0;;;;;:::i;:::-;;:::i;33192:53::-;;;;;;;;;;;;33238:6;33192:53;;10825:93;;;;;;;;;;-1:-1:-1;10825:93:0;;10908:2;3019:36:1;;3007:2;2992:18;10825:93:0;2877:184:1;13801:297:0;;;;;;;;;;-1:-1:-1;13801:297:0;;;;;:::i;:::-;;:::i;41064:189::-;;;;;;;;;;-1:-1:-1;41064:189:0;;;;;:::i;:::-;;:::i;33147:38::-;;;;;;;;;;;;;;;33469:33;;;;;;;;;;-1:-1:-1;33469:33:0;;;;;;;;42373:126;;;;;;;;;;-1:-1:-1;42373:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42463:28:0;42439:4;42463:28;;;:19;:28;;;;;;;;;42373:126;34031:28;;;;;;;;;;;;;;;;33549:31;;;;;;;;;;-1:-1:-1;33549:31:0;;;;;;;;;;;11154:177;;;;;;;;;;-1:-1:-1;11154:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11305:18:0;11273:7;11305:18;;;;;;;;;;;;11154:177;2982:103;;;;;;;;;;;;;:::i;38233:121::-;;;;;;;;;;;;;:::i;39672:167::-;;;;;;;;;;-1:-1:-1;39672:167:0;;;;;:::i;:::-;;:::i;33284:30::-;;;;;;;;;;-1:-1:-1;33284:30:0;;;;-1:-1:-1;;;;;33284:30:0;;;33924;;;;;;;;;;;;;;;;41261:192;;;;;;;;;;-1:-1:-1;41261:192:0;;;;;:::i;:::-;;:::i;40043:403::-;;;;;;;;;;-1:-1:-1;40043:403:0;;;;;:::i;:::-;;:::i;38033:148::-;;;;;;;;;;;;;:::i;2331:87::-;;;;;;;;;;-1:-1:-1;2404:6:0;;-1:-1:-1;;;;;2404:6:0;2331:87;;33321:24;;;;;;;;;;-1:-1:-1;33321:24:0;;;;-1:-1:-1;;;;;33321:24:0;;;34066:31;;;;;;;;;;;;;;;;39935:100;;;;;;;;;;-1:-1:-1;39935:100:0;;;;;:::i;:::-;;:::i;10082:104::-;;;;;;;;;;;;;:::i;41461:304::-;;;;;;;;;;-1:-1:-1;41461:304:0;;;;;:::i;:::-;;:::i;33998:24::-;;;;;;;;;;;;;;;;34256:27;;;;;;;;;;;;;;;;34142:25;;;;;;;;;;;;;;;;14601:482;;;;;;;;;;-1:-1:-1;14601:482:0;;;;;:::i;:::-;;:::i;11544:216::-;;;;;;;;;;-1:-1:-1;11544:216:0;;;;;:::i;:::-;;:::i;41969:231::-;;;;;;;;;;-1:-1:-1;41969:231:0;;;;;:::i;:::-;;:::i;34719:57::-;;;;;;;;;;-1:-1:-1;34719:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33509:33;;;;;;;;;;-1:-1:-1;33509:33:0;;;;;;;;;;;40874:182;;;;;;;;;;-1:-1:-1;40874:182:0;;;;;:::i;:::-;;:::i;40454:412::-;;;;;;;;;;-1:-1:-1;40454:412:0;;;;;:::i;:::-;;:::i;39408:256::-;;;;;;;;;;-1:-1:-1;39408:256:0;;;;;:::i;:::-;;:::i;33767:39::-;;;;;;;;;;-1:-1:-1;33767:39:0;;;;;;;;33354:35;;;;;;;;;;;;;;;;38620:497;;;;;;;;;;-1:-1:-1;38620:497:0;;;;;:::i;:::-;;:::i;33890:27::-;;;;;;;;;;;;;;;;11823:201;;;;;;;;;;-1:-1:-1;11823:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11989:18:0;;;11957:7;11989:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11823:201;33396:33;;;;;;;;;;;;;;;;38415:135;;;;;;;;;;;;;:::i;33961:30::-;;;;;;;;;;;;;;;;3240:238;;;;;;;;;;-1:-1:-1;3240:238:0;;;;;:::i;:::-;;:::i;34104:31::-;;;;;;;;;;;;;;;;33436:24;;;;;;;;;;;;;;;;9863:100;9917:13;9950:5;9943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9863:100;:::o;12171:210::-;12290:4;12312:39;1059:10;12335:7;12344:6;12312:8;:39::i;:::-;-1:-1:-1;12369:4:0;12171:210;;;;;:::o;42208:157::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;;;;;;;;;42315:9:::1;::::0;42287:38:::1;::::0;-1:-1:-1;;;;;42315:9:0;;::::1;::::0;42287:38;::::1;::::0;::::1;::::0;42315:9:::1;::::0;42287:38:::1;42336:9;:21:::0;;-1:-1:-1;;;;;;42336:21:0::1;-1:-1:-1::0;;;;;42336:21:0;;;::::1;::::0;;;::::1;::::0;;42208:157::o;39125:275::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;39262:4:::1;39254;39233:13;11071:12:::0;;;10983:108;39233:13:::1;:17;::::0;39249:1:::1;39233:17;:::i;:::-;39232:26;;;;:::i;:::-;39231:35;;;;:::i;:::-;39221:6;:45;;39199:142;;;::::0;-1:-1:-1;;;39199:142:0;;7183:2:1;39199:142:0::1;::::0;::::1;7165:21:1::0;7222:2;7202:18;;;7195:30;7261:34;7241:18;;;7234:62;-1:-1:-1;;;7312:18:1;;;7305:45;7367:19;;39199:142:0::1;6981:411:1::0;39199:142:0::1;39375:17;:6:::0;39385::::1;39375:17;:::i;:::-;39352:20;:40:::0;-1:-1:-1;39125:275:0:o;12863:529::-;13003:4;13020:36;13030:6;13038:9;13049:6;13020:9;:36::i;:::-;-1:-1:-1;;;;;13096:19:0;;13069:24;13096:19;;;:11;:19;;;;;;;;1059:10;13096:33;;;;;;;;13162:26;;;;13140:116;;;;-1:-1:-1;;;13140:116:0;;7599:2:1;13140:116:0;;;7581:21:1;7638:2;7618:18;;;7611:30;7677:34;7657:18;;;7650:62;-1:-1:-1;;;7728:18:1;;;7721:38;7776:19;;13140:116:0;7397:404:1;13140:116:0;13292:57;13301:6;1059:10;13342:6;13323:16;:25;13292:8;:57::i;:::-;-1:-1:-1;13380:4:0;;12863:529;-1:-1:-1;;;;12863:529:0:o;13801:297::-;1059:10;13916:4;14010:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14010:34:0;;;;;;;;;;13916:4;;13938:130;;13988:7;;14010:47;;14047:10;;14010:47;:::i;:::-;13938:8;:130::i;41064:189::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;41151:6:::1;41146:100;41167:8;:15;41163:1;:19;41146:100;;;41230:4;41204:10;:23;41215:8;41224:1;41215:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;41204:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;41204:23:0;:30;;-1:-1:-1;;41204:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41184:3;::::1;::::0;::::1;:::i;:::-;;;;41146:100;;;;41064:189:::0;:::o;2982:103::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;3047:30:::1;3074:1;3047:18;:30::i;:::-;2982:103::o:0;38233:121::-;2404:6;;38285:4;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;38302:14:0::1;:22:::0;;-1:-1:-1;;38302:22:0::1;::::0;;;38233:121;:::o;39672:167::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39785:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39785:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39672:167::o;41261:192::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;41350:6:::1;41345:101;41366:8;:15;41362:1;:19;41345:101;;;41429:5;41403:10;:23;41414:8;41423:1;41414:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;41403:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;41403:23:0;:31;;-1:-1:-1;;41403:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41383:3;::::1;::::0;::::1;:::i;:::-;;;;41345:101;;40043:403:::0;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;40193:15:::1;:31:::0;;;40235:15:::1;:31:::0;;;40277:9:::1;:19:::0;;;40289:7;40322:33:::1;40253:13:::0;40211;40322:33:::1;:::i;:::-;:45;;;;:::i;:::-;40307:12;:60:::0;;;40402:2:::1;-1:-1:-1::0;40386:18:0::1;40378:60;;;::::0;-1:-1:-1;;;40378:60:0;;8410:2:1;40378:60:0::1;::::0;::::1;8392:21:1::0;8449:2;8429:18;;;8422:30;8488:31;8468:18;;;8461:59;8537:18;;40378:60:0::1;8208:353:1::0;40378:60:0::1;40043:403:::0;;;:::o;38033:148::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;38088:13:::1;:20:::0;;-1:-1:-1;;38119:18:0;;;;;38161:12:::1;38148:10;:25:::0;38033:148::o;39935:100::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;40006:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;40006:21:0;;::::1;::::0;;;::::1;::::0;;39935:100::o;10082:104::-;10138:13;10171:7;10164:14;;;;;:::i;41461:304::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;41605:13:::1;-1:-1:-1::0;;;;;41597:21:0::1;:4;-1:-1:-1::0;;;;;41597:21:0::1;::::0;41575:128:::1;;;::::0;-1:-1:-1;;;41575:128:0;;8768:2:1;41575:128:0::1;::::0;::::1;8750:21:1::0;8807:2;8787:18;;;8780:30;8846:34;8826:18;;;8819:62;8917:27;8897:18;;;8890:55;8962:19;;41575:128:0::1;8566:421:1::0;41575:128:0::1;41716:41;41745:4;41751:5;41716:28;:41::i;14601:482::-:0;1059:10;14721:4;14770:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14770:34:0;;;;;;;;;;14837:35;;;;14815:122;;;;-1:-1:-1;;;14815:122:0;;9194:2:1;14815:122:0;;;9176:21:1;9233:2;9213:18;;;9206:30;9272:34;9252:18;;;9245:62;-1:-1:-1;;;9323:18:1;;;9316:35;9368:19;;14815:122:0;8992:401:1;14815:122:0;14973:67;1059:10;14996:7;15024:15;15005:16;:34;14973:8;:67::i;:::-;-1:-1:-1;15071:4:0;;14601:482;-1:-1:-1;;;14601:482:0:o;11544:216::-;11666:4;11688:42;1059:10;11712:9;11723:6;11688:9;:42::i;41969:231::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;42129:15:::1;::::0;42086:59:::1;::::0;-1:-1:-1;;;;;42129:15:0;;::::1;::::0;42086:59;::::1;::::0;::::1;::::0;42129:15:::1;::::0;42086:59:::1;42156:15;:36:::0;;-1:-1:-1;;;;;;42156:36:0::1;-1:-1:-1::0;;;;;42156:36:0;;;::::1;::::0;;;::::1;::::0;;41969:231::o;40874:182::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40959:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40959:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41014:34;;1302:41:1;;;41014:34:0::1;::::0;1275:18:1;41014:34:0::1;;;;;;;40874:182:::0;;:::o;40454:412::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;40605:16:::1;:32:::0;;;40648:16:::1;:32:::0;;;40691:10:::1;:20:::0;;;40704:7;40738:35:::1;40667:13:::0;40624;40738:35:::1;:::i;:::-;:48;;;;:::i;:::-;40722:13;:64:::0;;;40822:2:::1;-1:-1:-1::0;40805:19:0::1;40797:61;;;::::0;-1:-1:-1;;;40797:61:0;;8410:2:1;40797:61:0::1;::::0;::::1;8392:21:1::0;8449:2;8429:18;;;8422:30;8488:31;8468:18;;;8461:59;8537:18;;40797:61:0::1;8208:353:1::0;39408:256:0;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;39548:4:::1;39540;39519:13;11071:12:::0;;;10983:108;39519:13:::1;:17;::::0;39535:1:::1;39519:17;:::i;:::-;39518:26;;;;:::i;:::-;39517:35;;;;:::i;:::-;39507:6;:45;;39485:131;;;::::0;-1:-1:-1;;;39485:131:0;;9600:2:1;39485:131:0::1;::::0;::::1;9582:21:1::0;9639:2;9619:18;;;9612:30;9678:34;9658:18;;;9651:62;-1:-1:-1;;;9729:18:1;;;9722:34;9773:19;;39485:131:0::1;9398:400:1::0;39485:131:0::1;39639:17;:6:::0;39649::::1;39639:17;:::i;:::-;39627:9;:29:::0;-1:-1:-1;39408:256:0:o;38620:497::-;2404:6;;38728:4;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;38807:6:::1;38786:13;11071:12:::0;;;10983:108;38786:13:::1;:17;::::0;38802:1:::1;38786:17;:::i;:::-;38785:28;;;;:::i;:::-;38772:9;:41;;38750:144;;;::::0;-1:-1:-1;;;38750:144:0;;10005:2:1;38750:144:0::1;::::0;::::1;9987:21:1::0;10044:2;10024:18;;;10017:30;10083:34;10063:18;;;10056:62;-1:-1:-1;;;10134:18:1;;;10127:51;10195:19;;38750:144:0::1;9803:417:1::0;38750:144:0::1;38962:4;38941:13;11071:12:::0;;;10983:108;38941:13:::1;:17;::::0;38957:1:::1;38941:17;:::i;:::-;38940:26;;;;:::i;:::-;38927:9;:39;;38905:141;;;::::0;-1:-1:-1;;;38905:141:0;;10427:2:1;38905:141:0::1;::::0;::::1;10409:21:1::0;10466:2;10446:18;;;10439:30;10505:34;10485:18;;;10478:62;-1:-1:-1;;;10556:18:1;;;10549:50;10616:19;;38905:141:0::1;10225:416:1::0;38905:141:0::1;-1:-1:-1::0;39057:18:0::1;:30:::0;;;39105:4:::1;2622:1;38620:497:::0;;;:::o;38415:135::-;2404:6;;38475:4;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;38492:20:0::1;:28:::0;;-1:-1:-1;;38492:28:0::1;::::0;;;38415:135;:::o;3240:238::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1059:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3343:22:0;::::1;3321:110;;;::::0;-1:-1:-1;;;3321:110:0;;10848:2:1;3321:110:0::1;::::0;::::1;10830:21:1::0;10887:2;10867:18;;;10860:30;10926:34;10906:18;;;10899:62;-1:-1:-1;;;10977:18:1;;;10970:36;11023:19;;3321:110:0::1;10646:402:1::0;3321:110:0::1;3442:28;3461:8;3442:18;:28::i;:::-;3240:238:::0;:::o;18391:380::-;-1:-1:-1;;;;;18527:19:0;;18519:68;;;;-1:-1:-1;;;18519:68:0;;11255:2:1;18519:68:0;;;11237:21:1;11294:2;11274:18;;;11267:30;11333:34;11313:18;;;11306:62;-1:-1:-1;;;11384:18:1;;;11377:34;11428:19;;18519:68:0;11053:400:1;18519:68:0;-1:-1:-1;;;;;18606:21:0;;18598:68;;;;-1:-1:-1;;;18598:68:0;;11660:2:1;18598:68:0;;;11642:21:1;11699:2;11679:18;;;11672:30;11738:34;11718:18;;;11711:62;-1:-1:-1;;;11789:18:1;;;11782:32;11831:19;;18598:68:0;11458:398:1;18598:68:0;-1:-1:-1;;;;;18679:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18731:32;;1987:25:1;;;18731:32:0;;1960:18:1;18731:32:0;;;;;;;18391:380;;;:::o;42507:5085::-;-1:-1:-1;;;;;42639:18:0;;42631:68;;;;-1:-1:-1;;;42631:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42718:16:0;;42710:64;;;;-1:-1:-1;;;42710:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42794:14:0;;;;;;:10;:14;;;;;;;;42793:15;:36;;;;-1:-1:-1;;;;;;42813:16:0;;;;;;:10;:16;;;;;;;;42812:17;42793:36;42785:98;;;;-1:-1:-1;;;42785:98:0;;12873:2:1;42785:98:0;;;12855:21:1;12912:2;12892:18;;;12885:30;12951:34;12931:18;;;12924:62;-1:-1:-1;;;13002:18:1;;;12995:47;13059:19;;42785:98:0;12671:413:1;42785:98:0;42900:6;42910:1;42900:11;42896:93;;42928:28;42944:4;42950:2;42954:1;42928:15;:28::i;42896:93::-;43005:14;;;;43001:2487;;;2404:6;;-1:-1:-1;;;;;43058:15:0;;;2404:6;;43058:15;;;;:49;;-1:-1:-1;2404:6:0;;-1:-1:-1;;;;;43094:13:0;;;2404:6;;43094:13;;43058:49;:86;;;;-1:-1:-1;;;;;;43128:16:0;;;;43058:86;:128;;;;-1:-1:-1;;;;;;43165:21:0;;43179:6;43165:21;;43058:128;:158;;;;-1:-1:-1;43208:8:0;;-1:-1:-1;;;43208:8:0;;;;43207:9;43058:158;43036:2441;;;43256:13;;;;;;;43251:223;;-1:-1:-1;;;;;43328:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43357:23:0;;;;;;:19;:23;;;;;;;;43328:52;43294:160;;;;-1:-1:-1;;;43294:160:0;;13291:2:1;43294:160:0;;;13273:21:1;13330:2;13310:18;;;13303:30;-1:-1:-1;;;13349:18:1;;;13342:52;13411:18;;43294:160:0;13089:346:1;43294:160:0;43630:20;;;;43626:641;;;2404:6;;-1:-1:-1;;;;;43705:13:0;;;2404:6;;43705:13;;;;:72;;;43761:15;-1:-1:-1;;;;;43747:30:0;:2;-1:-1:-1;;;;;43747:30:0;;;43705:72;:129;;;;;43820:13;-1:-1:-1;;;;;43806:28:0;:2;-1:-1:-1;;;;;43806:28:0;;;43705:129;43675:573;;;43952:9;43923:39;;;;:28;:39;;;;;;43998:12;-1:-1:-1;43885:258:0;;;;-1:-1:-1;;;43885:258:0;;13642:2:1;43885:258:0;;;13624:21:1;13681:2;13661:18;;;13654:30;13720:34;13700:18;;;13693:62;13791:34;13771:18;;;13764:62;-1:-1:-1;;;13842:19:1;;;13835:40;13892:19;;43885:258:0;13440:477:1;43885:258:0;44199:9;44170:39;;;;:28;:39;;;;;44212:12;44170:54;;43675:573;-1:-1:-1;;;;;44341:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;44398:35:0;;;;;;:31;:35;;;;;;;;44397:36;44341:92;44315:1147;;;44520:20;;44510:6;:30;;44476:169;;;;-1:-1:-1;;;44476:169:0;;14124:2:1;44476:169:0;;;14106:21:1;14163:2;14143:18;;;14136:30;14202:34;14182:18;;;14175:62;-1:-1:-1;;;14253:18:1;;;14246:51;14314:19;;44476:169:0;13922:417:1;44476:169:0;44728:9;;-1:-1:-1;;;;;11305:18:0;;11273:7;11305:18;;;;;;;;;;;44702:22;;:6;:22;:::i;:::-;:35;;44668:140;;;;-1:-1:-1;;;44668:140:0;;14546:2:1;44668:140:0;;;14528:21:1;14585:2;14565:18;;;14558:30;-1:-1:-1;;;14604:18:1;;;14597:49;14663:18;;44668:140:0;14344:343:1;44668:140:0;44315:1147;;;-1:-1:-1;;;;;44906:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44961:37:0;;;;;;:31;:37;;;;;;;;44960:38;44906:92;44880:582;;;45085:20;;45075:6;:30;;45041:170;;;;-1:-1:-1;;;45041:170:0;;14894:2:1;45041:170:0;;;14876:21:1;14933:2;14913:18;;;14906:30;14972:34;14952:18;;;14945:62;-1:-1:-1;;;15023:18:1;;;15016:52;15085:19;;45041:170:0;14692:418:1;44880:582:0;-1:-1:-1;;;;;45242:35:0;;;;;;:31;:35;;;;;;;;45237:225;;45362:9;;-1:-1:-1;;;;;11305:18:0;;11273:7;11305:18;;;;;;;;;;;45336:22;;:6;:22;:::i;:::-;:35;;45302:140;;;;-1:-1:-1;;;45302:140:0;;14546:2:1;45302:140:0;;;14528:21:1;14585:2;14565:18;;;14558:30;-1:-1:-1;;;14604:18:1;;;14597:49;14663:18;;45302:140:0;14344:343:1;45302:140:0;45548:10;;:14;;45561:1;45548:14;:::i;:::-;45531:12;:32;;:72;;;;;45590:13;-1:-1:-1;;;;;45584:19:0;:2;-1:-1:-1;;;;;45584:19:0;;;45531:72;:151;;;;-1:-1:-1;;;;;;45625:57:0;;45639:42;45625:57;;45531:151;45527:220;;;-1:-1:-1;;;;;45714:14:0;;;;;;:10;:14;;;;;:21;;-1:-1:-1;;45714:21:0;45731:4;45714:21;;;45527:220;45808:4;45759:28;11305:18;;;;;;;;;;;45866;;45842:42;;;;;;;45915:35;;-1:-1:-1;45939:11:0;;;;;;;45915:35;:61;;;;-1:-1:-1;45968:8:0;;-1:-1:-1;;;45968:8:0;;;;45967:9;45915:61;:110;;;;-1:-1:-1;;;;;;45994:31:0;;;;;;:25;:31;;;;;;;;45993:32;45915:110;:153;;;;-1:-1:-1;;;;;;46043:25:0;;;;;;:19;:25;;;;;;;;46042:26;45915:153;:194;;;;-1:-1:-1;;;;;;46086:23:0;;;;;;:19;:23;;;;;;;;46085:24;45915:194;45897:326;;;46136:8;:15;;-1:-1:-1;;;;46136:15:0;-1:-1:-1;;;46136:15:0;;;46168:10;:8;:10::i;:::-;46195:8;:16;;-1:-1:-1;;;;46195:16:0;;;45897:326;46251:8;;-1:-1:-1;;;;;46361:25:0;;46235:12;46361:25;;;:19;:25;;;;;;46251:8;-1:-1:-1;;;46251:8:0;;;;;46250:9;;46361:25;;:52;;-1:-1:-1;;;;;;46390:23:0;;;;;;:19;:23;;;;;;;;46361:52;46357:100;;;-1:-1:-1;46440:5:0;46357:100;46469:12;46574:7;46570:969;;;-1:-1:-1;;;;;46626:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46675:1;46659:13;;:17;46626:50;46622:768;;;46704:34;46734:3;46704:25;46715:13;;46704:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;46697:41;;46807:13;;46787:16;;46780:4;:23;;;;:::i;:::-;46779:41;;;;:::i;:::-;46757:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46877:13:0;;46863:10;;46856:17;;:4;:17;:::i;:::-;46855:35;;;;:::i;:::-;46839:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46959:13:0;;46939:16;;46932:23;;:4;:23;:::i;:::-;46931:41;;;;:::i;:::-;46909:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;46622:768:0;;-1:-1:-1;46622:768:0;;-1:-1:-1;;;;;47034:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;47084:1;47069:12;;:16;47034:51;47030:360;;;47113:33;47142:3;47113:24;47124:12;;47113:6;:10;;:24;;;;:::i;:33::-;47106:40;;47214:12;;47195:15;;47188:4;:22;;;;:::i;:::-;47187:39;;;;:::i;:::-;47165:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;47282:12:0;;47269:9;;47262:16;;:4;:16;:::i;:::-;47261:33;;;;:::i;:::-;47245:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;47362:12:0;;47343:15;;47336:22;;:4;:22;:::i;:::-;47335:39;;;;:::i;:::-;47313:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;47030:360:0;47410:8;;47406:91;;47439:42;47455:4;47469;47476;47439:15;:42::i;:::-;47513:14;47523:4;47513:14;;:::i;:::-;;;46570:969;47551:33;47567:4;47573:2;47577:6;47551:15;:33::i;:::-;42620:4972;;;;42507:5085;;;:::o;3638:191::-;3731:6;;;-1:-1:-1;;;;;3748:17:0;;;-1:-1:-1;;;;;;3748:17:0;;;;;;;3781:40;;3731:6;;;3748:17;3731:6;;3781:40;;3712:16;;3781:40;3701:128;3638:191;:::o;41773:188::-;-1:-1:-1;;;;;41856:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41856:39:0;;;;;;;;;;41913:40;;41856:39;;:31;41913:40;;;41773:188;;:::o;15573:770::-;-1:-1:-1;;;;;15713:20:0;;15705:70;;;;-1:-1:-1;;;15705:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15794:23:0;;15786:71;;;;-1:-1:-1;;;15786:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15954:17:0;;15930:21;15954:17;;;;;;;;;;;16004:23;;;;15982:111;;;;-1:-1:-1;;;15982:111:0;;15450:2:1;15982:111:0;;;15432:21:1;15489:2;15469:18;;;15462:30;15528:34;15508:18;;;15501:62;-1:-1:-1;;;15579:18:1;;;15572:36;15625:19;;15982:111:0;15248:402:1;15982:111:0;-1:-1:-1;;;;;16129:17:0;;;:9;:17;;;;;;;;;;;16149:22;;;16129:42;;16193:20;;;;;;;;:30;;16165:6;;16129:9;16193:30;;16165:6;;16193:30;:::i;:::-;;;;;;;;16258:9;-1:-1:-1;;;;;16241:35:0;16250:6;-1:-1:-1;;;;;16241:35:0;;16269:6;16241:35;;;;1987:25:1;;1975:2;1960:18;;1841:177;16241:35:0;;;;;;;;15694:649;15573:770;;;:::o;48722:1756::-;48805:4;48761:23;11305:18;;;;;;;;;;;48761:50;;48822:25;48918:12;;48884:18;;48850;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48822:108;-1:-1:-1;48941:12:0;48970:20;;;:46;;-1:-1:-1;48994:22:0;;48970:46;48966:85;;;49033:7;;;48722:1756::o;48966:85::-;49085:18;;:23;;49106:2;49085:23;:::i;:::-;49067:15;:41;49063:115;;;49143:18;;:23;;49164:2;49143:23;:::i;:::-;49125:41;;49063:115;49239:23;49352:1;49319:17;49284:18;;49266:15;:36;;;;:::i;:::-;49265:71;;;;:::i;:::-;:88;;;;:::i;:::-;49239:114;-1:-1:-1;49364:26:0;49393:36;:15;49239:114;49393:19;:36::i;:::-;49364:65;-1:-1:-1;49470:21:0;49504:36;49364:65;49504:16;:36::i;:::-;49553:18;49574:44;:21;49600:17;49574:25;:44::i;:::-;49553:65;;49631:23;49657:81;49710:17;49657:34;49672:18;;49657:10;:14;;:34;;;;:::i;:81::-;49631:107;;49749:17;49769:51;49802:17;49769:28;49784:12;;49769:10;:14;;:28;;;;:::i;:51::-;49749:71;-1:-1:-1;49833:23:0;49749:71;49859:28;49872:15;49859:10;:28;:::i;:::-;:40;;;;:::i;:::-;49933:1;49912:18;:22;;;49945:18;:22;;;49978:12;:16;;;50029:9;;50021:45;;49833:66;;-1:-1:-1;;;;;;50029:9:0;;50052;;50021:45;49933:1;50021:45;50052:9;50029;50021:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50007:59:0;;-1:-1:-1;;50083:19:0;;;;;:42;;;50124:1;50106:15;:19;50083:42;50079:278;;;50142:46;50155:15;50172;50142:12;:46::i;:::-;50312:18;;50208:137;;;16067:25:1;;;16123:2;16108:18;;16101:34;;;16151:18;;;16144:34;;;;50208:137:0;;;;;;16055:2:1;50208:137:0;;;50079:278;50391:15;;50383:87;;-1:-1:-1;;;;;50391:15:0;;;;50434:21;;50383:87;;;;50434:21;50391:15;50383:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48722:1756:0:o;24004:98::-;24062:7;24089:5;24093:1;24089;:5;:::i;:::-;24082:12;24004:98;-1:-1:-1;;;24004:98:0:o;24403:::-;24461:7;24488:5;24492:1;24488;:5;:::i;23647:98::-;23705:7;23732:5;23736:1;23732;:5;:::i;47600:589::-;47750:16;;;47764:1;47750:16;;;;;;;;47726:21;;47750:16;;;;;;;;;;-1:-1:-1;47750:16:0;47726:40;;47795:4;47777;47782:1;47777:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47777:23:0;;;-1:-1:-1;;;;;47777:23:0;;;;;47821:15;-1:-1:-1;;;;;47821:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47811:4;47816:1;47811:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47811:32:0;;;-1:-1:-1;;;;;47811:32:0;;;;;47856:62;47873:4;47888:15;47906:11;47856:8;:62::i;:::-;47957:224;;-1:-1:-1;;;47957:224:0;;-1:-1:-1;;;;;47957:15:0;:66;;;;:224;;48038:11;;48064:1;;48108:4;;48135;;48155:15;;47957:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47655:534;47600:589;:::o;48197:517::-;48345:62;48362:4;48377:15;48395:11;48345:8;:62::i;:::-;48450:256;;-1:-1:-1;;;48450:256:0;;48522:4;48450:256;;;17771:34:1;17821:18;;;17814:34;;;48568:1:0;17864:18:1;;;17857:34;;;17907:18;;;17900:34;33238:6:0;17950:19:1;;;17943:44;48680:15:0;18003:19:1;;;17996:35;48450:15:0;-1:-1:-1;;;;;48450:31:0;;;;48489:9;;17705:19:1;;48450:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48197:517;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1354:247::-;1413:6;1466:2;1454:9;1445:7;1441:23;1437:32;1434:52;;;1482:1;1479;1472:12;1434:52;1521:9;1508:23;1540:31;1565:5;1540:31;:::i;2023:180::-;2082:6;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;-1:-1:-1;2174:23:1;;2023:180;-1:-1:-1;2023:180:1:o;2208:456::-;2285:6;2293;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2409:9;2396:23;2428:31;2453:5;2428:31;:::i;:::-;2478:5;-1:-1:-1;2535:2:1;2520:18;;2507:32;2548:33;2507:32;2548:33;:::i;:::-;2208:456;;2600:7;;-1:-1:-1;;;2654:2:1;2639:18;;;;2626:32;;2208:456::o;3066:127::-;3127:10;3122:3;3118:20;3115:1;3108:31;3158:4;3155:1;3148:15;3182:4;3179:1;3172:15;3198:1121;3282:6;3313:2;3356;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3412:9;3399:23;3441:18;3482:2;3474:6;3471:14;3468:34;;;3498:1;3495;3488:12;3468:34;3536:6;3525:9;3521:22;3511:32;;3581:7;3574:4;3570:2;3566:13;3562:27;3552:55;;3603:1;3600;3593:12;3552:55;3639:2;3626:16;3661:2;3657;3654:10;3651:36;;;3667:18;;:::i;:::-;3713:2;3710:1;3706:10;3745:2;3739:9;3808:2;3804:7;3799:2;3795;3791:11;3787:25;3779:6;3775:38;3863:6;3851:10;3848:22;3843:2;3831:10;3828:18;3825:46;3822:72;;;3874:18;;:::i;:::-;3910:2;3903:22;3960:18;;;3994:15;;;;-1:-1:-1;4036:11:1;;;4032:20;;;4064:19;;;4061:39;;;4096:1;4093;4086:12;4061:39;4120:11;;;;4140:148;4156:6;4151:3;4148:15;4140:148;;;4222:23;4241:3;4222:23;:::i;:::-;4210:36;;4173:12;;;;4266;;;;4140:148;;;4307:6;3198:1121;-1:-1:-1;;;;;;;;3198:1121:1:o;4324:160::-;4389:20;;4445:13;;4438:21;4428:32;;4418:60;;4474:1;4471;4464:12;4489:315;4554:6;4562;4615:2;4603:9;4594:7;4590:23;4586:32;4583:52;;;4631:1;4628;4621:12;4583:52;4670:9;4657:23;4689:31;4714:5;4689:31;:::i;:::-;4739:5;-1:-1:-1;4763:35:1;4794:2;4779:18;;4763:35;:::i;:::-;4753:45;;4489:315;;;;;:::o;4809:316::-;4886:6;4894;4902;4955:2;4943:9;4934:7;4930:23;4926:32;4923:52;;;4971:1;4968;4961:12;4923:52;-1:-1:-1;;4994:23:1;;;5064:2;5049:18;;5036:32;;-1:-1:-1;5115:2:1;5100:18;;;5087:32;;4809:316;-1:-1:-1;4809:316:1:o;5130:180::-;5186:6;5239:2;5227:9;5218:7;5214:23;5210:32;5207:52;;;5255:1;5252;5245:12;5207:52;5278:26;5294:9;5278:26;:::i;5315:388::-;5383:6;5391;5444:2;5432:9;5423:7;5419:23;5415:32;5412:52;;;5460:1;5457;5450:12;5412:52;5499:9;5486:23;5518:31;5543:5;5518:31;:::i;:::-;5568:5;-1:-1:-1;5625:2:1;5610:18;;5597:32;5638:33;5597:32;5638:33;:::i;:::-;5690:7;5680:17;;;5315:388;;;;;:::o;5708:380::-;5787:1;5783:12;;;;5830;;;5851:61;;5905:4;5897:6;5893:17;5883:27;;5851:61;5958:2;5950:6;5947:14;5927:18;5924:38;5921:161;;6004:10;5999:3;5995:20;5992:1;5985:31;6039:4;6036:1;6029:15;6067:4;6064:1;6057:15;5921:161;;5708:380;;;:::o;6093:356::-;6295:2;6277:21;;;6314:18;;;6307:30;6373:34;6368:2;6353:18;;6346:62;6440:2;6425:18;;6093:356::o;6454:127::-;6515:10;6510:3;6506:20;6503:1;6496:31;6546:4;6543:1;6536:15;6570:4;6567:1;6560:15;6586:168;6659:9;;;6690;;6707:15;;;6701:22;;6687:37;6677:71;;6728:18;;:::i;6759:217::-;6799:1;6825;6815:132;;6869:10;6864:3;6860:20;6857:1;6850:31;6904:4;6901:1;6894:15;6932:4;6929:1;6922:15;6815:132;-1:-1:-1;6961:9:1;;6759:217::o;7806:125::-;7871:9;;;7892:10;;;7889:36;;;7905:18;;:::i;7936:127::-;7997:10;7992:3;7988:20;7985:1;7978:31;8028:4;8025:1;8018:15;8052:4;8049:1;8042:15;8068:135;8107:3;8128:17;;;8125:43;;8148:18;;:::i;:::-;-1:-1:-1;8195:1:1;8184:13;;8068:135::o;11861:401::-;12063:2;12045:21;;;12102:2;12082:18;;;12075:30;12141:34;12136:2;12121:18;;12114:62;-1:-1:-1;;;12207:2:1;12192:18;;12185:35;12252:3;12237:19;;11861:401::o;12267:399::-;12469:2;12451:21;;;12508:2;12488:18;;;12481:30;12547:34;12542:2;12527:18;;12520:62;-1:-1:-1;;;12613:2:1;12598:18;;12591:33;12656:3;12641:19;;12267:399::o;15115:128::-;15182:9;;;15203:11;;;15200:37;;;15217:18;;:::i;16189:251::-;16259:6;16312:2;16300:9;16291:7;16287:23;16283:32;16280:52;;;16328:1;16325;16318:12;16280:52;16360:9;16354:16;16379:31;16404:5;16379:31;:::i;16445:980::-;16707:4;16755:3;16744:9;16740:19;16786:6;16775:9;16768:25;16812:2;16850:6;16845:2;16834:9;16830:18;16823:34;16893:3;16888:2;16877:9;16873:18;16866:31;16917:6;16952;16946:13;16983:6;16975;16968:22;17021:3;17010:9;17006:19;16999:26;;17060:2;17052:6;17048:15;17034:29;;17081:1;17091:195;17105:6;17102:1;17099:13;17091:195;;;17170:13;;-1:-1:-1;;;;;17166:39:1;17154:52;;17261:15;;;;17226:12;;;;17202:1;17120:9;17091:195;;;-1:-1:-1;;;;;;;17342:32:1;;;;17337:2;17322:18;;17315:60;-1:-1:-1;;;17406:3:1;17391:19;17384:35;17303:3;16445:980;-1:-1:-1;;;16445:980:1:o;18042:306::-;18130:6;18138;18146;18199:2;18187:9;18178:7;18174:23;18170:32;18167:52;;;18215:1;18212;18205:12;18167:52;18244:9;18238:16;18228:26;;18294:2;18283:9;18279:18;18273:25;18263:35;;18338:2;18327:9;18323:18;18317:25;18307:35;;18042:306;;;;;:::o

Swarm Source

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