ETH Price: $3,433.20 (+2.44%)
Gas: 4 Gwei

Token

Chad (CHAD)
 

Overview

Max Total Supply

3,000 CHAD

Holders

0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CHAD

Value
$0.00
0x74175e64722250610a89864a991853b6679ff841
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:
Chad

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 5 : Chad.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./ERC404.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Chad is ERC404 {
    string public dataURI;
    string public baseTokenURI;

    constructor(
        address _owner
    ) ERC404("Chad", "CHAD", 18, 3000, _owner) {
        balanceOf[_owner] = 3000 * 10 ** 18;
    }

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

function tokenURI(uint256 id) public view override returns (string memory) {
    if (bytes(baseTokenURI).length > 0) {
        return string.concat(baseTokenURI, Strings.toString(id));
    } else {
        uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
        string memory image;
        string memory Material;

        if (seed <= 0) { 
            image = "18.gif";
            Material = "Adamantine Poop";
        } else if (seed <= 2) { 
            image = "17.gif";
            Material = "Diamond Chad";
        } else if (seed <= 10) { 
            image = "16.gif";
            Material = "Golden Chad 1st Edition";
        } else if (seed <= 18) { 
            image = "15.gif";
            Material = "Golden Chad 2nd Edition";
        } else if (seed <= 26) { 
            image = "14.gif";
            Material = "Golden Chad 3rd Edition";
        } else if (seed <= 38) { 
            image = "13.gif";
            Material = "Silvered Chad 1st Edition";
        } else if (seed <= 50) { 
            image = "12.gif";
            Material = "Silvered Chad 2nd Edition";
        } else if (seed <= 62) { 
            image = "11.gif";
            Material = "Silvered Chad 3rd Edition";
        } else if (seed <= 74) { 
            image = "10.gif";
            Material = "Bronzed Chad 1st Edition";
        } else if (seed <= 86) { 
            image = "9.gif";
            Material = "Bronzed Chad 2nd Edition";
        } else if (seed <= 98) { 
            image = "8.gif";
            Material = "Bronzed Chad 3rd Edition";
        } else if (seed <= 110) { 
            image = "7.gif";
            Material = "Bronzed Chad 4th Edition";
        } else if (seed <= 122) { 
            image = "6.gif";
            Material = "Bronzed Chad 5th Edition";
        } else if (seed <= 146) { 
            image = "5.gif";
            Material = "Wooden Chad 1st Edition";
        } else if (seed <= 170) { 
            image = "4.gif";
            Material = "Wooden Chad 2nd Edition";
        } else if (seed <= 194) { 
            image = "3.gif";
            Material = "Wooden Chad 3rd Edition";
        } else if (seed <= 218) { 
            image = "2.gif";
            Material = "Wooden Chad 4th Edition";
        } else if (seed <= 242) { 
            image = "1.gif";
            Material = "Wooden Chad 5th Edition";
        }

            string memory jsonPreImage = string.concat(
                string.concat(
                    string.concat('{"name": "Chad #', Strings.toString(id)),
                    '","description":"An animated collection of 3,000 Chads enabled by ERC404, an experimental token standard.","external_url":"https://www.chad404.xyz","image":"'
                ),
                string.concat(dataURI, image)
            );
            string memory jsonPostImage = string.concat(
                '","attributes":[{"trait_type":"Material","value":"',
                Material
            );
            string memory jsonPostTraits = '"}]}';

            return
                string.concat(
                    "data:application/json;utf8,",
                    string.concat(
                        string.concat(jsonPreImage, jsonPostImage),
                        jsonPostTraits
                    )
                );
        }
    }
}

File 2 of 5 : ERC404.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) -
                (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) -
                (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}

