ETH Price: $2,662.99 (+2.30%)

Token

Citizen Green Veteran (CGVET)
 

Overview

Max Total Supply

10,000,000 CGVET

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Abbey Technology GmbH: Deployer
Balance
7,452,099.90858874998483879 CGVET

Value
$0.00
0x1FA6D184abbfEe00220d6acFCD3Ec6dcD0373dA2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CGVETToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : CGVETToken.sol
// SPDX-License-Identifier: UNLICENSED
/*
*
* CGVET Token
*
*
* ========================
* https://citizengreen.io/
* ========================
*
* The Citizen Green app aims to work within a consumables regulatory constraints in the 
* US, and allows military veterans to anonymously share their consumption experiences for the 
* benefit of other veterans on a similar journey and in return earn NFT discount coupons on 
* their purchases. 
*
* The Citizen Green Veteran NFT discount couponing program is made possible because cultivators 
* attest to a product lifecycle story on the Efixii blockchain and receive CGVET tokens as truth
* rewards.  
*
* CGVET rewards may also be issued to retailers to help offset the cost of a offering an NFT 
* coupon discount for veterans.
*
*
* =================
* https://abbey.ch/
* =================
* 
* Abbey is a Uniswap-based DeFi solution provider that allows companies to offer people a 
* novel way to participate in the success a business may have in a decentralized manner.
* 
* The premise is both elegant and simple, the company performs token buybacks based on 
* its revenues.
* 
* Using Abbey as a Uniswap DeFi management agency, the company spends some revenues 
* buying one side of a bespoke Uniswap trading pair. The other side of the Uniswap pair 
* is the CGVET token.
* 
* DeFi traders wishing to participate in the success a business may have deposit USDC in 
* return for CGVET tokens. The Uniswap Automated Market Maker ensures DeFi market liquidity 
* and legitimate price discovery. The more USDC that the company spends in buy backs over 
* time, the higher the potential rise in the long term value of the CGVET token.
*
*
* =========================
* https://cross-fi.finance/
* =========================
* 
* CGVET also operates a 'stake and earn' smart contract which distributes CGVET tokens as
* rewards to stakers over time. The CGVET smart contract owner deposits tokens into a 
* staking contracts rewards pool. As time goes by, stakers earn reward tokens and, after 
* the staker-pledged lock-up term expires, stakers may claim rewards and withdraw their 
* deposits.
*
* The longer tokens are staked for, the higher the earned reward. If tokens are withdrawn 
* prior to the staker-pledged lock-up term, then only the original deposit-amount of tokens 
* is returned, without reward.
*
* Staking is only allowed when there is sufficient collateral for token-rewards deposited 
* in the contract. Anyone may use the stake and earn contract, free of charge or commission.
*
* APY formula is (1+i)^(n/12)^a
* where:
*  i=target 12 month APY
*  n=number of months locked
*  a=scaling factor 1 <= a <= 2
*
*/

pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/**
 * @title CGVET Token contract for Uniswap v3.
 * @author Abbey Technology GmbH
 * @notice Token contract for use with Uniswap. Enforces restrictions outlined on the website.
 */
