ETH Price: $3,147.38 (-8.01%)
Gas: 6 Gwei

Token

The Rare Antiquities Token (RAT)
 

Overview

Max Total Supply

211,349,668,118.0859872456986728 RAT

Holders

708

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
110,613,010.256853394634629287 RAT

Value
$0.00
0xb8358b31bca82989d3d6611911da3be38fe242f7
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:
TheRareAntiquitiesToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : TheRareAntiquitiesToken.sol
// Sources flattened with hardhat v2.5.0 https://hardhat.org

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


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

// 

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/ico/Listing.sol

// 
pragma solidity ^0.8.2;

contract Listing is Ownable {
    mapping(address => bool) public blacklistedMap;

    event Blacklisted(address indexed account, bool isBlacklisted);

     modifier checkBlacklist(address account) {
        if (blacklisted(account)) revert("Crowdsale: BLACKLISTED");
        _;
    }

    function blacklisted(address _address) public view returns (bool) {
        return blacklistedMap[_address];
    }

    function addBlacklist(address _address) public onlyOwner {
        require(blacklistedMap[_address] != true);
        blacklistedMap[_address] = true;
        emit Blacklisted(_address, true);
    }

    function removeBlacklist(address _address) public onlyOwner {
        require(blacklistedMap[_address] != false);
        blacklistedMap[_address] = false;
        emit Blacklisted(_address, false);
    }
}


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

// 

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

// 

pragma solidity ^0.8.0;

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

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

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


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

// 

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

// 

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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

// 

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

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


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

// 

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


// File contracts/TheRareAntiquitiesToken.sol

// 
pragma solidity ^0.8.2;





