ETH Price: $3,242.83 (+2.27%)
Gas: 2 Gwei

Token

Dip Catcher Algorithm (DCA)
 

Overview

Max Total Supply

907 DCA

Holders

602

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1 DCA

Value
$0.00
0xcB4d3814384fdDb0d1e88DB6b9EBebB3894b85A4
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:
DipCatcherAlgorithm

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 369 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-09
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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: contracts/DipCatcherMembership.sol


pragma solidity ^0.8.9;



/*
Access to the Dip Catcher Algorithm TradingView Script will be granted only to a limited number of Members or those that exercise a Buddy Pass.

How do I become a Member?
- Membership slots are for sale, first come first serve, starting with _ slots at .025 ETH each.
- Once all 200 slots are filled at the 0.025 ETH rate, the slot rate will increase by .005 ETH and another 200 will be available at the new rate. This goes on until 30 days elapses with no new minting, and then minting will be permanently closed.

What do Members get?
- Members gain access to the Private Dip Catcher Trading View algorithm
- Members get 1 Buddy Pass $DCA that they can either gift to a friend or sell on the market.

How do Members request access?
By signing a message off-chain containing proof of membership and submitting it to the provided dashboard.

How do Buddy Pass Holders request access?
By signing a message off-chain containing proof of burn of 1 whole $DCA token and submitting it to the provided dashboard.


*/
contract DipCatcherAlgorithm is ERC20, ReentrancyGuard{
    event Mint(address indexed minter, uint tranche,uint tranche_rank, uint amount);
    event Redeem(address indexed burner, uint amount);
    event Flush(address indexed flusher, uint amount);
    uint256 ACTIVATION_TIMESTAMP;
    uint256 public LAST_DAY_TO_MINT = 30; // Increments every time a minting takes place. If no mints take place over a 30 day period, no more will be available.
    address constant public flusher = 0x2848e510C6FA6424b623708F8478Db1047BF769C; // this is the address that the incoming ETH belongs to. Once you send ETH into the contract it no longer belongs to you. 
    mapping (address => bool) public IS_MEMBER; // Dip Catcher Algorithm will only be made available to people who's addresses are marked as being a member
    mapping (uint256 => uint256) public RATE_TRANCHE_COUNT; // counts how many mints are made at each rate tranche
    uint256 public SLOTS_PER_TRANCHE = 200;
    uint256 public STARTING_RATE  = 25 * (10**15); // 0.025 ETH 
    uint256 public TRANCHE_INCREMENT = 5 * (10**15); // After each rate tranche is filled up to the number of SLOTS_PER_TRANCHE, the rate increases by 0.005 ETH for the next tranche.
    uint256 public CURRENT_TRANCHE; // Smallest tranche not filled up yet.
    constructor() ERC20("Dip Catcher Algorithm", "DCA") ReentrancyGuard(){
        ACTIVATION_TIMESTAMP = block.timestamp;
    }
    
    /// Minting Function
    /// @dev The receive() function is an external, payable, and non-reentrant function for logging membership and minting the buddy pass token (DCA). It requires that the "Minting Phase" is active, and that the incoming value (msg.value) is greater than or equal to the current rate (getCurrentRate()). If the incoming value is greater than the current rate, the excess value is sent back to the sender. The function logs the mint in the current tranche and the sender's membership, and mints 1 DCA token. If the current tranche fills up, the function moves to the next tranche. The function sets the "last day to mint" to 2 days after the current day, and emits a "Mint" event with the sender's information and details of the transaction.
    receive() external payable nonReentrant {
        require(isActive(), "Minting Phase is over.");
        uint256 current_rate = getCurrentRate();
        require(msg.value >=current_rate, "Amount must be equal to the current rate.");
        uint256 this_tranche = CURRENT_TRANCHE; 
        RATE_TRANCHE_COUNT[CURRENT_TRANCHE] += 1; // log transaction in the current tranche
        IS_MEMBER[msg.sender] = true; // log membership
        mint(1 ether); // mints 1 DCA token ("ether" here is shorthand for 10**18, the number of decimals in DCA)
        if (RATE_TRANCHE_COUNT[CURRENT_TRANCHE] >= SLOTS_PER_TRANCHE) { // if the current tranche has filled up
            CURRENT_TRANCHE +=1; // close current tranche and move to the next tranche
        }
        LAST_DAY_TO_MINT = day()+30; // if 30 days goes by with no mints, the sale is complete and no more DCA can be minted.
        emit Mint(msg.sender,this_tranche, RATE_TRANCHE_COUNT[this_tranche], current_rate);
    }
    /// Redeem Buddy Pass
    /// @notice This is a function for redeeming a DCA token for access to the dip catcher algorithm. To redeem the buddy pass, the sender must burn at least 1 full DCA token. If the sender has already been logged as a member, they cannot redeem the buddy pass. The function then burns the specified amount of DCA tokens and logs the sender as a member. The function also emits an event indicating the redemption has taken place.
    function redeemBuddyPass(uint256 amount) public nonReentrant{
        require(amount >=(1 ether), "Must burn at least 1 full DCA token.");
        require(IS_MEMBER[msg.sender] == false, "This address is already saved as a member. To request access visit pro.dipcatcher.com");
        _burn(msg.sender, amount);
        IS_MEMBER[msg.sender] = true;
        emit Redeem(msg.sender,amount);
    }
    
    function flush() public nonReentrant {
        require(msg.sender==flusher, "Only Flusher can run this function.");
        uint256 amount = address(this).balance;
        (bool sent, bytes memory data) = payable(flusher).call{value: amount}(""); // send ETH to the flusher 
        require(sent, "Failed to send Ether");
        emit Flush(msg.sender, amount);
    }
    function flush_erc20(address token_contract_address) public  nonReentrant {
        require(msg.sender==flusher, "Only Flusher can run this function.");
        IERC20 tc = IERC20(token_contract_address);
        tc.transfer(flusher, tc.balanceOf(address(this)));

    }
    /// Get Current Rate
    /// @notice Calculates the current minting rate, in wei or 10^-18 ETH. 
    function getCurrentRate() public view returns (uint256) {return STARTING_RATE + (CURRENT_TRANCHE * TRANCHE_INCREMENT);}
    /// Is Active
    /// @notice Returns TRUE if minting is still ongoing.
    function isActive() public view returns (bool) {return day()<=LAST_DAY_TO_MINT;}
    function day() public view returns (uint256) {return _day();}
    function _day() internal view returns (uint256) {return (block.timestamp - ACTIVATION_TIMESTAMP) / 1 days;}
    function mint(uint256 amount) private {_mint(msg.sender, amount);}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"flusher","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Flush","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"tranche","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tranche_rank","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeem","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":[],"name":"CURRENT_TRANCHE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"IS_MEMBER","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAST_DAY_TO_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"RATE_TRANCHE_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOTS_PER_TRANCHE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANCHE_INCREMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"day","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flush","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_contract_address","type":"address"}],"name":"flush_erc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flusher","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemBuddyPass","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"},{"stateMutability":"payable","type":"receive"}]

