ETH Price: $2,299.82 (-0.32%)

Contract

0xc429aA00a6AB55f4d0b4e015106a0ff64A6C07be
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve206989132024-09-07 13:06:3511 days ago1725714395IN
0xc429aA00...64A6C07be
0 ETH0.000346117.34409986
Approve206987782024-09-07 12:39:2311 days ago1725712763IN
0xc429aA00...64A6C07be
0 ETH0.000238035.05089965
Approve206987752024-09-07 12:38:4711 days ago1725712727IN
0xc429aA00...64A6C07be
0 ETH0.000185343.92790364
Approve206987692024-09-07 12:37:3511 days ago1725712655IN
0xc429aA00...64A6C07be
0 ETH0.000324896.8867884
Approve206987682024-09-07 12:37:2311 days ago1725712643IN
0xc429aA00...64A6C07be
0 ETH0.00023134.9017636
Approve206987642024-09-07 12:36:3511 days ago1725712595IN
0xc429aA00...64A6C07be
0 ETH0.000332547.04720347
Approve206987632024-09-07 12:36:2311 days ago1725712583IN
0xc429aA00...64A6C07be
0 ETH0.000192844.08666878
Approve206987582024-09-07 12:35:2311 days ago1725712523IN
0xc429aA00...64A6C07be
0 ETH0.000172473.67469651
Approve206987572024-09-07 12:35:1111 days ago1725712511IN
0xc429aA00...64A6C07be
0 ETH0.000243365.16393895
Approve206987552024-09-07 12:34:4711 days ago1725712487IN
0xc429aA00...64A6C07be
0 ETH0.000146113.10041255
Approve206987552024-09-07 12:34:4711 days ago1725712487IN
0xc429aA00...64A6C07be
0 ETH0.000197194.17892374
Renounce Ownersh...206987502024-09-07 12:33:4711 days ago1725712427IN
0xc429aA00...64A6C07be
0 ETH0.00007333.12272708
Approve206987492024-09-07 12:33:3511 days ago1725712415IN
0xc429aA00...64A6C07be
0 ETH0.000335797.1161099
Approve206987492024-09-07 12:33:3511 days ago1725712415IN
0xc429aA00...64A6C07be
0 ETH0.000335797.1161099
Approve206987462024-09-07 12:32:5911 days ago1725712379IN
0xc429aA00...64A6C07be
0 ETH0.000186713.95674029
Approve206987462024-09-07 12:32:5911 days ago1725712379IN
0xc429aA00...64A6C07be
0 ETH0.00023114.89748648
Approve206987462024-09-07 12:32:5911 days ago1725712379IN
0xc429aA00...64A6C07be
0 ETH0.00023114.89748648
Approve206987462024-09-07 12:32:5911 days ago1725712379IN
0xc429aA00...64A6C07be
0 ETH0.00023114.89748648
Approve206987442024-09-07 12:32:3511 days ago1725712355IN
0xc429aA00...64A6C07be
0 ETH0.000187093.96487506
Approve206987432024-09-07 12:32:2311 days ago1725712343IN
0xc429aA00...64A6C07be
0 ETH0.00013762.91617103
Approve206987432024-09-07 12:32:2311 days ago1725712343IN
0xc429aA00...64A6C07be
0 ETH0.000231684.91617103
Approve206987432024-09-07 12:32:2311 days ago1725712343IN
0xc429aA00...64A6C07be
0 ETH0.000231684.91617103
Approve206987432024-09-07 12:32:2311 days ago1725712343IN
0xc429aA00...64A6C07be
0 ETH0.000231684.91617103
Approve206987432024-09-07 12:32:2311 days ago1725712343IN
0xc429aA00...64A6C07be
0 ETH0.000346767.35785008
Approve206987412024-09-07 12:31:5911 days ago1725712319IN
0xc429aA00...64A6C07be
0 ETH0.000159433.39687012
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PepeToken

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-07
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/PepeToken.sol



pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