contract TheRareAntiquitiesToken is ERC20, ERC20Burnable, Pausable, Listing {
    using SafeMath for uint256;

    address public treasury;
    bool public feeOn = true;
    mapping(address => uint256) public lastBurns;
    uint256 private constant SECONDS_IN_SIX_MONTHS = 15897600 seconds;

    /**
     * @notice Burn tokens after six months
     * 15897600 is the number of seconds in six months
     */
    modifier burnToken(address sender, address receiver) {
        if (lastBurns[sender] == 0) lastBurns[sender] = block.timestamp;
        if (lastBurns[receiver] == 0) lastBurns[receiver] = block.timestamp;
        _;
        if (block.timestamp > lastBurns[sender]) {
            uint256 burnPercentage = block
                .timestamp
                .sub(lastBurns[sender])
                .div(SECONDS_IN_SIX_MONTHS)
                .mul(20);
            if (burnPercentage > 0) {
                uint256 tokens = balanceOf(sender).mul(burnPercentage).div(100);
                _burn(sender, tokens);
                lastBurns[sender] = lastBurns[sender].add(
                    SECONDS_IN_SIX_MONTHS
                );
            }
        }
    }

    constructor(address _treasury) ERC20("The Rare Antiquities Token", "RAT") {
        _mint(_msgSender(), 500000000000 ether);
        treasury = _treasury;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        checkBlacklist(msg.sender)
        burnToken(msg.sender, recipient)
        whenNotPaused
        returns (bool)
    {
        // 3% on sells
        if (feeOn) {
            uint256 tax = amount.mul(3).div(100);
            amount = amount.sub(tax);
            _transfer(_msgSender(), treasury, tax);
        }
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function changeTreasury(address _treasury) public onlyOwner {
        treasury = _treasury;
    }

    function toggleFee() public onlyOwner {
        feeOn = !feeOn;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Blacklisted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"lastBurns","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBlacklist","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":"toggleFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162003361380380620033618339818101604052810190620000529190620004bb565b6040518060400160405280601a81526020017f546865205261726520416e74697175697469657320546f6b656e0000000000008152506040518060400160405280600381526020017f52415400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d6929190620003f4565b508060049080519060200190620000ef929190620003f4565b5050506000600560006101000a81548160ff0219169083151502179055506200012d62000121620001a360201b60201c565b620001ab60201b60201c565b6200015b62000141620001a360201b60201c565b6c064f964e68233a76f5200000006200027160201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620006e1565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002db906200051f565b60405180910390fd5b620002f860008383620003ea60201b60201c565b80600260008282546200030c91906200056f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200036391906200056f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ca919062000541565b60405180910390a3620003e660008383620003ef60201b60201c565b5050565b505050565b505050565b82805462000402906200060a565b90600052602060002090601f01602090048101928262000426576000855562000472565b82601f106200044157805160ff191683800117855562000472565b8280016001018555821562000472579182015b828111156200047157825182559160200191906001019062000454565b5b50905062000481919062000485565b5090565b5b80821115620004a057600081600090555060010162000486565b5090565b600081519050620004b581620006c7565b92915050565b600060208284031215620004ce57600080fd5b6000620004de84828501620004a4565b91505092915050565b6000620004f6601f836200055e565b915062000503826200069e565b602082019050919050565b620005198162000600565b82525050565b600060208201905081810360008301526200053a81620004e7565b9050919050565b60006020820190506200055860008301846200050e565b92915050565b600082825260208201905092915050565b60006200057c8262000600565b9150620005898362000600565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005c157620005c062000640565b5b828201905092915050565b6000620005d982620005e0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200062357607f821691505b602082108114156200063a57620006396200066f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620006d281620005cc565b8114620006de57600080fd5b50565b612c7080620006f16000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a457c2d711610097578063dbac26e911610071578063dbac26e9146104d1578063dd62ed3e14610501578063eb91e65114610531578063f2fde38b1461054d576101c4565b8063a457c2d714610455578063a9059cbb14610485578063b14f2a39146104b5576101c4565b80638d6e2c36116100d35780638d6e2c36146103cd5780638da5cb5b146103fd57806395d89b411461041b5780639cfe42da14610439576101c4565b8063715018a61461039d57806379cc6790146103a75780638456cb59146103c3576101c4565b806342966c68116101665780635e209363116101405780635e2093631461031557806361d027b31461031f5780636ef14f021461033d57806370a082311461036d576101c4565b806342966c68146102bd5780634f335d0a146102d95780635c975abb146102f7576101c4565b806323b872dd116101a257806323b872dd14610235578063313ce5671461026557806339509351146102835780633f4ba83a146102b3576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d1610569565b6040516101de9190612342565b60405180910390f35b61020160048036038101906101fc9190612025565b6105fb565b60405161020e9190612327565b60405180910390f35b61021f610619565b60405161022c9190612544565b60405180910390f35b61024f600480360381019061024a9190611fd6565b610623565b60405161025c9190612327565b60405180910390f35b61026d61071b565b60405161027a919061255f565b60405180910390f35b61029d60048036038101906102989190612025565b610724565b6040516102aa9190612327565b60405180910390f35b6102bb6107d0565b005b6102d760048036038101906102d29190612061565b610856565b005b6102e161086a565b6040516102ee9190612327565b60405180910390f35b6102ff61087d565b60405161030c9190612327565b60405180910390f35b61031d610894565b005b61032761093c565b604051610334919061230c565b60405180910390f35b61035760048036038101906103529190611f71565b610962565b6040516103649190612327565b60405180910390f35b61038760048036038101906103829190611f71565b610982565b6040516103949190612544565b60405180910390f35b6103a56109ca565b005b6103c160048036038101906103bc9190612025565b610a52565b005b6103cb610acd565b005b6103e760048036038101906103e29190611f71565b610b53565b6040516103f49190612544565b60405180910390f35b610405610b6b565b604051610412919061230c565b60405180910390f35b610423610b95565b6040516104309190612342565b60405180910390f35b610453600480360381019061044e9190611f71565b610c27565b005b61046f600480360381019061046a9190612025565b610dab565b60405161047c9190612327565b60405180910390f35b61049f600480360381019061049a9190612025565b610e96565b6040516104ac9190612327565b60405180910390f35b6104cf60048036038101906104ca9190611f71565b611296565b005b6104eb60048036038101906104e69190611f71565b611356565b6040516104f89190612327565b60405180910390f35b61051b60048036038101906105169190611f9a565b6113ac565b6040516105289190612544565b60405180910390f35b61054b60048036038101906105469190611f71565b611433565b005b61056760048036038101906105629190611f71565b6115b7565b005b60606003805461057890612733565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490612733565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b600061060f6106086116af565b84846116b7565b6001905092915050565b6000600254905090565b6000610630848484611882565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061067b6116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612464565b60405180910390fd5b61070f856107076116af565b8584036116b7565b60019150509392505050565b60006012905090565b60006107c66107316116af565b84846001600061073f6116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c19190612596565b6116b7565b6001905092915050565b6107d86116af565b73ffffffffffffffffffffffffffffffffffffffff166107f6610b6b565b73ffffffffffffffffffffffffffffffffffffffff161461084c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084390612484565b60405180910390fd5b610854611b03565b565b6108676108616116af565b82611ba5565b50565b600760149054906101000a900460ff1681565b6000600560009054906101000a900460ff16905090565b61089c6116af565b73ffffffffffffffffffffffffffffffffffffffff166108ba610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790612484565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d26116af565b73ffffffffffffffffffffffffffffffffffffffff166109f0610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90612484565b60405180910390fd5b610a506000611d7c565b565b6000610a6583610a606116af565b6113ac565b905081811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa1906124a4565b60405180910390fd5b610abe83610ab66116af565b8484036116b7565b610ac88383611ba5565b505050565b610ad56116af565b73ffffffffffffffffffffffffffffffffffffffff16610af3610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090612484565b60405180910390fd5b610b51611e42565b565b60086020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ba490612733565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd090612733565b8015610c1d5780601f10610bf257610100808354040283529160200191610c1d565b820191906000526020600020905b815481529060010190602001808311610c0057829003601f168201915b5050505050905090565b610c2f6116af565b73ffffffffffffffffffffffffffffffffffffffff16610c4d610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90612484565b60405180910390fd5b60011515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610d0157600080fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcf3473b85df1594d47b6958f29a32bea0abff9dd68296f7bf33443646793cfd86001604051610da09190612327565b60405180910390a250565b60008060016000610dba6116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90612524565b60405180910390fd5b610e8b610e826116af565b858584036116b7565b600191505092915050565b600033610ea281611356565b15610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906123a4565b60405180910390fd5b33846000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610f715742600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610ffe5742600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b61100661087d565b15611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612444565b60405180910390fd5b600760149054906101000a900460ff16156110d15760006110846064611076600389611ee590919063ffffffff16565b611efb90919063ffffffff16565b90506110998187611f1190919063ffffffff16565b95506110cf6110a66116af565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611882565b505b6110e36110dc6116af565b8787611882565b60019350600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442111561128d5760006111aa601461119c62f2940061118e600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611f1190919063ffffffff16565b611efb90919063ffffffff16565b611ee590919063ffffffff16565b9050600081111561128b5760006111e560646111d7846111c988610982565b611ee590919063ffffffff16565b611efb90919063ffffffff16565b90506111f18482611ba5565b61124662f29400600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2790919063ffffffff16565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b505b50505092915050565b61129e6116af565b73ffffffffffffffffffffffffffffffffffffffff166112bc610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990612484565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61143b6116af565b73ffffffffffffffffffffffffffffffffffffffff16611459610b6b565b73ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690612484565b60405180910390fd5b60001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561150d57600080fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcf3473b85df1594d47b6958f29a32bea0abff9dd68296f7bf33443646793cfd860006040516115ac9190612327565b60405180910390a250565b6115bf6116af565b73ffffffffffffffffffffffffffffffffffffffff166115dd610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90612484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906123e4565b60405180910390fd5b6116ac81611d7c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90612504565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90612404565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118759190612544565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906124e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990612364565b60405180910390fd5b61196d838383611f3d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90612424565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a869190612596565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aea9190612544565b60405180910390a3611afd848484611f42565b50505050565b611b0b61087d565b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190612384565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b8e6116af565b604051611b9b919061230c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c906124c4565b60405180910390fd5b611c2182600083611f3d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e906123c4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611cfe9190612677565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d639190612544565b60405180910390a3611d7783600084611f42565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4a61087d565b15611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190612444565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ece6116af565b604051611edb919061230c565b60405180910390a1565b60008183611ef3919061261d565b905092915050565b60008183611f0991906125ec565b905092915050565b60008183611f1f9190612677565b905092915050565b60008183611f359190612596565b905092915050565b505050565b505050565b600081359050611f5681612c0c565b92915050565b600081359050611f6b81612c23565b92915050565b600060208284031215611f8357600080fd5b6000611f9184828501611f47565b91505092915050565b60008060408385031215611fad57600080fd5b6000611fbb85828601611f47565b9250506020611fcc85828601611f47565b9150509250929050565b600080600060608486031215611feb57600080fd5b6000611ff986828701611f47565b935050602061200a86828701611f47565b925050604061201b86828701611f5c565b9150509250925092565b6000806040838503121561203857600080fd5b600061204685828601611f47565b925050602061205785828601611f5c565b9150509250929050565b60006020828403121561207357600080fd5b600061208184828501611f5c565b91505092915050565b612093816126ab565b82525050565b6120a2816126bd565b82525050565b60006120b38261257a565b6120bd8185612585565b93506120cd818560208601612700565b6120d6816127f2565b840191505092915050565b60006120ee602383612585565b91506120f982612803565b604082019050919050565b6000612111601483612585565b915061211c82612852565b602082019050919050565b6000612134601683612585565b915061213f8261287b565b602082019050919050565b6000612157602283612585565b9150612162826128a4565b604082019050919050565b600061217a602683612585565b9150612185826128f3565b604082019050919050565b600061219d602283612585565b91506121a882612942565b604082019050919050565b60006121c0602683612585565b91506121cb82612991565b604082019050919050565b60006121e3601083612585565b91506121ee826129e0565b602082019050919050565b6000612206602883612585565b915061221182612a09565b604082019050919050565b6000612229602083612585565b915061223482612a58565b602082019050919050565b600061224c602483612585565b915061225782612a81565b604082019050919050565b600061226f602183612585565b915061227a82612ad0565b604082019050919050565b6000612292602583612585565b915061229d82612b1f565b604082019050919050565b60006122b5602483612585565b91506122c082612b6e565b604082019050919050565b60006122d8602583612585565b91506122e382612bbd565b604082019050919050565b6122f7816126e9565b82525050565b612306816126f3565b82525050565b6000602082019050612321600083018461208a565b92915050565b600060208201905061233c6000830184612099565b92915050565b6000602082019050818103600083015261235c81846120a8565b905092915050565b6000602082019050818103600083015261237d816120e1565b9050919050565b6000602082019050818103600083015261239d81612104565b9050919050565b600060208201905081810360008301526123bd81612127565b9050919050565b600060208201905081810360008301526123dd8161214a565b9050919050565b600060208201905081810360008301526123fd8161216d565b9050919050565b6000602082019050818103600083015261241d81612190565b9050919050565b6000602082019050818103600083015261243d816121b3565b9050919050565b6000602082019050818103600083015261245d816121d6565b9050919050565b6000602082019050818103600083015261247d816121f9565b9050919050565b6000602082019050818103600083015261249d8161221c565b9050919050565b600060208201905081810360008301526124bd8161223f565b9050919050565b600060208201905081810360008301526124dd81612262565b9050919050565b600060208201905081810360008301526124fd81612285565b9050919050565b6000602082019050818103600083015261251d816122a8565b9050919050565b6000602082019050818103600083015261253d816122cb565b9050919050565b600060208201905061255960008301846122ee565b92915050565b600060208201905061257460008301846122fd565b92915050565b600081519050919050565b600082825260208201905092915050565b60006125a1826126e9565b91506125ac836126e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125e1576125e0612765565b5b828201905092915050565b60006125f7826126e9565b9150612602836126e9565b92508261261257612611612794565b5b828204905092915050565b6000612628826126e9565b9150612633836126e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561266c5761266b612765565b5b828202905092915050565b6000612682826126e9565b915061268d836126e9565b9250828210156126a05761269f612765565b5b828203905092915050565b60006126b6826126c9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000600282049050600182168061274b57607f821691505b6020821081141561275f5761275e6127c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f43726f776473616c653a20424c41434b4c495354454400000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612c15816126ab565b8114612c2057600080fd5b50565b612c2c816126e9565b8114612c3757600080fd5b5056fea2646970667358221220176a6f7e19608fb721c83cdf39dcf05b114a67705abbab8dc2b2d673b907626864736f6c63430008020033000000000000000000000000970d98e0dcb7ddf4d4fe6f43fdb6541e6c19b428

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a457c2d711610097578063dbac26e911610071578063dbac26e9146104d1578063dd62ed3e14610501578063eb91e65114610531578063f2fde38b1461054d576101c4565b8063a457c2d714610455578063a9059cbb14610485578063b14f2a39146104b5576101c4565b80638d6e2c36116100d35780638d6e2c36146103cd5780638da5cb5b146103fd57806395d89b411461041b5780639cfe42da14610439576101c4565b8063715018a61461039d57806379cc6790146103a75780638456cb59146103c3576101c4565b806342966c68116101665780635e209363116101405780635e2093631461031557806361d027b31461031f5780636ef14f021461033d57806370a082311461036d576101c4565b806342966c68146102bd5780634f335d0a146102d95780635c975abb146102f7576101c4565b806323b872dd116101a257806323b872dd14610235578063313ce5671461026557806339509351146102835780633f4ba83a146102b3576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d1610569565b6040516101de9190612342565b60405180910390f35b61020160048036038101906101fc9190612025565b6105fb565b60405161020e9190612327565b60405180910390f35b61021f610619565b60405161022c9190612544565b60405180910390f35b61024f600480360381019061024a9190611fd6565b610623565b60405161025c9190612327565b60405180910390f35b61026d61071b565b60405161027a919061255f565b60405180910390f35b61029d60048036038101906102989190612025565b610724565b6040516102aa9190612327565b60405180910390f35b6102bb6107d0565b005b6102d760048036038101906102d29190612061565b610856565b005b6102e161086a565b6040516102ee9190612327565b60405180910390f35b6102ff61087d565b60405161030c9190612327565b60405180910390f35b61031d610894565b005b61032761093c565b604051610334919061230c565b60405180910390f35b61035760048036038101906103529190611f71565b610962565b6040516103649190612327565b60405180910390f35b61038760048036038101906103829190611f71565b610982565b6040516103949190612544565b60405180910390f35b6103a56109ca565b005b6103c160048036038101906103bc9190612025565b610a52565b005b6103cb610acd565b005b6103e760048036038101906103e29190611f71565b610b53565b6040516103f49190612544565b60405180910390f35b610405610b6b565b604051610412919061230c565b60405180910390f35b610423610b95565b6040516104309190612342565b60405180910390f35b610453600480360381019061044e9190611f71565b610c27565b005b61046f600480360381019061046a9190612025565b610dab565b60405161047c9190612327565b60405180910390f35b61049f600480360381019061049a9190612025565b610e96565b6040516104ac9190612327565b60405180910390f35b6104cf60048036038101906104ca9190611f71565b611296565b005b6104eb60048036038101906104e69190611f71565b611356565b6040516104f89190612327565b60405180910390f35b61051b60048036038101906105169190611f9a565b6113ac565b6040516105289190612544565b60405180910390f35b61054b60048036038101906105469190611f71565b611433565b005b61056760048036038101906105629190611f71565b6115b7565b005b60606003805461057890612733565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490612733565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b600061060f6106086116af565b84846116b7565b6001905092915050565b6000600254905090565b6000610630848484611882565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061067b6116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612464565b60405180910390fd5b61070f856107076116af565b8584036116b7565b60019150509392505050565b60006012905090565b60006107c66107316116af565b84846001600061073f6116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c19190612596565b6116b7565b6001905092915050565b6107d86116af565b73ffffffffffffffffffffffffffffffffffffffff166107f6610b6b565b73ffffffffffffffffffffffffffffffffffffffff161461084c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084390612484565b60405180910390fd5b610854611b03565b565b6108676108616116af565b82611ba5565b50565b600760149054906101000a900460ff1681565b6000600560009054906101000a900460ff16905090565b61089c6116af565b73ffffffffffffffffffffffffffffffffffffffff166108ba610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790612484565b60405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d26116af565b73ffffffffffffffffffffffffffffffffffffffff166109f0610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90612484565b60405180910390fd5b610a506000611d7c565b565b6000610a6583610a606116af565b6113ac565b905081811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa1906124a4565b60405180910390fd5b610abe83610ab66116af565b8484036116b7565b610ac88383611ba5565b505050565b610ad56116af565b73ffffffffffffffffffffffffffffffffffffffff16610af3610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090612484565b60405180910390fd5b610b51611e42565b565b60086020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ba490612733565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd090612733565b8015610c1d5780601f10610bf257610100808354040283529160200191610c1d565b820191906000526020600020905b815481529060010190602001808311610c0057829003601f168201915b5050505050905090565b610c2f6116af565b73ffffffffffffffffffffffffffffffffffffffff16610c4d610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90612484565b60405180910390fd5b60011515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610d0157600080fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcf3473b85df1594d47b6958f29a32bea0abff9dd68296f7bf33443646793cfd86001604051610da09190612327565b60405180910390a250565b60008060016000610dba6116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90612524565b60405180910390fd5b610e8b610e826116af565b858584036116b7565b600191505092915050565b600033610ea281611356565b15610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906123a4565b60405180910390fd5b33846000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610f715742600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610ffe5742600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b61100661087d565b15611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612444565b60405180910390fd5b600760149054906101000a900460ff16156110d15760006110846064611076600389611ee590919063ffffffff16565b611efb90919063ffffffff16565b90506110998187611f1190919063ffffffff16565b95506110cf6110a66116af565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611882565b505b6110e36110dc6116af565b8787611882565b60019350600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442111561128d5760006111aa601461119c62f2940061118e600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442611f1190919063ffffffff16565b611efb90919063ffffffff16565b611ee590919063ffffffff16565b9050600081111561128b5760006111e560646111d7846111c988610982565b611ee590919063ffffffff16565b611efb90919063ffffffff16565b90506111f18482611ba5565b61124662f29400600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2790919063ffffffff16565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b505b50505092915050565b61129e6116af565b73ffffffffffffffffffffffffffffffffffffffff166112bc610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990612484565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61143b6116af565b73ffffffffffffffffffffffffffffffffffffffff16611459610b6b565b73ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690612484565b60405180910390fd5b60001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561150d57600080fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcf3473b85df1594d47b6958f29a32bea0abff9dd68296f7bf33443646793cfd860006040516115ac9190612327565b60405180910390a250565b6115bf6116af565b73ffffffffffffffffffffffffffffffffffffffff166115dd610b6b565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90612484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906123e4565b60405180910390fd5b6116ac81611d7c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90612504565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90612404565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118759190612544565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906124e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990612364565b60405180910390fd5b61196d838383611f3d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90612424565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a869190612596565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aea9190612544565b60405180910390a3611afd848484611f42565b50505050565b611b0b61087d565b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190612384565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b8e6116af565b604051611b9b919061230c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c906124c4565b60405180910390fd5b611c2182600083611f3d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e906123c4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611cfe9190612677565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d639190612544565b60405180910390a3611d7783600084611f42565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4a61087d565b15611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190612444565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ece6116af565b604051611edb919061230c565b60405180910390a1565b60008183611ef3919061261d565b905092915050565b60008183611f0991906125ec565b905092915050565b60008183611f1f9190612677565b905092915050565b60008183611f359190612596565b905092915050565b505050565b505050565b600081359050611f5681612c0c565b92915050565b600081359050611f6b81612c23565b92915050565b600060208284031215611f8357600080fd5b6000611f9184828501611f47565b91505092915050565b60008060408385031215611fad57600080fd5b6000611fbb85828601611f47565b9250506020611fcc85828601611f47565b9150509250929050565b600080600060608486031215611feb57600080fd5b6000611ff986828701611f47565b935050602061200a86828701611f47565b925050604061201b86828701611f5c565b9150509250925092565b6000806040838503121561203857600080fd5b600061204685828601611f47565b925050602061205785828601611f5c565b9150509250929050565b60006020828403121561207357600080fd5b600061208184828501611f5c565b91505092915050565b612093816126ab565b82525050565b6120a2816126bd565b82525050565b60006120b38261257a565b6120bd8185612585565b93506120cd818560208601612700565b6120d6816127f2565b840191505092915050565b60006120ee602383612585565b91506120f982612803565b604082019050919050565b6000612111601483612585565b915061211c82612852565b602082019050919050565b6000612134601683612585565b915061213f8261287b565b602082019050919050565b6000612157602283612585565b9150612162826128a4565b604082019050919050565b600061217a602683612585565b9150612185826128f3565b604082019050919050565b600061219d602283612585565b91506121a882612942565b604082019050919050565b60006121c0602683612585565b91506121cb82612991565b604082019050919050565b60006121e3601083612585565b91506121ee826129e0565b602082019050919050565b6000612206602883612585565b915061221182612a09565b604082019050919050565b6000612229602083612585565b915061223482612a58565b602082019050919050565b600061224c602483612585565b915061225782612a81565b604082019050919050565b600061226f602183612585565b915061227a82612ad0565b604082019050919050565b6000612292602583612585565b915061229d82612b1f565b604082019050919050565b60006122b5602483612585565b91506122c082612b6e565b604082019050919050565b60006122d8602583612585565b91506122e382612bbd565b604082019050919050565b6122f7816126e9565b82525050565b612306816126f3565b82525050565b6000602082019050612321600083018461208a565b92915050565b600060208201905061233c6000830184612099565b92915050565b6000602082019050818103600083015261235c81846120a8565b905092915050565b6000602082019050818103600083015261237d816120e1565b9050919050565b6000602082019050818103600083015261239d81612104565b9050919050565b600060208201905081810360008301526123bd81612127565b9050919050565b600060208201905081810360008301526123dd8161214a565b9050919050565b600060208201905081810360008301526123fd8161216d565b9050919050565b6000602082019050818103600083015261241d81612190565b9050919050565b6000602082019050818103600083015261243d816121b3565b9050919050565b6000602082019050818103600083015261245d816121d6565b9050919050565b6000602082019050818103600083015261247d816121f9565b9050919050565b6000602082019050818103600083015261249d8161221c565b9050919050565b600060208201905081810360008301526124bd8161223f565b9050919050565b600060208201905081810360008301526124dd81612262565b9050919050565b600060208201905081810360008301526124fd81612285565b9050919050565b6000602082019050818103600083015261251d816122a8565b9050919050565b6000602082019050818103600083015261253d816122cb565b9050919050565b600060208201905061255960008301846122ee565b92915050565b600060208201905061257460008301846122fd565b92915050565b600081519050919050565b600082825260208201905092915050565b60006125a1826126e9565b91506125ac836126e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125e1576125e0612765565b5b828201905092915050565b60006125f7826126e9565b9150612602836126e9565b92508261261257612611612794565b5b828204905092915050565b6000612628826126e9565b9150612633836126e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561266c5761266b612765565b5b828202905092915050565b6000612682826126e9565b915061268d836126e9565b9250828210156126a05761269f612765565b5b828203905092915050565b60006126b6826126c9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000600282049050600182168061274b57607f821691505b6020821081141561275f5761275e6127c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f43726f776473616c653a20424c41434b4c495354454400000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612c15816126ab565b8114612c2057600080fd5b50565b612c2c816126e9565b8114612c3757600080fd5b5056fea2646970667358221220176a6f7e19608fb721c83cdf39dcf05b114a67705abbab8dc2b2d673b907626864736f6c63430008020033

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

000000000000000000000000970d98e0dcb7ddf4d4fe6f43fdb6541e6c19b428

-----Decoded View---------------
Arg [0] : _treasury (address): 0x970d98e0dCb7dDF4D4Fe6f43Fdb6541E6c19B428

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000970d98e0dcb7ddf4d4fe6f43fdb6541e6c19b428


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.