contract CGVETToken is ERC20 {

    /**
     * @notice The details of a future withdraw.
     */
    struct Notice {
        // The maximum number of tokens proposed to withdraw.
        uint256 amount;

        // The date after which tokens can be swapped.
        uint256 releaseDate;
    }

    // Event fired when a restricted wallet gives notice of a potential future trade.
    event NoticeGiven(address indexed who, uint256 amount, uint256 releaseDate);

    /**
     * @notice Notice must be given to the public before treasury tokens can be swapped.
     */
    Notice public noticeTreasury;

    /**
     * @notice Notice must be given to the public before Liquidity Tokens can be removed from the pool.
     */
    Notice public noticeLiquidity;

    /**
    * @notice The account that created this contract, also functions as the liquidity provider.
    */
    address public owner;

    /**
     * @notice Holder of the L1 tokens.  Must give notice before tokens are moved.
     */
    address public treasury;

    /**
     * @notice The account that performs the buyback of tokens, all bought tokens are burned.
     * @dev They cannot be autoburned during transfer as the Uniswap client prevents the transaction.
     */
    address public buyback;

    /**
     * @notice The account that facilitates moving tokens between Mainnet and Efixii L2.
     */
    address public flip;    

    /**
     * @notice The address of the Uniswap Pool ERC20 contract holding the Liquidity Pool tokens.
     */
    address public poolAddress;

    /**
     * @notice The address of the Uniswap NFT ERC721 Positions contract that tracks ownership of liquidity pools.
     */
    address public positionsAddress;

    /**
     * @notice The NFT id of the Liquidity Pool in the Uniswap Positions contract.
     */
    uint256 public nftId;    

    /**
     * @notice The minimum duration notice given (to give the public a chance to act and to prevent a rug pull).
     */
    uint256 private MinimumNotice = 7 days;

    /**
     * @notice Restrict functionaly to the contract owner.
     */
    modifier onlyOwner {
        require(_msgSender() == owner, "You are not Owner.");
        _;
    }

    /**
     * @notice Create the contract setting already known values that are unlikely to change.  The tokens for the Uniswap
     *         liquidity pool are also created.
     * 
     * @param initialSupply The number of tokens to create the Uniswap pool.
     * @param name          The name of the token.
     * @param symbol        The short symbol for this token.
     * @param treasuryAddr  The address of the treasury wallet.
     * @param buybackAddr   The wallet that performs buybacks and optional burns of tokens.
     * @param flipAddr      The wallet used to move tokens between L2 and Mainnet.
     */
    constructor(uint256 initialSupply, string memory name, string memory symbol, address treasuryAddr, address buybackAddr, address flipAddr, address positionsAddr) ERC20(name, symbol) {
        owner = _msgSender();

        treasury = treasuryAddr;
        buyback = buybackAddr;
        flip = flipAddr;
        positionsAddress = positionsAddr;

        _mint(owner, initialSupply);
    }

    /**
     * @notice Set the address of the account holding CGVET tokens.
     */
    function setTreasury(address who) public onlyOwner {
        require(who != address(0x0), "Cannot assign to null address");

        _migrateTokens(treasury, who);
        treasury = who;
    }

    /**
     * @notice Set the address of the company account that buys tokens to increase the token price.
     */
    function setBuyback(address who) public onlyOwner {
        require(who != address(0x0), "Cannot assign to null address");

        _migrateTokens(buyback, who);
        buyback = who;
    }

    /**
     * @notice Set the address of the account that allows moving tokens between L2 and Mainnet.
     */
    function setFlip(address who) public onlyOwner {
        require(who != address(0x0), "Cannot assign to null address");

        _migrateTokens(flip, who);
        flip = who;
    }

    /**
     * When changing the address of a role in the contract move all tokens to the new
     * address - the tokens are restricted by role so need to move with the role address
     * change.
     */
    function _migrateTokens(address from, address to) private {
        if(from != address(0x0) && balanceOf(from) > 0)
            _transfer(from, to, balanceOf(from));
    }

    /**
     * @notice Set the address of the Uniswap Pool contract.
     */
    function setPoolAddress(address who) public onlyOwner {
        poolAddress = who;
    }

    /**
     * @notice Set the address of the Uniswap NFT contract that tracks Liquidity Pool ownership.
     */
    function setPositionsAddress(address who) public onlyOwner {
        positionsAddress = who;
    }

    /**
     * @notice Set the id of the position token that determines ownership of the Liquidity Pool.
     */
    function setNftId(uint256 id) public onlyOwner {
        nftId = id;
    }

    /**
     * @notice Treasury tokens must give advanced notice to the public before they can be used.
     * A public announcement will be made at the same time this notice is set in the contract.
     *
     * @param who The treasury address.
     * @param amount The maximum number of tokens (in wei).
     * @param numSeconds The number of seconds the tokens are held before being acted on.
     */
    function treasuryTransferNotice(address who, uint256 amount, uint256 numSeconds) public onlyOwner {
        require(who == treasury, "Specified address is not Treasury.");
        require(numSeconds >= MinimumNotice, "Not enough notice given.");

        uint256 when = block.timestamp + (numSeconds * 1 seconds);

        require(noticeTreasury.releaseDate == 0 || block.timestamp >= noticeTreasury.releaseDate, "Cannot overwrite an active existing notice.");
        require(amount <= balanceOf(who), "Can't give notice for more CGVET tokens than owned.");
        noticeTreasury = Notice(amount, when);
        emit NoticeGiven(who, amount, when);
    }

    /**
     * @notice Liquidity Pool tokens must give advanced notice to the public before they can be used.
     * A public announcement will be made at the same time this notice is set in the contract.     
     *
     * @param who The owner of the Uniswap Positions NFT token.
     * @param amount The maximum number of tokens (in wei).
     * @param numSeconds The number of seconds the tokens are held before being acted on.
     */
    function liquidityRedemptionNotice(address who, uint256 amount, uint256 numSeconds) public onlyOwner {
        require(positionsAddress != address(0), "Uniswap Position Manager must be set.");
        require(numSeconds >= MinimumNotice, "Not enough notice given.");
        require(nftId != 0, "Uniswap Position NFT Id must be set.");
        require(poolAddress != address(0), "The Uniswap Pool contract address must be set.");

        IERC721 positions = IERC721(positionsAddress);
        address lpOwner = positions.ownerOf(nftId);
        require(who == lpOwner, "The specified address does not own the Positions NFT Token.");

        uint256 when = block.timestamp + (numSeconds * 1 seconds);

        require(noticeLiquidity.releaseDate == 0 || block.timestamp >= noticeLiquidity.releaseDate, "Cannot overwrite an active existing notice.");
        require(amount <= balanceOf(poolAddress), "Can't give notice for more Liquidity Tokens than owned.");
        noticeLiquidity = Notice(amount, when);
        emit NoticeGiven(who, amount, when);
    }

    /**
     * @notice Enforce rules around the company accounts:
     * - Once buyback buys tokens they can never be moved, the only real option is to burn.
     * - Two key accounts: treasury and the owner of the liquidity pool are restricted.
     * - A public announcement of the company's intent along with a time locked notice set in this contract before any token movement.
     * - Only after the deadline can these restricted tokens move.
     * - No restrictions are in place for any other wallet.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(sender != buyback, "Buyback cannot transfer tokens, it can only burn.");
        if(sender == treasury) {
            require(noticeTreasury.releaseDate != 0 && block.timestamp >= noticeTreasury.releaseDate, "Notice period has not been set or has not expired.");
            require(amount <= noticeTreasury.amount, "Treasury can't transfer more tokens than given notice for.");

            // Clear the remaining notice balance, this prevents giving notice on all tokens and
            // trickling them out.
            noticeTreasury = Notice(0, 0);
        }
        else if(nftId != 0) { // Check if the receiver is the Liquidity Pool owner.
            IERC721 positions = IERC721(positionsAddress);
            address lpOwner = positions.ownerOf(nftId);
            if(recipient == lpOwner) {
                require(noticeLiquidity.releaseDate != 0 && block.timestamp >= noticeLiquidity.releaseDate, "LP notice period has not been set or has not expired.");
                require(amount <= noticeLiquidity.amount, "LP can't transfer more tokens than given notice for.");

                // Clear the remaining notice balance, this prevents giving notice on all tokens and
                // trickling them out.
                noticeLiquidity = Notice(0, 0);
            }
        }

        super._transfer(sender, recipient, amount);
    }

    /**
     * @notice mint may be called when CGVET tokens are burned on the L2 side of the CGVET bridge 
     * and minted one-for-one to this contract on the Mainnet L1 side of the CGVET bridge.
     *
     * @param who The address to mint to the tokens to.
     * @param quantity The number of tokens to create, in wei.
     */
    function mint(address who, uint256 quantity) public onlyOwner {
        _mint(who, quantity);
    }

    /**
     * @notice Tokens are burned here on Mainnet to reduce total supply available.
     *
     * @param quantity The number of tokens to destroy, in wei.
     */
    function burn(uint256 quantity) public {
        _burn(_msgSender(), quantity);
    }
}

