Contract Address Details

0xce9986C2e9e4b7721776eDb5b18D32Fd5Cc3EaEe

Token
Errol (ERROL)
Creator
0x5522bc–7557ab at 0x29c01b–723506
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
382 Transactions
Transfers
0 Transfers
Gas Used
16,962,378
Last Balance Update
27502967
Contract name:
ErrolToken




Optimization enabled
true
Compiler version
v0.8.0+commit.c7dfd78e




Optimization runs
200
EVM Version
default




Verified at
2022-09-02T19:52:49.112904Z

Contract source code

// SPDX-License-Identifier: UNLICENSED

// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.7.3

// 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 @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.7.3

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/utils/Context.sol@v4.7.3

// 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 @openzeppelin/contracts/token/ERC20/ERC20.sol@v4.7.3

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev 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 @openzeppelin/contracts/access/Ownable.sol@v4.7.3

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 contracts/staking/errol.sol

contract ErrolToken is ERC20, Ownable {
    address public taxReceiver;
    mapping(address => bool) public stakingFactories;
    mapping(address => bool) public excludedFromTax;

    bool public fairLaunchEventActive = true;
    bool public fairLaunchExecuted = false;
    address public router;
    bool public tradingEnabled = false;
    bool public _hasLiqBeenAdded = false;
    uint256 public allowTradeAt = 0;
    bool public farmsEnabled = false;
    mapping(address => bool) public isLP;

    constructor() ERC20("Errol", "ERROL") {
        _mint(msg.sender, 50000000 * 10**18);
    }

    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        uint256 _amountTax = (amount * 10) / 1000;
        if (fairLaunchEventActive && tx.origin != owner()) {
            if (allowTradeAt == 0) {
                revert("can't buy, fair launch not started");
            }
            if (block.timestamp < allowTradeAt + 24 hours && isLP[to]) {
                _amountTax = (amount * 200) / 1000;
            } else if (block.timestamp < allowTradeAt + 48 hours && isLP[to]) {
                _amountTax = (amount * 100) / 1000;
            } else if (isLP[to]) {
                _amountTax = (amount * 50) / 1000;
            }
        }
        uint256 _amount = amount - _amountTax;

        if (
            excludedFromTax[from] ||
            excludedFromTax[to] ||
            taxReceiver == address(0)
        ) {
            super._transfer(from, to, amount);
            return;
        } else {
            super._transfer(from, to, _amount);
            super._transfer(from, taxReceiver, _amountTax);
        }
    }

    function setTaxReceiver(address _newTaxReceiver) public onlyOwner {
        taxReceiver = _newTaxReceiver;
    }

    function setStakingFactory(address _stakingFactory, bool _status)
        public
        onlyOwner
    {
        stakingFactories[_stakingFactory] = _status;
    }

    function excludeFromTax(address _excluded) public {
        require(
            stakingFactories[msg.sender] == true || msg.sender == owner(),
            "not a call from an approved staking factory"
        );
        excludedFromTax[_excluded] = true;
    }

    function setLP(address _LP, bool _status) public onlyOwner {
        isLP[_LP] = _status;
    }

    function enableFairLaunch(uint256 _timestamp) external onlyOwner {
        require(
            msg.sender != address(0),
            "ERC20: approve from the zero address"
        );
        require(!fairLaunchExecuted, "Fair Launch already happened");
        allowTradeAt = _timestamp;
        fairLaunchExecuted = true;
    }

    function endFairLaunchEvent() public onlyOwner {
        require(fairLaunchExecuted, "Fair launch has not been executed yet");
        require(fairLaunchEventActive, "fair Launch event is finished");
        fairLaunchEventActive = false;
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_hasLiqBeenAdded","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowTradeAt","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"enableFairLaunch","inputs":[{"type":"uint256","name":"_timestamp","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"endFairLaunchEvent","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromTax","inputs":[{"type":"address","name":"_excluded","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"excludedFromTax","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"fairLaunchEventActive","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"fairLaunchExecuted","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"farmsEnabled","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isLP","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"router","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLP","inputs":[{"type":"address","name":"_LP","internalType":"address"},{"type":"bool","name":"_status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStakingFactory","inputs":[{"type":"address","name":"_stakingFactory","internalType":"address"},{"type":"bool","name":"_status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxReceiver","inputs":[{"type":"address","name":"_newTaxReceiver","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"stakingFactories","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"taxReceiver","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"tradingEnabled","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
            

Contract Creation Code

0x60806040526009805461ff0061ffff60b01b011960ff19918216600117169091556000600a55600b805490911690553480156200003b57600080fd5b5060405180604001604052806005815260200164115c9c9bdb60da1b8152506040518060400160405280600581526020016411549493d360da1b8152508160039080519060200190620000909291906200021d565b508051620000a69060049060208401906200021d565b505050620000c3620000bd620000e060201b60201c565b620000e4565b620000da336a295be96e6406697200000062000136565b62000365565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001685760405162461bcd60e51b81526004016200015f90620002c3565b60405180910390fd5b620001766000838362000218565b80600260008282546200018a919062000303565b90915550506001600160a01b03821660009081526020819052604081208054839290620001b990849062000303565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001fe908590620002fa565b60405180910390a3620002146000838362000218565b5050565b505050565b8280546200022b9062000328565b90600052602060002090601f0160209004810192826200024f57600085556200029a565b82601f106200026a57805160ff19168380011785556200029a565b828001600101855582156200029a579182015b828111156200029a5782518255916020019190600101906200027d565b50620002a8929150620002ac565b5090565b5b80821115620002a85760008155600101620002ad565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200032357634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200033d57607f821691505b602082108114156200035f57634e487b7160e01b600052602260045260246000fd5b50919050565b61148a80620003756000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637df0f7671161010f578063ca311630116100a2578063e6ef73d611610071578063e6ef73d6146103d1578063f2fde38b146103d9578063f4f38bde146103ec578063f887ea40146103f4576101f0565b8063ca3116301461039b578063cd8de42c146103a3578063dd62ed3e146103b6578063e233033f146103c9576101f0565b8063989763ef116100de578063989763ef1461034f578063a457c2d714610362578063a9059cbb14610375578063a995f4d314610388576101f0565b80637df0f767146103175780638da5cb5b1461032a57806395d89b411461033f5780639683083314610347576101f0565b8063395093511161018757806360d1259e1161015657806360d1259e146102e15780636688ddf4146102f457806370a08231146102fc578063715018a61461030f576101f0565b806339509351146102ab57806340c10f19146102be5780634ada218b146102d157806350a8e016146102d9576101f0565b806323b872dd116101c357806323b872dd1461025b57806328d679381461026e578063313ce567146102835780633687c33a14610298576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd146102335780631f391f2214610248575b600080fd5b6101fd6103fc565b60405161020a9190610f69565b60405180910390f35b610226610221366004610f09565b61048e565b60405161020a9190610f5e565b61023b6104b0565b60405161020a919061137e565b610226610256366004610e41565b6104b6565b610226610269366004610e94565b6104cb565b61028161027c366004610ecf565b6104f9565b005b61028b61052c565b60405161020a9190611387565b6102816102a6366004610ecf565b610531565b6102266102b9366004610f09565b610564565b6102816102cc366004610f09565b610590565b6102266105a6565b6102266105b6565b6102816102ef366004610e41565b6105c6565b61028161064a565b61023b61030a366004610e41565b6106a7565b6102816106c6565b610226610325366004610e41565b6106da565b6103326106ef565b60405161020a9190610f4a565b6101fd6106fe565b61022661070d565b61022661035d366004610e41565b610716565b610226610370366004610f09565b61072b565b610226610383366004610f09565b610773565b610281610396366004610f32565b61078b565b6102266107ec565b6102816103b1366004610e41565b6107fa565b61023b6103c4366004610e62565b610824565b61022661084f565b610332610858565b6102816103e7366004610e41565b610867565b61023b6108a1565b6103326108a7565b60606003805461040b90611403565b80601f016020809104026020016040519081016040528092919081815260200182805461043790611403565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b6000806104996108bc565b90506104a68185856108c0565b5060019392505050565b60025490565b60076020526000908152604090205460ff1681565b6000806104d66108bc565b90506104e3858285610974565b6104ee8585856109be565b506001949350505050565b610501610bad565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b601290565b610539610bad565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b60008061056f6108bc565b90506104a68185856105818589610824565b61058b9190611395565b6108c0565b610598610bad565b6105a28282610bec565b5050565b600954600160b01b900460ff1681565b600954600160b81b900460ff1681565b3360009081526007602052604090205460ff1615156001148061060157506105ec6106ef565b6001600160a01b0316336001600160a01b0316145b6106265760405162461bcd60e51b815260040161061d9061122e565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b610652610bad565b600954610100900460ff166106795760405162461bcd60e51b815260040161061d906111e9565b60095460ff1661069b5760405162461bcd60e51b815260040161061d9061117d565b6009805460ff19169055565b6001600160a01b0381166000908152602081905260409020545b919050565b6106ce610bad565b6106d86000610cb4565b565b600c6020526000908152604090205460ff1681565b6005546001600160a01b031690565b60606004805461040b90611403565b600b5460ff1681565b60086020526000908152604090205460ff1681565b6000806107366108bc565b905060006107448286610824565b9050838110156107665760405162461bcd60e51b815260040161061d90611302565b6104ee82868684036108c0565b60008061077e6108bc565b90506104a68185856109be565b610793610bad565b336107b05760405162461bcd60e51b815260040161061d906112be565b600954610100900460ff16156107d85760405162461bcd60e51b815260040161061d90610fff565b600a556009805461ff001916610100179055565b600954610100900460ff1681565b610802610bad565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095460ff1681565b6006546001600160a01b031681565b61086f610bad565b6001600160a01b0381166108955760405162461bcd60e51b815260040161061d90611036565b61089e81610cb4565b50565b600a5481565b6009546201000090046001600160a01b031681565b3390565b6001600160a01b0383166108e65760405162461bcd60e51b815260040161061d906112be565b6001600160a01b03821661090c5760405162461bcd60e51b815260040161061d9061107c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061096790859061137e565b60405180910390a3505050565b60006109808484610824565b905060001981146109b857818110156109ab5760405162461bcd60e51b815260040161061d90611100565b6109b884848484036108c0565b50505050565b60006103e86109ce83600a6113cd565b6109d891906113ad565b60095490915060ff168015610a0657506109f06106ef565b6001600160a01b0316326001600160a01b031614155b15610b0957600a54610a2a5760405162461bcd60e51b815260040161061d906110be565b600a54610a3a9062015180611395565b42108015610a6057506001600160a01b0383166000908152600c602052604090205460ff165b15610a84576103e8610a738360c86113cd565b610a7d91906113ad565b9050610b09565b600a54610a94906202a300611395565b42108015610aba57506001600160a01b0383166000908152600c602052604090205460ff165b15610acd576103e8610a738360646113cd565b6001600160a01b0383166000908152600c602052604090205460ff1615610b09576103e8610afc8360326113cd565b610b0691906113ad565b90505b6000610b1582846113ec565b6001600160a01b03861660009081526008602052604090205490915060ff1680610b5757506001600160a01b03841660009081526008602052604090205460ff165b80610b6b57506006546001600160a01b0316155b15610b8257610b7b858585610d06565b5050610ba8565b610b8d858583610d06565b600654610ba59086906001600160a01b031684610d06565b50505b505050565b610bb56108bc565b6001600160a01b0316610bc66106ef565b6001600160a01b0316146106d85760405162461bcd60e51b815260040161061d906111b4565b6001600160a01b038216610c125760405162461bcd60e51b815260040161061d90611347565b610c1e60008383610ba8565b8060026000828254610c309190611395565b90915550506001600160a01b03821660009081526020819052604081208054839290610c5d908490611395565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ca090859061137e565b60405180910390a36105a260008383610ba8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d2c5760405162461bcd60e51b815260040161061d90611279565b6001600160a01b038216610d525760405162461bcd60e51b815260040161061d90610fbc565b610d5d838383610ba8565b6001600160a01b03831660009081526020819052604090205481811015610d965760405162461bcd60e51b815260040161061d90611137565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610dcd908490611395565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e17919061137e565b60405180910390a36109b8848484610ba8565b80356001600160a01b03811681146106c157600080fd5b600060208284031215610e52578081fd5b610e5b82610e2a565b9392505050565b60008060408385031215610e74578081fd5b610e7d83610e2a565b9150610e8b60208401610e2a565b90509250929050565b600080600060608486031215610ea8578081fd5b610eb184610e2a565b9250610ebf60208501610e2a565b9150604084013590509250925092565b60008060408385031215610ee1578182fd5b610eea83610e2a565b915060208301358015158114610efe578182fd5b809150509250929050565b60008060408385031215610f1b578182fd5b610f2483610e2a565b946020939093013593505050565b600060208284031215610f43578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610f9557858101830151858201604001528201610f79565b81811115610fa65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601c908201527f46616972204c61756e636820616c72656164792068617070656e656400000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526022908201527f63616e2774206275792c2066616972206c61756e6368206e6f74207374617274604082015261195960f21b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252601d908201527f66616972204c61756e6368206576656e742069732066696e6973686564000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f46616972206c61756e636820686173206e6f74206265656e206578656375746560408201526419081e595d60da1b606082015260800190565b6020808252602b908201527f6e6f7420612063616c6c2066726f6d20616e20617070726f766564207374616b60408201526a696e6720666163746f727960a81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156113a8576113a861143e565b500190565b6000826113c857634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156113e7576113e761143e565b500290565b6000828210156113fe576113fe61143e565b500390565b60028104600182168061141757607f821691505b6020821081141561143857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209de36c602ccdd6a624986ad1287a17c379dd3888664d3b31741d5d7359cd9eca64736f6c63430008000033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80637df0f7671161010f578063ca311630116100a2578063e6ef73d611610071578063e6ef73d6146103d1578063f2fde38b146103d9578063f4f38bde146103ec578063f887ea40146103f4576101f0565b8063ca3116301461039b578063cd8de42c146103a3578063dd62ed3e146103b6578063e233033f146103c9576101f0565b8063989763ef116100de578063989763ef1461034f578063a457c2d714610362578063a9059cbb14610375578063a995f4d314610388576101f0565b80637df0f767146103175780638da5cb5b1461032a57806395d89b411461033f5780639683083314610347576101f0565b8063395093511161018757806360d1259e1161015657806360d1259e146102e15780636688ddf4146102f457806370a08231146102fc578063715018a61461030f576101f0565b806339509351146102ab57806340c10f19146102be5780634ada218b146102d157806350a8e016146102d9576101f0565b806323b872dd116101c357806323b872dd1461025b57806328d679381461026e578063313ce567146102835780633687c33a14610298576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd146102335780631f391f2214610248575b600080fd5b6101fd6103fc565b60405161020a9190610f69565b60405180910390f35b610226610221366004610f09565b61048e565b60405161020a9190610f5e565b61023b6104b0565b60405161020a919061137e565b610226610256366004610e41565b6104b6565b610226610269366004610e94565b6104cb565b61028161027c366004610ecf565b6104f9565b005b61028b61052c565b60405161020a9190611387565b6102816102a6366004610ecf565b610531565b6102266102b9366004610f09565b610564565b6102816102cc366004610f09565b610590565b6102266105a6565b6102266105b6565b6102816102ef366004610e41565b6105c6565b61028161064a565b61023b61030a366004610e41565b6106a7565b6102816106c6565b610226610325366004610e41565b6106da565b6103326106ef565b60405161020a9190610f4a565b6101fd6106fe565b61022661070d565b61022661035d366004610e41565b610716565b610226610370366004610f09565b61072b565b610226610383366004610f09565b610773565b610281610396366004610f32565b61078b565b6102266107ec565b6102816103b1366004610e41565b6107fa565b61023b6103c4366004610e62565b610824565b61022661084f565b610332610858565b6102816103e7366004610e41565b610867565b61023b6108a1565b6103326108a7565b60606003805461040b90611403565b80601f016020809104026020016040519081016040528092919081815260200182805461043790611403565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b6000806104996108bc565b90506104a68185856108c0565b5060019392505050565b60025490565b60076020526000908152604090205460ff1681565b6000806104d66108bc565b90506104e3858285610974565b6104ee8585856109be565b506001949350505050565b610501610bad565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b601290565b610539610bad565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b60008061056f6108bc565b90506104a68185856105818589610824565b61058b9190611395565b6108c0565b610598610bad565b6105a28282610bec565b5050565b600954600160b01b900460ff1681565b600954600160b81b900460ff1681565b3360009081526007602052604090205460ff1615156001148061060157506105ec6106ef565b6001600160a01b0316336001600160a01b0316145b6106265760405162461bcd60e51b815260040161061d9061122e565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b610652610bad565b600954610100900460ff166106795760405162461bcd60e51b815260040161061d906111e9565b60095460ff1661069b5760405162461bcd60e51b815260040161061d9061117d565b6009805460ff19169055565b6001600160a01b0381166000908152602081905260409020545b919050565b6106ce610bad565b6106d86000610cb4565b565b600c6020526000908152604090205460ff1681565b6005546001600160a01b031690565b60606004805461040b90611403565b600b5460ff1681565b60086020526000908152604090205460ff1681565b6000806107366108bc565b905060006107448286610824565b9050838110156107665760405162461bcd60e51b815260040161061d90611302565b6104ee82868684036108c0565b60008061077e6108bc565b90506104a68185856109be565b610793610bad565b336107b05760405162461bcd60e51b815260040161061d906112be565b600954610100900460ff16156107d85760405162461bcd60e51b815260040161061d90610fff565b600a556009805461ff001916610100179055565b600954610100900460ff1681565b610802610bad565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095460ff1681565b6006546001600160a01b031681565b61086f610bad565b6001600160a01b0381166108955760405162461bcd60e51b815260040161061d90611036565b61089e81610cb4565b50565b600a5481565b6009546201000090046001600160a01b031681565b3390565b6001600160a01b0383166108e65760405162461bcd60e51b815260040161061d906112be565b6001600160a01b03821661090c5760405162461bcd60e51b815260040161061d9061107c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061096790859061137e565b60405180910390a3505050565b60006109808484610824565b905060001981146109b857818110156109ab5760405162461bcd60e51b815260040161061d90611100565b6109b884848484036108c0565b50505050565b60006103e86109ce83600a6113cd565b6109d891906113ad565b60095490915060ff168015610a0657506109f06106ef565b6001600160a01b0316326001600160a01b031614155b15610b0957600a54610a2a5760405162461bcd60e51b815260040161061d906110be565b600a54610a3a9062015180611395565b42108015610a6057506001600160a01b0383166000908152600c602052604090205460ff165b15610a84576103e8610a738360c86113cd565b610a7d91906113ad565b9050610b09565b600a54610a94906202a300611395565b42108015610aba57506001600160a01b0383166000908152600c602052604090205460ff165b15610acd576103e8610a738360646113cd565b6001600160a01b0383166000908152600c602052604090205460ff1615610b09576103e8610afc8360326113cd565b610b0691906113ad565b90505b6000610b1582846113ec565b6001600160a01b03861660009081526008602052604090205490915060ff1680610b5757506001600160a01b03841660009081526008602052604090205460ff165b80610b6b57506006546001600160a01b0316155b15610b8257610b7b858585610d06565b5050610ba8565b610b8d858583610d06565b600654610ba59086906001600160a01b031684610d06565b50505b505050565b610bb56108bc565b6001600160a01b0316610bc66106ef565b6001600160a01b0316146106d85760405162461bcd60e51b815260040161061d906111b4565b6001600160a01b038216610c125760405162461bcd60e51b815260040161061d90611347565b610c1e60008383610ba8565b8060026000828254610c309190611395565b90915550506001600160a01b03821660009081526020819052604081208054839290610c5d908490611395565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ca090859061137e565b60405180910390a36105a260008383610ba8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d2c5760405162461bcd60e51b815260040161061d90611279565b6001600160a01b038216610d525760405162461bcd60e51b815260040161061d90610fbc565b610d5d838383610ba8565b6001600160a01b03831660009081526020819052604090205481811015610d965760405162461bcd60e51b815260040161061d90611137565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610dcd908490611395565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e17919061137e565b60405180910390a36109b8848484610ba8565b80356001600160a01b03811681146106c157600080fd5b600060208284031215610e52578081fd5b610e5b82610e2a565b9392505050565b60008060408385031215610e74578081fd5b610e7d83610e2a565b9150610e8b60208401610e2a565b90509250929050565b600080600060608486031215610ea8578081fd5b610eb184610e2a565b9250610ebf60208501610e2a565b9150604084013590509250925092565b60008060408385031215610ee1578182fd5b610eea83610e2a565b915060208301358015158114610efe578182fd5b809150509250929050565b60008060408385031215610f1b578182fd5b610f2483610e2a565b946020939093013593505050565b600060208284031215610f43578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610f9557858101830151858201604001528201610f79565b81811115610fa65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601c908201527f46616972204c61756e636820616c72656164792068617070656e656400000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526022908201527f63616e2774206275792c2066616972206c61756e6368206e6f74207374617274604082015261195960f21b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252601d908201527f66616972204c61756e6368206576656e742069732066696e6973686564000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f46616972206c61756e636820686173206e6f74206265656e206578656375746560408201526419081e595d60da1b606082015260800190565b6020808252602b908201527f6e6f7420612063616c6c2066726f6d20616e20617070726f766564207374616b60408201526a696e6720666163746f727960a81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156113a8576113a861143e565b500190565b6000826113c857634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156113e7576113e761143e565b500290565b6000828210156113fe576113fe61143e565b500390565b60028104600182168061141757607f821691505b6020821081141561143857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209de36c602ccdd6a624986ad1287a17c379dd3888664d3b31741d5d7359cd9eca64736f6c63430008000033