ETH Price: $3,020.89 (+2.08%)
Gas: 1 Gwei

Token

SAX (SAX)
 

Overview

Max Total Supply

100,000,000 SAX

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
yalor.eth
Balance
13,196 SAX

Value
$0.00
0x66b1De0f14a0ce971F7f248415063D44CAF19398
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SaxToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : SaxToken.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "./WhiteListable.sol";
import "./Restrictable.sol";
import "./ERC1404.sol";

contract SaxToken is ERC1404, WhiteListable, Restrictable {

    // Token Details
    string constant TOKEN_NAME = "SAX";
    string constant TOKEN_SYMBOL = "SAX";
    uint8 constant TOKEN_DECIMALS = 18;

    // Token supply - 1 Million Tokens, with 18 decimal precision
    uint256 constant MILLION = 100000000;
    uint256 constant TOKEN_SUPPLY = MILLION * (10 ** uint256(TOKEN_DECIMALS));

    // ERC1404 Error codes and messages
    uint8 public constant SUCCESS_CODE = 0;
    uint8 public constant FAILURE_NON_WHITELIST = 1;
    string public constant SUCCESS_MESSAGE = "SUCCESS";
    string public constant FAILURE_NON_WHITELIST_MESSAGE = "The transfer was restricted due to white list configuration.";
    string public constant UNKNOWN_ERROR = "Unknown Error Code";


    /**
    Constructor for the token to set readable details and mint all tokens
    to the contract creator.
     */
    constructor(address owner)
        ERC20(TOKEN_NAME, TOKEN_SYMBOL)
    {		
        _transferOwnership(owner);
        _mint(owner, TOKEN_SUPPLY);
    }

    /**
    This function detects whether a transfer should be restricted and not allowed.
    If the function returns SUCCESS_CODE (0) then it should be allowed.
     */
    function detectTransferRestriction (address from, address to, uint256)
        public
        override
        view
        returns (uint8)
    {               
        // If the restrictions have been disabled by the owner, then just return success
        // Logic defined in Restrictable parent class
        if(!isRestrictionEnabled()) {
            return SUCCESS_CODE;
        }

        // If the contract owner is transferring, then ignore reistrictions        
        if(from == owner()) {
            return SUCCESS_CODE;
        }

        // Restrictions are enabled, so verify the whitelist config allows the transfer.
        // Logic defined in Whitelistable parent class
        if(!checkWhitelistAllowed(from, to)) {
            return FAILURE_NON_WHITELIST;
        }

        // If no restrictions were triggered return success
        return SUCCESS_CODE;
    }
    
    /**
    This function allows a wallet or other client to get a human readable string to show
    a user if a transfer was restricted.  It should return enough information for the user
    to know why it failed.
     */
    function messageForTransferRestriction (uint8 restrictionCode)
        public
        override
        pure
        returns (string memory)
    {
        if (restrictionCode == SUCCESS_CODE) {
            return SUCCESS_MESSAGE;
        }

        if (restrictionCode == FAILURE_NON_WHITELIST) {
            return FAILURE_NON_WHITELIST_MESSAGE;
        }

        // An unknown error code was passed in.
        return UNKNOWN_ERROR;
    }

    /**
    Evaluates whether a transfer should be allowed or not.
     */
    modifier notRestricted (address from, address to, uint256 value) {        
        uint8 restrictionCode = detectTransferRestriction(from, to, value);
        require(restrictionCode == SUCCESS_CODE, messageForTransferRestriction(restrictionCode));
        _;
    }

    /**
    Overrides the parent class token transfer function to enforce restrictions.
     */
    function transfer (address to, uint256 value)
        public
        override
        notRestricted(msg.sender, to, value)
        returns (bool success)
    {
        success = super.transfer(to, value);
    }

    /**
    Overrides the parent class token transferFrom function to enforce restrictions.
     */
    function transferFrom (address from, address to, uint256 value)
        public
        override
        notRestricted(from, to, value)
        returns (bool success)
    {
        success = super.transferFrom(from, to, value);
    }
}

File 2 of 10 : WhiteListable.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./Administratable.sol";

/**
Keeps track of whitelists and can check if sender and reciever are configured to allow a transfer.
Only administrators can update the whitelists.
Any address can only be a member of one whitelist at a time.
 */