contract PepeToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    // State variables for dynamic max holding increase
    uint256 public maxHoldingIncreaseRate; // in basis points, e.g., 100 = 1%
    uint256 public lastMaxHoldingUpdateTime;

    // Constructor with additional parameters for initial max holding and increase rate
    constructor(uint256 _totalSupply, uint256 _initialMaxHolding, uint256 _maxHoldingIncreaseRate) ERC20("Pepe", "PEPE") {
        _mint(msg.sender, _totalSupply);
        maxHoldingAmount = _initialMaxHolding;
        maxHoldingIncreaseRate = _maxHoldingIncreaseRate;
        lastMaxHoldingUpdateTime = block.timestamp;
    }

    // Function to blacklist or unblacklist addresses
    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    // Function to set trading rules including max and min holding amounts
    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    // Internal function to update the max holding amount dynamically every minute
    function updateMaxHoldingAmount() internal {
        if (block.timestamp > lastMaxHoldingUpdateTime + 1 minutes) {
            uint256 minutesElapsed = (block.timestamp - lastMaxHoldingUpdateTime) / 1 minutes;
            uint256 increase = maxHoldingAmount * maxHoldingIncreaseRate / 10000 * minutesElapsed;
            maxHoldingAmount += increase;
            lastMaxHoldingUpdateTime = block.timestamp;
        }
    }

    // Override function to add checks for max holding amount and blacklisting
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        // Update the max holding amount dynamically
        updateMaxHoldingAmount();

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    // Function to burn tokens from the caller's account
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_initialMaxHolding","type":"uint256"},{"internalType":"uint256","name":"_maxHoldingIncreaseRate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"name":"lastMaxHoldingUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingIncreaseRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801561000f575f80fd5b506040516131d33803806131d383398181016040528101906100319190610759565b6040518060400160405280600481526020017f50657065000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50455045000000000000000000000000000000000000000000000000000000008152506100b96100ae61010860201b60201c565b61010f60201b60201c565b81600490816100c891906109da565b5080600590816100d891906109da565b5050506100eb33846101d060201b60201c565b8160078190555080600b8190555042600c81905550505050610db2565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361023e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023590610b03565b60405180910390fd5b61024f5f838361033460201b60201c565b8060035f8282546102609190610b4e565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546102b39190610b4e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103179190610b90565b60405180910390a36103305f838361062e60201b60201c565b5050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156103d25750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040890610bf3565b60405180910390fd5b61041f61063360201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610536576104816106b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104f257506104c36106b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890610c5b565b60405180910390fd5b610629565b60065f9054906101000a900460ff16801561059d575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561062857600754816105b5846106dc60201b60201c565b6105bf9190610b4e565b111580156105e85750600854816105db846106dc60201b60201c565b6105e59190610b4e565b10155b610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e90610cc3565b60405180910390fd5b5b5b505050565b505050565b603c600c546106429190610b4e565b4211156106b3575f603c600c544261065a9190610ce1565b6106649190610d41565b90505f81612710600b5460075461067b9190610d71565b6106859190610d41565b61068f9190610d71565b90508060075f8282546106a29190610b4e565b9250508190555042600c8190555050505b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b61073881610726565b8114610742575f80fd5b50565b5f815190506107538161072f565b92915050565b5f805f606084860312156107705761076f610722565b5b5f61077d86828701610745565b935050602061078e86828701610745565b925050604061079f86828701610745565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061082457607f821691505b602082108103610837576108366107e0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261085e565b6108a3868361085e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6108de6108d96108d484610726565b6108bb565b610726565b9050919050565b5f819050919050565b6108f7836108c4565b61090b610903826108e5565b84845461086a565b825550505050565b5f90565b61091f610913565b61092a8184846108ee565b505050565b5b8181101561094d576109425f82610917565b600181019050610930565b5050565b601f821115610992576109638161083d565b61096c8461084f565b8101602085101561097b578190505b61098f6109878561084f565b83018261092f565b50505b505050565b5f82821c905092915050565b5f6109b25f1984600802610997565b1980831691505092915050565b5f6109ca83836109a3565b9150826002028217905092915050565b6109e3826107a9565b67ffffffffffffffff8111156109fc576109fb6107b3565b5b610a06825461080d565b610a11828285610951565b5f60209050601f831160018114610a42575f8415610a30578287015190505b610a3a85826109bf565b865550610aa1565b601f198416610a508661083d565b5f5b82811015610a7757848901518255600182019150602085019450602081019050610a52565b86831015610a945784890151610a90601f8916826109a3565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610aed601f83610aa9565b9150610af882610ab9565b602082019050919050565b5f6020820190508181035f830152610b1a81610ae1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b5882610726565b9150610b6383610726565b9250828201905080821115610b7b57610b7a610b21565b5b92915050565b610b8a81610726565b82525050565b5f602082019050610ba35f830184610b81565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610bdd600b83610aa9565b9150610be882610ba9565b602082019050919050565b5f6020820190508181035f830152610c0a81610bd1565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f610c45601683610aa9565b9150610c5082610c11565b602082019050919050565b5f6020820190508181035f830152610c7281610c39565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f610cad600683610aa9565b9150610cb882610c79565b602082019050919050565b5f6020820190508181035f830152610cda81610ca1565b9050919050565b5f610ceb82610726565b9150610cf683610726565b9250828203905081811115610d0e57610d0d610b21565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610d4b82610726565b9150610d5683610726565b925082610d6657610d65610d14565b5b828204905092915050565b5f610d7b82610726565b9150610d8683610726565b9250828202610d9481610726565b91508282048414831517610dab57610daa610b21565b5b5092915050565b61241480610dbf5f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c806370a08231116100c1578063a457c2d71161007a578063a457c2d7146103b6578063a9059cbb146103e6578063b3fce17114610416578063ce6ba07214610434578063dd62ed3e14610452578063f2fde38b1461048257610156565b806370a0823114610304578063715018a614610334578063860a32ec1461033e57806389f9a1d31461035c5780638da5cb5b1461037a57806395d89b411461039857610156565b8063313ce56711610113578063313ce5671461024457806339509351146102625780633aa633aa14610292578063404e5129146102ae57806342966c68146102ca57806349bd5a5e146102e657610156565b806306fdde031461015a578063095ea7b31461017857806316c02129146101a857806318160ddd146101d85780631ab99e12146101f657806323b872dd14610214575b5f80fd5b61016261049e565b60405161016f91906117ce565b60405180910390f35b610192600480360381019061018d919061187f565b61052e565b60405161019f91906118d7565b60405180910390f35b6101c260048036038101906101bd91906118f0565b61054b565b6040516101cf91906118d7565b60405180910390f35b6101e0610568565b6040516101ed919061192a565b60405180910390f35b6101fe610571565b60405161020b919061192a565b60405180910390f35b61022e60048036038101906102299190611943565b610577565b60405161023b91906118d7565b60405180910390f35b61024c610669565b60405161025991906119ae565b60405180910390f35b61027c6004803603810190610277919061187f565b610671565b60405161028991906118d7565b60405180910390f35b6102ac60048036038101906102a791906119f1565b610718565b005b6102c860048036038101906102c39190611a55565b610801565b005b6102e460048036038101906102df9190611a93565b6108d5565b005b6102ee6108e2565b6040516102fb9190611acd565b60405180910390f35b61031e600480360381019061031991906118f0565b610907565b60405161032b919061192a565b60405180910390f35b61033c61094d565b005b6103466109d4565b60405161035391906118d7565b60405180910390f35b6103646109e6565b604051610371919061192a565b60405180910390f35b6103826109ec565b60405161038f9190611acd565b60405180910390f35b6103a0610a13565b6040516103ad91906117ce565b60405180910390f35b6103d060048036038101906103cb919061187f565b610aa3565b6040516103dd91906118d7565b60405180910390f35b61040060048036038101906103fb919061187f565b610b89565b60405161040d91906118d7565b60405180910390f35b61041e610ba6565b60405161042b919061192a565b60405180910390f35b61043c610bac565b604051610449919061192a565b60405180910390f35b61046c60048036038101906104679190611ae6565b610bb2565b604051610479919061192a565b60405180910390f35b61049c600480360381019061049791906118f0565b610c34565b005b6060600480546104ad90611b51565b80601f01602080910402602001604051908101604052809291908181526020018280546104d990611b51565b80156105245780601f106104fb57610100808354040283529160200191610524565b820191905f5260205f20905b81548152906001019060200180831161050757829003601f168201915b5050505050905090565b5f61054161053a610d2a565b8484610d31565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610583848484610ef4565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105ca610d2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064090611bf1565b60405180910390fd5b61065d85610655610d2a565b858403610d31565b60019150509392505050565b5f6012905090565b5f61070e61067d610d2a565b848460025f61068a610d2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107099190611c3c565b610d31565b6001905092915050565b610720610d2a565b73ffffffffffffffffffffffffffffffffffffffff1661073e6109ec565b73ffffffffffffffffffffffffffffffffffffffff1614610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b90611cb9565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b610809610d2a565b73ffffffffffffffffffffffffffffffffffffffff166108276109ec565b73ffffffffffffffffffffffffffffffffffffffff161461087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490611cb9565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6108df338261116c565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610955610d2a565b73ffffffffffffffffffffffffffffffffffffffff166109736109ec565b73ffffffffffffffffffffffffffffffffffffffff16146109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611cb9565b60405180910390fd5b6109d25f61133a565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a2290611b51565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90611b51565b8015610a995780601f10610a7057610100808354040283529160200191610a99565b820191905f5260205f20905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b5f8060025f610ab0610d2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190611d47565b60405180910390fd5b610b7e610b75610d2a565b85858403610d31565b600191505092915050565b5f610b9c610b95610d2a565b8484610ef4565b6001905092915050565b600b5481565b600c5481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c3c610d2a565b73ffffffffffffffffffffffffffffffffffffffff16610c5a6109ec565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790611cb9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611dd5565b60405180910390fd5b610d278161133a565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611e63565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490611ef1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee7919061192a565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611f7f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc79061200d565b60405180910390fd5b610fdb8383836113fb565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561105f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110569061209b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110ef9190611c3c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611153919061192a565b60405180910390a36111668484846116d7565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190612129565b60405180910390fd5b6111e5825f836113fb565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906121b7565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546112be91906121d5565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611322919061192a565b60405180910390a3611335835f846116d7565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156114995750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90612252565b60405180910390fd5b6114e06116dc565b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036115eb5761153c6109ec565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115a757506115786109ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906122ba565b60405180910390fd5b6116d2565b60065f9054906101000a900460ff168015611652575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116d1576007548161166484610907565b61166e9190611c3c565b1115801561169157506008548161168484610907565b61168e9190611c3c565b10155b6116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790612322565b60405180910390fd5b5b5b505050565b505050565b603c600c546116eb9190611c3c565b42111561175c575f603c600c544261170391906121d5565b61170d919061236d565b90505f81612710600b54600754611724919061239d565b61172e919061236d565b611738919061239d565b90508060075f82825461174b9190611c3c565b9250508190555042600c8190555050505b565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117a08261175e565b6117aa8185611768565b93506117ba818560208601611778565b6117c381611786565b840191505092915050565b5f6020820190508181035f8301526117e68184611796565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61181b826117f2565b9050919050565b61182b81611811565b8114611835575f80fd5b50565b5f8135905061184681611822565b92915050565b5f819050919050565b61185e8161184c565b8114611868575f80fd5b50565b5f8135905061187981611855565b92915050565b5f8060408385031215611895576118946117ee565b5b5f6118a285828601611838565b92505060206118b38582860161186b565b9150509250929050565b5f8115159050919050565b6118d1816118bd565b82525050565b5f6020820190506118ea5f8301846118c8565b92915050565b5f60208284031215611905576119046117ee565b5b5f61191284828501611838565b91505092915050565b6119248161184c565b82525050565b5f60208201905061193d5f83018461191b565b92915050565b5f805f6060848603121561195a576119596117ee565b5b5f61196786828701611838565b935050602061197886828701611838565b92505060406119898682870161186b565b9150509250925092565b5f60ff82169050919050565b6119a881611993565b82525050565b5f6020820190506119c15f83018461199f565b92915050565b6119d0816118bd565b81146119da575f80fd5b50565b5f813590506119eb816119c7565b92915050565b5f805f8060808587031215611a0957611a086117ee565b5b5f611a16878288016119dd565b9450506020611a2787828801611838565b9350506040611a388782880161186b565b9250506060611a498782880161186b565b91505092959194509250565b5f8060408385031215611a6b57611a6a6117ee565b5b5f611a7885828601611838565b9250506020611a89858286016119dd565b9150509250929050565b5f60208284031215611aa857611aa76117ee565b5b5f611ab58482850161186b565b91505092915050565b611ac781611811565b82525050565b5f602082019050611ae05f830184611abe565b92915050565b5f8060408385031215611afc57611afb6117ee565b5b5f611b0985828601611838565b9250506020611b1a85828601611838565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b6857607f821691505b602082108103611b7b57611b7a611b24565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611bdb602883611768565b9150611be682611b81565b604082019050919050565b5f6020820190508181035f830152611c0881611bcf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c468261184c565b9150611c518361184c565b9250828201905080821115611c6957611c68611c0f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ca3602083611768565b9150611cae82611c6f565b602082019050919050565b5f6020820190508181035f830152611cd081611c97565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611d31602583611768565b9150611d3c82611cd7565b604082019050919050565b5f6020820190508181035f830152611d5e81611d25565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611dbf602683611768565b9150611dca82611d65565b604082019050919050565b5f6020820190508181035f830152611dec81611db3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e4d602483611768565b9150611e5882611df3565b604082019050919050565b5f6020820190508181035f830152611e7a81611e41565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611edb602283611768565b9150611ee682611e81565b604082019050919050565b5f6020820190508181035f830152611f0881611ecf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f69602583611768565b9150611f7482611f0f565b604082019050919050565b5f6020820190508181035f830152611f9681611f5d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611ff7602383611768565b915061200282611f9d565b604082019050919050565b5f6020820190508181035f83015261202481611feb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612085602683611768565b91506120908261202b565b604082019050919050565b5f6020820190508181035f8301526120b281612079565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612113602183611768565b915061211e826120b9565b604082019050919050565b5f6020820190508181035f83015261214081612107565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121a1602283611768565b91506121ac82612147565b604082019050919050565b5f6020820190508181035f8301526121ce81612195565b9050919050565b5f6121df8261184c565b91506121ea8361184c565b925082820390508181111561220257612201611c0f565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f61223c600b83611768565b915061224782612208565b602082019050919050565b5f6020820190508181035f83015261226981612230565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6122a4601683611768565b91506122af82612270565b602082019050919050565b5f6020820190508181035f8301526122d181612298565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f61230c600683611768565b9150612317826122d8565b602082019050919050565b5f6020820190508181035f83015261233981612300565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123778261184c565b91506123828361184c565b92508261239257612391612340565b5b828204905092915050565b5f6123a78261184c565b91506123b28361184c565b92508282026123c08161184c565b915082820484148315176123d7576123d6611c0f565b5b509291505056fea26469706673582212209c1943136f5c7eb49e22f8edbbd779289861580549c72fd7ede8d1595c8b495864736f6c6343000819003300000000000000000000000000000000000014bddab3e51a57cff87a5000000000000000000000000000000000000000002882cf275b777382314ee4400000000000000000000000000000000000000000000000000000000000000000001388

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c806370a08231116100c1578063a457c2d71161007a578063a457c2d7146103b6578063a9059cbb146103e6578063b3fce17114610416578063ce6ba07214610434578063dd62ed3e14610452578063f2fde38b1461048257610156565b806370a0823114610304578063715018a614610334578063860a32ec1461033e57806389f9a1d31461035c5780638da5cb5b1461037a57806395d89b411461039857610156565b8063313ce56711610113578063313ce5671461024457806339509351146102625780633aa633aa14610292578063404e5129146102ae57806342966c68146102ca57806349bd5a5e146102e657610156565b806306fdde031461015a578063095ea7b31461017857806316c02129146101a857806318160ddd146101d85780631ab99e12146101f657806323b872dd14610214575b5f80fd5b61016261049e565b60405161016f91906117ce565b60405180910390f35b610192600480360381019061018d919061187f565b61052e565b60405161019f91906118d7565b60405180910390f35b6101c260048036038101906101bd91906118f0565b61054b565b6040516101cf91906118d7565b60405180910390f35b6101e0610568565b6040516101ed919061192a565b60405180910390f35b6101fe610571565b60405161020b919061192a565b60405180910390f35b61022e60048036038101906102299190611943565b610577565b60405161023b91906118d7565b60405180910390f35b61024c610669565b60405161025991906119ae565b60405180910390f35b61027c6004803603810190610277919061187f565b610671565b60405161028991906118d7565b60405180910390f35b6102ac60048036038101906102a791906119f1565b610718565b005b6102c860048036038101906102c39190611a55565b610801565b005b6102e460048036038101906102df9190611a93565b6108d5565b005b6102ee6108e2565b6040516102fb9190611acd565b60405180910390f35b61031e600480360381019061031991906118f0565b610907565b60405161032b919061192a565b60405180910390f35b61033c61094d565b005b6103466109d4565b60405161035391906118d7565b60405180910390f35b6103646109e6565b604051610371919061192a565b60405180910390f35b6103826109ec565b60405161038f9190611acd565b60405180910390f35b6103a0610a13565b6040516103ad91906117ce565b60405180910390f35b6103d060048036038101906103cb919061187f565b610aa3565b6040516103dd91906118d7565b60405180910390f35b61040060048036038101906103fb919061187f565b610b89565b60405161040d91906118d7565b60405180910390f35b61041e610ba6565b60405161042b919061192a565b60405180910390f35b61043c610bac565b604051610449919061192a565b60405180910390f35b61046c60048036038101906104679190611ae6565b610bb2565b604051610479919061192a565b60405180910390f35b61049c600480360381019061049791906118f0565b610c34565b005b6060600480546104ad90611b51565b80601f01602080910402602001604051908101604052809291908181526020018280546104d990611b51565b80156105245780601f106104fb57610100808354040283529160200191610524565b820191905f5260205f20905b81548152906001019060200180831161050757829003601f168201915b5050505050905090565b5f61054161053a610d2a565b8484610d31565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610583848484610ef4565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105ca610d2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064090611bf1565b60405180910390fd5b61065d85610655610d2a565b858403610d31565b60019150509392505050565b5f6012905090565b5f61070e61067d610d2a565b848460025f61068a610d2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107099190611c3c565b610d31565b6001905092915050565b610720610d2a565b73ffffffffffffffffffffffffffffffffffffffff1661073e6109ec565b73ffffffffffffffffffffffffffffffffffffffff1614610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b90611cb9565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b610809610d2a565b73ffffffffffffffffffffffffffffffffffffffff166108276109ec565b73ffffffffffffffffffffffffffffffffffffffff161461087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490611cb9565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6108df338261116c565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610955610d2a565b73ffffffffffffffffffffffffffffffffffffffff166109736109ec565b73ffffffffffffffffffffffffffffffffffffffff16146109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090611cb9565b60405180910390fd5b6109d25f61133a565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a2290611b51565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90611b51565b8015610a995780601f10610a7057610100808354040283529160200191610a99565b820191905f5260205f20905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b5f8060025f610ab0610d2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190611d47565b60405180910390fd5b610b7e610b75610d2a565b85858403610d31565b600191505092915050565b5f610b9c610b95610d2a565b8484610ef4565b6001905092915050565b600b5481565b600c5481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c3c610d2a565b73ffffffffffffffffffffffffffffffffffffffff16610c5a6109ec565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790611cb9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611dd5565b60405180910390fd5b610d278161133a565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611e63565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490611ef1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee7919061192a565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611f7f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc79061200d565b60405180910390fd5b610fdb8383836113fb565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561105f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110569061209b565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110ef9190611c3c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611153919061192a565b60405180910390a36111668484846116d7565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190612129565b60405180910390fd5b6111e5825f836113fb565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906121b7565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546112be91906121d5565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611322919061192a565b60405180910390a3611335835f846116d7565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156114995750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90612252565b60405180910390fd5b6114e06116dc565b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036115eb5761153c6109ec565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115a757506115786109ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906122ba565b60405180910390fd5b6116d2565b60065f9054906101000a900460ff168015611652575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116d1576007548161166484610907565b61166e9190611c3c565b1115801561169157506008548161168484610907565b61168e9190611c3c565b10155b6116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790612322565b60405180910390fd5b5b5b505050565b505050565b603c600c546116eb9190611c3c565b42111561175c575f603c600c544261170391906121d5565b61170d919061236d565b90505f81612710600b54600754611724919061239d565b61172e919061236d565b611738919061239d565b90508060075f82825461174b9190611c3c565b9250508190555042600c8190555050505b565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117a08261175e565b6117aa8185611768565b93506117ba818560208601611778565b6117c381611786565b840191505092915050565b5f6020820190508181035f8301526117e68184611796565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61181b826117f2565b9050919050565b61182b81611811565b8114611835575f80fd5b50565b5f8135905061184681611822565b92915050565b5f819050919050565b61185e8161184c565b8114611868575f80fd5b50565b5f8135905061187981611855565b92915050565b5f8060408385031215611895576118946117ee565b5b5f6118a285828601611838565b92505060206118b38582860161186b565b9150509250929050565b5f8115159050919050565b6118d1816118bd565b82525050565b5f6020820190506118ea5f8301846118c8565b92915050565b5f60208284031215611905576119046117ee565b5b5f61191284828501611838565b91505092915050565b6119248161184c565b82525050565b5f60208201905061193d5f83018461191b565b92915050565b5f805f6060848603121561195a576119596117ee565b5b5f61196786828701611838565b935050602061197886828701611838565b92505060406119898682870161186b565b9150509250925092565b5f60ff82169050919050565b6119a881611993565b82525050565b5f6020820190506119c15f83018461199f565b92915050565b6119d0816118bd565b81146119da575f80fd5b50565b5f813590506119eb816119c7565b92915050565b5f805f8060808587031215611a0957611a086117ee565b5b5f611a16878288016119dd565b9450506020611a2787828801611838565b9350506040611a388782880161186b565b9250506060611a498782880161186b565b91505092959194509250565b5f8060408385031215611a6b57611a6a6117ee565b5b5f611a7885828601611838565b9250506020611a89858286016119dd565b9150509250929050565b5f60208284031215611aa857611aa76117ee565b5b5f611ab58482850161186b565b91505092915050565b611ac781611811565b82525050565b5f602082019050611ae05f830184611abe565b92915050565b5f8060408385031215611afc57611afb6117ee565b5b5f611b0985828601611838565b9250506020611b1a85828601611838565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b6857607f821691505b602082108103611b7b57611b7a611b24565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611bdb602883611768565b9150611be682611b81565b604082019050919050565b5f6020820190508181035f830152611c0881611bcf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c468261184c565b9150611c518361184c565b9250828201905080821115611c6957611c68611c0f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ca3602083611768565b9150611cae82611c6f565b602082019050919050565b5f6020820190508181035f830152611cd081611c97565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611d31602583611768565b9150611d3c82611cd7565b604082019050919050565b5f6020820190508181035f830152611d5e81611d25565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611dbf602683611768565b9150611dca82611d65565b604082019050919050565b5f6020820190508181035f830152611dec81611db3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e4d602483611768565b9150611e5882611df3565b604082019050919050565b5f6020820190508181035f830152611e7a81611e41565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611edb602283611768565b9150611ee682611e81565b604082019050919050565b5f6020820190508181035f830152611f0881611ecf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f69602583611768565b9150611f7482611f0f565b604082019050919050565b5f6020820190508181035f830152611f9681611f5d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611ff7602383611768565b915061200282611f9d565b604082019050919050565b5f6020820190508181035f83015261202481611feb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612085602683611768565b91506120908261202b565b604082019050919050565b5f6020820190508181035f8301526120b281612079565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612113602183611768565b915061211e826120b9565b604082019050919050565b5f6020820190508181035f83015261214081612107565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121a1602283611768565b91506121ac82612147565b604082019050919050565b5f6020820190508181035f8301526121ce81612195565b9050919050565b5f6121df8261184c565b91506121ea8361184c565b925082820390508181111561220257612201611c0f565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f61223c600b83611768565b915061224782612208565b602082019050919050565b5f6020820190508181035f83015261226981612230565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6122a4601683611768565b91506122af82612270565b602082019050919050565b5f6020820190508181035f8301526122d181612298565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f61230c600683611768565b9150612317826122d8565b602082019050919050565b5f6020820190508181035f83015261233981612300565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6123778261184c565b91506123828361184c565b92508261239257612391612340565b5b828204905092915050565b5f6123a78261184c565b91506123b28361184c565b92508282026123c08161184c565b915082820484148315176123d7576123d6611c0f565b5b509291505056fea26469706673582212209c1943136f5c7eb49e22f8edbbd779289861580549c72fd7ede8d1595c8b495864736f6c63430008190033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000014bddab3e51a57cff87a5000000000000000000000000000000000000000002882cf275b777382314ee4400000000000000000000000000000000000000000000000000000000000000000001388

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000
Arg [1] : _initialMaxHolding (uint256): 210345000000000000000000000000000000
Arg [2] : _maxHoldingIncreaseRate (uint256): 5000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000
Arg [1] : 00000000000000000000000000000000002882cf275b777382314ee440000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001388