6080604052601e60075560c8600a556658d15e17628000600b556611c37937e08000600c553480156200003157600080fd5b506040518060400160405280601581526020017f446970204361746368657220416c676f726974686d00000000000000000000008152506040518060400160405280600381526020016244434160e81b81525081600390816200009591906200015b565b506004620000a482826200015b565b50506001600555504260065562000227565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000e157607f821691505b6020821081036200010257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200015657600081815260208120601f850160051c81016020861015620001315750805b601f850160051c820191505b8181101562000152578281556001016200013d565b5050505b505050565b81516001600160401b03811115620001775762000177620000b6565b6200018f81620001888454620000cc565b8462000108565b602080601f831160018114620001c75760008415620001ae5750858301515b600019600386901b1c1916600185901b17855562000152565b600085815260208120601f198616915b82811015620001f857888601518255948401946001909101908401620001d7565b5085821015620002175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61155780620002376000396000f3fe60806040526004361061019a5760003560e01c806379b200dc116100e1578063c52ab8871161008a578063dd62ed3e11610064578063dd62ed3e14610622578063de2de2ce14610668578063ea13eac214610688578063f7fb07b01461069e57600080fd5b8063c52ab887146105bc578063cbaed14a146105d2578063db8f94ce1461060257600080fd5b806395d89b41116100bb57806395d89b4114610567578063a457c2d71461057c578063a9059cbb1461059c57600080fd5b806379b200dc146104fc5780637b76ac911461053c578063854edb3c1461055157600080fd5b806323b872dd116101435780633e237d651161011d5780633e237d65146104845780636b9f96ea146104b157806370a08231146104c657600080fd5b806323b872dd14610428578063313ce56714610448578063395093511461046457600080fd5b80631ebaf746116101745780631ebaf746146103e757806322f3e2d4146103fd57806323629fcf1461041257600080fd5b806306fdde031461036d578063095ea7b31461039857806318160ddd146103c857600080fd5b36610368576101a76106b3565b6101af61070c565b6102005760405162461bcd60e51b815260206004820152601660248201527f4d696e74696e67205068617365206973206f7665722e0000000000000000000060448201526064015b60405180910390fd5b600061020a610720565b90508034101561026e5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d75737420626520657175616c20746f20746865206375727260448201526832b73a103930ba329760b91b60648201526084016101f7565b600d54600081815260096020526040812080546001929061029090849061130f565b9091555050336000908152600860205260409020805460ff191660011790556102c0670de0b6b3a7640000610744565b600a54600d54600090815260096020526040902054106102f3576001600d60008282546102ed919061130f565b90915550505b6102fb610751565b61030690601e61130f565b6007556000818152600960209081526040918290205482518481529182015290810183905233907fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb9060600160405180910390a250506103666001600555565b005b600080fd5b34801561037957600080fd5b5061038261075b565b60405161038f9190611322565b60405180910390f35b3480156103a457600080fd5b506103b86103b336600461138c565b6107ed565b604051901515815260200161038f565b3480156103d457600080fd5b506002545b60405190815260200161038f565b3480156103f357600080fd5b506103d9600d5481565b34801561040957600080fd5b506103b861070c565b34801561041e57600080fd5b506103d9600c5481565b34801561043457600080fd5b506103b86104433660046113b6565b610807565b34801561045457600080fd5b506040516012815260200161038f565b34801561047057600080fd5b506103b861047f36600461138c565b61082b565b34801561049057600080fd5b506103d961049f3660046113f2565b60096020526000908152604090205481565b3480156104bd57600080fd5b5061036661086a565b3480156104d257600080fd5b506103d96104e136600461140b565b6001600160a01b031660009081526020819052604090205490565b34801561050857600080fd5b50610524732848e510c6fa6424b623708f8478db1047bf769c81565b6040516001600160a01b03909116815260200161038f565b34801561054857600080fd5b506103d9610751565b34801561055d57600080fd5b506103d9600b5481565b34801561057357600080fd5b506103826109d6565b34801561058857600080fd5b506103b861059736600461138c565b6109e5565b3480156105a857600080fd5b506103b86105b736600461138c565b610a77565b3480156105c857600080fd5b506103d960075481565b3480156105de57600080fd5b506103b86105ed36600461140b565b60086020526000908152604090205460ff1681565b34801561060e57600080fd5b5061036661061d36600461140b565b610a85565b34801561062e57600080fd5b506103d961063d36600461142d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067457600080fd5b506103666106833660046113f2565b610c17565b34801561069457600080fd5b506103d9600a5481565b3480156106aa57600080fd5b506103d9610720565b6002600554036107055760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016101f7565b6002600555565b6000600754610719610751565b1115905090565b6000600c54600d546107329190611460565b600b5461073f919061130f565b905090565b61074e3382610d97565b50565b600061073f610e56565b60606003805461076a90611477565b80601f016020809104026020016040519081016040528092919081815260200182805461079690611477565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b6000336107fb818585610e74565b60019150505b92915050565b600033610815858285610f99565b61082085858561102b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906107fb908290869061086590879061130f565b610e74565b6108726106b3565b33732848e510c6fa6424b623708f8478db1047bf769c146108e15760405162461bcd60e51b815260206004820152602360248201527f4f6e6c7920466c75736865722063616e2072756e20746869732066756e63746960448201526237b71760e91b60648201526084016101f7565b60405147906000908190732848e510c6fa6424b623708f8478db1047bf769c9084908381818185875af1925050503d806000811461093b576040519150601f19603f3d011682016040523d82523d6000602084013e610940565b606091505b5091509150816109925760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e6420457468657200000000000000000000000060448201526064016101f7565b60405183815233907f12b2a0ee977e74c33898f8be30fde7ae3a32ac7409a3666da55ce77e9bc32e879060200160405180910390a25050506109d46001600555565b565b60606004805461076a90611477565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610a6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016101f7565b6108208286868403610e74565b6000336107fb81858561102b565b610a8d6106b3565b33732848e510c6fa6424b623708f8478db1047bf769c14610afc5760405162461bcd60e51b815260206004820152602360248201527f4f6e6c7920466c75736865722063616e2072756e20746869732066756e63746960448201526237b71760e91b60648201526084016101f7565b6040516370a0823160e01b815230600482015281906001600160a01b0382169063a9059cbb90732848e510c6fa6424b623708f8478db1047bf769c9083906370a0823190602401602060405180830381865afa158015610b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8491906114b1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610be7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0b91906114ca565b505061074e6001600555565b610c1f6106b3565b670de0b6b3a7640000811015610c835760405162461bcd60e51b8152602060048201526024808201527f4d757374206275726e206174206c6561737420312066756c6c2044434120746f60448201526335b2b71760e11b60648201526084016101f7565b3360009081526008602052604090205460ff1615610d2f5760405162461bcd60e51b815260206004820152605560248201527f54686973206164647265737320697320616c726561647920736176656420617360448201527f2061206d656d6265722e20546f2072657175657374206163636573732076697360648201527f69742070726f2e646970636174636865722e636f6d0000000000000000000000608482015260a4016101f7565b610d3933826111cf565b3360008181526008602052604090819020805460ff19166001179055517f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a690610d859084815260200190565b60405180910390a261074e6001600555565b6001600160a01b038216610ded5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016101f7565b8060026000828254610dff919061130f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60006201518060065442610e6a91906114ec565b61073f91906114ff565b6001600160a01b038316610ed65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016101f7565b6001600160a01b038216610f375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016101f7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461102557818110156110185760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016101f7565b6110258484848403610e74565b50505050565b6001600160a01b03831661108f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016101f7565b6001600160a01b0382166110f15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016101f7565b6001600160a01b038316600090815260208190526040902054818110156111695760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016101f7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611025565b6001600160a01b03821661122f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016101f7565b6001600160a01b038216600090815260208190526040902054818110156112a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016101f7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610f8c565b634e487b7160e01b600052601160045260246000fd5b80820180821115610801576108016112f9565b600060208083528351808285015260005b8181101561134f57858101830151858201604001528201611333565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461138757600080fd5b919050565b6000806040838503121561139f57600080fd5b6113a883611370565b946020939093013593505050565b6000806000606084860312156113cb57600080fd5b6113d484611370565b92506113e260208501611370565b9150604084013590509250925092565b60006020828403121561140457600080fd5b5035919050565b60006020828403121561141d57600080fd5b61142682611370565b9392505050565b6000806040838503121561144057600080fd5b61144983611370565b915061145760208401611370565b90509250929050565b8082028115828204841417610801576108016112f9565b600181811c9082168061148b57607f821691505b6020821081036114ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156114c357600080fd5b5051919050565b6000602082840312156114dc57600080fd5b8151801515811461142657600080fd5b81810381811115610801576108016112f9565b60008261151c57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122005bb2bcd5f2b1f530106a9c56726ee76f780cfaa795115e96282bef218c2b0bf64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061019a5760003560e01c806379b200dc116100e1578063c52ab8871161008a578063dd62ed3e11610064578063dd62ed3e14610622578063de2de2ce14610668578063ea13eac214610688578063f7fb07b01461069e57600080fd5b8063c52ab887146105bc578063cbaed14a146105d2578063db8f94ce1461060257600080fd5b806395d89b41116100bb57806395d89b4114610567578063a457c2d71461057c578063a9059cbb1461059c57600080fd5b806379b200dc146104fc5780637b76ac911461053c578063854edb3c1461055157600080fd5b806323b872dd116101435780633e237d651161011d5780633e237d65146104845780636b9f96ea146104b157806370a08231146104c657600080fd5b806323b872dd14610428578063313ce56714610448578063395093511461046457600080fd5b80631ebaf746116101745780631ebaf746146103e757806322f3e2d4146103fd57806323629fcf1461041257600080fd5b806306fdde031461036d578063095ea7b31461039857806318160ddd146103c857600080fd5b36610368576101a76106b3565b6101af61070c565b6102005760405162461bcd60e51b815260206004820152601660248201527f4d696e74696e67205068617365206973206f7665722e0000000000000000000060448201526064015b60405180910390fd5b600061020a610720565b90508034101561026e5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d75737420626520657175616c20746f20746865206375727260448201526832b73a103930ba329760b91b60648201526084016101f7565b600d54600081815260096020526040812080546001929061029090849061130f565b9091555050336000908152600860205260409020805460ff191660011790556102c0670de0b6b3a7640000610744565b600a54600d54600090815260096020526040902054106102f3576001600d60008282546102ed919061130f565b90915550505b6102fb610751565b61030690601e61130f565b6007556000818152600960209081526040918290205482518481529182015290810183905233907fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb9060600160405180910390a250506103666001600555565b005b600080fd5b34801561037957600080fd5b5061038261075b565b60405161038f9190611322565b60405180910390f35b3480156103a457600080fd5b506103b86103b336600461138c565b6107ed565b604051901515815260200161038f565b3480156103d457600080fd5b506002545b60405190815260200161038f565b3480156103f357600080fd5b506103d9600d5481565b34801561040957600080fd5b506103b861070c565b34801561041e57600080fd5b506103d9600c5481565b34801561043457600080fd5b506103b86104433660046113b6565b610807565b34801561045457600080fd5b506040516012815260200161038f565b34801561047057600080fd5b506103b861047f36600461138c565b61082b565b34801561049057600080fd5b506103d961049f3660046113f2565b60096020526000908152604090205481565b3480156104bd57600080fd5b5061036661086a565b3480156104d257600080fd5b506103d96104e136600461140b565b6001600160a01b031660009081526020819052604090205490565b34801561050857600080fd5b50610524732848e510c6fa6424b623708f8478db1047bf769c81565b6040516001600160a01b03909116815260200161038f565b34801561054857600080fd5b506103d9610751565b34801561055d57600080fd5b506103d9600b5481565b34801561057357600080fd5b506103826109d6565b34801561058857600080fd5b506103b861059736600461138c565b6109e5565b3480156105a857600080fd5b506103b86105b736600461138c565b610a77565b3480156105c857600080fd5b506103d960075481565b3480156105de57600080fd5b506103b86105ed36600461140b565b60086020526000908152604090205460ff1681565b34801561060e57600080fd5b5061036661061d36600461140b565b610a85565b34801561062e57600080fd5b506103d961063d36600461142d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561067457600080fd5b506103666106833660046113f2565b610c17565b34801561069457600080fd5b506103d9600a5481565b3480156106aa57600080fd5b506103d9610720565b6002600554036107055760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016101f7565b6002600555565b6000600754610719610751565b1115905090565b6000600c54600d546107329190611460565b600b5461073f919061130f565b905090565b61074e3382610d97565b50565b600061073f610e56565b60606003805461076a90611477565b80601f016020809104026020016040519081016040528092919081815260200182805461079690611477565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b6000336107fb818585610e74565b60019150505b92915050565b600033610815858285610f99565b61082085858561102b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906107fb908290869061086590879061130f565b610e74565b6108726106b3565b33732848e510c6fa6424b623708f8478db1047bf769c146108e15760405162461bcd60e51b815260206004820152602360248201527f4f6e6c7920466c75736865722063616e2072756e20746869732066756e63746960448201526237b71760e91b60648201526084016101f7565b60405147906000908190732848e510c6fa6424b623708f8478db1047bf769c9084908381818185875af1925050503d806000811461093b576040519150601f19603f3d011682016040523d82523d6000602084013e610940565b606091505b5091509150816109925760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e6420457468657200000000000000000000000060448201526064016101f7565b60405183815233907f12b2a0ee977e74c33898f8be30fde7ae3a32ac7409a3666da55ce77e9bc32e879060200160405180910390a25050506109d46001600555565b565b60606004805461076a90611477565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610a6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016101f7565b6108208286868403610e74565b6000336107fb81858561102b565b610a8d6106b3565b33732848e510c6fa6424b623708f8478db1047bf769c14610afc5760405162461bcd60e51b815260206004820152602360248201527f4f6e6c7920466c75736865722063616e2072756e20746869732066756e63746960448201526237b71760e91b60648201526084016101f7565b6040516370a0823160e01b815230600482015281906001600160a01b0382169063a9059cbb90732848e510c6fa6424b623708f8478db1047bf769c9083906370a0823190602401602060405180830381865afa158015610b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8491906114b1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610be7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0b91906114ca565b505061074e6001600555565b610c1f6106b3565b670de0b6b3a7640000811015610c835760405162461bcd60e51b8152602060048201526024808201527f4d757374206275726e206174206c6561737420312066756c6c2044434120746f60448201526335b2b71760e11b60648201526084016101f7565b3360009081526008602052604090205460ff1615610d2f5760405162461bcd60e51b815260206004820152605560248201527f54686973206164647265737320697320616c726561647920736176656420617360448201527f2061206d656d6265722e20546f2072657175657374206163636573732076697360648201527f69742070726f2e646970636174636865722e636f6d0000000000000000000000608482015260a4016101f7565b610d3933826111cf565b3360008181526008602052604090819020805460ff19166001179055517f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a690610d859084815260200190565b60405180910390a261074e6001600555565b6001600160a01b038216610ded5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016101f7565b8060026000828254610dff919061130f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60006201518060065442610e6a91906114ec565b61073f91906114ff565b6001600160a01b038316610ed65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016101f7565b6001600160a01b038216610f375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016101f7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461102557818110156110185760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016101f7565b6110258484848403610e74565b50505050565b6001600160a01b03831661108f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016101f7565b6001600160a01b0382166110f15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016101f7565b6001600160a01b038316600090815260208190526040902054818110156111695760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016101f7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611025565b6001600160a01b03821661122f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016101f7565b6001600160a01b038216600090815260208190526040902054818110156112a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016101f7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610f8c565b634e487b7160e01b600052601160045260246000fd5b80820180821115610801576108016112f9565b600060208083528351808285015260005b8181101561134f57858101830151858201604001528201611333565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461138757600080fd5b919050565b6000806040838503121561139f57600080fd5b6113a883611370565b946020939093013593505050565b6000806000606084860312156113cb57600080fd5b6113d484611370565b92506113e260208501611370565b9150604084013590509250925092565b60006020828403121561140457600080fd5b5035919050565b60006020828403121561141d57600080fd5b61142682611370565b9392505050565b6000806040838503121561144057600080fd5b61144983611370565b915061145760208401611370565b90509250929050565b8082028115828204841417610801576108016112f9565b600181811c9082168061148b57607f821691505b6020821081036114ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156114c357600080fd5b5051919050565b6000602082840312156114dc57600080fd5b8151801515811461142657600080fd5b81810381811115610801576108016112f9565b60008261151c57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122005bb2bcd5f2b1f530106a9c56726ee76f780cfaa795115e96282bef218c2b0bf64736f6c63430008110033

