ETH Price: $3,102.40 (+1.17%)
Gas: 2 Gwei

Token

CisHetPepe (CISHETPEPE)
 

Overview

Max Total Supply

100.05629221916437328 CISHETPEPE

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: CISHETPEPE
Balance
69.213276290792440844 CISHETPEPE

Value
$0.00
0x98ade7dd760bccf70f3d07861bc27dfff7f41a79
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:
CisHetPepe

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-04
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0 ^0.8.13 ^0.8.20 ^0.8.4;

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// lib/solady/src/tokens/ERC20.sol

/// @notice Simple ERC20 + EIP-2612 implementation.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol)
///
/// @dev Note:
/// - The ERC20 standard allows minting and transferring to and from the zero address,
///   minting and transferring zero tokens, as well as self-approvals.
///   For performance, this implementation WILL NOT revert for such actions.
///   Please add any checks with overrides if desired.
/// - The `permit` function uses the ecrecover precompile (0x1).
///
/// If you are overriding:
/// - NEVER violate the ERC20 invariant:
///   the total sum of all balances must be equal to `totalSupply()`.
/// - Check that the overridden function is actually used in the function you want to
///   change the behavior of. Much of the code has been manually inlined for performance.
abstract contract ERC20 {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                       CUSTOM ERRORS                        */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The total supply has overflowed.
    error TotalSupplyOverflow();

    /// @dev The allowance has overflowed.
    error AllowanceOverflow();

    /// @dev The allowance has underflowed.
    error AllowanceUnderflow();

    /// @dev Insufficient balance.
    error InsufficientBalance();

    /// @dev Insufficient allowance.
    error InsufficientAllowance();

    /// @dev The permit is invalid.
    error InvalidPermit();

    /// @dev The permit has expired.
    error PermitExpired();

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                           EVENTS                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Emitted when `amount` tokens is transferred from `from` to `to`.
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @dev Emitted when `amount` tokens is approved by `owner` to be used by `spender`.
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /// @dev `keccak256(bytes("Transfer(address,address,uint256)"))`.
    uint256 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    /// @dev `keccak256(bytes("Approval(address,address,uint256)"))`.
    uint256 private constant _APPROVAL_EVENT_SIGNATURE =
        0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          STORAGE                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The storage slot for the total supply.
    uint256 private constant _TOTAL_SUPPLY_SLOT = 0x05345cdf77eb68f44c;

    /// @dev The balance slot of `owner` is given by:
    /// ```
    ///     mstore(0x0c, _BALANCE_SLOT_SEED)
    ///     mstore(0x00, owner)
    ///     let balanceSlot := keccak256(0x0c, 0x20)
    /// ```
    uint256 private constant _BALANCE_SLOT_SEED = 0x87a211a2;

    /// @dev The allowance slot of (`owner`, `spender`) is given by:
    /// ```
    ///     mstore(0x20, spender)
    ///     mstore(0x0c, _ALLOWANCE_SLOT_SEED)
    ///     mstore(0x00, owner)
    ///     let allowanceSlot := keccak256(0x0c, 0x34)
    /// ```
    uint256 private constant _ALLOWANCE_SLOT_SEED = 0x7f5e9f20;

    /// @dev The nonce slot of `owner` is given by:
    /// ```
    ///     mstore(0x0c, _NONCES_SLOT_SEED)
    ///     mstore(0x00, owner)
    ///     let nonceSlot := keccak256(0x0c, 0x20)
    /// ```
    uint256 private constant _NONCES_SLOT_SEED = 0x38377508;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         CONSTANTS                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev `(_NONCES_SLOT_SEED << 16) | 0x1901`.
    uint256 private constant _NONCES_SLOT_SEED_WITH_SIGNATURE_PREFIX = 0x383775081901;

    /// @dev `keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)")`.
    bytes32 private constant _DOMAIN_TYPEHASH =
        0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f;

    /// @dev `keccak256("1")`.
    bytes32 private constant _VERSION_HASH =
        0xc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6;

    /// @dev `keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)")`.
    bytes32 private constant _PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                       ERC20 METADATA                       */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Returns the name of the token.
    function name() public view virtual returns (string memory);

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

    /// @dev Returns the decimals places of the token.
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                           ERC20                            */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Returns the amount of tokens in existence.
    function totalSupply() public view virtual returns (uint256 result) {
        /// @solidity memory-safe-assembly
        assembly {
            result := sload(_TOTAL_SUPPLY_SLOT)
        }
    }

    /// @dev Returns the amount of tokens owned by `owner`.
    function balanceOf(address owner) public view virtual returns (uint256 result) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x0c, _BALANCE_SLOT_SEED)
            mstore(0x00, owner)
            result := sload(keccak256(0x0c, 0x20))
        }
    }

    /// @dev Returns the amount of tokens that `spender` can spend on behalf of `owner`.
    function allowance(address owner, address spender)
        public
        view
        virtual
        returns (uint256 result)
    {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x20, spender)
            mstore(0x0c, _ALLOWANCE_SLOT_SEED)
            mstore(0x00, owner)
            result := sload(keccak256(0x0c, 0x34))
        }
    }

    /// @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
    ///
    /// Emits a {Approval} event.
    function approve(address spender, uint256 amount) public virtual returns (bool) {
        /// @solidity memory-safe-assembly
        assembly {
            // Compute the allowance slot and store the amount.
            mstore(0x20, spender)
            mstore(0x0c, _ALLOWANCE_SLOT_SEED)
            mstore(0x00, caller())
            sstore(keccak256(0x0c, 0x34), amount)
            // Emit the {Approval} event.
            mstore(0x00, amount)
            log3(0x00, 0x20, _APPROVAL_EVENT_SIGNATURE, caller(), shr(96, mload(0x2c)))
        }
        return true;
    }

    /// @dev Transfer `amount` tokens from the caller to `to`.
    ///
    /// Requirements:
    /// - `from` must at least have `amount`.
    ///
    /// Emits a {Transfer} event.
    function transfer(address to, uint256 amount) public virtual returns (bool) {
        _beforeTokenTransfer(msg.sender, to, amount);
        /// @solidity memory-safe-assembly
        assembly {
            // Compute the balance slot and load its value.
            mstore(0x0c, _BALANCE_SLOT_SEED)
            mstore(0x00, caller())
            let fromBalanceSlot := keccak256(0x0c, 0x20)
            let fromBalance := sload(fromBalanceSlot)
            // Revert if insufficient balance.
            if gt(amount, fromBalance) {
                mstore(0x00, 0xf4d678b8) // `InsufficientBalance()`.
                revert(0x1c, 0x04)
            }
            // Subtract and store the updated balance.
            sstore(fromBalanceSlot, sub(fromBalance, amount))
            // Compute the balance slot of `to`.
            mstore(0x00, to)
            let toBalanceSlot := keccak256(0x0c, 0x20)
            // Add and store the updated balance of `to`.
            // Will not overflow because the sum of all user balances
            // cannot exceed the maximum uint256 value.
            sstore(toBalanceSlot, add(sload(toBalanceSlot), amount))
            // Emit the {Transfer} event.
            mstore(0x20, amount)
            log3(0x20, 0x20, _TRANSFER_EVENT_SIGNATURE, caller(), shr(96, mload(0x0c)))
        }
        _afterTokenTransfer(msg.sender, to, amount);
        return true;
    }

    /// @dev Transfers `amount` tokens from `from` to `to`.
    ///
    /// Note: Does not update the allowance if it is the maximum uint256 value.
    ///
    /// Requirements:
    /// - `from` must at least have `amount`.
    /// - The caller must have at least `amount` of allowance to transfer the tokens of `from`.
    ///
    /// Emits a {Transfer} event.
    function transferFrom(address from, address to, uint256 amount) public virtual returns (bool) {
        _beforeTokenTransfer(from, to, amount);
        /// @solidity memory-safe-assembly
        assembly {
            let from_ := shl(96, from)
            // Compute the allowance slot and load its value.
            mstore(0x20, caller())
            mstore(0x0c, or(from_, _ALLOWANCE_SLOT_SEED))
            let allowanceSlot := keccak256(0x0c, 0x34)
            let allowance_ := sload(allowanceSlot)
            // If the allowance is not the maximum uint256 value.
            if add(allowance_, 1) {
                // Revert if the amount to be transferred exceeds the allowance.
                if gt(amount, allowance_) {
                    mstore(0x00, 0x13be252b) // `InsufficientAllowance()`.
                    revert(0x1c, 0x04)
                }
                // Subtract and store the updated allowance.
                sstore(allowanceSlot, sub(allowance_, amount))
            }
            // Compute the balance slot and load its value.
            mstore(0x0c, or(from_, _BALANCE_SLOT_SEED))
            let fromBalanceSlot := keccak256(0x0c, 0x20)
            let fromBalance := sload(fromBalanceSlot)
            // Revert if insufficient balance.
            if gt(amount, fromBalance) {
                mstore(0x00, 0xf4d678b8) // `InsufficientBalance()`.
                revert(0x1c, 0x04)
            }
            // Subtract and store the updated balance.
            sstore(fromBalanceSlot, sub(fromBalance, amount))
            // Compute the balance slot of `to`.
            mstore(0x00, to)
            let toBalanceSlot := keccak256(0x0c, 0x20)
            // Add and store the updated balance of `to`.
            // Will not overflow because the sum of all user balances
            // cannot exceed the maximum uint256 value.
            sstore(toBalanceSlot, add(sload(toBalanceSlot), amount))
            // Emit the {Transfer} event.
            mstore(0x20, amount)
            log3(0x20, 0x20, _TRANSFER_EVENT_SIGNATURE, shr(96, from_), shr(96, mload(0x0c)))
        }
        _afterTokenTransfer(from, to, amount);
        return true;
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          EIP-2612                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev For more performance, override to return the constant value
    /// of `keccak256(bytes(name()))` if `name()` will never change.
    function _constantNameHash() internal view virtual returns (bytes32 result) {}

    /// @dev Returns the current nonce for `owner`.
    /// This value is used to compute the signature for EIP-2612 permit.
    function nonces(address owner) public view virtual returns (uint256 result) {
        /// @solidity memory-safe-assembly
        assembly {
            // Compute the nonce slot and load its value.
            mstore(0x0c, _NONCES_SLOT_SEED)
            mstore(0x00, owner)
            result := sload(keccak256(0x0c, 0x20))
        }
    }

    /// @dev Sets `value` as the allowance of `spender` over the tokens of `owner`,
    /// authorized by a signed approval by `owner`.
    ///
    /// Emits a {Approval} event.
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        bytes32 nameHash = _constantNameHash();
        //  We simply calculate it on-the-fly to allow for cases where the `name` may change.
        if (nameHash == bytes32(0)) nameHash = keccak256(bytes(name()));
        /// @solidity memory-safe-assembly
        assembly {
            // Revert if the block timestamp is greater than `deadline`.
            if gt(timestamp(), deadline) {
                mstore(0x00, 0x1a15a3cc) // `PermitExpired()`.
                revert(0x1c, 0x04)
            }
            let m := mload(0x40) // Grab the free memory pointer.
            // Clean the upper 96 bits.
            owner := shr(96, shl(96, owner))
            spender := shr(96, shl(96, spender))
            // Compute the nonce slot and load its value.
            mstore(0x0e, _NONCES_SLOT_SEED_WITH_SIGNATURE_PREFIX)
            mstore(0x00, owner)
            let nonceSlot := keccak256(0x0c, 0x20)
            let nonceValue := sload(nonceSlot)
            // Prepare the domain separator.
            mstore(m, _DOMAIN_TYPEHASH)
            mstore(add(m, 0x20), nameHash)
            mstore(add(m, 0x40), _VERSION_HASH)
            mstore(add(m, 0x60), chainid())
            mstore(add(m, 0x80), address())
            mstore(0x2e, keccak256(m, 0xa0))
            // Prepare the struct hash.
            mstore(m, _PERMIT_TYPEHASH)
            mstore(add(m, 0x20), owner)
            mstore(add(m, 0x40), spender)
            mstore(add(m, 0x60), value)
            mstore(add(m, 0x80), nonceValue)
            mstore(add(m, 0xa0), deadline)
            mstore(0x4e, keccak256(m, 0xc0))
            // Prepare the ecrecover calldata.
            mstore(0x00, keccak256(0x2c, 0x42))
            mstore(0x20, and(0xff, v))
            mstore(0x40, r)
            mstore(0x60, s)
            let t := staticcall(gas(), 1, 0, 0x80, 0x20, 0x20)
            // If the ecrecover fails, the returndatasize will be 0x00,
            // `owner` will be checked if it equals the hash at 0x00,
            // which evaluates to false (i.e. 0), and we will revert.
            // If the ecrecover succeeds, the returndatasize will be 0x20,
            // `owner` will be compared against the returned address at 0x20.
            if iszero(eq(mload(returndatasize()), owner)) {
                mstore(0x00, 0xddafbaef) // `InvalidPermit()`.
                revert(0x1c, 0x04)
            }
            // Increment and store the updated nonce.
            sstore(nonceSlot, add(nonceValue, t)) // `t` is 1 if ecrecover succeeds.
            // Compute the allowance slot and store the value.
            // The `owner` is already at slot 0x20.
            mstore(0x40, or(shl(160, _ALLOWANCE_SLOT_SEED), spender))
            sstore(keccak256(0x2c, 0x34), value)
            // Emit the {Approval} event.
            log3(add(m, 0x60), 0x20, _APPROVAL_EVENT_SIGNATURE, owner, spender)
            mstore(0x40, m) // Restore the free memory pointer.
            mstore(0x60, 0) // Restore the zero pointer.
        }
    }

    /// @dev Returns the EIP-712 domain separator for the EIP-2612 permit.
    function DOMAIN_SEPARATOR() public view virtual returns (bytes32 result) {
        bytes32 nameHash = _constantNameHash();
        //  We simply calculate it on-the-fly to allow for cases where the `name` may change.
        if (nameHash == bytes32(0)) nameHash = keccak256(bytes(name()));
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40) // Grab the free memory pointer.
            mstore(m, _DOMAIN_TYPEHASH)
            mstore(add(m, 0x20), nameHash)
            mstore(add(m, 0x40), _VERSION_HASH)
            mstore(add(m, 0x60), chainid())
            mstore(add(m, 0x80), address())
            result := keccak256(m, 0xa0)
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                  INTERNAL MINT FUNCTIONS                   */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Mints `amount` tokens to `to`, increasing the total supply.
    ///
    /// Emits a {Transfer} event.
    function _mint(address to, uint256 amount) internal virtual {
        _beforeTokenTransfer(address(0), to, amount);
        /// @solidity memory-safe-assembly
        assembly {
            let totalSupplyBefore := sload(_TOTAL_SUPPLY_SLOT)
            let totalSupplyAfter := add(totalSupplyBefore, amount)
            // Revert if the total supply overflows.
            if lt(totalSupplyAfter, totalSupplyBefore) {
                mstore(0x00, 0xe5cfe957) // `TotalSupplyOverflow()`.
                revert(0x1c, 0x04)
            }
            // Store the updated total supply.
            sstore(_TOTAL_SUPPLY_SLOT, totalSupplyAfter)
            // Compute the balance slot and load its value.
            mstore(0x0c, _BALANCE_SLOT_SEED)
            mstore(0x00, to)
            let toBalanceSlot := keccak256(0x0c, 0x20)
            // Add and store the updated balance.
            sstore(toBalanceSlot, add(sload(toBalanceSlot), amount))
            // Emit the {Transfer} event.
            mstore(0x20, amount)
            log3(0x20, 0x20, _TRANSFER_EVENT_SIGNATURE, 0, shr(96, mload(0x0c)))
        }
        _afterTokenTransfer(address(0), to, amount);
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                  INTERNAL BURN FUNCTIONS                   */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Burns `amount` tokens from `from`, reducing the total supply.
    ///
    /// Emits a {Transfer} event.
    function _burn(address from, uint256 amount) internal virtual {
        _beforeTokenTransfer(from, address(0), amount);
        /// @solidity memory-safe-assembly
        assembly {
            // Compute the balance slot and load its value.
            mstore(0x0c, _BALANCE_SLOT_SEED)
            mstore(0x00, from)
            let fromBalanceSlot := keccak256(0x0c, 0x20)
            let fromBalance := sload(fromBalanceSlot)
            // Revert if insufficient balance.
            if gt(amount, fromBalance) {
                mstore(0x00, 0xf4d678b8) // `InsufficientBalance()`.
                revert(0x1c, 0x04)
            }
            // Subtract and store the updated balance.
            sstore(fromBalanceSlot, sub(fromBalance, amount))
            // Subtract and store the updated total supply.
            sstore(_TOTAL_SUPPLY_SLOT, sub(sload(_TOTAL_SUPPLY_SLOT), amount))
            // Emit the {Transfer} event.
            mstore(0x00, amount)
            log3(0x00, 0x20, _TRANSFER_EVENT_SIGNATURE, shr(96, shl(96, from)), 0)
        }
        _afterTokenTransfer(from, address(0), amount);
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                INTERNAL TRANSFER FUNCTIONS                 */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Moves `amount` of tokens from `from` to `to`.
    function _transfer(address from, address to, uint256 amount) internal virtual {
        _beforeTokenTransfer(from, to, amount);
        /// @solidity memory-safe-assembly
        assembly {
            let from_ := shl(96, from)
            // Compute the balance slot and load its value.
            mstore(0x0c, or(from_, _BALANCE_SLOT_SEED))
            let fromBalanceSlot := keccak256(0x0c, 0x20)
            let fromBalance := sload(fromBalanceSlot)
            // Revert if insufficient balance.
            if gt(amount, fromBalance) {
                mstore(0x00, 0xf4d678b8) // `InsufficientBalance()`.
                revert(0x1c, 0x04)
            }
            // Subtract and store the updated balance.
            sstore(fromBalanceSlot, sub(fromBalance, amount))
            // Compute the balance slot of `to`.
            mstore(0x00, to)
            let toBalanceSlot := keccak256(0x0c, 0x20)
            // Add and store the updated balance of `to`.
            // Will not overflow because the sum of all user balances
            // cannot exceed the maximum uint256 value.
            sstore(toBalanceSlot, add(sload(toBalanceSlot), amount))
            // Emit the {Transfer} event.
            mstore(0x20, amount)
            log3(0x20, 0x20, _TRANSFER_EVENT_SIGNATURE, shr(96, from_), shr(96, mload(0x0c)))
        }
        _afterTokenTransfer(from, to, amount);
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                INTERNAL ALLOWANCE FUNCTIONS                */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Updates the allowance of `owner` for `spender` based on spent `amount`.
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // Compute the allowance slot and load its value.
            mstore(0x20, spender)
            mstore(0x0c, _ALLOWANCE_SLOT_SEED)
            mstore(0x00, owner)
            let allowanceSlot := keccak256(0x0c, 0x34)
            let allowance_ := sload(allowanceSlot)
            // If the allowance is not the maximum uint256 value.
            if add(allowance_, 1) {
                // Revert if the amount to be transferred exceeds the allowance.
                if gt(amount, allowance_) {
                    mstore(0x00, 0x13be252b) // `InsufficientAllowance()`.
                    revert(0x1c, 0x04)
                }
                // Subtract and store the updated allowance.
                sstore(allowanceSlot, sub(allowance_, amount))
            }
        }
    }

    /// @dev Sets `amount` as the allowance of `spender` over the tokens of `owner`.
    ///
    /// Emits a {Approval} event.
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let owner_ := shl(96, owner)
            // Compute the allowance slot and store the amount.
            mstore(0x20, spender)
            mstore(0x0c, or(owner_, _ALLOWANCE_SLOT_SEED))
            sstore(keccak256(0x0c, 0x34), amount)
            // Emit the {Approval} event.
            mstore(0x00, amount)
            log3(0x00, 0x20, _APPROVAL_EVENT_SIGNATURE, shr(96, owner_), shr(96, mload(0x2c)))
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                     HOOKS TO OVERRIDE                      */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Hook that is called before any transfer of tokens.
    /// This includes minting and burning.
    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.
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// src/IUniswapV2Factory.sol

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// src/IUniswapV2Pair.sol

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// src/IWETH.sol

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

// src/ThingERC20.sol

contract ThingERC20 is ERC20 {

    string _name;
    string _symbol;
    address deployer;
    
    constructor(string memory name_, string memory symbol_, uint256 amount) {
        deployer = msg.sender;
        _name = name_;
        _symbol = symbol_;
        _mint(deployer, amount);
    }

    function name() public view override returns(string memory) {
        return _name;
    }

    function symbol() public view override returns(string memory) {
        return _symbol;
    }
}

// src/UniswapV2Library.sol

library UniswapV2Library {

    struct Pair {
        IUniswapV2Pair pair; 
        address tokenIn;
        address tokenOut;
    }

    function getPairFor(address factory, address tokenIn, address tokenOut) internal pure returns(Pair memory) {
        return Pair({pair: IUniswapV2Pair(pairFor(factory, tokenIn, tokenOut)), tokenIn: tokenIn, tokenOut: tokenOut}); 
    }

    function pairFor(
        address factory,
        address tokenA,
        address tokenB
    ) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(
            uint160(uint256(
                keccak256(
                    abi.encodePacked(
                        hex"ff",
                        factory,
                        keccak256(abi.encodePacked(token0, token1)),
                        hex"96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" // init code hash
                    )
                )
            ))
        );
    }

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB)
        internal
        pure
        returns (address token0, address token1)
    {
        require(tokenA != tokenB, "UniswapV2Library: IDENTICAL_ADDRESSES");
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), "UniswapV2Library: ZERO_ADDRESS");
    }

    // fetches and sorts the reserves for a given pair
    function getReservesForPair(
        IUniswapV2Pair pair,
        address tokenA,
        address tokenB
    ) internal view returns (uint256 reserveA, uint256 reserveB) {
        (address token0, ) = sortTokens(tokenA, tokenB);
        (uint256 reserve0, uint256 reserve1, ) = pair.getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) internal pure returns (uint256 amountOut) {
        require(amountIn > 0, "UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT");
        require(reserveIn > 0 && reserveOut > 0, "UniswapV2Library: INSUFFICIENT_LIQUIDITY");
        uint256 amountInWithFee = amountIn * 997;
        uint256 numerator = amountInWithFee * reserveOut;
        uint256 denominator = reserveIn * 1000 + amountInWithFee;
        amountOut = numerator / denominator;
    }
}

