ETH Price: $3,350.07 (+0.06%)
Gas: 10 Gwei

Token

DiabloToken (DIABLO)
 

Overview

Max Total Supply

666,666,666 DIABLO

Holders

160

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.928271787448912148 DIABLO

Value
$0.00
0x1d4d86c6ba4b3f471cae03f3d01572738e530081
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:
DiabloToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

File 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

File 3 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
}

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 6 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 subtraction 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;
        }
    }
}

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 10 : DiabloToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';

contract DiabloToken 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 deployerAddress;
  address public ecoSystemWallet;
  address public strategicWallet;

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

  bool public swapEnabled = true;

  uint256 public buyTotalFees;
  uint256 public buyMarketingFee;
  uint256 public buyLiquidityFee;
  uint256 public buyBurnFee;

  uint256 public sellTotalFees;
  uint256 public sellMarketingFee;
  uint256 public sellLiquidityFee;
  uint256 public sellBurnFee;

  uint256 public tokensForMarketing;
  uint256 public tokensForLiquidity;
  uint256 public tokensForBurn;

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

  mapping(address => bool) private _isExcludedFromFees;
  mapping(address => bool) public _isExcludedMaxTransactionAmount;

  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 strategicWalletUpdated(address indexed newWallet, address indexed oldWallet);
  event ecosystemWalletUpdated(address indexed newWallet, address indexed oldWallet);
  event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

  event BuyBackTriggered(uint256 amount);

  constructor() ERC20('DiabloToken', 'DIABLO') {
    address newOwner = address(owner());

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

    uint256 _buyMarketingFee = 3;
    uint256 _buyLiquidityFee = 0;
    uint256 _buyBurnFee = 0;

    uint256 _sellMarketingFee = 3;
    uint256 _sellLiquidityFee = 0;
    uint256 _sellBurnFee = 0;

    uint256 totalSupply = 666666666 * 10 ** decimals();

    maxTransactionAmount = (totalSupply * 1) / 100; // 1% maxTransactionAmountTxn
    swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet
    maxWallet = (totalSupply * 1) / 100; // 1% max wallet

    buyMarketingFee = _buyMarketingFee;
    buyLiquidityFee = _buyLiquidityFee;
    buyBurnFee = _buyBurnFee;
    buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBurnFee;

    sellMarketingFee = _sellMarketingFee;
    sellLiquidityFee = _sellLiquidityFee;
    sellBurnFee = _sellBurnFee;
    sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBurnFee;

    deployerAddress = address(0x1001f784FBed1B19A4Bf56ae5C8f8fA2A111d993);
    strategicWallet = address(0x1fF6CEA679eA9651C120509F479b0804bdBa4745);
    ecoSystemWallet = address(0x8A57aca7f2d4554351821B72D8fE66BA7Ea3e774);

    excludeFromFees(newOwner, true); // Owner address
    excludeFromFees(address(this), true); // CA
    excludeFromFees(address(0xdead), true); // Burn address
    excludeFromFees(strategicWallet, true); // Marketing wallet
    excludeFromFees(ecoSystemWallet, true); // ecosystem wallet
    excludeFromFees(deployerAddress, true); // Deployer Address

    excludeFromMaxTransaction(newOwner, true); // Owner address
    excludeFromMaxTransaction(address(this), true); // CA
    excludeFromMaxTransaction(address(0xdead), true); // Burn address
    excludeFromMaxTransaction(strategicWallet, true); // Marketing wallet
    excludeFromMaxTransaction(ecoSystemWallet, true); // ecosystem wallet
    excludeFromMaxTransaction(deployerAddress, true); // Deployer Address

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

    transferOwnership(newOwner);
  }

  receive() external payable {}

  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 updateMaxAmount(uint256 newNum) external onlyOwner {
    require(newNum >= ((totalSupply() * 5) / 1000) / 1e9, 'Cannot set maxTransactionAmount lower than 0.5%');
    maxTransactionAmount = newNum * (10 ** 18);
  }

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

  function updateSwapEnabled(bool enabled) external onlyOwner {
    swapEnabled = enabled;
  }

  function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner {
    buyMarketingFee = _marketingFee;
    buyLiquidityFee = _liquidityFee;
    buyBurnFee = _burnFee;
    buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBurnFee;
    require(buyTotalFees <= 10, 'Must keep fees at 10% or less');
  }

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

  function removeLimits() external onlyOwner {
    maxTransactionAmount = totalSupply();
    maxWallet = totalSupply();
  }

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

  function excludeWalletsFromFees(address[] memory accounts, bool excluded) public onlyOwner {
    for (uint i = 0; i < accounts.length; i++) {
      excludeFromFees(accounts[i], 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 updateStrategicWallet(address newMarketingWallet) external onlyOwner {
    emit strategicWalletUpdated(newMarketingWallet, strategicWallet);
    strategicWallet = newMarketingWallet;
  }

  function updateEcosystemWallet(address newEcosystemWallet) external onlyOwner {
    emit ecosystemWalletUpdated(newEcosystemWallet, ecoSystemWallet);
    ecoSystemWallet = newEcosystemWallet;
  }

  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 (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
      //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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
      takeFee = false;
    }

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

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

      if (tokensForBurn > 0) {
        super._transfer(from, deadAddress, tokensForBurn);
        tokensForBurn = 0;
      }

      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,
      path,
      address(this),
      block.timestamp
    );
  }

  function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
    _approve(address(this), address(uniswapV2Router), tokenAmount);

    uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this), tokenAmount, 0, 0, deadAddress, block.timestamp);
  }

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

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

    uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
    uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

    uint256 initialETHBalance = address(this).balance;

    swapTokensForEth(amountToSwapForETH);

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

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

    uint256 ethForLiquidity = ethBalance - ethForMarketing;
    tokensForLiquidity = 0;
    tokensForMarketing = 0;

    (bool success, ) = address(ecoSystemWallet).call{value: ethForMarketing}('');
    if (liquidityTokens > 0 && ethForLiquidity > 0) {
      addLiquidity(liquidityTokens, ethForLiquidity);
      emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
    }

    (success, ) = address(ecoSystemWallet).call{value: address(this).balance}('');
  }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ecosystemWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"strategicWalletUpdated","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":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ecoSystemWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeWalletsFromFees","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":"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategicWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newEcosystemWallet","type":"address"}],"name":"updateEcosystemWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateStrategicWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600b81526020017f446961626c6f546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600681526020017f444941424c4f00000000000000000000000000000000000000000000000000008152508160039081620000aa919062000f01565b508060049081620000bc919062000f01565b505050620000df620000d36200072160201b60201c565b6200072960201b60201c565b6000620000f1620007ef60201b60201c565b90506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200011f8160016200081960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c5919062001052565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000253919062001052565b6040518363ffffffff1660e01b81526004016200027292919062001095565b6020604051808303816000875af115801562000292573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b8919062001052565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200030060a05160016200081960201b60201c565b6200031560a05160016200088460201b60201c565b6000600390506000806000600390506000806000620003396200092560201b60201c565b600a62000347919062001252565b6327bc86aa620003589190620012a3565b905060646001826200036b9190620012a3565b6200037791906200131d565b6009819055506127106005826200038f9190620012a3565b6200039b91906200131d565b600a819055506064600182620003b29190620012a3565b620003be91906200131d565b600b8190555086600e8190555085600f8190555084601081905550601054600f54600e54620003ee919062001355565b620003fa919062001355565b600d819055508360128190555082601381905550816014819055506014546013546012546200042a919062001355565b62000436919062001355565b601181905550731001f784fbed1b19a4bf56ae5c8f8fa2a111d993600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731ff6cea679ea9651c120509f479b0804bdba4745600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738a57aca7f2d4554351821b72d8fe66ba7ea3e774600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054e8960016200092e60201b60201c565b620005613060016200092e60201b60201c565b6200057661dead60016200092e60201b60201c565b620005ab600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200092e60201b60201c565b620005e0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200092e60201b60201c565b62000615600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200092e60201b60201c565b620006288960016200081960201b60201c565b6200063b3060016200081960201b60201c565b6200065061dead60016200081960201b60201c565b62000685600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200081960201b60201c565b620006ba600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200081960201b60201c565b620006ef600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200081960201b60201c565b620007018982620009e960201b60201c565b620007128962000b5660201b60201c565b50505050505050505062001585565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082962000bec60201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6200093e62000bec60201b60201c565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009dd9190620013ad565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a52906200142b565b60405180910390fd5b62000a6f6000838362000c7d60201b60201c565b806002600082825462000a83919062001355565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3691906200145e565b60405180910390a362000b526000838362000c8260201b60201c565b5050565b62000b6662000bec60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000bd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bcf90620014f1565b60405180910390fd5b62000be9816200072960201b60201c565b50565b62000bfc6200072160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c22620007ef60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c729062001563565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d0957607f821691505b60208210810362000d1f5762000d1e62000cc1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d4a565b62000d95868362000d4a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000de262000ddc62000dd68462000dad565b62000db7565b62000dad565b9050919050565b6000819050919050565b62000dfe8362000dc1565b62000e1662000e0d8262000de9565b84845462000d57565b825550505050565b600090565b62000e2d62000e1e565b62000e3a81848462000df3565b505050565b5b8181101562000e625762000e5660008262000e23565b60018101905062000e40565b5050565b601f82111562000eb15762000e7b8162000d25565b62000e868462000d3a565b8101602085101562000e96578190505b62000eae62000ea58562000d3a565b83018262000e3f565b50505b505050565b600082821c905092915050565b600062000ed66000198460080262000eb6565b1980831691505092915050565b600062000ef1838362000ec3565b9150826002028217905092915050565b62000f0c8262000c87565b67ffffffffffffffff81111562000f285762000f2762000c92565b5b62000f34825462000cf0565b62000f4182828562000e66565b600060209050601f83116001811462000f79576000841562000f64578287015190505b62000f70858262000ee3565b86555062000fe0565b601f19841662000f898662000d25565b60005b8281101562000fb35784890151825560018201915060208501945060208101905062000f8c565b8683101562000fd3578489015162000fcf601f89168262000ec3565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200101a8262000fed565b9050919050565b6200102c816200100d565b81146200103857600080fd5b50565b6000815190506200104c8162001021565b92915050565b6000602082840312156200106b576200106a62000fe8565b5b60006200107b848285016200103b565b91505092915050565b6200108f816200100d565b82525050565b6000604082019050620010ac600083018562001084565b620010bb602083018462001084565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200115057808604811115620011285762001127620010c2565b5b6001851615620011385780820291505b80810290506200114885620010f1565b945062001108565b94509492505050565b6000826200116b57600190506200123e565b816200117b57600090506200123e565b81600181146200119457600281146200119f57620011d5565b60019150506200123e565b60ff841115620011b457620011b3620010c2565b5b8360020a915084821115620011ce57620011cd620010c2565b5b506200123e565b5060208310610133831016604e8410600b84101617156200120f5782820a905083811115620012095762001208620010c2565b5b6200123e565b6200121e8484846001620010fe565b92509050818404811115620012385762001237620010c2565b5b81810290505b9392505050565b600060ff82169050919050565b60006200125f8262000dad565b91506200126c8362001245565b92506200129b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001159565b905092915050565b6000620012b08262000dad565b9150620012bd8362000dad565b9250828202620012cd8162000dad565b91508282048414831517620012e757620012e6620010c2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200132a8262000dad565b9150620013378362000dad565b9250826200134a5762001349620012ee565b5b828204905092915050565b6000620013628262000dad565b91506200136f8362000dad565b92508282019050808211156200138a5762001389620010c2565b5b92915050565b60008115159050919050565b620013a78162001390565b82525050565b6000602082019050620013c460008301846200139c565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001413601f83620013ca565b91506200142082620013db565b602082019050919050565b60006020820190508181036000830152620014468162001404565b9050919050565b620014588162000dad565b82525050565b60006020820190506200147560008301846200144d565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620014d9602683620013ca565b9150620014e6826200147b565b604082019050919050565b600060208201905081810360008301526200150c81620014ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200154b602083620013ca565b9150620015588262001513565b602082019050919050565b600060208201905081810360008301526200157e816200153c565b9050919050565b60805160a05161435a620015d560003960008181610e3a0152611158015260008181610d3501528181612be701528181612cc801528181612cef01528181612d8b0152612db2015261435a6000f3fe6080604052600436106102cd5760003560e01c80638da5cb5b11610175578063c8c8ebe4116100dc578063efdee94f11610095578063f2fde38b1161006f578063f2fde38b14610b1d578063f637434214610b46578063f8b45b0514610b71578063fda7859914610b9c576102d4565b8063efdee94f14610a9e578063f11a24d314610ac9578063f186a68c14610af4576102d4565b8063c8c8ebe414610978578063d257b34f146109a3578063d85ba063146109e0578063dd62ed3e14610a0b578063e2f4560514610a48578063e71dc3f514610a73576102d4565b8063a9059cbb1161012e578063a9059cbb14610858578063adb873bd14610895578063b62496f5146108c0578063bcd3a592146108fd578063c024666814610926578063c17b5b8c1461094f576102d4565b80638da5cb5b146107485780639213691314610773578063924de9b71461079e57806395d89b41146107c75780639a7a23d6146107f2578063a457c2d71461081b576102d4565b8063313ce5671161023457806370a08231116101ed5780637571336a116101c75780637571336a146106a05780637bce5a04146106c95780638095d564146106f45780638922e0211461071d576102d4565b806370a0823114610635578063715018a614610672578063751039fc14610689576102d4565b8063313ce5671461050f578063395093511461053a57806349bd5a5e146105775780634fbee193146105a25780636a486a8e146105df5780636ddd17131461060a576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631d777856146104285780631f3fed8f1461045357806323b872dd1461047e578063256c2cd1146104bb57806327c8f835146104e4576102d4565b806306fdde03146102d9578063095ea7b314610304578063106b5da11461034157806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc7565b6040516102fb9190612ef1565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190612fbb565b610c59565b6040516103389190613016565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613031565b610c7c565b005b34801561037657600080fd5b50610391600480360381019061038c919061305e565b610d13565b60405161039e9190613016565b60405180910390f35b3480156103b357600080fd5b506103bc610d33565b6040516103c991906130ea565b60405180910390f35b3480156103de57600080fd5b506103e7610d57565b6040516103f49190613114565b60405180910390f35b34801561040957600080fd5b50610412610d61565b60405161041f9190613114565b60405180910390f35b34801561043457600080fd5b5061043d610d67565b60405161044a9190613114565b60405180910390f35b34801561045f57600080fd5b50610468610d6d565b6040516104759190613114565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061312f565b610d73565b6040516104b29190613016565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906132f6565b610da2565b005b3480156104f057600080fd5b506104f9610df2565b6040516105069190613361565b60405180910390f35b34801561051b57600080fd5b50610524610df8565b6040516105319190613398565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190612fbb565b610e01565b60405161056e9190613016565b60405180910390f35b34801561058357600080fd5b5061058c610e38565b6040516105999190613361565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c4919061305e565b610e5c565b6040516105d69190613016565b60405180910390f35b3480156105eb57600080fd5b506105f4610eb2565b6040516106019190613114565b60405180910390f35b34801561061657600080fd5b5061061f610eb8565b60405161062c9190613016565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061305e565b610ecb565b6040516106699190613114565b60405180910390f35b34801561067e57600080fd5b50610687610f13565b005b34801561069557600080fd5b5061069e610f27565b005b3480156106ac57600080fd5b506106c760048036038101906106c291906133b3565b610f4d565b005b3480156106d557600080fd5b506106de610fb0565b6040516106eb9190613114565b60405180910390f35b34801561070057600080fd5b5061071b600480360381019061071691906133f3565b610fb6565b005b34801561072957600080fd5b50610732611041565b60405161073f9190613361565b60405180910390f35b34801561075457600080fd5b5061075d611067565b60405161076a9190613361565b60405180910390f35b34801561077f57600080fd5b50610788611091565b6040516107959190613114565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613446565b611097565b005b3480156107d357600080fd5b506107dc6110bc565b6040516107e99190612ef1565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906133b3565b61114e565b005b34801561082757600080fd5b50610842600480360381019061083d9190612fbb565b6111f2565b60405161084f9190613016565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fbb565b611269565b60405161088c9190613016565b60405180910390f35b3480156108a157600080fd5b506108aa61128c565b6040516108b79190613114565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e2919061305e565b611292565b6040516108f49190613016565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f919061305e565b6112b2565b005b34801561093257600080fd5b5061094d600480360381019061094891906133b3565b61137a565b005b34801561095b57600080fd5b50610976600480360381019061097191906133f3565b61142b565b005b34801561098457600080fd5b5061098d6114b6565b60405161099a9190613114565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613031565b6114bc565b6040516109d79190613016565b60405180910390f35b3480156109ec57600080fd5b506109f561159d565b604051610a029190613114565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d9190613473565b6115a3565b604051610a3f9190613114565b60405180910390f35b348015610a5457600080fd5b50610a5d61162a565b604051610a6a9190613114565b60405180910390f35b348015610a7f57600080fd5b50610a88611630565b604051610a959190613114565b60405180910390f35b348015610aaa57600080fd5b50610ab3611636565b604051610ac09190613361565b60405180910390f35b348015610ad557600080fd5b50610ade61165c565b604051610aeb9190613114565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b16919061305e565b611662565b005b348015610b2957600080fd5b50610b446004803603810190610b3f919061305e565b61172a565b005b348015610b5257600080fd5b50610b5b6117ad565b604051610b689190613114565b60405180910390f35b348015610b7d57600080fd5b50610b866117b3565b604051610b939190613114565b60405180910390f35b348015610ba857600080fd5b50610bb16117b9565b604051610bbe9190613361565b60405180910390f35b606060038054610bd6906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c02906134e2565b8015610c4f5780601f10610c2457610100808354040283529160200191610c4f565b820191906000526020600020905b815481529060010190602001808311610c3257829003601f168201915b5050505050905090565b600080610c646117df565b9050610c718185856117e7565b600191505092915050565b610c846119b0565b633b9aca006103e86005610c96610d57565b610ca09190613542565b610caa91906135b3565b610cb491906135b3565b811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613656565b60405180910390fd5b670de0b6b3a764000081610d0a9190613542565b60098190555050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60165481565b60175481565b60155481565b600080610d7e6117df565b9050610d8b858285611a2e565b610d96858585611aba565b60019150509392505050565b610daa6119b0565b60005b8251811015610ded57610dda838281518110610dcc57610dcb613676565b5b60200260200101518361137a565b8080610de5906136a5565b915050610dad565b505050565b61dead81565b60006012905090565b600080610e0c6117df565b9050610e2d818585610e1e85896115a3565b610e2891906136ed565b6117e7565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600c60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f1b6119b0565b610f2560006124ae565b565b610f2f6119b0565b610f37610d57565b600981905550610f45610d57565b600b81905550565b610f556119b0565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b610fbe6119b0565b82600e8190555081600f8190555080601081905550601054600f54600e54610fe691906136ed565b610ff091906136ed565b600d81905550600a600d54111561103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061376d565b60405180910390fd5b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b61109f6119b0565b80600c60006101000a81548160ff02191690831515021790555050565b6060600480546110cb906134e2565b80601f01602080910402602001604051908101604052809291908181526020018280546110f7906134e2565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b5050505050905090565b6111566119b0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906137ff565b60405180910390fd5b6111ee8282612574565b5050565b6000806111fd6117df565b9050600061120b82866115a3565b905083811015611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613891565b60405180910390fd5b61125d82868684036117e7565b60019250505092915050565b6000806112746117df565b9050611281818585611aba565b600191505092915050565b60145481565b601a6020528060005260406000206000915054906101000a900460ff1681565b6112ba6119b0565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f4b00aaba1522a4e9c64ce7a55655eb35a3ebbd2b2b41964de42e7fa225ae142260405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113826119b0565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161141f9190613016565b60405180910390a25050565b6114336119b0565b82601281905550816013819055508060148190555060145460135460125461145b91906136ed565b61146591906136ed565b601181905550606360115411156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906138fd565b60405180910390fd5b505050565b60095481565b60006114c66119b0565b620186a060016114d4610d57565b6114de9190613542565b6114e891906135b3565b82101561152a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115219061398f565b60405180910390fd5b6103e86005611537610d57565b6115419190613542565b61154b91906135b3565b82111561158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490613a21565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60105481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b61166a6119b0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167feaf2b6cae03e12ea86fcb92903b17a3164533f63c168010c6e8c3f0ca0dba82d60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117326119b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890613ab3565b60405180910390fd5b6117aa816124ae565b50565b60135481565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613bd7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119a39190613114565b60405180910390a3505050565b6119b86117df565b73ffffffffffffffffffffffffffffffffffffffff166119d6611067565b73ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390613c43565b60405180910390fd5b565b6000611a3a84846115a3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ab45781811015611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613caf565b60405180910390fd5b611ab384848484036117e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90613dd3565b60405180910390fd5b60008103611bb157611bac83836000612615565b6124a9565b611bb9611067565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c275750611bf7611067565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c605750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c9a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cb35750600560149054906101000a900460ff16155b15611fa157601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5b5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e0257600954811115611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90613e65565b60405180910390fd5b600b54611db183610ecb565b82611dbc91906136ed565b1115611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613ed1565b60405180910390fd5b611fa0565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ea55750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ef457600954811115611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690613f63565b60405180910390fd5b611f9f565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f9e57600b54611f5183610ecb565b82611f5c91906136ed565b1115611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613ed1565b60405180910390fd5b5b5b5b5b6000611fac30610ecb565b90506000600a548210159050808015611fd15750600c60009054906101000a900460ff165b8015611fea5750600560149054906101000a900460ff16155b80156120405750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120965750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ec5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612130576001600560146101000a81548160ff02191690831515021790555061211461288b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121e65750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121f057600090505b6000811561249957601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561225357506000601154115b1561232057612280606461227260115488612afc90919063ffffffff16565b612b1290919063ffffffff16565b9050601154601354826122939190613542565b61229d91906135b3565b601660008282546122ae91906136ed565b92505081905550601154601254826122c69190613542565b6122d091906135b3565b601560008282546122e191906136ed565b92505081905550601154601454826122f99190613542565b61230391906135b3565b6017600082825461231491906136ed565b92505081905550612445565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561237b57506000600d54115b15612444576123a8606461239a600d5488612afc90919063ffffffff16565b612b1290919063ffffffff16565b9050600d54600f54826123bb9190613542565b6123c591906135b3565b601660008282546123d691906136ed565b92505081905550600d54600e54826123ee9190613542565b6123f891906135b3565b6015600082825461240991906136ed565b92505081905550600d54601054826124219190613542565b61242b91906135b3565b6017600082825461243c91906136ed565b925050819055505b5b6000811115612467576124668730601754846124619190613f83565b612615565b5b6000601754111561248a576124818761dead601754612615565b60006017819055505b80856124969190613f83565b94505b6124a4878787612615565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b90613d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90613dd3565b60405180910390fd5b6126fe838383612b28565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b90614029565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128729190613114565b60405180910390a3612885848484612b2d565b50505050565b600061289630610ecb565b905060006015546016546128aa91906136ed565b905060008214806128bb5750600081145b156128c7575050612afa565b6000600282601654856128da9190613542565b6128e491906135b3565b6128ee91906135b3565b905060006129058285612b3290919063ffffffff16565b9050600047905061291582612b48565b600061292a8247612b3290919063ffffffff16565b905060006129558661294760155485612afc90919063ffffffff16565b612b1290919063ffffffff16565b9050600081836129659190613f83565b9050600060168190555060006015819055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516129bf9061407a565b60006040518083038185875af1925050503d80600081146129fc576040519150601f19603f3d011682016040523d82523d6000602084013e612a01565b606091505b50509050600087118015612a155750600082115b15612a6257612a248783612d85565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618683601654604051612a599392919061408f565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612aa89061407a565b60006040518083038185875af1925050503d8060008114612ae5576040519150601f19603f3d011682016040523d82523d6000602084013e612aea565b606091505b5050809150505050505050505050505b565b60008183612b0a9190613542565b905092915050565b60008183612b2091906135b3565b905092915050565b505050565b505050565b60008183612b409190613f83565b905092915050565b6000600267ffffffffffffffff811115612b6557612b64613187565b5b604051908082528060200260200182016040528015612b935781602001602082028036833780820191505090505b5090503081600081518110612bab57612baa613676565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7491906140db565b81600181518110612c8857612c87613676565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ced307f0000000000000000000000000000000000000000000000000000000000000000846117e7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612d4f959493929190614201565b600060405180830381600087803b158015612d6957600080fd5b505af1158015612d7d573d6000803e3d6000fd5b505050505050565b612db0307f0000000000000000000000000000000000000000000000000000000000000000846117e7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612e179695949392919061425b565b60606040518083038185885af1158015612e35573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e5a91906142d1565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e9b578082015181840152602081019050612e80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ec382612e61565b612ecd8185612e6c565b9350612edd818560208601612e7d565b612ee681612ea7565b840191505092915050565b60006020820190508181036000830152612f0b8184612eb8565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f5282612f27565b9050919050565b612f6281612f47565b8114612f6d57600080fd5b50565b600081359050612f7f81612f59565b92915050565b6000819050919050565b612f9881612f85565b8114612fa357600080fd5b50565b600081359050612fb581612f8f565b92915050565b60008060408385031215612fd257612fd1612f1d565b5b6000612fe085828601612f70565b9250506020612ff185828601612fa6565b9150509250929050565b60008115159050919050565b61301081612ffb565b82525050565b600060208201905061302b6000830184613007565b92915050565b60006020828403121561304757613046612f1d565b5b600061305584828501612fa6565b91505092915050565b60006020828403121561307457613073612f1d565b5b600061308284828501612f70565b91505092915050565b6000819050919050565b60006130b06130ab6130a684612f27565b61308b565b612f27565b9050919050565b60006130c282613095565b9050919050565b60006130d4826130b7565b9050919050565b6130e4816130c9565b82525050565b60006020820190506130ff60008301846130db565b92915050565b61310e81612f85565b82525050565b60006020820190506131296000830184613105565b92915050565b60008060006060848603121561314857613147612f1d565b5b600061315686828701612f70565b935050602061316786828701612f70565b925050604061317886828701612fa6565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131bf82612ea7565b810181811067ffffffffffffffff821117156131de576131dd613187565b5b80604052505050565b60006131f1612f13565b90506131fd82826131b6565b919050565b600067ffffffffffffffff82111561321d5761321c613187565b5b602082029050602081019050919050565b600080fd5b600061324661324184613202565b6131e7565b905080838252602082019050602084028301858111156132695761326861322e565b5b835b81811015613292578061327e8882612f70565b84526020840193505060208101905061326b565b5050509392505050565b600082601f8301126132b1576132b0613182565b5b81356132c1848260208601613233565b91505092915050565b6132d381612ffb565b81146132de57600080fd5b50565b6000813590506132f0816132ca565b92915050565b6000806040838503121561330d5761330c612f1d565b5b600083013567ffffffffffffffff81111561332b5761332a612f22565b5b6133378582860161329c565b9250506020613348858286016132e1565b9150509250929050565b61335b81612f47565b82525050565b60006020820190506133766000830184613352565b92915050565b600060ff82169050919050565b6133928161337c565b82525050565b60006020820190506133ad6000830184613389565b92915050565b600080604083850312156133ca576133c9612f1d565b5b60006133d885828601612f70565b92505060206133e9858286016132e1565b9150509250929050565b60008060006060848603121561340c5761340b612f1d565b5b600061341a86828701612fa6565b935050602061342b86828701612fa6565b925050604061343c86828701612fa6565b9150509250925092565b60006020828403121561345c5761345b612f1d565b5b600061346a848285016132e1565b91505092915050565b6000806040838503121561348a57613489612f1d565b5b600061349885828601612f70565b92505060206134a985828601612f70565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fa57607f821691505b60208210810361350d5761350c6134b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354d82612f85565b915061355883612f85565b925082820261356681612f85565b9150828204841483151761357d5761357c613513565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135be82612f85565b91506135c983612f85565b9250826135d9576135d8613584565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000613640602f83612e6c565b915061364b826135e4565b604082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136b082612f85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136e2576136e1613513565b5b600182019050919050565b60006136f882612f85565b915061370383612f85565b925082820190508082111561371b5761371a613513565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613757601d83612e6c565b915061376282613721565b602082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006137e9603983612e6c565b91506137f48261378d565b604082019050919050565b60006020820190508181036000830152613818816137dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061387b602583612e6c565b91506138868261381f565b604082019050919050565b600060208201905081810360008301526138aa8161386e565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006138e7601d83612e6c565b91506138f2826138b1565b602082019050919050565b60006020820190508181036000830152613916816138da565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613979603583612e6c565b91506139848261391d565b604082019050919050565b600060208201905081810360008301526139a88161396c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613a0b603483612e6c565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a9d602683612e6c565b9150613aa882613a41565b604082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b2f602483612e6c565b9150613b3a82613ad3565b604082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bc1602283612e6c565b9150613bcc82613b65565b604082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2d602083612e6c565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613c99601d83612e6c565b9150613ca482613c63565b602082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d2b602583612e6c565b9150613d3682613ccf565b604082019050919050565b60006020820190508181036000830152613d5a81613d1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dbd602383612e6c565b9150613dc882613d61565b604082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613e4f603583612e6c565b9150613e5a82613df3565b604082019050919050565b60006020820190508181036000830152613e7e81613e42565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613ebb601383612e6c565b9150613ec682613e85565b602082019050919050565b60006020820190508181036000830152613eea81613eae565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613f4d603683612e6c565b9150613f5882613ef1565b604082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b6000613f8e82612f85565b9150613f9983612f85565b9250828203905081811115613fb157613fb0613513565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614013602683612e6c565b915061401e82613fb7565b604082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b600081905092915050565b50565b6000614064600083614049565b915061406f82614054565b600082019050919050565b600061408582614057565b9150819050919050565b60006060820190506140a46000830186613105565b6140b16020830185613105565b6140be6040830184613105565b949350505050565b6000815190506140d581612f59565b92915050565b6000602082840312156140f1576140f0612f1d565b5b60006140ff848285016140c6565b91505092915050565b6000819050919050565b600061412d61412861412384614108565b61308b565b612f85565b9050919050565b61413d81614112565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61417881612f47565b82525050565b600061418a838361416f565b60208301905092915050565b6000602082019050919050565b60006141ae82614143565b6141b8818561414e565b93506141c38361415f565b8060005b838110156141f45781516141db888261417e565b97506141e683614196565b9250506001810190506141c7565b5085935050505092915050565b600060a0820190506142166000830188613105565b6142236020830187614134565b818103604083015261423581866141a3565b90506142446060830185613352565b6142516080830184613105565b9695505050505050565b600060c0820190506142706000830189613352565b61427d6020830188613105565b61428a6040830187614134565b6142976060830186614134565b6142a46080830185613352565b6142b160a0830184613105565b979650505050505050565b6000815190506142cb81612f8f565b92915050565b6000806000606084860312156142ea576142e9612f1d565b5b60006142f8868287016142bc565b9350506020614309868287016142bc565b925050604061431a868287016142bc565b915050925092509256fea26469706673582212207a479be6030688be40e53acb5ca3f84ad73ae0a0cf0111d53c02f45a5b3899ac64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638da5cb5b11610175578063c8c8ebe4116100dc578063efdee94f11610095578063f2fde38b1161006f578063f2fde38b14610b1d578063f637434214610b46578063f8b45b0514610b71578063fda7859914610b9c576102d4565b8063efdee94f14610a9e578063f11a24d314610ac9578063f186a68c14610af4576102d4565b8063c8c8ebe414610978578063d257b34f146109a3578063d85ba063146109e0578063dd62ed3e14610a0b578063e2f4560514610a48578063e71dc3f514610a73576102d4565b8063a9059cbb1161012e578063a9059cbb14610858578063adb873bd14610895578063b62496f5146108c0578063bcd3a592146108fd578063c024666814610926578063c17b5b8c1461094f576102d4565b80638da5cb5b146107485780639213691314610773578063924de9b71461079e57806395d89b41146107c75780639a7a23d6146107f2578063a457c2d71461081b576102d4565b8063313ce5671161023457806370a08231116101ed5780637571336a116101c75780637571336a146106a05780637bce5a04146106c95780638095d564146106f45780638922e0211461071d576102d4565b806370a0823114610635578063715018a614610672578063751039fc14610689576102d4565b8063313ce5671461050f578063395093511461053a57806349bd5a5e146105775780634fbee193146105a25780636a486a8e146105df5780636ddd17131461060a576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631d777856146104285780631f3fed8f1461045357806323b872dd1461047e578063256c2cd1146104bb57806327c8f835146104e4576102d4565b806306fdde03146102d9578063095ea7b314610304578063106b5da11461034157806310d5de531461036a5780631694505e146103a757806318160ddd146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc7565b6040516102fb9190612ef1565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190612fbb565b610c59565b6040516103389190613016565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613031565b610c7c565b005b34801561037657600080fd5b50610391600480360381019061038c919061305e565b610d13565b60405161039e9190613016565b60405180910390f35b3480156103b357600080fd5b506103bc610d33565b6040516103c991906130ea565b60405180910390f35b3480156103de57600080fd5b506103e7610d57565b6040516103f49190613114565b60405180910390f35b34801561040957600080fd5b50610412610d61565b60405161041f9190613114565b60405180910390f35b34801561043457600080fd5b5061043d610d67565b60405161044a9190613114565b60405180910390f35b34801561045f57600080fd5b50610468610d6d565b6040516104759190613114565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061312f565b610d73565b6040516104b29190613016565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906132f6565b610da2565b005b3480156104f057600080fd5b506104f9610df2565b6040516105069190613361565b60405180910390f35b34801561051b57600080fd5b50610524610df8565b6040516105319190613398565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190612fbb565b610e01565b60405161056e9190613016565b60405180910390f35b34801561058357600080fd5b5061058c610e38565b6040516105999190613361565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c4919061305e565b610e5c565b6040516105d69190613016565b60405180910390f35b3480156105eb57600080fd5b506105f4610eb2565b6040516106019190613114565b60405180910390f35b34801561061657600080fd5b5061061f610eb8565b60405161062c9190613016565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061305e565b610ecb565b6040516106699190613114565b60405180910390f35b34801561067e57600080fd5b50610687610f13565b005b34801561069557600080fd5b5061069e610f27565b005b3480156106ac57600080fd5b506106c760048036038101906106c291906133b3565b610f4d565b005b3480156106d557600080fd5b506106de610fb0565b6040516106eb9190613114565b60405180910390f35b34801561070057600080fd5b5061071b600480360381019061071691906133f3565b610fb6565b005b34801561072957600080fd5b50610732611041565b60405161073f9190613361565b60405180910390f35b34801561075457600080fd5b5061075d611067565b60405161076a9190613361565b60405180910390f35b34801561077f57600080fd5b50610788611091565b6040516107959190613114565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613446565b611097565b005b3480156107d357600080fd5b506107dc6110bc565b6040516107e99190612ef1565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906133b3565b61114e565b005b34801561082757600080fd5b50610842600480360381019061083d9190612fbb565b6111f2565b60405161084f9190613016565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fbb565b611269565b60405161088c9190613016565b60405180910390f35b3480156108a157600080fd5b506108aa61128c565b6040516108b79190613114565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e2919061305e565b611292565b6040516108f49190613016565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f919061305e565b6112b2565b005b34801561093257600080fd5b5061094d600480360381019061094891906133b3565b61137a565b005b34801561095b57600080fd5b50610976600480360381019061097191906133f3565b61142b565b005b34801561098457600080fd5b5061098d6114b6565b60405161099a9190613114565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613031565b6114bc565b6040516109d79190613016565b60405180910390f35b3480156109ec57600080fd5b506109f561159d565b604051610a029190613114565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d9190613473565b6115a3565b604051610a3f9190613114565b60405180910390f35b348015610a5457600080fd5b50610a5d61162a565b604051610a6a9190613114565b60405180910390f35b348015610a7f57600080fd5b50610a88611630565b604051610a959190613114565b60405180910390f35b348015610aaa57600080fd5b50610ab3611636565b604051610ac09190613361565b60405180910390f35b348015610ad557600080fd5b50610ade61165c565b604051610aeb9190613114565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b16919061305e565b611662565b005b348015610b2957600080fd5b50610b446004803603810190610b3f919061305e565b61172a565b005b348015610b5257600080fd5b50610b5b6117ad565b604051610b689190613114565b60405180910390f35b348015610b7d57600080fd5b50610b866117b3565b604051610b939190613114565b60405180910390f35b348015610ba857600080fd5b50610bb16117b9565b604051610bbe9190613361565b60405180910390f35b606060038054610bd6906134e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c02906134e2565b8015610c4f5780601f10610c2457610100808354040283529160200191610c4f565b820191906000526020600020905b815481529060010190602001808311610c3257829003601f168201915b5050505050905090565b600080610c646117df565b9050610c718185856117e7565b600191505092915050565b610c846119b0565b633b9aca006103e86005610c96610d57565b610ca09190613542565b610caa91906135b3565b610cb491906135b3565b811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613656565b60405180910390fd5b670de0b6b3a764000081610d0a9190613542565b60098190555050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60165481565b60175481565b60155481565b600080610d7e6117df565b9050610d8b858285611a2e565b610d96858585611aba565b60019150509392505050565b610daa6119b0565b60005b8251811015610ded57610dda838281518110610dcc57610dcb613676565b5b60200260200101518361137a565b8080610de5906136a5565b915050610dad565b505050565b61dead81565b60006012905090565b600080610e0c6117df565b9050610e2d818585610e1e85896115a3565b610e2891906136ed565b6117e7565b600191505092915050565b7f0000000000000000000000004bedb4c6f7e27d4f19a10ae03bc4addc94a3d3a081565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600c60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f1b6119b0565b610f2560006124ae565b565b610f2f6119b0565b610f37610d57565b600981905550610f45610d57565b600b81905550565b610f556119b0565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b610fbe6119b0565b82600e8190555081600f8190555080601081905550601054600f54600e54610fe691906136ed565b610ff091906136ed565b600d81905550600a600d54111561103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061376d565b60405180910390fd5b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b61109f6119b0565b80600c60006101000a81548160ff02191690831515021790555050565b6060600480546110cb906134e2565b80601f01602080910402602001604051908101604052809291908181526020018280546110f7906134e2565b80156111445780601f1061111957610100808354040283529160200191611144565b820191906000526020600020905b81548152906001019060200180831161112757829003601f168201915b5050505050905090565b6111566119b0565b7f0000000000000000000000004bedb4c6f7e27d4f19a10ae03bc4addc94a3d3a073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906137ff565b60405180910390fd5b6111ee8282612574565b5050565b6000806111fd6117df565b9050600061120b82866115a3565b905083811015611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613891565b60405180910390fd5b61125d82868684036117e7565b60019250505092915050565b6000806112746117df565b9050611281818585611aba565b600191505092915050565b60145481565b601a6020528060005260406000206000915054906101000a900460ff1681565b6112ba6119b0565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f4b00aaba1522a4e9c64ce7a55655eb35a3ebbd2b2b41964de42e7fa225ae142260405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113826119b0565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161141f9190613016565b60405180910390a25050565b6114336119b0565b82601281905550816013819055508060148190555060145460135460125461145b91906136ed565b61146591906136ed565b601181905550606360115411156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906138fd565b60405180910390fd5b505050565b60095481565b60006114c66119b0565b620186a060016114d4610d57565b6114de9190613542565b6114e891906135b3565b82101561152a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115219061398f565b60405180910390fd5b6103e86005611537610d57565b6115419190613542565b61154b91906135b3565b82111561158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490613a21565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60105481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b61166a6119b0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167feaf2b6cae03e12ea86fcb92903b17a3164533f63c168010c6e8c3f0ca0dba82d60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117326119b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179890613ab3565b60405180910390fd5b6117aa816124ae565b50565b60135481565b600b5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613bd7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119a39190613114565b60405180910390a3505050565b6119b86117df565b73ffffffffffffffffffffffffffffffffffffffff166119d6611067565b73ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390613c43565b60405180910390fd5b565b6000611a3a84846115a3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ab45781811015611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613caf565b60405180910390fd5b611ab384848484036117e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90613dd3565b60405180910390fd5b60008103611bb157611bac83836000612615565b6124a9565b611bb9611067565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c275750611bf7611067565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c605750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c9a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cb35750600560149054906101000a900460ff16155b15611fa157601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5b5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e0257600954811115611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90613e65565b60405180910390fd5b600b54611db183610ecb565b82611dbc91906136ed565b1115611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613ed1565b60405180910390fd5b611fa0565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ea55750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ef457600954811115611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690613f63565b60405180910390fd5b611f9f565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f9e57600b54611f5183610ecb565b82611f5c91906136ed565b1115611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613ed1565b60405180910390fd5b5b5b5b5b6000611fac30610ecb565b90506000600a548210159050808015611fd15750600c60009054906101000a900460ff165b8015611fea5750600560149054906101000a900460ff16155b80156120405750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120965750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ec5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612130576001600560146101000a81548160ff02191690831515021790555061211461288b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121e65750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121f057600090505b6000811561249957601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561225357506000601154115b1561232057612280606461227260115488612afc90919063ffffffff16565b612b1290919063ffffffff16565b9050601154601354826122939190613542565b61229d91906135b3565b601660008282546122ae91906136ed565b92505081905550601154601254826122c69190613542565b6122d091906135b3565b601560008282546122e191906136ed565b92505081905550601154601454826122f99190613542565b61230391906135b3565b6017600082825461231491906136ed565b92505081905550612445565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561237b57506000600d54115b15612444576123a8606461239a600d5488612afc90919063ffffffff16565b612b1290919063ffffffff16565b9050600d54600f54826123bb9190613542565b6123c591906135b3565b601660008282546123d691906136ed565b92505081905550600d54600e54826123ee9190613542565b6123f891906135b3565b6015600082825461240991906136ed565b92505081905550600d54601054826124219190613542565b61242b91906135b3565b6017600082825461243c91906136ed565b925050819055505b5b6000811115612467576124668730601754846124619190613f83565b612615565b5b6000601754111561248a576124818761dead601754612615565b60006017819055505b80856124969190613f83565b94505b6124a4878787612615565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b90613d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90613dd3565b60405180910390fd5b6126fe838383612b28565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b90614029565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128729190613114565b60405180910390a3612885848484612b2d565b50505050565b600061289630610ecb565b905060006015546016546128aa91906136ed565b905060008214806128bb5750600081145b156128c7575050612afa565b6000600282601654856128da9190613542565b6128e491906135b3565b6128ee91906135b3565b905060006129058285612b3290919063ffffffff16565b9050600047905061291582612b48565b600061292a8247612b3290919063ffffffff16565b905060006129558661294760155485612afc90919063ffffffff16565b612b1290919063ffffffff16565b9050600081836129659190613f83565b9050600060168190555060006015819055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516129bf9061407a565b60006040518083038185875af1925050503d80600081146129fc576040519150601f19603f3d011682016040523d82523d6000602084013e612a01565b606091505b50509050600087118015612a155750600082115b15612a6257612a248783612d85565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618683601654604051612a599392919061408f565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612aa89061407a565b60006040518083038185875af1925050503d8060008114612ae5576040519150601f19603f3d011682016040523d82523d6000602084013e612aea565b606091505b5050809150505050505050505050505b565b60008183612b0a9190613542565b905092915050565b60008183612b2091906135b3565b905092915050565b505050565b505050565b60008183612b409190613f83565b905092915050565b6000600267ffffffffffffffff811115612b6557612b64613187565b5b604051908082528060200260200182016040528015612b935781602001602082028036833780820191505090505b5090503081600081518110612bab57612baa613676565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c7491906140db565b81600181518110612c8857612c87613676565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ced307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117e7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612d4f959493929190614201565b600060405180830381600087803b158015612d6957600080fd5b505af1158015612d7d573d6000803e3d6000fd5b505050505050565b612db0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117e7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612e179695949392919061425b565b60606040518083038185885af1158015612e35573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e5a91906142d1565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e9b578082015181840152602081019050612e80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ec382612e61565b612ecd8185612e6c565b9350612edd818560208601612e7d565b612ee681612ea7565b840191505092915050565b60006020820190508181036000830152612f0b8184612eb8565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f5282612f27565b9050919050565b612f6281612f47565b8114612f6d57600080fd5b50565b600081359050612f7f81612f59565b92915050565b6000819050919050565b612f9881612f85565b8114612fa357600080fd5b50565b600081359050612fb581612f8f565b92915050565b60008060408385031215612fd257612fd1612f1d565b5b6000612fe085828601612f70565b9250506020612ff185828601612fa6565b9150509250929050565b60008115159050919050565b61301081612ffb565b82525050565b600060208201905061302b6000830184613007565b92915050565b60006020828403121561304757613046612f1d565b5b600061305584828501612fa6565b91505092915050565b60006020828403121561307457613073612f1d565b5b600061308284828501612f70565b91505092915050565b6000819050919050565b60006130b06130ab6130a684612f27565b61308b565b612f27565b9050919050565b60006130c282613095565b9050919050565b60006130d4826130b7565b9050919050565b6130e4816130c9565b82525050565b60006020820190506130ff60008301846130db565b92915050565b61310e81612f85565b82525050565b60006020820190506131296000830184613105565b92915050565b60008060006060848603121561314857613147612f1d565b5b600061315686828701612f70565b935050602061316786828701612f70565b925050604061317886828701612fa6565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131bf82612ea7565b810181811067ffffffffffffffff821117156131de576131dd613187565b5b80604052505050565b60006131f1612f13565b90506131fd82826131b6565b919050565b600067ffffffffffffffff82111561321d5761321c613187565b5b602082029050602081019050919050565b600080fd5b600061324661324184613202565b6131e7565b905080838252602082019050602084028301858111156132695761326861322e565b5b835b81811015613292578061327e8882612f70565b84526020840193505060208101905061326b565b5050509392505050565b600082601f8301126132b1576132b0613182565b5b81356132c1848260208601613233565b91505092915050565b6132d381612ffb565b81146132de57600080fd5b50565b6000813590506132f0816132ca565b92915050565b6000806040838503121561330d5761330c612f1d565b5b600083013567ffffffffffffffff81111561332b5761332a612f22565b5b6133378582860161329c565b9250506020613348858286016132e1565b9150509250929050565b61335b81612f47565b82525050565b60006020820190506133766000830184613352565b92915050565b600060ff82169050919050565b6133928161337c565b82525050565b60006020820190506133ad6000830184613389565b92915050565b600080604083850312156133ca576133c9612f1d565b5b60006133d885828601612f70565b92505060206133e9858286016132e1565b9150509250929050565b60008060006060848603121561340c5761340b612f1d565b5b600061341a86828701612fa6565b935050602061342b86828701612fa6565b925050604061343c86828701612fa6565b9150509250925092565b60006020828403121561345c5761345b612f1d565b5b600061346a848285016132e1565b91505092915050565b6000806040838503121561348a57613489612f1d565b5b600061349885828601612f70565b92505060206134a985828601612f70565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fa57607f821691505b60208210810361350d5761350c6134b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354d82612f85565b915061355883612f85565b925082820261356681612f85565b9150828204841483151761357d5761357c613513565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135be82612f85565b91506135c983612f85565b9250826135d9576135d8613584565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000613640602f83612e6c565b915061364b826135e4565b604082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136b082612f85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136e2576136e1613513565b5b600182019050919050565b60006136f882612f85565b915061370383612f85565b925082820190508082111561371b5761371a613513565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613757601d83612e6c565b915061376282613721565b602082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006137e9603983612e6c565b91506137f48261378d565b604082019050919050565b60006020820190508181036000830152613818816137dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061387b602583612e6c565b91506138868261381f565b604082019050919050565b600060208201905081810360008301526138aa8161386e565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006138e7601d83612e6c565b91506138f2826138b1565b602082019050919050565b60006020820190508181036000830152613916816138da565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613979603583612e6c565b91506139848261391d565b604082019050919050565b600060208201905081810360008301526139a88161396c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613a0b603483612e6c565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a9d602683612e6c565b9150613aa882613a41565b604082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b2f602483612e6c565b9150613b3a82613ad3565b604082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bc1602283612e6c565b9150613bcc82613b65565b604082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2d602083612e6c565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613c99601d83612e6c565b9150613ca482613c63565b602082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d2b602583612e6c565b9150613d3682613ccf565b604082019050919050565b60006020820190508181036000830152613d5a81613d1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dbd602383612e6c565b9150613dc882613d61565b604082019050919050565b60006020820190508181036000830152613dec81613db0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613e4f603583612e6c565b9150613e5a82613df3565b604082019050919050565b60006020820190508181036000830152613e7e81613e42565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613ebb601383612e6c565b9150613ec682613e85565b602082019050919050565b60006020820190508181036000830152613eea81613eae565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613f4d603683612e6c565b9150613f5882613ef1565b604082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b6000613f8e82612f85565b9150613f9983612f85565b9250828203905081811115613fb157613fb0613513565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614013602683612e6c565b915061401e82613fb7565b604082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b600081905092915050565b50565b6000614064600083614049565b915061406f82614054565b600082019050919050565b600061408582614057565b9150819050919050565b60006060820190506140a46000830186613105565b6140b16020830185613105565b6140be6040830184613105565b949350505050565b6000815190506140d581612f59565b92915050565b6000602082840312156140f1576140f0612f1d565b5b60006140ff848285016140c6565b91505092915050565b6000819050919050565b600061412d61412861412384614108565b61308b565b612f85565b9050919050565b61413d81614112565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61417881612f47565b82525050565b600061418a838361416f565b60208301905092915050565b6000602082019050919050565b60006141ae82614143565b6141b8818561414e565b93506141c38361415f565b8060005b838110156141f45781516141db888261417e565b97506141e683614196565b9250506001810190506141c7565b5085935050505092915050565b600060a0820190506142166000830188613105565b6142236020830187614134565b818103604083015261423581866141a3565b90506142446060830185613352565b6142516080830184613105565b9695505050505050565b600060c0820190506142706000830189613352565b61427d6020830188613105565b61428a6040830187614134565b6142976060830186614134565b6142a46080830185613352565b6142b160a0830184613105565b979650505050505050565b6000815190506142cb81612f8f565b92915050565b6000806000606084860312156142ea576142e9612f1d565b5b60006142f8868287016142bc565b9350506020614309868287016142bc565b925050604061431a868287016142bc565b915050925092509256fea26469706673582212207a479be6030688be40e53acb5ca3f84ad73ae0a0cf0111d53c02f45a5b3899ac64736f6c63430008120033

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.