ETH Price: $3,490.71 (+2.66%)
Gas: 10 Gwei

Token

GoogleInu (GoogleInu)
 

Overview

Max Total Supply

100,000,000 GoogleInu

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,317,294.041743934888281516 GoogleInu

Value
$0.00
0x0a6e6d297fC307cDcFda4E123F3b550aaa1cbB14
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:
GoogleInu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
        GoogleInu | Official link
        Twitter: https://twitter.com/GoogleInu
        Telegram: https://t.me/GoogleInu
        Website: https://googleinucoin.com/ 
    */

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

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

    /* pragma solidity ^0.8.0; */

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

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

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

    /* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

    /* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

    /* pragma solidity ^0.8.0; */

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

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

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

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

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

    /* pragma solidity ^0.8.0; */

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

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

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

        uint256 private _totalSupply;

        string private _name;
        string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

            return true;
        }

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

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

            return true;
        }

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

            _beforeTokenTransfer(sender, recipient, amount);

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

            emit Transfer(sender, recipient, amount);

            _afterTokenTransfer(sender, recipient, amount);
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        function feeTo() external view returns (address);

        function feeToSetter() external view returns (address);

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

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

        function allPairsLength() external view returns (uint256);

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

        function setFeeTo(address) external;

        function setFeeToSetter(address) external;
    }

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

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

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

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

        function decimals() external pure returns (uint8);

        function totalSupply() external view returns (uint256);

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

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

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

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

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

        function DOMAIN_SEPARATOR() external view returns (bytes32);

        function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

        function MINIMUM_LIQUIDITY() external pure returns (uint256);

        function factory() external view returns (address);

        function token0() external view returns (address);

        function token1() external view returns (address);

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

        function price0CumulativeLast() external view returns (uint256);

        function price1CumulativeLast() external view returns (uint256);

        function kLast() external view returns (uint256);

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

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

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

        function skim(address to) external;

        function sync() external;

        function initialize(address, address) external;
    }

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

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

        function WETH() external pure returns (address);

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

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

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

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

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

    /* pragma solidity >=0.8.10; */

    /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
    /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
    /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
    /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
    /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
    /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
    /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

        bool private swapping;

        address public marketingWallet;
        address public devWallet;

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

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

        uint256 public manualBurnFrequency = 30 minutes;
        uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

        event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

        event AutoNukeLP();

        event ManualNukeLP();

        constructor() ERC20("GoogleInu", "GoogleInu") {
            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
                0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
            );

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

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

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

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

            uint256 totalSupply = 1_00_000_000 * 1e18;

            maxTransactionAmount = 2_000_000 * 1e18;
            maxWallet = 2_000_000 * 1e18;
            swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.1% swap wallet

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

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

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

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

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

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

        receive() external payable {}

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

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

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

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

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

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

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

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

        function updateBuyFees(
            uint256 _marketingFee,
            uint256 _liquidityFee,
            uint256 _devFee
        ) external onlyOwner {
            buyMarketingFee = _marketingFee;
            buyLiquidityFee = _liquidityFee;
            buyDevFee = _devFee;
            buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
            require(buyTotalFees <= 9, "Must keep fees at 9% or less");
        }

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

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

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

            _setAutomatedMarketMakerPair(pair, value);
        }

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

            emit SetAutomatedMarketMakerPair(pair, value);
        }

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

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

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

        event BoughtEarly(address indexed sniper);

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

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

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

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

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

            uint256 contractTokenBalance = balanceOf(address(this));

            bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

                swapBack();

                swapping = false;
            }

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

            bool takeFee = !swapping;

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

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

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

                amount -= fees;
            }

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

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

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

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

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

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

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

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

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

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

            uint256 initialETHBalance = address(this).balance;

            swapTokensForEth(amountToSwapForETH);

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

            uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
                totalTokensToSwap
            );
            uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

            uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff19166001908117909155601380549092161790553480156200004b57600080fd5b50604080518082018252600980825268476f6f676c65496e7560b81b60208084018281528551808701909652928552840152815191929162000090916003916200067d565b508051620000a69060049060208401906200067d565b505050620000c3620000bd620003cb60201b60201c565b620003cf565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e581600162000421565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000130573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000156919062000723565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ca919062000723565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000723565b6001600160a01b031660a08190526200025990600162000421565b60a051620002699060016200049a565b6a01a784379d99db420000006008819055600a55600080808080806a52b7d2dcc80cd2e4000000612710620002a08260056200076b565b620002ac91906200078d565b60095560158790556016869055601785905584620002cb8789620007b0565b620002d79190620007b0565b6014556019849055601a839055601b82905581620002f68486620007b0565b620003029190620007b0565b60185560068054732ffd34cb4b35c873946bb2a771f5b727125fdd286001600160a01b031991821681179092556007805490911690911790556200035a620003526005546001600160a01b031690565b6001620004ee565b62000367306001620004ee565b6200037661dead6001620004ee565b620003956200038d6005546001600160a01b031690565b600162000421565b620003a230600162000421565b620003b161dead600162000421565b620003bd338262000598565b505050505050505062000808565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004705760405162461bcd60e51b81526020600482018190526024820152600080516020620039d183398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005395760405162461bcd60e51b81526020600482018190526024820152600080516020620039d1833981519152604482015260640162000467565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000467565b8060026000828254620006049190620007b0565b90915550506001600160a01b0382166000908152602081905260408120805483929062000633908490620007b0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200068b90620007cb565b90600052602060002090601f016020900481019282620006af5760008555620006fa565b82601f10620006ca57805160ff1916838001178555620006fa565b82800160010185558215620006fa579182015b82811115620006fa578251825591602001919060010190620006dd565b50620007089291506200070c565b5090565b5b808211156200070857600081556001016200070d565b6000602082840312156200073657600080fd5b81516001600160a01b03811681146200074e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000788576200078862000755565b500290565b600082620007ab57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007c657620007c662000755565b500190565b600181811c90821680620007e057607f821691505b602082108114156200080257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161314162000890600039600081816106000152818161118a015281816118a20152818161193d0152818161196901528181611d06015281816128790152818161291b015261294701526000818161045901528181611cc801528181612a5101528181612b0a01528181612b4601528181612bc00152612c1d01526131416000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612c9b565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d05565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612d31565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612d31565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612d4e565b610c6d565b34801561055857600080fd5b50610408610567366004612d67565b610d4a565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612d05565b610df4565b3480156105fa57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612d31565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612d31565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610e30565b34801561070257600080fd5b506104d2610711366004612db8565b610e66565b34801561072257600080fd5b50610408610f8f565b34801561073757600080fd5b506104d2610746366004612ded565b610fcc565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612e22565b611020565b3480156107ad57600080fd5b506104d26110c8565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612e4e565b611109565b34801561083657600080fd5b506103d261114f565b34801561084b57600080fd5b506104d261085a366004612ded565b61115e565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612d05565b61123e565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612d05565b6112d7565b34801561091957600080fd5b506104d2610928366004612d31565b6112e4565b34801561093957600080fd5b50610408610948366004612d31565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612ded565b61136b565b3480156109a857600080fd5b506104d26109b7366004612e22565b6113f4565b3480156109c857600080fd5b506104d26109d7366004612d4e565b611497565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612d4e565b611568565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612e69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b506104086116bf565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612d31565b6116fc565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612d4e565b611797565b606060038054610b4490612ea2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612ea2565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611a11565b50600192915050565b6005546001600160a01b03163314610c105760405162461bcd60e51b8152600401610c0790612edd565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610c0790612edd565b670de0b6b3a76400006103e8610cac60025490565b610cb7906001612f28565b610cc19190612f47565b610ccb9190612f47565b811015610d325760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c07565b610d4481670de0b6b3a7640000612f28565b60085550565b6000610d57848484611b35565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ddc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c07565b610de98533858403611a11565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610e2b908690612f69565b611a11565b6005546001600160a01b03163314610e5a5760405162461bcd60e51b8152600401610c0790612edd565b610e64600061240a565b565b6005546001600160a01b03163314610e905760405162461bcd60e51b8152600401610c0790612edd565b610258831015610efe5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c07565b6103e88211158015610f0e575060015b610f735760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c07565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610c0790612edd565b506011805460ff19169055600190565b6005546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610c0790612edd565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461104a5760405162461bcd60e51b8152600401610c0790612edd565b601583905560168290556017819055806110648385612f69565b61106e9190612f69565b6014819055600910156110c35760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c657373000000006044820152606401610c07565b505050565b6005546001600160a01b031633146110f25760405162461bcd60e51b8152600401610c0790612edd565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146111335760405162461bcd60e51b8152600401610c0790612edd565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612ea2565b6005546001600160a01b031633146111885760405162461bcd60e51b8152600401610c0790612edd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156112305760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c07565b61123a828261245c565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c07565b6112cd3385858403611a11565b5060019392505050565b6000610bd4338484611b35565b6005546001600160a01b0316331461130e5760405162461bcd60e51b8152600401610c0790612edd565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113955760405162461bcd60e51b8152600401610c0790612edd565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461141e5760405162461bcd60e51b8152600401610c0790612edd565b6019839055601a829055601b819055806114388385612f69565b6114429190612f69565b6018819055606310156110c35760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c657373000000006044820152606401610c07565b6005546001600160a01b031633146114c15760405162461bcd60e51b8152600401610c0790612edd565b670de0b6b3a76400006103e86114d660025490565b6114e1906005612f28565b6114eb9190612f47565b6114f59190612f47565b8110156115505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c07565b61156281670de0b6b3a7640000612f28565b600a5550565b6005546000906001600160a01b031633146115955760405162461bcd60e51b8152600401610c0790612edd565b620186a06115a260025490565b6115ad906001612f28565b6115b79190612f47565b8210156116245760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c07565b6103e861163060025490565b61163b906005612f28565b6116459190612f47565b8211156116b15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c07565b50600981905560015b919050565b6005546000906001600160a01b031633146116ec5760405162461bcd60e51b8152600401610c0790612edd565b506013805460ff19169055600190565b6005546001600160a01b031633146117265760405162461bcd60e51b8152600401610c0790612edd565b6001600160a01b03811661178b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c07565b6117948161240a565b50565b6005546000906001600160a01b031633146117c45760405162461bcd60e51b8152600401610c0790612edd565b600f546010546117d49190612f69565b42116118225760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c07565b6103e88211156118875760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c07565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa1580156118f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119169190612f81565b9050600061193061271061192a84876124b0565b906124c3565b90508015611965576119657f000000000000000000000000000000000000000000000000000000000000000061dead836124cf565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119c557600080fd5b505af11580156119d9573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a735760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c07565b6001600160a01b038216611ad45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c07565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b5b5760405162461bcd60e51b8152600401610c0790612f9a565b6001600160a01b038216611b815760405162461bcd60e51b8152600401610c0790612fdf565b80611b92576110c3838360006124cf565b60115460ff161561204c576005546001600160a01b03848116911614801590611bc957506005546001600160a01b03838116911614155b8015611bdd57506001600160a01b03821615155b8015611bf457506001600160a01b03821661dead14155b8015611c0a5750600554600160a01b900460ff16155b1561204c57601154610100900460ff16611ca2576001600160a01b0383166000908152601f602052604090205460ff1680611c5d57506001600160a01b0382166000908152601f602052604090205460ff165b611ca25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c07565b60135460ff1615611de9576005546001600160a01b03838116911614801590611cfd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d3b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611de957326000908152601260205260409020544311611dd65760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c07565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e2957506001600160a01b038216600090815260208052604090205460ff16155b15611f0d57600854811115611e9e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c07565b600a546001600160a01b038316600090815260208190526040902054611ec49083612f69565b1115611f085760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b61204c565b6001600160a01b03821660009081526021602052604090205460ff168015611f4d57506001600160a01b038316600090815260208052604090205460ff16155b15611fc357600854811115611f085760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c07565b6001600160a01b038216600090815260208052604090205460ff1661204c57600a546001600160a01b0383166000908152602081905260409020546120089083612f69565b111561204c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b3060009081526020819052604090205460095481108015908190612078575060115462010000900460ff165b801561208e5750600554600160a01b900460ff16155b80156120b357506001600160a01b03851660009081526021602052604090205460ff16155b80156120d857506001600160a01b0385166000908152601f602052604090205460ff16155b80156120fd57506001600160a01b0384166000908152601f602052604090205460ff16155b1561212b576005805460ff60a01b1916600160a01b17905561211d612624565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561215d57506001600160a01b03841660009081526021602052604090205460ff165b801561216b5750600c5460ff165b80156121865750600d54600e546121829190612f69565b4210155b80156121ab57506001600160a01b0385166000908152601f602052604090205460ff16155b156121ba576121b861285e565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061220857506001600160a01b0385166000908152601f602052604090205460ff165b15612211575060005b600081156123f6576001600160a01b03861660009081526021602052604090205460ff16801561224357506000601854115b156122fb57612262606461192a601854886124b090919063ffffffff16565b9050601854601a54826122759190612f28565b61227f9190612f47565b601d60008282546122909190612f69565b9091555050601854601b546122a59083612f28565b6122af9190612f47565b601e60008282546122c09190612f69565b90915550506018546019546122d59083612f28565b6122df9190612f47565b601c60008282546122f09190612f69565b909155506123d89050565b6001600160a01b03871660009081526021602052604090205460ff16801561232557506000601454115b156123d857612344606461192a601454886124b090919063ffffffff16565b9050601454601654826123579190612f28565b6123619190612f47565b601d60008282546123729190612f69565b90915550506014546017546123879083612f28565b6123919190612f47565b601e60008282546123a29190612f69565b90915550506014546015546123b79083612f28565b6123c19190612f47565b601c60008282546123d29190612f69565b90915550505b80156123e9576123e98730836124cf565b6123f38186613022565b94505b6124018787876124cf565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124bc8284612f28565b9392505050565b60006124bc8284612f47565b6001600160a01b0383166124f55760405162461bcd60e51b8152600401610c0790612f9a565b6001600160a01b03821661251b5760405162461bcd60e51b8152600401610c0790612fdf565b6001600160a01b038316600090815260208190526040902054818110156125935760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c07565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125ca908490612f69565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461264b9190612f69565b6126559190612f69565b90506000821580612664575081155b1561266e57505050565b60095461267c906014612f28565b83111561269457600954612691906014612f28565b92505b6000600283601d54866126a79190612f28565b6126b19190612f47565b6126bb9190612f47565b905060006126c985836129ee565b9050476126d5826129fa565b60006126e147836129ee565b905060006126fe8761192a601c54856124b090919063ffffffff16565b9050600061271b8861192a601e54866124b090919063ffffffff16565b905060008161272a8486613022565b6127349190613022565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612791576040519150601f19603f3d011682016040523d82523d6000602084013e612796565b606091505b509098505086158015906127aa5750600081115b156127fd576127b98782612bba565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156128cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ef9190612f81565b9050600061290e61271061192a600b54856124b090919063ffffffff16565b90508015612943576129437f000000000000000000000000000000000000000000000000000000000000000061dead836124cf565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129a357600080fd5b505af11580156129b7573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124bc8284613022565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a2f57612a2f613039565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad1919061304f565b81600181518110612ae457612ae4613039565b60200260200101906001600160a01b031690816001600160a01b031681525050612b2f307f000000000000000000000000000000000000000000000000000000000000000084611a11565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b8490859060009086903090429060040161306c565b600060405180830381600087803b158015612b9e57600080fd5b505af1158015612bb2573d6000803e3d6000fd5b505050505050565b612be5307f000000000000000000000000000000000000000000000000000000000000000084611a11565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c6f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9491906130dd565b5050505050565b600060208083528351808285015260005b81811015612cc857858101830151858201604001528201612cac565b81811115612cda576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461179457600080fd5b60008060408385031215612d1857600080fd5b8235612d2381612cf0565b946020939093013593505050565b600060208284031215612d4357600080fd5b81356124bc81612cf0565b600060208284031215612d6057600080fd5b5035919050565b600080600060608486031215612d7c57600080fd5b8335612d8781612cf0565b92506020840135612d9781612cf0565b929592945050506040919091013590565b803580151581146116ba57600080fd5b600080600060608486031215612dcd57600080fd5b8335925060208401359150612de460408501612da8565b90509250925092565b60008060408385031215612e0057600080fd5b8235612e0b81612cf0565b9150612e1960208401612da8565b90509250929050565b600080600060608486031215612e3757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e6057600080fd5b6124bc82612da8565b60008060408385031215612e7c57600080fd5b8235612e8781612cf0565b91506020830135612e9781612cf0565b809150509250929050565b600181811c90821680612eb657607f821691505b60208210811415612ed757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4257612f42612f12565b500290565b600082612f6457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f7c57612f7c612f12565b500190565b600060208284031215612f9357600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561303457613034612f12565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561306157600080fd5b81516124bc81612cf0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130bc5784516001600160a01b031683529383019391830191600101613097565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130f257600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209057a685dfdd9ad4c7b067bae714a80a0862c473ab359dd844cbfad14a671b1864736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612c9b565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d05565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612d31565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612d31565b610bdd565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612d4e565b610c6d565b34801561055857600080fd5b50610408610567366004612d67565b610d4a565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612d05565b610df4565b3480156105fa57600080fd5b5061047b7f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c181565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612d31565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612d31565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610e30565b34801561070257600080fd5b506104d2610711366004612db8565b610e66565b34801561072257600080fd5b50610408610f8f565b34801561073757600080fd5b506104d2610746366004612ded565b610fcc565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612e22565b611020565b3480156107ad57600080fd5b506104d26110c8565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612e4e565b611109565b34801561083657600080fd5b506103d261114f565b34801561084b57600080fd5b506104d261085a366004612ded565b61115e565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612d05565b61123e565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612d05565b6112d7565b34801561091957600080fd5b506104d2610928366004612d31565b6112e4565b34801561093957600080fd5b50610408610948366004612d31565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612ded565b61136b565b3480156109a857600080fd5b506104d26109b7366004612e22565b6113f4565b3480156109c857600080fd5b506104d26109d7366004612d4e565b611497565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612d4e565b611568565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612e69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b506104086116bf565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612d31565b6116fc565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612d4e565b611797565b606060038054610b4490612ea2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612ea2565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4338484611a11565b50600192915050565b6005546001600160a01b03163314610c105760405162461bcd60e51b8152600401610c0790612edd565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c975760405162461bcd60e51b8152600401610c0790612edd565b670de0b6b3a76400006103e8610cac60025490565b610cb7906001612f28565b610cc19190612f47565b610ccb9190612f47565b811015610d325760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c07565b610d4481670de0b6b3a7640000612f28565b60085550565b6000610d57848484611b35565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ddc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c07565b610de98533858403611a11565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bd4918590610e2b908690612f69565b611a11565b6005546001600160a01b03163314610e5a5760405162461bcd60e51b8152600401610c0790612edd565b610e64600061240a565b565b6005546001600160a01b03163314610e905760405162461bcd60e51b8152600401610c0790612edd565b610258831015610efe5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c07565b6103e88211158015610f0e575060015b610f735760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c07565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610c0790612edd565b506011805460ff19169055600190565b6005546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610c0790612edd565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461104a5760405162461bcd60e51b8152600401610c0790612edd565b601583905560168290556017819055806110648385612f69565b61106e9190612f69565b6014819055600910156110c35760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c657373000000006044820152606401610c07565b505050565b6005546001600160a01b031633146110f25760405162461bcd60e51b8152600401610c0790612edd565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146111335760405162461bcd60e51b8152600401610c0790612edd565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612ea2565b6005546001600160a01b031633146111885760405162461bcd60e51b8152600401610c0790612edd565b7f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c16001600160a01b0316826001600160a01b031614156112305760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c07565b61123a828261245c565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c07565b6112cd3385858403611a11565b5060019392505050565b6000610bd4338484611b35565b6005546001600160a01b0316331461130e5760405162461bcd60e51b8152600401610c0790612edd565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113955760405162461bcd60e51b8152600401610c0790612edd565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461141e5760405162461bcd60e51b8152600401610c0790612edd565b6019839055601a829055601b819055806114388385612f69565b6114429190612f69565b6018819055606310156110c35760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c657373000000006044820152606401610c07565b6005546001600160a01b031633146114c15760405162461bcd60e51b8152600401610c0790612edd565b670de0b6b3a76400006103e86114d660025490565b6114e1906005612f28565b6114eb9190612f47565b6114f59190612f47565b8110156115505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c07565b61156281670de0b6b3a7640000612f28565b600a5550565b6005546000906001600160a01b031633146115955760405162461bcd60e51b8152600401610c0790612edd565b620186a06115a260025490565b6115ad906001612f28565b6115b79190612f47565b8210156116245760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c07565b6103e861163060025490565b61163b906005612f28565b6116459190612f47565b8211156116b15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c07565b50600981905560015b919050565b6005546000906001600160a01b031633146116ec5760405162461bcd60e51b8152600401610c0790612edd565b506013805460ff19169055600190565b6005546001600160a01b031633146117265760405162461bcd60e51b8152600401610c0790612edd565b6001600160a01b03811661178b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c07565b6117948161240a565b50565b6005546000906001600160a01b031633146117c45760405162461bcd60e51b8152600401610c0790612edd565b600f546010546117d49190612f69565b42116118225760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c07565b6103e88211156118875760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c07565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c116600482015260009030906370a0823190602401602060405180830381865afa1580156118f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119169190612f81565b9050600061193061271061192a84876124b0565b906124c3565b90508015611965576119657f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c161dead836124cf565b60007f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119c557600080fd5b505af11580156119d9573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a735760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c07565b6001600160a01b038216611ad45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c07565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b5b5760405162461bcd60e51b8152600401610c0790612f9a565b6001600160a01b038216611b815760405162461bcd60e51b8152600401610c0790612fdf565b80611b92576110c3838360006124cf565b60115460ff161561204c576005546001600160a01b03848116911614801590611bc957506005546001600160a01b03838116911614155b8015611bdd57506001600160a01b03821615155b8015611bf457506001600160a01b03821661dead14155b8015611c0a5750600554600160a01b900460ff16155b1561204c57601154610100900460ff16611ca2576001600160a01b0383166000908152601f602052604090205460ff1680611c5d57506001600160a01b0382166000908152601f602052604090205460ff165b611ca25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c07565b60135460ff1615611de9576005546001600160a01b03838116911614801590611cfd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d3b57507f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c16001600160a01b0316826001600160a01b031614155b15611de957326000908152601260205260409020544311611dd65760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c07565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e2957506001600160a01b038216600090815260208052604090205460ff16155b15611f0d57600854811115611e9e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c07565b600a546001600160a01b038316600090815260208190526040902054611ec49083612f69565b1115611f085760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b61204c565b6001600160a01b03821660009081526021602052604090205460ff168015611f4d57506001600160a01b038316600090815260208052604090205460ff16155b15611fc357600854811115611f085760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c07565b6001600160a01b038216600090815260208052604090205460ff1661204c57600a546001600160a01b0383166000908152602081905260409020546120089083612f69565b111561204c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c07565b3060009081526020819052604090205460095481108015908190612078575060115462010000900460ff165b801561208e5750600554600160a01b900460ff16155b80156120b357506001600160a01b03851660009081526021602052604090205460ff16155b80156120d857506001600160a01b0385166000908152601f602052604090205460ff16155b80156120fd57506001600160a01b0384166000908152601f602052604090205460ff16155b1561212b576005805460ff60a01b1916600160a01b17905561211d612624565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561215d57506001600160a01b03841660009081526021602052604090205460ff165b801561216b5750600c5460ff165b80156121865750600d54600e546121829190612f69565b4210155b80156121ab57506001600160a01b0385166000908152601f602052604090205460ff16155b156121ba576121b861285e565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061220857506001600160a01b0385166000908152601f602052604090205460ff165b15612211575060005b600081156123f6576001600160a01b03861660009081526021602052604090205460ff16801561224357506000601854115b156122fb57612262606461192a601854886124b090919063ffffffff16565b9050601854601a54826122759190612f28565b61227f9190612f47565b601d60008282546122909190612f69565b9091555050601854601b546122a59083612f28565b6122af9190612f47565b601e60008282546122c09190612f69565b90915550506018546019546122d59083612f28565b6122df9190612f47565b601c60008282546122f09190612f69565b909155506123d89050565b6001600160a01b03871660009081526021602052604090205460ff16801561232557506000601454115b156123d857612344606461192a601454886124b090919063ffffffff16565b9050601454601654826123579190612f28565b6123619190612f47565b601d60008282546123729190612f69565b90915550506014546017546123879083612f28565b6123919190612f47565b601e60008282546123a29190612f69565b90915550506014546015546123b79083612f28565b6123c19190612f47565b601c60008282546123d29190612f69565b90915550505b80156123e9576123e98730836124cf565b6123f38186613022565b94505b6124018787876124cf565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124bc8284612f28565b9392505050565b60006124bc8284612f47565b6001600160a01b0383166124f55760405162461bcd60e51b8152600401610c0790612f9a565b6001600160a01b03821661251b5760405162461bcd60e51b8152600401610c0790612fdf565b6001600160a01b038316600090815260208190526040902054818110156125935760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c07565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125ca908490612f69565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461264b9190612f69565b6126559190612f69565b90506000821580612664575081155b1561266e57505050565b60095461267c906014612f28565b83111561269457600954612691906014612f28565b92505b6000600283601d54866126a79190612f28565b6126b19190612f47565b6126bb9190612f47565b905060006126c985836129ee565b9050476126d5826129fa565b60006126e147836129ee565b905060006126fe8761192a601c54856124b090919063ffffffff16565b9050600061271b8861192a601e54866124b090919063ffffffff16565b905060008161272a8486613022565b6127349190613022565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612791576040519150601f19603f3d011682016040523d82523d6000602084013e612796565b606091505b509098505086158015906127aa5750600081115b156127fd576127b98782612bba565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c1166004820152600090819030906370a0823190602401602060405180830381865afa1580156128cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ef9190612f81565b9050600061290e61271061192a600b54856124b090919063ffffffff16565b90508015612943576129437f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c161dead836124cf565b60007f0000000000000000000000002a22b6fe0cd0d8affe6929cd7f774f7e5ed225c19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129a357600080fd5b505af11580156129b7573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124bc8284613022565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a2f57612a2f613039565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad1919061304f565b81600181518110612ae457612ae4613039565b60200260200101906001600160a01b031690816001600160a01b031681525050612b2f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a11565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b8490859060009086903090429060040161306c565b600060405180830381600087803b158015612b9e57600080fd5b505af1158015612bb2573d6000803e3d6000fd5b505050505050565b612be5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a11565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c6f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9491906130dd565b5050505050565b600060208083528351808285015260005b81811015612cc857858101830151858201604001528201612cac565b81811115612cda576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461179457600080fd5b60008060408385031215612d1857600080fd5b8235612d2381612cf0565b946020939093013593505050565b600060208284031215612d4357600080fd5b81356124bc81612cf0565b600060208284031215612d6057600080fd5b5035919050565b600080600060608486031215612d7c57600080fd5b8335612d8781612cf0565b92506020840135612d9781612cf0565b929592945050506040919091013590565b803580151581146116ba57600080fd5b600080600060608486031215612dcd57600080fd5b8335925060208401359150612de460408501612da8565b90509250925092565b60008060408385031215612e0057600080fd5b8235612e0b81612cf0565b9150612e1960208401612da8565b90509250929050565b600080600060608486031215612e3757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e6057600080fd5b6124bc82612da8565b60008060408385031215612e7c57600080fd5b8235612e8781612cf0565b91506020830135612e9781612cf0565b809150509250929050565b600181811c90821680612eb657607f821691505b60208210811415612ed757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4257612f42612f12565b500290565b600082612f6457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f7c57612f7c612f12565b500190565b600060208284031215612f9357600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561303457613034612f12565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561306157600080fd5b81516124bc81612cf0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130bc5784516001600160a01b031683529383019391830191600101613097565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130f257600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209057a685dfdd9ad4c7b067bae714a80a0862c473ab359dd844cbfad14a671b1864736f6c634300080a0033