File 2 of 7 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 4 of 7 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"treasuryAddr","type":"address"},{"internalType":"address","name":"buybackAddr","type":"address"},{"internalType":"address","name":"flipAddr","type":"address"},{"internalType":"address","name":"positionsAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseDate","type":"uint256"}],"name":"NoticeGiven","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyback","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flip","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"who","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"numSeconds","type":"uint256"}],"name":"liquidityRedemptionNotice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noticeLiquidity","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noticeTreasury","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"releaseDate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"positionsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setBuyback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setFlip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setNftId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setPositionsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"setTreasury","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":"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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"numSeconds","type":"uint256"}],"name":"treasuryTransferNotice","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262093a806010553480156200001857600080fd5b5060405162001fbc38038062001fbc8339810160408190526200003b9162000282565b858560036200004b8382620003cf565b5060046200005a8282620003cf565b50620000669150503390565b600980546001600160a01b03199081166001600160a01b03938416908117909255600a80548216888516179055600b80548216878516179055600c80548216868516179055600e805490911692841692909217909155620000c89088620000d5565b50505050505050620004c3565b6001600160a01b038216620001305760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200014491906200049b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001c857600080fd5b81516001600160401b0380821115620001e557620001e5620001a0565b604051601f8301601f19908116603f01168101908282118183101715620002105762000210620001a0565b816040528381526020925086838588010111156200022d57600080fd5b600091505b8382101562000251578582018301518183018401529082019062000232565b600093810190920192909252949350505050565b80516001600160a01b03811681146200027d57600080fd5b919050565b600080600080600080600060e0888a0312156200029e57600080fd5b875160208901519097506001600160401b0380821115620002be57600080fd5b620002cc8b838c01620001b6565b975060408a0151915080821115620002e357600080fd5b50620002f28a828b01620001b6565b955050620003036060890162000265565b9350620003136080890162000265565b92506200032360a0890162000265565b91506200033360c0890162000265565b905092959891949750929550565b600181811c908216806200035657607f821691505b6020821081036200037757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019b57600081815260208120601f850160051c81016020861015620003a65750805b601f850160051c820191505b81811015620003c757828155600101620003b2565b505050505050565b81516001600160401b03811115620003eb57620003eb620001a0565b6200040381620003fc845462000341565b846200037d565b602080601f8311600181146200043b5760008415620004225750858301515b600019600386901b1c1916600185901b178555620003c7565b600085815260208120601f198616915b828110156200046c578886015182559484019460019091019084016200044b565b50858210156200048b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004bd57634e487b7160e01b600052601160045260246000fd5b92915050565b611ae980620004d36000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063bbeed845116100a2578063e9e15b4f11610071578063e9e15b4f14610409578063f0f442601461041c578063f3856e761461042f578063f8ec69111461044257600080fd5b8063bbeed845146103cc578063c6bc5182146103da578063cde4efa9146103e3578063dd62ed3e146103f657600080fd5b80639aebd086116100de5780639aebd08614610380578063a457c2d714610393578063a9059cbb146103a6578063b3716d49146103b957600080fd5b80638da5cb5b1461035257806395d89b411461036557806399b320f91461036d57600080fd5b8063313ce5671161017c578063470887261161014b57806347088726146102f057806361d027b31461030357806370a082311461031657806380e709d91461033f57600080fd5b8063313ce567146102a857806339509351146102b757806340c10f19146102ca57806342966c68146102dd57600080fd5b806318160ddd116101b857806318160ddd1461024b5780631dab900f1461025d57806323b872dd146102725780632f0714671461028557600080fd5b806306fdde03146101df578063095ea7b3146101fd5780631755ff2114610220575b600080fd5b6101e7610455565b6040516101f491906117f3565b60405180910390f35b61021061020b366004611856565b6104e7565b60405190151581526020016101f4565b600d54610233906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6002545b6040519081526020016101f4565b61027061026b366004611882565b610501565b005b6102106102803660046118b7565b6108ff565b600754600854610293919082565b604080519283526020830191909152016101f4565b604051601281526020016101f4565b6102106102c5366004611856565b610923565b6102706102d8366004611856565b610945565b6102706102eb3660046118f8565b610986565b6102706102fe366004611911565b610993565b600a54610233906001600160a01b031681565b61024f610324366004611911565b6001600160a01b031660009081526020819052604090205490565b61027061034d3660046118f8565b610a24565b600954610233906001600160a01b031681565b6101e7610a5c565b61027061037b366004611882565b610a6b565b61027061038e366004611911565b610c83565b6102106103a1366004611856565b610cd8565b6102106103b4366004611856565b610d53565b600e54610233906001600160a01b031681565b600554600654610293919082565b61024f600f5481565b600c54610233906001600160a01b031681565b61024f610404366004611935565b610d61565b610270610417366004611911565b610d8c565b61027061042a366004611911565b610de1565b61027061043d366004611911565b610e72565b600b54610233906001600160a01b031681565b6060600380546104649061196e565b80601f01602080910402602001604051908101604052809291908181526020018280546104909061196e565b80156104dd5780601f106104b2576101008083540402835291602001916104dd565b820191906000526020600020905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b6000336104f5818585610f03565b60019150505b92915050565b6009546001600160a01b0316336001600160a01b03161461053d5760405162461bcd60e51b8152600401610534906119a8565b60405180910390fd5b600e546001600160a01b03166105a35760405162461bcd60e51b815260206004820152602560248201527f556e697377617020506f736974696f6e204d616e61676572206d7573742062656044820152641039b2ba1760d91b6064820152608401610534565b6010548110156105f05760405162461bcd60e51b81526020600482015260186024820152772737ba1032b737bab3b4103737ba34b1b29033b4bb32b71760411b6044820152606401610534565b600f5460000361064e5760405162461bcd60e51b8152602060048201526024808201527f556e697377617020506f736974696f6e204e4654204964206d7573742062652060448201526339b2ba1760e11b6064820152608401610534565b600d546001600160a01b03166106bd5760405162461bcd60e51b815260206004820152602e60248201527f54686520556e697377617020506f6f6c20636f6e74726163742061646472657360448201526d399036bab9ba1031329039b2ba1760911b6064820152608401610534565b600e54600f546040516331a9108f60e11b81526001600160a01b03909216916000918391636352211e916106f79160040190815260200190565b602060405180830381865afa158015610714573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073891906119d4565b9050806001600160a01b0316856001600160a01b0316146107c15760405162461bcd60e51b815260206004820152603b60248201527f54686520737065636966696564206164647265737320646f6573206e6f74206f60448201527f776e2074686520506f736974696f6e73204e465420546f6b656e2e00000000006064820152608401610534565b60006107ce846001611a07565b6107d89042611a1e565b60085490915015806107ec57506008544210155b6108085760405162461bcd60e51b815260040161053490611a31565b600d546001600160a01b03166000908152602081905260409020548511156108985760405162461bcd60e51b815260206004820152603760248201527f43616e27742067697665206e6f7469636520666f72206d6f7265204c6971756960448201527f6469747920546f6b656e73207468616e206f776e65642e0000000000000000006064820152608401610534565b60408051808201825286815260209081018390526007879055600883905581518781529081018390526001600160a01b038816917f070a0bf37a5cd52578f68438a1f23bb8b3b38d86ade0a09abd709982bdb1527f910160405180910390a2505050505050565b60003361090d858285611027565b6109188585856110a1565b506001949350505050565b6000336104f58185856109368383610d61565b6109409190611a1e565b610f03565b6009546001600160a01b0316336001600160a01b0316146109785760405162461bcd60e51b8152600401610534906119a8565b6109828282611402565b5050565b61099033826114c1565b50565b6009546001600160a01b0316336001600160a01b0316146109c65760405162461bcd60e51b8152600401610534906119a8565b6001600160a01b0381166109ec5760405162461bcd60e51b815260040161053490611a7c565b600c54610a02906001600160a01b0316826115f3565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b0316336001600160a01b031614610a575760405162461bcd60e51b8152600401610534906119a8565b600f55565b6060600480546104649061196e565b6009546001600160a01b0316336001600160a01b031614610a9e5760405162461bcd60e51b8152600401610534906119a8565b600a546001600160a01b03848116911614610b065760405162461bcd60e51b815260206004820152602260248201527f5370656369666965642061646472657373206973206e6f7420547265617375726044820152613c9760f11b6064820152608401610534565b601054811015610b535760405162461bcd60e51b81526020600482015260186024820152772737ba1032b737bab3b4103737ba34b1b29033b4bb32b71760411b6044820152606401610534565b6000610b60826001611a07565b610b6a9042611a1e565b6006549091501580610b7e57506006544210155b610b9a5760405162461bcd60e51b815260040161053490611a31565b6001600160a01b038416600090815260208190526040902054831115610c1e5760405162461bcd60e51b815260206004820152603360248201527f43616e27742067697665206e6f7469636520666f72206d6f7265204347564554604482015272103a37b5b2b739903a3430b71037bbb732b21760691b6064820152608401610534565b60408051808201825284815260209081018390526005859055600683905581518581529081018390526001600160a01b038616917f070a0bf37a5cd52578f68438a1f23bb8b3b38d86ade0a09abd709982bdb1527f910160405180910390a250505050565b6009546001600160a01b0316336001600160a01b031614610cb65760405162461bcd60e51b8152600401610534906119a8565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60003381610ce68286610d61565b905083811015610d465760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610534565b6109188286868403610f03565b6000336104f58185856110a1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546001600160a01b0316336001600160a01b031614610dbf5760405162461bcd60e51b8152600401610534906119a8565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b0316336001600160a01b031614610e145760405162461bcd60e51b8152600401610534906119a8565b6001600160a01b038116610e3a5760405162461bcd60e51b815260040161053490611a7c565b600a54610e50906001600160a01b0316826115f3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b0316336001600160a01b031614610ea55760405162461bcd60e51b8152600401610534906119a8565b6001600160a01b038116610ecb5760405162461bcd60e51b815260040161053490611a7c565b600b54610ee1906001600160a01b0316826115f3565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610f655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610534565b6001600160a01b038216610fc65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610534565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110338484610d61565b9050600019811461109b578181101561108e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610534565b61109b8484848403610f03565b50505050565b600b546001600160a01b03908116908416036111195760405162461bcd60e51b815260206004820152603160248201527f4275796261636b2063616e6e6f74207472616e7366657220746f6b656e732c2060448201527034ba1031b0b71037b7363c90313ab9371760791b6064820152608401610534565b600a546001600160a01b0390811690841603611245576006541580159061114257506006544210155b6111a95760405162461bcd60e51b815260206004820152603260248201527f4e6f7469636520706572696f6420686173206e6f74206265656e20736574206f60448201527139103430b9903737ba1032bc3834b932b21760711b6064820152608401610534565b6005548111156112215760405162461bcd60e51b815260206004820152603a60248201527f54726561737572792063616e2774207472616e73666572206d6f726520746f6b60448201527f656e73207468616e20676976656e206e6f7469636520666f722e0000000000006064820152608401610534565b604080518082019091526000808252602090910181905260058190556006556113f2565b600f54156113f257600e54600f546040516331a9108f60e11b81526001600160a01b03909216916000918391636352211e916112879160040190815260200190565b602060405180830381865afa1580156112a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c891906119d4565b9050806001600160a01b0316846001600160a01b0316036113ef57600854158015906112f657506008544210155b6113605760405162461bcd60e51b815260206004820152603560248201527f4c50206e6f7469636520706572696f6420686173206e6f74206265656e2073656044820152743a1037b9103430b9903737ba1032bc3834b932b21760591b6064820152608401610534565b6007548311156113cf5760405162461bcd60e51b815260206004820152603460248201527f4c502063616e2774207472616e73666572206d6f726520746f6b656e7320746860448201527330b71033b4bb32b7103737ba34b1b2903337b91760611b6064820152608401610534565b604080518082019091526000808252602090910181905260078190556008555b50505b6113fd83838361164f565b505050565b6001600160a01b0382166114585760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610534565b806002600082825461146a9190611a1e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166115215760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610534565b6001600160a01b038216600090815260208190526040902054818110156115955760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610534565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0382161580159061162157506001600160a01b038216600090815260208190526040812054115b1561098257610982828261164a856001600160a01b031660009081526020819052604090205490565b6110a1565b6001600160a01b0383166116b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610534565b6001600160a01b0382166117155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610534565b6001600160a01b0383166000908152602081905260409020548181101561178d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610534565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361109b565b600060208083528351808285015260005b8181101561182057858101830151858201604001528201611804565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461099057600080fd5b6000806040838503121561186957600080fd5b823561187481611841565b946020939093013593505050565b60008060006060848603121561189757600080fd5b83356118a281611841565b95602085013595506040909401359392505050565b6000806000606084860312156118cc57600080fd5b83356118d781611841565b925060208401356118e781611841565b929592945050506040919091013590565b60006020828403121561190a57600080fd5b5035919050565b60006020828403121561192357600080fd5b813561192e81611841565b9392505050565b6000806040838503121561194857600080fd5b823561195381611841565b9150602083013561196381611841565b809150509250929050565b600181811c9082168061198257607f821691505b6020821081036119a257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601290820152712cb7ba9030b932903737ba1027bbb732b91760711b604082015260600190565b6000602082840312156119e657600080fd5b815161192e81611841565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176104fb576104fb6119f1565b808201808211156104fb576104fb6119f1565b6020808252602b908201527f43616e6e6f74206f766572777269746520616e2061637469766520657869737460408201526a34b733903737ba34b1b29760a91b606082015260800190565b6020808252601d908201527f43616e6e6f742061737369676e20746f206e756c6c206164647265737300000060408201526060019056fea26469706673582212204233226fdc5d4eeab80575a0ae6ee7881a824b0100c94def4374c2fd37eb877764736f6c63430008130033000000000000000000000000000000000000000000084595161401484a00000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000006bc693dbd2b197e3067832ac71ed0b6d38cfd85a00000000000000000000000044734875a9cfac1ea21a9721b37954d33a24139b0000000000000000000000002ec7d593763eed26defa231b4c566252e2667a6b0000000000000000000000001fa6d184abbfee00220d6acfcd3ec6dcd0373da20000000000000000000000000000000000000000000000000000000000000015436974697a656e20477265656e205665746572616e000000000000000000000000000000000000000000000000000000000000000000000000000000000000054347564554000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063bbeed845116100a2578063e9e15b4f11610071578063e9e15b4f14610409578063f0f442601461041c578063f3856e761461042f578063f8ec69111461044257600080fd5b8063bbeed845146103cc578063c6bc5182146103da578063cde4efa9146103e3578063dd62ed3e146103f657600080fd5b80639aebd086116100de5780639aebd08614610380578063a457c2d714610393578063a9059cbb146103a6578063b3716d49146103b957600080fd5b80638da5cb5b1461035257806395d89b411461036557806399b320f91461036d57600080fd5b8063313ce5671161017c578063470887261161014b57806347088726146102f057806361d027b31461030357806370a082311461031657806380e709d91461033f57600080fd5b8063313ce567146102a857806339509351146102b757806340c10f19146102ca57806342966c68146102dd57600080fd5b806318160ddd116101b857806318160ddd1461024b5780631dab900f1461025d57806323b872dd146102725780632f0714671461028557600080fd5b806306fdde03146101df578063095ea7b3146101fd5780631755ff2114610220575b600080fd5b6101e7610455565b6040516101f491906117f3565b60405180910390f35b61021061020b366004611856565b6104e7565b60405190151581526020016101f4565b600d54610233906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6002545b6040519081526020016101f4565b61027061026b366004611882565b610501565b005b6102106102803660046118b7565b6108ff565b600754600854610293919082565b604080519283526020830191909152016101f4565b604051601281526020016101f4565b6102106102c5366004611856565b610923565b6102706102d8366004611856565b610945565b6102706102eb3660046118f8565b610986565b6102706102fe366004611911565b610993565b600a54610233906001600160a01b031681565b61024f610324366004611911565b6001600160a01b031660009081526020819052604090205490565b61027061034d3660046118f8565b610a24565b600954610233906001600160a01b031681565b6101e7610a5c565b61027061037b366004611882565b610a6b565b61027061038e366004611911565b610c83565b6102106103a1366004611856565b610cd8565b6102106103b4366004611856565b610d53565b600e54610233906001600160a01b031681565b600554600654610293919082565b61024f600f5481565b600c54610233906001600160a01b031681565b61024f610404366004611935565b610d61565b610270610417366004611911565b610d8c565b61027061042a366004611911565b610de1565b61027061043d366004611911565b610e72565b600b54610233906001600160a01b031681565b6060600380546104649061196e565b80601f01602080910402602001604051908101604052809291908181526020018280546104909061196e565b80156104dd5780601f106104b2576101008083540402835291602001916104dd565b820191906000526020600020905b8154815290600101906020018083116104c057829003601f168201915b5050505050905090565b6000336104f5818585610f03565b60019150505b92915050565b6009546001600160a01b0316336001600160a01b03161461053d5760405162461bcd60e51b8152600401610534906119a8565b60405180910390fd5b600e546001600160a01b03166105a35760405162461bcd60e51b815260206004820152602560248201527f556e697377617020506f736974696f6e204d616e61676572206d7573742062656044820152641039b2ba1760d91b6064820152608401610534565b6010548110156105f05760405162461bcd60e51b81526020600482015260186024820152772737ba1032b737bab3b4103737ba34b1b29033b4bb32b71760411b6044820152606401610534565b600f5460000361064e5760405162461bcd60e51b8152602060048201526024808201527f556e697377617020506f736974696f6e204e4654204964206d7573742062652060448201526339b2ba1760e11b6064820152608401610534565b600d546001600160a01b03166106bd5760405162461bcd60e51b815260206004820152602e60248201527f54686520556e697377617020506f6f6c20636f6e74726163742061646472657360448201526d399036bab9ba1031329039b2ba1760911b6064820152608401610534565b600e54600f546040516331a9108f60e11b81526001600160a01b03909216916000918391636352211e916106f79160040190815260200190565b602060405180830381865afa158015610714573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073891906119d4565b9050806001600160a01b0316856001600160a01b0316146107c15760405162461bcd60e51b815260206004820152603b60248201527f54686520737065636966696564206164647265737320646f6573206e6f74206f60448201527f776e2074686520506f736974696f6e73204e465420546f6b656e2e00000000006064820152608401610534565b60006107ce846001611a07565b6107d89042611a1e565b60085490915015806107ec57506008544210155b6108085760405162461bcd60e51b815260040161053490611a31565b600d546001600160a01b03166000908152602081905260409020548511156108985760405162461bcd60e51b815260206004820152603760248201527f43616e27742067697665206e6f7469636520666f72206d6f7265204c6971756960448201527f6469747920546f6b656e73207468616e206f776e65642e0000000000000000006064820152608401610534565b60408051808201825286815260209081018390526007879055600883905581518781529081018390526001600160a01b038816917f070a0bf37a5cd52578f68438a1f23bb8b3b38d86ade0a09abd709982bdb1527f910160405180910390a2505050505050565b60003361090d858285611027565b6109188585856110a1565b506001949350505050565b6000336104f58185856109368383610d61565b6109409190611a1e565b610f03565b6009546001600160a01b0316336001600160a01b0316146109785760405162461bcd60e51b8152600401610534906119a8565b6109828282611402565b5050565b61099033826114c1565b50565b6009546001600160a01b0316336001600160a01b0316146109c65760405162461bcd60e51b8152600401610534906119a8565b6001600160a01b0381166109ec5760405162461bcd60e51b815260040161053490611a7c565b600c54610a02906001600160a01b0316826115f3565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b0316336001600160a01b031614610a575760405162461bcd60e51b8152600401610534906119a8565b600f55565b6060600480546104649061196e565b6009546001600160a01b0316336001600160a01b031614610a9e5760405162461bcd60e51b8152600401610534906119a8565b600a546001600160a01b03848116911614610b065760405162461bcd60e51b815260206004820152602260248201527f5370656369666965642061646472657373206973206e6f7420547265617375726044820152613c9760f11b6064820152608401610534565b601054811015610b535760405162461bcd60e51b81526020600482015260186024820152772737ba1032b737bab3b4103737ba34b1b29033b4bb32b71760411b6044820152606401610534565b6000610b60826001611a07565b610b6a9042611a1e565b6006549091501580610b7e57506006544210155b610b9a5760405162461bcd60e51b815260040161053490611a31565b6001600160a01b038416600090815260208190526040902054831115610c1e5760405162461bcd60e51b815260206004820152603360248201527f43616e27742067697665206e6f7469636520666f72206d6f7265204347564554604482015272103a37b5b2b739903a3430b71037bbb732b21760691b6064820152608401610534565b60408051808201825284815260209081018390526005859055600683905581518581529081018390526001600160a01b038616917f070a0bf37a5cd52578f68438a1f23bb8b3b38d86ade0a09abd709982bdb1527f910160405180910390a250505050565b6009546001600160a01b0316336001600160a01b031614610cb65760405162461bcd60e51b8152600401610534906119a8565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60003381610ce68286610d61565b905083811015610d465760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610534565b6109188286868403610f03565b6000336104f58185856110a1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6009546001600160a01b0316336001600160a01b031614610dbf5760405162461bcd60e51b8152600401610534906119a8565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b0316336001600160a01b031614610e145760405162461bcd60e51b8152600401610534906119a8565b6001600160a01b038116610e3a5760405162461bcd60e51b815260040161053490611a7c565b600a54610e50906001600160a01b0316826115f3565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b0316336001600160a01b031614610ea55760405162461bcd60e51b8152600401610534906119a8565b6001600160a01b038116610ecb5760405162461bcd60e51b815260040161053490611a7c565b600b54610ee1906001600160a01b0316826115f3565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610f655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610534565b6001600160a01b038216610fc65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610534565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110338484610d61565b9050600019811461109b578181101561108e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610534565b61109b8484848403610f03565b50505050565b600b546001600160a01b03908116908416036111195760405162461bcd60e51b815260206004820152603160248201527f4275796261636b2063616e6e6f74207472616e7366657220746f6b656e732c2060448201527034ba1031b0b71037b7363c90313ab9371760791b6064820152608401610534565b600a546001600160a01b0390811690841603611245576006541580159061114257506006544210155b6111a95760405162461bcd60e51b815260206004820152603260248201527f4e6f7469636520706572696f6420686173206e6f74206265656e20736574206f60448201527139103430b9903737ba1032bc3834b932b21760711b6064820152608401610534565b6005548111156112215760405162461bcd60e51b815260206004820152603a60248201527f54726561737572792063616e2774207472616e73666572206d6f726520746f6b60448201527f656e73207468616e20676976656e206e6f7469636520666f722e0000000000006064820152608401610534565b604080518082019091526000808252602090910181905260058190556006556113f2565b600f54156113f257600e54600f546040516331a9108f60e11b81526001600160a01b03909216916000918391636352211e916112879160040190815260200190565b602060405180830381865afa1580156112a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c891906119d4565b9050806001600160a01b0316846001600160a01b0316036113ef57600854158015906112f657506008544210155b6113605760405162461bcd60e51b815260206004820152603560248201527f4c50206e6f7469636520706572696f6420686173206e6f74206265656e2073656044820152743a1037b9103430b9903737ba1032bc3834b932b21760591b6064820152608401610534565b6007548311156113cf5760405162461bcd60e51b815260206004820152603460248201527f4c502063616e2774207472616e73666572206d6f726520746f6b656e7320746860448201527330b71033b4bb32b7103737ba34b1b2903337b91760611b6064820152608401610534565b604080518082019091526000808252602090910181905260078190556008555b50505b6113fd83838361164f565b505050565b6001600160a01b0382166114585760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610534565b806002600082825461146a9190611a1e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166115215760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610534565b6001600160a01b038216600090815260208190526040902054818110156115955760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610534565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0382161580159061162157506001600160a01b038216600090815260208190526040812054115b1561098257610982828261164a856001600160a01b031660009081526020819052604090205490565b6110a1565b6001600160a01b0383166116b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610534565b6001600160a01b0382166117155760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610534565b6001600160a01b0383166000908152602081905260409020548181101561178d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610534565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361109b565b600060208083528351808285015260005b8181101561182057858101830151858201604001528201611804565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461099057600080fd5b6000806040838503121561186957600080fd5b823561187481611841565b946020939093013593505050565b60008060006060848603121561189757600080fd5b83356118a281611841565b95602085013595506040909401359392505050565b6000806000606084860312156118cc57600080fd5b83356118d781611841565b925060208401356118e781611841565b929592945050506040919091013590565b60006020828403121561190a57600080fd5b5035919050565b60006020828403121561192357600080fd5b813561192e81611841565b9392505050565b6000806040838503121561194857600080fd5b823561195381611841565b9150602083013561196381611841565b809150509250929050565b600181811c9082168061198257607f821691505b6020821081036119a257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601290820152712cb7ba9030b932903737ba1027bbb732b91760711b604082015260600190565b6000602082840312156119e657600080fd5b815161192e81611841565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176104fb576104fb6119f1565b808201808211156104fb576104fb6119f1565b6020808252602b908201527f43616e6e6f74206f766572777269746520616e2061637469766520657869737460408201526a34b733903737ba34b1b29760a91b606082015260800190565b6020808252601d908201527f43616e6e6f742061737369676e20746f206e756c6c206164647265737300000060408201526060019056fea26469706673582212204233226fdc5d4eeab80575a0ae6ee7881a824b0100c94def4374c2fd37eb877764736f6c63430008130033

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