File 3 of 5 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 4 of 5 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 5 of 5 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b5060405162002a4d38038062002a4d833981016040819052620000349162000166565b6040518060400160405280600481526020016310da185960e21b8152506040518060400160405280600481526020016310d2105160e21b8152506012610bb8848060006001600160a01b0316816001600160a01b031603620000a9576040516349e27cff60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b03831690811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060016200010086826200023f565b5060026200010f85826200023f565b5060ff831660808190526200012690600a62000420565b62000132908362000431565b60a0525050506001600160a01b03909216600090815260046020526040902068a2a15d09519be000009055506200044b9050565b6000602082840312156200017957600080fd5b81516001600160a01b03811681146200019157600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c357607f821691505b602082108103620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023a576000816000526020600020601f850160051c81016020861015620002155750805b601f850160051c820191505b81811015620002365782815560010162000221565b5050505b505050565b81516001600160401b038111156200025b576200025b62000198565b62000273816200026c8454620001ae565b84620001ea565b602080601f831160018114620002ab5760008415620002925750858301515b600019600386901b1c1916600185901b17855562000236565b600085815260208120601f198616915b82811015620002dc57888601518255948401946001909101908401620002bb565b5085821015620002fb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003625781600019048211156200034657620003466200030b565b808516156200035457918102915b93841c939080029062000326565b509250929050565b6000826200037b575060016200041a565b816200038a575060006200041a565b8160018114620003a35760028114620003ae57620003ce565b60019150506200041a565b60ff841115620003c257620003c26200030b565b50506001821b6200041a565b5060208310610133831016604e8410600b8410161715620003f3575081810a6200041a565b620003ff838362000321565b80600019048211156200041657620004166200030b565b0290505b92915050565b60006200019160ff8416836200036a565b80820281158282048414176200041a576200041a6200030b565b60805160a0516125d562000478600039600061023501526000818161029a015261172301526125d56000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063c87b56dd11610097578063e0df5b6f11610071578063e0df5b6f14610400578063e985e9c514610413578063f28ca1dd14610441578063f2fde38b1461044957600080fd5b8063c87b56dd146103ba578063d547cfb7146103cd578063dd62ed3e146103d557600080fd5b80639b19251a116100d35780639b19251a1461035e578063a22cb46514610381578063a9059cbb14610394578063b88d4fde146103a757600080fd5b806370a08231146103235780638da5cb5b1461034357806395d89b411461035657600080fd5b80632b968958116101665780634f02c420116101405780634f02c420146102e1578063504334c2146102ea57806353d6fd59146102fd5780636352211e1461031057600080fd5b80632b9689581461028d578063313ce5671461029557806342842e0e146102ce57600080fd5b806306fdde03146101ae578063081812fc146101cc578063095ea7b31461020d57806318160ddd1461023057806318d217c31461026557806323b872dd1461027a575b600080fd5b6101b661045c565b6040516101c39190611cd7565b60405180910390f35b6101f56101da366004611d0a565b6006602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b61022061021b366004611d3a565b6104ea565b60405190151581526020016101c3565b6102577f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101c3565b610278610273366004611e07565b61063b565b005b610278610288366004611e44565b610675565b6102786109fe565b6102bc7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016101c3565b6102786102dc366004611e44565b610a64565b61025760035481565b6102786102f8366004611e80565b610b39565b61027861030b366004611ee4565b610b6d565b6101f561031e366004611d0a565b610bc2565b610257610331366004611f20565b60046020526000908152604090205481565b6000546101f5906001600160a01b031681565b6101b6610bfd565b61022061036c366004611f20565b600b6020526000908152604090205460ff1681565b61027861038f366004611ee4565b610c0a565b6102206103a2366004611d3a565b610c76565b6102786103b5366004611f3b565b610c8a565b6101b66103c8366004611d0a565b610d4d565b6101b6611630565b6102576103e3366004611fd6565b600560209081526000928352604080842090915290825290205481565b61027861040e366004611e07565b61163d565b610220610421366004611fd6565b600760209081526000928352604080842090915290825290205460ff1681565b6101b6611673565b610278610457366004611f20565b611680565b6001805461046990612009565b80601f016020809104026020016040519081016040528092919081815260200182805461049590612009565b80156104e25780601f106104b7576101008083540402835291602001916104e2565b820191906000526020600020905b8154815290600101906020018083116104c557829003601f168201915b505050505081565b600060035482111580156104fe5750600082115b156105d5576000828152600860205260409020546001600160a01b031633811480159061054f57506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b1561056c576040516282b42960e81b815260040160405180910390fd5b60008381526006602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350610631565b3360008181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b6000546001600160a01b03163314610665576040516282b42960e81b815260040160405180910390fd5b600c6106718282612093565b5050565b600354811161098f576000818152600860205260409020546001600160a01b038481169116146106b857604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0382166106df57604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061071c57506001600160a01b038316600090815260076020908152604080832033845290915290205460ff16155b801561073f57506000818152600660205260409020546001600160a01b03163314155b1561075c576040516282b42960e81b815260040160405180910390fd5b61076461171c565b6001600160a01b0384166000908152600460205260408120805490919061078c908490612169565b9091555061079a905061171c565b6001600160a01b03808416600081815260046020908152604080832080549096019095558582526008815284822080546001600160a01b03199081169094179055600681528482208054909316909255918616825260099052908120805461080490600190612169565b815481106108145761081461217c565b60009182526020808320909101546001600160a01b0387168352600982526040808420868552600a909352909220548154929350839281106108585761085861217c565b60009182526020808320909101929092556001600160a01b038616815260099091526040902080548061088d5761088d612192565b600082815260208082208301600019908101839055909201909255838252600a8152604080832054848452818420556001600160a01b0386168084526009835290832080546001818101835582865293852001869055925290546108f19190612169565b6000838152600a602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761097861171c565b60405190815260200160405180910390a350505050565b6001600160a01b038316600090815260056020908152604080832033845290915290205460001981146109eb576109c68282612169565b6001600160a01b03851660009081526005602090815260408083203384529091529020555b6109f684848461174e565b50505b505050565b6000546001600160a01b03163314610a28576040516282b42960e81b815260040160405180910390fd5b600080546001600160a01b031916815560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610a6f838383610675565b6001600160a01b0382163b15801590610b1b5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610aea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0e91906121a8565b6001600160e01b03191614155b156109f957604051633da6393160e01b815260040160405180910390fd5b6000546001600160a01b03163314610b63576040516282b42960e81b815260040160405180910390fd5b61067182826118fc565b6000546001600160a01b03163314610b97576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000818152600860205260409020546001600160a01b031680610bf85760405163c5723b5160e01b815260040160405180910390fd5b919050565b6002805461046990612009565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c8333848461174e565b9392505050565b610c95858585610675565b6001600160a01b0384163b15801590610d2f5750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610cdf9033908a908990899089906004016121d2565b6020604051808303816000875af1158015610cfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2291906121a8565b6001600160e01b03191614155b156109f657604051633da6393160e01b815260040160405180910390fd5b60606000600d8054610d5e90612009565b90501115610d9857600d610d7183611915565b604051602001610d82929190612226565b6040516020818303038152906040529050919050565b600082604051602001610dad91815260200190565b6040516020818303038152906040528051906020012060f81c905060608060008360ff1611610e265760405180604001604052806006815260200165189c1733b4b360d11b81525091506040518060400160405280600f81526020016e04164616d616e74696e6520506f6f7608c1b8152509050611501565b60028360ff1611610e7e5760405180604001604052806006815260200165189b9733b4b360d11b81525091506040518060400160405280600c81526020016b111a585b5bdb990810da185960a21b8152509050611501565b600a8360ff1611610ee75760405180604001604052806006815260200165189b1733b4b360d11b81525091506040518060400160405280601781526020017f476f6c64656e2043686164203173742045646974696f6e0000000000000000008152509050611501565b60128360ff1611610f505760405180604001604052806006815260200165189a9733b4b360d11b81525091506040518060400160405280601781526020017f476f6c64656e204368616420326e642045646974696f6e0000000000000000008152509050611501565b601a8360ff1611610fb95760405180604001604052806006815260200165189a1733b4b360d11b81525091506040518060400160405280601781526020017f476f6c64656e2043686164203372642045646974696f6e0000000000000000008152509050611501565b60268360ff1611611022576040518060400160405280600681526020016518999733b4b360d11b81525091506040518060400160405280601981526020017f53696c76657265642043686164203173742045646974696f6e000000000000008152509050611501565b60328360ff161161108b576040518060400160405280600681526020016518991733b4b360d11b81525091506040518060400160405280601981526020017f53696c7665726564204368616420326e642045646974696f6e000000000000008152509050611501565b603e8360ff16116110f4576040518060400160405280600681526020016518989733b4b360d11b81525091506040518060400160405280601981526020017f53696c76657265642043686164203372642045646974696f6e000000000000008152509050611501565b604a8360ff161161115d576040518060400160405280600681526020016518981733b4b360d11b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203173742045646974696f6e00000000000000008152509050611501565b60568360ff16116111c557604051806040016040528060058152602001641c9733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a6564204368616420326e642045646974696f6e00000000000000008152509050611501565b60628360ff161161122d57604051806040016040528060058152602001641c1733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203372642045646974696f6e00000000000000008152509050611501565b606e8360ff161161129557604051806040016040528060058152602001641b9733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203474682045646974696f6e00000000000000008152509050611501565b607a8360ff16116112fd57604051806040016040528060058152602001641b1733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203574682045646974696f6e00000000000000008152509050611501565b60928360ff161161136557604051806040016040528060058152602001641a9733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203173742045646974696f6e0000000000000000008152509050611501565b60aa8360ff16116113cd57604051806040016040528060058152602001641a1733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e204368616420326e642045646974696f6e0000000000000000008152509050611501565b60c28360ff16116114355760405180604001604052806005815260200164199733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203372642045646974696f6e0000000000000000008152509050611501565b60da8360ff161161149d5760405180604001604052806005815260200164191733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203474682045646974696f6e0000000000000000008152509050611501565b60f28360ff16116115015760405180604001604052806005815260200164189733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203574682045646974696f6e00000000000000000081525090505b600061150c86611915565b60405160200161151c91906122ad565b60408051601f1981840301815290829052611539916020016122e6565b604051602081830303815290604052600c8460405160200161155c929190612226565b60408051601f198184030181529082905261157a92916020016123bf565b604051602081830303815290604052905060008260405160200161159e91906123e5565b60408051601f1981840301815282820182526004835263227d5d7d60e01b60208481019190915291519093506115d89185918591016123bf565b60408051601f19818403018152908290526115f79183906020016123bf565b60408051601f198184030181529082905261161491602001612445565b6040516020818303038152906040529650505050505050919050565b600d805461046990612009565b6000546001600160a01b03163314611667576040516282b42960e81b815260040160405180910390fd5b600d6106718282612093565b600c805461046990612009565b6000546001600160a01b031633146116aa576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381166116d1576040516349e27cff60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60006117497f0000000000000000000000000000000000000000000000000000000000000000600a61256e565b905090565b60008061175961171c565b6001600160a01b038087166000818152600460205260408082208054948a16835290822054928252939450919290918691906117958386612169565b90915550506001600160a01b03808716600090815260046020908152604080832080548a019055928a168252600b9052205460ff16611827576001600160a01b0387166000908152600460205260408120546117f290859061257d565b6117fc858561257d565b6118069190612169565b905060005b818110156118245761181c896119a8565b60010161180b565b50505b6001600160a01b0386166000908152600b602052604090205460ff166118a2576000611853848361257d565b6001600160a01b03881660009081526004602052604090205461187790869061257d565b6118819190612169565b905060005b8181101561189f5761189788611ad0565b600101611886565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516118e791815260200190565b60405180910390a35060019695505050505050565b60016119088382612093565b5060026109f98282612093565b6060600061192283611bdb565b600101905060008167ffffffffffffffff81111561194257611942611d64565b6040519080825280601f01601f19166020018201604052801561196c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461197657509392505050565b6001600160a01b0381166119cf57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116600090815260096020526040812080546119f590600190612169565b81548110611a0557611a0561217c565b9060005260206000200154905060096000836001600160a01b03166001600160a01b03168152602001908152602001600020805480611a4657611a46612192565b600082815260208082208301600019908101839055909201909255828252600a815260408083208390556008825280832080546001600160a01b031990811690915560069092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038116611af757604051634e46966960e11b815260040160405180910390fd5b60038054600101908190556000818152600860205260409020546001600160a01b031615611b385760405163119b4fd360e11b815260040160405180910390fd5b600081815260086020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600983529083208054600181810183558286529385200185905592529054611b909190612169565b6000828152600a602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c1a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c46576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c6457662386f26fc10000830492506010015b6305f5e1008310611c7c576305f5e100830492506008015b6127108310611c9057612710830492506004015b60648310611ca2576064830492506002015b600a83106106355760010192915050565b60005b83811015611cce578181015183820152602001611cb6565b50506000910152565b6020815260008251806020840152611cf6816040850160208701611cb3565b601f01601f19169190910160400192915050565b600060208284031215611d1c57600080fd5b5035919050565b80356001600160a01b0381168114610bf857600080fd5b60008060408385031215611d4d57600080fd5b611d5683611d23565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611d8b57600080fd5b813567ffffffffffffffff80821115611da657611da6611d64565b604051601f8301601f19908116603f01168101908282118183101715611dce57611dce611d64565b81604052838152866020858801011115611de757600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611e1957600080fd5b813567ffffffffffffffff811115611e3057600080fd5b611e3c84828501611d7a565b949350505050565b600080600060608486031215611e5957600080fd5b611e6284611d23565b9250611e7060208501611d23565b9150604084013590509250925092565b60008060408385031215611e9357600080fd5b823567ffffffffffffffff80821115611eab57600080fd5b611eb786838701611d7a565b93506020850135915080821115611ecd57600080fd5b50611eda85828601611d7a565b9150509250929050565b60008060408385031215611ef757600080fd5b611f0083611d23565b915060208301358015158114611f1557600080fd5b809150509250929050565b600060208284031215611f3257600080fd5b610c8382611d23565b600080600080600060808688031215611f5357600080fd5b611f5c86611d23565b9450611f6a60208701611d23565b935060408601359250606086013567ffffffffffffffff80821115611f8e57600080fd5b818801915088601f830112611fa257600080fd5b813581811115611fb157600080fd5b896020828501011115611fc357600080fd5b9699959850939650602001949392505050565b60008060408385031215611fe957600080fd5b611ff283611d23565b915061200060208401611d23565b90509250929050565b600181811c9082168061201d57607f821691505b60208210810361203d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109f9576000816000526020600020601f850160051c8101602086101561206c5750805b601f850160051c820191505b8181101561208b57828155600101612078565b505050505050565b815167ffffffffffffffff8111156120ad576120ad611d64565b6120c1816120bb8454612009565b84612043565b602080601f8311600181146120f657600084156120de5750858301515b600019600386901b1c1916600185901b17855561208b565b600085815260208120601f198616915b8281101561212557888601518255948401946001909101908401612106565b50858210156121435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8181038181111561063557610635612153565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000602082840312156121ba57600080fd5b81516001600160e01b031981168114610c8357600080fd5b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b600080845461223481612009565b6001828116801561224c576001811461226157612290565b60ff1984168752821515830287019450612290565b8860005260208060002060005b858110156122875781548a82015290840190820161226e565b50505082870194505b5050505083516122a4818360208801611cb3565b01949350505050565b6f7b226e616d65223a202243686164202360801b815281516000906122d9816010850160208701611cb3565b9190910160100192915050565b600082516122f8818460208701611cb3565b7f222c226465736372697074696f6e223a22416e20616e696d6174656420636f6c9201918252507f6c656374696f6e206f6620332c30303020436861647320656e61626c6564206260208201527f79204552433430342c20616e206578706572696d656e74616c20746f6b656e2060408201527f7374616e646172642e222c2265787465726e616c5f75726c223a22687474707360608201527f3a2f2f7777772e636861643430342e78797a222c22696d616765223a220000006080820152609d01919050565b600083516123d1818460208801611cb3565b8351908301906122a4818360208801611cb3565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a224d81527130ba32b934b0b61116113b30b63ab2911d1160711b602082015260008251612438816032850160208701611cb3565b9190910160320192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081526000825161247d81601b850160208701611cb3565b91909101601b0192915050565b600181815b808511156124c55781600019048211156124ab576124ab612153565b808516156124b857918102915b93841c939080029061248f565b509250929050565b6000826124dc57506001610635565b816124e957506000610635565b81600181146124ff576002811461250957612525565b6001915050610635565b60ff84111561251a5761251a612153565b50506001821b610635565b5060208310610133831016604e8410600b8410161715612548575081810a610635565b612552838361248a565b806000190482111561256657612566612153565b029392505050565b6000610c8360ff8416836124cd565b60008261259a57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212208714ffe593fa695db17f2160c8ca5e6d17d07d8840bbea70a10af5777b2bee0064736f6c634300081800330000000000000000000000008b099f9c4cfd2528d3d58d58a8440d720204b9bc

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063c87b56dd11610097578063e0df5b6f11610071578063e0df5b6f14610400578063e985e9c514610413578063f28ca1dd14610441578063f2fde38b1461044957600080fd5b8063c87b56dd146103ba578063d547cfb7146103cd578063dd62ed3e146103d557600080fd5b80639b19251a116100d35780639b19251a1461035e578063a22cb46514610381578063a9059cbb14610394578063b88d4fde146103a757600080fd5b806370a08231146103235780638da5cb5b1461034357806395d89b411461035657600080fd5b80632b968958116101665780634f02c420116101405780634f02c420146102e1578063504334c2146102ea57806353d6fd59146102fd5780636352211e1461031057600080fd5b80632b9689581461028d578063313ce5671461029557806342842e0e146102ce57600080fd5b806306fdde03146101ae578063081812fc146101cc578063095ea7b31461020d57806318160ddd1461023057806318d217c31461026557806323b872dd1461027a575b600080fd5b6101b661045c565b6040516101c39190611cd7565b60405180910390f35b6101f56101da366004611d0a565b6006602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b61022061021b366004611d3a565b6104ea565b60405190151581526020016101c3565b6102577f0000000000000000000000000000000000000000000000a2a15d09519be0000081565b6040519081526020016101c3565b610278610273366004611e07565b61063b565b005b610278610288366004611e44565b610675565b6102786109fe565b6102bc7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff90911681526020016101c3565b6102786102dc366004611e44565b610a64565b61025760035481565b6102786102f8366004611e80565b610b39565b61027861030b366004611ee4565b610b6d565b6101f561031e366004611d0a565b610bc2565b610257610331366004611f20565b60046020526000908152604090205481565b6000546101f5906001600160a01b031681565b6101b6610bfd565b61022061036c366004611f20565b600b6020526000908152604090205460ff1681565b61027861038f366004611ee4565b610c0a565b6102206103a2366004611d3a565b610c76565b6102786103b5366004611f3b565b610c8a565b6101b66103c8366004611d0a565b610d4d565b6101b6611630565b6102576103e3366004611fd6565b600560209081526000928352604080842090915290825290205481565b61027861040e366004611e07565b61163d565b610220610421366004611fd6565b600760209081526000928352604080842090915290825290205460ff1681565b6101b6611673565b610278610457366004611f20565b611680565b6001805461046990612009565b80601f016020809104026020016040519081016040528092919081815260200182805461049590612009565b80156104e25780601f106104b7576101008083540402835291602001916104e2565b820191906000526020600020905b8154815290600101906020018083116104c557829003601f168201915b505050505081565b600060035482111580156104fe5750600082115b156105d5576000828152600860205260409020546001600160a01b031633811480159061054f57506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b1561056c576040516282b42960e81b815260040160405180910390fd5b60008381526006602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350610631565b3360008181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b6000546001600160a01b03163314610665576040516282b42960e81b815260040160405180910390fd5b600c6106718282612093565b5050565b600354811161098f576000818152600860205260409020546001600160a01b038481169116146106b857604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0382166106df57604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061071c57506001600160a01b038316600090815260076020908152604080832033845290915290205460ff16155b801561073f57506000818152600660205260409020546001600160a01b03163314155b1561075c576040516282b42960e81b815260040160405180910390fd5b61076461171c565b6001600160a01b0384166000908152600460205260408120805490919061078c908490612169565b9091555061079a905061171c565b6001600160a01b03808416600081815260046020908152604080832080549096019095558582526008815284822080546001600160a01b03199081169094179055600681528482208054909316909255918616825260099052908120805461080490600190612169565b815481106108145761081461217c565b60009182526020808320909101546001600160a01b0387168352600982526040808420868552600a909352909220548154929350839281106108585761085861217c565b60009182526020808320909101929092556001600160a01b038616815260099091526040902080548061088d5761088d612192565b600082815260208082208301600019908101839055909201909255838252600a8152604080832054848452818420556001600160a01b0386168084526009835290832080546001818101835582865293852001869055925290546108f19190612169565b6000838152600a602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761097861171c565b60405190815260200160405180910390a350505050565b6001600160a01b038316600090815260056020908152604080832033845290915290205460001981146109eb576109c68282612169565b6001600160a01b03851660009081526005602090815260408083203384529091529020555b6109f684848461174e565b50505b505050565b6000546001600160a01b03163314610a28576040516282b42960e81b815260040160405180910390fd5b600080546001600160a01b031916815560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610a6f838383610675565b6001600160a01b0382163b15801590610b1b5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610aea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0e91906121a8565b6001600160e01b03191614155b156109f957604051633da6393160e01b815260040160405180910390fd5b6000546001600160a01b03163314610b63576040516282b42960e81b815260040160405180910390fd5b61067182826118fc565b6000546001600160a01b03163314610b97576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000818152600860205260409020546001600160a01b031680610bf85760405163c5723b5160e01b815260040160405180910390fd5b919050565b6002805461046990612009565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c8333848461174e565b9392505050565b610c95858585610675565b6001600160a01b0384163b15801590610d2f5750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a0290610cdf9033908a908990899089906004016121d2565b6020604051808303816000875af1158015610cfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2291906121a8565b6001600160e01b03191614155b156109f657604051633da6393160e01b815260040160405180910390fd5b60606000600d8054610d5e90612009565b90501115610d9857600d610d7183611915565b604051602001610d82929190612226565b6040516020818303038152906040529050919050565b600082604051602001610dad91815260200190565b6040516020818303038152906040528051906020012060f81c905060608060008360ff1611610e265760405180604001604052806006815260200165189c1733b4b360d11b81525091506040518060400160405280600f81526020016e04164616d616e74696e6520506f6f7608c1b8152509050611501565b60028360ff1611610e7e5760405180604001604052806006815260200165189b9733b4b360d11b81525091506040518060400160405280600c81526020016b111a585b5bdb990810da185960a21b8152509050611501565b600a8360ff1611610ee75760405180604001604052806006815260200165189b1733b4b360d11b81525091506040518060400160405280601781526020017f476f6c64656e2043686164203173742045646974696f6e0000000000000000008152509050611501565b60128360ff1611610f505760405180604001604052806006815260200165189a9733b4b360d11b81525091506040518060400160405280601781526020017f476f6c64656e204368616420326e642045646974696f6e0000000000000000008152509050611501565b601a8360ff1611610fb95760405180604001604052806006815260200165189a1733b4b360d11b81525091506040518060400160405280601781526020017f476f6c64656e2043686164203372642045646974696f6e0000000000000000008152509050611501565b60268360ff1611611022576040518060400160405280600681526020016518999733b4b360d11b81525091506040518060400160405280601981526020017f53696c76657265642043686164203173742045646974696f6e000000000000008152509050611501565b60328360ff161161108b576040518060400160405280600681526020016518991733b4b360d11b81525091506040518060400160405280601981526020017f53696c7665726564204368616420326e642045646974696f6e000000000000008152509050611501565b603e8360ff16116110f4576040518060400160405280600681526020016518989733b4b360d11b81525091506040518060400160405280601981526020017f53696c76657265642043686164203372642045646974696f6e000000000000008152509050611501565b604a8360ff161161115d576040518060400160405280600681526020016518981733b4b360d11b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203173742045646974696f6e00000000000000008152509050611501565b60568360ff16116111c557604051806040016040528060058152602001641c9733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a6564204368616420326e642045646974696f6e00000000000000008152509050611501565b60628360ff161161122d57604051806040016040528060058152602001641c1733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203372642045646974696f6e00000000000000008152509050611501565b606e8360ff161161129557604051806040016040528060058152602001641b9733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203474682045646974696f6e00000000000000008152509050611501565b607a8360ff16116112fd57604051806040016040528060058152602001641b1733b4b360d91b81525091506040518060400160405280601881526020017f42726f6e7a65642043686164203574682045646974696f6e00000000000000008152509050611501565b60928360ff161161136557604051806040016040528060058152602001641a9733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203173742045646974696f6e0000000000000000008152509050611501565b60aa8360ff16116113cd57604051806040016040528060058152602001641a1733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e204368616420326e642045646974696f6e0000000000000000008152509050611501565b60c28360ff16116114355760405180604001604052806005815260200164199733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203372642045646974696f6e0000000000000000008152509050611501565b60da8360ff161161149d5760405180604001604052806005815260200164191733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203474682045646974696f6e0000000000000000008152509050611501565b60f28360ff16116115015760405180604001604052806005815260200164189733b4b360d91b81525091506040518060400160405280601781526020017f576f6f64656e2043686164203574682045646974696f6e00000000000000000081525090505b600061150c86611915565b60405160200161151c91906122ad565b60408051601f1981840301815290829052611539916020016122e6565b604051602081830303815290604052600c8460405160200161155c929190612226565b60408051601f198184030181529082905261157a92916020016123bf565b604051602081830303815290604052905060008260405160200161159e91906123e5565b60408051601f1981840301815282820182526004835263227d5d7d60e01b60208481019190915291519093506115d89185918591016123bf565b60408051601f19818403018152908290526115f79183906020016123bf565b60408051601f198184030181529082905261161491602001612445565b6040516020818303038152906040529650505050505050919050565b600d805461046990612009565b6000546001600160a01b03163314611667576040516282b42960e81b815260040160405180910390fd5b600d6106718282612093565b600c805461046990612009565b6000546001600160a01b031633146116aa576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381166116d1576040516349e27cff60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60006117497f0000000000000000000000000000000000000000000000000000000000000012600a61256e565b905090565b60008061175961171c565b6001600160a01b038087166000818152600460205260408082208054948a16835290822054928252939450919290918691906117958386612169565b90915550506001600160a01b03808716600090815260046020908152604080832080548a019055928a168252600b9052205460ff16611827576001600160a01b0387166000908152600460205260408120546117f290859061257d565b6117fc858561257d565b6118069190612169565b905060005b818110156118245761181c896119a8565b60010161180b565b50505b6001600160a01b0386166000908152600b602052604090205460ff166118a2576000611853848361257d565b6001600160a01b03881660009081526004602052604090205461187790869061257d565b6118819190612169565b905060005b8181101561189f5761189788611ad0565b600101611886565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516118e791815260200190565b60405180910390a35060019695505050505050565b60016119088382612093565b5060026109f98282612093565b6060600061192283611bdb565b600101905060008167ffffffffffffffff81111561194257611942611d64565b6040519080825280601f01601f19166020018201604052801561196c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461197657509392505050565b6001600160a01b0381166119cf57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116600090815260096020526040812080546119f590600190612169565b81548110611a0557611a0561217c565b9060005260206000200154905060096000836001600160a01b03166001600160a01b03168152602001908152602001600020805480611a4657611a46612192565b600082815260208082208301600019908101839055909201909255828252600a815260408083208390556008825280832080546001600160a01b031990811690915560069092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038116611af757604051634e46966960e11b815260040160405180910390fd5b60038054600101908190556000818152600860205260409020546001600160a01b031615611b385760405163119b4fd360e11b815260040160405180910390fd5b600081815260086020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600983529083208054600181810183558286529385200185905592529054611b909190612169565b6000828152600a602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c1a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c46576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c6457662386f26fc10000830492506010015b6305f5e1008310611c7c576305f5e100830492506008015b6127108310611c9057612710830492506004015b60648310611ca2576064830492506002015b600a83106106355760010192915050565b60005b83811015611cce578181015183820152602001611cb6565b50506000910152565b6020815260008251806020840152611cf6816040850160208701611cb3565b601f01601f19169190910160400192915050565b600060208284031215611d1c57600080fd5b5035919050565b80356001600160a01b0381168114610bf857600080fd5b60008060408385031215611d4d57600080fd5b611d5683611d23565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611d8b57600080fd5b813567ffffffffffffffff80821115611da657611da6611d64565b604051601f8301601f19908116603f01168101908282118183101715611dce57611dce611d64565b81604052838152866020858801011115611de757600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611e1957600080fd5b813567ffffffffffffffff811115611e3057600080fd5b611e3c84828501611d7a565b949350505050565b600080600060608486031215611e5957600080fd5b611e6284611d23565b9250611e7060208501611d23565b9150604084013590509250925092565b60008060408385031215611e9357600080fd5b823567ffffffffffffffff80821115611eab57600080fd5b611eb786838701611d7a565b93506020850135915080821115611ecd57600080fd5b50611eda85828601611d7a565b9150509250929050565b60008060408385031215611ef757600080fd5b611f0083611d23565b915060208301358015158114611f1557600080fd5b809150509250929050565b600060208284031215611f3257600080fd5b610c8382611d23565b600080600080600060808688031215611f5357600080fd5b611f5c86611d23565b9450611f6a60208701611d23565b935060408601359250606086013567ffffffffffffffff80821115611f8e57600080fd5b818801915088601f830112611fa257600080fd5b813581811115611fb157600080fd5b896020828501011115611fc357600080fd5b9699959850939650602001949392505050565b60008060408385031215611fe957600080fd5b611ff283611d23565b915061200060208401611d23565b90509250929050565b600181811c9082168061201d57607f821691505b60208210810361203d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109f9576000816000526020600020601f850160051c8101602086101561206c5750805b601f850160051c820191505b8181101561208b57828155600101612078565b505050505050565b815167ffffffffffffffff8111156120ad576120ad611d64565b6120c1816120bb8454612009565b84612043565b602080601f8311600181146120f657600084156120de5750858301515b600019600386901b1c1916600185901b17855561208b565b600085815260208120601f198616915b8281101561212557888601518255948401946001909101908401612106565b50858210156121435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8181038181111561063557610635612153565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000602082840312156121ba57600080fd5b81516001600160e01b031981168114610c8357600080fd5b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290526000828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b600080845461223481612009565b6001828116801561224c576001811461226157612290565b60ff1984168752821515830287019450612290565b8860005260208060002060005b858110156122875781548a82015290840190820161226e565b50505082870194505b5050505083516122a4818360208801611cb3565b01949350505050565b6f7b226e616d65223a202243686164202360801b815281516000906122d9816010850160208701611cb3565b9190910160100192915050565b600082516122f8818460208701611cb3565b7f222c226465736372697074696f6e223a22416e20616e696d6174656420636f6c9201918252507f6c656374696f6e206f6620332c30303020436861647320656e61626c6564206260208201527f79204552433430342c20616e206578706572696d656e74616c20746f6b656e2060408201527f7374616e646172642e222c2265787465726e616c5f75726c223a22687474707360608201527f3a2f2f7777772e636861643430342e78797a222c22696d616765223a220000006080820152609d01919050565b600083516123d1818460208801611cb3565b8351908301906122a4818360208801611cb3565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a224d81527130ba32b934b0b61116113b30b63ab2911d1160711b602082015260008251612438816032850160208701611cb3565b9190910160320192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081526000825161247d81601b850160208701611cb3565b91909101601b0192915050565b600181815b808511156124c55781600019048211156124ab576124ab612153565b808516156124b857918102915b93841c939080029061248f565b509250929050565b6000826124dc57506001610635565b816124e957506000610635565b81600181146124ff576002811461250957612525565b6001915050610635565b60ff84111561251a5761251a612153565b50506001821b610635565b5060208310610133831016604e8410600b8410161715612548575081810a610635565b612552838361248a565b806000190482111561256657612566612153565b029392505050565b6000610c8360ff8416836124cd565b60008261259a57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212208714ffe593fa695db17f2160c8ca5e6d17d07d8840bbea70a10af5777b2bee0064736f6c63430008180033

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

0000000000000000000000008b099f9c4cfd2528d3d58d58a8440d720204b9bc

-----Decoded View---------------
Arg [0] : _owner (address): 0x8b099f9c4cfd2528d3d58D58A8440d720204b9bc

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b099f9c4cfd2528d3d58d58a8440d720204b9bc


Loading...
Loading
Loading...
Loading
[ 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.