Deployed Bytecode Sourcemap

21923:5381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2345:21;:19;:21::i;:::-;24195:10:::1;:8;:10::i;:::-;24187:45;;;::::0;-1:-1:-1;;;24187:45:0;;216:2:1;24187:45:0::1;::::0;::::1;198:21:1::0;255:2;235:18;;;228:30;294:24;274:18;;;267:52;336:18;;24187:45:0::1;;;;;;;;;24243:20;24266:16;:14;:16::i;:::-;24243:39;;24313:12;24301:9;:24;;24293:78;;;::::0;-1:-1:-1;;;24293:78:0;;567:2:1;24293:78:0::1;::::0;::::1;549:21:1::0;606:2;586:18;;;579:30;645:34;625:18;;;618:62;-1:-1:-1;;;696:18:1;;;689:39;745:19;;24293:78:0::1;365:405:1::0;24293:78:0::1;24405:15;::::0;24382:20:::1;24432:35:::0;;;:18:::1;:35;::::0;;;;:40;;24471:1:::1;::::0;24382:20;24432:40:::1;::::0;24471:1;;24432:40:::1;:::i;:::-;::::0;;;-1:-1:-1;;24535:10:0::1;24525:21;::::0;;;:9:::1;:21;::::0;;;;:28;;-1:-1:-1;;24525:28:0::1;24549:4;24525:28;::::0;;24582:13:::1;24587:7;24582:4;:13::i;:::-;24740:17;::::0;24720:15:::1;::::0;24701:35:::1;::::0;;;:18:::1;:35;::::0;;;;;:56:::1;24697:202;;24832:1;24814:15;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;24697:202:0::1;24928:5;:3;:5::i;:::-;:8;::::0;24934:2:::1;24928:8;:::i;:::-;24909:16;:27:::0;25071:32:::1;::::0;;;:18:::1;:32;::::0;;;;;;;;;25041:77;;1239:25:1;;;1280:18;;;1273:34;1323:18;;;1316:34;;;25046:10:0::1;::::0;25041:77:::1;::::0;1227:2:1;1212:18;25041:77:0::1;;;;;;;24176:950;;2389:20:::0;1783:1;2909:7;:22;2726:213;2389:20;21923:5381;;;;;9621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11972:201;;;;;;;;;;-1:-1:-1;11972:201:0;;;;;:::i;:::-;;:::i;:::-;;;2539:14:1;;2532:22;2514:41;;2502:2;2487:18;11972:201:0;2374:187:1;10741:108:0;;;;;;;;;;-1:-1:-1;10829:12:0;;10741:108;;;2712:25:1;;;2700:2;2685:18;10741:108:0;2566:177:1;23154:30:0;;;;;;;;;;;;;;;;26969:80;;;;;;;;;;;;;:::i;22970:47::-;;;;;;;;;;;;;;;;12753:295;;;;;;;;;;-1:-1:-1;12753:295:0;;;;;:::i;:::-;;:::i;10583:93::-;;;;;;;;;;-1:-1:-1;10583:93:0;;10666:2;3223:36:1;;3211:2;3196:18;10583:93:0;3081:184:1;13457:238:0;;;;;;;;;;-1:-1:-1;13457:238:0;;;;;:::i;:::-;;:::i;22743:54::-;;;;;;;;;;-1:-1:-1;22743:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;26003:373;;;;;;;;;;;;;:::i;10912:127::-;;;;;;;;;;-1:-1:-1;10912:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11013:18:0;10986:7;11013:18;;;;;;;;;;;;10912:127;22380:76;;;;;;;;;;;;22414:42;22380:76;;;;;-1:-1:-1;;;;;3810:55:1;;;3792:74;;3780:2;3765:18;22380:76:0;3646:226:1;27055:61:0;;;;;;;;;;;;;:::i;22904:45::-;;;;;;;;;;;;;;;;9840:104;;;;;;;;;;;;;:::i;14198:436::-;;;;;;;;;;-1:-1:-1;14198:436:0;;;;;:::i;:::-;;:::i;11245:193::-;;;;;;;;;;-1:-1:-1;11245:193:0;;;;;:::i;:::-;;:::i;22217:36::-;;;;;;;;;;;;;;;;22586:42;;;;;;;;;;-1:-1:-1;22586:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26382:275;;;;;;;;;;-1:-1:-1;26382:275:0;;;;;:::i;:::-;;:::i;11501:151::-;;;;;;;;;;-1:-1:-1;11501:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11617:18:0;;;11590:7;11617:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11501:151;25590:401;;;;;;;;;;-1:-1:-1;25590:401:0;;;;;:::i;:::-;;:::i;22859:38::-;;;;;;;;;;;;;;;;26766:119;;;;;;;;;;;;;:::i;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;-1:-1:-1;;;2551:63:0;;4344:2:1;2551:63:0;;;4326:21:1;4383:2;4363:18;;;4356:30;4422:33;4402:18;;;4395:61;4473:18;;2551:63:0;4142:355:1;2551:63:0;1827:1;2692:7;:18;2425:293::o;26969:80::-;27010:4;27031:16;;27024:5;:3;:5::i;:::-;:23;;27017:30;;26969:80;:::o;26766:119::-;26813:7;26865:17;;26847:15;;:35;;;;:::i;:::-;26830:13;;:53;;;;:::i;:::-;26823:60;;26766:119;:::o;27235:66::-;27274:25;27280:10;27292:6;27274:5;:25::i;:::-;27235:66;:::o;27055:61::-;27091:7;27108:6;:4;:6::i;9621:100::-;9675:13;9708:5;9701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9621:100;:::o;11972:201::-;12055:4;3711:10;12111:32;3711:10;12127:7;12136:6;12111:8;:32::i;:::-;12161:4;12154:11;;;11972:201;;;;;:::o;12753:295::-;12884:4;3711:10;12942:38;12958:4;3711:10;12973:6;12942:15;:38::i;:::-;12991:27;13001:4;13007:2;13011:6;12991:9;:27::i;:::-;-1:-1:-1;13036:4:0;;12753:295;-1:-1:-1;;;;12753:295:0:o;13457:238::-;3711:10;13545:4;11617:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11617:27:0;;;;;;;;;;13545:4;;3711:10;13601:64;;3711:10;;11617:27;;13626:38;;13654:10;;13626:38;:::i;:::-;13601:8;:64::i;26003:373::-;2345:21;:19;:21::i;:::-;26059:10:::1;22414:42;26059:19;26051:67;;;::::0;-1:-1:-1;;;26051:67:0;;5262:2:1;26051:67:0::1;::::0;::::1;5244:21:1::0;5301:2;5281:18;;;5274:30;5340:34;5320:18;;;5313:62;-1:-1:-1;;;5391:18:1;;;5384:33;5434:19;;26051:67:0::1;5060:399:1::0;26051:67:0::1;26211:40;::::0;26146:21:::1;::::0;26129:14:::1;::::0;;;22414:42:::1;::::0;26146:21;;26129:14;26211:40;26129:14;26211:40;26146:21;22414:42;26211:40:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26178:73;;;;26298:4;26290:37;;;::::0;-1:-1:-1;;;26290:37:0;;5876:2:1;26290:37:0::1;::::0;::::1;5858:21:1::0;5915:2;5895:18;;;5888:30;5954:22;5934:18;;;5927:50;5994:18;;26290:37:0::1;5674:344:1::0;26290:37:0::1;26343:25;::::0;2712::1;;;26349:10:0::1;::::0;26343:25:::1;::::0;2700:2:1;2685:18;26343:25:0::1;;;;;;;26040:336;;;2389:20:::0;1783:1;2909:7;:22;2726:213;2389:20;26003:373::o;9840:104::-;9896:13;9929:7;9922:14;;;;;:::i;14198:436::-;3711:10;14291:4;11617:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11617:27:0;;;;;;;;;;14291:4;;3711:10;14438:15;14418:16;:35;;14410:85;;;;-1:-1:-1;;;14410:85:0;;6225:2:1;14410:85:0;;;6207:21:1;6264:2;6244:18;;;6237:30;6303:34;6283:18;;;6276:62;-1:-1:-1;;;6354:18:1;;;6347:35;6399:19;;14410:85:0;6023:401:1;14410:85:0;14531:60;14540:5;14547:7;14575:15;14556:16;:34;14531:8;:60::i;11245:193::-;11324:4;3711:10;11380:28;3711:10;11397:2;11401:6;11380:9;:28::i;26382:275::-;2345:21;:19;:21::i;:::-;26475:10:::1;22414:42;26475:19;26467:67;;;::::0;-1:-1:-1;;;26467:67:0;;5262:2:1;26467:67:0::1;::::0;::::1;5244:21:1::0;5301:2;5281:18;;;5274:30;5340:34;5320:18;;;5313:62;-1:-1:-1;;;5391:18:1;;;5384:33;5434:19;;26467:67:0::1;5060:399:1::0;26467:67:0::1;26619:27;::::0;-1:-1:-1;;;26619:27:0;;26640:4:::1;26619:27;::::0;::::1;3792:74:1::0;26564:22:0;;-1:-1:-1;;;;;26598:11:0;::::1;::::0;::::1;::::0;22414:42:::1;::::0;26598:11;;26619:12:::1;::::0;3765:18:1;;26619:27:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26598:49;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6810:55:1;;;26598:49:0::1;::::0;::::1;6792:74:1::0;6882:18;;;6875:34;6765:18;;26598:49:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26456:201;2389:20:::0;1783:1;2909:7;:22;2726:213;25590:401;2345:21;:19;:21::i;:::-;25679:7:::1;25669:6;:18;;25661:67;;;::::0;-1:-1:-1;;;25661:67:0;;7404:2:1;25661:67:0::1;::::0;::::1;7386:21:1::0;7443:2;7423:18;;;7416:30;7482:34;7462:18;;;7455:62;-1:-1:-1;;;7533:18:1;;;7526:34;7577:19;;25661:67:0::1;7202:400:1::0;25661:67:0::1;25757:10;25747:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;:30;25739:128;;;::::0;-1:-1:-1;;;25739:128:0;;7809:2:1;25739:128:0::1;::::0;::::1;7791:21:1::0;7848:2;7828:18;;;7821:30;7887:34;7867:18;;;7860:62;7958:34;7938:18;;;7931:62;8030:23;8009:19;;;8002:52;8071:19;;25739:128:0::1;7607:489:1::0;25739:128:0::1;25878:25;25884:10;25896:6;25878:5;:25::i;:::-;25924:10;25914:21;::::0;;;:9:::1;:21;::::0;;;;;;:28;;-1:-1:-1;;25914:28:0::1;25938:4;25914:28;::::0;;25958:25;::::1;::::0;::::1;::::0;25976:6;2712:25:1;;2700:2;2685:18;;2566:177;25958:25:0::1;;;;;;;;2389:20:::0;1783:1;2909:7;:22;2726:213;16231:548;-1:-1:-1;;;;;16315:21:0;;16307:65;;;;-1:-1:-1;;;16307:65:0;;8303:2:1;16307:65:0;;;8285:21:1;8342:2;8322:18;;;8315:30;8381:33;8361:18;;;8354:61;8432:18;;16307:65:0;8101:355:1;16307:65:0;16463:6;16447:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16618:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16673:37;2712:25:1;;;16673:37:0;;2685:18:1;16673:37:0;;;;;;;16231:548;;:::o;27122:107::-;27161:7;27221:6;27197:20;;27179:15;:38;;;;:::i;:::-;27178:49;;;;:::i;18225:380::-;-1:-1:-1;;;;;18361:19:0;;18353:68;;;;-1:-1:-1;;;18353:68:0;;9018:2:1;18353:68:0;;;9000:21:1;9057:2;9037:18;;;9030:30;9096:34;9076:18;;;9069:62;-1:-1:-1;;;9147:18:1;;;9140:34;9191:19;;18353:68:0;8816:400:1;18353:68:0;-1:-1:-1;;;;;18440:21:0;;18432:68;;;;-1:-1:-1;;;18432:68:0;;9423:2:1;18432:68:0;;;9405:21:1;9462:2;9442:18;;;9435:30;9501:34;9481:18;;;9474:62;-1:-1:-1;;;9552:18:1;;;9545:32;9594:19;;18432:68:0;9221:398:1;18432:68:0;-1:-1:-1;;;;;18513:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18565:32;;2712:25:1;;;18565:32:0;;2685:18:1;18565:32:0;;;;;;;;18225:380;;;:::o;18896:453::-;-1:-1:-1;;;;;11617:18:0;;;19031:24;11617:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;19098:37:0;;19094:248;;19180:6;19160:16;:26;;19152:68;;;;-1:-1:-1;;;19152:68:0;;9826:2:1;19152:68:0;;;9808:21:1;9865:2;9845:18;;;9838:30;9904:31;9884:18;;;9877:59;9953:18;;19152:68:0;9624:353:1;19152:68:0;19264:51;19273:5;19280:7;19308:6;19289:16;:25;19264:8;:51::i;:::-;19020:329;18896:453;;;:::o;15104:840::-;-1:-1:-1;;;;;15235:18:0;;15227:68;;;;-1:-1:-1;;;15227:68:0;;10184:2:1;15227:68:0;;;10166:21:1;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:35;10358:19;;15227:68:0;9982:401:1;15227:68:0;-1:-1:-1;;;;;15314:16:0;;15306:64;;;;-1:-1:-1;;;15306:64:0;;10590:2:1;15306:64:0;;;10572:21:1;10629:2;10609:18;;;10602:30;10668:34;10648:18;;;10641:62;-1:-1:-1;;;10719:18:1;;;10712:33;10762:19;;15306:64:0;10388:399:1;15306:64:0;-1:-1:-1;;;;;15456:15:0;;15434:19;15456:15;;;;;;;;;;;15490:21;;;;15482:72;;;;-1:-1:-1;;;15482:72:0;;10994:2:1;15482:72:0;;;10976:21:1;11033:2;11013:18;;;11006:30;11072:34;11052:18;;;11045:62;-1:-1:-1;;;11123:18:1;;;11116:36;11169:19;;15482:72:0;10792:402:1;15482:72:0;-1:-1:-1;;;;;15590:15:0;;;:9;:15;;;;;;;;;;;15608:20;;;15590:38;;15808:13;;;;;;;;;;:23;;;;;;15860:26;;2712:25:1;;;15808:13:0;;15860:26;;2685:18:1;15860:26:0;;;;;;;15899:37;17112:675;;-1:-1:-1;;;;;17196:21:0;;17188:67;;;;-1:-1:-1;;;17188:67:0;;11401:2:1;17188:67:0;;;11383:21:1;11440:2;11420:18;;;11413:30;11479:34;11459:18;;;11452:62;-1:-1:-1;;;11530:18:1;;;11523:31;11571:19;;17188:67:0;11199:397:1;17188:67:0;-1:-1:-1;;;;;17355:18:0;;17330:22;17355:18;;;;;;;;;;;17392:24;;;;17384:71;;;;-1:-1:-1;;;17384:71:0;;11803:2:1;17384:71:0;;;11785:21:1;11842:2;11822:18;;;11815:30;11881:34;11861:18;;;11854:62;-1:-1:-1;;;11932:18:1;;;11925:32;11974:19;;17384:71:0;11601:398:1;17384:71:0;-1:-1:-1;;;;;17491:18:0;;:9;:18;;;;;;;;;;;17512:23;;;17491:44;;17630:12;:22;;;;;;;17681:37;2712:25:1;;;17491:9:0;;:18;17681:37;;2685:18:1;17681:37:0;2566:177:1;775:127;836:10;831:3;827:20;824:1;817:31;867:4;864:1;857:15;891:4;888:1;881:15;907:125;972:9;;;993:10;;;990:36;;;1006:18;;:::i;1361:548::-;1473:4;1502:2;1531;1520:9;1513:21;1563:6;1557:13;1606:6;1601:2;1590:9;1586:18;1579:34;1631:1;1641:140;1655:6;1652:1;1649:13;1641:140;;;1750:14;;;1746:23;;1740:30;1716:17;;;1735:2;1712:26;1705:66;1670:10;;1641:140;;;1645:3;1830:1;1825:2;1816:6;1805:9;1801:22;1797:31;1790:42;1900:2;1893;1889:7;1884:2;1876:6;1872:15;1868:29;1857:9;1853:45;1849:54;1841:62;;;;1361:548;;;;:::o;1914:196::-;1982:20;;-1:-1:-1;;;;;2031:54:1;;2021:65;;2011:93;;2100:1;2097;2090:12;2011:93;1914:196;;;:::o;2115:254::-;2183:6;2191;2244:2;2232:9;2223:7;2219:23;2215:32;2212:52;;;2260:1;2257;2250:12;2212:52;2283:29;2302:9;2283:29;:::i;:::-;2273:39;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2115:254:1:o;2748:328::-;2825:6;2833;2841;2894:2;2882:9;2873:7;2869:23;2865:32;2862:52;;;2910:1;2907;2900:12;2862:52;2933:29;2952:9;2933:29;:::i;:::-;2923:39;;2981:38;3015:2;3004:9;3000:18;2981:38;:::i;:::-;2971:48;;3066:2;3055:9;3051:18;3038:32;3028:42;;2748:328;;;;;:::o;3270:180::-;3329:6;3382:2;3370:9;3361:7;3357:23;3353:32;3350:52;;;3398:1;3395;3388:12;3350:52;-1:-1:-1;3421:23:1;;3270:180;-1:-1:-1;3270:180:1:o;3455:186::-;3514:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:52;;;3583:1;3580;3573:12;3535:52;3606:29;3625:9;3606:29;:::i;:::-;3596:39;3455:186;-1:-1:-1;;;3455:186:1:o;3877:260::-;3945:6;3953;4006:2;3994:9;3985:7;3981:23;3977:32;3974:52;;;4022:1;4019;4012:12;3974:52;4045:29;4064:9;4045:29;:::i;:::-;4035:39;;4093:38;4127:2;4116:9;4112:18;4093:38;:::i;:::-;4083:48;;3877:260;;;;;:::o;4502:168::-;4575:9;;;4606;;4623:15;;;4617:22;;4603:37;4593:71;;4644:18;;:::i;4675:380::-;4754:1;4750:12;;;;4797;;;4818:61;;4872:4;4864:6;4860:17;4850:27;;4818:61;4925:2;4917:6;4914:14;4894:18;4891:38;4888:161;;4971:10;4966:3;4962:20;4959:1;4952:31;5006:4;5003:1;4996:15;5034:4;5031:1;5024:15;4888:161;;4675:380;;;:::o;6429:184::-;6499:6;6552:2;6540:9;6531:7;6527:23;6523:32;6520:52;;;6568:1;6565;6558:12;6520:52;-1:-1:-1;6591:16:1;;6429:184;-1:-1:-1;6429:184:1:o;6920:277::-;6987:6;7040:2;7028:9;7019:7;7015:23;7011:32;7008:52;;;7056:1;7053;7046:12;7008:52;7088:9;7082:16;7141:5;7134:13;7127:21;7120:5;7117:32;7107:60;;7163:1;7160;7153:12;8461:128;8528:9;;;8549:11;;;8546:37;;;8563:18;;:::i;8594:217::-;8634:1;8660;8650:132;;8704:10;8699:3;8695:20;8692:1;8685:31;8739:4;8736:1;8729:15;8767:4;8764:1;8757:15;8650:132;-1:-1:-1;8796:9:1;;8594:217::o

Swarm Source

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