Deployed Bytecode Sourcemap

36092:21241:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10572:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12957:181;;;;;;;;;;-1:-1:-1;12957:181:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;12957:181:0;1072:187:1;37871:63:0;;;;;;;;;;-1:-1:-1;37871:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36179:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;36179:51:0;1516:230:1;11791:116:0;;;;;;;;;;-1:-1:-1;11883:12:0;;11791:116;;;1897:25:1;;;1885:2;1870:18;11791:116:0;1751:177:1;45621:169:0;;;;;;;;;;-1:-1:-1;45621:169:0;;;;;:::i;:::-;;:::i;:::-;;36797:47;;;;;;;;;;;;;;;;36595:36;;;;;;;;;;;;;;;;37635:33;;;;;;;;;;;;;;;;37591;;;;;;;;;;;;;;;;42654:299;;;;;;;;;;-1:-1:-1;42654:299:0;;;;;:::i;:::-;;:::i;13664:540::-;;;;;;;;;;-1:-1:-1;13664:540:0;;;;;:::i;:::-;;:::i;36290:53::-;;;;;;;;;;;;36336:6;36290:53;;36699:45;;;;;;;;;;;;;;;;36655:33;;;;;;;;;;-1:-1:-1;36655:33:0;;;;;;;;11611:101;;;;;;;;;;-1:-1:-1;11611:101:0;;11698:2;2929:36:1;;2917:2;2902:18;11611:101:0;2787:184:1;14654:227:0;;;;;;;;;;-1:-1:-1;14654:227:0;;;;;:::i;:::-;;:::i;36241:38::-;;;;;;;;;;;;;;;36903:33;;;;;;;;;;-1:-1:-1;36903:33:0;;;;;;;;45802:134;;;;;;;;;;-1:-1:-1;45802:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;45896:28:0;45868:4;45896:28;;;:19;:28;;;;;;;;;45802:134;37430:28;;;;;;;;;;;;;;;;36991:31;;;;;;;;;;-1:-1:-1;36991:31:0;;;;;;;;;;;11984:135;;;;;;;;;;-1:-1:-1;11984:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;12089:18:0;12058:7;12089:18;;;;;;;;;;;;11984:135;3224:111;;;;;;;;;;;;;:::i;54675:619::-;;;;;;;;;;-1:-1:-1;54675:619:0;;;;;:::i;:::-;;:::i;41658:133::-;;;;;;;;;;;;;:::i;43257:187::-;;;;;;;;;;-1:-1:-1;43257:187:0;;;;;:::i;:::-;;:::i;36390:30::-;;;;;;;;;;-1:-1:-1;36390:30:0;;;;-1:-1:-1;;;;;36390:30:0;;;37311;;;;;;;;;;;;;;;;43668:441;;;;;;;;;;-1:-1:-1;43668:441:0;;;;;:::i;:::-;;:::i;41427:171::-;;;;;;;;;;;;;:::i;2513:95::-;;;;;;;;;;-1:-1:-1;2590:6:0;;-1:-1:-1;;;;;2590:6:0;2513:95;;36431:24;;;;;;;;;;-1:-1:-1;36431:24:0;;;;-1:-1:-1;;;;;36431:24:0;;;37469:31;;;;;;;;;;;;;;;;43548:108;;;;;;;;;;-1:-1:-1;43548:108:0;;;;;:::i;:::-;;:::i;10816:112::-;;;;;;;;;;;;;:::i;44790:340::-;;;;;;;;;;-1:-1:-1;44790:340:0;;;;;:::i;:::-;;:::i;37393:24::-;;;;;;;;;;;;;;;;36855:35;;;;;;;;;;;;;;;;37679:27;;;;;;;;;;;;;;;;37553:25;;;;;;;;;;;;;;;;15431:441;;;;;;;;;;-1:-1:-1;15431:441:0;;;;;:::i;:::-;;:::i;36755:29::-;;;;;;;;;;;;;;;;12361:187;;;;;;;;;;-1:-1:-1;12361:187:0;;;;;:::i;:::-;;:::i;45354:255::-;;;;;;;;;;-1:-1:-1;45354:255:0;;;;;:::i;:::-;;:::i;38104:57::-;;;;;;;;;;-1:-1:-1;38104:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36947:33;;;;;;;;;;-1:-1:-1;36947:33:0;;;;;;;;;;;44584:194;;;;;;;;;;-1:-1:-1;44584:194:0;;;;;:::i;:::-;;:::i;44121:451::-;;;;;;;;;;-1:-1:-1;44121:451:0;;;;;:::i;:::-;;:::i;42965:280::-;;;;;;;;;;-1:-1:-1;42965:280:0;;;;;:::i;:::-;;:::i;37221:39::-;;;;;;;;;;-1:-1:-1;37221:39:0;;;;;;;;36468:35;;;;;;;;;;;;;;;;42085:557;;;;;;;;;;-1:-1:-1;42085:557:0;;;;;:::i;:::-;;:::i;37273:27::-;;;;;;;;;;;;;;;;12625:159;;;;;;;;;;-1:-1:-1;12625:159:0;;;;;:::i;:::-;-1:-1:-1;;;;;12745:18:0;;;12714:7;12745:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12625:159;36514:33;;;;;;;;;;;;;;;;41860:147;;;;;;;;;;;;;:::i;37352:30::-;;;;;;;;;;;;;;;;3507:213;;;;;;;;;;-1:-1:-1;3507:213:0;;;;;:::i;:::-;;:::i;37511:31::-;;;;;;;;;;;;;;;;36558:24;;;;;;;;;;;;;;;;56174:1152;;;;;;;;;;-1:-1:-1;56174:1152:0;;;;;:::i;:::-;;:::i;10572:108::-;10626:13;10663:5;10656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10572:108;:::o;12957:181::-;13040:4;13061:39;1145:10;13084:7;13093:6;13061:8;:39::i;:::-;-1:-1:-1;13122:4:0;12957:181;;;;:::o;45621:169::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;;;;;;;;;45732:9:::1;::::0;45704:38:::1;::::0;-1:-1:-1;;;;;45732:9:0;;::::1;::::0;45704:38;::::1;::::0;::::1;::::0;45732:9:::1;::::0;45704:38:::1;45757:9;:21:::0;;-1:-1:-1;;;;;;45757:21:0::1;-1:-1:-1::0;;;;;45757:21:0;;;::::1;::::0;;;::::1;::::0;;45621:169::o;42654:299::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;42799:4:::1;42791;42770:13;11883:12:::0;;;11791:116;42770:13:::1;:17;::::0;42786:1:::1;42770:17;:::i;:::-;42769:26;;;;:::i;:::-;42768:35;;;;:::i;:::-;42758:6;:45;;42732:154;;;::::0;-1:-1:-1;;;42732:154:0;;6156:2:1;42732:154:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:45;6340:19;;42732:154:0::1;5954:411:1::0;42732:154:0::1;42924:17;:6:::0;42934::::1;42924:17;:::i;:::-;42901:20;:40:::0;-1:-1:-1;42654:299:0:o;13664:540::-;13820:4;13841:36;13851:6;13859:9;13870:6;13841:9;:36::i;:::-;-1:-1:-1;;;;;13921:19:0;;13894:24;13921:19;;;:11;:19;;;;;;;;1145:10;13921:33;;;;;;;;13977:26;;;;13969:79;;;;-1:-1:-1;;;13969:79:0;;6572:2:1;13969:79:0;;;6554:21:1;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;-1:-1:-1;;;6701:18:1;;;6694:38;6749:19;;13969:79:0;6370:404:1;13969:79:0;14092:57;14101:6;1145:10;14142:6;14123:16;:25;14092:8;:57::i;:::-;-1:-1:-1;14188:4:0;;13664:540;-1:-1:-1;;;;13664:540:0:o;14654:227::-;1145:10;14742:4;14795:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14795:34:0;;;;;;;;;;14742:4;;14763:80;;14786:7;;14795:47;;14832:10;;14795:47;:::i;:::-;14763:8;:80::i;3224:111::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;3293:30:::1;3320:1;3293:18;:30::i;:::-;3224:111::o:0;54675:619::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;54901:3:::1;54878:19;:26;;54852:139;;;::::0;-1:-1:-1;;;54852:139:0;;7114:2:1;54852:139:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:49;7302:19;;54852:139:0::1;6912:415:1::0;54852:139:0::1;55044:4;55032:8;:16;;:33;;;;-1:-1:-1::0;55052:13:0;55032:33:::1;55006:143;;;::::0;-1:-1:-1;;;55006:143:0;;7534:2:1;55006:143:0::1;::::0;::::1;7516:21:1::0;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:46;7719:19;;55006:143:0::1;7332:412:1::0;55006:143:0::1;55164:15;:37:::0;;;;55216:16:::1;:27:::0;55258:13:::1;:24:::0;;-1:-1:-1;;55258:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54675:619::o;41658:133::-;2590:6;;41710:4;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;-1:-1:-1;41731:14:0::1;:22:::0;;-1:-1:-1;;41731:22:0::1;::::0;;;41658:133;:::o;43257:187::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43386:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;43386:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43257:187::o;43668:441::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;43838:15:::1;:31:::0;;;43884:15:::1;:31:::0;;;43930:9:::1;:19:::0;;;43942:7;43979:33:::1;43902:13:::0;43856;43979:33:::1;:::i;:::-;:45;;;;:::i;:::-;43964:12;:60:::0;;;44063:1:::1;-1:-1:-1::0;44047:17:0::1;44039:58;;;::::0;-1:-1:-1;;;44039:58:0;;7951:2:1;44039:58:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029;8009:18;;;8002:58;8077:18;;44039:58:0::1;7749:352:1::0;44039:58:0::1;43668:441:::0;;;:::o;41427:171::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;41486:13:::1;:20:::0;;-1:-1:-1;;41521:18:0;;;;;41571:15:::1;41554:14;:32:::0;41427:171::o;43548:108::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;43623:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43623:21:0;;::::1;::::0;;;::::1;::::0;;43548:108::o;10816:112::-;10872:13;10909:7;10902:14;;;;;:::i;44790:340::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;44954:13:::1;-1:-1:-1::0;;;;;44946:21:0::1;:4;-1:-1:-1::0;;;;;44946:21:0::1;;;44920:140;;;::::0;-1:-1:-1;;;44920:140:0;;8308:2:1;44920:140:0::1;::::0;::::1;8290:21:1::0;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;8457:27;8437:18;;;8430:55;8502:19;;44920:140:0::1;8106:421:1::0;44920:140:0::1;45077:41;45106:4;45112:5;45077:28;:41::i;:::-;44790:340:::0;;:::o;15431:441::-;1145:10;15524:4;15572:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15572:34:0;;;;;;;;;;15629:35;;;;15621:85;;;;-1:-1:-1;;;15621:85:0;;8734:2:1;15621:85:0;;;8716:21:1;8773:2;8753:18;;;8746:30;8812:34;8792:18;;;8785:62;-1:-1:-1;;;8863:18:1;;;8856:35;8908:19;;15621:85:0;8532:401:1;15621:85:0;15750:67;1145:10;15773:7;15801:15;15782:16;:34;15750:8;:67::i;:::-;-1:-1:-1;15856:4:0;;15431:441;-1:-1:-1;;;15431:441:0:o;12361:187::-;12447:4;12468:42;1145:10;12492:9;12503:6;12468:9;:42::i;45354:255::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;45530:15:::1;::::0;45487:59:::1;::::0;-1:-1:-1;;;;;45530:15:0;;::::1;::::0;45487:59;::::1;::::0;::::1;::::0;45530:15:::1;::::0;45487:59:::1;45561:15;:36:::0;;-1:-1:-1;;;;;;45561:36:0::1;-1:-1:-1::0;;;;;45561:36:0;;;::::1;::::0;;;::::1;::::0;;45354:255::o;44584:194::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44673:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;44673:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44732:34;;1212:41:1;;;44732:34:0::1;::::0;1185:18:1;44732:34:0::1;;;;;;;44584:194:::0;;:::o;44121:451::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;44292:16:::1;:32:::0;;;44339:16:::1;:32:::0;;;44386:10:::1;:20:::0;;;44399:7;44437:35:::1;44358:13:::0;44311;44437:35:::1;:::i;:::-;:48;;;;:::i;:::-;44421:13;:64:::0;;;44525:2:::1;-1:-1:-1::0;44508:19:0::1;44500:60;;;::::0;-1:-1:-1;;;44500:60:0;;7951:2:1;44500:60:0::1;::::0;::::1;7933:21:1::0;7990:2;7970:18;;;7963:30;8029;8009:18;;;8002:58;8077:18;;44500:60:0::1;7749:352:1::0;42965:280:0;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;43113:4:::1;43105;43084:13;11883:12:::0;;;11791:116;43084:13:::1;:17;::::0;43100:1:::1;43084:17;:::i;:::-;43083:26;;;;:::i;:::-;43082:35;;;;:::i;:::-;43072:6;:45;;43046:143;;;::::0;-1:-1:-1;;;43046:143:0;;9140:2:1;43046:143:0::1;::::0;::::1;9122:21:1::0;9179:2;9159:18;;;9152:30;9218:34;9198:18;;;9191:62;-1:-1:-1;;;9269:18:1;;;9262:34;9313:19;;43046:143:0::1;8938:400:1::0;43046:143:0::1;43216:17;:6:::0;43226::::1;43216:17;:::i;:::-;43204:9;:29:::0;-1:-1:-1;42965:280:0:o;42085:557::-;2590:6;;42205:4;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;42296:6:::1;42275:13;11883:12:::0;;;11791:116;42275:13:::1;:17;::::0;42291:1:::1;42275:17;:::i;:::-;42274:28;;;;:::i;:::-;42261:9;:41;;42235:156;;;::::0;-1:-1:-1;;;42235:156:0;;9545:2:1;42235:156:0::1;::::0;::::1;9527:21:1::0;9584:2;9564:18;;;9557:30;9623:34;9603:18;;;9596:62;-1:-1:-1;;;9674:18:1;;;9667:51;9735:19;;42235:156:0::1;9343:417:1::0;42235:156:0::1;42467:4;42446:13;11883:12:::0;;;11791:116;42446:13:::1;:17;::::0;42462:1:::1;42446:17;:::i;:::-;42445:26;;;;:::i;:::-;42432:9;:39;;42406:153;;;::::0;-1:-1:-1;;;42406:153:0;;9967:2:1;42406:153:0::1;::::0;::::1;9949:21:1::0;10006:2;9986:18;;;9979:30;10045:34;10025:18;;;10018:62;-1:-1:-1;;;10096:18:1;;;10089:50;10156:19;;42406:153:0::1;9765:416:1::0;42406:153:0::1;-1:-1:-1::0;42574:18:0::1;:30:::0;;;42626:4:::1;2834:1;42085:557:::0;;;:::o;41860:147::-;2590:6;;41920:4;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;-1:-1:-1;41941:20:0::1;:28:::0;;-1:-1:-1;;41941:28:0::1;::::0;;;41860:147;:::o;3507:213::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3600:22:0;::::1;3592:73;;;::::0;-1:-1:-1;;;3592:73:0;;10388:2:1;3592:73:0::1;::::0;::::1;10370:21:1::0;10427:2;10407:18;;;10400:30;10466:34;10446:18;;;10439:62;-1:-1:-1;;;10517:18:1;;;10510:36;10563:19;;3592:73:0::1;10186:402:1::0;3592:73:0::1;3680:28;3699:8;3680:18;:28::i;:::-;3507:213:::0;:::o;56174:1152::-;2590:6;;56297:4;;-1:-1:-1;;;;;2590:6:0;1145:10;2759:23;2751:68;;;;-1:-1:-1;;;2751:68:0;;;;;;;:::i;:::-;56394:19:::1;;56371:20;;:42;;;;:::i;:::-;56353:15;:60;56327:154;;;::::0;-1:-1:-1;;;56327:154:0;;10795:2:1;56327:154:0::1;::::0;::::1;10777:21:1::0;;;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;10925:18;;56327:154:0::1;10593:356:1::0;56327:154:0::1;56515:4;56504:7;:15;;56496:70;;;::::0;-1:-1:-1;;;56496:70:0;;11156:2:1;56496:70:0::1;::::0;::::1;11138:21:1::0;11195:2;11175:18;;;11168:30;11234:34;11214:18;;;11207:62;-1:-1:-1;;;11285:18:1;;;11278:40;11335:19;;56496:70:0::1;10954:406:1::0;56496:70:0::1;56604:15;56581:20;:38:::0;56713:29:::1;::::0;-1:-1:-1;;;56713:29:0;;-1:-1:-1;;;;;56728:13:0::1;1707:32:1::0;56713:29:0::1;::::0;::::1;1689:51:1::0;56682:28:0::1;::::0;56713:4:::1;::::0;:14:::1;::::0;1662:18:1;;56713:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56682:60:::0;-1:-1:-1;56800:20:0::1;56823:44;56861:5;56823:33;56682:60:::0;56848:7;56823:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;56800:67:::0;-1:-1:-1;56980:16:0;;56976:118:::1;;57017:61;57033:13;57056:6;57065:12;57017:15;:61::i;:::-;57177:19;57214:13;57177:51;;57243:4;-1:-1:-1::0;;;;;57243:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;57274:14:0::1;::::0;::::1;::::0;-1:-1:-1;57274:14:0;;-1:-1:-1;57274:14:0::1;-1:-1:-1::0;57310:4:0::1;::::0;56174:1152;-1:-1:-1;;;;56174:1152:0:o;19440:416::-;-1:-1:-1;;;;;19596:19:0;;19588:68;;;;-1:-1:-1;;;19588:68:0;;11756:2:1;19588:68:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:34;11929:19;;19588:68:0;11554:400:1;19588:68:0;-1:-1:-1;;;;;19679:21:0;;19671:68;;;;-1:-1:-1;;;19671:68:0;;12161:2:1;19671:68:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:32;12332:19;;19671:68:0;11959:398:1;19671:68:0;-1:-1:-1;;;;;19756:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19812:32;;1897:25:1;;;19812:32:0;;1870:18:1;19812:32:0;;;;;;;19440:416;;;:::o;46002:5499::-;-1:-1:-1;;;;;46154:18:0;;46146:68;;;;-1:-1:-1;;;46146:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46237:16:0;;46229:64;;;;-1:-1:-1;;;46229:64:0;;;;;;;:::i;:::-;46314:11;46310:105;;46346:28;46362:4;46368:2;46372:1;46346:15;:28::i;46310:105::-;46435:14;;;;46431:2723;;;2590:6;;-1:-1:-1;;;;;46496:15:0;;;2590:6;;46496:15;;;;:53;;-1:-1:-1;2590:6:0;;-1:-1:-1;;;;;46536:13:0;;;2590:6;;46536:13;;46496:53;:94;;;;-1:-1:-1;;;;;;46574:16:0;;;;46496:94;:140;;;;-1:-1:-1;;;;;;46615:21:0;;46629:6;46615:21;;46496:140;:174;;;;-1:-1:-1;46662:8:0;;-1:-1:-1;;;46662:8:0;;;;46661:9;46496:174;46470:2669;;;46718:13;;;;;;;46713:243;;-1:-1:-1;;;;;46798:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46827:23:0;;;;;;:19;:23;;;;;;;;46798:52;46760:172;;;;-1:-1:-1;;;46760:172:0;;13374:2:1;46760:172:0;;;13356:21:1;13413:2;13393:18;;;13386:30;-1:-1:-1;;;13432:18:1;;;13425:52;13494:18;;46760:172:0;13172:346:1;46760:172:0;47120:20;;;;47116:693;;;2590:6;;-1:-1:-1;;;;;47203:13:0;;;2590:6;;47203:13;;;;:76;;;47263:15;-1:-1:-1;;;;;47249:30:0;:2;-1:-1:-1;;;;;47249:30:0;;;47203:76;:137;;;;;47326:13;-1:-1:-1;;;;;47312:28:0;:2;-1:-1:-1;;;;;47312:28:0;;;47203:137;47169:617;;;47470:9;47441:39;;;;:28;:39;;;;;;47520:12;-1:-1:-1;47399:274:0;;;;-1:-1:-1;;;47399:274:0;;13725:2:1;47399:274:0;;;13707:21:1;13764:2;13744:18;;;13737:30;13803:34;13783:18;;;13776:62;13874:34;13854:18;;;13847:62;-1:-1:-1;;;13925:19:1;;;13918:40;13975:19;;47399:274:0;13523:477:1;47399:274:0;47733:9;47704:39;;;;:28;:39;;;;;47746:12;47704:54;;47169:617;-1:-1:-1;;;;;47895:31:0;;;;;;:25;:31;;;;;;;;:96;;;;-1:-1:-1;;;;;;47956:35:0;;;;;;:31;:35;;;;;;;;47955:36;47895:96;47865:1255;;;48090:20;;48080:6;:30;;48042:181;;;;-1:-1:-1;;;48042:181:0;;14207:2:1;48042:181:0;;;14189:21:1;14246:2;14226:18;;;14219:30;14285:34;14265:18;;;14258:62;-1:-1:-1;;;14336:18:1;;;14329:51;14397:19;;48042:181:0;14005:417:1;48042:181:0;48314:9;;-1:-1:-1;;;;;12089:18:0;;12058:7;12089:18;;;;;;;;;;;48288:22;;:6;:22;:::i;:::-;:35;;48250:152;;;;-1:-1:-1;;;48250:152:0;;14629:2:1;48250:152:0;;;14611:21:1;14668:2;14648:18;;;14641:30;-1:-1:-1;;;14687:18:1;;;14680:49;14746:18;;48250:152:0;14427:343:1;48250:152:0;47865:1255;;;-1:-1:-1;;;;;48516:29:0;;;;;;:25;:29;;;;;;;;:96;;;;-1:-1:-1;;;;;;48575:37:0;;;;;;:31;:37;;;;;;;;48574:38;48516:96;48486:634;;;48711:20;;48701:6;:30;;48663:182;;;;-1:-1:-1;;;48663:182:0;;14977:2:1;48663:182:0;;;14959:21:1;15016:2;14996:18;;;14989:30;15055:34;15035:18;;;15028:62;-1:-1:-1;;;15106:18:1;;;15099:52;15168:19;;48663:182:0;14775:418:1;48486:634:0;-1:-1:-1;;;;;48880:35:0;;;;;;:31;:35;;;;;;;;48875:245;;49008:9;;-1:-1:-1;;;;;12089:18:0;;12058:7;12089:18;;;;;;;;;;;48982:22;;:6;:22;:::i;:::-;:35;;48944:152;;;;-1:-1:-1;;;48944:152:0;;14629:2:1;48944:152:0;;;14611:21:1;14668:2;14648:18;;;14641:30;-1:-1:-1;;;14687:18:1;;;14680:49;14746:18;;48944:152:0;14427:343:1;48944:152:0;49219:4;49170:28;12089:18;;;;;;;;;;;49281;;49257:42;;;;;;;49338:39;;-1:-1:-1;49366:11:0;;;;;;;49338:39;:69;;;;-1:-1:-1;49399:8:0;;-1:-1:-1;;;49399:8:0;;;;49398:9;49338:69;:122;;;;-1:-1:-1;;;;;;49429:31:0;;;;;;:25;:31;;;;;;;;49428:32;49338:122;:169;;;;-1:-1:-1;;;;;;49482:25:0;;;;;;:19;:25;;;;;;;;49481:26;49338:169;:214;;;;-1:-1:-1;;;;;;49529:23:0;;;;;;:19;:23;;;;;;;;49528:24;49338:214;49316:370;;;49587:8;:15;;-1:-1:-1;;;;49587:15:0;-1:-1:-1;;;49587:15:0;;;49623:10;:8;:10::i;:::-;49654:8;:16;;-1:-1:-1;;;;49654:16:0;;;49316:370;49725:8;;-1:-1:-1;;;49725:8:0;;;;49724:9;:59;;;;-1:-1:-1;;;;;;49754:29:0;;;;;;:25;:29;;;;;;;;49724:59;:93;;;;-1:-1:-1;49804:13:0;;;;49724:93;:165;;;;;49874:15;;49857:14;;:32;;;;:::i;:::-;49838:15;:51;;49724:165;:212;;;;-1:-1:-1;;;;;;49911:25:0;;;;;;:19;:25;;;;;;;;49910:26;49724:212;49702:314;;;49971:29;:27;:29::i;:::-;;49702:314;50048:8;;-1:-1:-1;;;;;50166:25:0;;50032:12;50166:25;;;:19;:25;;;;;;50048:8;-1:-1:-1;;;50048:8:0;;;;;50047:9;;50166:25;;:52;;-1:-1:-1;;;;;;50195:23:0;;;;;;:19;:23;;;;;;;;50166:52;50162:108;;;-1:-1:-1;50249:5:0;50162:108;50286:12;50399:7;50395:1045;;;-1:-1:-1;;;;;50459:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;50508:1;50492:13;;:17;50459:50;50455:816;;;50541:34;50571:3;50541:25;50552:13;;50541:6;:10;;:25;;;;:::i;:34::-;50534:41;;50648:13;;50628:16;;50621:4;:23;;;;:::i;:::-;50620:41;;;;:::i;:::-;50598:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;50722:13:0;;50708:10;;50701:17;;:4;:17;:::i;:::-;50700:35;;;;:::i;:::-;50684:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;50808:13:0;;50788:16;;50781:23;;:4;:23;:::i;:::-;50780:41;;;;:::i;:::-;50758:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;50455:816:0;;-1:-1:-1;50455:816:0;;-1:-1:-1;;;;;50895:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;50945:1;50930:12;;:16;50895:51;50891:380;;;50978:33;51007:3;50978:24;50989:12;;50978:6;:10;;:24;;;;:::i;:33::-;50971:40;;51083:12;;51064:15;;51057:4;:22;;;;:::i;:::-;51056:39;;;;:::i;:::-;51034:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;51155:12:0;;51142:9;;51135:16;;:4;:16;:::i;:::-;51134:33;;;;:::i;:::-;51118:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;51239:12:0;;51220:15;;51213:22;;:4;:22;:::i;:::-;51212:39;;;;:::i;:::-;51190:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;50891:380:0;51295:8;;51291:99;;51328:42;51344:4;51358;51365;51328:15;:42::i;:::-;51410:14;51420:4;51410:14;;:::i;:::-;;;50395:1045;51456:33;51472:4;51478:2;51482:6;51456:15;:33::i;:::-;46131:5370;;;;46002:5499;;;:::o;3897:207::-;3994:6;;;-1:-1:-1;;;;;4015:17:0;;;-1:-1:-1;;;;;;4015:17:0;;;;;;;4052:40;;3994:6;;;4015:17;3994:6;;4052:40;;3975:16;;4052:40;3960:144;3897:207;:::o;45142:200::-;-1:-1:-1;;;;;45229:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;45229:39:0;;;;;;;;;;45290:40;;45229:39;;:31;45290:40;;;45142:200;;:::o;25451:106::-;25509:7;25540:5;25544:1;25540;:5;:::i;:::-;25533:12;25451:106;-1:-1:-1;;;25451:106:0:o;25893:::-;25951:7;25982:5;25986:1;25982;:5;:::i;16409:797::-;-1:-1:-1;;;;;16569:20:0;;16561:70;;;;-1:-1:-1;;;16561:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16654:23:0;;16646:71;;;;-1:-1:-1;;;16646:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16822:17:0;;16798:21;16822:17;;;;;;;;;;;16862:23;;;;16854:74;;;;-1:-1:-1;;;16854:74:0;;15530:2:1;16854:74:0;;;15512:21:1;15569:2;15549:18;;;15542:30;15608:34;15588:18;;;15581:62;-1:-1:-1;;;15659:18:1;;;15652:36;15705:19;;16854:74:0;15328:402:1;16854:74:0;-1:-1:-1;;;;;16972:17:0;;;:9;:17;;;;;;;;;;;16992:22;;;16972:42;;17044:20;;;;;;;;:30;;17008:6;;16972:9;17044:30;;17008:6;;17044:30;:::i;:::-;;;;;;;;17113:9;-1:-1:-1;;;;;17096:35:0;17105:6;-1:-1:-1;;;;;17096:35:0;;17124:6;17096:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;17096:35:0;;;;;;;;16546:660;16409:797;;;:::o;52747:1916::-;52834:4;52790:23;12089:18;;;;;;;;;;;52790:50;;52855:25;52959:12;;52921:18;;52883;;:56;;;;:::i;:::-;:88;;;;:::i;:::-;52855:116;-1:-1:-1;52986:12:0;53019:20;;;:46;;-1:-1:-1;53043:22:0;;53019:46;53015:93;;;53086:7;;;52747:1916::o;53015:93::-;53146:18;;:23;;53167:2;53146:23;:::i;:::-;53128:15;:41;53124:123;;;53208:18;;:23;;53229:2;53208:23;:::i;:::-;53190:41;;53124:123;53316:23;53437:1;53400:17;53361:18;;53343:15;:36;;;;:::i;:::-;53342:75;;;;:::i;:::-;:96;;;;:::i;:::-;53316:122;-1:-1:-1;53453:26:0;53482:36;:15;53316:122;53482:19;:36::i;:::-;53453:65;-1:-1:-1;53563:21:0;53601:36;53453:65;53601:16;:36::i;:::-;53654:18;53675:44;:21;53701:17;53675:25;:44::i;:::-;53654:65;;53736:23;53762:89;53819:17;53762:34;53777:18;;53762:10;:14;;:34;;;;:::i;:89::-;53736:115;;53866:17;53886:51;53919:17;53886:28;53901:12;;53886:10;:14;;:28;;;;:::i;:51::-;53866:71;-1:-1:-1;53954:23:0;53866:71;53980:28;53993:15;53980:10;:28;:::i;:::-;:40;;;;:::i;:::-;54058:1;54037:18;:22;;;54074:18;:22;;;54111:12;:16;;;54166:9;;54158:45;;53954:66;;-1:-1:-1;;;;;;54166:9:0;;54189;;54158:45;54058:1;54158:45;54189:9;54166;54158:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54144:59:0;;-1:-1:-1;;54224:19:0;;;;;:42;;;54265:1;54247:15;:19;54224:42;54220:306;;;54287:46;54300:15;54317;54287:12;:46::i;:::-;54473:18;;54357:153;;;16147:25:1;;;16203:2;16188:18;;16181:34;;;16231:18;;;16224:34;;;;54357:153:0;;;;;;16135:2:1;54357:153:0;;;54220:306;54564:15;;54556:95;;-1:-1:-1;;;;;54564:15:0;;;;54611:21;;54556:95;;;;54611:21;54564:15;54556:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;52747:1916:0:o;55306:856::-;55401:15;55384:14;:32;55510:29;;-1:-1:-1;;;55510:29:0;;-1:-1:-1;;;;;55525:13:0;1707:32:1;55510:29:0;;;1689:51:1;55363:4:0;;;;55510;;:14;;1662:18:1;;55510:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55479:60;;55597:20;55620:85;55685:5;55620:42;55645:16;;55620:20;:24;;:42;;;;:::i;:85::-;55597:108;-1:-1:-1;55818:16:0;;55814:118;;55855:61;55871:13;55894:6;55903:12;55855:15;:61::i;:::-;56015:19;56052:13;56015:51;;56081:4;-1:-1:-1;;;;;56081:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56112:12:0;;;;-1:-1:-1;56112:12:0;;-1:-1:-1;56112:12:0;56146:4;56139:11;;;;;55306:856;:::o;25051:106::-;25109:7;25140:5;25144:1;25140;:5;:::i;51513:645::-;51671:16;;;51685:1;51671:16;;;;;;;;51647:21;;51671:16;;;;;;;;;;-1:-1:-1;51671:16:0;51647:40;;51720:4;51702;51707:1;51702:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;51702:23:0;;;-1:-1:-1;;;;;51702:23:0;;;;;51750:15;-1:-1:-1;;;;;51750:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51740:4;51745:1;51740:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;51740:32:0;;;-1:-1:-1;;;;;51740:32:0;;;;;51789:62;51806:4;51821:15;51839:11;51789:8;:62::i;:::-;51898:248;;-1:-1:-1;;;51898:248:0;;-1:-1:-1;;;;;51898:15:0;:66;;;;:248;;51983:11;;52013:1;;52061:4;;52092;;52116:15;;51898:248;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51568:590;51513:645;:::o;52170:565::-;52326:62;52343:4;52358:15;52376:11;52326:8;:62::i;:::-;52439:284;;-1:-1:-1;;;52439:284:0;;52515:4;52439:284;;;18115:34:1;18165:18;;;18158:34;;;52569:1:0;18208:18:1;;;18201:34;;;18251:18;;;18244:34;36336:6:0;18294:19:1;;;18287:44;52693:15:0;18347:19:1;;;18340:35;52439:15:0;-1:-1:-1;;;;;52439:31:0;;;;52478:9;;18049:19:1;;52439:284:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;52170:565;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6779:128::-;6819:3;6850:1;6846:6;6843:1;6840:13;6837:39;;;6856:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6779:128::o;11365:184::-;11435:6;11488:2;11476:9;11467:7;11463:23;11459:32;11456:52;;;11504:1;11501;11494:12;11456:52;-1:-1:-1;11527:16:1;;11365:184;-1:-1:-1;11365:184:1:o;12362:401::-;12564:2;12546:21;;;12603:2;12583:18;;;12576:30;12642:34;12637:2;12622:18;;12615:62;-1:-1:-1;;;12708:2:1;12693:18;;12686:35;12753:3;12738:19;;12362:401::o;12768:399::-;12970:2;12952:21;;;13009:2;12989:18;;;12982:30;13048:34;13043:2;13028:18;;13021:62;-1:-1:-1;;;13114:2:1;13099:18;;13092:33;13157:3;13142:19;;12768:399::o;15198:125::-;15238:4;15266:1;15263;15260:8;15257:34;;;15271:18;;:::i;:::-;-1:-1:-1;15308:9:1;;15198:125::o;16401:127::-;16462:10;16457:3;16453:20;16450:1;16443:31;16493:4;16490:1;16483:15;16517:4;16514:1;16507:15;16533:251;16603:6;16656:2;16644:9;16635:7;16631:23;16627:32;16624:52;;;16672:1;16669;16662:12;16624:52;16704:9;16698:16;16723:31;16748:5;16723:31;:::i;16789:980::-;17051:4;17099:3;17088:9;17084:19;17130:6;17119:9;17112:25;17156:2;17194:6;17189:2;17178:9;17174:18;17167:34;17237:3;17232:2;17221:9;17217:18;17210:31;17261:6;17296;17290:13;17327:6;17319;17312:22;17365:3;17354:9;17350:19;17343:26;;17404:2;17396:6;17392:15;17378:29;;17425:1;17435:195;17449:6;17446:1;17443:13;17435:195;;;17514:13;;-1:-1:-1;;;;;17510:39:1;17498:52;;17605:15;;;;17570:12;;;;17546:1;17464:9;17435:195;;;-1:-1:-1;;;;;;;17686:32:1;;;;17681:2;17666:18;;17659:60;-1:-1:-1;;;17750:3:1;17735:19;17728:35;17647:3;16789:980;-1:-1:-1;;;16789:980:1:o;18386:306::-;18474:6;18482;18490;18543:2;18531:9;18522:7;18518:23;18514:32;18511:52;;;18559:1;18556;18549:12;18511:52;18588:9;18582:16;18572:26;;18638:2;18627:9;18623:18;18617:25;18607:35;;18682:2;18671:9;18667:18;18661:25;18651:35;;18386:306;;;;;:::o

Swarm Source

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