ETH Price: $2,629.93 (-1.57%)
Gas: 1 Gwei

Token

dArtflex Token (DAF)
 

Overview

Max Total Supply

22,400,000 DAF

Holders

47 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,271.415564405390214537 DAF

Value
$0.00
0x3cbb2a1eff7860d0aebd81918a238576a223d7b1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The first cross chain AI NFT's marketplace.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DAF

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-14
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.3;

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

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

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

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

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * @notice Renouncing to ownership will leave the contract without an owner.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @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 DAF is IERC20, Ownable, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(msg.sender, 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(msg.sender, spender, amount);
        return true;
    }

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

        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, msg.sender, currentAllowance - amount);

        return true;
    }

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

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

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

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

        emit Transfer(sender, recipient, amount);
    }
    
    function mint(address account, uint256 amount) public onlyOwner {
        _mint(account, 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");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }
    
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200204a3803806200204a83398181016040528101906200003791906200024e565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a381600490805190602001906200010a9291906200012c565b508060059080519060200190620001239291906200012c565b50505062000431565b8280546200013a9062000356565b90600052602060002090601f0160209004810192826200015e5760008555620001aa565b82601f106200017957805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001a95782518255916020019190600101906200018c565b5b509050620001b99190620001bd565b5090565b5b80821115620001d8576000816000905550600101620001be565b5090565b6000620001f3620001ed84620002ea565b620002c1565b9050828152602081018484840111156200020c57600080fd5b6200021984828562000320565b509392505050565b600082601f8301126200023357600080fd5b815162000245848260208601620001dc565b91505092915050565b600080604083850312156200026257600080fd5b600083015167ffffffffffffffff8111156200027d57600080fd5b6200028b8582860162000221565b925050602083015167ffffffffffffffff811115620002a957600080fd5b620002b78582860162000221565b9150509250929050565b6000620002cd620002e0565b9050620002db82826200038c565b919050565b6000604051905090565b600067ffffffffffffffff821115620003085762000307620003f1565b5b620003138262000420565b9050602081019050919050565b60005b838110156200034057808201518184015260208101905062000323565b8381111562000350576000848401525b50505050565b600060028204905060018216806200036f57607f821691505b60208210811415620003865762000385620003c2565b5b50919050565b620003978262000420565b810181811067ffffffffffffffff82111715620003b957620003b8620003f1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b611c0980620004416000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b806370a0823114610232578063715018a6146102625780638da5cb5b1461026c5780638f32d59b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b604051610125919061154e565b60405180910390f35b610148600480360381019061014391906112e0565b610404565b6040516101559190611533565b60405180910390f35b61016661041b565b60405161017391906116b0565b60405180910390f35b61019660048036038101906101919190611291565b610425565b6040516101a39190611533565b60405180910390f35b6101b4610518565b6040516101c191906116cb565b60405180910390f35b6101e460048036038101906101df91906112e0565b610521565b6040516101f19190611533565b60405180910390f35b610214600480360381019061020f91906112e0565b6105bf565b005b610230600480360381019061022b919061131c565b6105de565b005b61024c6004803603810190610247919061122c565b6105eb565b60405161025991906116b0565b60405180910390f35b61026a610634565b005b610274610703565b6040516102819190611518565b60405180910390f35b61029261072c565b60405161029f9190611533565b60405180910390f35b6102b0610783565b6040516102bd919061154e565b60405180910390f35b6102e060048036038101906102db91906112e0565b610815565b6040516102ed9190611533565b60405180910390f35b610310600480360381019061030b91906112e0565b6108fb565b60405161031d9190611533565b60405180910390f35b610340600480360381019061033b9190611255565b610912565b60405161034d91906116b0565b60405180910390f35b610370600480360381019061036b919061122c565b610999565b005b60606004805461038190611814565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad90611814565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60006104113384846109b6565b6001905092915050565b6000600354905090565b6000610432848484610b81565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ed906115f0565b60405180910390fd5b61050c853385846105079190611758565b6109b6565b60019150509392505050565b60006012905090565b60006105b5338484600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105b09190611702565b6109b6565b6001905092915050565b6105c761072c565b6105d057600080fd5b6105da8282610df8565b5050565b6105e83382610f41565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063c61072c565b61064557600080fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b60606005805461079290611814565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90611814565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611670565b60405180910390fd5b6108f0338585846108eb9190611758565b6109b6565b600191505092915050565b6000610908338484610b81565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a161072c565b6109aa57600080fd5b6109b38161110b565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90611650565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d906115b0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7491906116b0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890611630565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611570565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf906115d0565b60405180910390fd5b8181610cf49190611758565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d869190611702565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dea91906116b0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90611690565b60405180910390fd5b8060036000828254610e7a9190611702565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed09190611702565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f3591906116b0565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611610565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611590565b60405180910390fd5b81816110449190611758565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110999190611758565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110fe91906116b0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008135905061121181611ba5565b92915050565b60008135905061122681611bbc565b92915050565b60006020828403121561123e57600080fd5b600061124c84828501611202565b91505092915050565b6000806040838503121561126857600080fd5b600061127685828601611202565b925050602061128785828601611202565b9150509250929050565b6000806000606084860312156112a657600080fd5b60006112b486828701611202565b93505060206112c586828701611202565b92505060406112d686828701611217565b9150509250925092565b600080604083850312156112f357600080fd5b600061130185828601611202565b925050602061131285828601611217565b9150509250929050565b60006020828403121561132e57600080fd5b600061133c84828501611217565b91505092915050565b61134e8161178c565b82525050565b61135d8161179e565b82525050565b600061136e826116e6565b61137881856116f1565b93506113888185602086016117e1565b611391816118a4565b840191505092915050565b60006113a96023836116f1565b91506113b4826118b5565b604082019050919050565b60006113cc6022836116f1565b91506113d782611904565b604082019050919050565b60006113ef6022836116f1565b91506113fa82611953565b604082019050919050565b60006114126026836116f1565b915061141d826119a2565b604082019050919050565b60006114356028836116f1565b9150611440826119f1565b604082019050919050565b60006114586021836116f1565b915061146382611a40565b604082019050919050565b600061147b6025836116f1565b915061148682611a8f565b604082019050919050565b600061149e6024836116f1565b91506114a982611ade565b604082019050919050565b60006114c16025836116f1565b91506114cc82611b2d565b604082019050919050565b60006114e4601f836116f1565b91506114ef82611b7c565b602082019050919050565b611503816117ca565b82525050565b611512816117d4565b82525050565b600060208201905061152d6000830184611345565b92915050565b60006020820190506115486000830184611354565b92915050565b600060208201905081810360008301526115688184611363565b905092915050565b600060208201905081810360008301526115898161139c565b9050919050565b600060208201905081810360008301526115a9816113bf565b9050919050565b600060208201905081810360008301526115c9816113e2565b9050919050565b600060208201905081810360008301526115e981611405565b9050919050565b6000602082019050818103600083015261160981611428565b9050919050565b600060208201905081810360008301526116298161144b565b9050919050565b600060208201905081810360008301526116498161146e565b9050919050565b6000602082019050818103600083015261166981611491565b9050919050565b60006020820190508181036000830152611689816114b4565b9050919050565b600060208201905081810360008301526116a9816114d7565b9050919050565b60006020820190506116c560008301846114fa565b92915050565b60006020820190506116e06000830184611509565b92915050565b600081519050919050565b600082825260208201905092915050565b600061170d826117ca565b9150611718836117ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561174d5761174c611846565b5b828201905092915050565b6000611763826117ca565b915061176e836117ca565b92508282101561178157611780611846565b5b828203905092915050565b6000611797826117aa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117ff5780820151818401526020810190506117e4565b8381111561180e576000848401525b50505050565b6000600282049050600182168061182c57607f821691505b602082108114156118405761183f611875565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611bae8161178c565b8114611bb957600080fd5b50565b611bc5816117ca565b8114611bd057600080fd5b5056fea26469706673582212201a697c65aead6ad5f9836259fd66dc426703412485020c5680e502e6ffebda4b64736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e64417274666c657820546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034441460000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b806370a0823114610232578063715018a6146102625780638da5cb5b1461026c5780638f32d59b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b604051610125919061154e565b60405180910390f35b610148600480360381019061014391906112e0565b610404565b6040516101559190611533565b60405180910390f35b61016661041b565b60405161017391906116b0565b60405180910390f35b61019660048036038101906101919190611291565b610425565b6040516101a39190611533565b60405180910390f35b6101b4610518565b6040516101c191906116cb565b60405180910390f35b6101e460048036038101906101df91906112e0565b610521565b6040516101f19190611533565b60405180910390f35b610214600480360381019061020f91906112e0565b6105bf565b005b610230600480360381019061022b919061131c565b6105de565b005b61024c6004803603810190610247919061122c565b6105eb565b60405161025991906116b0565b60405180910390f35b61026a610634565b005b610274610703565b6040516102819190611518565b60405180910390f35b61029261072c565b60405161029f9190611533565b60405180910390f35b6102b0610783565b6040516102bd919061154e565b60405180910390f35b6102e060048036038101906102db91906112e0565b610815565b6040516102ed9190611533565b60405180910390f35b610310600480360381019061030b91906112e0565b6108fb565b60405161031d9190611533565b60405180910390f35b610340600480360381019061033b9190611255565b610912565b60405161034d91906116b0565b60405180910390f35b610370600480360381019061036b919061122c565b610999565b005b60606004805461038190611814565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad90611814565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60006104113384846109b6565b6001905092915050565b6000600354905090565b6000610432848484610b81565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ed906115f0565b60405180910390fd5b61050c853385846105079190611758565b6109b6565b60019150509392505050565b60006012905090565b60006105b5338484600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105b09190611702565b6109b6565b6001905092915050565b6105c761072c565b6105d057600080fd5b6105da8282610df8565b5050565b6105e83382610f41565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063c61072c565b61064557600080fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b60606005805461079290611814565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90611814565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611670565b60405180910390fd5b6108f0338585846108eb9190611758565b6109b6565b600191505092915050565b6000610908338484610b81565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a161072c565b6109aa57600080fd5b6109b38161110b565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90611650565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d906115b0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7491906116b0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890611630565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611570565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf906115d0565b60405180910390fd5b8181610cf49190611758565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d869190611702565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dea91906116b0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90611690565b60405180910390fd5b8060036000828254610e7a9190611702565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed09190611702565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f3591906116b0565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611610565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611590565b60405180910390fd5b81816110449190611758565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110999190611758565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110fe91906116b0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114557600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008135905061121181611ba5565b92915050565b60008135905061122681611bbc565b92915050565b60006020828403121561123e57600080fd5b600061124c84828501611202565b91505092915050565b6000806040838503121561126857600080fd5b600061127685828601611202565b925050602061128785828601611202565b9150509250929050565b6000806000606084860312156112a657600080fd5b60006112b486828701611202565b93505060206112c586828701611202565b92505060406112d686828701611217565b9150509250925092565b600080604083850312156112f357600080fd5b600061130185828601611202565b925050602061131285828601611217565b9150509250929050565b60006020828403121561132e57600080fd5b600061133c84828501611217565b91505092915050565b61134e8161178c565b82525050565b61135d8161179e565b82525050565b600061136e826116e6565b61137881856116f1565b93506113888185602086016117e1565b611391816118a4565b840191505092915050565b60006113a96023836116f1565b91506113b4826118b5565b604082019050919050565b60006113cc6022836116f1565b91506113d782611904565b604082019050919050565b60006113ef6022836116f1565b91506113fa82611953565b604082019050919050565b60006114126026836116f1565b915061141d826119a2565b604082019050919050565b60006114356028836116f1565b9150611440826119f1565b604082019050919050565b60006114586021836116f1565b915061146382611a40565b604082019050919050565b600061147b6025836116f1565b915061148682611a8f565b604082019050919050565b600061149e6024836116f1565b91506114a982611ade565b604082019050919050565b60006114c16025836116f1565b91506114cc82611b2d565b604082019050919050565b60006114e4601f836116f1565b91506114ef82611b7c565b602082019050919050565b611503816117ca565b82525050565b611512816117d4565b82525050565b600060208201905061152d6000830184611345565b92915050565b60006020820190506115486000830184611354565b92915050565b600060208201905081810360008301526115688184611363565b905092915050565b600060208201905081810360008301526115898161139c565b9050919050565b600060208201905081810360008301526115a9816113bf565b9050919050565b600060208201905081810360008301526115c9816113e2565b9050919050565b600060208201905081810360008301526115e981611405565b9050919050565b6000602082019050818103600083015261160981611428565b9050919050565b600060208201905081810360008301526116298161144b565b9050919050565b600060208201905081810360008301526116498161146e565b9050919050565b6000602082019050818103600083015261166981611491565b9050919050565b60006020820190508181036000830152611689816114b4565b9050919050565b600060208201905081810360008301526116a9816114d7565b9050919050565b60006020820190506116c560008301846114fa565b92915050565b60006020820190506116e06000830184611509565b92915050565b600081519050919050565b600082825260208201905092915050565b600061170d826117ca565b9150611718836117ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561174d5761174c611846565b5b828201905092915050565b6000611763826117ca565b915061176e836117ca565b92508282101561178157611780611846565b5b828203905092915050565b6000611797826117aa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117ff5780820151818401526020810190506117e4565b8381111561180e576000848401525b50505050565b6000600282049050600182168061182c57607f821691505b602082108114156118405761183f611875565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611bae8161178c565b8114611bb957600080fd5b50565b611bc5816117ca565b8114611bd057600080fd5b5056fea26469706673582212201a697c65aead6ad5f9836259fd66dc426703412485020c5680e502e6ffebda4b64736f6c63430008030033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e64417274666c657820546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034441460000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): dArtflex Token
Arg [1] : symbol_ (string): DAF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 64417274666c657820546f6b656e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4441460000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6605:8863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7386:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9551:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8506:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10200:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8348:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11027:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13160:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13835:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8677:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4648:140;;;:::i;:::-;;3935:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4270:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7605:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11741:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9017:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9253:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4965:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7386:100;7440:13;7473:5;7466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7386:100;:::o;9551:167::-;9634:4;9651:37;9660:10;9672:7;9681:6;9651:8;:37::i;:::-;9706:4;9699:11;;9551:167;;;;:::o;8506:108::-;8567:7;8594:12;;8587:19;;8506:108;:::o;10200:418::-;10306:4;10323:36;10333:6;10341:9;10352:6;10323:9;:36::i;:::-;10372:24;10399:11;:19;10411:6;10399:19;;;;;;;;;;;;;;;:31;10419:10;10399:31;;;;;;;;;;;;;;;;10372:58;;10469:6;10449:16;:26;;10441:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10531:55;10540:6;10548:10;10579:6;10560:16;:25;;;;:::i;:::-;10531:8;:55::i;:::-;10606:4;10599:11;;;10200:418;;;;;:::o;8348:93::-;8406:5;8431:2;8424:9;;8348:93;:::o;11027:211::-;11115:4;11132:76;11141:10;11153:7;11197:10;11162:11;:23;11174:10;11162:23;;;;;;;;;;;;;;;:32;11186:7;11162:32;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;11132:8;:76::i;:::-;11226:4;11219:11;;11027:211;;;;:::o;13160:105::-;4147:9;:7;:9::i;:::-;4139:18;;;;;;13235:22:::1;13241:7;13250:6;13235:5;:22::i;:::-;13160:105:::0;;:::o;13835:81::-;13883:25;13889:10;13901:6;13883:5;:25::i;:::-;13835:81;:::o;8677:127::-;8751:7;8778:9;:18;8788:7;8778:18;;;;;;;;;;;;;;;;8771:25;;8677:127;;;:::o;4648:140::-;4147:9;:7;:9::i;:::-;4139:18;;;;;;4747:1:::1;4710:40;;4731:6;::::0;::::1;;;;;;;;4710:40;;;;;;;;;;;;4778:1;4761:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;4648:140::o:0;3935:79::-;3973:7;4000:6;;;;;;;;;;;3993:13;;3935:79;:::o;4270:92::-;4310:4;4348:6;;;;;;;;;;;4334:20;;:10;:20;;;4327:27;;4270:92;:::o;7605:104::-;7661:13;7694:7;7687:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7605:104;:::o;11741:373::-;11834:4;11851:24;11878:11;:23;11890:10;11878:23;;;;;;;;;;;;;;;:32;11902:7;11878:32;;;;;;;;;;;;;;;;11851:59;;11949:15;11929:16;:35;;11921:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12017:65;12026:10;12038:7;12066:15;12047:16;:34;;;;:::i;:::-;12017:8;:65::i;:::-;12102:4;12095:11;;;11741:373;;;;:::o;9017:173::-;9103:4;9120:40;9130:10;9142:9;9153:6;9120:9;:40::i;:::-;9178:4;9171:11;;9017:173;;;;:::o;9253:151::-;9342:7;9369:11;:18;9381:5;9369:18;;;;;;;;;;;;;;;:27;9388:7;9369:27;;;;;;;;;;;;;;;;9362:34;;9253:151;;;;:::o;4965:109::-;4147:9;:7;:9::i;:::-;4139:18;;;;;;5038:28:::1;5057:8;5038:18;:28::i;:::-;4965:109:::0;:::o;15119:346::-;15238:1;15221:19;;:5;:19;;;;15213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15319:1;15300:21;;:7;:21;;;;15292:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15403:6;15373:11;:18;15385:5;15373:18;;;;;;;;;;;;;;;:27;15392:7;15373:27;;;;;;;;;;;;;;;:36;;;;15441:7;15425:32;;15434:5;15425:32;;;15450:6;15425:32;;;;;;:::i;:::-;;;;;;;;15119:346;;;:::o;12604:544::-;12728:1;12710:20;;:6;:20;;;;12702:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12812:1;12791:23;;:9;:23;;;;12783:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12867:21;12891:9;:17;12901:6;12891:17;;;;;;;;;;;;;;;;12867:41;;12944:6;12927:13;:23;;12919:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13040:6;13024:13;:22;;;;:::i;:::-;13004:9;:17;13014:6;13004:17;;;;;;;;;;;;;;;:42;;;;13081:6;13057:9;:20;13067:9;13057:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13122:9;13105:35;;13114:6;13105:35;;;13133:6;13105:35;;;;;;:::i;:::-;;;;;;;;12604:544;;;;:::o;13547:276::-;13650:1;13631:21;;:7;:21;;;;13623:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13717:6;13701:12;;:22;;;;;;;:::i;:::-;;;;;;;;13756:6;13734:9;:18;13744:7;13734:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13799:7;13778:37;;13795:1;13778:37;;;13808:6;13778:37;;;;;;:::i;:::-;;;;;;;;13547:276;;:::o;14249:432::-;14352:1;14333:21;;:7;:21;;;;14325:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14405:22;14430:9;:18;14440:7;14430:18;;;;;;;;;;;;;;;;14405:43;;14485:6;14467:14;:24;;14459:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14579:6;14562:14;:23;;;;:::i;:::-;14541:9;:18;14551:7;14541:18;;;;;;;;;;;;;;;:44;;;;14612:6;14596:12;;:22;;;;;;;:::i;:::-;;;;;;;;14662:1;14636:37;;14645:7;14636:37;;;14666:6;14636:37;;;;;;:::i;:::-;;;;;;;;14249:432;;;:::o;5224:187::-;5318:1;5298:22;;:8;:22;;;;5290:31;;;;;;5366:8;5337:38;;5358:6;;;;;;;;;;5337:38;;;;;;;;;;;;5395:8;5386:6;;:17;;;;;;;;;;;;;;;;;;5224:187;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:118::-;6633:24;6651:5;6633:24;:::i;:::-;6628:3;6621:37;6611:53;;:::o;6670:112::-;6753:22;6769:5;6753:22;:::i;:::-;6748:3;6741:35;6731:51;;:::o;6788:222::-;;6919:2;6908:9;6904:18;6896:26;;6932:71;7000:1;6989:9;6985:17;6976:6;6932:71;:::i;:::-;6886:124;;;;:::o;7016:210::-;;7141:2;7130:9;7126:18;7118:26;;7154:65;7216:1;7205:9;7201:17;7192:6;7154:65;:::i;:::-;7108:118;;;;:::o;7232:313::-;;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:78;7533:4;7524:6;7460:78;:::i;:::-;7452:86;;7350:195;;;;:::o;7551:419::-;;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:131;7958:4;7832:131;:::i;:::-;7824:139;;7722:248;;;:::o;7976:419::-;;8180:2;8169:9;8165:18;8157:26;;8229:9;8223:4;8219:20;8215:1;8204:9;8200:17;8193:47;8257:131;8383:4;8257:131;:::i;:::-;8249:139;;8147:248;;;:::o;8401:419::-;;8605:2;8594:9;8590:18;8582:26;;8654:9;8648:4;8644:20;8640:1;8629:9;8625:17;8618:47;8682:131;8808:4;8682:131;:::i;:::-;8674:139;;8572:248;;;:::o;8826:419::-;;9030:2;9019:9;9015:18;9007:26;;9079:9;9073:4;9069:20;9065:1;9054:9;9050:17;9043:47;9107:131;9233:4;9107:131;:::i;:::-;9099:139;;8997:248;;;:::o;9251:419::-;;9455:2;9444:9;9440:18;9432:26;;9504:9;9498:4;9494:20;9490:1;9479:9;9475:17;9468:47;9532:131;9658:4;9532:131;:::i;:::-;9524:139;;9422:248;;;:::o;9676:419::-;;9880:2;9869:9;9865:18;9857:26;;9929:9;9923:4;9919:20;9915:1;9904:9;9900:17;9893:47;9957:131;10083:4;9957:131;:::i;:::-;9949:139;;9847:248;;;:::o;10101:419::-;;10305:2;10294:9;10290:18;10282:26;;10354:9;10348:4;10344:20;10340:1;10329:9;10325:17;10318:47;10382:131;10508:4;10382:131;:::i;:::-;10374:139;;10272:248;;;:::o;10526:419::-;;10730:2;10719:9;10715:18;10707:26;;10779:9;10773:4;10769:20;10765:1;10754:9;10750:17;10743:47;10807:131;10933:4;10807:131;:::i;:::-;10799:139;;10697:248;;;:::o;10951:419::-;;11155:2;11144:9;11140:18;11132:26;;11204:9;11198:4;11194:20;11190:1;11179:9;11175:17;11168:47;11232:131;11358:4;11232:131;:::i;:::-;11224:139;;11122:248;;;:::o;11376:419::-;;11580:2;11569:9;11565:18;11557:26;;11629:9;11623:4;11619:20;11615:1;11604:9;11600:17;11593:47;11657:131;11783:4;11657:131;:::i;:::-;11649:139;;11547:248;;;:::o;11801:222::-;;11932:2;11921:9;11917:18;11909:26;;11945:71;12013:1;12002:9;11998:17;11989:6;11945:71;:::i;:::-;11899:124;;;;:::o;12029:214::-;;12156:2;12145:9;12141:18;12133:26;;12169:67;12233:1;12222:9;12218:17;12209:6;12169:67;:::i;:::-;12123:120;;;;:::o;12249:99::-;;12335:5;12329:12;12319:22;;12308:40;;;:::o;12354:169::-;;12472:6;12467:3;12460:19;12512:4;12507:3;12503:14;12488:29;;12450:73;;;;:::o;12529:305::-;;12588:20;12606:1;12588:20;:::i;:::-;12583:25;;12622:20;12640:1;12622:20;:::i;:::-;12617:25;;12776:1;12708:66;12704:74;12701:1;12698:81;12695:2;;;12782:18;;:::i;:::-;12695:2;12826:1;12823;12819:9;12812:16;;12573:261;;;;:::o;12840:191::-;;12900:20;12918:1;12900:20;:::i;:::-;12895:25;;12934:20;12952:1;12934:20;:::i;:::-;12929:25;;12973:1;12970;12967:8;12964:2;;;12978:18;;:::i;:::-;12964:2;13023:1;13020;13016:9;13008:17;;12885:146;;;;:::o;13037:96::-;;13103:24;13121:5;13103:24;:::i;:::-;13092:35;;13082:51;;;:::o;13139:90::-;;13216:5;13209:13;13202:21;13191:32;;13181:48;;;:::o;13235:126::-;;13312:42;13305:5;13301:54;13290:65;;13280:81;;;:::o;13367:77::-;;13433:5;13422:16;;13412:32;;;:::o;13450:86::-;;13525:4;13518:5;13514:16;13503:27;;13493:43;;;:::o;13542:307::-;13610:1;13620:113;13634:6;13631:1;13628:13;13620:113;;;13719:1;13714:3;13710:11;13704:18;13700:1;13695:3;13691:11;13684:39;13656:2;13653:1;13649:10;13644:15;;13620:113;;;13751:6;13748:1;13745:13;13742:2;;;13831:1;13822:6;13817:3;13813:16;13806:27;13742:2;13591:258;;;;:::o;13855:320::-;;13936:1;13930:4;13926:12;13916:22;;13983:1;13977:4;13973:12;14004:18;13994:2;;14060:4;14052:6;14048:17;14038:27;;13994:2;14122;14114:6;14111:14;14091:18;14088:38;14085:2;;;14141:18;;:::i;:::-;14085:2;13906:269;;;;:::o;14181:180::-;14229:77;14226:1;14219:88;14326:4;14323:1;14316:15;14350:4;14347:1;14340:15;14367:180;14415:77;14412:1;14405:88;14512:4;14509:1;14502:15;14536:4;14533:1;14526:15;14553:102;;14645:2;14641:7;14636:2;14629:5;14625:14;14621:28;14611:38;;14601:54;;;:::o;14661:222::-;14801:34;14797:1;14789:6;14785:14;14778:58;14870:5;14865:2;14857:6;14853:15;14846:30;14767:116;:::o;14889:221::-;15029:34;15025:1;15017:6;15013:14;15006:58;15098:4;15093:2;15085:6;15081:15;15074:29;14995:115;:::o;15116:221::-;15256:34;15252:1;15244:6;15240:14;15233:58;15325:4;15320:2;15312:6;15308:15;15301:29;15222:115;:::o;15343:225::-;15483:34;15479:1;15471:6;15467:14;15460:58;15552:8;15547:2;15539:6;15535:15;15528:33;15449:119;:::o;15574:227::-;15714:34;15710:1;15702:6;15698:14;15691:58;15783:10;15778:2;15770:6;15766:15;15759:35;15680:121;:::o;15807:220::-;15947:34;15943:1;15935:6;15931:14;15924:58;16016:3;16011:2;16003:6;15999:15;15992:28;15913:114;:::o;16033:224::-;16173:34;16169:1;16161:6;16157:14;16150:58;16242:7;16237:2;16229:6;16225:15;16218:32;16139:118;:::o;16263:223::-;16403:34;16399:1;16391:6;16387:14;16380:58;16472:6;16467:2;16459:6;16455:15;16448:31;16369:117;:::o;16492:224::-;16632:34;16628:1;16620:6;16616:14;16609:58;16701:7;16696:2;16688:6;16684:15;16677:32;16598:118;:::o;16722:181::-;16862:33;16858:1;16850:6;16846:14;16839:57;16828:75;:::o;16909:122::-;16982:24;17000:5;16982:24;:::i;:::-;16975:5;16972:35;16962:2;;17021:1;17018;17011:12;16962:2;16952:79;:::o;17037:122::-;17110:24;17128:5;17110:24;:::i;:::-;17103:5;17100:35;17090:2;;17149:1;17146;17139:12;17090:2;17080:79;:::o

Swarm Source

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