contract WhiteListable is Administratable {
    // Zero is reserved for indicating it is not on a whitelist
    uint8 constant NO_WHITELIST = 0;

    // The mapping to keep track of which whitelist any address belongs to.
    // 0 is reserved for no whitelist and is the default for all addresses.
    mapping (address => uint8) public addressWhitelists;

    // The mapping to keep track of each whitelist's outbound whitelist flags.
    // Boolean flag indicates whether outbound transfers are enabled.
    mapping(uint8 => mapping (uint8 => bool)) public outboundWhitelistsEnabled;

    // Events to allow tracking add/remove.
    event AddressAddedToWhitelist(address indexed addedAddress, uint8 indexed whitelist, address indexed addedBy);
    event AddressRemovedFromWhitelist(address indexed removedAddress, uint8 indexed whitelist, address indexed removedBy);
    event OutboundWhitelistUpdated(address indexed updatedBy, uint8 indexed sourceWhitelist, uint8 indexed destinationWhitelist, bool from, bool to);

    /**
    Sets an address's white list ID.  Only administrators should be allowed to update this.
    If an address is on an existing whitelist, it will just get updated to the new value (removed from previous).
     */
    function addToWhitelist(address addressToAdd, uint8 whitelist) public onlyAdministrator {
        // Verify the whitelist is valid
        require(whitelist != NO_WHITELIST, "Invalid whitelist ID supplied");

        // Save off the previous white list
        uint8 previousWhitelist = addressWhitelists[addressToAdd];

        // Set the address's white list ID
        addressWhitelists[addressToAdd] = whitelist;        

        // If the previous whitelist existed then we want to indicate it has been removed
        if(previousWhitelist != NO_WHITELIST) {
            // Emit the event for tracking
            emit AddressRemovedFromWhitelist(addressToAdd, previousWhitelist, msg.sender);
        }

        // Emit the event for new whitelist
        emit AddressAddedToWhitelist(addressToAdd, whitelist, msg.sender);
    }

    /**
    Clears out an address's white list ID.  Only administrators should be allowed to update this.
     */
    function removeFromWhitelist(address addressToRemove) public onlyAdministrator {
        // Save off the previous white list
        uint8 previousWhitelist = addressWhitelists[addressToRemove];

        // Zero out the previous white list
        addressWhitelists[addressToRemove] = NO_WHITELIST;

        // Emit the event for tracking
        emit AddressRemovedFromWhitelist(addressToRemove, previousWhitelist, msg.sender);
    }

    /**
    Sets the flag to indicate whether source whitelist is allowed to send to destination whitelist.
    Only administrators should be allowed to update this.
     */
    function updateOutboundWhitelistEnabled(uint8 sourceWhitelist, uint8 destinationWhitelist, bool newEnabledValue) public onlyAdministrator {
        // Get the old enabled flag
        bool oldEnabledValue = outboundWhitelistsEnabled[sourceWhitelist][destinationWhitelist];

        // Update to the new value
        outboundWhitelistsEnabled[sourceWhitelist][destinationWhitelist] = newEnabledValue;

        // Emit event for tracking
        emit OutboundWhitelistUpdated(msg.sender, sourceWhitelist, destinationWhitelist, oldEnabledValue, newEnabledValue);
    }

    /**
    Determine if the a sender is allowed to send to the receiver.
    The source whitelist must be enabled to send to the whitelist where the receive exists.
     */
    function checkWhitelistAllowed(address sender, address receiver) public view returns (bool) {
        // First get each address white list
        uint8 senderWhiteList = addressWhitelists[sender];
        uint8 receiverWhiteList = addressWhitelists[receiver];

        // If either address is not on a white list then the check should fail
        if(senderWhiteList == NO_WHITELIST || receiverWhiteList == NO_WHITELIST){
            return false;
        }

        // Determine if the sending whitelist is allowed to send to the destination whitelist        
        return outboundWhitelistsEnabled[senderWhiteList][receiverWhiteList];
    }
}

File 3 of 10 : Restrictable.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

/**
Restrictions start off as enabled.
Once they are disabled, they cannot be re-enabled.
Only the owner may disable restrictions.
 */
contract Restrictable is Ownable {
    // State variable to track whether restrictions are enabled.  Defaults to true.
    bool private _restrictionsEnabled = true;

    // Event emitted when flag is disabled
    event RestrictionsDisabled(address indexed owner);

    /**
    View function to determine if restrictions are enabled
     */
    function isRestrictionEnabled() public view returns (bool) {
        return _restrictionsEnabled;
    }

    /**
    Function to update the enabled flag on restrictions to disabled.  Only the owner should be able to call.
    This is a permanent change that cannot be undone
     */
    function disableRestrictions() public onlyOwner {
        require(_restrictionsEnabled, "Restrictions are already disabled.");
        
        // Set the flag
        _restrictionsEnabled = false;

        // Trigger the event
        emit RestrictionsDisabled(msg.sender);
    }
}

File 4 of 10 : ERC1404.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

