ETH Price: $2,301.93 (+2.89%)

Token

NewZen (NZ)

Overview

Max Total Supply

6,000,000.000000000001 NZ

Holders

8

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

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

Contract Source Code Verified (Exact Match)

Contract Name:
NewZen

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-03-28
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20, ERC20Burnable {
    uint256 private  _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}
// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract NewZen is ERC20Capped, Pausable, AccessControl {
    using SafeMath for uint256;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor() ERC20("NewZen", "NZ") ERC20Capped(500000000e18) {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _mint(msg.sender, 5000000e18);
    }

    function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }

    function pause() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260068152652732bbad32b760d11b602080830191825283518085019094526002845261272d60f11b9084015281516b019d971e4fe8401e74000000939162000067916003919062000343565b5080516200007d90600490602084019062000343565b50505060008111620000ac5760405162461bcd60e51b8152600401620000a390620003e9565b60405180910390fd5b6005556006805460ff19169055620000c6600033620000e3565b620000dd336a0422ca8b0a00a425000000620000f3565b62000523565b620000ef828262000157565b5050565b620000fd620001e3565b8162000113620001e960201b620004331760201c565b6200011f9190620004c1565b1115620001405760405162461bcd60e51b8152600401620000a3906200044a565b620000ef8282620001ef60201b620007281760201c565b620001638282620002c4565b620000ef5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200019f620002ef565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60055490565b60025490565b6001600160a01b038216620002185760405162461bcd60e51b8152600401620000a39062000481565b6200022660008383620002f3565b80600260008282546200023a9190620004c1565b90915550506001600160a01b0382166000908152602081905260408120805483929062000269908490620004c1565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002ae908590620004b8565b60405180910390a3620000ef6000838362000335565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b620002fd6200033a565b156200031d5760405162461bcd60e51b8152600401620000a39062000420565b620003358383836200033560201b620004a01760201c565b505050565b60065460ff1690565b8280546200035190620004e6565b90600052602060002090601f016020900481019282620003755760008555620003c0565b82601f106200039057805160ff1916838001178555620003c0565b82800160010185558215620003c0579182015b82811115620003c0578251825591602001919060010190620003a3565b50620003ce929150620003d2565b5090565b5b80821115620003ce5760008155600101620003d3565b60208082526015908201527f45524332304361707065643a2063617020697320300000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004e157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620004fb57607f821691505b602082108114156200051d57634e487b7160e01b600052602260045260246000fd5b50919050565b61164180620005336000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610311578063d539139314610324578063d547741f1461032c578063dd62ed3e1461033f5761018e565b806395d89b41146102ee578063a217fddf146102f6578063a457c2d7146102fe5761018e565b806342966c68146102925780635c975abb146102a557806370a08231146102ad57806379cc6790146102c05780638456cb59146102d357806391d14854146102db5761018e565b80632f2ff15d1161014b57806336568abe1161012557806336568abe1461025157806339509351146102645780633f4ba83a1461027757806340c10f191461027f5761018e565b80632f2ff15d1461021f578063313ce56714610234578063355274ea146102495761018e565b806301ffc9a71461019357806306fdde03146101bc578063095ea7b3146101d157806318160ddd146101e457806323b872dd146101f9578063248a9ca31461020c575b600080fd5b6101a66101a1366004611086565b610352565b6040516101b39190611137565b60405180910390f35b6101c461037f565b6040516101b3919061114b565b6101a66101df366004611023565b610411565b6101ec610433565b6040516101b39190611142565b6101a6610207366004610fe8565b610439565b6101ec61021a36600461104c565b610467565b61023261022d366004611064565b61047c565b005b61023c6104a5565b6040516101b3919061151b565b6101ec6104aa565b61023261025f366004611064565b6104b0565b6101a6610272366004611023565b6104ff565b61023261054b565b61023261028d366004611023565b610564565b6102326102a036600461104c565b61059b565b6101a66105ac565b6101ec6102bb366004610f9c565b6105b5565b6102326102ce366004611023565b6105d0565b6102326105ec565b6101a66102e9366004611064565b610602565b6101c461062d565b6101ec61063c565b6101a661030c366004611023565b610641565b6101a661031f366004611023565b6106a2565b6101ec6106ba565b61023261033a366004611064565b6106de565b6101ec61034d366004610fb6565b6106fd565b60006001600160e01b03198216637965db0b60e01b14806103775750610377826107f0565b90505b919050565b60606003805461038e906115ba565b80601f01602080910402602001604051908101604052809291908181526020018280546103ba906115ba565b80156104075780601f106103dc57610100808354040283529160200191610407565b820191906000526020600020905b8154815290600101906020018083116103ea57829003601f168201915b5050505050905090565b60008061041c610809565b905061042981858561080d565b5060019392505050565b60025490565b600080610444610809565b90506104518582856108c1565b61045c85858561090b565b506001949350505050565b60009081526007602052604090206001015490565b61048582610467565b61049681610491610809565b610a2f565b6104a08383610a93565b505050565b601290565b60055490565b6104b8610809565b6001600160a01b0316816001600160a01b0316146104f15760405162461bcd60e51b81526004016104e890611495565b60405180910390fd5b6104fb8282610b1a565b5050565b60008061050a610809565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506104299082908690610546908790611529565b61080d565b600061055981610491610809565b610561610b9f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661059181610491610809565b6104a08383610c0d565b6105616105a6610809565b82610c50565b60065460ff1690565b6001600160a01b031660009081526020819052604090205490565b6105e2826105dc610809565b836108c1565b6104fb8282610c50565b60006105fa81610491610809565b610561610d41565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461038e906115ba565b600081565b60008061064c610809565b6001600160a01b03808216600090815260016020908152604080832093891683529290522054909150838110156106955760405162461bcd60e51b81526004016104e890611450565b61045c828686840361080d565b6000806106ad610809565b905061042981858561090b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6106e782610467565b6106f381610491610809565b6104a08383610b1a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03821661074e5760405162461bcd60e51b81526004016104e8906114e4565b61075a60008383610d9c565b806002600082825461076c9190611529565b90915550506001600160a01b03821660009081526020819052604081208054839290610799908490611529565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107dc908590611142565b60405180910390a36104fb600083836104a0565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b0383166108335760405162461bcd60e51b81526004016104e89061140c565b6001600160a01b0382166108595760405162461bcd60e51b81526004016104e890611266565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108b4908590611142565b60405180910390a3505050565b60006108cd84846106fd565b9050600019811461090557818110156108f85760405162461bcd60e51b81526004016104e8906112a8565b610905848484840361080d565b50505050565b6001600160a01b0383166109315760405162461bcd60e51b81526004016104e890611390565b6001600160a01b0382166109575760405162461bcd60e51b81526004016104e8906111b3565b610962838383610d9c565b6001600160a01b0383166000908152602081905260409020548181101561099b5760405162461bcd60e51b81526004016104e8906112df565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109d2908490611529565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a1c9190611142565b60405180910390a36109058484846104a0565b610a398282610602565b6104fb57610a51816001600160a01b03166014610dcc565b610a5c836020610dcc565b604051602001610a6d9291906110ae565b60408051601f198184030181529082905262461bcd60e51b82526104e89160040161114b565b610a9d8282610602565b6104fb5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610ad6610809565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b248282610602565b156104fb5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19169055610b5b610809565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b610ba76105ac565b610bc35760405162461bcd60e51b81526004016104e8906111f6565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610bf6610809565b604051610c039190611123565b60405180910390a1565b610c156104aa565b81610c1e610433565b610c289190611529565b1115610c465760405162461bcd60e51b81526004016104e8906113d5565b6104fb8282610728565b6001600160a01b038216610c765760405162461bcd60e51b81526004016104e89061134f565b610c8282600083610d9c565b6001600160a01b03821660009081526020819052604090205481811015610cbb5760405162461bcd60e51b81526004016104e890611224565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cea908490611560565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d2d908690611142565b60405180910390a36104a0836000846104a0565b610d496105ac565b15610d665760405162461bcd60e51b81526004016104e890611325565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bf6610809565b610da46105ac565b15610dc15760405162461bcd60e51b81526004016104e890611325565b6104a08383836104a0565b60606000610ddb836002611541565b610de6906002611529565b67ffffffffffffffff811115610e0c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610e36576020820181803683370190505b509050600360fc1b81600081518110610e5f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e9c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610ec0846002611541565b610ecb906001611529565b90505b6001811115610f5f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f0d57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610f3157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610f58816115a3565b9050610ece565b508315610f7e5760405162461bcd60e51b81526004016104e89061117e565b9392505050565b80356001600160a01b038116811461037a57600080fd5b600060208284031215610fad578081fd5b610f7e82610f85565b60008060408385031215610fc8578081fd5b610fd183610f85565b9150610fdf60208401610f85565b90509250929050565b600080600060608486031215610ffc578081fd5b61100584610f85565b925061101360208501610f85565b9150604084013590509250925092565b60008060408385031215611035578182fd5b61103e83610f85565b946020939093013593505050565b60006020828403121561105d578081fd5b5035919050565b60008060408385031215611076578182fd5b82359150610fdf60208401610f85565b600060208284031215611097578081fd5b81356001600160e01b031981168114610f7e578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516110e6816017850160208801611577565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611117816028840160208801611577565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b600060208252825180602084015261116a816040850160208701611577565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6000821982111561153c5761153c6115f5565b500190565b600081600019048311821515161561155b5761155b6115f5565b500290565b600082821015611572576115726115f5565b500390565b60005b8381101561159257818101518382015260200161157a565b838111156109055750506000910152565b6000816115b2576115b26115f5565b506000190190565b6002810460018216806115ce57607f821691505b602082108114156115ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206c89794cc4bd63a407faa4b5f9ee77d913a8c779af1f0c098ff05da761f558fd64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610311578063d539139314610324578063d547741f1461032c578063dd62ed3e1461033f5761018e565b806395d89b41146102ee578063a217fddf146102f6578063a457c2d7146102fe5761018e565b806342966c68146102925780635c975abb146102a557806370a08231146102ad57806379cc6790146102c05780638456cb59146102d357806391d14854146102db5761018e565b80632f2ff15d1161014b57806336568abe1161012557806336568abe1461025157806339509351146102645780633f4ba83a1461027757806340c10f191461027f5761018e565b80632f2ff15d1461021f578063313ce56714610234578063355274ea146102495761018e565b806301ffc9a71461019357806306fdde03146101bc578063095ea7b3146101d157806318160ddd146101e457806323b872dd146101f9578063248a9ca31461020c575b600080fd5b6101a66101a1366004611086565b610352565b6040516101b39190611137565b60405180910390f35b6101c461037f565b6040516101b3919061114b565b6101a66101df366004611023565b610411565b6101ec610433565b6040516101b39190611142565b6101a6610207366004610fe8565b610439565b6101ec61021a36600461104c565b610467565b61023261022d366004611064565b61047c565b005b61023c6104a5565b6040516101b3919061151b565b6101ec6104aa565b61023261025f366004611064565b6104b0565b6101a6610272366004611023565b6104ff565b61023261054b565b61023261028d366004611023565b610564565b6102326102a036600461104c565b61059b565b6101a66105ac565b6101ec6102bb366004610f9c565b6105b5565b6102326102ce366004611023565b6105d0565b6102326105ec565b6101a66102e9366004611064565b610602565b6101c461062d565b6101ec61063c565b6101a661030c366004611023565b610641565b6101a661031f366004611023565b6106a2565b6101ec6106ba565b61023261033a366004611064565b6106de565b6101ec61034d366004610fb6565b6106fd565b60006001600160e01b03198216637965db0b60e01b14806103775750610377826107f0565b90505b919050565b60606003805461038e906115ba565b80601f01602080910402602001604051908101604052809291908181526020018280546103ba906115ba565b80156104075780601f106103dc57610100808354040283529160200191610407565b820191906000526020600020905b8154815290600101906020018083116103ea57829003601f168201915b5050505050905090565b60008061041c610809565b905061042981858561080d565b5060019392505050565b60025490565b600080610444610809565b90506104518582856108c1565b61045c85858561090b565b506001949350505050565b60009081526007602052604090206001015490565b61048582610467565b61049681610491610809565b610a2f565b6104a08383610a93565b505050565b601290565b60055490565b6104b8610809565b6001600160a01b0316816001600160a01b0316146104f15760405162461bcd60e51b81526004016104e890611495565b60405180910390fd5b6104fb8282610b1a565b5050565b60008061050a610809565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506104299082908690610546908790611529565b61080d565b600061055981610491610809565b610561610b9f565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661059181610491610809565b6104a08383610c0d565b6105616105a6610809565b82610c50565b60065460ff1690565b6001600160a01b031660009081526020819052604090205490565b6105e2826105dc610809565b836108c1565b6104fb8282610c50565b60006105fa81610491610809565b610561610d41565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461038e906115ba565b600081565b60008061064c610809565b6001600160a01b03808216600090815260016020908152604080832093891683529290522054909150838110156106955760405162461bcd60e51b81526004016104e890611450565b61045c828686840361080d565b6000806106ad610809565b905061042981858561090b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6106e782610467565b6106f381610491610809565b6104a08383610b1a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03821661074e5760405162461bcd60e51b81526004016104e8906114e4565b61075a60008383610d9c565b806002600082825461076c9190611529565b90915550506001600160a01b03821660009081526020819052604081208054839290610799908490611529565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107dc908590611142565b60405180910390a36104fb600083836104a0565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b0383166108335760405162461bcd60e51b81526004016104e89061140c565b6001600160a01b0382166108595760405162461bcd60e51b81526004016104e890611266565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108b4908590611142565b60405180910390a3505050565b60006108cd84846106fd565b9050600019811461090557818110156108f85760405162461bcd60e51b81526004016104e8906112a8565b610905848484840361080d565b50505050565b6001600160a01b0383166109315760405162461bcd60e51b81526004016104e890611390565b6001600160a01b0382166109575760405162461bcd60e51b81526004016104e8906111b3565b610962838383610d9c565b6001600160a01b0383166000908152602081905260409020548181101561099b5760405162461bcd60e51b81526004016104e8906112df565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109d2908490611529565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a1c9190611142565b60405180910390a36109058484846104a0565b610a398282610602565b6104fb57610a51816001600160a01b03166014610dcc565b610a5c836020610dcc565b604051602001610a6d9291906110ae565b60408051601f198184030181529082905262461bcd60e51b82526104e89160040161114b565b610a9d8282610602565b6104fb5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610ad6610809565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b248282610602565b156104fb5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19169055610b5b610809565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b610ba76105ac565b610bc35760405162461bcd60e51b81526004016104e8906111f6565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610bf6610809565b604051610c039190611123565b60405180910390a1565b610c156104aa565b81610c1e610433565b610c289190611529565b1115610c465760405162461bcd60e51b81526004016104e8906113d5565b6104fb8282610728565b6001600160a01b038216610c765760405162461bcd60e51b81526004016104e89061134f565b610c8282600083610d9c565b6001600160a01b03821660009081526020819052604090205481811015610cbb5760405162461bcd60e51b81526004016104e890611224565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cea908490611560565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d2d908690611142565b60405180910390a36104a0836000846104a0565b610d496105ac565b15610d665760405162461bcd60e51b81526004016104e890611325565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bf6610809565b610da46105ac565b15610dc15760405162461bcd60e51b81526004016104e890611325565b6104a08383836104a0565b60606000610ddb836002611541565b610de6906002611529565b67ffffffffffffffff811115610e0c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610e36576020820181803683370190505b509050600360fc1b81600081518110610e5f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e9c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610ec0846002611541565b610ecb906001611529565b90505b6001811115610f5f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610f0d57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610f3157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610f58816115a3565b9050610ece565b508315610f7e5760405162461bcd60e51b81526004016104e89061117e565b9392505050565b80356001600160a01b038116811461037a57600080fd5b600060208284031215610fad578081fd5b610f7e82610f85565b60008060408385031215610fc8578081fd5b610fd183610f85565b9150610fdf60208401610f85565b90509250929050565b600080600060608486031215610ffc578081fd5b61100584610f85565b925061101360208501610f85565b9150604084013590509250925092565b60008060408385031215611035578182fd5b61103e83610f85565b946020939093013593505050565b60006020828403121561105d578081fd5b5035919050565b60008060408385031215611076578182fd5b82359150610fdf60208401610f85565b600060208284031215611097578081fd5b81356001600160e01b031981168114610f7e578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516110e6816017850160208801611577565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611117816028840160208801611577565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b600060208252825180602084015261116a816040850160208701611577565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6000821982111561153c5761153c6115f5565b500190565b600081600019048311821515161561155b5761155b6115f5565b500290565b600082821015611572576115726115f5565b500390565b60005b8381101561159257818101518382015260200161157a565b838111156109055750506000910152565b6000816115b2576115b26115f5565b506000190190565b6002810460018216806115ce57607f821691505b602082108114156115ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206c89794cc4bd63a407faa4b5f9ee77d913a8c779af1f0c098ff05da761f558fd64736f6c63430008000033

