ETH Price: $3,278.57 (+0.84%)
Gas: 1 Gwei

Token

Proof of Pump (POP)
 

Overview

Max Total Supply

1,000,000,000,000 POP

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,699,729,999.99999964 POP

Value
$0.00
0x0505a2cdb6fe47627510fe1fa6eb3dca891a4d66
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:
proofofpump

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-11
*/

/**
 *
 * t.me/proofofpumpeth
 * https://www.proofofpump.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;
        }
    }
}

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

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

/* 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 proofofpump 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 devWallet;
    address public buybackWallet;
    address public lpWallet = deadAddress;

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

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

    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyBuybackFee;
    uint256 public buyTotalFees = buyLiquidityFee + buyDevFee + buyBuybackFee;

    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellBuybackFee;
    uint256 public sellTotalFees = sellLiquidityFee + sellDevFee + sellBuybackFee;

	uint256 public tokensForLiquidity;
    uint256 public tokensForBuyback;
    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Proof of Pump", "POP") {
        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 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 5;
        uint256 _buyBuybackFee = 4;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 5;
        uint256 _sellBuybackFee = 4;

        uint256 totalSupply = 1 * 1e12 * 1e18;

        maxTransactionAmount = 1 * 1e10 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 2 * 1e10 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyBuybackFee = _buyBuybackFee;
        buyTotalFees = buyLiquidityFee + buyDevFee + buyBuybackFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellBuybackFee = _sellBuybackFee;
        sellTotalFees = sellLiquidityFee + sellDevFee + sellBuybackFee;

        devWallet = address(0xFD5734e36d5225f83fD5F0BB9a6C6D08d1593c62); // set as dev wallet
        buybackWallet = address(0xe36D563Bdfe0b8Ce996480f99Af1d20C85677214); // set as buyback wallet

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

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

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

    receive() external payable {}

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

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

    // edit fees, cannot exceed 10%
    function setFees(uint256 newBuyLiquidityFee, uint256 newBuyDevFee, uint256 newBuyBuybackFee, uint256 newSellLiquidityFee, uint256 newSellDevFee, uint256 newSellBuybackFee) external onlyOwner {
        buyLiquidityFee = newBuyLiquidityFee;
        buyDevFee = newBuyDevFee;
        buyBuybackFee = newBuyBuybackFee;
        sellLiquidityFee = newSellLiquidityFee;
        sellDevFee = newSellDevFee;
        sellBuybackFee = newSellBuybackFee;

        require(buyLiquidityFee + buyDevFee + buyBuybackFee <= 10, "fee too high");
        require(sellLiquidityFee + sellDevFee + sellBuybackFee <=10, "fee too high");
    }

    // 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 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 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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForBuyback += (fees * sellBuybackFee) / sellTotalFees;               
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForBuyback += (fees * buyBuybackFee) / 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
            lpWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev + tokensForBuyback;
        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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForBuyback = ethBalance.mul(tokensForBuyback).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev - ethForBuyback;

        tokensForLiquidity = 0;
        tokensForDev = 0;
        tokensForBuyback = 0;

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"buyBuybackFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newBuyDevFee","type":"uint256"},{"internalType":"uint256","name":"newBuyBuybackFee","type":"uint256"},{"internalType":"uint256","name":"newSellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellBuybackFee","type":"uint256"}],"name":"setFees","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":"tokensForBuyback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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"}]

60c0604052600880546001600160a01b03191661dead179055600c805462ffffff19166001179055600f54600e54600d546200003c919062000807565b62000048919062000807565b60105560135460125460115462000060919062000807565b6200006c919062000807565b6014553480156200007c57600080fd5b506040518060400160405280600d81526020016c050726f6f66206f662050756d7609c1b815250604051806040016040528060038152602001620504f560ec1b8152508160039080519060200190620000d79291906200074b565b508051620000ed9060049060208401906200074b565b5050506200010a620001046200049860201b60201c565b6200049c565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200012c816001620004ee565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000177573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019d919062000822565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000211919062000822565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200025f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000285919062000822565b6001600160a01b031660a0819052620002a0906001620004ee565b60a051620002b090600162000568565b6b204fce5e3e250261100000006009556b409f9cbc7c4a04c220000000600b556001600560048282826c0c9f2c9cd04674edea40000000612710620002f782600a62000854565b62000303919062000876565b600a55600d879055600e869055600f8590558462000322878962000807565b6200032e919062000807565b601055601184905560128390556013829055816200034d848662000807565b62000359919062000807565b601455600680546001600160a01b031990811673fd5734e36d5225f83fd5f0bb9a6c6d08d1593c62179091556007805490911673e36d563bdfe0b8ce996480f99af1d20c85677214179055620003c3620003bb6005546001600160a01b031690565b6001620005bc565b620003d0306001620005bc565b620003df61dead6001620005bc565b600754620003f8906001600160a01b03166001620005bc565b60065462000411906001600160a01b03166001620005bc565b62000430620004286005546001600160a01b031690565b6001620004ee565b6200043d306001620004ee565b6200044c61dead6001620004ee565b60075462000465906001600160a01b03166001620004ee565b6006546200047e906001600160a01b03166001620004ee565b6200048a338262000666565b5050505050505050620008d6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200053d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002d5783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006075760405162461bcd60e51b8152602060048201819052602482015260008051602062002d57833981519152604482015260640162000534565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006be5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000534565b8060026000828254620006d2919062000807565b90915550506001600160a01b038216600090815260208190526040812080548392906200070190849062000807565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620007599062000899565b90600052602060002090601f0160209004810192826200077d5760008555620007c8565b82601f106200079857805160ff1916838001178555620007c8565b82800160010185558215620007c8579182015b82811115620007c8578251825591602001919060010190620007ab565b50620007d6929150620007da565b5090565b5b80821115620007d65760008155600101620007db565b634e487b7160e01b600052601160045260246000fd5b600082198211156200081d576200081d620007f1565b500190565b6000602082840312156200083557600080fd5b81516001600160a01b03811681146200084d57600080fd5b9392505050565b6000816000190483118215151615620008715762000871620007f1565b500290565b6000826200089457634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620008ae57607f821691505b60208210811415620008d057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161243162000926600039600081816104330152610cbe01526000818161034001528181611d7b01528181611e3401528181611e7001528181611ee20152611f4a01526124316000f3fe6080604052600436106102975760003560e01c80638da5cb5b1161015a578063c0246668116100c1578063deab8aea1161007a578063deab8aea1461080d578063e2f456051461082d578063f11a24d314610843578063f2fde38b14610859578063f637434214610879578063f8b45b051461088f57600080fd5b8063c024666814610745578063c8c8ebe414610765578063d257b34f1461077b578063d4090d2a1461079b578063d85ba063146107b1578063dd62ed3e146107c757600080fd5b80639fccce32116101135780639fccce321461068a578063a0d82dc5146106a0578063a457c2d7146106b6578063a9059cbb146106d6578063b62496f5146106f6578063bbc0c7421461072657600080fd5b80638da5cb5b146105e15780638ea5220f146105ff578063924de9b71461061f57806395d89b411461063f5780639a7a23d6146106545780639c3b4fdc1461067457600080fd5b80634fbee193116101fe578063715018a6116101b7578063715018a61461054a57806371a5152214610561578063751039fc146105775780637571336a1461058c57806386f6c3c1146105ac5780638a8c523c146105cc57600080fd5b80634fbee1931461046f578063540ba552146104a85780636303516c146104be5780636a486a8e146104de5780636ddd1713146104f457806370a082311461051457600080fd5b806323b872dd1161025057806323b872dd146103af57806327c8f835146103cf578063313ce567146103e5578063395093511461040157806349bd5a5e146104215780634a62bb651461045557600080fd5b806306fdde03146102a3578063095ea7b3146102ce57806310d5de53146102fe5780631694505e1461032e57806318160ddd1461037a5780631a8145bb1461039957600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b86108a5565b6040516102c59190611fc2565b60405180910390f35b3480156102da57600080fd5b506102ee6102e936600461202c565b610937565b60405190151581526020016102c5565b34801561030a57600080fd5b506102ee610319366004612058565b60196020526000908152604090205460ff1681565b34801561033a57600080fd5b506103627f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c5565b34801561038657600080fd5b506002545b6040519081526020016102c5565b3480156103a557600080fd5b5061038b60155481565b3480156103bb57600080fd5b506102ee6103ca366004612075565b61094d565b3480156103db57600080fd5b5061036261dead81565b3480156103f157600080fd5b50604051601281526020016102c5565b34801561040d57600080fd5b506102ee61041c36600461202c565b6109fc565b34801561042d57600080fd5b506103627f000000000000000000000000000000000000000000000000000000000000000081565b34801561046157600080fd5b50600c546102ee9060ff1681565b34801561047b57600080fd5b506102ee61048a366004612058565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104b457600080fd5b5061038b600f5481565b3480156104ca57600080fd5b50600854610362906001600160a01b031681565b3480156104ea57600080fd5b5061038b60145481565b34801561050057600080fd5b50600c546102ee9062010000900460ff1681565b34801561052057600080fd5b5061038b61052f366004612058565b6001600160a01b031660009081526020819052604090205490565b34801561055657600080fd5b5061055f610a38565b005b34801561056d57600080fd5b5061038b60135481565b34801561058357600080fd5b506102ee610a6e565b34801561059857600080fd5b5061055f6105a73660046120c6565b610aab565b3480156105b857600080fd5b5061055f6105c73660046120fb565b610b00565b3480156105d857600080fd5b5061055f610c00565b3480156105ed57600080fd5b506005546001600160a01b0316610362565b34801561060b57600080fd5b50600654610362906001600160a01b031681565b34801561062b57600080fd5b5061055f61063a36600461213e565b610c3d565b34801561064b57600080fd5b506102b8610c83565b34801561066057600080fd5b5061055f61066f3660046120c6565b610c92565b34801561068057600080fd5b5061038b600e5481565b34801561069657600080fd5b5061038b60175481565b3480156106ac57600080fd5b5061038b60125481565b3480156106c257600080fd5b506102ee6106d136600461202c565b610d72565b3480156106e257600080fd5b506102ee6106f136600461202c565b610e0b565b34801561070257600080fd5b506102ee610711366004612058565b601a6020526000908152604090205460ff1681565b34801561073257600080fd5b50600c546102ee90610100900460ff1681565b34801561075157600080fd5b5061055f6107603660046120c6565b610e18565b34801561077157600080fd5b5061038b60095481565b34801561078757600080fd5b506102ee610796366004612159565b610ea1565b3480156107a757600080fd5b5061038b60165481565b3480156107bd57600080fd5b5061038b60105481565b3480156107d357600080fd5b5061038b6107e2366004612172565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081957600080fd5b50600754610362906001600160a01b031681565b34801561083957600080fd5b5061038b600a5481565b34801561084f57600080fd5b5061038b600d5481565b34801561086557600080fd5b5061055f610874366004612058565b610ff8565b34801561088557600080fd5b5061038b60115481565b34801561089b57600080fd5b5061038b600b5481565b6060600380546108b4906121ab565b80601f01602080910402602001604051908101604052809291908181526020018280546108e0906121ab565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000610944338484611093565b50600192915050565b600061095a8484846111b7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109f18533858403611093565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610944918590610a339086906121fc565b611093565b6005546001600160a01b03163314610a625760405162461bcd60e51b81526004016109db90612214565b610a6c60006118c4565b565b6005546000906001600160a01b03163314610a9b5760405162461bcd60e51b81526004016109db90612214565b50600c805460ff19169055600190565b6005546001600160a01b03163314610ad55760405162461bcd60e51b81526004016109db90612214565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b2a5760405162461bcd60e51b81526004016109db90612214565b600d869055600e859055600f849055601183905560128290556013819055600a84610b5587896121fc565b610b5f91906121fc565b1115610b9c5760405162461bcd60e51b815260206004820152600c60248201526b0cccaca40e8dede40d0d2ced60a31b60448201526064016109db565b600a601354601254601154610bb191906121fc565b610bbb91906121fc565b1115610bf85760405162461bcd60e51b815260206004820152600c60248201526b0cccaca40e8dede40d0d2ced60a31b60448201526064016109db565b505050505050565b6005546001600160a01b03163314610c2a5760405162461bcd60e51b81526004016109db90612214565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610c675760405162461bcd60e51b81526004016109db90612214565b600c8054911515620100000262ff000019909216919091179055565b6060600480546108b4906121ab565b6005546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016109db90612214565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d645760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109db565b610d6e8282611916565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610df45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109db565b610e013385858403611093565b5060019392505050565b60006109443384846111b7565b6005546001600160a01b03163314610e425760405162461bcd60e51b81526004016109db90612214565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610ece5760405162461bcd60e51b81526004016109db90612214565b620186a0610edb60025490565b610ee6906001612249565b610ef09190612268565b821015610f5d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109db565b6103e8610f6960025490565b610f74906005612249565b610f7e9190612268565b821115610fea5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109db565b50600a81905560015b919050565b6005546001600160a01b031633146110225760405162461bcd60e51b81526004016109db90612214565b6001600160a01b0381166110875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109db565b611090816118c4565b50565b6001600160a01b0383166110f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109db565b6001600160a01b0382166111565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109db565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111dd5760405162461bcd60e51b81526004016109db9061228a565b6001600160a01b0382166112035760405162461bcd60e51b81526004016109db906122cf565b80611219576112148383600061196a565b505050565b600c5460ff161561158f576005546001600160a01b0384811691161480159061125057506005546001600160a01b03838116911614155b801561126457506001600160a01b03821615155b801561127b57506001600160a01b03821661dead14155b80156112915750600554600160a01b900460ff16155b1561158f57600c54610100900460ff16611329576001600160a01b03831660009081526018602052604090205460ff16806112e457506001600160a01b03821660009081526018602052604090205460ff165b6113295760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109db565b6001600160a01b0383166000908152601a602052604090205460ff16801561136a57506001600160a01b03821660009081526019602052604090205460ff16155b1561144e576009548111156113df5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109db565b600b546001600160a01b03831660009081526020819052604090205461140590836121fc565b11156114495760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109db565b61158f565b6001600160a01b0382166000908152601a602052604090205460ff16801561148f57506001600160a01b03831660009081526019602052604090205460ff16155b15611505576009548111156114495760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109db565b6001600160a01b03821660009081526019602052604090205460ff1661158f57600b546001600160a01b03831660009081526020819052604090205461154b90836121fc565b111561158f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109db565b30600090815260208190526040902054600a54811080159081906115bb5750600c5462010000900460ff165b80156115d15750600554600160a01b900460ff16155b80156115f657506001600160a01b0385166000908152601a602052604090205460ff16155b801561161b57506001600160a01b03851660009081526018602052604090205460ff16155b801561164057506001600160a01b03841660009081526018602052604090205460ff16155b1561166e576005805460ff60a01b1916600160a01b179055611660611abf565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806116bc57506001600160a01b03851660009081526018602052604090205460ff165b156116c5575060005b600081156118b0576001600160a01b0386166000908152601a602052604090205460ff1680156116f757506000601454115b156117b55761171c606461171660145488611cf990919063ffffffff16565b90611d0c565b90506014546011548261172f9190612249565b6117399190612268565b6015600082825461174a91906121fc565b909155505060145460125461175f9083612249565b6117699190612268565b6017600082825461177a91906121fc565b909155505060145460135461178f9083612249565b6117999190612268565b601660008282546117aa91906121fc565b909155506118929050565b6001600160a01b0387166000908152601a602052604090205460ff1680156117df57506000601054115b15611892576117fe606461171660105488611cf990919063ffffffff16565b9050601054600d54826118119190612249565b61181b9190612268565b6015600082825461182c91906121fc565b9091555050601054600e546118419083612249565b61184b9190612268565b6017600082825461185c91906121fc565b9091555050601054600f546118719083612249565b61187b9190612268565b6016600082825461188c91906121fc565b90915550505b80156118a3576118a387308361196a565b6118ad8186612312565b94505b6118bb87878761196a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119905760405162461bcd60e51b81526004016109db9061228a565b6001600160a01b0382166119b65760405162461bcd60e51b81526004016109db906122cf565b6001600160a01b03831660009081526020819052604090205481811015611a2e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109db565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a659084906121fc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601654601754601554611ae691906121fc565b611af091906121fc565b90506000821580611aff575081155b15611b0957505050565b600a54611b17906014612249565b831115611b2f57600a54611b2c906014612249565b92505b600060028360155486611b429190612249565b611b4c9190612268565b611b569190612268565b90506000611b648583611d18565b905047611b7082611d24565b6000611b7c4783611d18565b90506000611b998761171660175485611cf990919063ffffffff16565b90506000611bb68861171660165486611cf990919063ffffffff16565b9050600081611bc58486612312565b611bcf9190612312565b60006015819055601781905560168190556006546040519293506001600160a01b031691859181818185875af1925050503d8060008114611c2c576040519150601f19603f3d011682016040523d82523d6000602084013e611c31565b606091505b50909850508615801590611c455750600081115b15611c9857611c548782611edc565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ce5576040519150601f19603f3d011682016040523d82523d6000602084013e611cea565b606091505b50505050505050505050505050565b6000611d058284612249565b9392505050565b6000611d058284612268565b6000611d058284612312565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d5957611d59612329565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfb919061233f565b81600181518110611e0e57611e0e612329565b60200260200101906001600160a01b031690816001600160a01b031681525050611e59307f000000000000000000000000000000000000000000000000000000000000000084611093565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611eae90859060009086903090429060040161235c565b600060405180830381600087803b158015611ec857600080fd5b505af1158015610bf8573d6000803e3d6000fd5b611f07307f000000000000000000000000000000000000000000000000000000000000000084611093565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611f96573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611fbb91906123cd565b5050505050565b600060208083528351808285015260005b81811015611fef57858101830151858201604001528201611fd3565b81811115612001576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461109057600080fd5b6000806040838503121561203f57600080fd5b823561204a81612017565b946020939093013593505050565b60006020828403121561206a57600080fd5b8135611d0581612017565b60008060006060848603121561208a57600080fd5b833561209581612017565b925060208401356120a581612017565b929592945050506040919091013590565b80358015158114610ff357600080fd5b600080604083850312156120d957600080fd5b82356120e481612017565b91506120f2602084016120b6565b90509250929050565b60008060008060008060c0878903121561211457600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60006020828403121561215057600080fd5b611d05826120b6565b60006020828403121561216b57600080fd5b5035919050565b6000806040838503121561218557600080fd5b823561219081612017565b915060208301356121a081612017565b809150509250929050565b600181811c908216806121bf57607f821691505b602082108114156121e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561220f5761220f6121e6565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615612263576122636121e6565b500290565b60008261228557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612324576123246121e6565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561235157600080fd5b8151611d0581612017565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ac5784516001600160a01b031683529383019391830191600101612387565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156123e257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ac774d57b66871dfd2865d1543714e8f24da2f69df3b05fa4804b8890ac6125864736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102975760003560e01c80638da5cb5b1161015a578063c0246668116100c1578063deab8aea1161007a578063deab8aea1461080d578063e2f456051461082d578063f11a24d314610843578063f2fde38b14610859578063f637434214610879578063f8b45b051461088f57600080fd5b8063c024666814610745578063c8c8ebe414610765578063d257b34f1461077b578063d4090d2a1461079b578063d85ba063146107b1578063dd62ed3e146107c757600080fd5b80639fccce32116101135780639fccce321461068a578063a0d82dc5146106a0578063a457c2d7146106b6578063a9059cbb146106d6578063b62496f5146106f6578063bbc0c7421461072657600080fd5b80638da5cb5b146105e15780638ea5220f146105ff578063924de9b71461061f57806395d89b411461063f5780639a7a23d6146106545780639c3b4fdc1461067457600080fd5b80634fbee193116101fe578063715018a6116101b7578063715018a61461054a57806371a5152214610561578063751039fc146105775780637571336a1461058c57806386f6c3c1146105ac5780638a8c523c146105cc57600080fd5b80634fbee1931461046f578063540ba552146104a85780636303516c146104be5780636a486a8e146104de5780636ddd1713146104f457806370a082311461051457600080fd5b806323b872dd1161025057806323b872dd146103af57806327c8f835146103cf578063313ce567146103e5578063395093511461040157806349bd5a5e146104215780634a62bb651461045557600080fd5b806306fdde03146102a3578063095ea7b3146102ce57806310d5de53146102fe5780631694505e1461032e57806318160ddd1461037a5780631a8145bb1461039957600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b86108a5565b6040516102c59190611fc2565b60405180910390f35b3480156102da57600080fd5b506102ee6102e936600461202c565b610937565b60405190151581526020016102c5565b34801561030a57600080fd5b506102ee610319366004612058565b60196020526000908152604090205460ff1681565b34801561033a57600080fd5b506103627f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c5565b34801561038657600080fd5b506002545b6040519081526020016102c5565b3480156103a557600080fd5b5061038b60155481565b3480156103bb57600080fd5b506102ee6103ca366004612075565b61094d565b3480156103db57600080fd5b5061036261dead81565b3480156103f157600080fd5b50604051601281526020016102c5565b34801561040d57600080fd5b506102ee61041c36600461202c565b6109fc565b34801561042d57600080fd5b506103627f0000000000000000000000002eb873f01b223fb7574fb64f695dace40a1e174681565b34801561046157600080fd5b50600c546102ee9060ff1681565b34801561047b57600080fd5b506102ee61048a366004612058565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104b457600080fd5b5061038b600f5481565b3480156104ca57600080fd5b50600854610362906001600160a01b031681565b3480156104ea57600080fd5b5061038b60145481565b34801561050057600080fd5b50600c546102ee9062010000900460ff1681565b34801561052057600080fd5b5061038b61052f366004612058565b6001600160a01b031660009081526020819052604090205490565b34801561055657600080fd5b5061055f610a38565b005b34801561056d57600080fd5b5061038b60135481565b34801561058357600080fd5b506102ee610a6e565b34801561059857600080fd5b5061055f6105a73660046120c6565b610aab565b3480156105b857600080fd5b5061055f6105c73660046120fb565b610b00565b3480156105d857600080fd5b5061055f610c00565b3480156105ed57600080fd5b506005546001600160a01b0316610362565b34801561060b57600080fd5b50600654610362906001600160a01b031681565b34801561062b57600080fd5b5061055f61063a36600461213e565b610c3d565b34801561064b57600080fd5b506102b8610c83565b34801561066057600080fd5b5061055f61066f3660046120c6565b610c92565b34801561068057600080fd5b5061038b600e5481565b34801561069657600080fd5b5061038b60175481565b3480156106ac57600080fd5b5061038b60125481565b3480156106c257600080fd5b506102ee6106d136600461202c565b610d72565b3480156106e257600080fd5b506102ee6106f136600461202c565b610e0b565b34801561070257600080fd5b506102ee610711366004612058565b601a6020526000908152604090205460ff1681565b34801561073257600080fd5b50600c546102ee90610100900460ff1681565b34801561075157600080fd5b5061055f6107603660046120c6565b610e18565b34801561077157600080fd5b5061038b60095481565b34801561078757600080fd5b506102ee610796366004612159565b610ea1565b3480156107a757600080fd5b5061038b60165481565b3480156107bd57600080fd5b5061038b60105481565b3480156107d357600080fd5b5061038b6107e2366004612172565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081957600080fd5b50600754610362906001600160a01b031681565b34801561083957600080fd5b5061038b600a5481565b34801561084f57600080fd5b5061038b600d5481565b34801561086557600080fd5b5061055f610874366004612058565b610ff8565b34801561088557600080fd5b5061038b60115481565b34801561089b57600080fd5b5061038b600b5481565b6060600380546108b4906121ab565b80601f01602080910402602001604051908101604052809291908181526020018280546108e0906121ab565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000610944338484611093565b50600192915050565b600061095a8484846111b7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109f18533858403611093565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610944918590610a339086906121fc565b611093565b6005546001600160a01b03163314610a625760405162461bcd60e51b81526004016109db90612214565b610a6c60006118c4565b565b6005546000906001600160a01b03163314610a9b5760405162461bcd60e51b81526004016109db90612214565b50600c805460ff19169055600190565b6005546001600160a01b03163314610ad55760405162461bcd60e51b81526004016109db90612214565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b2a5760405162461bcd60e51b81526004016109db90612214565b600d869055600e859055600f849055601183905560128290556013819055600a84610b5587896121fc565b610b5f91906121fc565b1115610b9c5760405162461bcd60e51b815260206004820152600c60248201526b0cccaca40e8dede40d0d2ced60a31b60448201526064016109db565b600a601354601254601154610bb191906121fc565b610bbb91906121fc565b1115610bf85760405162461bcd60e51b815260206004820152600c60248201526b0cccaca40e8dede40d0d2ced60a31b60448201526064016109db565b505050505050565b6005546001600160a01b03163314610c2a5760405162461bcd60e51b81526004016109db90612214565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610c675760405162461bcd60e51b81526004016109db90612214565b600c8054911515620100000262ff000019909216919091179055565b6060600480546108b4906121ab565b6005546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016109db90612214565b7f0000000000000000000000002eb873f01b223fb7574fb64f695dace40a1e17466001600160a01b0316826001600160a01b03161415610d645760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109db565b610d6e8282611916565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610df45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109db565b610e013385858403611093565b5060019392505050565b60006109443384846111b7565b6005546001600160a01b03163314610e425760405162461bcd60e51b81526004016109db90612214565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610ece5760405162461bcd60e51b81526004016109db90612214565b620186a0610edb60025490565b610ee6906001612249565b610ef09190612268565b821015610f5d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109db565b6103e8610f6960025490565b610f74906005612249565b610f7e9190612268565b821115610fea5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109db565b50600a81905560015b919050565b6005546001600160a01b031633146110225760405162461bcd60e51b81526004016109db90612214565b6001600160a01b0381166110875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109db565b611090816118c4565b50565b6001600160a01b0383166110f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109db565b6001600160a01b0382166111565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109db565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111dd5760405162461bcd60e51b81526004016109db9061228a565b6001600160a01b0382166112035760405162461bcd60e51b81526004016109db906122cf565b80611219576112148383600061196a565b505050565b600c5460ff161561158f576005546001600160a01b0384811691161480159061125057506005546001600160a01b03838116911614155b801561126457506001600160a01b03821615155b801561127b57506001600160a01b03821661dead14155b80156112915750600554600160a01b900460ff16155b1561158f57600c54610100900460ff16611329576001600160a01b03831660009081526018602052604090205460ff16806112e457506001600160a01b03821660009081526018602052604090205460ff165b6113295760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109db565b6001600160a01b0383166000908152601a602052604090205460ff16801561136a57506001600160a01b03821660009081526019602052604090205460ff16155b1561144e576009548111156113df5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109db565b600b546001600160a01b03831660009081526020819052604090205461140590836121fc565b11156114495760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109db565b61158f565b6001600160a01b0382166000908152601a602052604090205460ff16801561148f57506001600160a01b03831660009081526019602052604090205460ff16155b15611505576009548111156114495760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109db565b6001600160a01b03821660009081526019602052604090205460ff1661158f57600b546001600160a01b03831660009081526020819052604090205461154b90836121fc565b111561158f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109db565b30600090815260208190526040902054600a54811080159081906115bb5750600c5462010000900460ff165b80156115d15750600554600160a01b900460ff16155b80156115f657506001600160a01b0385166000908152601a602052604090205460ff16155b801561161b57506001600160a01b03851660009081526018602052604090205460ff16155b801561164057506001600160a01b03841660009081526018602052604090205460ff16155b1561166e576005805460ff60a01b1916600160a01b179055611660611abf565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806116bc57506001600160a01b03851660009081526018602052604090205460ff165b156116c5575060005b600081156118b0576001600160a01b0386166000908152601a602052604090205460ff1680156116f757506000601454115b156117b55761171c606461171660145488611cf990919063ffffffff16565b90611d0c565b90506014546011548261172f9190612249565b6117399190612268565b6015600082825461174a91906121fc565b909155505060145460125461175f9083612249565b6117699190612268565b6017600082825461177a91906121fc565b909155505060145460135461178f9083612249565b6117999190612268565b601660008282546117aa91906121fc565b909155506118929050565b6001600160a01b0387166000908152601a602052604090205460ff1680156117df57506000601054115b15611892576117fe606461171660105488611cf990919063ffffffff16565b9050601054600d54826118119190612249565b61181b9190612268565b6015600082825461182c91906121fc565b9091555050601054600e546118419083612249565b61184b9190612268565b6017600082825461185c91906121fc565b9091555050601054600f546118719083612249565b61187b9190612268565b6016600082825461188c91906121fc565b90915550505b80156118a3576118a387308361196a565b6118ad8186612312565b94505b6118bb87878761196a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119905760405162461bcd60e51b81526004016109db9061228a565b6001600160a01b0382166119b65760405162461bcd60e51b81526004016109db906122cf565b6001600160a01b03831660009081526020819052604090205481811015611a2e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109db565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a659084906121fc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601654601754601554611ae691906121fc565b611af091906121fc565b90506000821580611aff575081155b15611b0957505050565b600a54611b17906014612249565b831115611b2f57600a54611b2c906014612249565b92505b600060028360155486611b429190612249565b611b4c9190612268565b611b569190612268565b90506000611b648583611d18565b905047611b7082611d24565b6000611b7c4783611d18565b90506000611b998761171660175485611cf990919063ffffffff16565b90506000611bb68861171660165486611cf990919063ffffffff16565b9050600081611bc58486612312565b611bcf9190612312565b60006015819055601781905560168190556006546040519293506001600160a01b031691859181818185875af1925050503d8060008114611c2c576040519150601f19603f3d011682016040523d82523d6000602084013e611c31565b606091505b50909850508615801590611c455750600081115b15611c9857611c548782611edc565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ce5576040519150601f19603f3d011682016040523d82523d6000602084013e611cea565b606091505b50505050505050505050505050565b6000611d058284612249565b9392505050565b6000611d058284612268565b6000611d058284612312565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d5957611d59612329565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfb919061233f565b81600181518110611e0e57611e0e612329565b60200260200101906001600160a01b031690816001600160a01b031681525050611e59307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611093565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611eae90859060009086903090429060040161235c565b600060405180830381600087803b158015611ec857600080fd5b505af1158015610bf8573d6000803e3d6000fd5b611f07307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611093565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611f96573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611fbb91906123cd565b5050505050565b600060208083528351808285015260005b81811015611fef57858101830151858201604001528201611fd3565b81811115612001576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461109057600080fd5b6000806040838503121561203f57600080fd5b823561204a81612017565b946020939093013593505050565b60006020828403121561206a57600080fd5b8135611d0581612017565b60008060006060848603121561208a57600080fd5b833561209581612017565b925060208401356120a581612017565b929592945050506040919091013590565b80358015158114610ff357600080fd5b600080604083850312156120d957600080fd5b82356120e481612017565b91506120f2602084016120b6565b90509250929050565b60008060008060008060c0878903121561211457600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60006020828403121561215057600080fd5b611d05826120b6565b60006020828403121561216b57600080fd5b5035919050565b6000806040838503121561218557600080fd5b823561219081612017565b915060208301356121a081612017565b809150509250929050565b600181811c908216806121bf57607f821691505b602082108114156121e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561220f5761220f6121e6565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615612263576122636121e6565b500290565b60008261228557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612324576123246121e6565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561235157600080fd5b8151611d0581612017565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ac5784516001600160a01b031683529383019391830191600101612387565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156123e257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ac774d57b66871dfd2865d1543714e8f24da2f69df3b05fa4804b8890ac6125864736f6c634300080a0033

Deployed Bytecode Sourcemap

32704:13985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9632:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11799:169;;;;;;;;;;-1:-1:-1;11799:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11799:169:0;1072:187:1;33955:63:0;;;;;;;;;;-1:-1:-1;33955:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32785:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32785:51:0;1516:230:1;10752:108:0;;;;;;;;;;-1:-1:-1;10840:12:0;;10752:108;;;1897:25:1;;;1885:2;1870:18;10752:108:0;1751:177:1;33701:33:0;;;;;;;;;;;;;;;;12450:492;;;;;;;;;;-1:-1:-1;12450:492:0;;;;;:::i;:::-;;:::i;32888:53::-;;;;;;;;;;;;32934:6;32888:53;;10594:93;;;;;;;;;;-1:-1:-1;10594:93:0;;10677:2;2744:36:1;;2732:2;2717:18;10594:93:0;2602:184:1;13351:215:0;;;;;;;;;;-1:-1:-1;13351:215:0;;;;;:::i;:::-;;:::i;32843:38::-;;;;;;;;;;;;;;;33207:33;;;;;;;;;;-1:-1:-1;33207:33:0;;;;;;;;39845:126;;;;;;;;;;-1:-1:-1;39845:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39935:28:0;39911:4;39935:28;;;:19;:28;;;;;;;;;39845:126;33395:28;;;;;;;;;;;;;;;;33046:37;;;;;;;;;;-1:-1:-1;33046:37:0;;;;-1:-1:-1;;;;;33046:37:0;;;33618:77;;;;;;;;;;;;;;;;33287:31;;;;;;;;;;-1:-1:-1;33287:31:0;;;;;;;;;;;10923:127;;;;;;;;;;-1:-1:-1;10923:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11024:18:0;10997:7;11024:18;;;;;;;;;;;;10923:127;2867:103;;;;;;;;;;;;;:::i;:::-;;33582:29;;;;;;;;;;;;;;;;37405:121;;;;;;;;;;;;;:::i;38776:167::-;;;;;;;;;;-1:-1:-1;38776:167:0;;;;;:::i;:::-;;:::i;37571:629::-;;;;;;;;;;-1:-1:-1;37571:629:0;;;;;:::i;:::-;;:::i;37241:112::-;;;;;;;;;;;;;:::i;2216:87::-;;;;;;;;;;-1:-1:-1;2289:6:0;;-1:-1:-1;;;;;2289:6:0;2216:87;;32980:24;;;;;;;;;;-1:-1:-1;32980:24:0;;;;-1:-1:-1;;;;;32980:24:0;;;39039:100;;;;;;;;;;-1:-1:-1;39039:100:0;;;;;:::i;:::-;;:::i;9851:104::-;;;;;;;;;;;;;:::i;39337:304::-;;;;;;;;;;-1:-1:-1;39337:304:0;;;;;:::i;:::-;;:::i;33364:24::-;;;;;;;;;;;;;;;;33779:27;;;;;;;;;;;;;;;;33550:25;;;;;;;;;;;;;;;;14069:413;;;;;;;;;;-1:-1:-1;14069:413:0;;;;;:::i;:::-;;:::i;11263:175::-;;;;;;;;;;-1:-1:-1;11263:175:0;;;;;:::i;:::-;;:::i;34176:57::-;;;;;;;;;;-1:-1:-1;34176:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33247:33;;;;;;;;;;-1:-1:-1;33247:33:0;;;;;;;;;;;39147:182;;;;;;;;;;-1:-1:-1;39147:182:0;;;;;:::i;:::-;;:::i;33092:35::-;;;;;;;;;;;;;;;;38270:497;;;;;;;;;;-1:-1:-1;38270:497:0;;;;;:::i;:::-;;:::i;33741:31::-;;;;;;;;;;;;;;;;33430:73;;;;;;;;;;;;;;;;11501:151;;;;;;;;;;-1:-1:-1;11501:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11617:18:0;;;11590:7;11617:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11501:151;33011:28;;;;;;;;;;-1:-1:-1;33011:28:0;;;;-1:-1:-1;;;;;33011:28:0;;;33134:33;;;;;;;;;;;;;;;;33327:30;;;;;;;;;;;;;;;;3125:201;;;;;;;;;;-1:-1:-1;3125:201:0;;;;;:::i;:::-;;:::i;33512:31::-;;;;;;;;;;;;;;;;33174:24;;;;;;;;;;;;;;;;9632:100;9686:13;9719:5;9712:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9632:100;:::o;11799:169::-;11882:4;11899:39;969:10;11922:7;11931:6;11899:8;:39::i;:::-;-1:-1:-1;11956:4:0;11799:169;;;;:::o;12450:492::-;12590:4;12607:36;12617:6;12625:9;12636:6;12607:9;:36::i;:::-;-1:-1:-1;;;;;12683:19:0;;12656:24;12683:19;;;:11;:19;;;;;;;;969:10;12683:33;;;;;;;;12735:26;;;;12727:79;;;;-1:-1:-1;;;12727:79:0;;5154:2:1;12727:79:0;;;5136:21:1;5193:2;5173:18;;;5166:30;5232:34;5212:18;;;5205:62;-1:-1:-1;;;5283:18:1;;;5276:38;5331:19;;12727:79:0;;;;;;;;;12842:57;12851:6;969:10;12892:6;12873:16;:25;12842:8;:57::i;:::-;-1:-1:-1;12930:4:0;;12450:492;-1:-1:-1;;;;12450:492:0:o;13351:215::-;969:10;13439:4;13488:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13488:34:0;;;;;;;;;;13439:4;;13456:80;;13479:7;;13488:47;;13525:10;;13488:47;:::i;:::-;13456:8;:80::i;2867:103::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;2932:30:::1;2959:1;2932:18;:30::i;:::-;2867:103::o:0;37405:121::-;2289:6;;37457:4;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;-1:-1:-1;37474:14:0::1;:22:::0;;-1:-1:-1;;37474:22:0::1;::::0;;;37405:121;:::o;38776:167::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38889:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38889:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38776:167::o;37571:629::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;37773:15:::1;:36:::0;;;37820:9:::1;:24:::0;;;37855:13:::1;:32:::0;;;37898:16:::1;:38:::0;;;37947:10:::1;:26:::0;;;37984:14:::1;:34:::0;;;38086:2:::1;37871:16:::0;38039:27:::1;37832:12:::0;37791:18;38039:27:::1;:::i;:::-;:43;;;;:::i;:::-;:49;;38031:74;;;::::0;-1:-1:-1;;;38031:74:0;;6189:2:1;38031:74:0::1;::::0;::::1;6171:21:1::0;6228:2;6208:18;;;6201:30;-1:-1:-1;;;6247:18:1;;;6240:42;6299:18;;38031:74:0::1;5987:336:1::0;38031:74:0::1;38173:2;38156:14;;38143:10;;38124:16;;:29;;;;:::i;:::-;:46;;;;:::i;:::-;:51;;38116:76;;;::::0;-1:-1:-1;;;38116:76:0;;6189:2:1;38116:76:0::1;::::0;::::1;6171:21:1::0;6228:2;6208:18;;;6201:30;-1:-1:-1;;;6247:18:1;;;6240:42;6299:18;;38116:76:0::1;5987:336:1::0;38116:76:0::1;37571:629:::0;;;;;;:::o;37241:112::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;37296:13:::1;:20:::0;;-1:-1:-1;;37327:18:0;;;;;37241:112::o;39039:100::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;39110:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39110:21:0;;::::1;::::0;;;::::1;::::0;;39039:100::o;9851:104::-;9907:13;9940:7;9933:14;;;;;:::i;39337:304::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;39481:13:::1;-1:-1:-1::0;;;;;39473:21:0::1;:4;-1:-1:-1::0;;;;;39473:21:0::1;;;39451:128;;;::::0;-1:-1:-1;;;39451:128:0;;6530:2:1;39451:128:0::1;::::0;::::1;6512:21:1::0;6569:2;6549:18;;;6542:30;6608:34;6588:18;;;6581:62;6679:27;6659:18;;;6652:55;6724:19;;39451:128:0::1;6328:421:1::0;39451:128:0::1;39592:41;39621:4;39627:5;39592:28;:41::i;:::-;39337:304:::0;;:::o;14069:413::-;969:10;14162:4;14206:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14206:34:0;;;;;;;;;;14259:35;;;;14251:85;;;;-1:-1:-1;;;14251:85:0;;6956:2:1;14251:85:0;;;6938:21:1;6995:2;6975:18;;;6968:30;7034:34;7014:18;;;7007:62;-1:-1:-1;;;7085:18:1;;;7078:35;7130:19;;14251:85:0;6754:401:1;14251:85:0;14372:67;969:10;14395:7;14423:15;14404:16;:34;14372:8;:67::i;:::-;-1:-1:-1;14470:4:0;;14069:413;-1:-1:-1;;;14069:413:0:o;11263:175::-;11349:4;11366:42;969:10;11390:9;11401:6;11366:9;:42::i;39147:182::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39232:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39232:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39287:34;;1212:41:1;;;39287:34:0::1;::::0;1185:18:1;39287:34:0::1;;;;;;;39147:182:::0;;:::o;38270:497::-;2289:6;;38378:4;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;38457:6:::1;38436:13;10840:12:::0;;;10752:108;38436:13:::1;:17;::::0;38452:1:::1;38436:17;:::i;:::-;38435:28;;;;:::i;:::-;38422:9;:41;;38400:144;;;::::0;-1:-1:-1;;;38400:144:0;;7757:2:1;38400:144:0::1;::::0;::::1;7739:21:1::0;7796:2;7776:18;;;7769:30;7835:34;7815:18;;;7808:62;-1:-1:-1;;;7886:18:1;;;7879:51;7947:19;;38400:144:0::1;7555:417:1::0;38400:144:0::1;38612:4;38591:13;10840:12:::0;;;10752:108;38591:13:::1;:17;::::0;38607:1:::1;38591:17;:::i;:::-;38590:26;;;;:::i;:::-;38577:9;:39;;38555:141;;;::::0;-1:-1:-1;;;38555:141:0;;8179:2:1;38555:141:0::1;::::0;::::1;8161:21:1::0;8218:2;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;-1:-1:-1;;;8308:18:1;;;8301:50;8368:19;;38555:141:0::1;7977:416:1::0;38555:141:0::1;-1:-1:-1::0;38707:18:0::1;:30:::0;;;38755:4:::1;2507:1;38270:497:::0;;;:::o;3125:201::-;2289:6;;-1:-1:-1;;;;;2289:6:0;969:10;2436:23;2428:68;;;;-1:-1:-1;;;2428:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3214:22:0;::::1;3206:73;;;::::0;-1:-1:-1;;;3206:73:0;;8600:2:1;3206:73:0::1;::::0;::::1;8582:21:1::0;8639:2;8619:18;;;8612:30;8678:34;8658:18;;;8651:62;-1:-1:-1;;;8729:18:1;;;8722:36;8775:19;;3206:73:0::1;8398:402:1::0;3206:73:0::1;3290:28;3309:8;3290:18;:28::i;:::-;3125:201:::0;:::o;17753:380::-;-1:-1:-1;;;;;17889:19:0;;17881:68;;;;-1:-1:-1;;;17881:68:0;;9007:2:1;17881:68:0;;;8989:21:1;9046:2;9026:18;;;9019:30;9085:34;9065:18;;;9058:62;-1:-1:-1;;;9136:18:1;;;9129:34;9180:19;;17881:68:0;8805:400:1;17881:68:0;-1:-1:-1;;;;;17968:21:0;;17960:68;;;;-1:-1:-1;;;17960:68:0;;9412:2:1;17960:68:0;;;9394:21:1;9451:2;9431:18;;;9424:30;9490:34;9470:18;;;9463:62;-1:-1:-1;;;9541:18:1;;;9534:32;9583:19;;17960:68:0;9210:398:1;17960:68:0;-1:-1:-1;;;;;18041:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18093:32;;1897:25:1;;;18093:32:0;;1870:18:1;18093:32:0;;;;;;;17753:380;;;:::o;39979:3931::-;-1:-1:-1;;;;;40111:18:0;;40103:68;;;;-1:-1:-1;;;40103:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40190:16:0;;40182:64;;;;-1:-1:-1;;;40182:64:0;;;;;;;:::i;:::-;40263:11;40259:93;;40291:28;40307:4;40313:2;40317:1;40291:15;:28::i;:::-;39979:3931;;;:::o;40259:93::-;40368:14;;;;40364:1694;;;2289:6;;-1:-1:-1;;;;;40421:15:0;;;2289:6;;40421:15;;;;:49;;-1:-1:-1;2289:6:0;;-1:-1:-1;;;;;40457:13:0;;;2289:6;;40457:13;;40421:49;:86;;;;-1:-1:-1;;;;;;40491:16:0;;;;40421:86;:128;;;;-1:-1:-1;;;;;;40528:21:0;;40542:6;40528:21;;40421:128;:158;;;;-1:-1:-1;40571:8:0;;-1:-1:-1;;;40571:8:0;;;;40570:9;40421:158;40399:1648;;;40619:13;;;;;;;40614:223;;-1:-1:-1;;;;;40691:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40720:23:0;;;;;;:19;:23;;;;;;;;40691:52;40657:160;;;;-1:-1:-1;;;40657:160:0;;10625:2:1;40657:160:0;;;10607:21:1;10664:2;10644:18;;;10637:30;-1:-1:-1;;;10683:18:1;;;10676:52;10745:18;;40657:160:0;10423:346:1;40657:160:0;-1:-1:-1;;;;;40911:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40968:35:0;;;;;;:31;:35;;;;;;;;40967:36;40911:92;40885:1147;;;41090:20;;41080:6;:30;;41046:169;;;;-1:-1:-1;;;41046:169:0;;10976:2:1;41046:169:0;;;10958:21:1;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:1;;;11098:51;11166:19;;41046:169:0;10774:417:1;41046:169:0;41298:9;;-1:-1:-1;;;;;11024:18:0;;10997:7;11024:18;;;;;;;;;;;41272:22;;:6;:22;:::i;:::-;:35;;41238:140;;;;-1:-1:-1;;;41238:140:0;;11398:2:1;41238:140:0;;;11380:21:1;11437:2;11417:18;;;11410:30;-1:-1:-1;;;11456:18:1;;;11449:49;11515:18;;41238:140:0;11196:343:1;41238:140:0;40885:1147;;;-1:-1:-1;;;;;41476:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41531:37:0;;;;;;:31;:37;;;;;;;;41530:38;41476:92;41450:582;;;41655:20;;41645:6;:30;;41611:170;;;;-1:-1:-1;;;41611:170:0;;11746:2:1;41611:170:0;;;11728:21:1;11785:2;11765:18;;;11758:30;11824:34;11804:18;;;11797:62;-1:-1:-1;;;11875:18:1;;;11868:52;11937:19;;41611:170:0;11544:418:1;41450:582:0;-1:-1:-1;;;;;41812:35:0;;;;;;:31;:35;;;;;;;;41807:225;;41932:9;;-1:-1:-1;;;;;11024:18:0;;10997:7;11024:18;;;;;;;;;;;41906:22;;:6;:22;:::i;:::-;:35;;41872:140;;;;-1:-1:-1;;;41872:140:0;;11398:2:1;41872:140:0;;;11380:21:1;11437:2;11417:18;;;11410:30;-1:-1:-1;;;11456:18:1;;;11449:49;11515:18;;41872:140:0;11196:343:1;41872:140:0;42119:4;42070:28;11024:18;;;;;;;;;;;42177;;42153:42;;;;;;;42226:35;;-1:-1:-1;42250:11:0;;;;;;;42226:35;:61;;;;-1:-1:-1;42279:8:0;;-1:-1:-1;;;42279:8:0;;;;42278:9;42226:61;:110;;;;-1:-1:-1;;;;;;42305:31:0;;;;;;:25;:31;;;;;;;;42304:32;42226:110;:153;;;;-1:-1:-1;;;;;;42354:25:0;;;;;;:19;:25;;;;;;;;42353:26;42226:153;:194;;;;-1:-1:-1;;;;;;42397:23:0;;;;;;:19;:23;;;;;;;;42396:24;42226:194;42208:326;;;42447:8;:15;;-1:-1:-1;;;;42447:15:0;-1:-1:-1;;;42447:15:0;;;42479:10;:8;:10::i;:::-;42506:8;:16;;-1:-1:-1;;;;42506:16:0;;;42208:326;42562:8;;-1:-1:-1;;;;;42672:25:0;;42546:12;42672:25;;;:19;:25;;;;;;42562:8;-1:-1:-1;;;42562:8:0;;;;;42561:9;;42672:25;;:52;;-1:-1:-1;;;;;;42701:23:0;;;;;;:19;:23;;;;;;;;42672:52;42668:100;;;-1:-1:-1;42751:5:0;42668:100;42780:12;42885:7;42881:976;;;-1:-1:-1;;;;;42937:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42986:1;42970:13;;:17;42937:50;42933:775;;;43015:34;43045:3;43015:25;43026:13;;43015:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43008:41;;43118:13;;43098:16;;43091:4;:23;;;;:::i;:::-;43090:41;;;;:::i;:::-;43068:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43188:13:0;;43174:10;;43167:17;;:4;:17;:::i;:::-;43166:35;;;;:::i;:::-;43150:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43266:13:0;;43248:14;;43241:21;;:4;:21;:::i;:::-;43240:39;;;;:::i;:::-;43220:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;42933:775:0;;-1:-1:-1;42933:775:0;;-1:-1:-1;;;;;43356:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43406:1;43391:12;;:16;43356:51;43352:356;;;43435:33;43464:3;43435:24;43446:12;;43435:6;:10;;:24;;;;:::i;:33::-;43428:40;;43536:12;;43517:15;;43510:4;:22;;;;:::i;:::-;43509:39;;;;:::i;:::-;43487:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43604:12:0;;43591:9;;43584:16;;:4;:16;:::i;:::-;43583:33;;;;:::i;:::-;43567:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43680:12:0;;43663:13;;43656:20;;:4;:20;:::i;:::-;43655:37;;;;:::i;:::-;43635:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;43352:356:0;43728:8;;43724:91;;43757:42;43773:4;43787;43794;43757:15;:42::i;:::-;43831:14;43841:4;43831:14;;:::i;:::-;;;42881:976;43869:33;43885:4;43891:2;43895:6;43869:15;:33::i;:::-;40092:3818;;;;39979:3931;;;:::o;3486:191::-;3579:6;;;-1:-1:-1;;;;;3596:17:0;;;-1:-1:-1;;;;;;3596:17:0;;;;;;;3629:40;;3579:6;;;3596:17;3579:6;;3629:40;;3560:16;;3629:40;3549:128;3486:191;:::o;39649:188::-;-1:-1:-1;;;;;39732:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39732:39:0;;;;;;;;;;39789:40;;39732:39;;:31;39789:40;;;39649:188;;:::o;14972:733::-;-1:-1:-1;;;;;15112:20:0;;15104:70;;;;-1:-1:-1;;;15104:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15193:23:0;;15185:71;;;;-1:-1:-1;;;15185:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15353:17:0;;15329:21;15353:17;;;;;;;;;;;15389:23;;;;15381:74;;;;-1:-1:-1;;;15381:74:0;;12299:2:1;15381:74:0;;;12281:21:1;12338:2;12318:18;;;12311:30;12377:34;12357:18;;;12350:62;-1:-1:-1;;;12428:18:1;;;12421:36;12474:19;;15381:74:0;12097:402:1;15381:74:0;-1:-1:-1;;;;;15491:17:0;;;:9;:17;;;;;;;;;;;15511:22;;;15491:42;;15555:20;;;;;;;;:30;;15527:6;;15491:9;15555:30;;15527:6;;15555:30;:::i;:::-;;;;;;;;15620:9;-1:-1:-1;;;;;15603:35:0;15612:6;-1:-1:-1;;;;;15603:35:0;;15631:6;15603:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15603:35:0;;;;;;;;15093:612;14972:733;;;:::o;45037:1647::-;45120:4;45076:23;11024:18;;;;;;;;;;;45076:50;;45137:25;45201:16;;45186:12;;45165:18;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;45137:80;-1:-1:-1;45228:12:0;45257:20;;;:46;;-1:-1:-1;45281:22:0;;45257:46;45253:85;;;45320:7;;;45037:1647::o;45253:85::-;45372:18;;:23;;45393:2;45372:23;:::i;:::-;45354:15;:41;45350:115;;;45430:18;;:23;;45451:2;45430:23;:::i;:::-;45412:41;;45350:115;45526:23;45613:1;45593:17;45571:18;;45553:15;:36;;;;:::i;:::-;45552:58;;;;:::i;:::-;:62;;;;:::i;:::-;45526:88;-1:-1:-1;45625:26:0;45654:36;:15;45526:88;45654:19;:36::i;:::-;45625:65;-1:-1:-1;45731:21:0;45765:36;45625:65;45765:16;:36::i;:::-;45814:18;45835:44;:21;45861:17;45835:25;:44::i;:::-;45814:65;;45893:17;45913:51;45946:17;45913:28;45928:12;;45913:10;:14;;:28;;;;:::i;:51::-;45893:71;;45977:21;46001:55;46038:17;46001:32;46016:16;;46001:10;:14;;:32;;;;:::i;:55::-;45977:79;-1:-1:-1;46069:23:0;45977:79;46095:22;46108:9;46095:10;:22;:::i;:::-;:38;;;;:::i;:::-;46167:1;46146:18;:22;;;46179:12;:16;;;46206;:20;;;46261:9;;46253:45;;46069:64;;-1:-1:-1;;;;;;46261:9:0;;46284;;46253:45;46167:1;46253:45;46284:9;46261;46253:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46239:59:0;;-1:-1:-1;;46315:19:0;;;;;:42;;;46356:1;46338:15;:19;46315:42;46311:278;;;46374:46;46387:15;46404;46374:12;:46::i;:::-;46544:18;;46440:137;;;12916:25:1;;;12972:2;12957:18;;12950:34;;;13000:18;;;12993:34;;;;46440:137:0;;;;;;12904:2:1;46440:137:0;;;46311:278;46623:13;;46615:61;;-1:-1:-1;;;;;46623:13:0;;;;46650:21;;46615:61;;;;46650:21;46623:13;46615:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45037:1647:0:o;23206:98::-;23264:7;23291:5;23295:1;23291;:5;:::i;:::-;23284:12;23206:98;-1:-1:-1;;;23206:98:0:o;23605:::-;23663:7;23690:5;23694:1;23690;:5;:::i;22849:98::-;22907:7;22934:5;22938:1;22934;:5;:::i;43918:589::-;44068:16;;;44082:1;44068:16;;;;;;;;44044:21;;44068:16;;;;;;;;;;-1:-1:-1;44068:16:0;44044:40;;44113:4;44095;44100:1;44095:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44095:23:0;;;-1:-1:-1;;;;;44095:23:0;;;;;44139:15;-1:-1:-1;;;;;44139:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44129:4;44134:1;44129:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44129:32:0;;;-1:-1:-1;;;;;44129:32:0;;;;;44174:62;44191:4;44206:15;44224:11;44174:8;:62::i;:::-;44275:224;;-1:-1:-1;;;44275:224:0;;-1:-1:-1;;;;;44275:15:0;:66;;;;:224;;44356:11;;44382:1;;44426:4;;44453;;44473:15;;44275:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44515:514;44663:62;44680:4;44695:15;44713:11;44663:8;:62::i;:::-;44972:8;;44768:253;;-1:-1:-1;;;44768:253:0;;44840:4;44768:253;;;14884:34:1;14934:18;;;14927:34;;;44886:1:0;14977:18:1;;;14970:34;;;15020:18;;;15013:34;-1:-1:-1;;;;;44972:8:0;;;15063:19:1;;;15056:44;44995:15:0;15116:19:1;;;15109:35;44768:15:0;:31;;;;;;44807:9;;14818:19:1;;44768:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44515:514;;:::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:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:315;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3137:9;3124:23;3156:31;3181:5;3156:31;:::i;:::-;3206:5;-1:-1:-1;3230:35:1;3261:2;3246:18;;3230:35;:::i;:::-;3220:45;;2956:315;;;;;:::o;3276:523::-;3380:6;3388;3396;3404;3412;3420;3473:3;3461:9;3452:7;3448:23;3444:33;3441:53;;;3490:1;3487;3480:12;3441:53;-1:-1:-1;;3513:23:1;;;3583:2;3568:18;;3555:32;;-1:-1:-1;3634:2:1;3619:18;;3606:32;;3685:2;3670:18;;3657:32;;-1:-1:-1;3736:3:1;3721:19;;3708:33;;-1:-1:-1;3788:3:1;3773:19;3760:33;;-1:-1:-1;3276:523:1;-1:-1:-1;3276:523:1:o;3804:180::-;3860:6;3913:2;3901:9;3892:7;3888:23;3884:32;3881:52;;;3929:1;3926;3919:12;3881:52;3952:26;3968:9;3952:26;:::i;3989:180::-;4048:6;4101:2;4089:9;4080:7;4076:23;4072:32;4069:52;;;4117:1;4114;4107:12;4069:52;-1:-1:-1;4140:23:1;;3989:180;-1:-1:-1;3989:180:1:o;4174:388::-;4242:6;4250;4303:2;4291:9;4282:7;4278:23;4274:32;4271:52;;;4319:1;4316;4309:12;4271:52;4358:9;4345:23;4377:31;4402:5;4377:31;:::i;:::-;4427:5;-1:-1:-1;4484:2:1;4469:18;;4456:32;4497:33;4456:32;4497:33;:::i;:::-;4549:7;4539:17;;;4174:388;;;;;:::o;4567:380::-;4646:1;4642:12;;;;4689;;;4710:61;;4764:4;4756:6;4752:17;4742:27;;4710:61;4817:2;4809:6;4806:14;4786:18;4783:38;4780:161;;;4863:10;4858:3;4854:20;4851:1;4844:31;4898:4;4895:1;4888:15;4926:4;4923:1;4916:15;4780:161;;4567:380;;;:::o;5361:127::-;5422:10;5417:3;5413:20;5410:1;5403:31;5453:4;5450:1;5443:15;5477:4;5474:1;5467:15;5493:128;5533:3;5564:1;5560:6;5557:1;5554:13;5551:39;;;5570:18;;:::i;:::-;-1:-1:-1;5606:9:1;;5493:128::o;5626:356::-;5828:2;5810:21;;;5847:18;;;5840:30;5906:34;5901:2;5886:18;;5879:62;5973:2;5958:18;;5626:356::o;7160:168::-;7200:7;7266:1;7262;7258:6;7254:14;7251:1;7248:21;7243:1;7236:9;7229:17;7225:45;7222:71;;;7273:18;;:::i;:::-;-1:-1:-1;7313:9:1;;7160:168::o;7333:217::-;7373:1;7399;7389:132;;7443:10;7438:3;7434:20;7431:1;7424:31;7478:4;7475:1;7468:15;7506:4;7503:1;7496:15;7389:132;-1:-1:-1;7535:9:1;;7333:217::o;9613:401::-;9815:2;9797:21;;;9854:2;9834:18;;;9827:30;9893:34;9888:2;9873:18;;9866:62;-1:-1:-1;;;9959:2:1;9944:18;;9937:35;10004:3;9989:19;;9613:401::o;10019:399::-;10221:2;10203:21;;;10260:2;10240:18;;;10233:30;10299:34;10294:2;10279:18;;10272:62;-1:-1:-1;;;10365:2:1;10350:18;;10343:33;10408:3;10393:19;;10019:399::o;11967:125::-;12007:4;12035:1;12032;12029:8;12026:34;;;12040:18;;:::i;:::-;-1:-1:-1;12077:9:1;;11967:125::o;13170:127::-;13231:10;13226:3;13222:20;13219:1;13212:31;13262:4;13259:1;13252:15;13286:4;13283:1;13276:15;13302:251;13372:6;13425:2;13413:9;13404:7;13400:23;13396:32;13393:52;;;13441:1;13438;13431:12;13393:52;13473:9;13467:16;13492:31;13517:5;13492:31;:::i;13558:980::-;13820:4;13868:3;13857:9;13853:19;13899:6;13888:9;13881:25;13925:2;13963:6;13958:2;13947:9;13943:18;13936:34;14006:3;14001:2;13990:9;13986:18;13979:31;14030:6;14065;14059:13;14096:6;14088;14081:22;14134:3;14123:9;14119:19;14112:26;;14173:2;14165:6;14161:15;14147:29;;14194:1;14204:195;14218:6;14215:1;14212:13;14204:195;;;14283:13;;-1:-1:-1;;;;;14279:39:1;14267:52;;14374:15;;;;14339:12;;;;14315:1;14233:9;14204:195;;;-1:-1:-1;;;;;;;14455:32:1;;;;14450:2;14435:18;;14428:60;-1:-1:-1;;;14519:3:1;14504:19;14497:35;14416:3;13558:980;-1:-1:-1;;;13558:980:1:o;15155:306::-;15243:6;15251;15259;15312:2;15300:9;15291:7;15287:23;15283:32;15280:52;;;15328:1;15325;15318:12;15280:52;15357:9;15351:16;15341:26;;15407:2;15396:9;15392:18;15386:25;15376:35;;15451:2;15440:9;15436:18;15430:25;15420:35;;15155:306;;;;;:::o

Swarm Source

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