Deployed Bytecode Sourcemap

19374:2832:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9281:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11448:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19555:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10401:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12099:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10243:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13000:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20488:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20269:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22122:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19520:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10572:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2682:103;;;:::i;:::-;;19418:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19444:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2031:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9500:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13718:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10912:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19663:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19742:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11150:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2940:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9281:100;9335:13;9368:5;9361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9281:100;:::o;11448:169::-;11531:4;11548:39;11557:12;:10;:12::i;:::-;11571:7;11580:6;11548:8;:39::i;:::-;11605:4;11598:11;;11448:169;;;;:::o;19555:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10401:108::-;10462:7;10489:12;;10482:19;;10401:108;:::o;19482:31::-;;;;:::o;12099:492::-;12239:4;12256:36;12266:6;12274:9;12285:6;12256:9;:36::i;:::-;12305:24;12332:11;:19;12344:6;12332:19;;;;;;;;;;;;;;;:33;12352:12;:10;:12::i;:::-;12332:33;;;;;;;;;;;;;;;;12305:60;;12404:6;12384:16;:26;;12376:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12491:57;12500:6;12508:12;:10;:12::i;:::-;12541:6;12522:16;:25;12491:8;:57::i;:::-;12579:4;12572:11;;;12099:492;;;;;:::o;10243:93::-;10301:5;10326:2;10319:9;;10243:93;:::o;13000:215::-;13088:4;13105:80;13114:12;:10;:12::i;:::-;13128:7;13174:10;13137:11;:25;13149:12;:10;:12::i;:::-;13137:25;;;;;;;;;;;;;;;:34;13163:7;13137:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13105:8;:80::i;:::-;13203:4;13196:11;;13000:215;;;;:::o;20488:301::-;2262:12;:10;:12::i;:::-;2251:23;;:7;:5;:7::i;:::-;:23;;;2243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20638:8:::1;20628:7;;:18;;;;;;;;;;;;;;;;;;20673:14;20657:13;;:30;;;;;;;;;;;;;;;;;;20717:17;20698:16;:36;;;;20764:17;20745:16;:36;;;;20488:301:::0;;;;:::o;20269:135::-;2262:12;:10;:12::i;:::-;2251:23;;:7;:5;:7::i;:::-;:23;;;2243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20381:15:::1;20358:10;:20;20369:8;20358:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;20269:135:::0;;:::o;22122:81::-;22171:24;22177:10;22189:5;22171;:24::i;:::-;22122:81;:::o;19520:28::-;;;;;;;;;;;;;:::o;10572:127::-;10646:7;10673:9;:18;10683:7;10673:18;;;;;;;;;;;;;;;;10666:25;;10572:127;;;:::o;2682:103::-;2262:12;:10;:12::i;:::-;2251:23;;:7;:5;:7::i;:::-;:23;;;2243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2747:30:::1;2774:1;2747:18;:30::i;:::-;2682:103::o:0;19418:19::-;;;;;;;;;;;;;:::o;19444:31::-;;;;:::o;2031:87::-;2077:7;2104:6;;;;;;;;;;;2097:13;;2031:87;:::o;9500:104::-;9556:13;9589:7;9582:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9500:104;:::o;13718:413::-;13811:4;13828:24;13855:11;:25;13867:12;:10;:12::i;:::-;13855:25;;;;;;;;;;;;;;;:34;13881:7;13855:34;;;;;;;;;;;;;;;;13828:61;;13928:15;13908:16;:35;;13900:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14021:67;14030:12;:10;:12::i;:::-;14044:7;14072:15;14053:16;:34;14021:8;:67::i;:::-;14119:4;14112:11;;;13718:413;;;;:::o;10912:175::-;10998:4;11015:42;11025:12;:10;:12::i;:::-;11039:9;11050:6;11015:9;:42::i;:::-;11075:4;11068:11;;10912:175;;;;:::o;19663:37::-;;;;:::o;19742:39::-;;;;:::o;11150:151::-;11239:7;11266:11;:18;11278:5;11266:18;;;;;;;;;;;;;;;:27;11285:7;11266:27;;;;;;;;;;;;;;;;11259:34;;11150:151;;;;:::o;2940:201::-;2262:12;:10;:12::i;:::-;2251:23;;:7;:5;:7::i;:::-;:23;;;2243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3049:1:::1;3029:22;;:8;:22;;::::0;3021:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3105:28;3124:8;3105:18;:28::i;:::-;2940:201:::0;:::o;749:98::-;802:7;829:10;822:17;;749:98;:::o;17402:380::-;17555:1;17538:19;;:5;:19;;;17530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17636:1;17617:21;;:7;:21;;;17609:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17720:6;17690:11;:18;17702:5;17690:18;;;;;;;;;;;;;;;:27;17709:7;17690:27;;;;;;;;;;;;;;;:36;;;;17758:7;17742:32;;17751:5;17742:32;;;17767:6;17742:32;;;;;;:::i;:::-;;;;;;;;17402:380;;;:::o;14621:733::-;14779:1;14761:20;;:6;:20;;;14753:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14863:1;14842:23;;:9;:23;;;14834:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14918:47;14939:6;14947:9;14958:6;14918:20;:47::i;:::-;14978:21;15002:9;:17;15012:6;15002:17;;;;;;;;;;;;;;;;14978:41;;15055:6;15038:13;:23;;15030:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15176:6;15160:13;:22;15140:9;:17;15150:6;15140:17;;;;;;;;;;;;;;;:42;;;;15228:6;15204:9;:20;15214:9;15204:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15269:9;15252:35;;15261:6;15252:35;;;15280:6;15252:35;;;;;;:::i;:::-;;;;;;;;15300:46;15320:6;15328:9;15339:6;15300:19;:46::i;:::-;14742:612;14621:733;;;:::o;16373:591::-;16476:1;16457:21;;:7;:21;;;16449:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16529:49;16550:7;16567:1;16571:6;16529:20;:49::i;:::-;16591:22;16616:9;:18;16626:7;16616:18;;;;;;;;;;;;;;;;16591:43;;16671:6;16653:14;:24;;16645:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16790:6;16773:14;:23;16752:9;:18;16762:7;16752:18;;;;;;;;;;;;;;;:44;;;;16834:6;16818:12;;:22;;;;;;;:::i;:::-;;;;;;;;16884:1;16858:37;;16867:7;16858:37;;;16888:6;16858:37;;;;;;:::i;:::-;;;;;;;;16908:48;16928:7;16945:1;16949:6;16908:19;:48::i;:::-;16438:526;16373:591;;:::o;3301:191::-;3375:16;3394:6;;;;;;;;;;;3375:25;;3420:8;3411:6;;:17;;;;;;;;;;;;;;;;;;3475:8;3444:40;;3465:8;3444:40;;;;;;;;;;;;3364:128;3301:191;:::o;21398:658::-;21550:10;:14;21561:2;21550:14;;;;;;;;;;;;;;;;;;;;;;;;;21549:15;:36;;;;;21569:10;:16;21580:4;21569:16;;;;;;;;;;;;;;;;;;;;;;;;;21568:17;21549:36;21541:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21668:24;:22;:24::i;:::-;21734:1;21709:27;;:13;;;;;;;;;;;:27;;;21705:148;;21769:7;:5;:7::i;:::-;21761:15;;:4;:15;;;:32;;;;21786:7;:5;:7::i;:::-;21780:13;;:2;:13;;;21761:32;21753:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21835:7;;21705:148;21869:7;;;;;;;;;;;:32;;;;;21888:13;;;;;;;;;;;21880:21;;:4;:21;;;21869:32;21865:184;;;21958:16;;21948:6;21926:19;21942:2;21926:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22010:16;;22000:6;21978:19;21994:2;21978:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21926:100;21918:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21865:184;21398:658;;;;:::o;19111:124::-;;;;:::o;20881:429::-;20984:9;20957:24;;:36;;;;:::i;:::-;20939:15;:54;20935:368;;;21010:22;21082:9;21054:24;;21036:15;:42;;;;:::i;:::-;21035:56;;;;:::i;:::-;21010:81;;21106:16;21177:14;21169:5;21144:22;;21125:16;;:41;;;;:::i;:::-;:49;;;;:::i;:::-;:66;;;;:::i;:::-;21106:85;;21226:8;21206:16;;:28;;;;;;;:::i;:::-;;;;;;;;21276:15;21249:24;:42;;;;20995:308;;20935:368;20881:429::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:116::-;5151:21;5166:5;5151:21;:::i;:::-;5144:5;5141:32;5131:60;;5187:1;5184;5177:12;5131:60;5081:116;:::o;5203:133::-;5246:5;5284:6;5271:20;5262:29;;5300:30;5324:5;5300:30;:::i;:::-;5203:133;;;;:::o;5342:759::-;5425:6;5433;5441;5449;5498:3;5486:9;5477:7;5473:23;5469:33;5466:120;;;5505:79;;:::i;:::-;5466:120;5625:1;5650:50;5692:7;5683:6;5672:9;5668:22;5650:50;:::i;:::-;5640:60;;5596:114;5749:2;5775:53;5820:7;5811:6;5800:9;5796:22;5775:53;:::i;:::-;5765:63;;5720:118;5877:2;5903:53;5948:7;5939:6;5928:9;5924:22;5903:53;:::i;:::-;5893:63;;5848:118;6005:2;6031:53;6076:7;6067:6;6056:9;6052:22;6031:53;:::i;:::-;6021:63;;5976:118;5342:759;;;;;;;:::o;6107:468::-;6172:6;6180;6229:2;6217:9;6208:7;6204:23;6200:32;6197:119;;;6235:79;;:::i;:::-;6197:119;6355:1;6380:53;6425:7;6416:6;6405:9;6401:22;6380:53;:::i;:::-;6370:63;;6326:117;6482:2;6508:50;6550:7;6541:6;6530:9;6526:22;6508:50;:::i;:::-;6498:60;;6453:115;6107:468;;;;;:::o;6581:329::-;6640:6;6689:2;6677:9;6668:7;6664:23;6660:32;6657:119;;;6695:79;;:::i;:::-;6657:119;6815:1;6840:53;6885:7;6876:6;6865:9;6861:22;6840:53;:::i;:::-;6830:63;;6786:117;6581:329;;;;:::o;6916:118::-;7003:24;7021:5;7003:24;:::i;:::-;6998:3;6991:37;6916:118;;:::o;7040:222::-;7133:4;7171:2;7160:9;7156:18;7148:26;;7184:71;7252:1;7241:9;7237:17;7228:6;7184:71;:::i;:::-;7040:222;;;;:::o;7268:474::-;7336:6;7344;7393:2;7381:9;7372:7;7368:23;7364:32;7361:119;;;7399:79;;:::i;:::-;7361:119;7519:1;7544:53;7589:7;7580:6;7569:9;7565:22;7544:53;:::i;:::-;7534:63;;7490:117;7646:2;7672:53;7717:7;7708:6;7697:9;7693:22;7672:53;:::i;:::-;7662:63;;7617:118;7268:474;;;;;:::o;7748:180::-;7796:77;7793:1;7786:88;7893:4;7890:1;7883:15;7917:4;7914:1;7907:15;7934:320;7978:6;8015:1;8009:4;8005:12;7995:22;;8062:1;8056:4;8052:12;8083:18;8073:81;;8139:4;8131:6;8127:17;8117:27;;8073:81;8201:2;8193:6;8190:14;8170:18;8167:38;8164:84;;8220:18;;:::i;:::-;8164:84;7985:269;7934:320;;;:::o;8260:227::-;8400:34;8396:1;8388:6;8384:14;8377:58;8469:10;8464:2;8456:6;8452:15;8445:35;8260:227;:::o;8493:366::-;8635:3;8656:67;8720:2;8715:3;8656:67;:::i;:::-;8649:74;;8732:93;8821:3;8732:93;:::i;:::-;8850:2;8845:3;8841:12;8834:19;;8493:366;;;:::o;8865:419::-;9031:4;9069:2;9058:9;9054:18;9046:26;;9118:9;9112:4;9108:20;9104:1;9093:9;9089:17;9082:47;9146:131;9272:4;9146:131;:::i;:::-;9138:139;;8865:419;;;:::o;9290:180::-;9338:77;9335:1;9328:88;9435:4;9432:1;9425:15;9459:4;9456:1;9449:15;9476:191;9516:3;9535:20;9553:1;9535:20;:::i;:::-;9530:25;;9569:20;9587:1;9569:20;:::i;:::-;9564:25;;9612:1;9609;9605:9;9598:16;;9633:3;9630:1;9627:10;9624:36;;;9640:18;;:::i;:::-;9624:36;9476:191;;;;:::o;9673:182::-;9813:34;9809:1;9801:6;9797:14;9790:58;9673:182;:::o;9861:366::-;10003:3;10024:67;10088:2;10083:3;10024:67;:::i;:::-;10017:74;;10100:93;10189:3;10100:93;:::i;:::-;10218:2;10213:3;10209:12;10202:19;;9861:366;;;:::o;10233:419::-;10399:4;10437:2;10426:9;10422:18;10414:26;;10486:9;10480:4;10476:20;10472:1;10461:9;10457:17;10450:47;10514:131;10640:4;10514:131;:::i;:::-;10506:139;;10233:419;;;:::o;10658:224::-;10798:34;10794:1;10786:6;10782:14;10775:58;10867:7;10862:2;10854:6;10850:15;10843:32;10658:224;:::o;10888:366::-;11030:3;11051:67;11115:2;11110:3;11051:67;:::i;:::-;11044:74;;11127:93;11216:3;11127:93;:::i;:::-;11245:2;11240:3;11236:12;11229:19;;10888:366;;;:::o;11260:419::-;11426:4;11464:2;11453:9;11449:18;11441:26;;11513:9;11507:4;11503:20;11499:1;11488:9;11484:17;11477:47;11541:131;11667:4;11541:131;:::i;:::-;11533:139;;11260:419;;;:::o;11685:225::-;11825:34;11821:1;11813:6;11809:14;11802:58;11894:8;11889:2;11881:6;11877:15;11870:33;11685:225;:::o;11916:366::-;12058:3;12079:67;12143:2;12138:3;12079:67;:::i;:::-;12072:74;;12155:93;12244:3;12155:93;:::i;:::-;12273:2;12268:3;12264:12;12257:19;;11916:366;;;:::o;12288:419::-;12454:4;12492:2;12481:9;12477:18;12469:26;;12541:9;12535:4;12531:20;12527:1;12516:9;12512:17;12505:47;12569:131;12695:4;12569:131;:::i;:::-;12561:139;;12288:419;;;:::o;12713:223::-;12853:34;12849:1;12841:6;12837:14;12830:58;12922:6;12917:2;12909:6;12905:15;12898:31;12713:223;:::o;12942:366::-;13084:3;13105:67;13169:2;13164:3;13105:67;:::i;:::-;13098:74;;13181:93;13270:3;13181:93;:::i;:::-;13299:2;13294:3;13290:12;13283:19;;12942:366;;;:::o;13314:419::-;13480:4;13518:2;13507:9;13503:18;13495:26;;13567:9;13561:4;13557:20;13553:1;13542:9;13538:17;13531:47;13595:131;13721:4;13595:131;:::i;:::-;13587:139;;13314:419;;;:::o;13739:221::-;13879:34;13875:1;13867:6;13863:14;13856:58;13948:4;13943:2;13935:6;13931:15;13924:29;13739:221;:::o;13966:366::-;14108:3;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14205:93;14294:3;14205:93;:::i;:::-;14323:2;14318:3;14314:12;14307:19;;13966:366;;;:::o;14338:419::-;14504:4;14542:2;14531:9;14527:18;14519:26;;14591:9;14585:4;14581:20;14577:1;14566:9;14562:17;14555:47;14619:131;14745:4;14619:131;:::i;:::-;14611:139;;14338:419;;;:::o;14763:224::-;14903:34;14899:1;14891:6;14887:14;14880:58;14972:7;14967:2;14959:6;14955:15;14948:32;14763:224;:::o;14993:366::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:419::-;15531:4;15569:2;15558:9;15554:18;15546:26;;15618:9;15612:4;15608:20;15604:1;15593:9;15589:17;15582:47;15646:131;15772:4;15646:131;:::i;:::-;15638:139;;15365:419;;;:::o;15790:222::-;15930:34;15926:1;15918:6;15914:14;15907:58;15999:5;15994:2;15986:6;15982:15;15975:30;15790:222;:::o;16018:366::-;16160:3;16181:67;16245:2;16240:3;16181:67;:::i;:::-;16174:74;;16257:93;16346:3;16257:93;:::i;:::-;16375:2;16370:3;16366:12;16359:19;;16018:366;;;:::o;16390:419::-;16556:4;16594:2;16583:9;16579:18;16571:26;;16643:9;16637:4;16633:20;16629:1;16618:9;16614:17;16607:47;16671:131;16797:4;16671:131;:::i;:::-;16663:139;;16390:419;;;:::o;16815:225::-;16955:34;16951:1;16943:6;16939:14;16932:58;17024:8;17019:2;17011:6;17007:15;17000:33;16815:225;:::o;17046:366::-;17188:3;17209:67;17273:2;17268:3;17209:67;:::i;:::-;17202:74;;17285:93;17374:3;17285:93;:::i;:::-;17403:2;17398:3;17394:12;17387:19;;17046:366;;;:::o;17418:419::-;17584:4;17622:2;17611:9;17607:18;17599:26;;17671:9;17665:4;17661:20;17657:1;17646:9;17642:17;17635:47;17699:131;17825:4;17699:131;:::i;:::-;17691:139;;17418:419;;;:::o;17843:220::-;17983:34;17979:1;17971:6;17967:14;17960:58;18052:3;18047:2;18039:6;18035:15;18028:28;17843:220;:::o;18069:366::-;18211:3;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18069:366;;;:::o;18441:419::-;18607:4;18645:2;18634:9;18630:18;18622:26;;18694:9;18688:4;18684:20;18680:1;18669:9;18665:17;18658:47;18722:131;18848:4;18722:131;:::i;:::-;18714:139;;18441:419;;;:::o;18866:221::-;19006:34;19002:1;18994:6;18990:14;18983:58;19075:4;19070:2;19062:6;19058:15;19051:29;18866:221;:::o;19093:366::-;19235:3;19256:67;19320:2;19315:3;19256:67;:::i;:::-;19249:74;;19332:93;19421:3;19332:93;:::i;:::-;19450:2;19445:3;19441:12;19434:19;;19093:366;;;:::o;19465:419::-;19631:4;19669:2;19658:9;19654:18;19646:26;;19718:9;19712:4;19708:20;19704:1;19693:9;19689:17;19682:47;19746:131;19872:4;19746:131;:::i;:::-;19738:139;;19465:419;;;:::o;19890:194::-;19930:4;19950:20;19968:1;19950:20;:::i;:::-;19945:25;;19984:20;20002:1;19984:20;:::i;:::-;19979:25;;20028:1;20025;20021:9;20013:17;;20052:1;20046:4;20043:11;20040:37;;;20057:18;;:::i;:::-;20040:37;19890:194;;;;:::o;20090:161::-;20230:13;20226:1;20218:6;20214:14;20207:37;20090:161;:::o;20257:366::-;20399:3;20420:67;20484:2;20479:3;20420:67;:::i;:::-;20413:74;;20496:93;20585:3;20496:93;:::i;:::-;20614:2;20609:3;20605:12;20598:19;;20257:366;;;:::o;20629:419::-;20795:4;20833:2;20822:9;20818:18;20810:26;;20882:9;20876:4;20872:20;20868:1;20857:9;20853:17;20846:47;20910:131;21036:4;20910:131;:::i;:::-;20902:139;;20629:419;;;:::o;21054:172::-;21194:24;21190:1;21182:6;21178:14;21171:48;21054:172;:::o;21232:366::-;21374:3;21395:67;21459:2;21454:3;21395:67;:::i;:::-;21388:74;;21471:93;21560:3;21471:93;:::i;:::-;21589:2;21584:3;21580:12;21573:19;;21232:366;;;:::o;21604:419::-;21770:4;21808:2;21797:9;21793:18;21785:26;;21857:9;21851:4;21847:20;21843:1;21832:9;21828:17;21821:47;21885:131;22011:4;21885:131;:::i;:::-;21877:139;;21604:419;;;:::o;22029:156::-;22169:8;22165:1;22157:6;22153:14;22146:32;22029:156;:::o;22191:365::-;22333:3;22354:66;22418:1;22413:3;22354:66;:::i;:::-;22347:73;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22191:365;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o;22987:180::-;23035:77;23032:1;23025:88;23132:4;23129:1;23122:15;23156:4;23153:1;23146:15;23173:185;23213:1;23230:20;23248:1;23230:20;:::i;:::-;23225:25;;23264:20;23282:1;23264:20;:::i;:::-;23259:25;;23303:1;23293:35;;23308:18;;:::i;:::-;23293:35;23350:1;23347;23343:9;23338:14;;23173:185;;;;:::o;23364:410::-;23404:7;23427:20;23445:1;23427:20;:::i;:::-;23422:25;;23461:20;23479:1;23461:20;:::i;:::-;23456:25;;23516:1;23513;23509:9;23538:30;23556:11;23538:30;:::i;:::-;23527:41;;23717:1;23708:7;23704:15;23701:1;23698:22;23678:1;23671:9;23651:83;23628:139;;23747:18;;:::i;:::-;23628:139;23412:362;23364:410;;;;:::o

Swarm Source

ipfs://9c1943136f5c7eb49e22f8edbbd779289861580549c72fd7ede8d1595c8b4958

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.