ETH Price: $2,639.75 (-1.75%)

Token

SUNNIFY (SUNNIFY)
 

Overview

Max Total Supply

1,121,428,571 SUNNIFY

Holders

11

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
SUNNIFY

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: SUNNIFY.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.28;

import "./ERC20.sol";

contract SUNNIFY is ERC20("SUNNIFY", "SUNNIFY") {

  /**
  * @param wallet Address of the wallet, where tokens will be transferred to
  */
  constructor(address wallet) {
    _mint(wallet, 1_121_428_571 ether);
  }
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.28;

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

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.28;

import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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;

    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_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) external 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) external virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) external 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) external 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) external 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) external 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) external 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 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 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 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.28;

/**
 * @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 4 of 5: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.28;

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

608060405234801561000f575f5ffd5b50604051611aed380380611aed8339818101604052810190610031919061034e565b6040518060400160405280600781526020017f53554e4e494659000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f53554e4e4946590000000000000000000000000000000000000000000000000081525081600390816100ac91906105b6565b5080600490816100bc91906105b6565b50601260055f6101000a81548160ff021916908360ff16021790555050506100f6816b039f9fbca5f56614908c00006100fc60201b60201c565b506107ed565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361016a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610161906106df565b60405180910390fd5b61017b5f838361028e60201b60201c565b6101908160025461029360201b90919060201c565b6002819055506101e5815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461029360201b90919060201c565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610282919061070c565b60405180910390a35050565b505050565b5f5f82846102a19190610752565b9050838110156102e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102dd906107cf565b60405180910390fd5b8091505092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61031d826102f4565b9050919050565b61032d81610313565b8114610337575f5ffd5b50565b5f8151905061034881610324565b92915050565b5f60208284031215610363576103626102f0565b5b5f6103708482850161033a565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806103f457607f821691505b602082108103610407576104066103b0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261042e565b610473868361042e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104b76104b26104ad8461048b565b610494565b61048b565b9050919050565b5f819050919050565b6104d08361049d565b6104e46104dc826104be565b84845461043a565b825550505050565b5f5f905090565b6104fb6104ec565b6105068184846104c7565b505050565b5b818110156105295761051e5f826104f3565b60018101905061050c565b5050565b601f82111561056e5761053f8161040d565b6105488461041f565b81016020851015610557578190505b61056b6105638561041f565b83018261050b565b50505b505050565b5f82821c905092915050565b5f61058e5f1984600802610573565b1980831691505092915050565b5f6105a6838361057f565b9150826002028217905092915050565b6105bf82610379565b67ffffffffffffffff8111156105d8576105d7610383565b5b6105e282546103dd565b6105ed82828561052d565b5f60209050601f83116001811461061e575f841561060c578287015190505b610616858261059b565b86555061067d565b601f19841661062c8661040d565b5f5b828110156106535784890151825560018201915060208501945060208101905061062e565b86831015610670578489015161066c601f89168261057f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6106c9601f83610685565b91506106d482610695565b602082019050919050565b5f6020820190508181035f8301526106f6816106bd565b9050919050565b6107068161048b565b82525050565b5f60208201905061071f5f8301846106fd565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61075c8261048b565b91506107678361048b565b925082820190508082111561077f5761077e610725565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6107b9601b83610685565b91506107c482610785565b602082019050919050565b5f6020820190508181035f8301526107e6816107ad565b9050919050565b6112f3806107fa5f395ff3fe608060405234801561000f575f5ffd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f5ffd5b6100b3610273565b6040516100c09190610c83565b60405180910390f35b6100e360048036038101906100de9190610d34565b610303565b6040516100f09190610d8c565b60405180910390f35b610101610320565b60405161010e9190610db4565b60405180910390f35b610131600480360381019061012c9190610dcd565b610329565b60405161013e9190610d8c565b60405180910390f35b61014f6103fd565b60405161015c9190610e38565b60405180910390f35b61017f600480360381019061017a9190610d34565b610412565b60405161018c9190610d8c565b60405180910390f35b6101af60048036038101906101aa9190610e51565b6104c0565b6040516101bc9190610db4565b60405180910390f35b6101cd610505565b6040516101da9190610c83565b60405180910390f35b6101fd60048036038101906101f89190610d34565b610595565b60405161020a9190610d8c565b60405180910390f35b61022d60048036038101906102289190610d34565b61065d565b60405161023a9190610d8c565b60405180910390f35b61025d60048036038101906102589190610e7c565b61067a565b60405161026a9190610db4565b60405180910390f35b60606003805461028290610ee7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610ee7565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f6106fc565b8484610703565b6001905092915050565b5f600254905090565b5f6103358484846108c6565b6103f2846103416106fc565b6103ed856040518060600160405280602881526020016112716028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6103a46106fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b4f9092919063ffffffff16565b610703565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f6104b661041e6106fc565b846104b18560015f61042e6106fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bb190919063ffffffff16565b610703565b6001905092915050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461051490610ee7565b80601f016020809104026020016040519081016040528092919081815260200182805461054090610ee7565b801561058b5780601f106105625761010080835404028352916020019161058b565b820191905f5260205f20905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b5f6106536105a16106fc565b8461064e856040518060600160405280602581526020016112996025913960015f6105ca6106fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b4f9092919063ffffffff16565b610703565b6001905092915050565b5f6106706106696106fc565b84846108c6565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890610f87565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d690611015565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108b99190610db4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b906110a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611131565b60405180910390fd5b6109ad838383610c0e565b610a168160405180606001604052806026815260200161124b602691395f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b4f9092919063ffffffff16565b5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610aa5815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bb190919063ffffffff16565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b429190610db4565b60405180910390a3505050565b5f838311158290610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9190610c83565b60405180910390fd5b505f8385610ba4919061117c565b9050809150509392505050565b5f5f8284610bbf91906111af565b905083811015610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061122c565b60405180910390fd5b8091505092915050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c5582610c13565b610c5f8185610c1d565b9350610c6f818560208601610c2d565b610c7881610c3b565b840191505092915050565b5f6020820190508181035f830152610c9b8184610c4b565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cd082610ca7565b9050919050565b610ce081610cc6565b8114610cea575f5ffd5b50565b5f81359050610cfb81610cd7565b92915050565b5f819050919050565b610d1381610d01565b8114610d1d575f5ffd5b50565b5f81359050610d2e81610d0a565b92915050565b5f5f60408385031215610d4a57610d49610ca3565b5b5f610d5785828601610ced565b9250506020610d6885828601610d20565b9150509250929050565b5f8115159050919050565b610d8681610d72565b82525050565b5f602082019050610d9f5f830184610d7d565b92915050565b610dae81610d01565b82525050565b5f602082019050610dc75f830184610da5565b92915050565b5f5f5f60608486031215610de457610de3610ca3565b5b5f610df186828701610ced565b9350506020610e0286828701610ced565b9250506040610e1386828701610d20565b9150509250925092565b5f60ff82169050919050565b610e3281610e1d565b82525050565b5f602082019050610e4b5f830184610e29565b92915050565b5f60208284031215610e6657610e65610ca3565b5b5f610e7384828501610ced565b91505092915050565b5f5f60408385031215610e9257610e91610ca3565b5b5f610e9f85828601610ced565b9250506020610eb085828601610ced565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610efe57607f821691505b602082108103610f1157610f10610eba565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610f71602483610c1d565b9150610f7c82610f17565b604082019050919050565b5f6020820190508181035f830152610f9e81610f65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610fff602283610c1d565b915061100a82610fa5565b604082019050919050565b5f6020820190508181035f83015261102c81610ff3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61108d602583610c1d565b915061109882611033565b604082019050919050565b5f6020820190508181035f8301526110ba81611081565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61111b602383610c1d565b9150611126826110c1565b604082019050919050565b5f6020820190508181035f8301526111488161110f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61118682610d01565b915061119183610d01565b92508282039050818111156111a9576111a861114f565b5b92915050565b5f6111b982610d01565b91506111c483610d01565b92508282019050808211156111dc576111db61114f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611216601b83610c1d565b9150611221826111e2565b602082019050919050565b5f6020820190508181035f8301526112438161120a565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e4cadd66b19f0237eba0a1298446985ecc60cf7f0ce7d1f37b7bf1525aed122e64736f6c634300081c003300000000000000000000000075a747e15966ba5d08985d4c6fe2d1136baca8b7

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100a7575f3560e01c8063395093511161006f578063395093511461016557806370a082311461019557806395d89b41146101c5578063a457c2d7146101e3578063a9059cbb14610213578063dd62ed3e14610243576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f5ffd5b6100b3610273565b6040516100c09190610c83565b60405180910390f35b6100e360048036038101906100de9190610d34565b610303565b6040516100f09190610d8c565b60405180910390f35b610101610320565b60405161010e9190610db4565b60405180910390f35b610131600480360381019061012c9190610dcd565b610329565b60405161013e9190610d8c565b60405180910390f35b61014f6103fd565b60405161015c9190610e38565b60405180910390f35b61017f600480360381019061017a9190610d34565b610412565b60405161018c9190610d8c565b60405180910390f35b6101af60048036038101906101aa9190610e51565b6104c0565b6040516101bc9190610db4565b60405180910390f35b6101cd610505565b6040516101da9190610c83565b60405180910390f35b6101fd60048036038101906101f89190610d34565b610595565b60405161020a9190610d8c565b60405180910390f35b61022d60048036038101906102289190610d34565b61065d565b60405161023a9190610d8c565b60405180910390f35b61025d60048036038101906102589190610e7c565b61067a565b60405161026a9190610db4565b60405180910390f35b60606003805461028290610ee7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ae90610ee7565b80156102f95780601f106102d0576101008083540402835291602001916102f9565b820191905f5260205f20905b8154815290600101906020018083116102dc57829003601f168201915b5050505050905090565b5f61031661030f6106fc565b8484610703565b6001905092915050565b5f600254905090565b5f6103358484846108c6565b6103f2846103416106fc565b6103ed856040518060600160405280602881526020016112716028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6103a46106fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b4f9092919063ffffffff16565b610703565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f6104b661041e6106fc565b846104b18560015f61042e6106fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bb190919063ffffffff16565b610703565b6001905092915050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461051490610ee7565b80601f016020809104026020016040519081016040528092919081815260200182805461054090610ee7565b801561058b5780601f106105625761010080835404028352916020019161058b565b820191905f5260205f20905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b5f6106536105a16106fc565b8461064e856040518060600160405280602581526020016112996025913960015f6105ca6106fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b4f9092919063ffffffff16565b610703565b6001905092915050565b5f6106706106696106fc565b84846108c6565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890610f87565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d690611015565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108b99190610db4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b906110a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611131565b60405180910390fd5b6109ad838383610c0e565b610a168160405180606001604052806026815260200161124b602691395f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b4f9092919063ffffffff16565b5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610aa5815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bb190919063ffffffff16565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b429190610db4565b60405180910390a3505050565b5f838311158290610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9190610c83565b60405180910390fd5b505f8385610ba4919061117c565b9050809150509392505050565b5f5f8284610bbf91906111af565b905083811015610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061122c565b60405180910390fd5b8091505092915050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c5582610c13565b610c5f8185610c1d565b9350610c6f818560208601610c2d565b610c7881610c3b565b840191505092915050565b5f6020820190508181035f830152610c9b8184610c4b565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cd082610ca7565b9050919050565b610ce081610cc6565b8114610cea575f5ffd5b50565b5f81359050610cfb81610cd7565b92915050565b5f819050919050565b610d1381610d01565b8114610d1d575f5ffd5b50565b5f81359050610d2e81610d0a565b92915050565b5f5f60408385031215610d4a57610d49610ca3565b5b5f610d5785828601610ced565b9250506020610d6885828601610d20565b9150509250929050565b5f8115159050919050565b610d8681610d72565b82525050565b5f602082019050610d9f5f830184610d7d565b92915050565b610dae81610d01565b82525050565b5f602082019050610dc75f830184610da5565b92915050565b5f5f5f60608486031215610de457610de3610ca3565b5b5f610df186828701610ced565b9350506020610e0286828701610ced565b9250506040610e1386828701610d20565b9150509250925092565b5f60ff82169050919050565b610e3281610e1d565b82525050565b5f602082019050610e4b5f830184610e29565b92915050565b5f60208284031215610e6657610e65610ca3565b5b5f610e7384828501610ced565b91505092915050565b5f5f60408385031215610e9257610e91610ca3565b5b5f610e9f85828601610ced565b9250506020610eb085828601610ced565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610efe57607f821691505b602082108103610f1157610f10610eba565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610f71602483610c1d565b9150610f7c82610f17565b604082019050919050565b5f6020820190508181035f830152610f9e81610f65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f610fff602283610c1d565b915061100a82610fa5565b604082019050919050565b5f6020820190508181035f83015261102c81610ff3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61108d602583610c1d565b915061109882611033565b604082019050919050565b5f6020820190508181035f8301526110ba81611081565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61111b602383610c1d565b9150611126826110c1565b604082019050919050565b5f6020820190508181035f8301526111488161110f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61118682610d01565b915061119183610d01565b92508282039050818111156111a9576111a861114f565b5b92915050565b5f6111b982610d01565b91506111c483610d01565b92508282019050808211156111dc576111db61114f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611216601b83610c1d565b9150611221826111e2565b602082019050919050565b5f6020820190508181035f8301526112438161120a565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e4cadd66b19f0237eba0a1298446985ecc60cf7f0ce7d1f37b7bf1525aed122e64736f6c634300081c0033

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

00000000000000000000000075a747e15966ba5d08985d4c6fe2d1136baca8b7

-----Decoded View---------------
Arg [0] : wallet (address): 0x75a747E15966ba5D08985d4C6FE2D1136bAcA8B7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000075a747e15966ba5d08985d4c6fe2d1136baca8b7


Deployed Bytecode Sourcemap

82:216:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:83:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4185:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3184:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4820:319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3041:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5534:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3342:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2331:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6238:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3664:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3896:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2135:83;2174:13;2206:5;2199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:83;:::o;4185:168::-;4270:4;4286:39;4295:12;:10;:12::i;:::-;4309:7;4318:6;4286:8;:39::i;:::-;4342:4;4335:11;;4185:168;;;;:::o;3184:100::-;3239:7;3265:12;;3258:19;;3184:100;:::o;4820:319::-;4928:4;4944:36;4954:6;4962:9;4973:6;4944:9;:36::i;:::-;4990:121;4999:6;5007:12;:10;:12::i;:::-;5021:89;5059:6;5021:89;;;;;;;;;;;;;;;;;:11;:19;5033:6;5021:19;;;;;;;;;;;;;;;:33;5041:12;:10;:12::i;:::-;5021:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;4990:8;:121::i;:::-;5128:4;5121:11;;4820:319;;;;;:::o;3041:83::-;3084:5;3108:9;;;;;;;;;;;3101:16;;3041:83;:::o;5534:217::-;5624:4;5640:83;5649:12;:10;:12::i;:::-;5663:7;5672:50;5711:10;5672:11;:25;5684:12;:10;:12::i;:::-;5672:25;;;;;;;;;;;;;;;:34;5698:7;5672:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;5640:8;:83::i;:::-;5740:4;5733:11;;5534:217;;;;:::o;3342:119::-;3410:7;3436:9;:18;3446:7;3436:18;;;;;;;;;;;;;;;;3429:25;;3342:119;;;:::o;2331:87::-;2372:13;2404:7;2397:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2331:87;:::o;6238:268::-;6333:4;6349:129;6358:12;:10;:12::i;:::-;6372:7;6381:96;6420:15;6381:96;;;;;;;;;;;;;;;;;:11;:25;6393:12;:10;:12::i;:::-;6381:25;;;;;;;;;;;;;;;:34;6407:7;6381:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;6349:8;:129::i;:::-;6495:4;6488:11;;6238:268;;;;:::o;3664:174::-;3752:4;3768:42;3778:12;:10;:12::i;:::-;3792:9;3803:6;3768:9;:42::i;:::-;3827:4;3820:11;;3664:174;;;;:::o;3896:151::-;3987:7;4013:11;:18;4025:5;4013:18;;;;;;;;;;;;;;;:27;4032:7;4013:27;;;;;;;;;;;;;;;;4006:34;;3896:151;;;;:::o;588:96:0:-;641:7;667:10;660:17;;588:96;:::o;8574:340:1:-;8692:1;8675:19;;:5;:19;;;8667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8772:1;8753:21;;:7;:21;;;8745:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8854:6;8824:11;:18;8836:5;8824:18;;;;;;;;;;;;;;;:27;8843:7;8824:27;;;;;;;;;;;;;;;:36;;;;8891:7;8875:32;;8884:5;8875:32;;;8900:6;8875:32;;;;;;:::i;:::-;;;;;;;;8574:340;;;:::o;6980:530::-;7103:1;7085:20;;:6;:20;;;7077:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7186:1;7165:23;;:9;:23;;;7157:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7239:47;7260:6;7268:9;7279:6;7239:20;:47::i;:::-;7317:71;7339:6;7317:71;;;;;;;;;;;;;;;;;:9;:17;7327:6;7317:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;7297:9;:17;7307:6;7297:17;;;;;;;;;;;;;;;:91;;;;7421:32;7446:6;7421:9;:20;7431:9;7421:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7398:9;:20;7408:9;7398:20;;;;;;;;;;;;;;;:55;;;;7485:9;7468:35;;7477:6;7468:35;;;7496:6;7468:35;;;;;;:::i;:::-;;;;;;;;6980:530;;;:::o;1495:187:4:-;1581:7;1613:1;1608;:6;;1616:12;1600:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1639:9;1655:1;1651;:5;;;;:::i;:::-;1639:17;;1674:1;1667:8;;;1495:187;;;;;:::o;1028:176::-;1086:7;1105:9;1121:1;1117;:5;;;;:::i;:::-;1105:17;;1145:1;1140;:6;;1132:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1196:1;1189:8;;;1028:176;;;;:::o;9501:92:1:-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:474::-;5149:6;5157;5206:2;5194:9;5185:7;5181:23;5177:32;5174:119;;;5212:79;;:::i;:::-;5174:119;5332:1;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5303:117;5459:2;5485:53;5530:7;5521:6;5510:9;5506:22;5485:53;:::i;:::-;5475:63;;5430:118;5081:474;;;;;:::o;5561:180::-;5609:77;5606:1;5599:88;5706:4;5703:1;5696:15;5730:4;5727:1;5720:15;5747:320;5791:6;5828:1;5822:4;5818:12;5808:22;;5875:1;5869:4;5865:12;5896:18;5886:81;;5952:4;5944:6;5940:17;5930:27;;5886:81;6014:2;6006:6;6003:14;5983:18;5980:38;5977:84;;6033:18;;:::i;:::-;5977:84;5798:269;5747:320;;;:::o;6073:223::-;6213:34;6209:1;6201:6;6197:14;6190:58;6282:6;6277:2;6269:6;6265:15;6258:31;6073:223;:::o;6302:366::-;6444:3;6465:67;6529:2;6524:3;6465:67;:::i;:::-;6458:74;;6541:93;6630:3;6541:93;:::i;:::-;6659:2;6654:3;6650:12;6643:19;;6302:366;;;:::o;6674:419::-;6840:4;6878:2;6867:9;6863:18;6855:26;;6927:9;6921:4;6917:20;6913:1;6902:9;6898:17;6891:47;6955:131;7081:4;6955:131;:::i;:::-;6947:139;;6674:419;;;:::o;7099:221::-;7239:34;7235:1;7227:6;7223:14;7216:58;7308:4;7303:2;7295:6;7291:15;7284:29;7099:221;:::o;7326:366::-;7468:3;7489:67;7553:2;7548:3;7489:67;:::i;:::-;7482:74;;7565:93;7654:3;7565:93;:::i;:::-;7683:2;7678:3;7674:12;7667:19;;7326:366;;;:::o;7698:419::-;7864:4;7902:2;7891:9;7887:18;7879:26;;7951:9;7945:4;7941:20;7937:1;7926:9;7922:17;7915:47;7979:131;8105:4;7979:131;:::i;:::-;7971:139;;7698:419;;;:::o;8123:224::-;8263:34;8259:1;8251:6;8247:14;8240:58;8332:7;8327:2;8319:6;8315:15;8308:32;8123:224;:::o;8353:366::-;8495:3;8516:67;8580:2;8575:3;8516:67;:::i;:::-;8509:74;;8592:93;8681:3;8592:93;:::i;:::-;8710:2;8705:3;8701:12;8694:19;;8353:366;;;:::o;8725:419::-;8891:4;8929:2;8918:9;8914:18;8906:26;;8978:9;8972:4;8968:20;8964:1;8953:9;8949:17;8942:47;9006:131;9132:4;9006:131;:::i;:::-;8998:139;;8725:419;;;:::o;9150:222::-;9290:34;9286:1;9278:6;9274:14;9267:58;9359:5;9354:2;9346:6;9342:15;9335:30;9150:222;:::o;9378:366::-;9520:3;9541:67;9605:2;9600:3;9541:67;:::i;:::-;9534:74;;9617:93;9706:3;9617:93;:::i;:::-;9735:2;9730:3;9726:12;9719:19;;9378:366;;;:::o;9750:419::-;9916:4;9954:2;9943:9;9939:18;9931:26;;10003:9;9997:4;9993:20;9989:1;9978:9;9974:17;9967:47;10031:131;10157:4;10031:131;:::i;:::-;10023:139;;9750:419;;;:::o;10175:180::-;10223:77;10220:1;10213:88;10320:4;10317:1;10310:15;10344:4;10341:1;10334:15;10361:194;10401:4;10421:20;10439:1;10421:20;:::i;:::-;10416:25;;10455:20;10473:1;10455:20;:::i;:::-;10450:25;;10499:1;10496;10492:9;10484:17;;10523:1;10517:4;10514:11;10511:37;;;10528:18;;:::i;:::-;10511:37;10361:194;;;;:::o;10561:191::-;10601:3;10620:20;10638:1;10620:20;:::i;:::-;10615:25;;10654:20;10672:1;10654:20;:::i;:::-;10649:25;;10697:1;10694;10690:9;10683:16;;10718:3;10715:1;10712:10;10709:36;;;10725:18;;:::i;:::-;10709:36;10561:191;;;;:::o;10758:177::-;10898:29;10894:1;10886:6;10882:14;10875:53;10758:177;:::o;10941:366::-;11083:3;11104:67;11168:2;11163:3;11104:67;:::i;:::-;11097:74;;11180:93;11269:3;11180:93;:::i;:::-;11298:2;11293:3;11289:12;11282:19;;10941:366;;;:::o;11313:419::-;11479:4;11517:2;11506:9;11502:18;11494:26;;11566:9;11560:4;11556:20;11552:1;11541:9;11537:17;11530:47;11594:131;11720:4;11594:131;:::i;:::-;11586:139;;11313:419;;;:::o

Swarm Source

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