000000000000000000000000000000000000000000084595161401484a00000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000006bc693dbd2b197e3067832ac71ed0b6d38cfd85a00000000000000000000000044734875a9cfac1ea21a9721b37954d33a24139b0000000000000000000000002ec7d593763eed26defa231b4c566252e2667a6b0000000000000000000000001fa6d184abbfee00220d6acfcd3ec6dcd0373da20000000000000000000000000000000000000000000000000000000000000015436974697a656e20477265656e205665746572616e000000000000000000000000000000000000000000000000000000000000000000000000000000000000054347564554000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000000000000000000
Arg [1] : name (string): Citizen Green Veteran
Arg [2] : symbol (string): CGVET
Arg [3] : treasuryAddr (address): 0x6bC693DBd2b197e3067832Ac71eD0B6d38CFD85A
Arg [4] : buybackAddr (address): 0x44734875A9CFAc1ea21a9721B37954D33a24139B
Arg [5] : flipAddr (address): 0x2eC7d593763eed26DEFA231B4c566252E2667A6b
Arg [6] : positionsAddr (address): 0x1FA6D184abbfEe00220d6acFCD3Ec6dcD0373dA2

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000006bc693dbd2b197e3067832ac71ed0b6d38cfd85a
Arg [4] : 00000000000000000000000044734875a9cfac1ea21a9721b37954d33a24139b
Arg [5] : 0000000000000000000000002ec7d593763eed26defa231b4c566252e2667a6b
Arg [6] : 0000000000000000000000001fa6d184abbfee00220d6acfcd3ec6dcd0373da2
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [8] : 436974697a656e20477265656e205665746572616e0000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 4347564554000000000000000000000000000000000000000000000000000000


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.