ETH Price: $2,795.84 (+1.00%)

Token

MatrixBot (MTXBOT)
 

Overview

Max Total Supply

100,000,000 MTXBOT

Holders

104

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
86,354.455946191453015841 MTXBOT

Value
$0.00
0x7Ed3f7b72339FFe45DF267d7fd4f80d909EFD529
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:
MatrixBot

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-28
*/

/**
    MatrixBot 
    Experience seamless and lightning-fast trading with our free-to-use Telegram bot.
    
    Website: matrixbot.me
    Twitter: twitter.com/matrixbotme
    Telegram: t.me/matrixbotme
    Telegram Bot: t.me/matrix_eth_bot
    Tutorials: docs.matrixbot.me
**/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    
    // stable then open for swapping 
    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("MatrixBot", "MTXBOT") {
        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 _buyRevShareFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 2;

        uint256 _sellRevShareFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;
        
        // total supply 100 mil
        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 1_000_000 * 1e18; // 1%
        maxWallet = 1_000_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0x104e26f9375772C6F331b3B9DCFBB84e902fE0f0); // set as revShare wallet
        teamWallet = owner(); // set as team wallet

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

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

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

    receive() external payable {}

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        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 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        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;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForRevShare +
            tokensForTeam;
        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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

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

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

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

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","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":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":[{"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":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","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":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckMatrixBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff191660011790553480156200002157600080fd5b506040518060400160405280600981526020016813585d1c9a5e109bdd60ba1b815250604051806040016040528060068152602001651355161093d560d21b815250816003908162000074919062000715565b50600462000083828262000715565b505050620000a06200009a620003b960201b60201c565b620003bd565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c28160016200040f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001339190620007e1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000181573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a79190620007e1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b9190620007e1565b6001600160a01b031660a0819052620002369060016200040f565b60a0516200024690600162000489565b69d3c21bcecceda10000006008819055600a5560026001818082816a52b7d2dcc80cd2e40000006127106200027d82600562000829565b62000289919062000849565b600955600e879055600f869055601085905584620002a887896200086c565b620002b491906200086c565b600d5560128490556013839055601482905581620002d384866200086c565b620002df91906200086c565b601155600680546001600160a01b03191673104e26f9375772c6f331b3b9dcfbb84e902fe0f01790556200031b6005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200034891166001620004dd565b62000355306001620004dd565b6200036461dead6001620004dd565b620003836200037b6005546001600160a01b031690565b60016200040f565b620003903060016200040f565b6200039f61dead60016200040f565b620003ab338262000587565b505050505050505062000882565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200045e5760405162461bcd60e51b81526020600482018190526024820152600080516020620038c283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005285760405162461bcd60e51b81526020600482018190526024820152600080516020620038c2833981519152604482015260640162000455565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005df5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000455565b8060026000828254620005f391906200086c565b90915550506001600160a01b03821660009081526020819052604081208054839290620006229084906200086c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069c57607f821691505b602082108103620006bd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066c57600081815260208120601f850160051c81016020861015620006ec5750805b601f850160051c820191505b818110156200070d57828155600101620006f8565b505050505050565b81516001600160401b0381111562000731576200073162000671565b620007498162000742845462000687565b84620006c3565b602080601f831160018114620007815760008415620007685750858301515b600019600386901b1c1916600185901b1785556200070d565b600085815260208120601f198616915b82811015620007b25788860151825594840194600190910190840162000791565b5085821015620007d15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007f457600080fd5b81516001600160a01b03811681146200080c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000843576200084362000813565b92915050565b6000826200086757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000843576200084362000813565b60805160a051612fe9620008d9600039600081816105cb0152818161117701526119be0152600081816104730152818161290c015281816129c501528181612a0101528181612a7b0152612aa20152612fe96000f3fe6080604052600436106103a65760003560e01c80638095d564116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f8b45b051161006f578063f8b45b0514610ad7578063f9f92be414610a55578063fde83a3414610aed578063fe575a8714610b0357600080fd5b8063e2f4560514610a75578063f11a24d314610a8b578063f2fde38b14610aa1578063f637434214610ac157600080fd5b8063d729715f116100dc578063d729715f146109e3578063d85ba063146109f9578063dd62ed3e14610a0f578063e19b282314610a5557600080fd5b8063c17b5b8c1461096d578063c18bc1951461098d578063c8c8ebe4146109ad578063d257b34f146109c357600080fd5b8063a457c2d711610185578063b62496f511610154578063b62496f5146108de578063bbc0c7421461090e578063bc205ad31461092d578063c02466681461094d57600080fd5b8063a457c2d714610869578063a9059cbb14610889578063adee28ff146108a9578063b1e73f76146108c957600080fd5b8063924de9b7116101c1578063924de9b7146107fe57806395d89b411461081e5780639a7a23d6146108335780639c2e4ac61461085357600080fd5b80638095d564146107ab5780638a8c523c146107cb5780638da5cb5b146107e057600080fd5b806349bd5a5e116102cc57806370a082311161026a57806375e3661e1161023957806375e3661e1461072b578063782c4e991461074b5780637ca8448a1461076b5780637cb332bb1461078b57600080fd5b806370a08231146106ab578063715018a6146106e1578063751039fc146106f65780637571336a1461070b57600080fd5b806359927044116102a657806359927044146106405780635f189361146106605780636a486a8e146106755780636ddd17131461068b57600080fd5b806349bd5a5e146105b95780634a62bb65146105ed5780634fbee1931461060757600080fd5b80631a8145bb1161034457806327c8f8351161031357806327c8f83514610546578063313ce5671461055c57806339509351146105785780633dc599ff1461059857600080fd5b80631a8145bb146104d8578063203e727e146104ee57806323b872dd1461051057806324b9f3c11461053057600080fd5b8063156c2f3511610380578063156c2f351461043d5780631694505e1461046157806318160ddd146104ad57806319eab042146104c257600080fd5b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610b3c565b6040516103d49190612b7b565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612bde565b610bce565b60405190151581526020016103d4565b34801561041957600080fd5b506103fd610428366004612c0a565b60196020526000908152604090205460ff1681565b34801561044957600080fd5b50610453600e5481565b6040519081526020016103d4565b34801561046d57600080fd5b506104957f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d4565b3480156104b957600080fd5b50600254610453565b3480156104ce57600080fd5b5061045360125481565b3480156104e457600080fd5b5061045360165481565b3480156104fa57600080fd5b5061050e610509366004612c27565b610be5565b005b34801561051c57600080fd5b506103fd61052b366004612c40565b610ccb565b34801561053c57600080fd5b5061045360155481565b34801561055257600080fd5b5061049561dead81565b34801561056857600080fd5b50604051601281526020016103d4565b34801561058457600080fd5b506103fd610593366004612bde565b610d75565b3480156105a457600080fd5b50600b546103fd906301000000900460ff1681565b3480156105c557600080fd5b506104957f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f957600080fd5b50600b546103fd9060ff1681565b34801561061357600080fd5b506103fd610622366004612c0a565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561064c57600080fd5b50600754610495906001600160a01b031681565b34801561066c57600080fd5b5061050e610db1565b34801561068157600080fd5b5061045360115481565b34801561069757600080fd5b50600b546103fd9062010000900460ff1681565b3480156106b757600080fd5b506104536106c6366004612c0a565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b5061050e610df0565b34801561070257600080fd5b506103fd610e26565b34801561071757600080fd5b5061050e610726366004612c8f565b610e63565b34801561073757600080fd5b5061050e610746366004612c0a565b610eb8565b34801561075757600080fd5b50600654610495906001600160a01b031681565b34801561077757600080fd5b5061050e610786366004612c0a565b610f03565b34801561079757600080fd5b5061050e6107a6366004612c0a565b610f91565b3480156107b757600080fd5b5061050e6107c6366004612cc8565b611018565b3480156107d757600080fd5b5061050e6110b9565b3480156107ec57600080fd5b506005546001600160a01b0316610495565b34801561080a57600080fd5b5061050e610819366004612cf4565b6110f6565b34801561082a57600080fd5b506103c761113c565b34801561083f57600080fd5b5061050e61084e366004612c8f565b61114b565b34801561085f57600080fd5b5061045360105481565b34801561087557600080fd5b506103fd610884366004612bde565b611226565b34801561089557600080fd5b506103fd6108a4366004612bde565b6112bf565b3480156108b557600080fd5b5061050e6108c4366004612c0a565b6112cc565b3480156108d557600080fd5b5061050e611353565b3480156108ea57600080fd5b506103fd6108f9366004612c0a565b601a6020526000908152604090205460ff1681565b34801561091a57600080fd5b50600b546103fd90610100900460ff1681565b34801561093957600080fd5b5061050e610948366004612d11565b611477565b34801561095957600080fd5b5061050e610968366004612c8f565b6115df565b34801561097957600080fd5b5061050e610988366004612cc8565b611668565b34801561099957600080fd5b5061050e6109a8366004612c27565b61170b565b3480156109b957600080fd5b5061045360085481565b3480156109cf57600080fd5b506103fd6109de366004612c27565b6117dc565b3480156109ef57600080fd5b5061045360145481565b348015610a0557600080fd5b50610453600d5481565b348015610a1b57600080fd5b50610453610a2a366004612d11565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a6157600080fd5b5061050e610a70366004612c0a565b61192e565b348015610a8157600080fd5b5061045360095481565b348015610a9757600080fd5b50610453600f5481565b348015610aad57600080fd5b5061050e610abc366004612c0a565b611aa2565b348015610acd57600080fd5b5061045360135481565b348015610ae357600080fd5b50610453600a5481565b348015610af957600080fd5b5061045360175481565b348015610b0f57600080fd5b506103fd610b1e366004612c0a565b6001600160a01b03166000908152600c602052604090205460ff1690565b606060038054610b4b90612d3f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7790612d3f565b8015610bc45780601f10610b9957610100808354040283529160200191610bc4565b820191906000526020600020905b815481529060010190602001808311610ba757829003601f168201915b5050505050905090565b6000610bdb338484611b3d565b5060015b92915050565b6005546001600160a01b03163314610c185760405162461bcd60e51b8152600401610c0f90612d79565b60405180910390fd5b670de0b6b3a76400006103e8610c2d60025490565b610c38906005612dc4565b610c429190612ddb565b610c4c9190612ddb565b811015610cb35760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610c0f565b610cc581670de0b6b3a7640000612dc4565b60085550565b6000610cd8848484611c61565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d5d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c0f565b610d6a8533858403611b3d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bdb918590610dac908690612dfd565b611b3d565b6005546001600160a01b03163314610ddb5760405162461bcd60e51b8152600401610c0f90612d79565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610e1a5760405162461bcd60e51b8152600401610c0f90612d79565b610e246000612434565b565b6005546000906001600160a01b03163314610e535760405162461bcd60e51b8152600401610c0f90612d79565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e8d5760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ee25760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610c0f90612d79565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f7a576040519150601f19603f3d011682016040523d82523d6000602084013e610f7f565b606091505b5050905080610f8d57600080fd5b5050565b6005546001600160a01b03163314610fbb5760405162461bcd60e51b8152600401610c0f90612d79565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110425760405162461bcd60e51b8152600401610c0f90612d79565b600e839055600f82905560108190558061105c8385612dfd565b6110669190612dfd565b600d819055600510156110b45760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c0f565b505050565b6005546001600160a01b031633146110e35760405162461bcd60e51b8152600401610c0f90612d79565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111205760405162461bcd60e51b8152600401610c0f90612d79565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b4b90612d3f565b6005546001600160a01b031633146111755760405162461bcd60e51b8152600401610c0f90612d79565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361121c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c0f565b610f8d8282612486565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c0f565b6112b53385858403611b3d565b5060019392505050565b6000610bdb338484611c61565b6005546001600160a01b031633146112f65760405162461bcd60e51b8152600401610c0f90612d79565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461137d5760405162461bcd60e51b8152600401610c0f90612d79565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa1580156113bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113df9190612e10565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a9190612e29565b5060405133904780156108fc02916000818181858888f19350505050158015610f8d573d6000803e3d6000fd5b6005546001600160a01b031633146114a15760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b0382166114f75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c0f565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115629190612e10565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156115b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d99190612e29565b50505050565b6005546001600160a01b031633146116095760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116925760405162461bcd60e51b8152600401610c0f90612d79565b601283905560138290556014819055806116ac8385612dfd565b6116b69190612dfd565b6011819055600510156110b45760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c0f565b6005546001600160a01b031633146117355760405162461bcd60e51b8152600401610c0f90612d79565b670de0b6b3a76400006103e861174a60025490565b61175590600a612dc4565b61175f9190612ddb565b6117699190612ddb565b8110156117c45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610c0f565b6117d681670de0b6b3a7640000612dc4565b600a5550565b6005546000906001600160a01b031633146118095760405162461bcd60e51b8152600401610c0f90612d79565b620186a061181660025490565b611821906001612dc4565b61182b9190612ddb565b8210156118985760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c0f565b6103e86118a460025490565b6118af906005612dc4565b6118b99190612ddb565b8211156119255760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c0f565b50600955600190565b6005546001600160a01b031633146119585760405162461bcd60e51b8152600401610c0f90612d79565b600b546301000000900460ff16156119bc5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610c0f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614158015611a1b57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a7e5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610c0f565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611acc5760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b038116611b315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0f565b611b3a81612434565b50565b6001600160a01b038316611b9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c0f565b6001600160a01b038216611c005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c0f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c875760405162461bcd60e51b8152600401610c0f90612e46565b6001600160a01b038216611cad5760405162461bcd60e51b8152600401610c0f90612e8b565b6001600160a01b0383166000908152600c602052604090205460ff1615611d0b5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c0f565b6001600160a01b0382166000908152600c602052604090205460ff1615611d6b5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c0f565b80600003611d7f576110b4838360006124da565b600b5460ff16156120ff576005546001600160a01b03848116911614801590611db657506005546001600160a01b03838116911614155b8015611dca57506001600160a01b03821615155b8015611de157506001600160a01b03821661dead14155b8015611df75750600554600160a01b900460ff16155b156120ff57600b54610100900460ff16611e8f576001600160a01b03831660009081526018602052604090205460ff1680611e4a57506001600160a01b03821660009081526018602052604090205460ff165b611e8f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c0f565b6001600160a01b0383166000908152601a602052604090205460ff168015611ed057506001600160a01b03821660009081526019602052604090205460ff16155b15611fbe57600854811115611f455760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c0f565b600a546001600160a01b038316600090815260208190526040902054611f6b9083612dfd565b1115611fb95760405162461bcd60e51b815260206004820152601e60248201527f4d61782062616c616e6365206f662077616c6c657420657863656564656400006044820152606401610c0f565b6120ff565b6001600160a01b0382166000908152601a602052604090205460ff168015611fff57506001600160a01b03831660009081526019602052604090205460ff16155b1561207557600854811115611fb95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c0f565b6001600160a01b03821660009081526019602052604090205460ff166120ff57600a546001600160a01b0383166000908152602081905260409020546120bb9083612dfd565b11156120ff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c0f565b306000908152602081905260409020546009548110801590819061212b5750600b5462010000900460ff165b80156121415750600554600160a01b900460ff16155b801561216657506001600160a01b0385166000908152601a602052604090205460ff16155b801561218b57506001600160a01b03851660009081526018602052604090205460ff16155b80156121b057506001600160a01b03841660009081526018602052604090205460ff16155b156121de576005805460ff60a01b1916600160a01b1790556121d061262e565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061222c57506001600160a01b03851660009081526018602052604090205460ff165b15612235575060005b60008115612420576001600160a01b0386166000908152601a602052604090205460ff16801561226757506000601154115b156123255761228c60646122866011548861288a90919063ffffffff16565b9061289d565b90506011546013548261229f9190612dc4565b6122a99190612ddb565b601660008282546122ba9190612dfd565b90915550506011546014546122cf9083612dc4565b6122d99190612ddb565b601760008282546122ea9190612dfd565b90915550506011546012546122ff9083612dc4565b6123099190612ddb565b6015600082825461231a9190612dfd565b909155506124029050565b6001600160a01b0387166000908152601a602052604090205460ff16801561234f57506000600d54115b156124025761236e6064612286600d548861288a90919063ffffffff16565b9050600d54600f54826123819190612dc4565b61238b9190612ddb565b6016600082825461239c9190612dfd565b9091555050600d546010546123b19083612dc4565b6123bb9190612ddb565b601760008282546123cc9190612dfd565b9091555050600d54600e546123e19083612dc4565b6123eb9190612ddb565b601560008282546123fc9190612dfd565b90915550505b8015612413576124138730836124da565b61241d8186612ece565b94505b61242b8787876124da565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166125005760405162461bcd60e51b8152600401610c0f90612e46565b6001600160a01b0382166125265760405162461bcd60e51b8152600401610c0f90612e8b565b6001600160a01b0383166000908152602081905260409020548181101561259e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c0f565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125d5908490612dfd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161262191815260200190565b60405180910390a36115d9565b30600090815260208190526040812054905060006017546015546016546126559190612dfd565b61265f9190612dfd565b9050600082158061266e575081155b1561267857505050565b600954612686906014612dc4565b83111561269e5760095461269b906014612dc4565b92505b6000600283601654866126b19190612dc4565b6126bb9190612ddb565b6126c59190612ddb565b905060006126d385836128a9565b9050476126df826128b5565b60006126eb47836128a9565b9050600061271960026016546127019190612ddb565b61270b9089612ece565b60155461228690859061288a565b90506000612747600260165461272f9190612ddb565b612739908a612ece565b60175461228690869061288a565b90506000816127568486612ece565b6127609190612ece565b60006016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146127bd576040519150601f19603f3d011682016040523d82523d6000602084013e6127c2565b606091505b509098505086158015906127d65750600081115b15612829576127e58782612a75565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612876576040519150601f19603f3d011682016040523d82523d6000602084013e61287b565b606091505b50505050505050505050505050565b60006128968284612dc4565b9392505050565b60006128968284612ddb565b60006128968284612ece565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128ea576128ea612ee1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298c9190612ef7565b8160018151811061299f5761299f612ee1565b60200260200101906001600160a01b031690816001600160a01b0316815250506129ea307f000000000000000000000000000000000000000000000000000000000000000084611b3d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612a3f908590600090869030904290600401612f14565b600060405180830381600087803b158015612a5957600080fd5b505af1158015612a6d573d6000803e3d6000fd5b505050505050565b612aa0307f000000000000000000000000000000000000000000000000000000000000000084611b3d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612ae76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b4f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b749190612f85565b5050505050565b600060208083528351808285015260005b81811015612ba857858101830151858201604001528201612b8c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611b3a57600080fd5b60008060408385031215612bf157600080fd5b8235612bfc81612bc9565b946020939093013593505050565b600060208284031215612c1c57600080fd5b813561289681612bc9565b600060208284031215612c3957600080fd5b5035919050565b600080600060608486031215612c5557600080fd5b8335612c6081612bc9565b92506020840135612c7081612bc9565b929592945050506040919091013590565b8015158114611b3a57600080fd5b60008060408385031215612ca257600080fd5b8235612cad81612bc9565b91506020830135612cbd81612c81565b809150509250929050565b600080600060608486031215612cdd57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612d0657600080fd5b813561289681612c81565b60008060408385031215612d2457600080fd5b8235612d2f81612bc9565b91506020830135612cbd81612bc9565b600181811c90821680612d5357607f821691505b602082108103612d7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610bdf57610bdf612dae565b600082612df857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610bdf57610bdf612dae565b600060208284031215612e2257600080fd5b5051919050565b600060208284031215612e3b57600080fd5b815161289681612c81565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bdf57610bdf612dae565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f0957600080fd5b815161289681612bc9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f645784516001600160a01b031683529383019391830191600101612f3f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f9a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220965c80f1bf00764daae87ea188f81a4808f944640fae65d60902765860e0933d64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80638095d564116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f8b45b051161006f578063f8b45b0514610ad7578063f9f92be414610a55578063fde83a3414610aed578063fe575a8714610b0357600080fd5b8063e2f4560514610a75578063f11a24d314610a8b578063f2fde38b14610aa1578063f637434214610ac157600080fd5b8063d729715f116100dc578063d729715f146109e3578063d85ba063146109f9578063dd62ed3e14610a0f578063e19b282314610a5557600080fd5b8063c17b5b8c1461096d578063c18bc1951461098d578063c8c8ebe4146109ad578063d257b34f146109c357600080fd5b8063a457c2d711610185578063b62496f511610154578063b62496f5146108de578063bbc0c7421461090e578063bc205ad31461092d578063c02466681461094d57600080fd5b8063a457c2d714610869578063a9059cbb14610889578063adee28ff146108a9578063b1e73f76146108c957600080fd5b8063924de9b7116101c1578063924de9b7146107fe57806395d89b411461081e5780639a7a23d6146108335780639c2e4ac61461085357600080fd5b80638095d564146107ab5780638a8c523c146107cb5780638da5cb5b146107e057600080fd5b806349bd5a5e116102cc57806370a082311161026a57806375e3661e1161023957806375e3661e1461072b578063782c4e991461074b5780637ca8448a1461076b5780637cb332bb1461078b57600080fd5b806370a08231146106ab578063715018a6146106e1578063751039fc146106f65780637571336a1461070b57600080fd5b806359927044116102a657806359927044146106405780635f189361146106605780636a486a8e146106755780636ddd17131461068b57600080fd5b806349bd5a5e146105b95780634a62bb65146105ed5780634fbee1931461060757600080fd5b80631a8145bb1161034457806327c8f8351161031357806327c8f83514610546578063313ce5671461055c57806339509351146105785780633dc599ff1461059857600080fd5b80631a8145bb146104d8578063203e727e146104ee57806323b872dd1461051057806324b9f3c11461053057600080fd5b8063156c2f3511610380578063156c2f351461043d5780631694505e1461046157806318160ddd146104ad57806319eab042146104c257600080fd5b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610b3c565b6040516103d49190612b7b565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612bde565b610bce565b60405190151581526020016103d4565b34801561041957600080fd5b506103fd610428366004612c0a565b60196020526000908152604090205460ff1681565b34801561044957600080fd5b50610453600e5481565b6040519081526020016103d4565b34801561046d57600080fd5b506104957f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d4565b3480156104b957600080fd5b50600254610453565b3480156104ce57600080fd5b5061045360125481565b3480156104e457600080fd5b5061045360165481565b3480156104fa57600080fd5b5061050e610509366004612c27565b610be5565b005b34801561051c57600080fd5b506103fd61052b366004612c40565b610ccb565b34801561053c57600080fd5b5061045360155481565b34801561055257600080fd5b5061049561dead81565b34801561056857600080fd5b50604051601281526020016103d4565b34801561058457600080fd5b506103fd610593366004612bde565b610d75565b3480156105a457600080fd5b50600b546103fd906301000000900460ff1681565b3480156105c557600080fd5b506104957f000000000000000000000000ca5aeab3a8e72fe0e333647dd5e4ebd2f4a2dc5981565b3480156105f957600080fd5b50600b546103fd9060ff1681565b34801561061357600080fd5b506103fd610622366004612c0a565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561064c57600080fd5b50600754610495906001600160a01b031681565b34801561066c57600080fd5b5061050e610db1565b34801561068157600080fd5b5061045360115481565b34801561069757600080fd5b50600b546103fd9062010000900460ff1681565b3480156106b757600080fd5b506104536106c6366004612c0a565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b5061050e610df0565b34801561070257600080fd5b506103fd610e26565b34801561071757600080fd5b5061050e610726366004612c8f565b610e63565b34801561073757600080fd5b5061050e610746366004612c0a565b610eb8565b34801561075757600080fd5b50600654610495906001600160a01b031681565b34801561077757600080fd5b5061050e610786366004612c0a565b610f03565b34801561079757600080fd5b5061050e6107a6366004612c0a565b610f91565b3480156107b757600080fd5b5061050e6107c6366004612cc8565b611018565b3480156107d757600080fd5b5061050e6110b9565b3480156107ec57600080fd5b506005546001600160a01b0316610495565b34801561080a57600080fd5b5061050e610819366004612cf4565b6110f6565b34801561082a57600080fd5b506103c761113c565b34801561083f57600080fd5b5061050e61084e366004612c8f565b61114b565b34801561085f57600080fd5b5061045360105481565b34801561087557600080fd5b506103fd610884366004612bde565b611226565b34801561089557600080fd5b506103fd6108a4366004612bde565b6112bf565b3480156108b557600080fd5b5061050e6108c4366004612c0a565b6112cc565b3480156108d557600080fd5b5061050e611353565b3480156108ea57600080fd5b506103fd6108f9366004612c0a565b601a6020526000908152604090205460ff1681565b34801561091a57600080fd5b50600b546103fd90610100900460ff1681565b34801561093957600080fd5b5061050e610948366004612d11565b611477565b34801561095957600080fd5b5061050e610968366004612c8f565b6115df565b34801561097957600080fd5b5061050e610988366004612cc8565b611668565b34801561099957600080fd5b5061050e6109a8366004612c27565b61170b565b3480156109b957600080fd5b5061045360085481565b3480156109cf57600080fd5b506103fd6109de366004612c27565b6117dc565b3480156109ef57600080fd5b5061045360145481565b348015610a0557600080fd5b50610453600d5481565b348015610a1b57600080fd5b50610453610a2a366004612d11565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a6157600080fd5b5061050e610a70366004612c0a565b61192e565b348015610a8157600080fd5b5061045360095481565b348015610a9757600080fd5b50610453600f5481565b348015610aad57600080fd5b5061050e610abc366004612c0a565b611aa2565b348015610acd57600080fd5b5061045360135481565b348015610ae357600080fd5b50610453600a5481565b348015610af957600080fd5b5061045360175481565b348015610b0f57600080fd5b506103fd610b1e366004612c0a565b6001600160a01b03166000908152600c602052604090205460ff1690565b606060038054610b4b90612d3f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7790612d3f565b8015610bc45780601f10610b9957610100808354040283529160200191610bc4565b820191906000526020600020905b815481529060010190602001808311610ba757829003601f168201915b5050505050905090565b6000610bdb338484611b3d565b5060015b92915050565b6005546001600160a01b03163314610c185760405162461bcd60e51b8152600401610c0f90612d79565b60405180910390fd5b670de0b6b3a76400006103e8610c2d60025490565b610c38906005612dc4565b610c429190612ddb565b610c4c9190612ddb565b811015610cb35760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610c0f565b610cc581670de0b6b3a7640000612dc4565b60085550565b6000610cd8848484611c61565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d5d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c0f565b610d6a8533858403611b3d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bdb918590610dac908690612dfd565b611b3d565b6005546001600160a01b03163314610ddb5760405162461bcd60e51b8152600401610c0f90612d79565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610e1a5760405162461bcd60e51b8152600401610c0f90612d79565b610e246000612434565b565b6005546000906001600160a01b03163314610e535760405162461bcd60e51b8152600401610c0f90612d79565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e8d5760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ee25760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610c0f90612d79565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f7a576040519150601f19603f3d011682016040523d82523d6000602084013e610f7f565b606091505b5050905080610f8d57600080fd5b5050565b6005546001600160a01b03163314610fbb5760405162461bcd60e51b8152600401610c0f90612d79565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110425760405162461bcd60e51b8152600401610c0f90612d79565b600e839055600f82905560108190558061105c8385612dfd565b6110669190612dfd565b600d819055600510156110b45760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c0f565b505050565b6005546001600160a01b031633146110e35760405162461bcd60e51b8152600401610c0f90612d79565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111205760405162461bcd60e51b8152600401610c0f90612d79565b600b8054911515620100000262ff000019909216919091179055565b606060048054610b4b90612d3f565b6005546001600160a01b031633146111755760405162461bcd60e51b8152600401610c0f90612d79565b7f000000000000000000000000ca5aeab3a8e72fe0e333647dd5e4ebd2f4a2dc596001600160a01b0316826001600160a01b03160361121c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c0f565b610f8d8282612486565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c0f565b6112b53385858403611b3d565b5060019392505050565b6000610bdb338484611c61565b6005546001600160a01b031633146112f65760405162461bcd60e51b8152600401610c0f90612d79565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461137d5760405162461bcd60e51b8152600401610c0f90612d79565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa1580156113bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113df9190612e10565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a9190612e29565b5060405133904780156108fc02916000818181858888f19350505050158015610f8d573d6000803e3d6000fd5b6005546001600160a01b031633146114a15760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b0382166114f75760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c0f565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115629190612e10565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156115b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d99190612e29565b50505050565b6005546001600160a01b031633146116095760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116925760405162461bcd60e51b8152600401610c0f90612d79565b601283905560138290556014819055806116ac8385612dfd565b6116b69190612dfd565b6011819055600510156110b45760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c0f565b6005546001600160a01b031633146117355760405162461bcd60e51b8152600401610c0f90612d79565b670de0b6b3a76400006103e861174a60025490565b61175590600a612dc4565b61175f9190612ddb565b6117699190612ddb565b8110156117c45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610c0f565b6117d681670de0b6b3a7640000612dc4565b600a5550565b6005546000906001600160a01b031633146118095760405162461bcd60e51b8152600401610c0f90612d79565b620186a061181660025490565b611821906001612dc4565b61182b9190612ddb565b8210156118985760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c0f565b6103e86118a460025490565b6118af906005612dc4565b6118b99190612ddb565b8211156119255760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c0f565b50600955600190565b6005546001600160a01b031633146119585760405162461bcd60e51b8152600401610c0f90612d79565b600b546301000000900460ff16156119bc5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610c0f565b7f000000000000000000000000ca5aeab3a8e72fe0e333647dd5e4ebd2f4a2dc596001600160a01b0316816001600160a01b031614158015611a1b57506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a7e5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610c0f565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611acc5760405162461bcd60e51b8152600401610c0f90612d79565b6001600160a01b038116611b315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0f565b611b3a81612434565b50565b6001600160a01b038316611b9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c0f565b6001600160a01b038216611c005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c0f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c875760405162461bcd60e51b8152600401610c0f90612e46565b6001600160a01b038216611cad5760405162461bcd60e51b8152600401610c0f90612e8b565b6001600160a01b0383166000908152600c602052604090205460ff1615611d0b5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c0f565b6001600160a01b0382166000908152600c602052604090205460ff1615611d6b5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c0f565b80600003611d7f576110b4838360006124da565b600b5460ff16156120ff576005546001600160a01b03848116911614801590611db657506005546001600160a01b03838116911614155b8015611dca57506001600160a01b03821615155b8015611de157506001600160a01b03821661dead14155b8015611df75750600554600160a01b900460ff16155b156120ff57600b54610100900460ff16611e8f576001600160a01b03831660009081526018602052604090205460ff1680611e4a57506001600160a01b03821660009081526018602052604090205460ff165b611e8f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c0f565b6001600160a01b0383166000908152601a602052604090205460ff168015611ed057506001600160a01b03821660009081526019602052604090205460ff16155b15611fbe57600854811115611f455760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c0f565b600a546001600160a01b038316600090815260208190526040902054611f6b9083612dfd565b1115611fb95760405162461bcd60e51b815260206004820152601e60248201527f4d61782062616c616e6365206f662077616c6c657420657863656564656400006044820152606401610c0f565b6120ff565b6001600160a01b0382166000908152601a602052604090205460ff168015611fff57506001600160a01b03831660009081526019602052604090205460ff16155b1561207557600854811115611fb95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c0f565b6001600160a01b03821660009081526019602052604090205460ff166120ff57600a546001600160a01b0383166000908152602081905260409020546120bb9083612dfd565b11156120ff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c0f565b306000908152602081905260409020546009548110801590819061212b5750600b5462010000900460ff165b80156121415750600554600160a01b900460ff16155b801561216657506001600160a01b0385166000908152601a602052604090205460ff16155b801561218b57506001600160a01b03851660009081526018602052604090205460ff16155b80156121b057506001600160a01b03841660009081526018602052604090205460ff16155b156121de576005805460ff60a01b1916600160a01b1790556121d061262e565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061222c57506001600160a01b03851660009081526018602052604090205460ff165b15612235575060005b60008115612420576001600160a01b0386166000908152601a602052604090205460ff16801561226757506000601154115b156123255761228c60646122866011548861288a90919063ffffffff16565b9061289d565b90506011546013548261229f9190612dc4565b6122a99190612ddb565b601660008282546122ba9190612dfd565b90915550506011546014546122cf9083612dc4565b6122d99190612ddb565b601760008282546122ea9190612dfd565b90915550506011546012546122ff9083612dc4565b6123099190612ddb565b6015600082825461231a9190612dfd565b909155506124029050565b6001600160a01b0387166000908152601a602052604090205460ff16801561234f57506000600d54115b156124025761236e6064612286600d548861288a90919063ffffffff16565b9050600d54600f54826123819190612dc4565b61238b9190612ddb565b6016600082825461239c9190612dfd565b9091555050600d546010546123b19083612dc4565b6123bb9190612ddb565b601760008282546123cc9190612dfd565b9091555050600d54600e546123e19083612dc4565b6123eb9190612ddb565b601560008282546123fc9190612dfd565b90915550505b8015612413576124138730836124da565b61241d8186612ece565b94505b61242b8787876124da565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166125005760405162461bcd60e51b8152600401610c0f90612e46565b6001600160a01b0382166125265760405162461bcd60e51b8152600401610c0f90612e8b565b6001600160a01b0383166000908152602081905260409020548181101561259e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c0f565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125d5908490612dfd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161262191815260200190565b60405180910390a36115d9565b30600090815260208190526040812054905060006017546015546016546126559190612dfd565b61265f9190612dfd565b9050600082158061266e575081155b1561267857505050565b600954612686906014612dc4565b83111561269e5760095461269b906014612dc4565b92505b6000600283601654866126b19190612dc4565b6126bb9190612ddb565b6126c59190612ddb565b905060006126d385836128a9565b9050476126df826128b5565b60006126eb47836128a9565b9050600061271960026016546127019190612ddb565b61270b9089612ece565b60155461228690859061288a565b90506000612747600260165461272f9190612ddb565b612739908a612ece565b60175461228690869061288a565b90506000816127568486612ece565b6127609190612ece565b60006016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146127bd576040519150601f19603f3d011682016040523d82523d6000602084013e6127c2565b606091505b509098505086158015906127d65750600081115b15612829576127e58782612a75565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612876576040519150601f19603f3d011682016040523d82523d6000602084013e61287b565b606091505b50505050505050505050505050565b60006128968284612dc4565b9392505050565b60006128968284612ddb565b60006128968284612ece565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128ea576128ea612ee1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298c9190612ef7565b8160018151811061299f5761299f612ee1565b60200260200101906001600160a01b031690816001600160a01b0316815250506129ea307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b3d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612a3f908590600090869030904290600401612f14565b600060405180830381600087803b158015612a5957600080fd5b505af1158015612a6d573d6000803e3d6000fd5b505050505050565b612aa0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b3d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612ae76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b4f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b749190612f85565b5050505050565b600060208083528351808285015260005b81811015612ba857858101830151858201604001528201612b8c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611b3a57600080fd5b60008060408385031215612bf157600080fd5b8235612bfc81612bc9565b946020939093013593505050565b600060208284031215612c1c57600080fd5b813561289681612bc9565b600060208284031215612c3957600080fd5b5035919050565b600080600060608486031215612c5557600080fd5b8335612c6081612bc9565b92506020840135612c7081612bc9565b929592945050506040919091013590565b8015158114611b3a57600080fd5b60008060408385031215612ca257600080fd5b8235612cad81612bc9565b91506020830135612cbd81612c81565b809150509250929050565b600080600060608486031215612cdd57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612d0657600080fd5b813561289681612c81565b60008060408385031215612d2457600080fd5b8235612d2f81612bc9565b91506020830135612cbd81612bc9565b600181811c90821680612d5357607f821691505b602082108103612d7357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610bdf57610bdf612dae565b600082612df857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610bdf57610bdf612dae565b600060208284031215612e2257600080fd5b5051919050565b600060208284031215612e3b57600080fd5b815161289681612c81565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bdf57610bdf612dae565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f0957600080fd5b815161289681612bc9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f645784516001600160a01b031683529383019391830191600101612f3f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f9a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220965c80f1bf00764daae87ea188f81a4808f944640fae65d60902765860e0933d64736f6c63430008140033

Deployed Bytecode Sourcemap

31234:17442:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9193:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11360:169;;;;;;;;;;-1:-1:-1;11360:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11360:169:0;1023:187:1;32545:63:0;;;;;;;;;;-1:-1:-1;32545:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32037:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;32037:29:0;1467:177:1;31313:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31313:51:0;1649:230:1;10313:108:0;;;;;;;;;;-1:-1:-1;10401:12:0;;10313:108;;32179:30;;;;;;;;;;;;;;;;32328:33;;;;;;;;;;;;;;;;36622:275;;;;;;;;;;-1:-1:-1;36622:275:0;;;;;:::i;:::-;;:::i;:::-;;12011:492;;;;;;;;;;-1:-1:-1;12011:492:0;;;;;:::i;:::-;;:::i;32289:32::-;;;;;;;;;;;;;;;;31416:53;;;;;;;;;;;;31462:6;31416:53;;10155:93;;;;;;;;;;-1:-1:-1;10155:93:0;;10238:2;2880:36:1;;2868:2;2853:18;10155:93:0;2738:184:1;12912:215:0;;;;;;;;;;-1:-1:-1;12912:215:0;;;;;:::i;:::-;;:::i;31856:38::-;;;;;;;;;;-1:-1:-1;31856:38:0;;;;;;;;;;;31371;;;;;;;;;;;;;;;31736:33;;;;;;;;;;-1:-1:-1;31736:33:0;;;;;;;;39433:126;;;;;;;;;;-1:-1:-1;39433:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39523:28:0;39499:4;39523:28;;;:19;:28;;;;;;;;;39433:126;31587:25;;;;;;;;;;-1:-1:-1;31587:25:0;;;;-1:-1:-1;;;;;31587:25:0;;;47462:90;;;;;;;;;;;;;:::i;32144:28::-;;;;;;;;;;;;;;;;31816:31;;;;;;;;;;-1:-1:-1;31816:31:0;;;;;;;;;;;10484:127;;;;;;;;;;-1:-1:-1;10484:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10585:18:0;10558:7;10585:18;;;;;;;;;;;;10484:127;2710:103;;;;;;;;;;;;;:::i;35926:121::-;;;;;;;;;;;;;:::i;37170:167::-;;;;;;;;;;-1:-1:-1;37170:167:0;;;;;:::i;:::-;;:::i;48573:98::-;;;;;;;;;;-1:-1:-1;48573:98:0;;;;;:::i;:::-;;:::i;31551:29::-;;;;;;;;;;-1:-1:-1;31551:29:0;;;;-1:-1:-1;;;;;31551:29:0;;;47212:196;;;;;;;;;;-1:-1:-1;47212:196:0;;;;;:::i;:::-;;:::i;39264:161::-;;;;;;;;;;-1:-1:-1;39264:161:0;;;;;:::i;:::-;;:::i;37541:395::-;;;;;;;;;;-1:-1:-1;37541:395:0;;;;;:::i;:::-;;:::i;35762:112::-;;;;;;;;;;;;;:::i;2059:87::-;;;;;;;;;;-1:-1:-1;2132:6:0;;-1:-1:-1;;;;;2132:6:0;2059:87;;37433:100;;;;;;;;;;-1:-1:-1;37433:100:0;;;;;:::i;:::-;;:::i;9412:104::-;;;;;;;;;;;;;:::i;38547:304::-;;;;;;;;;;-1:-1:-1;38547:304:0;;;;;:::i;:::-;;:::i;32110:25::-;;;;;;;;;;;;;;;;13630:413;;;;;;;;;;-1:-1:-1;13630:413:0;;;;;:::i;:::-;;:::i;10824:175::-;;;;;;;;;;-1:-1:-1;10824:175:0;;;;;:::i;:::-;;:::i;39055:201::-;;;;;;;;;;-1:-1:-1;39055:201:0;;;;;:::i;:::-;;:::i;46648:260::-;;;;;;;;;;;;;:::i;32766:57::-;;;;;;;;;;-1:-1:-1;32766:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31776:33;;;;;;;;;;-1:-1:-1;31776:33:0;;;;;;;;;;;46916:288;;;;;;;;;;-1:-1:-1;46916:288:0;;;;;:::i;:::-;;:::i;38357:182::-;;;;;;;;;;-1:-1:-1;38357:182:0;;;;;:::i;:::-;;:::i;37944:405::-;;;;;;;;;;-1:-1:-1;37944:405:0;;;;;:::i;:::-;;:::i;36905:257::-;;;;;;;;;;-1:-1:-1;36905:257:0;;;;;:::i;:::-;;:::i;31621:35::-;;;;;;;;;;;;;;;;36117:497;;;;;;;;;;-1:-1:-1;36117:497:0;;;;;:::i;:::-;;:::i;32254:26::-;;;;;;;;;;;;;;;;32003:27;;;;;;;;;;;;;;;;11062:151;;;;;;;;;;-1:-1:-1;11062:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11178:18:0;;;11151:7;11178:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11062:151;48037:403;;;;;;;;;;-1:-1:-1;48037:403:0;;;;;:::i;:::-;;:::i;31663:33::-;;;;;;;;;;;;;;;;32073:30;;;;;;;;;;;;;;;;2968:201;;;;;;;;;;-1:-1:-1;2968:201:0;;;;;:::i;:::-;;:::i;32216:31::-;;;;;;;;;;;;;;;;31703:24;;;;;;;;;;;;;;;;32368:28;;;;;;;;;;;;;;;;39567:113;;;;;;;;;;-1:-1:-1;39567:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39652:20:0;39628:4;39652:20;;;:11;:20;;;;;;;;;39567:113;9193:100;9247:13;9280:5;9273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9193:100;:::o;11360:169::-;11443:4;11460:39;1006:10;11483:7;11492:6;11460:8;:39::i;:::-;-1:-1:-1;11517:4:0;11360:169;;;;;:::o;36622:275::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;;;;;;;;;36759:4:::1;36751;36730:13;10401:12:::0;;;10313:108;36730:13:::1;:17;::::0;36746:1:::1;36730:17;:::i;:::-;36729:26;;;;:::i;:::-;36728:35;;;;:::i;:::-;36718:6;:45;;36696:142;;;::::0;-1:-1:-1;;;36696:142:0;;5872:2:1;36696:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;36696:142:0::1;5670:411:1::0;36696:142:0::1;36872:17;:6:::0;36882::::1;36872:17;:::i;:::-;36849:20;:40:::0;-1:-1:-1;36622:275:0:o;12011:492::-;12151:4;12168:36;12178:6;12186:9;12197:6;12168:9;:36::i;:::-;-1:-1:-1;;;;;12244:19:0;;12217:24;12244:19;;;:11;:19;;;;;;;;1006:10;12244:33;;;;;;;;12296:26;;;;12288:79;;;;-1:-1:-1;;;12288:79:0;;6288:2:1;12288:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;12288:79:0;6086:404:1;12288:79:0;12403:57;12412:6;1006:10;12453:6;12434:16;:25;12403:8;:57::i;:::-;-1:-1:-1;12491:4:0;;12011:492;-1:-1:-1;;;;12011:492:0:o;12912:215::-;1006:10;13000:4;13049:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13049:34:0;;;;;;;;;;13000:4;;13017:80;;13040:7;;13049:47;;13086:10;;13049:47;:::i;:::-;13017:8;:80::i;47462:90::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;47519:18:::1;:25:::0;;-1:-1:-1;;47519:25:0::1;::::0;::::1;::::0;;47462:90::o;2710:103::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;2775:30:::1;2802:1;2775:18;:30::i;:::-;2710:103::o:0;35926:121::-;2132:6;;35978:4;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;35995:14:0::1;:22:::0;;-1:-1:-1;;35995:22:0::1;::::0;;;35926:121;:::o;37170:167::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37283:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37283:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37170:167::o;48573:98::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48637:18:0::1;48658:5;48637:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48637:26:0::1;::::0;;48573:98::o;47212:196::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;47285:12:::1;47303:6;-1:-1:-1::0;;;;;47303:11:0::1;47336:21;47303:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47284:89;;;47392:7;47384:16;;;::::0;::::1;;47273:135;47212:196:::0;:::o;39264:161::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;39373:10:::1;::::0;39344:40:::1;::::0;-1:-1:-1;;;;;39373:10:0;;::::1;::::0;39344:40;::::1;::::0;::::1;::::0;39373:10:::1;::::0;39344:40:::1;39395:10;:22:::0;;-1:-1:-1;;;;;;39395:22:0::1;-1:-1:-1::0;;;;;39395:22:0;;;::::1;::::0;;;::::1;::::0;;39264:161::o;37541:395::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37691:14:::1;:29:::0;;;37731:15:::1;:31:::0;;;37773:10:::1;:21:::0;;;37786:8;37820:32:::1;37749:13:::0;37708:12;37820:32:::1;:::i;:::-;:45;;;;:::i;:::-;37805:12;:60:::0;;;37900:1:::1;-1:-1:-1::0;37884:17:0::1;37876:52;;;::::0;-1:-1:-1;;;37876:52:0;;7037:2:1;37876:52:0::1;::::0;::::1;7019:21:1::0;7076:2;7056:18;;;7049:30;-1:-1:-1;;;7095:18:1;;;7088:52;7157:18;;37876:52:0::1;6835:346:1::0;37876:52:0::1;37541:395:::0;;;:::o;35762:112::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;35817:13:::1;:20:::0;;-1:-1:-1;;35848:18:0;;;;;35762:112::o;37433:100::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37504:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37504:21:0;;::::1;::::0;;;::::1;::::0;;37433:100::o;9412:104::-;9468:13;9501:7;9494:14;;;;;:::i;38547:304::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;38691:13:::1;-1:-1:-1::0;;;;;38683:21:0::1;:4;-1:-1:-1::0;;;;;38683:21:0::1;::::0;38661:128:::1;;;::::0;-1:-1:-1;;;38661:128:0;;7388:2:1;38661:128:0::1;::::0;::::1;7370:21:1::0;7427:2;7407:18;;;7400:30;7466:34;7446:18;;;7439:62;7537:27;7517:18;;;7510:55;7582:19;;38661:128:0::1;7186:421:1::0;38661:128:0::1;38802:41;38831:4;38837:5;38802:28;:41::i;13630:413::-:0;1006:10;13723:4;13767:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13767:34:0;;;;;;;;;;13820:35;;;;13812:85;;;;-1:-1:-1;;;13812:85:0;;7814:2:1;13812:85:0;;;7796:21:1;7853:2;7833:18;;;7826:30;7892:34;7872:18;;;7865:62;-1:-1:-1;;;7943:18:1;;;7936:35;7988:19;;13812:85:0;7612:401:1;13812:85:0;13933:67;1006:10;13956:7;13984:15;13965:16;:34;13933:8;:67::i;:::-;-1:-1:-1;14031:4:0;;13630:413;-1:-1:-1;;;13630:413:0:o;10824:175::-;10910:4;10927:42;1006:10;10951:9;10962:6;10927:9;:42::i;39055:201::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;39188:14:::1;::::0;39147:56:::1;::::0;-1:-1:-1;;;;;39188:14:0;;::::1;::::0;39147:56;::::1;::::0;::::1;::::0;39188:14:::1;::::0;39147:56:::1;39214:14;:34:::0;;-1:-1:-1;;;;;;39214:34:0::1;-1:-1:-1::0;;;;;39214:34:0;;;::::1;::::0;;;::::1;::::0;;39055:201::o;46648:260::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;46730:46:::1;::::0;-1:-1:-1;;;46730:46:0;;46745:4:::1;46730:46;::::0;::::1;1822:51:1::0;;;46712:15:0::1;::::0;46730:31:::1;::::0;1795:18:1;;46730:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46787:51;::::0;-1:-1:-1;;;46787:51:0;;46818:10:::1;46787:51;::::0;::::1;8381::1::0;8448:18;;;8441:34;;;46712:64:0;;-1:-1:-1;46802:4:0::1;::::0;46787:30:::1;::::0;8354:18:1;;46787:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;46849:51:0::1;::::0;46857:10:::1;::::0;46878:21:::1;46849:51:::0;::::1;;;::::0;::::1;::::0;;;46878:21;46857:10;46849:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;46916:288:::0;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47011:20:0;::::1;47003:59;;;::::0;-1:-1:-1;;;47003:59:0;;8938:2:1;47003:59:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:28;8996:18;;;8989:56;9062:18;;47003:59:0::1;8736:350:1::0;47003:59:0::1;47100:39;::::0;-1:-1:-1;;;47100:39:0;;47133:4:::1;47100:39;::::0;::::1;1822:51:1::0;47073:24:0::1;::::0;-1:-1:-1;;;;;47100:24:0;::::1;::::0;::::1;::::0;1795:18:1;;47100:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47150:46;::::0;-1:-1:-1;;;47150:46:0;;-1:-1:-1;;;;;8399:32:1;;;47150:46:0::1;::::0;::::1;8381:51:1::0;8448:18;;;8441:34;;;47073:66:0;;-1:-1:-1;47150:23:0;;::::1;::::0;::::1;::::0;8354:18:1;;47150:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46992:212;46916:288:::0;;:::o;38357:182::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38442:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38442:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38497:34;;1163:41:1;;;38497:34:0::1;::::0;1136:18:1;38497:34:0::1;;;;;;;38357:182:::0;;:::o;37944:405::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;38095:15:::1;:30:::0;;;38136:16:::1;:32:::0;;;38179:11:::1;:22:::0;;;38193:8;38228:34:::1;38155:13:::0;38113:12;38228:34:::1;:::i;:::-;:48;;;;:::i;:::-;38212:13;:64:::0;;;38312:1:::1;-1:-1:-1::0;38295:18:0::1;38287:54;;;::::0;-1:-1:-1;;;38287:54:0;;9293:2:1;38287:54:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:25;9351:18;;;9344:53;9414:18;;38287:54:0::1;9091:347:1::0;36905:257:0;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37046:4:::1;37038;37016:13;10401:12:::0;;;10313:108;37016:13:::1;:18;::::0;37032:2:::1;37016:18;:::i;:::-;37015:27;;;;:::i;:::-;37014:36;;;;:::i;:::-;37004:6;:46;;36982:132;;;::::0;-1:-1:-1;;;36982:132:0;;9645:2:1;36982:132:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;36982:132:0::1;9443:400:1::0;36982:132:0::1;37137:17;:6:::0;37147::::1;37137:17;:::i;:::-;37125:9;:29:::0;-1:-1:-1;36905:257:0:o;36117:497::-;2132:6;;36225:4;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;36304:6:::1;36283:13;10401:12:::0;;;10313:108;36283:13:::1;:17;::::0;36299:1:::1;36283:17;:::i;:::-;36282:28;;;;:::i;:::-;36269:9;:41;;36247:144;;;::::0;-1:-1:-1;;;36247:144:0;;10050:2:1;36247:144:0::1;::::0;::::1;10032:21:1::0;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:51;10240:19;;36247:144:0::1;9848:417:1::0;36247:144:0::1;36459:4;36438:13;10401:12:::0;;;10313:108;36438:13:::1;:17;::::0;36454:1:::1;36438:17;:::i;:::-;36437:26;;;;:::i;:::-;36424:9;:39;;36402:141;;;::::0;-1:-1:-1;;;36402:141:0;;10472:2:1;36402:141:0::1;::::0;::::1;10454:21:1::0;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:50;10661:19;;36402:141:0::1;10270:416:1::0;36402:141:0::1;-1:-1:-1::0;36554:18:0::1;:30:::0;36602:4:::1;::::0;36117:497::o;48037:403::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;48125:18:::1;::::0;;;::::1;;;48124:19;48116:65;;;::::0;-1:-1:-1;;;48116:65:0;;10893:2:1;48116:65:0::1;::::0;::::1;10875:21:1::0;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;-1:-1:-1;;;11022:18:1;;;11015:31;11063:19;;48116:65:0::1;10691:397:1::0;48116:65:0::1;48235:13;-1:-1:-1::0;;;;;48214:35:0::1;:9;-1:-1:-1::0;;;;;48214:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;48253:64:0;::::1;48274:42;48253:64;;48214:103;48192:200;;;::::0;-1:-1:-1;;;48192:200:0;;11295:2:1;48192:200:0::1;::::0;::::1;11277:21:1::0;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:44;11478:19;;48192:200:0::1;11093:410:1::0;48192:200:0::1;-1:-1:-1::0;;;;;48403:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48403:29:0::1;48428:4;48403:29;::::0;;48037:403::o;2968:201::-;2132:6;;-1:-1:-1;;;;;2132:6:0;1006:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3057:22:0;::::1;3049:73;;;::::0;-1:-1:-1;;;3049:73:0;;11710:2:1;3049:73:0::1;::::0;::::1;11692:21:1::0;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:1;;;11832:36;11885:19;;3049:73:0::1;11508:402:1::0;3049:73:0::1;3133:28;3152:8;3133:18;:28::i;:::-;2968:201:::0;:::o;17314:380::-;-1:-1:-1;;;;;17450:19:0;;17442:68;;;;-1:-1:-1;;;17442:68:0;;12117:2:1;17442:68:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:34;12290:19;;17442:68:0;11915:400:1;17442:68:0;-1:-1:-1;;;;;17529:21:0;;17521:68;;;;-1:-1:-1;;;17521:68:0;;12522:2:1;17521:68:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:32;12693:19;;17521:68:0;12320:398:1;17521:68:0;-1:-1:-1;;;;;17602:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17654:32;;1613:25:1;;;17654:32:0;;1586:18:1;17654:32:0;;;;;;;17314:380;;;:::o;39688:4053::-;-1:-1:-1;;;;;39820:18:0;;39812:68;;;;-1:-1:-1;;;39812:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39899:16:0;;39891:64;;;;-1:-1:-1;;;39891:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39975:17:0;;;;;;:11;:17;;;;;;;;39974:18;39966:48;;;;-1:-1:-1;;;39966:48:0;;13735:2:1;39966:48:0;;;13717:21:1;13774:2;13754:18;;;13747:30;-1:-1:-1;;;13793:18:1;;;13786:48;13851:18;;39966:48:0;13533:342:1;39966:48:0;-1:-1:-1;;;;;40034:15:0;;;;;;:11;:15;;;;;;;;40033:16;40025:48;;;;-1:-1:-1;;;40025:48:0;;14082:2:1;40025:48:0;;;14064:21:1;14121:2;14101:18;;;14094:30;-1:-1:-1;;;14140:18:1;;;14133:50;14200:18;;40025:48:0;13880:344:1;40025:48:0;40090:6;40100:1;40090:11;40086:93;;40118:28;40134:4;40140:2;40144:1;40118:15;:28::i;40086:93::-;40195:14;;;;40191:1705;;;2132:6;;-1:-1:-1;;;;;40248:15:0;;;2132:6;;40248:15;;;;:49;;-1:-1:-1;2132:6:0;;-1:-1:-1;;;;;40284:13:0;;;2132:6;;40284:13;;40248:49;:86;;;;-1:-1:-1;;;;;;40318:16:0;;;;40248:86;:128;;;;-1:-1:-1;;;;;;40355:21:0;;40369:6;40355:21;;40248:128;:158;;;;-1:-1:-1;40398:8:0;;-1:-1:-1;;;40398:8:0;;;;40397:9;40248:158;40226:1659;;;40446:13;;;;;;;40441:223;;-1:-1:-1;;;;;40518:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40547:23:0;;;;;;:19;:23;;;;;;;;40518:52;40484:160;;;;-1:-1:-1;;;40484:160:0;;14431:2:1;40484:160:0;;;14413:21:1;14470:2;14450:18;;;14443:30;-1:-1:-1;;;14489:18:1;;;14482:52;14551:18;;40484:160:0;14229:346:1;40484:160:0;-1:-1:-1;;;;;40738:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40795:35:0;;;;;;:31;:35;;;;;;;;40794:36;40738:92;40712:1158;;;40917:20;;40907:6;:30;;40873:169;;;;-1:-1:-1;;;40873:169:0;;14782:2:1;40873:169:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;-1:-1:-1;;;14911:18:1;;;14904:51;14972:19;;40873:169:0;14580:417:1;40873:169:0;41125:9;;-1:-1:-1;;;;;10585:18:0;;10558:7;10585:18;;;;;;;;;;;41099:22;;:6;:22;:::i;:::-;:35;;41065:151;;;;-1:-1:-1;;;41065:151:0;;15204:2:1;41065:151:0;;;15186:21:1;15243:2;15223:18;;;15216:30;15282:32;15262:18;;;15255:60;15332:18;;41065:151:0;15002:354:1;41065:151:0;40712:1158;;;-1:-1:-1;;;;;41314:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41369:37:0;;;;;;:31;:37;;;;;;;;41368:38;41314:92;41288:582;;;41493:20;;41483:6;:30;;41449:170;;;;-1:-1:-1;;;41449:170:0;;15563:2:1;41449:170:0;;;15545:21:1;15602:2;15582:18;;;15575:30;15641:34;15621:18;;;15614:62;-1:-1:-1;;;15692:18:1;;;15685:52;15754:19;;41449:170:0;15361:418:1;41288:582:0;-1:-1:-1;;;;;41650:35:0;;;;;;:31;:35;;;;;;;;41645:225;;41770:9;;-1:-1:-1;;;;;10585:18:0;;10558:7;10585:18;;;;;;;;;;;41744:22;;:6;:22;:::i;:::-;:35;;41710:140;;;;-1:-1:-1;;;41710:140:0;;15986:2:1;41710:140:0;;;15968:21:1;16025:2;16005:18;;;15998:30;-1:-1:-1;;;16044:18:1;;;16037:49;16103:18;;41710:140:0;15784:343:1;41710:140:0;41957:4;41908:28;10585:18;;;;;;;;;;;42015;;41991:42;;;;;;;42064:35;;-1:-1:-1;42088:11:0;;;;;;;42064:35;:61;;;;-1:-1:-1;42117:8:0;;-1:-1:-1;;;42117:8:0;;;;42116:9;42064:61;:110;;;;-1:-1:-1;;;;;;42143:31:0;;;;;;:25;:31;;;;;;;;42142:32;42064:110;:153;;;;-1:-1:-1;;;;;;42192:25:0;;;;;;:19;:25;;;;;;;;42191:26;42064:153;:194;;;;-1:-1:-1;;;;;;42235:23:0;;;;;;:19;:23;;;;;;;;42234:24;42064:194;42046:326;;;42285:8;:15;;-1:-1:-1;;;;42285:15:0;-1:-1:-1;;;42285:15:0;;;42317:10;:8;:10::i;:::-;42344:8;:16;;-1:-1:-1;;;;42344:16:0;;;42046:326;42400:8;;-1:-1:-1;;;;;42510:25:0;;42384:12;42510:25;;;:19;:25;;;;;;42400:8;-1:-1:-1;;;42400:8:0;;;;;42399:9;;42510:25;;:52;;-1:-1:-1;;;;;;42539:23:0;;;;;;:19;:23;;;;;;;;42510:52;42506:100;;;-1:-1:-1;42589:5:0;42506:100;42618:12;42723:7;42719:969;;;-1:-1:-1;;;;;42775:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42824:1;42808:13;;:17;42775:50;42771:768;;;42853:34;42883:3;42853:25;42864:13;;42853:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42846:41;;42956:13;;42936:16;;42929:4;:23;;;;:::i;:::-;42928:41;;;;:::i;:::-;42906:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43028:13:0;;43013:11;;43006:18;;:4;:18;:::i;:::-;43005:36;;;;:::i;:::-;42988:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43108:13:0;;43089:15;;43082:22;;:4;:22;:::i;:::-;43081:40;;;;:::i;:::-;43060:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;42771:768:0;;-1:-1:-1;42771:768:0;;-1:-1:-1;;;;;43183:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43233:1;43218:12;;:16;43183:51;43179:360;;;43262:33;43291:3;43262:24;43273:12;;43262:6;:10;;:24;;;;:::i;:33::-;43255:40;;43363:12;;43344:15;;43337:4;:22;;;;:::i;:::-;43336:39;;;;:::i;:::-;43314:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43433:12:0;;43419:10;;43412:17;;:4;:17;:::i;:::-;43411:34;;;;:::i;:::-;43394:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43511:12:0;;43493:14;;43486:21;;:4;:21;:::i;:::-;43485:38;;;;:::i;:::-;43464:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43179:360:0;43559:8;;43555:91;;43588:42;43604:4;43618;43625;43588:15;:42::i;:::-;43662:14;43672:4;43662:14;;:::i;:::-;;;42719:969;43700:33;43716:4;43722:2;43726:6;43700:15;:33::i;:::-;39801:3940;;;;39688:4053;;;:::o;3329:191::-;3422:6;;;-1:-1:-1;;;;;3439:17:0;;;-1:-1:-1;;;;;;3439:17:0;;;;;;;3472:40;;3422:6;;;3439:17;3422:6;;3472:40;;3403:16;;3472:40;3392:128;3329:191;:::o;38859:188::-;-1:-1:-1;;;;;38942:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38942:39:0;;;;;;;;;;38999:40;;38942:39;;:31;38999:40;;;38859:188;;:::o;14533:733::-;-1:-1:-1;;;;;14673:20:0;;14665:70;;;;-1:-1:-1;;;14665:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14754:23:0;;14746:71;;;;-1:-1:-1;;;14746:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14914:17:0;;14890:21;14914:17;;;;;;;;;;;14950:23;;;;14942:74;;;;-1:-1:-1;;;14942:74:0;;16467:2:1;14942:74:0;;;16449:21:1;16506:2;16486:18;;;16479:30;16545:34;16525:18;;;16518:62;-1:-1:-1;;;16596:18:1;;;16589:36;16642:19;;14942:74:0;16265:402:1;14942:74:0;-1:-1:-1;;;;;15052:17:0;;;:9;:17;;;;;;;;;;;15072:22;;;15052:42;;15116:20;;;;;;;;:30;;15088:6;;15052:9;15116:30;;15088:6;;15116:30;:::i;:::-;;;;;;;;15181:9;-1:-1:-1;;;;;15164:35:0;15173:6;-1:-1:-1;;;;;15164:35:0;;15192:6;15164:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;15164:35:0;;;;;;;;15212:46;37541:395;44867:1773;44950:4;44906:23;10585:18;;;;;;;;;;;44906:50;;44967:25;45062:13;;45029:17;;44995:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;44967:108;-1:-1:-1;45086:12:0;45115:20;;;:46;;-1:-1:-1;45139:22:0;;45115:46;45111:85;;;45178:7;;;44867:1773::o;45111:85::-;45230:18;;:23;;45251:2;45230:23;:::i;:::-;45212:15;:41;45208:115;;;45288:18;;:23;;45309:2;45288:23;:::i;:::-;45270:41;;45208:115;45384:23;45497:1;45464:17;45429:18;;45411:15;:36;;;;:::i;:::-;45410:71;;;;:::i;:::-;:88;;;;:::i;:::-;45384:114;-1:-1:-1;45509:26:0;45538:36;:15;45384:114;45538:19;:36::i;:::-;45509:65;-1:-1:-1;45615:21:0;45649:36;45509:65;45649:16;:36::i;:::-;45698:18;45719:44;:21;45745:17;45719:25;:44::i;:::-;45698:65;;45776:22;45801:83;45881:1;45860:18;;:22;;;;:::i;:::-;45839:44;;:17;:44;:::i;:::-;45816:17;;45801:33;;:10;;:14;:33::i;:83::-;45776:108;;45905:18;45926:79;46002:1;45981:18;;:22;;;;:::i;:::-;45960:44;;:17;:44;:::i;:::-;45941:13;;45926:29;;:10;;:14;:29::i;:79::-;45905:100;-1:-1:-1;46018:23:0;45905:100;46044:27;46057:14;46044:10;:27;:::i;:::-;:40;;;;:::i;:::-;46118:1;46097:18;:22;;;46130:17;:21;;;46162:13;:17;;;46214:10;;46206:47;;46018:66;;-1:-1:-1;;;;;;46214:10:0;;46238;;46206:47;46118:1;46206:47;46238:10;46214;46206:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46192:61:0;;-1:-1:-1;;46270:19:0;;;;;:42;;;46311:1;46293:15;:19;46270:42;46266:278;;;46329:46;46342:15;46359;46329:12;:46::i;:::-;46499:18;;46395:137;;;16874:25:1;;;16930:2;16915:18;;16908:34;;;16958:18;;;16951:34;;;;46395:137:0;;;;;;16862:2:1;46395:137:0;;;46266:278;46578:14;;46570:62;;-1:-1:-1;;;;;46578:14:0;;;;46606:21;;46570:62;;;;46606:21;46578:14;46570:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44867:1773:0:o;22446:98::-;22504:7;22531:5;22535:1;22531;:5;:::i;:::-;22524:12;22446:98;-1:-1:-1;;;22446:98:0:o;22845:::-;22903:7;22930:5;22934:1;22930;:5;:::i;22089:98::-;22147:7;22174:5;22178:1;22174;:5;:::i;43749:589::-;43899:16;;;43913:1;43899:16;;;;;;;;43875:21;;43899:16;;;;;;;;;;-1:-1:-1;43899:16:0;43875:40;;43944:4;43926;43931:1;43926:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43926:23:0;;;-1:-1:-1;;;;;43926:23:0;;;;;43970:15;-1:-1:-1;;;;;43970:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43960:4;43965:1;43960:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43960:32:0;;;-1:-1:-1;;;;;43960:32:0;;;;;44005:62;44022:4;44037:15;44055:11;44005:8;:62::i;:::-;44106:224;;-1:-1:-1;;;44106:224:0;;-1:-1:-1;;;;;44106:15:0;:66;;;;:224;;44187:11;;44213:1;;44257:4;;44284;;44304:15;;44106:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43804:534;43749:589;:::o;44346:513::-;44494:62;44511:4;44526:15;44544:11;44494:8;:62::i;:::-;44599:15;-1:-1:-1;;;;;44599:31:0;;44638:9;44671:4;44691:11;44717:1;44760;44803:7;2132:6;;-1:-1:-1;;;;;2132:6:0;;2059:87;44803:7;44599:252;;;;;;-1:-1:-1;;;;;;44599:252:0;;;-1:-1:-1;;;;;18860:15:1;;;44599:252:0;;;18842:34:1;18892:18;;;18885:34;;;;18935:18;;;18928:34;;;;18978:18;;;18971:34;19042:15;;;19021:19;;;19014:44;44825:15:0;19074:19:1;;;19067:35;18776:19;;44599:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44346:513;;:::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:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;8018:184::-;8088:6;8141:2;8129:9;8120:7;8116:23;8112:32;8109:52;;;8157:1;8154;8147:12;8109:52;-1:-1:-1;8180:16:1;;8018:184;-1:-1:-1;8018:184:1:o;8486:245::-;8553:6;8606:2;8594:9;8585:7;8581:23;8577:32;8574:52;;;8622:1;8619;8612:12;8574:52;8654:9;8648:16;8673:28;8695:5;8673:28;:::i;12723:401::-;12925:2;12907:21;;;12964:2;12944:18;;;12937:30;13003:34;12998:2;12983:18;;12976:62;-1:-1:-1;;;13069:2:1;13054:18;;13047:35;13114:3;13099:19;;12723:401::o;13129:399::-;13331:2;13313:21;;;13370:2;13350:18;;;13343:30;13409:34;13404:2;13389:18;;13382:62;-1:-1:-1;;;13475:2:1;13460:18;;13453:33;13518:3;13503:19;;13129:399::o;16132:128::-;16199:9;;;16220:11;;;16217:37;;;16234:18;;:::i;17128:127::-;17189:10;17184:3;17180:20;17177:1;17170:31;17220:4;17217:1;17210:15;17244:4;17241:1;17234:15;17260:251;17330:6;17383:2;17371:9;17362:7;17358:23;17354:32;17351:52;;;17399:1;17396;17389:12;17351:52;17431:9;17425:16;17450:31;17475:5;17450:31;:::i;17516:980::-;17778:4;17826:3;17815:9;17811:19;17857:6;17846:9;17839:25;17883:2;17921:6;17916:2;17905:9;17901:18;17894:34;17964:3;17959:2;17948:9;17944:18;17937:31;17988:6;18023;18017:13;18054:6;18046;18039:22;18092:3;18081:9;18077:19;18070:26;;18131:2;18123:6;18119:15;18105:29;;18152:1;18162:195;18176:6;18173:1;18170:13;18162:195;;;18241:13;;-1:-1:-1;;;;;18237:39:1;18225:52;;18332:15;;;;18297:12;;;;18273:1;18191:9;18162:195;;;-1:-1:-1;;;;;;;18413:32:1;;;;18408:2;18393:18;;18386:60;-1:-1:-1;;;18477:3:1;18462:19;18455:35;18374:3;17516:980;-1:-1:-1;;;17516:980:1:o;19113:306::-;19201:6;19209;19217;19270:2;19258:9;19249:7;19245:23;19241:32;19238:52;;;19286:1;19283;19276:12;19238:52;19315:9;19309:16;19299:26;;19365:2;19354:9;19350:18;19344:25;19334:35;;19409:2;19398:9;19394:18;19388:25;19378:35;;19113:306;;;;;:::o

Swarm Source

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