Deployed Bytecode Sourcemap

43633:837:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29276:204;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13764:100;;;:::i;:::-;;;;;;;:::i;16115:201::-;;;;;;:::i;:::-;;:::i;14884:108::-;;;:::i;:::-;;;;;;;:::i;16896:295::-;;;;;;:::i;:::-;;:::i;30703:131::-;;;;;;:::i;:::-;;:::i;31096:147::-;;;;;;:::i;:::-;;:::i;:::-;;14726:93;;;:::i;:::-;;;;;;;:::i;26332:83::-;;;:::i;32144:218::-;;;;;;:::i;:::-;;:::i;17600:240::-;;;;;;:::i;:::-;;:::i;44174:84::-;;;:::i;43971:107::-;;;;;;:::i;:::-;;:::i;25142:91::-;;;;;;:::i;:::-;;:::i;35393:86::-;;;:::i;15055:127::-;;;;;;:::i;:::-;;:::i;25552:164::-;;;;;;:::i;:::-;;:::i;44086:80::-;;;:::i;29572:147::-;;;;;;:::i;:::-;;:::i;13983:104::-;;;:::i;28663:49::-;;;:::i;18343:438::-;;;;;;:::i;:::-;;:::i;15388:193::-;;;;;;:::i;:::-;;:::i;43729:62::-;;;:::i;31488:149::-;;;;;;:::i;:::-;;:::i;15644:151::-;;;;;;:::i;:::-;;:::i;29276:204::-;29361:4;-1:-1:-1;;;;;;29385:47:0;;-1:-1:-1;;;29385:47:0;;:87;;;29436:36;29460:11;29436:23;:36::i;:::-;29378:94;;29276:204;;;;:::o;13764:100::-;13818:13;13851:5;13844:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13764:100;:::o;16115:201::-;16198:4;16215:13;16231:12;:10;:12::i;:::-;16215:28;;16254:32;16263:5;16270:7;16279:6;16254:8;:32::i;:::-;-1:-1:-1;16304:4:0;;16115:201;-1:-1:-1;;;16115:201:0:o;14884:108::-;14972:12;;14884:108;:::o;16896:295::-;17027:4;17044:15;17062:12;:10;:12::i;:::-;17044:30;;17085:38;17101:4;17107:7;17116:6;17085:15;:38::i;:::-;17134:27;17144:4;17150:2;17154:6;17134:9;:27::i;:::-;-1:-1:-1;17179:4:0;;16896:295;-1:-1:-1;;;;16896:295:0:o;30703:131::-;30777:7;30804:12;;;:6;:12;;;;;:22;;;;30703:131::o;31096:147::-;31179:18;31192:4;31179:12;:18::i;:::-;29154:30;29165:4;29171:12;:10;:12::i;:::-;29154:10;:30::i;:::-;31210:25:::1;31221:4;31227:7;31210:10;:25::i;:::-;31096:147:::0;;;:::o;14726:93::-;14809:2;14726:93;:::o;26332:83::-;26403:4;;26332:83;:::o;32144:218::-;32251:12;:10;:12::i;:::-;-1:-1:-1;;;;;32240:23:0;:7;-1:-1:-1;;;;;32240:23:0;;32232:83;;;;-1:-1:-1;;;32232:83:0;;;;;;;:::i;:::-;;;;;;;;;32328:26;32340:4;32346:7;32328:11;:26::i;:::-;32144:218;;:::o;17600:240::-;17688:4;17705:13;17721:12;:10;:12::i;:::-;-1:-1:-1;;;;;17769:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;17705:28;;-1:-1:-1;17744:66:0;;17705:28;;17760:7;;17769:40;;17799:10;;17769:40;:::i;:::-;17744:8;:66::i;44174:84::-;28708:4;29154:30;28708:4;29171:12;:10;:12::i;29154:30::-;44240:10:::1;:8;:10::i;:::-;44174:84:::0;:::o;43971:107::-;43767:24;29154:30;29165:4;29171:12;:10;:12::i;29154:30::-;44053:17:::1;44059:2;44063:6;44053:5;:17::i;25142:91::-:0;25198:27;25204:12;:10;:12::i;:::-;25218:6;25198:5;:27::i;35393:86::-;35464:7;;;;35393:86;:::o;15055:127::-;-1:-1:-1;;;;;15156:18:0;15129:7;15156:18;;;;;;;;;;;;15055:127::o;25552:164::-;25629:46;25645:7;25654:12;:10;:12::i;:::-;25668:6;25629:15;:46::i;:::-;25686:22;25692:7;25701:6;25686:5;:22::i;44086:80::-;28708:4;29154:30;28708:4;29171:12;:10;:12::i;29154:30::-;44150:8:::1;:6;:8::i;29572:147::-:0;29658:4;29682:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29682:29:0;;;;;;;;;;;;;;;29572:147::o;13983:104::-;14039:13;14072:7;14065:14;;;;;:::i;28663:49::-;28708:4;28663:49;:::o;18343:438::-;18436:4;18453:13;18469:12;:10;:12::i;:::-;-1:-1:-1;;;;;18519:18:0;;;18492:24;18519:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;18453:28;;-1:-1:-1;18565:35:0;;;;18557:85;;;;-1:-1:-1;;;18557:85:0;;;;;;;:::i;:::-;18678:60;18687:5;18694:7;18722:15;18703:16;:34;18678:8;:60::i;15388:193::-;15467:4;15484:13;15500:12;:10;:12::i;:::-;15484:28;;15523;15533:5;15540:2;15544:6;15523:9;:28::i;43729:62::-;43767:24;43729:62;:::o;31488:149::-;31572:18;31585:4;31572:12;:18::i;:::-;29154:30;29165:4;29171:12;:10;:12::i;29154:30::-;31603:26:::1;31615:4;31621:7;31603:11;:26::i;15644:151::-:0;-1:-1:-1;;;;;15760:18:0;;;15733:7;15760:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15644:151::o;20218:399::-;-1:-1:-1;;;;;20302:21:0;;20294:65;;;;-1:-1:-1;;;20294:65:0;;;;;;;:::i;:::-;20372:49;20401:1;20405:7;20414:6;20372:20;:49::i;:::-;20450:6;20434:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;20467:18:0;;:9;:18;;;;;;;;;;:28;;20489:6;;20467:9;:28;;20489:6;;20467:28;:::i;:::-;;;;-1:-1:-1;;20511:37:0;;-1:-1:-1;;;;;20511:37:0;;;20528:1;;20511:37;;;;20541:6;;20511:37;:::i;:::-;;;;;;;;20561:48;20589:1;20593:7;20602:6;20561:19;:48::i;5396:157::-;-1:-1:-1;;;;;;5505:40:0;;-1:-1:-1;;;5505:40:0;5396:157;;;:::o;11404:98::-;11484:10;11404:98;:::o;21979:380::-;-1:-1:-1;;;;;22115:19:0;;22107:68;;;;-1:-1:-1;;;22107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22194:21:0;;22186:68;;;;-1:-1:-1;;;22186:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22267:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;22319:32;;;;;22297:6;;22319:32;:::i;:::-;;;;;;;;21979:380;;;:::o;22646:453::-;22781:24;22808:25;22818:5;22825:7;22808:9;:25::i;:::-;22781:52;;-1:-1:-1;;22848:16:0;:37;22844:248;;22930:6;22910:16;:26;;22902:68;;;;-1:-1:-1;;;22902:68:0;;;;;;;:::i;:::-;23014:51;23023:5;23030:7;23058:6;23039:16;:25;23014:8;:51::i;:::-;22646:453;;;;:::o;19260:671::-;-1:-1:-1;;;;;19391:18:0;;19383:68;;;;-1:-1:-1;;;19383:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19470:16:0;;19462:64;;;;-1:-1:-1;;;19462:64:0;;;;;;;:::i;:::-;19539:38;19560:4;19566:2;19570:6;19539:20;:38::i;:::-;-1:-1:-1;;;;;19612:15:0;;19590:19;19612:15;;;;;;;;;;;19646:21;;;;19638:72;;;;-1:-1:-1;;;19638:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19746:15:0;;;:9;:15;;;;;;;;;;;19764:20;;;19746:38;;19806:13;;;;;;;;:23;;19778:6;;19746:9;19806:23;;19778:6;;19806:23;:::i;:::-;;;;;;;;19862:2;-1:-1:-1;;;;;19847:26:0;19856:4;-1:-1:-1;;;;;19847:26:0;;19866:6;19847:26;;;;;;:::i;:::-;;;;;;;;19886:37;19906:4;19912:2;19916:6;19886:19;:37::i;30009:505::-;30098:22;30106:4;30112:7;30098;:22::i;:::-;30093:414;;30286:41;30314:7;-1:-1:-1;;;;;30286:41:0;30324:2;30286:19;:41::i;:::-;30400:38;30428:4;30435:2;30400:19;:38::i;:::-;30191:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;30191:270:0;;;;;;;;;;-1:-1:-1;;;30137:358:0;;;;;;;:::i;33645:238::-;33729:22;33737:4;33743:7;33729;:22::i;:::-;33724:152;;33768:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;33768:29:0;;;;;;;;;:36;;-1:-1:-1;;33768:36:0;33800:4;33768:36;;;33851:12;:10;:12::i;:::-;-1:-1:-1;;;;;33824:40:0;33842:7;-1:-1:-1;;;;;33824:40:0;33836:4;33824:40;;;;;;;;;;33645:238;;:::o;34015:239::-;34099:22;34107:4;34113:7;34099;:22::i;:::-;34095:152;;;34170:5;34138:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;34138:29:0;;;;;;;;;:37;;-1:-1:-1;;34138:37:0;;;34222:12;:10;:12::i;:::-;-1:-1:-1;;;;;34195:40:0;34213:7;-1:-1:-1;;;;;34195:40:0;34207:4;34195:40;;;;;;;;;;34015:239;;:::o;36452:120::-;35996:8;:6;:8::i;:::-;35988:41;;;;-1:-1:-1;;;35988:41:0;;;;;;;:::i;:::-;36511:7:::1;:15:::0;;-1:-1:-1;;36511:15:0::1;::::0;;36542:22:::1;36551:12;:10;:12::i;:::-;36542:22;;;;;;:::i;:::-;;;;;;;;36452:120::o:0;26473:207::-;26598:5;:3;:5::i;:::-;26588:6;26566:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;26558:75;;;;-1:-1:-1;;;26558:75:0;;;;;;;:::i;:::-;26644:28;26656:7;26665:6;26644:11;:28::i;20950:591::-;-1:-1:-1;;;;;21034:21:0;;21026:67;;;;-1:-1:-1;;;21026:67:0;;;;;;;:::i;:::-;21106:49;21127:7;21144:1;21148:6;21106:20;:49::i;:::-;-1:-1:-1;;;;;21193:18:0;;21168:22;21193:18;;;;;;;;;;;21230:24;;;;21222:71;;;;-1:-1:-1;;;21222:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21329:18:0;;:9;:18;;;;;;;;;;21350:23;;;21329:44;;21395:12;:22;;21367:6;;21329:9;21395:22;;21367:6;;21395:22;:::i;:::-;;;;-1:-1:-1;;21435:37:0;;21461:1;;-1:-1:-1;;;;;21435:37:0;;;;;;;21465:6;;21435:37;:::i;:::-;;;;;;;;21485:48;21505:7;21522:1;21526:6;21485:19;:48::i;36193:118::-;35719:8;:6;:8::i;:::-;35718:9;35710:38;;;;-1:-1:-1;;;35710:38:0;;;;;;;:::i;:::-;36253:7:::1;:14:::0;;-1:-1:-1;;36253:14:0::1;36263:4;36253:14;::::0;;36283:20:::1;36290:12;:10;:12::i;44266:201::-:0;35719:8;:6;:8::i;:::-;35718:9;35710:38;;;;-1:-1:-1;;;35710:38:0;;;;;;;:::i;:::-;44415:44:::1;44442:4;44448:2;44452:6;44415:26;:44::i;7226:451::-:0;7301:13;7327:19;7359:10;7363:6;7359:1;:10;:::i;:::-;:14;;7372:1;7359:14;:::i;:::-;7349:25;;;;;;-1:-1:-1;;;7349:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7349:25:0;;7327:47;;-1:-1:-1;;;7385:6:0;7392:1;7385:9;;;;;;-1:-1:-1;;;7385:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;7385:15:0;;;;;;;;;-1:-1:-1;;;7411:6:0;7418:1;7411:9;;;;;;-1:-1:-1;;;7411:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;7411:15:0;;;;;;;;-1:-1:-1;7442:9:0;7454:10;7458:6;7454:1;:10;:::i;:::-;:14;;7467:1;7454:14;:::i;:::-;7442:26;;7437:135;7474:1;7470;:5;7437:135;;;-1:-1:-1;;;7522:5:0;7530:3;7522:11;7509:25;;;;;-1:-1:-1;;;7509:25:0;;;;;;;;;;;;7497:6;7504:1;7497:9;;;;;;-1:-1:-1;;;7497:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;7497:37:0;;;;;;;;-1:-1:-1;7559:1:0;7549:11;;;;;7477:3;;;:::i;:::-;;;7437:135;;;-1:-1:-1;7590:10:0;;7582:55;;;;-1:-1:-1;;;7582:55:0;;;;;;;:::i;:::-;7662:6;7226:451;-1:-1:-1;;;7226:451:0:o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:266::-;;;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1639:6;1631;1624:22;1586:2;1680:9;1667:23;1657:33;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;1760:306::-;;1871:2;1859:9;1850:7;1846:23;1842:32;1839:2;;;1892:6;1884;1877:22;1839:2;1923:23;;-1:-1:-1;;;;;;1975:32:1;;1965:43;;1955:2;;2027:6;2019;2012:22;2266:786;;2677:25;2672:3;2665:38;2732:6;2726:13;2748:62;2803:6;2798:2;2793:3;2789:12;2782:4;2774:6;2770:17;2748:62;:::i;:::-;-1:-1:-1;;;2869:2:1;2829:16;;;2861:11;;;2854:40;2919:13;;2941:63;2919:13;2990:2;2982:11;;2975:4;2963:17;;2941:63;:::i;:::-;3024:17;3043:2;3020:26;;2655:397;-1:-1:-1;;;;2655:397:1:o;3057:203::-;-1:-1:-1;;;;;3221:32:1;;;;3203:51;;3191:2;3176:18;;3158:102::o;3265:187::-;3430:14;;3423:22;3405:41;;3393:2;3378:18;;3360:92::o;3457:177::-;3603:25;;;3591:2;3576:18;;3558:76::o;3639:383::-;;3788:2;3777:9;3770:21;3820:6;3814:13;3863:6;3858:2;3847:9;3843:18;3836:34;3879:66;3938:6;3933:2;3922:9;3918:18;3913:2;3905:6;3901:15;3879:66;:::i;:::-;4006:2;3985:15;-1:-1:-1;;3981:29:1;3966:45;;;;4013:2;3962:54;;3760:262;-1:-1:-1;;3760:262:1:o;4027:356::-;4229:2;4211:21;;;4248:18;;;4241:30;4307:34;4302:2;4287:18;;4280:62;4374:2;4359:18;;4201:182::o;4388:399::-;4590:2;4572:21;;;4629:2;4609:18;;;4602:30;4668:34;4663:2;4648:18;;4641:62;-1:-1:-1;;;4734:2:1;4719:18;;4712:33;4777:3;4762:19;;4562:225::o;4792:344::-;4994:2;4976:21;;;5033:2;5013:18;;;5006:30;-1:-1:-1;;;5067:2:1;5052:18;;5045:50;5127:2;5112:18;;4966:170::o;5141:398::-;5343:2;5325:21;;;5382:2;5362:18;;;5355:30;5421:34;5416:2;5401:18;;5394:62;-1:-1:-1;;;5487:2:1;5472:18;;5465:32;5529:3;5514:19;;5315:224::o;5544:398::-;5746:2;5728:21;;;5785:2;5765:18;;;5758:30;5824:34;5819:2;5804:18;;5797:62;-1:-1:-1;;;5890:2:1;5875:18;;5868:32;5932:3;5917:19;;5718:224::o;5947:353::-;6149:2;6131:21;;;6188:2;6168:18;;;6161:30;6227:31;6222:2;6207:18;;6200:59;6291:2;6276:18;;6121:179::o;6305:402::-;6507:2;6489:21;;;6546:2;6526:18;;;6519:30;6585:34;6580:2;6565:18;;6558:62;-1:-1:-1;;;6651:2:1;6636:18;;6629:36;6697:3;6682:19;;6479:228::o;6712:340::-;6914:2;6896:21;;;6953:2;6933:18;;;6926:30;-1:-1:-1;;;6987:2:1;6972:18;;6965:46;7043:2;7028:18;;6886:166::o;7057:397::-;7259:2;7241:21;;;7298:2;7278:18;;;7271:30;7337:34;7332:2;7317:18;;7310:62;-1:-1:-1;;;7403:2:1;7388:18;;7381:31;7444:3;7429:19;;7231:223::o;7459:401::-;7661:2;7643:21;;;7700:2;7680:18;;;7673:30;7739:34;7734:2;7719:18;;7712:62;-1:-1:-1;;;7805:2:1;7790:18;;7783:35;7850:3;7835:19;;7633:227::o;7865:349::-;8067:2;8049:21;;;8106:2;8086:18;;;8079:30;8145:27;8140:2;8125:18;;8118:55;8205:2;8190:18;;8039:175::o;8219:400::-;8421:2;8403:21;;;8460:2;8440:18;;;8433:30;8499:34;8494:2;8479:18;;8472:62;-1:-1:-1;;;8565:2:1;8550:18;;8543:34;8609:3;8594:19;;8393:226::o;8624:401::-;8826:2;8808:21;;;8865:2;8845:18;;;8838:30;8904:34;8899:2;8884:18;;8877:62;-1:-1:-1;;;8970:2:1;8955:18;;8948:35;9015:3;9000:19;;8798:227::o;9030:411::-;9232:2;9214:21;;;9271:2;9251:18;;;9244:30;9310:34;9305:2;9290:18;;9283:62;-1:-1:-1;;;9376:2:1;9361:18;;9354:45;9431:3;9416:19;;9204:237::o;9446:355::-;9648:2;9630:21;;;9687:2;9667:18;;;9660:30;9726:33;9721:2;9706:18;;9699:61;9792:2;9777:18;;9620:181::o;9988:184::-;10160:4;10148:17;;;;10130:36;;10118:2;10103:18;;10085:87::o;10177:128::-;;10248:1;10244:6;10241:1;10238:13;10235:2;;;10254:18;;:::i;:::-;-1:-1:-1;10290:9:1;;10225:80::o;10310:168::-;;10416:1;10412;10408:6;10404:14;10401:1;10398:21;10393:1;10386:9;10379:17;10375:45;10372:2;;;10423:18;;:::i;:::-;-1:-1:-1;10463:9:1;;10362:116::o;10483:125::-;;10551:1;10548;10545:8;10542:2;;;10556:18;;:::i;:::-;-1:-1:-1;10593:9:1;;10532:76::o;10613:258::-;10685:1;10695:113;10709:6;10706:1;10703:13;10695:113;;;10785:11;;;10779:18;10766:11;;;10759:39;10731:2;10724:10;10695:113;;;10826:6;10823:1;10820:13;10817:2;;;-1:-1:-1;;10861:1:1;10843:16;;10836:27;10666:205::o;10876:136::-;;10943:5;10933:2;;10952:18;;:::i;:::-;-1:-1:-1;;;10988:18:1;;10923:89::o;11017:380::-;11102:1;11092:12;;11149:1;11139:12;;;11160:2;;11214:4;11206:6;11202:17;11192:27;;11160:2;11267;11259:6;11256:14;11236:18;11233:38;11230:2;;;11313:10;11308:3;11304:20;11301:1;11294:31;11348:4;11345:1;11338:15;11376:4;11373:1;11366:15;11230:2;;11072:325;;;:::o;11402:127::-;11463:10;11458:3;11454:20;11451:1;11444:31;11494:4;11491:1;11484:15;11518:4;11515:1;11508:15

Swarm Source

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