abstract contract ERC1404 is ERC20{
    /// @notice Detects if a transfer will be reverted and if so returns an appropriate reference code
    /// @param from Sending address
    /// @param to Receiving address
    /// @param value Amount of tokens being transferred
    /// @return Code by which to reference message for rejection reasoning
    /// @dev Overwrite with your custom transfer restriction logic
    function detectTransferRestriction (address from, address to, uint256 value) virtual public view returns (uint8);

    /// @notice Returns a human-readable message for a given restriction code
    /// @param restrictionCode Identifier for looking up a message
    /// @return Text showing the restriction's reasoning
    /// @dev Overwrite with your custom message and restrictionCode handling
    function messageForTransferRestriction (uint8 restrictionCode) virtual public view returns (string memory);
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 10 : Administratable.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

/**
This contract allows a list of administrators to be tracked.  This list can then be enforced
on functions with administrative permissions.  Only the owner of the contract should be allowed
to modify the administrator list.
 */
contract Administratable is Ownable {

    // The mapping to track administrator accounts - true is reserved for admin addresses.
    mapping (address => bool) public administrators;

    // Events to allow tracking add/remove.
    event AdminAdded(address indexed addedAdmin, address indexed addedBy);
    event AdminRemoved(address indexed removedAdmin, address indexed removedBy);

    /**
    Function modifier to enforce administrative permissions.
     */
    modifier onlyAdministrator() {
        require(isAdministrator(msg.sender), "Calling account is not an administrator.");
        _;
    }

    /**
    Determine if the message sender is in the administrators list.
     */
    function isAdministrator(address addressToTest) public view returns (bool) {
        return administrators[addressToTest];
    }

    /**
    Add an admin to the list.  This should only be callable by the owner of the contract.
     */
    function addAdmin(address adminToAdd) public onlyOwner {
        // Verify the account is not already an admin
        require(administrators[adminToAdd] == false, "Account to be added to admin list is already an admin");

        // Set the address mapping to true to indicate it is an administrator account.
        administrators[adminToAdd] = true;

        // Emit the event for any watchers.
        emit AdminAdded(adminToAdd, msg.sender);
    }

    /**
    Remove an admin from the list.  This should only be callable by the owner of the contract.
     */
    function removeAdmin(address adminToRemove) public onlyOwner {
        // Verify the account is an admin
        require(administrators[adminToRemove] == true, "Account to be removed from admin list is not already an admin");

        // Set the address mapping to false to indicate it is NOT an administrator account.  
        administrators[adminToRemove] = false;

        // Emit the event for any watchers.
        emit AdminRemoved(adminToRemove, msg.sender);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 8 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addedAddress","type":"address"},{"indexed":true,"internalType":"uint8","name":"whitelist","type":"uint8"},{"indexed":true,"internalType":"address","name":"addedBy","type":"address"}],"name":"AddressAddedToWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"removedAddress","type":"address"},{"indexed":true,"internalType":"uint8","name":"whitelist","type":"uint8"},{"indexed":true,"internalType":"address","name":"removedBy","type":"address"}],"name":"AddressRemovedFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addedAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"addedBy","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"removedAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"removedBy","type":"address"}],"name":"AdminRemoved","type":"event"},{"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":"updatedBy","type":"address"},{"indexed":true,"internalType":"uint8","name":"sourceWhitelist","type":"uint8"},{"indexed":true,"internalType":"uint8","name":"destinationWhitelist","type":"uint8"},{"indexed":false,"internalType":"bool","name":"from","type":"bool"},{"indexed":false,"internalType":"bool","name":"to","type":"bool"}],"name":"OutboundWhitelistUpdated","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":"owner","type":"address"}],"name":"RestrictionsDisabled","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":[],"name":"FAILURE_NON_WHITELIST","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FAILURE_NON_WHITELIST_MESSAGE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUCCESS_CODE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUCCESS_MESSAGE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNKNOWN_ERROR","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adminToAdd","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToAdd","type":"address"},{"internalType":"uint8","name":"whitelist","type":"uint8"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWhitelists","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"administrators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"checkWhitelistAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"detectTransferRestriction","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToTest","type":"address"}],"name":"isAdministrator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRestrictionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"restrictionCode","type":"uint8"}],"name":"messageForTransferRestriction","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"outboundWhitelistsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adminToRemove","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToRemove","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"sourceWhitelist","type":"uint8"},{"internalType":"uint8","name":"destinationWhitelist","type":"uint8"},{"internalType":"bool","name":"newEnabledValue","type":"bool"}],"name":"updateOutboundWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600960006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200353538038062003535833981810160405281019062000052919062000477565b6040518060400160405280600381526020017f53415800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53415800000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d6929190620003b0565b508060049080519060200190620000ef929190620003b0565b50505062000112620001066200015f60201b60201c565b6200016760201b60201c565b62000123816200016760201b60201c565b6200015881601260ff16600a6200013b9190620005e3565b6305f5e1006200014c919062000720565b6200022d60201b60201c565b50620008a3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029790620004db565b60405180910390fd5b620002b460008383620003a660201b60201c565b8060026000828254620002c891906200052b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031f91906200052b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003869190620004fd565b60405180910390a3620003a260008383620003ab60201b60201c565b5050565b505050565b505050565b828054620003be90620007bf565b90600052602060002090601f016020900481019282620003e257600085556200042e565b82601f10620003fd57805160ff19168380011785556200042e565b828001600101855582156200042e579182015b828111156200042d57825182559160200191906001019062000410565b5b5090506200043d919062000441565b5090565b5b808211156200045c57600081600090555060010162000442565b5090565b600081519050620004718162000889565b92915050565b6000602082840312156200048a57600080fd5b60006200049a8482850162000460565b91505092915050565b6000620004b2601f836200051a565b9150620004bf8262000860565b602082019050919050565b620004d581620007b5565b82525050565b60006020820190508181036000830152620004f681620004a3565b9050919050565b6000602082019050620005146000830184620004ca565b92915050565b600082825260208201905092915050565b60006200053882620007b5565b91506200054583620007b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200057d576200057c620007f5565b5b828201905092915050565b6000808291508390505b6001851115620005da57808604811115620005b257620005b1620007f5565b5b6001851615620005c25780820291505b8081029050620005d28562000853565b945062000592565b94509492505050565b6000620005f082620007b5565b9150620005fd83620007b5565b92506200062c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000634565b905092915050565b60008262000646576001905062000719565b8162000656576000905062000719565b81600181146200066f57600281146200067a57620006b0565b600191505062000719565b60ff8411156200068f576200068e620007f5565b5b8360020a915084821115620006a957620006a8620007f5565b5b5062000719565b5060208310610133831016604e8410600b8410161715620006ea5782820a905083811115620006e457620006e3620007f5565b5b62000719565b620006f9848484600162000588565b92509050818404811115620007135762000712620007f5565b5b81810290505b9392505050565b60006200072d82620007b5565b91506200073a83620007b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007765762000775620007f5565b5b828202905092915050565b60006200078e8262000795565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620007d857607f821691505b60208210811415620007ef57620007ee62000824565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620008948162000781565b8114620008a057600080fd5b50565b612c8280620008b36000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806376be15851161011a578063a457c2d7116100ad578063dce306ad1161007c578063dce306ad14610602578063dd62ed3e1461060c578063e7984d171461063c578063e95945081461065a578063f2fde38b1461068a576101fb565b8063a457c2d714610554578063a9059cbb14610584578063c8934462146105b4578063d4ce1415146105d2576101fb565b806392e6d68b116100e957806392e6d68b146104b85780639437e2fe146104e857806395d89b411461051857806397af674414610536576101fb565b806376be15851461041e5780637f4ab1dd1461044e5780638ab1d6811461047e5780638da5cb5b1461049a576101fb565b806323b872dd116101925780633973b596116101615780633973b596146103ac57806370480275146103c857806370a08231146103e4578063715018a614610414576101fb565b806323b872dd146103105780632a64240714610340578063313ce5671461035e578063395093511461037c576101fb565b80630e969a05116101ce5780630e969a051461029a5780631785f53c146102b857806318160ddd146102d45780631fb45ec0146102f2576101fb565b80630263b8581461020057806306fdde031461021c578063095ea7b31461023a5780630a2eb3011461026a575b600080fd5b61021a60048036038101906102159190612073565b6106a6565b005b6102246108b1565b6040516102319190612421565b60405180910390f35b610254600480360381019061024f9190612037565b610943565b60405161026191906123dd565b60405180910390f35b610284600480360381019061027f9190611f83565b610966565b60405161029191906123dd565b60405180910390f35b6102a26109bc565b6040516102af919061261e565b60405180910390f35b6102d260048036038101906102cd9190611f83565b6109c1565b005b6102dc610b85565b6040516102e99190612603565b60405180910390f35b6102fa610b8f565b604051610307919061261e565b60405180910390f35b61032a60048036038101906103259190611fe8565b610b94565b60405161033791906123dd565b60405180910390f35b610348610c15565b60405161035591906123dd565b60405180910390f35b610366610c2c565b604051610373919061261e565b60405180910390f35b61039660048036038101906103919190612037565b610c35565b6040516103a391906123dd565b60405180910390f35b6103c660048036038101906103c19190612114565b610c6c565b005b6103e260048036038101906103dd9190611f83565b610d9c565b005b6103fe60048036038101906103f99190611f83565b610f60565b60405161040b9190612603565b60405180910390f35b61041c610fa8565b005b61043860048036038101906104339190611f83565b611030565b60405161044591906123dd565b60405180910390f35b610468600480360381019061046391906120af565b611050565b6040516104759190612421565b60405180910390f35b61049860048036038101906104939190611f83565b61110b565b005b6104a261125f565b6040516104af91906123c2565b60405180910390f35b6104d260048036038101906104cd9190611f83565b611289565b6040516104df919061261e565b60405180910390f35b61050260048036038101906104fd9190611fac565b6112a9565b60405161050f91906123dd565b60405180910390f35b6105206113c0565b60405161052d9190612421565b60405180910390f35b61053e611452565b60405161054b9190612421565b60405180910390f35b61056e60048036038101906105699190612037565b61148b565b60405161057b91906123dd565b60405180910390f35b61059e60048036038101906105999190612037565b611502565b6040516105ab91906123dd565b60405180910390f35b6105bc611581565b6040516105c99190612421565b60405180910390f35b6105ec60048036038101906105e79190611fe8565b61159d565b6040516105f9919061261e565b60405180910390f35b61060a61161b565b005b61062660048036038101906106219190611fac565b611746565b6040516106339190612603565b60405180910390f35b6106446117cd565b6040516106519190612421565b60405180910390f35b610674600480360381019061066f91906120d8565b611806565b60405161068191906123dd565b60405180910390f35b6106a4600480360381019061069f9190611f83565b611835565b005b6106af33610966565b6106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590612523565b60405180910390fd5b600060ff168160ff161415610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90612443565b60405180910390fd5b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600060ff168160ff161461084e573373ffffffffffffffffffffffffffffffffffffffff168160ff168473ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a45b3373ffffffffffffffffffffffffffffffffffffffff168260ff168473ffffffffffffffffffffffffffffffffffffffff167fca6d1e885708b837a7647aeb7f4163ee4ca96058e08ac767be8d23c972c5027060405160405180910390a4505050565b6060600380546108c090612733565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90612733565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b60008061094e61192d565b905061095b818585611935565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600081565b6109c961192d565b73ffffffffffffffffffffffffffffffffffffffff166109e761125f565b73ffffffffffffffffffffffffffffffffffffffff1614610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490612543565b60405180910390fd5b60011515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906124c3565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fdb9d5d31320daf5bc7181d565b6da4d12e30f0f4d5aa324a992426c14a1d19ce60405160405180910390a350565b6000600254905090565b600181565b60008383836000610ba684848461159d565b9050600060ff168160ff1614610bbb82611050565b90610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39190612421565b60405180910390fd5b50610c08888888611b00565b9450505050509392505050565b6000600960009054906101000a900460ff16905090565b60006012905090565b600080610c4061192d565b9050610c61818585610c528589611746565b610c5c9190612655565b611935565b600191505092915050565b610c7533610966565b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612523565b60405180910390fd5b6000600860008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060009054906101000a900460ff16905081600860008660ff1660ff16815260200190815260200160002060008560ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508260ff168460ff163373ffffffffffffffffffffffffffffffffffffffff167fb0353d563a9aa5231878c83727dc723a3cb8a38c2917f8ac2b777aa564c8a0d58486604051610d8e9291906123f8565b60405180910390a450505050565b610da461192d565b73ffffffffffffffffffffffffffffffffffffffff16610dc261125f565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90612543565b60405180910390fd5b60001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906125e3565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fbf3f493c772c8c283fd124432c2d0f539ab343faa04258fe88e52912d36b102b60405160405180910390a350565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb061192d565b73ffffffffffffffffffffffffffffffffffffffff16610fce61125f565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612543565b60405180910390fd5b61102e6000611b2f565b565b60066020528060005260406000206000915054906101000a900460ff1681565b6060600060ff168260ff16141561109e576040518060400160405280600781526020017f53554343455353000000000000000000000000000000000000000000000000008152509050611106565b600160ff168260ff1614156110cd576040518060600160405280603c8152602001612c11603c91399050611106565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525090505b919050565b61111433610966565b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90612523565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff168160ff168373ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60076020528060005260406000206000915054906101000a900460ff1681565b600080600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600060ff168260ff1614806113675750600060ff168160ff16145b15611377576000925050506113ba565b600860008360ff1660ff16815260200190815260200160002060008260ff1660ff16815260200190815260200160002060009054906101000a900460ff16925050505b92915050565b6060600480546113cf90612733565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90612733565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b5050505050905090565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525081565b60008061149661192d565b905060006114a48286611746565b9050838110156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906125c3565b60405180910390fd5b6114f68286868403611935565b60019250505092915050565b6000338383600061151484848461159d565b9050600060ff168160ff161461152982611050565b9061156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619190612421565b60405180910390fd5b506115758787611bf5565b94505050505092915050565b6040518060600160405280603c8152602001612c11603c913981565b60006115a7610c15565b6115b45760009050611614565b6115bc61125f565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115f85760009050611614565b61160284846112a9565b61160f5760019050611614565b600090505b9392505050565b61162361192d565b73ffffffffffffffffffffffffffffffffffffffff1661164161125f565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612543565b60405180910390fd5b600960009054906101000a900460ff166116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90612563565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f3c13a557aa89734e312c348465096b4ddc97709822675c45090f4e2a8d6c4f2b60405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600781526020017f535543434553530000000000000000000000000000000000000000000000000081525081565b60086020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61183d61192d565b73ffffffffffffffffffffffffffffffffffffffff1661185b61125f565b73ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890612543565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890612483565b60405180910390fd5b61192a81611b2f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906125a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906124a3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611af39190612603565b60405180910390a3505050565b600080611b0b61192d565b9050611b18858285611c18565b611b23858585611ca4565b60019150509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c0061192d565b9050611c0d818585611ca4565b600191505092915050565b6000611c248484611746565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c9e5781811015611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c87906124e3565b60405180910390fd5b611c9d8484848403611935565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90612583565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90612463565b60405180910390fd5b611d8f838383611f25565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90612503565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea89190612655565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f0c9190612603565b60405180910390a3611f1f848484611f2a565b50505050565b505050565b505050565b600081359050611f3e81612bb4565b92915050565b600081359050611f5381612bcb565b92915050565b600081359050611f6881612be2565b92915050565b600081359050611f7d81612bf9565b92915050565b600060208284031215611f9557600080fd5b6000611fa384828501611f2f565b91505092915050565b60008060408385031215611fbf57600080fd5b6000611fcd85828601611f2f565b9250506020611fde85828601611f2f565b9150509250929050565b600080600060608486031215611ffd57600080fd5b600061200b86828701611f2f565b935050602061201c86828701611f2f565b925050604061202d86828701611f59565b9150509250925092565b6000806040838503121561204a57600080fd5b600061205885828601611f2f565b925050602061206985828601611f59565b9150509250929050565b6000806040838503121561208657600080fd5b600061209485828601611f2f565b92505060206120a585828601611f6e565b9150509250929050565b6000602082840312156120c157600080fd5b60006120cf84828501611f6e565b91505092915050565b600080604083850312156120eb57600080fd5b60006120f985828601611f6e565b925050602061210a85828601611f6e565b9150509250929050565b60008060006060848603121561212957600080fd5b600061213786828701611f6e565b935050602061214886828701611f6e565b925050604061215986828701611f44565b9150509250925092565b61216c816126ab565b82525050565b61217b816126bd565b82525050565b600061218c82612639565b6121968185612644565b93506121a6818560208601612700565b6121af816127c3565b840191505092915050565b60006121c7601d83612644565b91506121d2826127d4565b602082019050919050565b60006121ea602383612644565b91506121f5826127fd565b604082019050919050565b600061220d602683612644565b91506122188261284c565b604082019050919050565b6000612230602283612644565b915061223b8261289b565b604082019050919050565b6000612253603d83612644565b915061225e826128ea565b604082019050919050565b6000612276601d83612644565b915061228182612939565b602082019050919050565b6000612299602683612644565b91506122a482612962565b604082019050919050565b60006122bc602883612644565b91506122c7826129b1565b604082019050919050565b60006122df602083612644565b91506122ea82612a00565b602082019050919050565b6000612302602283612644565b915061230d82612a29565b604082019050919050565b6000612325602583612644565b915061233082612a78565b604082019050919050565b6000612348602483612644565b915061235382612ac7565b604082019050919050565b600061236b602583612644565b915061237682612b16565b604082019050919050565b600061238e603583612644565b915061239982612b65565b604082019050919050565b6123ad816126e9565b82525050565b6123bc816126f3565b82525050565b60006020820190506123d76000830184612163565b92915050565b60006020820190506123f26000830184612172565b92915050565b600060408201905061240d6000830185612172565b61241a6020830184612172565b9392505050565b6000602082019050818103600083015261243b8184612181565b905092915050565b6000602082019050818103600083015261245c816121ba565b9050919050565b6000602082019050818103600083015261247c816121dd565b9050919050565b6000602082019050818103600083015261249c81612200565b9050919050565b600060208201905081810360008301526124bc81612223565b9050919050565b600060208201905081810360008301526124dc81612246565b9050919050565b600060208201905081810360008301526124fc81612269565b9050919050565b6000602082019050818103600083015261251c8161228c565b9050919050565b6000602082019050818103600083015261253c816122af565b9050919050565b6000602082019050818103600083015261255c816122d2565b9050919050565b6000602082019050818103600083015261257c816122f5565b9050919050565b6000602082019050818103600083015261259c81612318565b9050919050565b600060208201905081810360008301526125bc8161233b565b9050919050565b600060208201905081810360008301526125dc8161235e565b9050919050565b600060208201905081810360008301526125fc81612381565b9050919050565b600060208201905061261860008301846123a4565b92915050565b600060208201905061263360008301846123b3565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612660826126e9565b915061266b836126e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126a05761269f612765565b5b828201905092915050565b60006126b6826126c9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000600282049050600182168061274b57607f821691505b6020821081141561275f5761275e612794565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c69642077686974656c69737420494420737570706c696564000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420746f2062652072656d6f7665642066726f6d2061646d696e60008201527f206c697374206973206e6f7420616c726561647920616e2061646d696e000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c696e67206163636f756e74206973206e6f7420616e2061646d696e6960008201527f73747261746f722e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5265737472696374696f6e732061726520616c72656164792064697361626c6560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420746f20626520616464656420746f2061646d696e206c697360008201527f7420697320616c726561647920616e2061646d696e0000000000000000000000602082015250565b612bbd816126ab565b8114612bc857600080fd5b50565b612bd4816126bd565b8114612bdf57600080fd5b50565b612beb816126e9565b8114612bf657600080fd5b50565b612c02816126f3565b8114612c0d57600080fd5b5056fe546865207472616e736665722077617320726573747269637465642064756520746f207768697465206c69737420636f6e66696775726174696f6e2ea2646970667358221220f03b184eecb282ebf2105eb7bfe2b0ec4e94cedd557b6803a29aedb136725d3064736f6c6343000804003300000000000000000000000091a9d850a866278deb07fa5a2b9ad2b112b186ae

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806376be15851161011a578063a457c2d7116100ad578063dce306ad1161007c578063dce306ad14610602578063dd62ed3e1461060c578063e7984d171461063c578063e95945081461065a578063f2fde38b1461068a576101fb565b8063a457c2d714610554578063a9059cbb14610584578063c8934462146105b4578063d4ce1415146105d2576101fb565b806392e6d68b116100e957806392e6d68b146104b85780639437e2fe146104e857806395d89b411461051857806397af674414610536576101fb565b806376be15851461041e5780637f4ab1dd1461044e5780638ab1d6811461047e5780638da5cb5b1461049a576101fb565b806323b872dd116101925780633973b596116101615780633973b596146103ac57806370480275146103c857806370a08231146103e4578063715018a614610414576101fb565b806323b872dd146103105780632a64240714610340578063313ce5671461035e578063395093511461037c576101fb565b80630e969a05116101ce5780630e969a051461029a5780631785f53c146102b857806318160ddd146102d45780631fb45ec0146102f2576101fb565b80630263b8581461020057806306fdde031461021c578063095ea7b31461023a5780630a2eb3011461026a575b600080fd5b61021a60048036038101906102159190612073565b6106a6565b005b6102246108b1565b6040516102319190612421565b60405180910390f35b610254600480360381019061024f9190612037565b610943565b60405161026191906123dd565b60405180910390f35b610284600480360381019061027f9190611f83565b610966565b60405161029191906123dd565b60405180910390f35b6102a26109bc565b6040516102af919061261e565b60405180910390f35b6102d260048036038101906102cd9190611f83565b6109c1565b005b6102dc610b85565b6040516102e99190612603565b60405180910390f35b6102fa610b8f565b604051610307919061261e565b60405180910390f35b61032a60048036038101906103259190611fe8565b610b94565b60405161033791906123dd565b60405180910390f35b610348610c15565b60405161035591906123dd565b60405180910390f35b610366610c2c565b604051610373919061261e565b60405180910390f35b61039660048036038101906103919190612037565b610c35565b6040516103a391906123dd565b60405180910390f35b6103c660048036038101906103c19190612114565b610c6c565b005b6103e260048036038101906103dd9190611f83565b610d9c565b005b6103fe60048036038101906103f99190611f83565b610f60565b60405161040b9190612603565b60405180910390f35b61041c610fa8565b005b61043860048036038101906104339190611f83565b611030565b60405161044591906123dd565b60405180910390f35b610468600480360381019061046391906120af565b611050565b6040516104759190612421565b60405180910390f35b61049860048036038101906104939190611f83565b61110b565b005b6104a261125f565b6040516104af91906123c2565b60405180910390f35b6104d260048036038101906104cd9190611f83565b611289565b6040516104df919061261e565b60405180910390f35b61050260048036038101906104fd9190611fac565b6112a9565b60405161050f91906123dd565b60405180910390f35b6105206113c0565b60405161052d9190612421565b60405180910390f35b61053e611452565b60405161054b9190612421565b60405180910390f35b61056e60048036038101906105699190612037565b61148b565b60405161057b91906123dd565b60405180910390f35b61059e60048036038101906105999190612037565b611502565b6040516105ab91906123dd565b60405180910390f35b6105bc611581565b6040516105c99190612421565b60405180910390f35b6105ec60048036038101906105e79190611fe8565b61159d565b6040516105f9919061261e565b60405180910390f35b61060a61161b565b005b61062660048036038101906106219190611fac565b611746565b6040516106339190612603565b60405180910390f35b6106446117cd565b6040516106519190612421565b60405180910390f35b610674600480360381019061066f91906120d8565b611806565b60405161068191906123dd565b60405180910390f35b6106a4600480360381019061069f9190611f83565b611835565b005b6106af33610966565b6106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e590612523565b60405180910390fd5b600060ff168160ff161415610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90612443565b60405180910390fd5b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600060ff168160ff161461084e573373ffffffffffffffffffffffffffffffffffffffff168160ff168473ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a45b3373ffffffffffffffffffffffffffffffffffffffff168260ff168473ffffffffffffffffffffffffffffffffffffffff167fca6d1e885708b837a7647aeb7f4163ee4ca96058e08ac767be8d23c972c5027060405160405180910390a4505050565b6060600380546108c090612733565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90612733565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b60008061094e61192d565b905061095b818585611935565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600081565b6109c961192d565b73ffffffffffffffffffffffffffffffffffffffff166109e761125f565b73ffffffffffffffffffffffffffffffffffffffff1614610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490612543565b60405180910390fd5b60011515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906124c3565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fdb9d5d31320daf5bc7181d565b6da4d12e30f0f4d5aa324a992426c14a1d19ce60405160405180910390a350565b6000600254905090565b600181565b60008383836000610ba684848461159d565b9050600060ff168160ff1614610bbb82611050565b90610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39190612421565b60405180910390fd5b50610c08888888611b00565b9450505050509392505050565b6000600960009054906101000a900460ff16905090565b60006012905090565b600080610c4061192d565b9050610c61818585610c528589611746565b610c5c9190612655565b611935565b600191505092915050565b610c7533610966565b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90612523565b60405180910390fd5b6000600860008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060009054906101000a900460ff16905081600860008660ff1660ff16815260200190815260200160002060008560ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508260ff168460ff163373ffffffffffffffffffffffffffffffffffffffff167fb0353d563a9aa5231878c83727dc723a3cb8a38c2917f8ac2b777aa564c8a0d58486604051610d8e9291906123f8565b60405180910390a450505050565b610da461192d565b73ffffffffffffffffffffffffffffffffffffffff16610dc261125f565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90612543565b60405180910390fd5b60001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906125e3565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fbf3f493c772c8c283fd124432c2d0f539ab343faa04258fe88e52912d36b102b60405160405180910390a350565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb061192d565b73ffffffffffffffffffffffffffffffffffffffff16610fce61125f565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612543565b60405180910390fd5b61102e6000611b2f565b565b60066020528060005260406000206000915054906101000a900460ff1681565b6060600060ff168260ff16141561109e576040518060400160405280600781526020017f53554343455353000000000000000000000000000000000000000000000000008152509050611106565b600160ff168260ff1614156110cd576040518060600160405280603c8152602001612c11603c91399050611106565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525090505b919050565b61111433610966565b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90612523565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff168160ff168373ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60076020528060005260406000206000915054906101000a900460ff1681565b600080600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600060ff168260ff1614806113675750600060ff168160ff16145b15611377576000925050506113ba565b600860008360ff1660ff16815260200190815260200160002060008260ff1660ff16815260200190815260200160002060009054906101000a900460ff16925050505b92915050565b6060600480546113cf90612733565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90612733565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b5050505050905090565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525081565b60008061149661192d565b905060006114a48286611746565b9050838110156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906125c3565b60405180910390fd5b6114f68286868403611935565b60019250505092915050565b6000338383600061151484848461159d565b9050600060ff168160ff161461152982611050565b9061156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619190612421565b60405180910390fd5b506115758787611bf5565b94505050505092915050565b6040518060600160405280603c8152602001612c11603c913981565b60006115a7610c15565b6115b45760009050611614565b6115bc61125f565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115f85760009050611614565b61160284846112a9565b61160f5760019050611614565b600090505b9392505050565b61162361192d565b73ffffffffffffffffffffffffffffffffffffffff1661164161125f565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612543565b60405180910390fd5b600960009054906101000a900460ff166116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90612563565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f3c13a557aa89734e312c348465096b4ddc97709822675c45090f4e2a8d6c4f2b60405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600781526020017f535543434553530000000000000000000000000000000000000000000000000081525081565b60086020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b61183d61192d565b73ffffffffffffffffffffffffffffffffffffffff1661185b61125f565b73ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890612543565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890612483565b60405180910390fd5b61192a81611b2f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906125a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906124a3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611af39190612603565b60405180910390a3505050565b600080611b0b61192d565b9050611b18858285611c18565b611b23858585611ca4565b60019150509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c0061192d565b9050611c0d818585611ca4565b600191505092915050565b6000611c248484611746565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c9e5781811015611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c87906124e3565b60405180910390fd5b611c9d8484848403611935565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90612583565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90612463565b60405180910390fd5b611d8f838383611f25565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90612503565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea89190612655565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f0c9190612603565b60405180910390a3611f1f848484611f2a565b50505050565b505050565b505050565b600081359050611f3e81612bb4565b92915050565b600081359050611f5381612bcb565b92915050565b600081359050611f6881612be2565b92915050565b600081359050611f7d81612bf9565b92915050565b600060208284031215611f9557600080fd5b6000611fa384828501611f2f565b91505092915050565b60008060408385031215611fbf57600080fd5b6000611fcd85828601611f2f565b9250506020611fde85828601611f2f565b9150509250929050565b600080600060608486031215611ffd57600080fd5b600061200b86828701611f2f565b935050602061201c86828701611f2f565b925050604061202d86828701611f59565b9150509250925092565b6000806040838503121561204a57600080fd5b600061205885828601611f2f565b925050602061206985828601611f59565b9150509250929050565b6000806040838503121561208657600080fd5b600061209485828601611f2f565b92505060206120a585828601611f6e565b9150509250929050565b6000602082840312156120c157600080fd5b60006120cf84828501611f6e565b91505092915050565b600080604083850312156120eb57600080fd5b60006120f985828601611f6e565b925050602061210a85828601611f6e565b9150509250929050565b60008060006060848603121561212957600080fd5b600061213786828701611f6e565b935050602061214886828701611f6e565b925050604061215986828701611f44565b9150509250925092565b61216c816126ab565b82525050565b61217b816126bd565b82525050565b600061218c82612639565b6121968185612644565b93506121a6818560208601612700565b6121af816127c3565b840191505092915050565b60006121c7601d83612644565b91506121d2826127d4565b602082019050919050565b60006121ea602383612644565b91506121f5826127fd565b604082019050919050565b600061220d602683612644565b91506122188261284c565b604082019050919050565b6000612230602283612644565b915061223b8261289b565b604082019050919050565b6000612253603d83612644565b915061225e826128ea565b604082019050919050565b6000612276601d83612644565b915061228182612939565b602082019050919050565b6000612299602683612644565b91506122a482612962565b604082019050919050565b60006122bc602883612644565b91506122c7826129b1565b604082019050919050565b60006122df602083612644565b91506122ea82612a00565b602082019050919050565b6000612302602283612644565b915061230d82612a29565b604082019050919050565b6000612325602583612644565b915061233082612a78565b604082019050919050565b6000612348602483612644565b915061235382612ac7565b604082019050919050565b600061236b602583612644565b915061237682612b16565b604082019050919050565b600061238e603583612644565b915061239982612b65565b604082019050919050565b6123ad816126e9565b82525050565b6123bc816126f3565b82525050565b60006020820190506123d76000830184612163565b92915050565b60006020820190506123f26000830184612172565b92915050565b600060408201905061240d6000830185612172565b61241a6020830184612172565b9392505050565b6000602082019050818103600083015261243b8184612181565b905092915050565b6000602082019050818103600083015261245c816121ba565b9050919050565b6000602082019050818103600083015261247c816121dd565b9050919050565b6000602082019050818103600083015261249c81612200565b9050919050565b600060208201905081810360008301526124bc81612223565b9050919050565b600060208201905081810360008301526124dc81612246565b9050919050565b600060208201905081810360008301526124fc81612269565b9050919050565b6000602082019050818103600083015261251c8161228c565b9050919050565b6000602082019050818103600083015261253c816122af565b9050919050565b6000602082019050818103600083015261255c816122d2565b9050919050565b6000602082019050818103600083015261257c816122f5565b9050919050565b6000602082019050818103600083015261259c81612318565b9050919050565b600060208201905081810360008301526125bc8161233b565b9050919050565b600060208201905081810360008301526125dc8161235e565b9050919050565b600060208201905081810360008301526125fc81612381565b9050919050565b600060208201905061261860008301846123a4565b92915050565b600060208201905061263360008301846123b3565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612660826126e9565b915061266b836126e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126a05761269f612765565b5b828201905092915050565b60006126b6826126c9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000600282049050600182168061274b57607f821691505b6020821081141561275f5761275e612794565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c69642077686974656c69737420494420737570706c696564000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420746f2062652072656d6f7665642066726f6d2061646d696e60008201527f206c697374206973206e6f7420616c726561647920616e2061646d696e000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c696e67206163636f756e74206973206e6f7420616e2061646d696e6960008201527f73747261746f722e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5265737472696374696f6e732061726520616c72656164792064697361626c6560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420746f20626520616464656420746f2061646d696e206c697360008201527f7420697320616c726561647920616e2061646d696e0000000000000000000000602082015250565b612bbd816126ab565b8114612bc857600080fd5b50565b612bd4816126bd565b8114612bdf57600080fd5b50565b612beb816126e9565b8114612bf657600080fd5b50565b612c02816126f3565b8114612c0d57600080fd5b5056fe546865207472616e736665722077617320726573747269637465642064756520746f207768697465206c69737420636f6e66696775726174696f6e2ea2646970667358221220f03b184eecb282ebf2105eb7bfe2b0ec4e94cedd557b6803a29aedb136725d3064736f6c63430008040033

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

00000000000000000000000091a9d850a866278deb07fa5a2b9ad2b112b186ae

-----Decoded View---------------
Arg [0] : owner (address): 0x91a9d850A866278dEb07FA5A2B9ad2B112B186ae

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000091a9d850a866278deb07fa5a2b9ad2b112b186ae


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.