ETH Price: $3,244.77 (+2.51%)
Gas: 2 Gwei

Token

cVault.finance/FANNY (FANNY)
 

Overview

Max Total Supply

259 FANNY

Holders

391 (0.00%)

Market

Price

$5,922.54 @ 1.825261 ETH (+0.02%)

Onchain Market Cap

$1,533,939.14

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
vyze.eth
Balance
0.003124400880867758 FANNY

Value
$18.50 ( ~0.00570148903539746 Eth) [0.0012%]
0xCCa11A8EdB05D64a654092e9551F9122D70EA80e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CORE is a non-inflationary cryptocurrency that is designed to execute profit-generating strategies autonomously with a completely decentralized approach.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FANNY

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-04
*/

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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


pragma solidity ^0.6.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/math/[email protected]


pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


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


pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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


pragma solidity ^0.6.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 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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


// File contracts/v612/FANNY/MerchToken.sol


pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

interface ICOREGlobals {
    function TransferHandler() external returns (address);
}
interface ICORETransferHandler{
    function handleRestrictedTokenTransfer(address, address, uint256) external;
}

/**
 * You find yourself deep in the forest
 * You're lost, your flashlight is running out of batteries
 * It barely shines anymore...
 * You barely see a large figure approaching you
 * its moving towards you fast
 * there is no way you can run
 * just in the field of vision of your feint flashlight
 * appears a smiling face, its a 6'4" muscule bound male
 * he says with a gravel like voice 
 * "I thikn your flashlight is out of battery, here take my spare"
 * He reaches inside a fanny pack and hands you 3 AAA batteries
 * "Are you lost? I'm X3"
 */