// src/CisHetPepe.sol

contract CisHetPepe is ThingERC20 {

    uint256 public constant MAX_SUPPLY = 1_000 ether;
    uint256 public constant DEV_LIQUIDITY_CLIFF = 7 days; // of heaven

    uint256 public initialLiquidity;
    uint256 public timeThatLiquidityAdded;

    uint256 private constant ONE_BASIS = 100_00;

    IUniswapV2Pair public immutable liquidity;

    IWETH public constant weth = IWETH(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

    IUniswapV2Factory public constant uniV2Factory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    constructor() ThingERC20("CisHetPepe", "CISHETPEPE", 0) {
        liquidity = IUniswapV2Pair(uniV2Factory.createPair(address(this), address(weth)));
    }    

    function openTrading() external payable {
        require(msg.sender == deployer, "not deployer.");
        require(totalSupply() == 0, "only do once.");

        weth.deposit{value: msg.value}();
        weth.transfer(address(liquidity), msg.value);

        uint256 initialMarketOffering = MAX_SUPPLY/10;

        _mint(address(liquidity), initialMarketOffering);

        liquidity.mint(address(this)); 
        initialLiquidity = liquidity.balanceOf(address(this));
        timeThatLiquidityAdded = block.timestamp;
    }

    function discountedSwap(address to, uint256 expected, uint256 slippage) external payable {
        uint256 amount = address(this).balance;
        if (amount > 0) {
            weth.deposit{value: amount}();
        }
        amount = IERC20(address(weth)).balanceOf(address(this));
        
        (uint256 reserveIn, uint256 reserveOut) = UniswapV2Library.getReservesForPair(liquidity, address(weth), address(this));

        uint256 ideal = _getIdealAmountOut(amount, reserveIn, reserveOut);

        require(ideal >= expected * (ONE_BASIS - slippage) / ONE_BASIS, "too much slippage.");

        weth.transfer(address(liquidity), amount);
        uint256 amountOut = UniswapV2Library.getAmountOut(amount, reserveIn, reserveOut); 

        (uint256 amount0Out, uint256 amount1Out) = (uint256(uint160(address(this))) < uint256(uint160(address(weth)))) ? (amountOut, uint256(0)) : (uint256(0), amountOut);
        
        liquidity.swap(amount0Out, amount1Out, to, new bytes(0));
        _mint(to, ideal - amountOut);
        require(totalSupply() <= MAX_SUPPLY, "no more discounted swaps.");
    }

    function standardSwap(address to, uint256 expected, uint256 slippage) external payable {
        uint256 amount = address(this).balance;
        if (amount > 0) {
            weth.deposit{value: amount}();
        }
        amount = IERC20(address(weth)).balanceOf(address(this));
        
        (uint256 reserveIn, uint256 reserveOut) = UniswapV2Library.getReservesForPair(liquidity, address(weth), address(this));

        uint256 amountOut = UniswapV2Library.getAmountOut(amount, reserveIn, reserveOut); 
        require(amountOut >= expected * (ONE_BASIS - slippage) / ONE_BASIS, "too much slippage.");
        weth.transfer(address(liquidity), amount);
        (uint256 amount0Out, uint256 amount1Out) = (uint256(uint160(address(this))) < uint256(uint160(address(weth)))) ? (amountOut, uint256(0)) : (uint256(0), amountOut);
        liquidity.swap(amount0Out, amount1Out, to, new bytes(0));
    }

    function removeSomeLiquidity(address to, uint256 amount) external {
        require(msg.sender == deployer, "not deployer.");

        require(block.timestamp > timeThatLiquidityAdded + DEV_LIQUIDITY_CLIFF, "dev can't be paid until after buffer.");

        uint256 span = _min(block.timestamp - (timeThatLiquidityAdded + DEV_LIQUIDITY_CLIFF), DEV_LIQUIDITY_CLIFF);
        uint256 availableLiquidity = initialLiquidity * span / DEV_LIQUIDITY_CLIFF;
        uint256 balance = liquidity.balanceOf(address(this));
        amount = _min(amount, _min(balance, availableLiquidity));
        if (amount > 0) {
            liquidity.transfer(to, amount);
        }
    }

    // view functions

    // should be called callStatic!!!
    function getDiscountedAmountOut(uint256 amountIn) external view returns(uint256 ideal) {
        (uint256 reserveIn, uint256 reserveOut) = UniswapV2Library.getReservesForPair(liquidity, address(weth), address(this));
        return _getIdealAmountOut(amountIn, reserveIn, reserveOut);
    }

    // should be called callStatic!!!
    function getStandardAmountOut(uint256 amountIn) external view returns(uint256 expected) {
        (uint256 reserveIn, uint256 reserveOut) = UniswapV2Library.getReservesForPair(liquidity, address(weth), address(this));
        return UniswapV2Library.getAmountOut(amountIn, reserveIn, reserveOut); 
    }

    // internal/private

    function _getIdealAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) private pure returns (uint256 amountOut) {
        require(amountIn > 0, "UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT");
        require(reserveIn > 0 && reserveOut > 0, "UniswapV2Library: INSUFFICIENT_LIQUIDITY");
        uint256 numerator = amountIn * reserveOut;
        uint256 denominator = reserveIn + amountIn;
        amountOut = numerator / denominator;
    }

    function _min(uint256 a, uint256 b) private pure returns(uint256) {
        if (a < b) return a; 
        return b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowanceOverflow","type":"error"},{"inputs":[],"name":"AllowanceUnderflow","type":"error"},{"inputs":[],"name":"InsufficientAllowance","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidPermit","type":"error"},{"inputs":[],"name":"PermitExpired","type":"error"},{"inputs":[],"name":"TotalSupplyOverflow","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEV_LIQUIDITY_CLIFF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"result","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"result","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"}],"name":"discountedSwap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"getDiscountedAmountOut","outputs":[{"internalType":"uint256","name":"ideal","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"getStandardAmountOut","outputs":[{"internalType":"uint256","name":"expected","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeSomeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"}],"name":"standardSwap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeThatLiquidityAdded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":"uniV2Factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b50604080518082018252600a808252694369734865745065706560b01b6020808401919091528351808501909452908352694349534845545045504560b01b90830152600280546001600160a01b031916331790559060008062000076848262000270565b50600162000085838262000270565b506002546200009e906001600160a01b03168262000145565b50506040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f915063c9c65396906044016020604051808303816000875af11580156200010d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013391906200033c565b6001600160a01b03166080526200036e565b6805345cdf77eb68f44c54818101818110156200016a5763e5cfe9576000526004601cfd5b806805345cdf77eb68f44c5550506387a211a2600c52816000526020600c208181540181555080602052600c5160601c60007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f557607f821691505b6020821081036200021657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c5576000816000526020600020601f850160051c81016020861015620002475750805b601f850160051c820191505b81811015620002685782815560010162000253565b505050505050565b81516001600160401b038111156200028c576200028c620001ca565b620002a4816200029d8454620001e0565b846200021c565b602080601f831160018114620002dc5760008415620002c35750858301515b600019600386901b1c1916600185901b17855562000268565b600085815260208120601f198616915b828110156200030d57888601518255948401946001909101908401620002ec565b50858210156200032c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200034f57600080fd5b81516001600160a01b03811681146200036757600080fd5b9392505050565b608051611cf1620003ec600039600081816101ff015281816105a501528181610735015281816108590152818161092101528181610a0701528181610c2001528181610cce01528181610ed601528181610f7f01528181610fb9015281816110440152818161132b015281816113ee01526114c50152611cf16000f3fe6080604052600436106101665760003560e01c806357348910116100d157806395d89b411161008a578063c9567bf911610064578063c9567bf914610444578063d505accf1461044c578063dd62ed3e1461046c578063fff79bef146104a257600080fd5b806395d89b41146103f95780639dc2b4561461040e578063a9059cbb1461042457600080fd5b806357348910146103275780636249210c1461034757806370a082311461035c5780637ecebe001461038f5780637f6002af146103c257806388f89fb2146103e257600080fd5b8063313ce56711610123578063313ce5671461027957806332cb6b0c146102955780633644e515146102b25780633da04b87146102c75780633fc8cef3146102ef57806340702adc1461031157600080fd5b806306fdde031461016b578063095ea7b31461019657806318160ddd146101c65780631a686502146101ed578063234e26fb1461023957806323b872dd14610259575b600080fd5b34801561017757600080fd5b506101806104b5565b60405161018d91906118e7565b60405180910390f35b3480156101a257600080fd5b506101b66101b136600461191d565b610547565b604051901515815260200161018d565b3480156101d257600080fd5b506805345cdf77eb68f44c545b60405190815260200161018d565b3480156101f957600080fd5b506102217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161018d565b34801561024557600080fd5b506101df610254366004611947565b61059b565b34801561026557600080fd5b506101b6610274366004611960565b6105f0565b34801561028557600080fd5b506040516012815260200161018d565b3480156102a157600080fd5b506101df683635c9adc5dea0000081565b3480156102be57600080fd5b506101df6106ae565b3480156102d357600080fd5b50610221735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156102fb57600080fd5b50610221600080516020611c9c83398151915281565b34801561031d57600080fd5b506101df60035481565b34801561033357600080fd5b506101df610342366004611947565b61072b565b61035a61035536600461199c565b610778565b005b34801561036857600080fd5b506101df6103773660046119cf565b6387a211a2600c908152600091909152602090205490565b34801561039b57600080fd5b506101df6103aa3660046119cf565b6338377508600c908152600091909152602090205490565b3480156103ce57600080fd5b5061035a6103dd36600461191d565b610afd565b3480156103ee57600080fd5b506101df62093a8081565b34801561040557600080fd5b50610180610d44565b34801561041a57600080fd5b506101df60045481565b34801561043057600080fd5b506101b661043f36600461191d565b610d53565b61035a610dce565b34801561045857600080fd5b5061035a6104673660046119ea565b6110c1565b34801561047857600080fd5b506101df610487366004611a5d565b602052637f5e9f20600c908152600091909152603490205490565b61035a6104b036600461199c565b61124a565b6060600080546104c490611a90565b80601f01602080910402602001604051908101604052809291908181526020018280546104f090611a90565b801561053d5780601f106105125761010080835404028352916020019161053d565b820191906000526020600020905b81548152906001019060200180831161052057829003601f168201915b5050505050905090565b600082602052637f5e9f20600c5233600052816034600c205581600052602c5160601c337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206000a35060015b92915050565b60008060006105d97f0000000000000000000000000000000000000000000000000000000000000000600080516020611c9c8339815191523061153c565b915091506105e88483836115fc565b949350505050565b60008360601b33602052637f5e9f208117600c526034600c2080546001810115610630578085111561062a576313be252b6000526004601cfd5b84810382555b50506387a211a28117600c526020600c208054808511156106595763f4d678b86000526004601cfd5b84810382555050836000526020600c208381540181555082602052600c5160601c8160601c7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3505060019392505050565b6000806106b96104b5565b8051906020012090506040517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81528160208201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6604082015246606082015230608082015260a081209250505090565b60008060006107697f0000000000000000000000000000000000000000000000000000000000000000600080516020611c9c8339815191523061153c565b915091506105e8848383611679565b4780156107e257600080516020611c9c8339815191526001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156107c857600080fd5b505af11580156107dc573d6000803e3d6000fd5b50505050505b6040516370a0823160e01b8152306004820152600080516020611c9c833981519152906370a0823190602401602060405180830381865afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f9190611ac4565b905060008061088d7f0000000000000000000000000000000000000000000000000000000000000000600080516020611c9c8339815191523061153c565b91509150600061089e8484846115fc565b90506127106108ad8682611af3565b6108b79088611b06565b6108c19190611b1d565b81101561090a5760405162461bcd60e51b81526020600482015260126024820152713a37b79036bab1b41039b634b83830b3b29760711b60448201526064015b60405180910390fd5b60405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260248101859052600080516020611c9c8339815191529063a9059cbb906044016020604051808303816000875af1158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190611b3f565b5060006109b7858585611679565b9050600080600080516020611c9c83398151915230106109d9576000836109dd565b8260005b6040805160008152602081019182905263022c0d9f60e01b90915291935091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063022c0d9f90610a4190859085908f9060248101611b61565b600060405180830381600087803b158015610a5b57600080fd5b505af1158015610a6f573d6000803e3d6000fd5b50505050610a888a8486610a839190611af3565b611714565b683635c9adc5dea00000610aa36805345cdf77eb68f44c5490565b1115610af15760405162461bcd60e51b815260206004820152601960248201527f6e6f206d6f726520646973636f756e7465642073776170732e000000000000006044820152606401610901565b50505050505050505050565b6002546001600160a01b03163314610b475760405162461bcd60e51b815260206004820152600d60248201526c3737ba103232b83637bcb2b91760991b6044820152606401610901565b62093a80600454610b589190611b8e565b4211610bb45760405162461bcd60e51b815260206004820152602560248201527f6465762063616e2774206265207061696420756e74696c206166746572206275604482015264333332b91760d91b6064820152608401610901565b6000610bdd62093a80600454610bca9190611b8e565b610bd49042611af3565b62093a80611793565b9050600062093a8082600354610bf39190611b06565b610bfd9190611b1d565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190611ac4565b9050610ca084610c9b8385611793565b611793565b93508315610d3d5760405163a9059cbb60e01b81526001600160a01b038681166004830152602482018690527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906044016020604051808303816000875af1158015610d17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3b9190611b3f565b505b5050505050565b6060600180546104c490611a90565b60006387a211a2600c52336000526020600c20805480841115610d7e5763f4d678b86000526004601cfd5b83810382555050826000526020600c208281540181555081602052600c5160601c337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a350600192915050565b6002546001600160a01b03163314610e185760405162461bcd60e51b815260206004820152600d60248201526c3737ba103232b83637bcb2b91760991b6044820152606401610901565b6805345cdf77eb68f44c5415610e605760405162461bcd60e51b815260206004820152600d60248201526c37b7363c9032379037b731b29760991b6044820152606401610901565b600080516020611c9c8339815191526001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610ea957600080fd5b505af1158015610ebd573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152346024820152600080516020611c9c833981519152935063a9059cbb925060440190506020604051808303816000875af1158015610f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f619190611b3f565b506000610f78600a683635c9adc5dea00000611b1d565b9050610fa47f000000000000000000000000000000000000000000000000000000000000000082611714565b6040516335313c2160e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636a627842906024016020604051808303816000875af115801561100a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102e9190611ac4565b506040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190611ac4565b6003555042600455565b60006110cb6104b5565b805190602001209050844211156110ea57631a15a3cc6000526004601cfd5b6040518860601b60601c98508760601b60601c975065383775081901600e52886000526020600c2080547f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f83528360208401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6604084015246606084015230608084015260a08320602e527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c983528a60208401528960408401528860608401528060808401528760a084015260c08320604e526042602c206000528660ff1660205285604052846060526020806080600060015afa8b3d51146111f65763ddafbaef6000526004601cfd5b0190556303faf4f960a51b88176040526034602c2087905587897f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925602060608501a360405250506000606052505050505050565b4780156112b457600080516020611c9c8339815191526001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561129a57600080fd5b505af11580156112ae573d6000803e3d6000fd5b50505050505b6040516370a0823160e01b8152306004820152600080516020611c9c833981519152906370a0823190602401602060405180830381865afa1580156112fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113219190611ac4565b905060008061135f7f0000000000000000000000000000000000000000000000000000000000000000600080516020611c9c8339815191523061153c565b915091506000611370848484611679565b905061271061137f8682611af3565b6113899088611b06565b6113939190611b1d565b8110156113d75760405162461bcd60e51b81526020600482015260126024820152713a37b79036bab1b41039b634b83830b3b29760711b6044820152606401610901565b60405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260248101859052600080516020611c9c8339815191529063a9059cbb906044016020604051808303816000875af1158015611452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114769190611b3f565b50600080600080516020611c9c83398151915230106114975760008361149b565b8260005b6040805160008152602081019182905263022c0d9f60e01b90915291935091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063022c0d9f906114ff90859085908e9060248101611b61565b600060405180830381600087803b15801561151957600080fd5b505af115801561152d573d6000803e3d6000fd5b50505050505050505050505050565b600080600061154b85856117aa565b509050600080876001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561158f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b39190611bb8565b506001600160701b031691506001600160701b03169150826001600160a01b0316876001600160a01b0316146115ea5780826115ed565b81815b90999098509650505050505050565b600080841161161d5760405162461bcd60e51b815260040161090190611c08565b60008311801561162d5750600082115b6116495760405162461bcd60e51b815260040161090190611c53565b60006116558386611b06565b905060006116638686611b8e565b905061166f8183611b1d565b9695505050505050565b600080841161169a5760405162461bcd60e51b815260040161090190611c08565b6000831180156116aa5750600082115b6116c65760405162461bcd60e51b815260040161090190611c53565b60006116d4856103e5611b06565b905060006116e28483611b06565b90506000826116f3876103e8611b06565b6116fd9190611b8e565b90506117098183611b1d565b979650505050505050565b6805345cdf77eb68f44c54818101818110156117385763e5cfe9576000526004601cfd5b806805345cdf77eb68f44c5550506387a211a2600c52816000526020600c208181540181555080602052600c5160601c60007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a35050565b6000818310156117a4575081610595565b50919050565b600080826001600160a01b0316846001600160a01b03160361181c5760405162461bcd60e51b815260206004820152602560248201527f556e697377617056324c6962726172793a204944454e544943414c5f41444452604482015264455353455360d81b6064820152608401610901565b826001600160a01b0316846001600160a01b03161061183c57828461183f565b83835b90925090506001600160a01b03821661189a5760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f4144445245535300006044820152606401610901565b9250929050565b6000815180845260005b818110156118c7576020818501810151868301820152016118ab565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006118fa60208301846118a1565b9392505050565b80356001600160a01b038116811461191857600080fd5b919050565b6000806040838503121561193057600080fd5b61193983611901565b946020939093013593505050565b60006020828403121561195957600080fd5b5035919050565b60008060006060848603121561197557600080fd5b61197e84611901565b925061198c60208501611901565b9150604084013590509250925092565b6000806000606084860312156119b157600080fd5b6119ba84611901565b95602085013595506040909401359392505050565b6000602082840312156119e157600080fd5b6118fa82611901565b600080600080600080600060e0888a031215611a0557600080fd5b611a0e88611901565b9650611a1c60208901611901565b95506040880135945060608801359350608088013560ff81168114611a4057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611a7057600080fd5b611a7983611901565b9150611a8760208401611901565b90509250929050565b600181811c90821680611aa457607f821691505b6020821081036117a457634e487b7160e01b600052602260045260246000fd5b600060208284031215611ad657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561059557610595611add565b808202811582820484141761059557610595611add565b600082611b3a57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611b5157600080fd5b815180151581146118fa57600080fd5b84815283602082015260018060a01b038316604082015260806060820152600061166f60808301846118a1565b8082018082111561059557610595611add565b80516001600160701b038116811461191857600080fd5b600080600060608486031215611bcd57600080fd5b611bd684611ba1565b9250611be460208501611ba1565b9150604084015163ffffffff81168114611bfd57600080fd5b809150509250925092565b6020808252602b908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4960408201526a1394155517d05353d5539560aa1b606082015260800190565b60208082526028908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4c604082015267495155494449545960c01b60608201526080019056fe000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2a2646970667358221220fcc63000c2ebac5adde616ae4f5230701a3f970348b21860a1fd9e344a64328764736f6c63430008180033

Deployed Bytecode

0x6080604052600436106101665760003560e01c806357348910116100d157806395d89b411161008a578063c9567bf911610064578063c9567bf914610444578063d505accf1461044c578063dd62ed3e1461046c578063fff79bef146104a257600080fd5b806395d89b41146103f95780639dc2b4561461040e578063a9059cbb1461042457600080fd5b806357348910146103275780636249210c1461034757806370a082311461035c5780637ecebe001461038f5780637f6002af146103c257806388f89fb2146103e257600080fd5b8063313ce56711610123578063313ce5671461027957806332cb6b0c146102955780633644e515146102b25780633da04b87146102c75780633fc8cef3146102ef57806340702adc1461031157600080fd5b806306fdde031461016b578063095ea7b31461019657806318160ddd146101c65780631a686502146101ed578063234e26fb1461023957806323b872dd14610259575b600080fd5b34801561017757600080fd5b506101806104b5565b60405161018d91906118e7565b60405180910390f35b3480156101a257600080fd5b506101b66101b136600461191d565b610547565b604051901515815260200161018d565b3480156101d257600080fd5b506805345cdf77eb68f44c545b60405190815260200161018d565b3480156101f957600080fd5b506102217f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a7981565b6040516001600160a01b03909116815260200161018d565b34801561024557600080fd5b506101df610254366004611947565b61059b565b34801561026557600080fd5b506101b6610274366004611960565b6105f0565b34801561028557600080fd5b506040516012815260200161018d565b3480156102a157600080fd5b506101df683635c9adc5dea0000081565b3480156102be57600080fd5b506101df6106ae565b3480156102d357600080fd5b50610221735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156102fb57600080fd5b50610221600080516020611c9c83398151915281565b34801561031d57600080fd5b506101df60035481565b34801561033357600080fd5b506101df610342366004611947565b61072b565b61035a61035536600461199c565b610778565b005b34801561036857600080fd5b506101df6103773660046119cf565b6387a211a2600c908152600091909152602090205490565b34801561039b57600080fd5b506101df6103aa3660046119cf565b6338377508600c908152600091909152602090205490565b3480156103ce57600080fd5b5061035a6103dd36600461191d565b610afd565b3480156103ee57600080fd5b506101df62093a8081565b34801561040557600080fd5b50610180610d44565b34801561041a57600080fd5b506101df60045481565b34801561043057600080fd5b506101b661043f36600461191d565b610d53565b61035a610dce565b34801561045857600080fd5b5061035a6104673660046119ea565b6110c1565b34801561047857600080fd5b506101df610487366004611a5d565b602052637f5e9f20600c908152600091909152603490205490565b61035a6104b036600461199c565b61124a565b6060600080546104c490611a90565b80601f01602080910402602001604051908101604052809291908181526020018280546104f090611a90565b801561053d5780601f106105125761010080835404028352916020019161053d565b820191906000526020600020905b81548152906001019060200180831161052057829003601f168201915b5050505050905090565b600082602052637f5e9f20600c5233600052816034600c205581600052602c5160601c337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206000a35060015b92915050565b60008060006105d97f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79600080516020611c9c8339815191523061153c565b915091506105e88483836115fc565b949350505050565b60008360601b33602052637f5e9f208117600c526034600c2080546001810115610630578085111561062a576313be252b6000526004601cfd5b84810382555b50506387a211a28117600c526020600c208054808511156106595763f4d678b86000526004601cfd5b84810382555050836000526020600c208381540181555082602052600c5160601c8160601c7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3505060019392505050565b6000806106b96104b5565b8051906020012090506040517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81528160208201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6604082015246606082015230608082015260a081209250505090565b60008060006107697f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79600080516020611c9c8339815191523061153c565b915091506105e8848383611679565b4780156107e257600080516020611c9c8339815191526001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156107c857600080fd5b505af11580156107dc573d6000803e3d6000fd5b50505050505b6040516370a0823160e01b8152306004820152600080516020611c9c833981519152906370a0823190602401602060405180830381865afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f9190611ac4565b905060008061088d7f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79600080516020611c9c8339815191523061153c565b91509150600061089e8484846115fc565b90506127106108ad8682611af3565b6108b79088611b06565b6108c19190611b1d565b81101561090a5760405162461bcd60e51b81526020600482015260126024820152713a37b79036bab1b41039b634b83830b3b29760711b60448201526064015b60405180910390fd5b60405163a9059cbb60e01b81526001600160a01b037f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a7916600482015260248101859052600080516020611c9c8339815191529063a9059cbb906044016020604051808303816000875af1158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190611b3f565b5060006109b7858585611679565b9050600080600080516020611c9c83398151915230106109d9576000836109dd565b8260005b6040805160008152602081019182905263022c0d9f60e01b90915291935091506001600160a01b037f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79169063022c0d9f90610a4190859085908f9060248101611b61565b600060405180830381600087803b158015610a5b57600080fd5b505af1158015610a6f573d6000803e3d6000fd5b50505050610a888a8486610a839190611af3565b611714565b683635c9adc5dea00000610aa36805345cdf77eb68f44c5490565b1115610af15760405162461bcd60e51b815260206004820152601960248201527f6e6f206d6f726520646973636f756e7465642073776170732e000000000000006044820152606401610901565b50505050505050505050565b6002546001600160a01b03163314610b475760405162461bcd60e51b815260206004820152600d60248201526c3737ba103232b83637bcb2b91760991b6044820152606401610901565b62093a80600454610b589190611b8e565b4211610bb45760405162461bcd60e51b815260206004820152602560248201527f6465762063616e2774206265207061696420756e74696c206166746572206275604482015264333332b91760d91b6064820152608401610901565b6000610bdd62093a80600454610bca9190611b8e565b610bd49042611af3565b62093a80611793565b9050600062093a8082600354610bf39190611b06565b610bfd9190611b1d565b6040516370a0823160e01b81523060048201529091506000906001600160a01b037f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a7916906370a0823190602401602060405180830381865afa158015610c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190611ac4565b9050610ca084610c9b8385611793565b611793565b93508315610d3d5760405163a9059cbb60e01b81526001600160a01b038681166004830152602482018690527f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79169063a9059cbb906044016020604051808303816000875af1158015610d17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3b9190611b3f565b505b5050505050565b6060600180546104c490611a90565b60006387a211a2600c52336000526020600c20805480841115610d7e5763f4d678b86000526004601cfd5b83810382555050826000526020600c208281540181555081602052600c5160601c337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a350600192915050565b6002546001600160a01b03163314610e185760405162461bcd60e51b815260206004820152600d60248201526c3737ba103232b83637bcb2b91760991b6044820152606401610901565b6805345cdf77eb68f44c5415610e605760405162461bcd60e51b815260206004820152600d60248201526c37b7363c9032379037b731b29760991b6044820152606401610901565b600080516020611c9c8339815191526001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610ea957600080fd5b505af1158015610ebd573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b037f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79166004820152346024820152600080516020611c9c833981519152935063a9059cbb925060440190506020604051808303816000875af1158015610f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f619190611b3f565b506000610f78600a683635c9adc5dea00000611b1d565b9050610fa47f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a7982611714565b6040516335313c2160e11b81523060048201527f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a796001600160a01b031690636a627842906024016020604051808303816000875af115801561100a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102e9190611ac4565b506040516370a0823160e01b81523060048201527f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a796001600160a01b0316906370a0823190602401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190611ac4565b6003555042600455565b60006110cb6104b5565b805190602001209050844211156110ea57631a15a3cc6000526004601cfd5b6040518860601b60601c98508760601b60601c975065383775081901600e52886000526020600c2080547f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f83528360208401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6604084015246606084015230608084015260a08320602e527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c983528a60208401528960408401528860608401528060808401528760a084015260c08320604e526042602c206000528660ff1660205285604052846060526020806080600060015afa8b3d51146111f65763ddafbaef6000526004601cfd5b0190556303faf4f960a51b88176040526034602c2087905587897f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925602060608501a360405250506000606052505050505050565b4780156112b457600080516020611c9c8339815191526001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561129a57600080fd5b505af11580156112ae573d6000803e3d6000fd5b50505050505b6040516370a0823160e01b8152306004820152600080516020611c9c833981519152906370a0823190602401602060405180830381865afa1580156112fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113219190611ac4565b905060008061135f7f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79600080516020611c9c8339815191523061153c565b915091506000611370848484611679565b905061271061137f8682611af3565b6113899088611b06565b6113939190611b1d565b8110156113d75760405162461bcd60e51b81526020600482015260126024820152713a37b79036bab1b41039b634b83830b3b29760711b6044820152606401610901565b60405163a9059cbb60e01b81526001600160a01b037f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a7916600482015260248101859052600080516020611c9c8339815191529063a9059cbb906044016020604051808303816000875af1158015611452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114769190611b3f565b50600080600080516020611c9c83398151915230106114975760008361149b565b8260005b6040805160008152602081019182905263022c0d9f60e01b90915291935091506001600160a01b037f00000000000000000000000098ade7dd760bccf70f3d07861bc27dfff7f41a79169063022c0d9f906114ff90859085908e9060248101611b61565b600060405180830381600087803b15801561151957600080fd5b505af115801561152d573d6000803e3d6000fd5b50505050505050505050505050565b600080600061154b85856117aa565b509050600080876001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561158f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b39190611bb8565b506001600160701b031691506001600160701b03169150826001600160a01b0316876001600160a01b0316146115ea5780826115ed565b81815b90999098509650505050505050565b600080841161161d5760405162461bcd60e51b815260040161090190611c08565b60008311801561162d5750600082115b6116495760405162461bcd60e51b815260040161090190611c53565b60006116558386611b06565b905060006116638686611b8e565b905061166f8183611b1d565b9695505050505050565b600080841161169a5760405162461bcd60e51b815260040161090190611c08565b6000831180156116aa5750600082115b6116c65760405162461bcd60e51b815260040161090190611c53565b60006116d4856103e5611b06565b905060006116e28483611b06565b90506000826116f3876103e8611b06565b6116fd9190611b8e565b90506117098183611b1d565b979650505050505050565b6805345cdf77eb68f44c54818101818110156117385763e5cfe9576000526004601cfd5b806805345cdf77eb68f44c5550506387a211a2600c52816000526020600c208181540181555080602052600c5160601c60007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a35050565b6000818310156117a4575081610595565b50919050565b600080826001600160a01b0316846001600160a01b03160361181c5760405162461bcd60e51b815260206004820152602560248201527f556e697377617056324c6962726172793a204944454e544943414c5f41444452604482015264455353455360d81b6064820152608401610901565b826001600160a01b0316846001600160a01b03161061183c57828461183f565b83835b90925090506001600160a01b03821661189a5760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056324c6962726172793a205a45524f5f4144445245535300006044820152606401610901565b9250929050565b6000815180845260005b818110156118c7576020818501810151868301820152016118ab565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006118fa60208301846118a1565b9392505050565b80356001600160a01b038116811461191857600080fd5b919050565b6000806040838503121561193057600080fd5b61193983611901565b946020939093013593505050565b60006020828403121561195957600080fd5b5035919050565b60008060006060848603121561197557600080fd5b61197e84611901565b925061198c60208501611901565b9150604084013590509250925092565b6000806000606084860312156119b157600080fd5b6119ba84611901565b95602085013595506040909401359392505050565b6000602082840312156119e157600080fd5b6118fa82611901565b600080600080600080600060e0888a031215611a0557600080fd5b611a0e88611901565b9650611a1c60208901611901565b95506040880135945060608801359350608088013560ff81168114611a4057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215611a7057600080fd5b611a7983611901565b9150611a8760208401611901565b90509250929050565b600181811c90821680611aa457607f821691505b6020821081036117a457634e487b7160e01b600052602260045260246000fd5b600060208284031215611ad657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561059557610595611add565b808202811582820484141761059557610595611add565b600082611b3a57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611b5157600080fd5b815180151581146118fa57600080fd5b84815283602082015260018060a01b038316604082015260806060820152600061166f60808301846118a1565b8082018082111561059557610595611add565b80516001600160701b038116811461191857600080fd5b600080600060608486031215611bcd57600080fd5b611bd684611ba1565b9250611be460208501611ba1565b9150604084015163ffffffff81168114611bfd57600080fd5b809150509250925092565b6020808252602b908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4960408201526a1394155517d05353d5539560aa1b606082015260800190565b60208082526028908201527f556e697377617056324c6962726172793a20494e53554646494349454e545f4c604082015267495155494449545960c01b60608201526080019056fe000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2a2646970667358221220fcc63000c2ebac5adde616ae4f5230701a3f970348b21860a1fd9e344a64328764736f6c63430008180033

Deployed Bytecode Sourcemap

35021:5390:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32064:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10540:586;;;;;;;;;;-1:-1:-1;10540:586:0;;;;;:::i;:::-;;:::i;:::-;;;1269:14:1;;1262:22;1244:41;;1232:2;1217:18;10540:586:0;1104:187:1;9356:200:0;;;;;;;;;;-1:-1:-1;9519:18:0;9513:25;9356:200;;;1442:25:1;;;1430:2;1415:18;9356:200:0;1296:177:1;35329:41:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1664:32:1;;;1646:51;;1634:2;1619:18;35329:41:0;1478:225:1;39102:293:0;;;;;;;;;;-1:-1:-1;39102:293:0;;;;;:::i;:::-;;:::i;13135:2235::-;;;;;;;;;;-1:-1:-1;13135:2235:0;;;;;:::i;:::-;;:::i;8920:84::-;;;;;;;;;;-1:-1:-1;8920:84:0;;8994:2;2368:36:1;;2356:2;2341:18;8920:84:0;2226:184:1;35064:48:0;;;;;;;;;;;;35101:11;35064:48;;19928:707;;;;;;;;;;;;;:::i;35466:110::-;;;;;;;;;;;;35533:42;35466:110;;35379:78;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35379:78:0;;35193:31;;;;;;;;;;;;;;;;39442:306;;;;;;;;;;-1:-1:-1;39442:306:0;;;;;:::i;:::-;;:::i;36300:1122::-;;;;;;:::i;:::-;;:::i;:::-;;9625:293;;;;;;;;;;-1:-1:-1;9625:293:0;;;;;:::i;:::-;9796:18;9790:4;9783:32;;;9688:14;9829:19;;;;9894:4;9878:21;;9872:28;;9625:293;16022:348;;;;;;;;;;-1:-1:-1;16022:348:0;;;;;:::i;:::-;16249:17;16243:4;16236:31;;;16082:14;16281:19;;;;16346:4;16330:21;;16324:28;;16022:348;38355:675;;;;;;;;;;-1:-1:-1;38355:675:0;;;;;:::i;:::-;;:::i;35119:52::-;;;;;;;;;;;;35165:6;35119:52;;32163:95;;;;;;;;;;;;;:::i;35231:37::-;;;;;;;;;;;;;;;;11321:1435;;;;;;;;;;-1:-1:-1;11321:1435:0;;;;;:::i;:::-;;:::i;35753:539::-;;;:::i;16560:3284::-;;;;;;;;;;-1:-1:-1;16560:3284:0;;;;;:::i;:::-;;:::i;10016:388::-;;;;;;;;;;-1:-1:-1;10016:388:0;;;;;:::i;:::-;10239:4;10232:21;10280:20;10274:4;10267:34;;;10132:14;10315:19;;;;10380:4;10364:21;;10358:28;;10016:388;37430:917;;;;;;:::i;:::-;;:::i;32064:91::-;32109:13;32142:5;32135:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32064:91;:::o;10540:586::-;10614:4;10777:7;10771:4;10764:21;10812:20;10806:4;10799:34;10860:8;10854:4;10847:22;10913:6;10906:4;10900;10890:21;10883:37;10990:6;10984:4;10977:20;11079:4;11073:11;11069:2;11065:20;11055:8;11028:25;11022:4;11016;11011:75;-1:-1:-1;11114:4:0;10540:586;;;;;:::o;39102:293::-;39174:13;39201:17;39220:18;39242:76;39278:9;-1:-1:-1;;;;;;;;;;;39312:4:0;39242:35;:76::i;:::-;39200:118;;;;39336:51;39355:8;39365:9;39376:10;39336:18;:51::i;:::-;39329:58;39102:293;-1:-1:-1;;;;39102:293:0:o;13135:2235::-;13223:4;13378;13374:2;13370:13;13473:8;13467:4;13460:22;13519:20;13512:5;13509:31;13503:4;13496:45;13592:4;13586;13576:21;13635:13;13629:20;13749:1;13737:10;13733:18;13730:426;;;13867:10;13859:6;13856:22;13853:162;;;13915:10;13909:4;13902:24;13991:4;13985;13978:18;13853:162;14133:6;14121:10;14117:23;14102:13;14095:46;13730:426;;;14254:18;14247:5;14244:29;14238:4;14231:43;14327:4;14321;14311:21;14371:15;14365:22;14463:11;14455:6;14452:23;14449:149;;;14508:10;14502:4;14495:24;14578:4;14572;14565:18;14449:149;14709:6;14696:11;14692:24;14675:15;14668:49;;;14794:2;14788:4;14781:16;14848:4;14842;14832:21;15102:6;15086:13;15080:20;15076:33;15061:13;15054:56;;15180:6;15174:4;15167:20;15275:4;15269:11;15265:2;15261:20;15253:5;15249:2;15245:14;15218:25;15212:4;15206;15201:81;;-1:-1:-1;15358:4:0;13135:2235;;;;;:::o;19928:707::-;19985:14;;20211:6;:4;:6::i;:::-;20195:24;;;;;;20184:35;;20313:4;20307:11;20375:16;20372:1;20365:27;20427:8;20420:4;20417:1;20413:12;20406:30;20471:13;20464:4;20461:1;20457:12;20450:35;20520:9;20513:4;20510:1;20506:12;20499:31;20565:9;20558:4;20555:1;20551:12;20544:31;20612:4;20609:1;20599:18;20589:28;;;20283:345;19928:707;:::o;39442:306::-;39512:16;39542:17;39561:18;39583:76;39619:9;-1:-1:-1;;;;;;;;;;;39653:4:0;39583:35;:76::i;:::-;39541:118;;;;39677:62;39707:8;39717:9;39728:10;39677:29;:62::i;36300:1122::-;36417:21;36453:10;;36449:72;;-1:-1:-1;;;;;;;;;;;;;;;;36480:12:0;;36500:6;36480:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36449:72;36540:46;;-1:-1:-1;;;36540:46:0;;36580:4;36540:46;;;1646:51:1;-1:-1:-1;;;;;;;;;;;35414:42:0;36540:31;;1619:18:1;;36540:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36531:55;;36608:17;36627:18;36649:76;36685:9;-1:-1:-1;;;;;;;;;;;36719:4:0;36649:35;:76::i;:::-;36607:118;;;;36738:13;36754:49;36773:6;36781:9;36792:10;36754:18;:49::i;:::-;36738:65;-1:-1:-1;35314:6:0;36845:20;36857:8;35314:6;36845:20;:::i;:::-;36833:33;;:8;:33;:::i;:::-;:45;;;;:::i;:::-;36824:5;:54;;36816:85;;;;-1:-1:-1;;;36816:85:0;;6176:2:1;36816:85:0;;;6158:21:1;6215:2;6195:18;;;6188:30;-1:-1:-1;;;6234:18:1;;;6227:48;6292:18;;36816:85:0;;;;;;;;;36914:41;;-1:-1:-1;;;36914:41:0;;-1:-1:-1;;;;;36936:9:0;6513:32:1;36914:41:0;;;6495:51:1;6562:18;;;6555:34;;;-1:-1:-1;;;;;;;;;;;35414:42:0;36914:13;;6468:18:1;;36914:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36966:17;36986:60;37016:6;37024:9;37035:10;36986:29;:60::i;:::-;36966:80;-1:-1:-1;37061:18:0;;-1:-1:-1;;;;;;;;;;;37128:4:0;37104:65;37103:119;;37208:1;37212:9;37103:119;;;37174:9;37193:1;37103:119;37286:12;;;37296:1;37286:12;;;;;;;;;-1:-1:-1;;;37243:56:0;;;37060:162;;-1:-1:-1;37060:162:0;-1:-1:-1;;;;;;37243:9:0;:14;;;;:56;;37060:162;;;;37282:2;;37243:56;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37310:28;37316:2;37328:9;37320:5;:17;;;;:::i;:::-;37310:5;:28::i;:::-;35101:11;37357:13;9519:18;9513:25;;9356:200;37357:13;:27;;37349:65;;;;-1:-1:-1;;;37349:65:0;;7680:2:1;37349:65:0;;;7662:21:1;7719:2;7699:18;;;7692:30;7758:27;7738:18;;;7731:55;7803:18;;37349:65:0;7478:349:1;37349:65:0;36389:1033;;;;;;;36300:1122;;;:::o;38355:675::-;38454:8;;-1:-1:-1;;;;;38454:8:0;38440:10;:22;38432:48;;;;-1:-1:-1;;;38432:48:0;;8034:2:1;38432:48:0;;;8016:21:1;8073:2;8053:18;;;8046:30;-1:-1:-1;;;8092:18:1;;;8085:43;8145:18;;38432:48:0;7832:337:1;38432:48:0;35165:6;38519:22;;:44;;;;:::i;:::-;38501:15;:62;38493:112;;;;-1:-1:-1;;;38493:112:0;;8506:2:1;38493:112:0;;;8488:21:1;8545:2;8525:18;;;8518:30;8584:34;8564:18;;;8557:62;-1:-1:-1;;;8635:18:1;;;8628:35;8680:19;;38493:112:0;8304:401:1;38493:112:0;38618:12;38633:91;35165:6;38657:22;;:44;;;;:::i;:::-;38638:64;;:15;:64;:::i;:::-;35165:6;38633:4;:91::i;:::-;38618:106;;38735:26;35165:6;38783:4;38764:16;;:23;;;;:::i;:::-;:45;;;;:::i;:::-;38838:34;;-1:-1:-1;;;38838:34:0;;38866:4;38838:34;;;1646:51:1;38735:74:0;;-1:-1:-1;38820:15:0;;-1:-1:-1;;;;;38838:9:0;:19;;;;1619:18:1;;38838:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38820:52;;38892:47;38897:6;38905:33;38910:7;38919:18;38905:4;:33::i;:::-;38892:4;:47::i;:::-;38883:56;-1:-1:-1;38954:10:0;;38950:73;;38981:30;;-1:-1:-1;;;38981:30:0;;-1:-1:-1;;;;;6513:32:1;;;38981:30:0;;;6495:51:1;6562:18;;;6555:34;;;38981:9:0;:18;;;;6468::1;;38981:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38950:73;38421:609;;;38355:675;;:::o;32163:95::-;32210:13;32243:7;32236:14;;;;;:::i;11321:1435::-;11391:4;11605:18;11599:4;11592:32;11651:8;11645:4;11638:22;11713:4;11707;11697:21;11757:15;11751:22;11849:11;11841:6;11838:23;11835:149;;;11894:10;11888:4;11881:24;11964:4;11958;11951:18;11835:149;12095:6;12082:11;12078:24;12061:15;12054:49;;;12180:2;12174:4;12167:16;12234:4;12228;12218:21;12488:6;12472:13;12466:20;12462:33;12447:13;12440:56;;12566:6;12560:4;12553:20;12655:4;12649:11;12645:2;12641:20;12631:8;12604:25;12598:4;12592;12587:75;-1:-1:-1;12744:4:0;11321:1435;;;;:::o;35753:539::-;35826:8;;-1:-1:-1;;;;;35826:8:0;35812:10;:22;35804:48;;;;-1:-1:-1;;;35804:48:0;;8034:2:1;35804:48:0;;;8016:21:1;8073:2;8053:18;;;8046:30;-1:-1:-1;;;8092:18:1;;;8085:43;8145:18;;35804:48:0;7832:337:1;35804:48:0;9519:18;9513:25;35871:18;35863:44;;;;-1:-1:-1;;;35863:44:0;;8912:2:1;35863:44:0;;;8894:21:1;8951:2;8931:18;;;8924:30;-1:-1:-1;;;8970:18:1;;;8963:43;9023:18;;35863:44:0;8710:337:1;35863:44:0;-1:-1:-1;;;;;;;;;;;;;;;;35920:12:0;;35940:9;35920:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35963:44:0;;-1:-1:-1;;;35963:44:0;;-1:-1:-1;;;;;35985:9:0;6513:32:1;35963:44:0;;;6495:51:1;35997:9:0;6562:18:1;;;6555:34;-1:-1:-1;;;;;;;;;;;35414:42:0;-1:-1:-1;35963:13:0;;-1:-1:-1;6468:18:1;;;-1:-1:-1;35963:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;36020:29:0;36052:13;36063:2;35101:11;36052:13;:::i;:::-;36020:45;;36078:48;36092:9;36104:21;36078:5;:48::i;:::-;36139:29;;-1:-1:-1;;;36139:29:0;;36162:4;36139:29;;;1646:51:1;36139:9:0;-1:-1:-1;;;;;36139:14:0;;;;1619:18:1;;36139:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;36199:34:0;;-1:-1:-1;;;36199:34:0;;36227:4;36199:34;;;1646:51:1;36199:9:0;-1:-1:-1;;;;;36199:19:0;;;;1619:18:1;;36199:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36180:16;:53;-1:-1:-1;36269:15:0;36244:22;:40;35753:539::o;16560:3284::-;16768:16;16967:6;:4;:6::i;:::-;16951:24;;;;;;16940:35;;17147:8;17134:11;17131:25;17128:145;;;17189:10;17183:4;17176:24;17253:4;17247;17240:18;17128:145;17302:4;17296:11;17420:5;17416:2;17412:14;17408:2;17404:23;17395:32;;17468:7;17464:2;17460:16;17456:2;17452:25;17441:36;;17563:39;17557:4;17550:53;17630:5;17624:4;17617:19;17683:4;17677;17667:21;17726:9;17720:16;17806;17803:1;17796:27;17858:8;17851:4;17848:1;17844:12;17837:30;17902:13;17895:4;17892:1;17888:12;17881:35;17951:9;17944:4;17941:1;17937:12;17930:31;17996:9;17989:4;17986:1;17982:12;17975:31;18046:4;18043:1;18033:18;18027:4;18020:32;18117:16;18114:1;18107:27;18169:5;18162:4;18159:1;18155:12;18148:27;18210:7;18203:4;18200:1;18196:12;18189:29;18253:5;18246:4;18243:1;18239:12;18232:27;18294:10;18287:4;18284:1;18280:12;18273:32;18340:8;18333:4;18330:1;18326:12;18319:30;18389:4;18386:1;18376:18;18370:4;18363:32;18486:4;18480;18470:21;18464:4;18457:35;18529:1;18523:4;18519:12;18513:4;18506:26;18559:1;18553:4;18546:15;18588:1;18582:4;18575:15;18649:4;18643;18637;18634:1;18631;18624:5;18613:41;19076:5;19057:16;19051:23;19048:34;19038:162;;19116:10;19110:4;19103:24;19180:4;19174;19167:18;19038:162;19287:18;19269:37;;-1:-1:-1;;;19485:43:0;;19479:4;19472:57;19566:4;19560;19550:21;19543:36;;;19520:7;19688:5;19661:25;-1:-1:-1;19648:4:0;19641:12;;19636:67;19724:4;19717:15;-1:-1:-1;;19795:1:0;19789:4;19782:15;-1:-1:-1;;;;;;16560:3284:0:o;37430:917::-;37545:21;37581:10;;37577:72;;-1:-1:-1;;;;;;;;;;;;;;;;37608:12:0;;37628:6;37608:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37577:72;37668:46;;-1:-1:-1;;;37668:46:0;;37708:4;37668:46;;;1646:51:1;-1:-1:-1;;;;;;;;;;;35414:42:0;37668:31;;1619:18:1;;37668:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37659:55;;37736:17;37755:18;37777:76;37813:9;-1:-1:-1;;;;;;;;;;;37847:4:0;37777:35;:76::i;:::-;37735:118;;;;37866:17;37886:60;37916:6;37924:9;37935:10;37886:29;:60::i;:::-;37866:80;-1:-1:-1;35314:6:0;37991:20;38003:8;35314:6;37991:20;:::i;:::-;37979:33;;:8;:33;:::i;:::-;:45;;;;:::i;:::-;37966:9;:58;;37958:89;;;;-1:-1:-1;;;37958:89:0;;6176:2:1;37958:89:0;;;6158:21:1;6215:2;6195:18;;;6188:30;-1:-1:-1;;;6234:18:1;;;6227:48;6292:18;;37958:89:0;5974:342:1;37958:89:0;38058:41;;-1:-1:-1;;;38058:41:0;;-1:-1:-1;;;;;38080:9:0;6513:32:1;38058:41:0;;;6495:51:1;6562:18;;;6555:34;;;-1:-1:-1;;;;;;;;;;;35414:42:0;38058:13;;6468:18:1;;38058:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;38111:18:0;;-1:-1:-1;;;;;;;;;;;38178:4:0;38154:65;38153:119;;38258:1;38262:9;38153:119;;;38224:9;38243:1;38153:119;38326:12;;;38336:1;38326:12;;;;;;;;;-1:-1:-1;;;38283:56:0;;;38110:162;;-1:-1:-1;38110:162:0;-1:-1:-1;;;;;;38283:9:0;:14;;;;:56;;38110:162;;;;38322:2;;38283:56;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37517:830;;;;;;37430:917;;;:::o;33901:406::-;34039:16;34057;34087:14;34107:26;34118:6;34126;34107:10;:26::i;:::-;34086:47;;;34145:16;34163;34185:4;-1:-1:-1;;;;;34185:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34144:59;-1:-1:-1;;;;;34144:59:0;;;-1:-1:-1;;;;;34144:59:0;;;34247:6;-1:-1:-1;;;;;34237:16:0;:6;-1:-1:-1;;;;;34237:16:0;;:62;;34280:8;34290;34237:62;;;34257:8;34267;34237:62;34214:85;;;;-1:-1:-1;33901:406:0;-1:-1:-1;;;;;;;33901:406:0:o;39783:493::-;39924:17;39973:1;39962:8;:12;39954:68;;;;-1:-1:-1;;;39954:68:0;;;;;;;:::i;:::-;40053:1;40041:9;:13;:31;;;;;40071:1;40058:10;:14;40041:31;40033:84;;;;-1:-1:-1;;;40033:84:0;;;;;;;:::i;:::-;40128:17;40148:21;40159:10;40148:8;:21;:::i;:::-;40128:41;-1:-1:-1;40180:19:0;40202:20;40214:8;40202:9;:20;:::i;:::-;40180:42;-1:-1:-1;40245:23:0;40180:42;40245:9;:23;:::i;:::-;40233:35;39783:493;-1:-1:-1;;;;;;39783:493:0:o;34429:560::-;34565:17;34614:1;34603:8;:12;34595:68;;;;-1:-1:-1;;;34595:68:0;;;;;;;:::i;:::-;34694:1;34682:9;:13;:31;;;;;34712:1;34699:10;:14;34682:31;34674:84;;;;-1:-1:-1;;;34674:84:0;;;;;;;:::i;:::-;34769:23;34795:14;:8;34806:3;34795:14;:::i;:::-;34769:40;-1:-1:-1;34820:17:0;34840:28;34858:10;34769:40;34840:28;:::i;:::-;34820:48;-1:-1:-1;34879:19:0;34920:15;34901:16;:9;34913:4;34901:16;:::i;:::-;:34;;;;:::i;:::-;34879:56;-1:-1:-1;34958:23:0;34879:56;34958:9;:23;:::i;:::-;34946:35;34429:560;-1:-1:-1;;;;;;;34429:560:0:o;21048:1196::-;21273:18;21267:25;21353:6;21334:17;21330:30;21452:17;21434:16;21431:39;21428:165;;;21503:10;21497:4;21490:24;21573:4;21567;21560:18;21428:165;21682:16;21662:18;21655:44;;;21787:18;21781:4;21774:32;21833:2;21827:4;21820:16;21887:4;21881;21871:21;22005:6;21989:13;21983:20;21979:33;21964:13;21957:56;;22083:6;22077:4;22070:20;22165:4;22159:11;22155:2;22151:20;22148:1;22121:25;22115:4;22109;22104:68;21048:1196;;:::o;40284:124::-;40341:7;40369:1;40365;:5;40361:19;;;-1:-1:-1;40379:1:0;40372:8;;40361:19;-1:-1:-1;40399:1:0;40284:124;-1:-1:-1;40284:124:0:o;33456:381::-;33558:14;33574;33624:6;-1:-1:-1;;;;;33614:16:0;:6;-1:-1:-1;;;;;33614:16:0;;33606:66;;;;-1:-1:-1;;;33606:66:0;;10723:2:1;33606:66:0;;;10705:21:1;10762:2;10742:18;;;10735:30;10801:34;10781:18;;;10774:62;-1:-1:-1;;;10852:18:1;;;10845:35;10897:19;;33606:66:0;10521:401:1;33606:66:0;33711:6;-1:-1:-1;;;;;33702:15:0;:6;-1:-1:-1;;;;;33702:15:0;;:53;;33740:6;33748;33702:53;;;33721:6;33729;33702:53;33683:72;;-1:-1:-1;33683:72:0;-1:-1:-1;;;;;;33774:20:0;;33766:63;;;;-1:-1:-1;;;33766:63:0;;11129:2:1;33766:63:0;;;11111:21:1;11168:2;11148:18;;;11141:30;11207:32;11187:18;;;11180:60;11257:18;;33766:63:0;10927:354:1;33766:63:0;33456:381;;;;;:::o;14:423:1:-;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;:::-;603:53;442:220;-1:-1:-1;;;442:220:1:o;667:173::-;735:20;;-1:-1:-1;;;;;784:31:1;;774:42;;764:70;;830:1;827;820:12;764:70;667:173;;;:::o;845:254::-;913:6;921;974:2;962:9;953:7;949:23;945:32;942:52;;;990:1;987;980:12;942:52;1013:29;1032:9;1013:29;:::i;:::-;1003:39;1089:2;1074:18;;;;1061:32;;-1:-1:-1;;;845:254:1:o;1708:180::-;1767:6;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;-1:-1:-1;1859:23:1;;1708:180;-1:-1:-1;1708:180:1:o;1893:328::-;1970:6;1978;1986;2039:2;2027:9;2018:7;2014:23;2010:32;2007:52;;;2055:1;2052;2045:12;2007:52;2078:29;2097:9;2078:29;:::i;:::-;2068:39;;2126:38;2160:2;2149:9;2145:18;2126:38;:::i;:::-;2116:48;;2211:2;2200:9;2196:18;2183:32;2173:42;;1893:328;;;;;:::o;3051:322::-;3128:6;3136;3144;3197:2;3185:9;3176:7;3172:23;3168:32;3165:52;;;3213:1;3210;3203:12;3165:52;3236:29;3255:9;3236:29;:::i;:::-;3226:39;3312:2;3297:18;;3284:32;;-1:-1:-1;3363:2:1;3348:18;;;3335:32;;3051:322;-1:-1:-1;;;3051:322:1:o;3378:186::-;3437:6;3490:2;3478:9;3469:7;3465:23;3461:32;3458:52;;;3506:1;3503;3496:12;3458:52;3529:29;3548:9;3529:29;:::i;3569:693::-;3680:6;3688;3696;3704;3712;3720;3728;3781:3;3769:9;3760:7;3756:23;3752:33;3749:53;;;3798:1;3795;3788:12;3749:53;3821:29;3840:9;3821:29;:::i;:::-;3811:39;;3869:38;3903:2;3892:9;3888:18;3869:38;:::i;:::-;3859:48;;3954:2;3943:9;3939:18;3926:32;3916:42;;4005:2;3994:9;3990:18;3977:32;3967:42;;4059:3;4048:9;4044:19;4031:33;4104:4;4097:5;4093:16;4086:5;4083:27;4073:55;;4124:1;4121;4114:12;4073:55;3569:693;;;;-1:-1:-1;3569:693:1;;;;4147:5;4199:3;4184:19;;4171:33;;-1:-1:-1;4251:3:1;4236:19;;;4223:33;;3569:693;-1:-1:-1;;3569:693:1:o;4267:260::-;4335:6;4343;4396:2;4384:9;4375:7;4371:23;4367:32;4364:52;;;4412:1;4409;4402:12;4364:52;4435:29;4454:9;4435:29;:::i;:::-;4425:39;;4483:38;4517:2;4506:9;4502:18;4483:38;:::i;:::-;4473:48;;4267:260;;;;;:::o;4532:380::-;4611:1;4607:12;;;;4654;;;4675:61;;4729:4;4721:6;4717:17;4707:27;;4675:61;4782:2;4774:6;4771:14;4751:18;4748:38;4745:161;;4828:10;4823:3;4819:20;4816:1;4809:31;4863:4;4860:1;4853:15;4891:4;4888:1;4881:15;5125:184;5195:6;5248:2;5236:9;5227:7;5223:23;5219:32;5216:52;;;5264:1;5261;5254:12;5216:52;-1:-1:-1;5287:16:1;;5125:184;-1:-1:-1;5125:184:1:o;5314:127::-;5375:10;5370:3;5366:20;5363:1;5356:31;5406:4;5403:1;5396:15;5430:4;5427:1;5420:15;5446:128;5513:9;;;5534:11;;;5531:37;;;5548:18;;:::i;5579:168::-;5652:9;;;5683;;5700:15;;;5694:22;;5680:37;5670:71;;5721:18;;:::i;5752:217::-;5792:1;5818;5808:132;;5862:10;5857:3;5853:20;5850:1;5843:31;5897:4;5894:1;5887:15;5925:4;5922:1;5915:15;5808:132;-1:-1:-1;5954:9:1;;5752:217::o;6600:277::-;6667:6;6720:2;6708:9;6699:7;6695:23;6691:32;6688:52;;;6736:1;6733;6726:12;6688:52;6768:9;6762:16;6821:5;6814:13;6807:21;6800:5;6797:32;6787:60;;6843:1;6840;6833:12;7014:459;7245:6;7234:9;7227:25;7288:6;7283:2;7272:9;7268:18;7261:34;7360:1;7356;7351:3;7347:11;7343:19;7335:6;7331:32;7326:2;7315:9;7311:18;7304:60;7400:3;7395:2;7384:9;7380:18;7373:31;7208:4;7421:46;7462:3;7451:9;7447:19;7439:6;7421:46;:::i;8174:125::-;8239:9;;;8260:10;;;8257:36;;;8273:18;;:::i;9052:188::-;9131:13;;-1:-1:-1;;;;;9173:42:1;;9163:53;;9153:81;;9230:1;9227;9220:12;9245:450;9332:6;9340;9348;9401:2;9389:9;9380:7;9376:23;9372:32;9369:52;;;9417:1;9414;9407:12;9369:52;9440:40;9470:9;9440:40;:::i;:::-;9430:50;;9499:49;9544:2;9533:9;9529:18;9499:49;:::i;:::-;9489:59;;9591:2;9580:9;9576:18;9570:25;9635:10;9628:5;9624:22;9617:5;9614:33;9604:61;;9661:1;9658;9651:12;9604:61;9684:5;9674:15;;;9245:450;;;;;:::o;9700:407::-;9902:2;9884:21;;;9941:2;9921:18;;;9914:30;9980:34;9975:2;9960:18;;9953:62;-1:-1:-1;;;10046:2:1;10031:18;;10024:41;10097:3;10082:19;;9700:407::o;10112:404::-;10314:2;10296:21;;;10353:2;10333:18;;;10326:30;10392:34;10387:2;10372:18;;10365:62;-1:-1:-1;;;10458:2:1;10443:18;;10436:38;10506:3;10491:19;;10112:404::o

Swarm Source

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