contract FANNY is ERC20 ("cVault.finance/FANNY", "FANNY")  {

    ICOREGlobals public coreGlobals;
    Claim [] public   allClaims;
    mapping (address => Claim[]) public claimsByPerson;

    event Claimed(uint256 indexed claimID, address indexed claimer, uint256 timestamp);

    constructor() public {
        coreGlobals = ICOREGlobals(0x255CA4596A963883Afe0eF9c85EA071Cc050128B);
        _mint(msg.sender, 300 ether);
    }

    struct Claim {
        uint256 id;
        uint256 timestamp;
        address claimerAddress;
    }

    // Front end helper
    function allClaimsForAnAddress(address guy) public view returns (Claim[] memory claims) {
        claims = claimsByPerson[guy];
    }

    function claimFanny() public {
        require(msg.sender == tx.origin, "Only dumb wallets.");
        _burn(msg.sender, 1e18);

        uint256 claimID = allClaims.length;
        claimsByPerson[msg.sender].push(
            Claim ({
                id : claimID,
                timestamp : block.timestamp,
                claimerAddress : msg.sender
            })
        );

        allClaims.push(
            Claim ({
                id : allClaims.length,
                timestamp : block.timestamp,
                claimerAddress : msg.sender

            })
        );

        emit Claimed(claimID, msg.sender, block.timestamp);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal  virtual override {
        ICORETransferHandler(coreGlobals.TransferHandler()).handleRestrictedTokenTransfer(from, to, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"uint256","name":"claimID","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allClaims","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"address","name":"claimerAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"guy","type":"address"}],"name":"allClaimsForAnAddress","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"address","name":"claimerAddress","type":"address"}],"internalType":"struct FANNY.Claim[]","name":"claims","type":"tuple[]"}],"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":[],"name":"claimFanny","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimsByPerson","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"address","name":"claimerAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coreGlobals","outputs":[{"internalType":"contract ICOREGlobals","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601481527f635661756c742e66696e616e63652f46414e4e5900000000000000000000000060208083019182528351808501909452600584526446414e4e5960d81b9084015281519192916200007491600391620002ea565b5080516200008a906004906020840190620002ea565b505060058054601260ff1990911617610100600160a81b03191674255ca4596a963883afe0ef9c85ea071cc050128b0017905550620000d333681043561a8829300000620000d9565b6200044a565b6001600160a01b0382166200010b5760405162461bcd60e51b815260040162000102906200040a565b60405180910390fd5b6200011960008383620001c5565b6200013581600254620002bb60201b620007d71790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000168918390620007d7620002bb821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001b990859062000441565b60405180910390a35050565b600560019054906101000a90046001600160a01b03166001600160a01b031663242c29296040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156200021657600080fd5b505af11580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000251919062000386565b6001600160a01b031663d0573a418484846040518463ffffffff1660e01b81526004016200028293929190620003af565b600060405180830381600087803b1580156200029d57600080fd5b505af1158015620002b2573d6000803e3d6000fd5b50505050505050565b600082820183811015620002e35760405162461bcd60e51b81526004016200010290620003d3565b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032d57805160ff19168380011785556200035d565b828001600101855582156200035d579182015b828111156200035d57825182559160200191906001019062000340565b506200036b9291506200036f565b5090565b5b808211156200036b576000815560010162000370565b60006020828403121562000398578081fd5b81516001600160a01b0381168114620002e3578182fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b6110c4806200045a6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063bd213b2811610066578063bd213b281461020b578063c0f807d714610215578063cadc8d9a14610235578063dd62ed3e1461024857610100565b806370a08231146101ca57806395d89b41146101dd578063a457c2d7146101e5578063a9059cbb146101f857610100565b80631a8598a7116100d35780631a8598a71461016d57806323b872dd1461018f578063313ce567146101a257806339509351146101b757610100565b806306fdde03146101055780630706b1f514610123578063095ea7b31461013857806318160ddd14610158575b600080fd5b61010d61025b565b60405161011a9190610da6565b60405180910390f35b61012b6102f1565b60405161011a9190610d92565b61014b610146366004610cbe565b610305565b60405161011a9190610d87565b610160610322565b60405161011a9190610fab565b61018061017b366004610ce9565b610328565b60405161011a93929190610fb4565b61014b61019d366004610c7e565b610361565b6101aa6103e8565b60405161011a9190610fd3565b61014b6101c5366004610cbe565b6103f1565b6101606101d8366004610c0e565b61043f565b61010d61045a565b61014b6101f3366004610cbe565b6104bb565b61014b610206366004610cbe565b610523565b610213610537565b005b610228610223366004610c0e565b6106cc565b60405161011a9190610d25565b610180610243366004610cbe565b610764565b610160610256366004610c46565b6107ac565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102e75780601f106102bc576101008083540402835291602001916102e7565b820191906000526020600020905b8154815290600101906020018083116102ca57829003601f168201915b5050505050905090565b60055461010090046001600160a01b031681565b6000610319610312610803565b8484610807565b50600192915050565b60025490565b6006818154811061033557fe5b60009182526020909120600390910201805460018201546002909201549092506001600160a01b031683565b600061036e8484846108bb565b6103de8461037a610803565b6103d985604051806060016040528060288152602001611042602891396001600160a01b038a166000908152600160205260408120906103b8610803565b6001600160a01b0316815260208101919091526040016000205491906109d0565b610807565b5060019392505050565b60055460ff1690565b60006103196103fe610803565b846103d9856001600061040f610803565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906107d7565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102e75780601f106102bc576101008083540402835291602001916102e7565b60006103196104c8610803565b846103d98560405180606001604052806025815260200161106a60259139600160006104f2610803565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906109d0565b6000610319610530610803565b84846108bb565b33321461055f5760405162461bcd60e51b815260040161055690610eb5565b60405180910390fd5b61057133670de0b6b3a76400006109fc565b6006805433600081815260076020908152604080832081516060808201845287825242828601818152838601898152855460018082018855968a52888a209551600391820290960195865591518587015551600290940180546001600160a01b03199081166001600160a01b0396871617909155865193840187528b548085529784018381528488018b81529689018d559b90985291517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f969092029586019190915597517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4085015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d419093018054909416921691909117909155519192909183917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026916106c19190610fab565b60405180910390a350565b6001600160a01b0381166000908152600760209081526040808320805482518185028101850190935280835260609492939192909184015b82821015610759576000848152602090819020604080516060810182526003860290920180548352600180820154848601526002909101546001600160a01b0316918301919091529083529092019101610704565b505050509050919050565b6007602052816000526040600020818154811061077d57fe5b60009182526020909120600390910201805460018201546002909201549093509091506001600160a01b031683565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828201838110156107fc5760405162461bcd60e51b815260040161055690610e7e565b9392505050565b3390565b6001600160a01b03831661082d5760405162461bcd60e51b815260040161055690610f67565b6001600160a01b0382166108535760405162461bcd60e51b815260040161055690610e3c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108ae908590610fab565b60405180910390a3505050565b6001600160a01b0383166108e15760405162461bcd60e51b815260040161055690610f22565b6001600160a01b0382166109075760405162461bcd60e51b815260040161055690610df9565b610912838383610ade565b61094f8160405180606001604052806026815260200161101c602691396001600160a01b03861660009081526020819052604090205491906109d0565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461097e90826107d7565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108ae908590610fab565b600081848411156109f45760405162461bcd60e51b81526004016105569190610da6565b505050900390565b6001600160a01b038216610a225760405162461bcd60e51b815260040161055690610ee1565b610a2e82600083610ade565b610a6b81604051806060016040528060228152602001610ffa602291396001600160a01b03851660009081526020819052604090205491906109d0565b6001600160a01b038316600090815260208190526040902055600254610a919082610bcc565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ad2908590610fab565b60405180910390a35050565b600560019054906101000a90046001600160a01b03166001600160a01b031663242c29296040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b2e57600080fd5b505af1158015610b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b669190610c2a565b6001600160a01b031663d0573a418484846040518463ffffffff1660e01b8152600401610b9593929190610d01565b600060405180830381600087803b158015610baf57600080fd5b505af1158015610bc3573d6000803e3d6000fd5b50505050505050565b60006107fc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109d0565b600060208284031215610c1f578081fd5b81356107fc81610fe1565b600060208284031215610c3b578081fd5b81516107fc81610fe1565b60008060408385031215610c58578081fd5b8235610c6381610fe1565b91506020830135610c7381610fe1565b809150509250929050565b600080600060608486031215610c92578081fd5b8335610c9d81610fe1565b92506020840135610cad81610fe1565b929592945050506040919091013590565b60008060408385031215610cd0578182fd5b8235610cdb81610fe1565b946020939093013593505050565b600060208284031215610cfa578081fd5b5035919050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b602080825282518282018190526000919060409081850190868401855b82811015610d7a5781518051855286810151878601528501516001600160a01b03168585015260609093019290850190600101610d42565b5091979650505050505050565b901515815260200190565b6001600160a01b0391909116815260200190565b6000602080835283518082850152825b81811015610dd257858101830151858201604001528201610db6565b81811115610de35783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526012908201527127b7363c90323ab6b1103bb0b63632ba399760711b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b92835260208301919091526001600160a01b0316604082015260600190565b60ff91909116815260200190565b6001600160a01b0381168114610ff657600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122000c2f1b587d7e94ee0074ddc10f1f14479d1e208b38e542c7fd66520e6b0e98b64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063bd213b2811610066578063bd213b281461020b578063c0f807d714610215578063cadc8d9a14610235578063dd62ed3e1461024857610100565b806370a08231146101ca57806395d89b41146101dd578063a457c2d7146101e5578063a9059cbb146101f857610100565b80631a8598a7116100d35780631a8598a71461016d57806323b872dd1461018f578063313ce567146101a257806339509351146101b757610100565b806306fdde03146101055780630706b1f514610123578063095ea7b31461013857806318160ddd14610158575b600080fd5b61010d61025b565b60405161011a9190610da6565b60405180910390f35b61012b6102f1565b60405161011a9190610d92565b61014b610146366004610cbe565b610305565b60405161011a9190610d87565b610160610322565b60405161011a9190610fab565b61018061017b366004610ce9565b610328565b60405161011a93929190610fb4565b61014b61019d366004610c7e565b610361565b6101aa6103e8565b60405161011a9190610fd3565b61014b6101c5366004610cbe565b6103f1565b6101606101d8366004610c0e565b61043f565b61010d61045a565b61014b6101f3366004610cbe565b6104bb565b61014b610206366004610cbe565b610523565b610213610537565b005b610228610223366004610c0e565b6106cc565b60405161011a9190610d25565b610180610243366004610cbe565b610764565b610160610256366004610c46565b6107ac565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102e75780601f106102bc576101008083540402835291602001916102e7565b820191906000526020600020905b8154815290600101906020018083116102ca57829003601f168201915b5050505050905090565b60055461010090046001600160a01b031681565b6000610319610312610803565b8484610807565b50600192915050565b60025490565b6006818154811061033557fe5b60009182526020909120600390910201805460018201546002909201549092506001600160a01b031683565b600061036e8484846108bb565b6103de8461037a610803565b6103d985604051806060016040528060288152602001611042602891396001600160a01b038a166000908152600160205260408120906103b8610803565b6001600160a01b0316815260208101919091526040016000205491906109d0565b610807565b5060019392505050565b60055460ff1690565b60006103196103fe610803565b846103d9856001600061040f610803565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906107d7565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156102e75780601f106102bc576101008083540402835291602001916102e7565b60006103196104c8610803565b846103d98560405180606001604052806025815260200161106a60259139600160006104f2610803565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906109d0565b6000610319610530610803565b84846108bb565b33321461055f5760405162461bcd60e51b815260040161055690610eb5565b60405180910390fd5b61057133670de0b6b3a76400006109fc565b6006805433600081815260076020908152604080832081516060808201845287825242828601818152838601898152855460018082018855968a52888a209551600391820290960195865591518587015551600290940180546001600160a01b03199081166001600160a01b0396871617909155865193840187528b548085529784018381528488018b81529689018d559b90985291517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f969092029586019190915597517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4085015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d419093018054909416921691909117909155519192909183917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026916106c19190610fab565b60405180910390a350565b6001600160a01b0381166000908152600760209081526040808320805482518185028101850190935280835260609492939192909184015b82821015610759576000848152602090819020604080516060810182526003860290920180548352600180820154848601526002909101546001600160a01b0316918301919091529083529092019101610704565b505050509050919050565b6007602052816000526040600020818154811061077d57fe5b60009182526020909120600390910201805460018201546002909201549093509091506001600160a01b031683565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828201838110156107fc5760405162461bcd60e51b815260040161055690610e7e565b9392505050565b3390565b6001600160a01b03831661082d5760405162461bcd60e51b815260040161055690610f67565b6001600160a01b0382166108535760405162461bcd60e51b815260040161055690610e3c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108ae908590610fab565b60405180910390a3505050565b6001600160a01b0383166108e15760405162461bcd60e51b815260040161055690610f22565b6001600160a01b0382166109075760405162461bcd60e51b815260040161055690610df9565b610912838383610ade565b61094f8160405180606001604052806026815260200161101c602691396001600160a01b03861660009081526020819052604090205491906109d0565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461097e90826107d7565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108ae908590610fab565b600081848411156109f45760405162461bcd60e51b81526004016105569190610da6565b505050900390565b6001600160a01b038216610a225760405162461bcd60e51b815260040161055690610ee1565b610a2e82600083610ade565b610a6b81604051806060016040528060228152602001610ffa602291396001600160a01b03851660009081526020819052604090205491906109d0565b6001600160a01b038316600090815260208190526040902055600254610a919082610bcc565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ad2908590610fab565b60405180910390a35050565b600560019054906101000a90046001600160a01b03166001600160a01b031663242c29296040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b2e57600080fd5b505af1158015610b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b669190610c2a565b6001600160a01b031663d0573a418484846040518463ffffffff1660e01b8152600401610b9593929190610d01565b600060405180830381600087803b158015610baf57600080fd5b505af1158015610bc3573d6000803e3d6000fd5b50505050505050565b60006107fc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109d0565b600060208284031215610c1f578081fd5b81356107fc81610fe1565b600060208284031215610c3b578081fd5b81516107fc81610fe1565b60008060408385031215610c58578081fd5b8235610c6381610fe1565b91506020830135610c7381610fe1565b809150509250929050565b600080600060608486031215610c92578081fd5b8335610c9d81610fe1565b92506020840135610cad81610fe1565b929592945050506040919091013590565b60008060408385031215610cd0578182fd5b8235610cdb81610fe1565b946020939093013593505050565b600060208284031215610cfa578081fd5b5035919050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b602080825282518282018190526000919060409081850190868401855b82811015610d7a5781518051855286810151878601528501516001600160a01b03168585015260609093019290850190600101610d42565b5091979650505050505050565b901515815260200190565b6001600160a01b0391909116815260200190565b6000602080835283518082850152825b81811015610dd257858101830151858201604001528201610db6565b81811115610de35783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526012908201527127b7363c90323ab6b1103bb0b63632ba399760711b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b92835260208301919091526001600160a01b0316604082015260600190565b60ff91909116815260200190565b6001600160a01b0381168114610ff657600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122000c2f1b587d7e94ee0074ddc10f1f14479d1e208b38e542c7fd66520e6b0e98b64736f6c634300060c0033

Deployed Bytecode Sourcemap

27238:1626:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17528:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27306:31;;;:::i;:::-;;;;;;;:::i;19634:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18603:100::-;;;:::i;:::-;;;;;;;:::i;27344:27::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;20277:321::-;;;;;;:::i;:::-;;:::i;18455:83::-;;;:::i;:::-;;;;;;;:::i;21007:218::-;;;;;;:::i;:::-;;:::i;18766:119::-;;;;;;:::i;:::-;;:::i;17730:87::-;;;:::i;21728:269::-;;;;;;:::i;:::-;;:::i;19098:175::-;;;;;;:::i;:::-;;:::i;27964:670::-;;;:::i;:::-;;27821:135;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27378:50::-;;;;;;:::i;:::-;;:::i;19336:151::-;;;;;;:::i;:::-;;:::i;17528:83::-;17598:5;17591:12;;;;;;;;-1:-1:-1;;17591:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17565:13;;17591:12;;17598:5;;17591:12;;17598:5;17591:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17528:83;:::o;27306:31::-;;;;;;-1:-1:-1;;;;;27306:31:0;;:::o;19634:169::-;19717:4;19734:39;19743:12;:10;:12::i;:::-;19757:7;19766:6;19734:8;:39::i;:::-;-1:-1:-1;19791:4:0;19634:169;;;;:::o;18603:100::-;18683:12;;18603:100;:::o;27344:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27344:27:0;;:::o;20277:321::-;20383:4;20400:36;20410:6;20418:9;20429:6;20400:9;:36::i;:::-;20447:121;20456:6;20464:12;:10;:12::i;:::-;20478:89;20516:6;20478:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20478:19:0;;;;;;:11;:19;;;;;;20498:12;:10;:12::i;:::-;-1:-1:-1;;;;;20478:33:0;;;;;;;;;;;;-1:-1:-1;20478:33:0;;;:89;:37;:89::i;:::-;20447:8;:121::i;:::-;-1:-1:-1;20586:4:0;20277:321;;;;;:::o;18455:83::-;18521:9;;;;18455:83;:::o;21007:218::-;21095:4;21112:83;21121:12;:10;:12::i;:::-;21135:7;21144:50;21183:10;21144:11;:25;21156:12;:10;:12::i;:::-;-1:-1:-1;;;;;21144:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21144:25:0;;;:34;;;;;;;;;;;:38;:50::i;18766:119::-;-1:-1:-1;;;;;18859:18:0;18832:7;18859:18;;;;;;;;;;;;18766:119::o;17730:87::-;17802:7;17795:14;;;;;;;;-1:-1:-1;;17795:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17769:13;;17795:14;;17802:7;;17795:14;;17802:7;17795:14;;;;;;;;;;;;;;;;;;;;;;;;21728:269;21821:4;21838:129;21847:12;:10;:12::i;:::-;21861:7;21870:96;21909:15;21870:96;;;;;;;;;;;;;;;;;:11;:25;21882:12;:10;:12::i;:::-;-1:-1:-1;;;;;21870:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21870:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19098:175::-;19184:4;19201:42;19211:12;:10;:12::i;:::-;19225:9;19236:6;19201:9;:42::i;27964:670::-;28012:10;28026:9;28012:23;28004:54;;;;-1:-1:-1;;;28004:54:0;;;;;;;:::i;:::-;;;;;;;;;28069:23;28075:10;28087:4;28069:5;:23::i;:::-;28123:9;:16;;28165:10;28105:15;28150:26;;;:14;:26;;;;;;;;28196:146;;;;;;;;;;;28265:15;28196:146;;;;;;;;;;;;28150:203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28150:203:0;;;-1:-1:-1;;;;;28150:203:0;;;;;;;28395:157;;;;;;;28426:16;;28395:157;;;;;;;;;;;;;;;28366:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28581:45;28123:16;;28165:10;;28123:16;;28581:45;;;;28265:15;28581:45;:::i;:::-;;;;;;;;27964:670;:::o;27821:135::-;-1:-1:-1;;;;;27929:19:0;;;;;;:14;:19;;;;;;;;27920:28;;;;;;;;;;;;;;;;;27886:21;;27920:28;;27929:19;;27920:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27920:28:0;;;;;;;;;;;;;;;;;;;;;;;;;27821:135;;;:::o;27378:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27378:50:0;;-1:-1:-1;;;;;;27378:50:0;;:::o;19336:151::-;-1:-1:-1;;;;;19452:18:0;;;19425:7;19452:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19336:151::o;4821:181::-;4879:7;4911:5;;;4935:6;;;;4927:46;;;;-1:-1:-1;;;4927:46:0;;;;;;;:::i;:::-;4993:1;4821:181;-1:-1:-1;;;4821:181:0:o;727:106::-;815:10;727:106;:::o;24873:346::-;-1:-1:-1;;;;;24975:19:0;;24967:68;;;;-1:-1:-1;;;24967:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25054:21:0;;25046:68;;;;-1:-1:-1;;;25046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25127:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;25179:32;;;;;25157:6;;25179:32;:::i;:::-;;;;;;;;24873:346;;;:::o;22487:539::-;-1:-1:-1;;;;;22593:20:0;;22585:70;;;;-1:-1:-1;;;22585:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22674:23:0;;22666:71;;;;-1:-1:-1;;;22666:71:0;;;;;;;:::i;:::-;22750:47;22771:6;22779:9;22790:6;22750:20;:47::i;:::-;22830:71;22852:6;22830:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22830:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22810:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22935:20;;;;;;;:32;;22960:6;22935:24;:32::i;:::-;-1:-1:-1;;;;;22912:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22983:35;;;;;;;;;;23011:6;;22983:35;:::i;5724:192::-;5810:7;5846:12;5838:6;;;;5830:29;;;;-1:-1:-1;;;5830:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;5882:5:0;;;5724:192::o;24017:418::-;-1:-1:-1;;;;;24101:21:0;;24093:67;;;;-1:-1:-1;;;24093:67:0;;;;;;;:::i;:::-;24173:49;24194:7;24211:1;24215:6;24173:20;:49::i;:::-;24256:68;24279:6;24256:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24256:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;24235:18:0;;:9;:18;;;;;;;;;;:89;24350:12;;:24;;24367:6;24350:16;:24::i;:::-;24335:12;:39;24390:37;;24416:1;;-1:-1:-1;;;;;24390:37:0;;;;;;;24420:6;;24390:37;:::i;:::-;;;;;;;;24017:418;;:::o;28642:217::-;28773:11;;;;;;;;;-1:-1:-1;;;;;28773:11:0;-1:-1:-1;;;;;28773:27:0;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;28752:81:0;;28834:4;28840:2;28844:6;28752:99;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28642:217;;;:::o;5285:136::-;5343:7;5370:43;5374:1;5377;5370:43;;;;;;;;;;;;;;;;;:3;:43::i;420:241:-1:-;;524:2;512:9;503:7;499:23;495:32;492:2;;;-1:-1;;530:12;492:2;85:6;72:20;97:33;124:5;97:33;:::i;668:263::-;;783:2;771:9;762:7;758:23;754:32;751:2;;;-1:-1;;789:12;751:2;226:6;220:13;238:33;265:5;238:33;:::i;938:366::-;;;1059:2;1047:9;1038:7;1034:23;1030:32;1027:2;;;-1:-1;;1065:12;1027:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1117:63;-1:-1;1217:2;1256:22;;72:20;97:33;72:20;97:33;:::i;:::-;1225:63;;;;1021:283;;;;;:::o;1311:491::-;;;;1449:2;1437:9;1428:7;1424:23;1420:32;1417:2;;;-1:-1;;1455:12;1417:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1507:63;-1:-1;1607:2;1646:22;;72:20;97:33;72:20;97:33;:::i;:::-;1411:391;;1615:63;;-1:-1;;;1715:2;1754:22;;;;350:20;;1411:391::o;1809:366::-;;;1930:2;1918:9;1909:7;1905:23;1901:32;1898:2;;;-1:-1;;1936:12;1898:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1988:63;2088:2;2127:22;;;;350:20;;-1:-1;;;1892:283::o;2182:241::-;;2286:2;2274:9;2265:7;2261:23;2257:32;2254:2;;;-1:-1;;2292:12;2254:2;-1:-1;350:20;;2248:175;-1:-1;2248:175::o;8102:444::-;-1:-1;;;;;14936:54;;;2765:37;;14936:54;;;;8449:2;8434:18;;2765:37;8532:2;8517:18;;7819:37;;;;8285:2;8270:18;;8256:290::o;8553:462::-;8776:2;8790:47;;;13994:12;;8761:18;;;14444:19;;;8553:462;;8776:2;14484:14;;;;;;13825;;;8553:462;3510:329;3535:6;3532:1;3529:13;3510:329;;;3596:13;;7315:23;;7819:37;;7480:16;;;7474:23;7551:14;;;7819:37;7644:16;;7638:23;-1:-1;;;;;14936:54;7715:14;;;2765:37;2685:4;2676:14;;;;14276;;;;14947:42;3550:9;3510:329;;;-1:-1;8843:162;;8747:268;-1:-1;;;;;;;8747:268::o;9022:210::-;14848:13;;14841:21;3934:34;;9143:2;9128:18;;9114:118::o;9239:262::-;-1:-1;;;;;14936:54;;;;4071:70;;9386:2;9371:18;;9357:144::o;9508:310::-;;9655:2;;9676:17;9669:47;4298:5;13994:12;14456:6;9655:2;9644:9;9640:18;14444:19;-1:-1;15545:101;15559:6;15556:1;15553:13;15545:101;;;15626:11;;;;;15620:18;15607:11;;;14484:14;15607:11;15600:39;15574:10;;15545:101;;;15661:6;15658:1;15655:13;15652:2;;;-1:-1;14484:14;15717:6;9644:9;15708:16;;15701:27;15652:2;-1:-1;15833:7;15817:14;-1:-1;;15813:28;4456:39;;;;14484:14;4456:39;;9626:192;-1:-1;;;9626:192::o;9825:416::-;10025:2;10039:47;;;4732:2;10010:18;;;14444:19;4768:34;14484:14;;;4748:55;-1:-1;;;4823:12;;;4816:27;4862:12;;;9996:245::o;10248:416::-;10448:2;10462:47;;;5113:2;10433:18;;;14444:19;5149:34;14484:14;;;5129:55;-1:-1;;;5204:12;;;5197:26;5242:12;;;10419:245::o;10671:416::-;10871:2;10885:47;;;5493:2;10856:18;;;14444:19;5529:29;14484:14;;;5509:50;5578:12;;;10842:245::o;11094:416::-;11294:2;11308:47;;;5829:2;11279:18;;;14444:19;-1:-1;;;14484:14;;;5845:41;5905:12;;;11265:245::o;11517:416::-;11717:2;11731:47;;;6156:2;11702:18;;;14444:19;6192:34;14484:14;;;6172:55;-1:-1;;;6247:12;;;6240:25;6284:12;;;11688:245::o;11940:416::-;12140:2;12154:47;;;6535:2;12125:18;;;14444:19;6571:34;14484:14;;;6551:55;-1:-1;;;6626:12;;;6619:29;6667:12;;;12111:245::o;12363:416::-;12563:2;12577:47;;;6918:2;12548:18;;;14444:19;6954:34;14484:14;;;6934:55;-1:-1;;;7009:12;;;7002:28;7049:12;;;12534:245::o;12786:222::-;7819:37;;;12913:2;12898:18;;12884:124::o;13015:444::-;7819:37;;;13362:2;13347:18;;7819:37;;;;-1:-1;;;;;14936:54;13445:2;13430:18;;2765:37;13198:2;13183:18;;13169:290::o;13466:214::-;15152:4;15141:16;;;;8055:35;;13589:2;13574:18;;13560:120::o;15854:117::-;-1:-1;;;;;14936:54;;15913:35;;15903:2;;15962:1;;15952:12;15903:2;15897:74;:::o

Swarm Source

ipfs://00c2f1b587d7e94ee0074ddc10f1f14479d1e208b38e542c7fd66520e6b0e98b
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.