ETH Price: $3,151.68 (-4.45%)
Gas: 4 Gwei

Token

re incarnate (REINCARNATE)
 

Overview

Max Total Supply

1,052 REINCARNATE

Holders

732

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
orgen.eth
Balance
1 REINCARNATE
0x944b8a5c94055a761d518ee11c6c370b139eff28
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:
reincarnate

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: contracts/reincarnate.sol


pragma solidity ^0.8.4;



contract reincarnate is ERC721A, Ownable {
    string public here;
    uint256 public MAX_PORTAL = 1052;
    uint256 public doom = 1;

    constructor(string memory _here) ERC721A("re incarnate", "REINCARNATE") {
        whereto(_here);
    }

    function _baseURI() 
        internal 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        return here;
    }

    function incarnate(uint256 qty) external {
        uint256 TOTAL_PORTAL = totalSupply();
        require(TOTAL_PORTAL + qty <= MAX_PORTAL, "it's gone");
        require(balanceOf(msg.sender) + qty <= doom, "too much");
        _mint(msg.sender, qty);
    }

    function whereto(string memory _here) public onlyOwner {
        here = _here;
    }

    function war(uint256 _doom) public onlyOwner {
        doom = _doom;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_here","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PORTAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"here","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"incarnate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"tokenId","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_doom","type":"uint256"}],"name":"war","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_here","type":"string"}],"name":"whereto","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261041c600a556001600b553480156200001c57600080fd5b5060405162002c3038038062002c30833981810160405281019062000042919062000406565b6040518060400160405280600c81526020017f726520696e6361726e61746500000000000000000000000000000000000000008152506040518060400160405280600b81526020017f5245494e4341524e4154450000000000000000000000000000000000000000008152508160029080519060200190620000c6929190620002d8565b508060039080519060200190620000df929190620002d8565b50620000f06200013060201b60201c565b6000819055505050620001186200010c6200013560201b60201c565b6200013d60201b60201c565b62000129816200020360201b60201c565b506200065e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002136200013560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000239620002ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000289906200047e565b60405180910390fd5b8060099080519060200190620002aa929190620002d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e69062000546565b90600052602060002090601f0160209004810192826200030a576000855562000356565b82601f106200032557805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035557825182559160200191906001019062000338565b5b50905062000365919062000369565b5090565b5b80821115620003845760008160009055506001016200036a565b5090565b60006200039f6200039984620004c9565b620004a0565b905082815260208101848484011115620003be57620003bd62000615565b5b620003cb84828562000510565b509392505050565b600082601f830112620003eb57620003ea62000610565b5b8151620003fd84826020860162000388565b91505092915050565b6000602082840312156200041f576200041e6200061f565b5b600082015167ffffffffffffffff81111562000440576200043f6200061a565b5b6200044e84828501620003d3565b91505092915050565b600062000466602083620004ff565b9150620004738262000635565b602082019050919050565b60006020820190508181036000830152620004998162000457565b9050919050565b6000620004ac620004bf565b9050620004ba82826200057c565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e757620004e6620005e1565b5b620004f28262000624565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053057808201518184015260208101905062000513565b8381111562000540576000848401525b50505050565b600060028204905060018216806200055f57607f821691505b60208210811415620005765762000575620005b2565b5b50919050565b620005878262000624565b810181811067ffffffffffffffff82111715620005a957620005a8620005e1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6125c2806200066e6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c269eaf814610394578063c87b56dd146103b0578063cc5ea9c3146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b806370a08231146102ca578063715018a6146102fa5780638da5cb5b1461030457806395d89b4114610322578063a22cb46514610340578063b428e7151461035c5761014d565b806323b872dd1161011557806323b872dd1461020a57806326b238d8146102265780632fa01b1114610244578063314331a01461026257806342842e0e1461027e5780636352211e1461029a5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190611dec565b61044a565b60405161017991906120a3565b60405180910390f35b61018a6104dc565b60405161019791906120be565b60405180910390f35b6101ba60048036038101906101b59190611e8f565b61056e565b6040516101c7919061203c565b60405180910390f35b6101ea60048036038101906101e59190611dac565b6105ea565b005b6101f4610791565b6040516102019190612160565b60405180910390f35b610224600480360381019061021f9190611c96565b6107a8565b005b61022e6107b8565b60405161023b9190612160565b60405180910390f35b61024c6107be565b6040516102599190612160565b60405180910390f35b61027c60048036038101906102779190611e46565b6107c4565b005b61029860048036038101906102939190611c96565b61085a565b005b6102b460048036038101906102af9190611e8f565b61087a565b6040516102c1919061203c565b60405180910390f35b6102e460048036038101906102df9190611c29565b61088c565b6040516102f19190612160565b60405180910390f35b610302610921565b005b61030c6109a9565b604051610319919061203c565b60405180910390f35b61032a6109d3565b60405161033791906120be565b60405180910390f35b61035a60048036038101906103559190611d6c565b610a65565b005b61037660048036038101906103719190611e8f565b610bdd565b005b610392600480360381019061038d9190611ce9565b610c63565b005b6103ae60048036038101906103a99190611e8f565b610cd6565b005b6103ca60048036038101906103c59190611e8f565b610d98565b6040516103d791906120be565b60405180910390f35b6103e8610e37565b6040516103f591906120be565b60405180910390f35b61041860048036038101906104139190611c56565b610ec5565b60405161042591906120a3565b60405180910390f35b61044860048036038101906104439190611c29565b610f59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104a557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546104eb90612351565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612351565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057982611051565b6105af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f5826110b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661067c61117e565b73ffffffffffffffffffffffffffffffffffffffff16146106df576106a8816106a361117e565b610ec5565b6106de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079b611186565b6001546000540303905090565b6107b383838361118b565b505050565b600b5481565b600a5481565b6107cc611553565b73ffffffffffffffffffffffffffffffffffffffff166107ea6109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790612140565b60405180910390fd5b8060099080519060200190610856929190611a3d565b5050565b61087583838360405180602001604052806000815250610c63565b505050565b6000610885826110b0565b9050919050565b6000806108988361155b565b14156108d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610929611553565b73ffffffffffffffffffffffffffffffffffffffff166109476109a9565b73ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612140565b60405180910390fd5b6109a76000611565565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546109e290612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0e90612351565b8015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b5050505050905090565b610a6d61117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610adf61117e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b8c61117e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bd191906120a3565b60405180910390a35050565b610be5611553565b73ffffffffffffffffffffffffffffffffffffffff16610c036109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090612140565b60405180910390fd5b80600b8190555050565b610c6e84848461118b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610cd057610c998484848461162b565b610ccf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000610ce0610791565b9050600a548282610cf19190612245565b1115610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990612120565b60405180910390fd5b600b5482610d3f3361088c565b610d499190612245565b1115610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906120e0565b60405180910390fd5b610d94338361178b565b5050565b6060610da382611051565b610dd9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de361193b565b9050600081511415610e045760405180602001604052806000815250610e2f565b80610e0e846119cd565b604051602001610e1f929190612018565b6040516020818303038152906040525b915050919050565b60098054610e4490612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7090612351565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f61611553565b73ffffffffffffffffffffffffffffffffffffffff16610f7f6109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90612140565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612100565b60405180910390fd5b61104e81611565565b50565b60008161105c611186565b1115801561106b575060005482105b80156110a9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806110bf611186565b11611147576000548110156111465760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611144575b600081141561113a57600460008360019003935083815260200190815260200160002054905061110f565b8092505050611179565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611196826110b0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111fd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661125661117e565b73ffffffffffffffffffffffffffffffffffffffff16148061128557506112848661127f61117e565b610ec5565b5b806112c2575061129361117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113068661155b565b141561133e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b8686866001611a27565b60006113568361155b565b14611392576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114598761155b565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156114e35760006001850190506000600460008381526020019081526020016000205414156114e15760005481146114e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461154b8686866001611a2d565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261165161117e565b8786866040518563ffffffff1660e01b81526004016116739493929190612057565b602060405180830381600087803b15801561168d57600080fd5b505af19250505080156116be57506040513d601f19601f820116820180604052508101906116bb9190611e19565b60015b611738573d80600081146116ee576040519150601f19603f3d011682016040523d82523d6000602084013e6116f3565b606091505b50600081511415611730576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600061179c8461155b565b14156117d4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561180f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181c6000848385611a27565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161188160018414611a33565b901b60a042901b6118918561155b565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106118b7578160008190555050506119366000848385611a2d565b505050565b60606009805461194a90612351565b80601f016020809104026020016040519081016040528092919081815260200182805461197690612351565b80156119c35780601f10611998576101008083540402835291602001916119c3565b820191906000526020600020905b8154815290600101906020018083116119a657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a1357600183039250600a81066030018353600a810490506119f3565b508181036020830392508083525050919050565b50505050565b50505050565b6000819050919050565b828054611a4990612351565b90600052602060002090601f016020900481019282611a6b5760008555611ab2565b82601f10611a8457805160ff1916838001178555611ab2565b82800160010185558215611ab2579182015b82811115611ab1578251825591602001919060010190611a96565b5b509050611abf9190611ac3565b5090565b5b80821115611adc576000816000905550600101611ac4565b5090565b6000611af3611aee846121a0565b61217b565b905082815260208101848484011115611b0f57611b0e612446565b5b611b1a84828561230f565b509392505050565b6000611b35611b30846121d1565b61217b565b905082815260208101848484011115611b5157611b50612446565b5b611b5c84828561230f565b509392505050565b600081359050611b7381612530565b92915050565b600081359050611b8881612547565b92915050565b600081359050611b9d8161255e565b92915050565b600081519050611bb28161255e565b92915050565b600082601f830112611bcd57611bcc612441565b5b8135611bdd848260208601611ae0565b91505092915050565b600082601f830112611bfb57611bfa612441565b5b8135611c0b848260208601611b22565b91505092915050565b600081359050611c2381612575565b92915050565b600060208284031215611c3f57611c3e612450565b5b6000611c4d84828501611b64565b91505092915050565b60008060408385031215611c6d57611c6c612450565b5b6000611c7b85828601611b64565b9250506020611c8c85828601611b64565b9150509250929050565b600080600060608486031215611caf57611cae612450565b5b6000611cbd86828701611b64565b9350506020611cce86828701611b64565b9250506040611cdf86828701611c14565b9150509250925092565b60008060008060808587031215611d0357611d02612450565b5b6000611d1187828801611b64565b9450506020611d2287828801611b64565b9350506040611d3387828801611c14565b925050606085013567ffffffffffffffff811115611d5457611d5361244b565b5b611d6087828801611bb8565b91505092959194509250565b60008060408385031215611d8357611d82612450565b5b6000611d9185828601611b64565b9250506020611da285828601611b79565b9150509250929050565b60008060408385031215611dc357611dc2612450565b5b6000611dd185828601611b64565b9250506020611de285828601611c14565b9150509250929050565b600060208284031215611e0257611e01612450565b5b6000611e1084828501611b8e565b91505092915050565b600060208284031215611e2f57611e2e612450565b5b6000611e3d84828501611ba3565b91505092915050565b600060208284031215611e5c57611e5b612450565b5b600082013567ffffffffffffffff811115611e7a57611e7961244b565b5b611e8684828501611be6565b91505092915050565b600060208284031215611ea557611ea4612450565b5b6000611eb384828501611c14565b91505092915050565b611ec58161229b565b82525050565b611ed4816122ad565b82525050565b6000611ee582612202565b611eef8185612218565b9350611eff81856020860161231e565b611f0881612455565b840191505092915050565b6000611f1e8261220d565b611f288185612229565b9350611f3881856020860161231e565b611f4181612455565b840191505092915050565b6000611f578261220d565b611f61818561223a565b9350611f7181856020860161231e565b80840191505092915050565b6000611f8a600883612229565b9150611f9582612466565b602082019050919050565b6000611fad602683612229565b9150611fb88261248f565b604082019050919050565b6000611fd0600983612229565b9150611fdb826124de565b602082019050919050565b6000611ff3602083612229565b9150611ffe82612507565b602082019050919050565b61201281612305565b82525050565b60006120248285611f4c565b91506120308284611f4c565b91508190509392505050565b60006020820190506120516000830184611ebc565b92915050565b600060808201905061206c6000830187611ebc565b6120796020830186611ebc565b6120866040830185612009565b81810360608301526120988184611eda565b905095945050505050565b60006020820190506120b86000830184611ecb565b92915050565b600060208201905081810360008301526120d88184611f13565b905092915050565b600060208201905081810360008301526120f981611f7d565b9050919050565b6000602082019050818103600083015261211981611fa0565b9050919050565b6000602082019050818103600083015261213981611fc3565b9050919050565b6000602082019050818103600083015261215981611fe6565b9050919050565b60006020820190506121756000830184612009565b92915050565b6000612185612196565b90506121918282612383565b919050565b6000604051905090565b600067ffffffffffffffff8211156121bb576121ba612412565b5b6121c482612455565b9050602081019050919050565b600067ffffffffffffffff8211156121ec576121eb612412565b5b6121f582612455565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061225082612305565b915061225b83612305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122905761228f6123b4565b5b828201905092915050565b60006122a6826122e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561233c578082015181840152602081019050612321565b8381111561234b576000848401525b50505050565b6000600282049050600182168061236957607f821691505b6020821081141561237d5761237c6123e3565b5b50919050565b61238c82612455565b810181811067ffffffffffffffff821117156123ab576123aa612412565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f746f6f206d756368000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6974277320676f6e650000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6125398161229b565b811461254457600080fd5b50565b612550816122ad565b811461255b57600080fd5b50565b612567816122b9565b811461257257600080fd5b50565b61257e81612305565b811461258957600080fd5b5056fea2646970667358221220c01512978b62334d7219754d0ff594ed3cf39f0b68e91f0d67af6ef0293b60be64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000026177000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c269eaf814610394578063c87b56dd146103b0578063cc5ea9c3146103e0578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b806370a08231146102ca578063715018a6146102fa5780638da5cb5b1461030457806395d89b4114610322578063a22cb46514610340578063b428e7151461035c5761014d565b806323b872dd1161011557806323b872dd1461020a57806326b238d8146102265780632fa01b1114610244578063314331a01461026257806342842e0e1461027e5780636352211e1461029a5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190611dec565b61044a565b60405161017991906120a3565b60405180910390f35b61018a6104dc565b60405161019791906120be565b60405180910390f35b6101ba60048036038101906101b59190611e8f565b61056e565b6040516101c7919061203c565b60405180910390f35b6101ea60048036038101906101e59190611dac565b6105ea565b005b6101f4610791565b6040516102019190612160565b60405180910390f35b610224600480360381019061021f9190611c96565b6107a8565b005b61022e6107b8565b60405161023b9190612160565b60405180910390f35b61024c6107be565b6040516102599190612160565b60405180910390f35b61027c60048036038101906102779190611e46565b6107c4565b005b61029860048036038101906102939190611c96565b61085a565b005b6102b460048036038101906102af9190611e8f565b61087a565b6040516102c1919061203c565b60405180910390f35b6102e460048036038101906102df9190611c29565b61088c565b6040516102f19190612160565b60405180910390f35b610302610921565b005b61030c6109a9565b604051610319919061203c565b60405180910390f35b61032a6109d3565b60405161033791906120be565b60405180910390f35b61035a60048036038101906103559190611d6c565b610a65565b005b61037660048036038101906103719190611e8f565b610bdd565b005b610392600480360381019061038d9190611ce9565b610c63565b005b6103ae60048036038101906103a99190611e8f565b610cd6565b005b6103ca60048036038101906103c59190611e8f565b610d98565b6040516103d791906120be565b60405180910390f35b6103e8610e37565b6040516103f591906120be565b60405180910390f35b61041860048036038101906104139190611c56565b610ec5565b60405161042591906120a3565b60405180910390f35b61044860048036038101906104439190611c29565b610f59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104a557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546104eb90612351565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612351565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057982611051565b6105af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f5826110b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661067c61117e565b73ffffffffffffffffffffffffffffffffffffffff16146106df576106a8816106a361117e565b610ec5565b6106de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079b611186565b6001546000540303905090565b6107b383838361118b565b505050565b600b5481565b600a5481565b6107cc611553565b73ffffffffffffffffffffffffffffffffffffffff166107ea6109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790612140565b60405180910390fd5b8060099080519060200190610856929190611a3d565b5050565b61087583838360405180602001604052806000815250610c63565b505050565b6000610885826110b0565b9050919050565b6000806108988361155b565b14156108d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610929611553565b73ffffffffffffffffffffffffffffffffffffffff166109476109a9565b73ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612140565b60405180910390fd5b6109a76000611565565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546109e290612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0e90612351565b8015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b5050505050905090565b610a6d61117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610adf61117e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610b8c61117e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610bd191906120a3565b60405180910390a35050565b610be5611553565b73ffffffffffffffffffffffffffffffffffffffff16610c036109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090612140565b60405180910390fd5b80600b8190555050565b610c6e84848461118b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610cd057610c998484848461162b565b610ccf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000610ce0610791565b9050600a548282610cf19190612245565b1115610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990612120565b60405180910390fd5b600b5482610d3f3361088c565b610d499190612245565b1115610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906120e0565b60405180910390fd5b610d94338361178b565b5050565b6060610da382611051565b610dd9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de361193b565b9050600081511415610e045760405180602001604052806000815250610e2f565b80610e0e846119cd565b604051602001610e1f929190612018565b6040516020818303038152906040525b915050919050565b60098054610e4490612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7090612351565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f61611553565b73ffffffffffffffffffffffffffffffffffffffff16610f7f6109a9565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90612140565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612100565b60405180910390fd5b61104e81611565565b50565b60008161105c611186565b1115801561106b575060005482105b80156110a9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806110bf611186565b11611147576000548110156111465760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611144575b600081141561113a57600460008360019003935083815260200190815260200160002054905061110f565b8092505050611179565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611196826110b0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111fd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661125661117e565b73ffffffffffffffffffffffffffffffffffffffff16148061128557506112848661127f61117e565b610ec5565b5b806112c2575061129361117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113068661155b565b141561133e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b8686866001611a27565b60006113568361155b565b14611392576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114598761155b565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156114e35760006001850190506000600460008381526020019081526020016000205414156114e15760005481146114e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461154b8686866001611a2d565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261165161117e565b8786866040518563ffffffff1660e01b81526004016116739493929190612057565b602060405180830381600087803b15801561168d57600080fd5b505af19250505080156116be57506040513d601f19601f820116820180604052508101906116bb9190611e19565b60015b611738573d80600081146116ee576040519150601f19603f3d011682016040523d82523d6000602084013e6116f3565b606091505b50600081511415611730576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600061179c8461155b565b14156117d4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561180f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181c6000848385611a27565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161188160018414611a33565b901b60a042901b6118918561155b565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106118b7578160008190555050506119366000848385611a2d565b505050565b60606009805461194a90612351565b80601f016020809104026020016040519081016040528092919081815260200182805461197690612351565b80156119c35780601f10611998576101008083540402835291602001916119c3565b820191906000526020600020905b8154815290600101906020018083116119a657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a1357600183039250600a81066030018353600a810490506119f3565b508181036020830392508083525050919050565b50505050565b50505050565b6000819050919050565b828054611a4990612351565b90600052602060002090601f016020900481019282611a6b5760008555611ab2565b82601f10611a8457805160ff1916838001178555611ab2565b82800160010185558215611ab2579182015b82811115611ab1578251825591602001919060010190611a96565b5b509050611abf9190611ac3565b5090565b5b80821115611adc576000816000905550600101611ac4565b5090565b6000611af3611aee846121a0565b61217b565b905082815260208101848484011115611b0f57611b0e612446565b5b611b1a84828561230f565b509392505050565b6000611b35611b30846121d1565b61217b565b905082815260208101848484011115611b5157611b50612446565b5b611b5c84828561230f565b509392505050565b600081359050611b7381612530565b92915050565b600081359050611b8881612547565b92915050565b600081359050611b9d8161255e565b92915050565b600081519050611bb28161255e565b92915050565b600082601f830112611bcd57611bcc612441565b5b8135611bdd848260208601611ae0565b91505092915050565b600082601f830112611bfb57611bfa612441565b5b8135611c0b848260208601611b22565b91505092915050565b600081359050611c2381612575565b92915050565b600060208284031215611c3f57611c3e612450565b5b6000611c4d84828501611b64565b91505092915050565b60008060408385031215611c6d57611c6c612450565b5b6000611c7b85828601611b64565b9250506020611c8c85828601611b64565b9150509250929050565b600080600060608486031215611caf57611cae612450565b5b6000611cbd86828701611b64565b9350506020611cce86828701611b64565b9250506040611cdf86828701611c14565b9150509250925092565b60008060008060808587031215611d0357611d02612450565b5b6000611d1187828801611b64565b9450506020611d2287828801611b64565b9350506040611d3387828801611c14565b925050606085013567ffffffffffffffff811115611d5457611d5361244b565b5b611d6087828801611bb8565b91505092959194509250565b60008060408385031215611d8357611d82612450565b5b6000611d9185828601611b64565b9250506020611da285828601611b79565b9150509250929050565b60008060408385031215611dc357611dc2612450565b5b6000611dd185828601611b64565b9250506020611de285828601611c14565b9150509250929050565b600060208284031215611e0257611e01612450565b5b6000611e1084828501611b8e565b91505092915050565b600060208284031215611e2f57611e2e612450565b5b6000611e3d84828501611ba3565b91505092915050565b600060208284031215611e5c57611e5b612450565b5b600082013567ffffffffffffffff811115611e7a57611e7961244b565b5b611e8684828501611be6565b91505092915050565b600060208284031215611ea557611ea4612450565b5b6000611eb384828501611c14565b91505092915050565b611ec58161229b565b82525050565b611ed4816122ad565b82525050565b6000611ee582612202565b611eef8185612218565b9350611eff81856020860161231e565b611f0881612455565b840191505092915050565b6000611f1e8261220d565b611f288185612229565b9350611f3881856020860161231e565b611f4181612455565b840191505092915050565b6000611f578261220d565b611f61818561223a565b9350611f7181856020860161231e565b80840191505092915050565b6000611f8a600883612229565b9150611f9582612466565b602082019050919050565b6000611fad602683612229565b9150611fb88261248f565b604082019050919050565b6000611fd0600983612229565b9150611fdb826124de565b602082019050919050565b6000611ff3602083612229565b9150611ffe82612507565b602082019050919050565b61201281612305565b82525050565b60006120248285611f4c565b91506120308284611f4c565b91508190509392505050565b60006020820190506120516000830184611ebc565b92915050565b600060808201905061206c6000830187611ebc565b6120796020830186611ebc565b6120866040830185612009565b81810360608301526120988184611eda565b905095945050505050565b60006020820190506120b86000830184611ecb565b92915050565b600060208201905081810360008301526120d88184611f13565b905092915050565b600060208201905081810360008301526120f981611f7d565b9050919050565b6000602082019050818103600083015261211981611fa0565b9050919050565b6000602082019050818103600083015261213981611fc3565b9050919050565b6000602082019050818103600083015261215981611fe6565b9050919050565b60006020820190506121756000830184612009565b92915050565b6000612185612196565b90506121918282612383565b919050565b6000604051905090565b600067ffffffffffffffff8211156121bb576121ba612412565b5b6121c482612455565b9050602081019050919050565b600067ffffffffffffffff8211156121ec576121eb612412565b5b6121f582612455565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061225082612305565b915061225b83612305565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122905761228f6123b4565b5b828201905092915050565b60006122a6826122e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561233c578082015181840152602081019050612321565b8381111561234b576000848401525b50505050565b6000600282049050600182168061236957607f821691505b6020821081141561237d5761237c6123e3565b5b50919050565b61238c82612455565b810181811067ffffffffffffffff821117156123ab576123aa612412565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f746f6f206d756368000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6974277320676f6e650000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6125398161229b565b811461254457600080fd5b50565b612550816122ad565b811461255b57600080fd5b50565b612567816122b9565b811461257257600080fd5b50565b61257e81612305565b811461258957600080fd5b5056fea2646970667358221220c01512978b62334d7219754d0ff594ed3cf39f0b68e91f0d67af6ef0293b60be64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000026177000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _here (string): aw

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 6177000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42110:868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16488:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21511:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23579:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23039:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15542:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24465:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42222:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42183:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42805:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24706:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21300:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17167:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21680:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23855:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42899:76;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24962:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42536:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21855:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42158:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24234:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16488:615;16573:4;16888:10;16873:25;;:11;:25;;;;:102;;;;16965:10;16950:25;;:11;:25;;;;16873:102;:179;;;;17042:10;17027:25;;:11;:25;;;;16873:179;16853:199;;16488:615;;;:::o;21511:100::-;21565:13;21598:5;21591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21511:100;:::o;23579:204::-;23647:7;23672:16;23680:7;23672;:16::i;:::-;23667:64;;23697:34;;;;;;;;;;;;;;23667:64;23751:15;:24;23767:7;23751:24;;;;;;;;;;;;;;;;;;;;;23744:31;;23579:204;;;:::o;23039:474::-;23112:13;23144:27;23163:7;23144:18;:27::i;:::-;23112:61;;23194:5;23188:11;;:2;:11;;;23184:48;;;23208:24;;;;;;;;;;;;;;23184:48;23272:5;23249:28;;:19;:17;:19::i;:::-;:28;;;23245:175;;23297:44;23314:5;23321:19;:17;:19::i;:::-;23297:16;:44::i;:::-;23292:128;;23369:35;;;;;;;;;;;;;;23292:128;23245:175;23459:2;23432:15;:24;23448:7;23432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23497:7;23493:2;23477:28;;23486:5;23477:28;;;;;;;;;;;;23101:412;23039:474;;:::o;15542:315::-;15595:7;15823:15;:13;:15::i;:::-;15808:12;;15792:13;;:28;:46;15785:53;;15542:315;:::o;24465:170::-;24599:28;24609:4;24615:2;24619:7;24599:9;:28::i;:::-;24465:170;;;:::o;42222:23::-;;;;:::o;42183:32::-;;;;:::o;42805:86::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42878:5:::1;42871:4;:12;;;;;;;;;;;;:::i;:::-;;42805:86:::0;:::o;24706:185::-;24844:39;24861:4;24867:2;24871:7;24844:39;;;;;;;;;;;;:16;:39::i;:::-;24706:185;;;:::o;21300:144::-;21364:7;21407:27;21426:7;21407:18;:27::i;:::-;21384:52;;21300:144;;;:::o;17167:234::-;17231:7;17283:1;17255:24;17273:5;17255:17;:24::i;:::-;:29;17251:70;;;17293:28;;;;;;;;;;;;;;17251:70;12512:13;17339:18;:25;17358:5;17339:25;;;;;;;;;;;;;;;;:54;17332:61;;17167:234;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;21680:104::-;21736:13;21769:7;21762:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21680:104;:::o;23855:308::-;23966:19;:17;:19::i;:::-;23954:31;;:8;:31;;;23950:61;;;23994:17;;;;;;;;;;;;;;23950:61;24076:8;24024:18;:39;24043:19;:17;:19::i;:::-;24024:39;;;;;;;;;;;;;;;:49;24064:8;24024:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24136:8;24100:55;;24115:19;:17;:19::i;:::-;24100:55;;;24146:8;24100:55;;;;;;:::i;:::-;;;;;;;;23855:308;;:::o;42899:76::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42962:5:::1;42955:4;:12;;;;42899:76:::0;:::o;24962:396::-;25129:28;25139:4;25145:2;25149:7;25129:9;:28::i;:::-;25190:1;25172:2;:14;;;:19;25168:183;;25211:56;25242:4;25248:2;25252:7;25261:5;25211:30;:56::i;:::-;25206:145;;25295:40;;;;;;;;;;;;;;25206:145;25168:183;24962:396;;;;:::o;42536:261::-;42588:20;42611:13;:11;:13::i;:::-;42588:36;;42665:10;;42658:3;42643:12;:18;;;;:::i;:::-;:32;;42635:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;42739:4;;42732:3;42708:21;42718:10;42708:9;:21::i;:::-;:27;;;;:::i;:::-;:35;;42700:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42767:22;42773:10;42785:3;42767:5;:22::i;:::-;42577:220;42536:261;:::o;21855:318::-;21928:13;21959:16;21967:7;21959;:16::i;:::-;21954:59;;21984:29;;;;;;;;;;;;;;21954:59;22026:21;22050:10;:8;:10::i;:::-;22026:34;;22103:1;22084:7;22078:21;:26;;:87;;;;;;;;;;;;;;;;;22131:7;22140:18;22150:7;22140:9;:18::i;:::-;22114:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22078:87;22071:94;;;21855:318;;;:::o;42158:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24234:164::-;24331:4;24355:18;:25;24374:5;24355:25;;;;;;;;;;;;;;;:35;24381:8;24355:35;;;;;;;;;;;;;;;;;;;;;;;;;24348:42;;24234:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;25613:273::-;25670:4;25726:7;25707:15;:13;:15::i;:::-;:26;;:66;;;;;25760:13;;25750:7;:23;25707:66;:152;;;;;25858:1;13282:8;25811:17;:26;25829:7;25811:26;;;;;;;;;;;;:43;:48;25707:152;25687:172;;25613:273;;;:::o;18815:1129::-;18882:7;18902:12;18917:7;18902:22;;18985:4;18966:15;:13;:15::i;:::-;:23;18962:915;;19019:13;;19012:4;:20;19008:869;;;19057:14;19074:17;:23;19092:4;19074:23;;;;;;;;;;;;19057:40;;19190:1;13282:8;19163:6;:23;:28;19159:699;;;19682:113;19699:1;19689:6;:11;19682:113;;;19742:17;:25;19760:6;;;;;;;19742:25;;;;;;;;;;;;19733:34;;19682:113;;;19828:6;19821:13;;;;;;19159:699;19034:843;19008:869;18962:915;19905:31;;;;;;;;;;;;;;18815:1129;;;;:::o;39880:105::-;39940:7;39967:10;39960:17;;39880:105;:::o;15066:92::-;15122:7;15066:92;:::o;30872:2654::-;30987:27;31017;31036:7;31017:18;:27::i;:::-;30987:57;;31102:4;31061:45;;31077:19;31061:45;;;31057:86;;31115:28;;;;;;;;;;;;;;31057:86;31156:23;31182:15;:24;31198:7;31182:24;;;;;;;;;;;;;;;;;;;;;31156:50;;31219:22;31268:4;31245:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31289:43;31306:4;31312:19;:17;:19::i;:::-;31289:16;:43::i;:::-;31245:87;:142;;;;31368:19;:17;:19::i;:::-;31349:38;;:15;:38;;;31245:142;31219:169;;31406:17;31401:66;;31432:35;;;;;;;;;;;;;;31401:66;31507:1;31482:21;31500:2;31482:17;:21::i;:::-;:26;31478:62;;;31517:23;;;;;;;;;;;;;;31478:62;31553:43;31575:4;31581:2;31585:7;31594:1;31553:21;:43::i;:::-;31704:1;31666:34;31684:15;31666:17;:34::i;:::-;:39;31662:103;;31729:15;:24;31745:7;31729:24;;;;;;;;;;;;31722:31;;;;;;;;;;;31662:103;32132:18;:24;32151:4;32132:24;;;;;;;;;;;;;;;;32130:26;;;;;;;;;;;;32201:18;:22;32220:2;32201:22;;;;;;;;;;;;;;;;32199:24;;;;;;;;;;;13560:8;13166:3;32582:15;:41;;32540:21;32558:2;32540:17;:21::i;:::-;:84;:128;32494:17;:26;32512:7;32494:26;;;;;;;;;;;:174;;;;32838:1;13560:8;32788:19;:46;:51;32784:626;;;32860:19;32892:1;32882:7;:11;32860:33;;33049:1;33015:17;:30;33033:11;33015:30;;;;;;;;;;;;:35;33011:384;;;33153:13;;33138:11;:28;33134:242;;33333:19;33300:17;:30;33318:11;33300:30;;;;;;;;;;;:52;;;;33134:242;33011:384;32841:569;32784:626;33457:7;33453:2;33438:27;;33447:4;33438:27;;;;;;;;;;;;33476:42;33497:4;33503:2;33507:7;33516:1;33476:20;:42::i;:::-;30976:2550;;;30872:2654;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;22600:148::-;22664:14;22725:5;22715:15;;22600:148;;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;37349:716::-;37512:4;37558:2;37533:45;;;37579:19;:17;:19::i;:::-;37600:4;37606:7;37615:5;37533:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37529:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37833:1;37816:6;:13;:18;37812:235;;;37862:40;;;;;;;;;;;;;;37812:235;38005:6;37999:13;37990:6;37986:2;37982:15;37975:38;37529:529;37702:54;;;37692:64;;;:6;:64;;;;37685:71;;;37349:716;;;;;;:::o;28952:1666::-;29017:20;29040:13;;29017:36;;29093:1;29068:21;29086:2;29068:17;:21::i;:::-;:26;29064:58;;;29103:19;;;;;;;;;;;;;;29064:58;29149:1;29137:8;:13;29133:44;;;29159:18;;;;;;;;;;;;;;29133:44;29190:61;29220:1;29224:2;29228:12;29242:8;29190:21;:61::i;:::-;29794:1;12649:2;29765:1;:25;;29764:31;29752:8;:44;29726:18;:22;29745:2;29726:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13425:3;30195:29;30222:1;30210:8;:13;30195:14;:29::i;:::-;:56;;13166:3;30132:15;:41;;30090:21;30108:2;30090:17;:21::i;:::-;:84;:162;30039:17;:31;30057:12;30039:31;;;;;;;;;;;:213;;;;30269:20;30292:12;30269:35;;30319:11;30348:8;30333:12;:23;30319:37;;30373:111;30425:14;;;;;;30421:2;30400:40;;30417:1;30400:40;;;;;;;;;;;;30479:3;30464:12;:18;30373:111;;30516:12;30500:13;:28;;;;29503:1037;;30550:60;30579:1;30583:2;30587:12;30601:8;30550:20;:60::i;:::-;29006:1612;28952:1666;;:::o;42367:161::-;42477:13;42516:4;42509:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42367:161;:::o;40091:1943::-;40148:17;40567:3;40560:4;40554:11;40550:21;40543:28;;40658:3;40652:4;40645:17;40764:3;41220:5;41350:1;41345:3;41341:11;41334:18;;41487:2;41481:4;41477:13;41473:2;41469:22;41464:3;41456:36;41528:2;41522:4;41518:13;41510:21;;41112:680;41547:4;41112:680;;;41721:1;41716:3;41712:11;41705:18;;41772:2;41766:4;41762:13;41758:2;41754:22;41749:3;41741:36;41642:2;41636:4;41632:13;41624:21;;41112:680;;;41116:430;41831:3;41826;41822:13;41946:2;41941:3;41937:12;41930:19;;42009:6;42004:3;41997:19;40187:1840;;40091:1943;;;:::o;38713:159::-;;;;;:::o;39531:158::-;;;;;:::o;22835:142::-;22893:14;22954:5;22944:15;;22835:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:365::-;8658:3;8679:66;8743:1;8738:3;8679:66;:::i;:::-;8672:73;;8754:93;8843:3;8754:93;:::i;:::-;8872:2;8867:3;8863:12;8856:19;;8516:365;;;:::o;8887:366::-;9029:3;9050:67;9114:2;9109:3;9050:67;:::i;:::-;9043:74;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8887:366;;;:::o;9259:365::-;9401:3;9422:66;9486:1;9481:3;9422:66;:::i;:::-;9415:73;;9497:93;9586:3;9497:93;:::i;:::-;9615:2;9610:3;9606:12;9599:19;;9259:365;;;:::o;9630:366::-;9772:3;9793:67;9857:2;9852:3;9793:67;:::i;:::-;9786:74;;9869:93;9958:3;9869:93;:::i;:::-;9987:2;9982:3;9978:12;9971:19;;9630:366;;;:::o;10002:118::-;10089:24;10107:5;10089:24;:::i;:::-;10084:3;10077:37;10002:118;;:::o;10126:435::-;10306:3;10328:95;10419:3;10410:6;10328:95;:::i;:::-;10321:102;;10440:95;10531:3;10522:6;10440:95;:::i;:::-;10433:102;;10552:3;10545:10;;10126:435;;;;;:::o;10567:222::-;10660:4;10698:2;10687:9;10683:18;10675:26;;10711:71;10779:1;10768:9;10764:17;10755:6;10711:71;:::i;:::-;10567:222;;;;:::o;10795:640::-;10990:4;11028:3;11017:9;11013:19;11005:27;;11042:71;11110:1;11099:9;11095:17;11086:6;11042:71;:::i;:::-;11123:72;11191:2;11180:9;11176:18;11167:6;11123:72;:::i;:::-;11205;11273:2;11262:9;11258:18;11249:6;11205:72;:::i;:::-;11324:9;11318:4;11314:20;11309:2;11298:9;11294:18;11287:48;11352:76;11423:4;11414:6;11352:76;:::i;:::-;11344:84;;10795:640;;;;;;;:::o;11441:210::-;11528:4;11566:2;11555:9;11551:18;11543:26;;11579:65;11641:1;11630:9;11626:17;11617:6;11579:65;:::i;:::-;11441:210;;;;:::o;11657:313::-;11770:4;11808:2;11797:9;11793:18;11785:26;;11857:9;11851:4;11847:20;11843:1;11832:9;11828:17;11821:47;11885:78;11958:4;11949:6;11885:78;:::i;:::-;11877:86;;11657:313;;;;:::o;11976:419::-;12142:4;12180:2;12169:9;12165:18;12157:26;;12229:9;12223:4;12219:20;12215:1;12204:9;12200:17;12193:47;12257:131;12383:4;12257:131;:::i;:::-;12249:139;;11976:419;;;:::o;12401:::-;12567:4;12605:2;12594:9;12590:18;12582:26;;12654:9;12648:4;12644:20;12640:1;12629:9;12625:17;12618:47;12682:131;12808:4;12682:131;:::i;:::-;12674:139;;12401:419;;;:::o;12826:::-;12992:4;13030:2;13019:9;13015:18;13007:26;;13079:9;13073:4;13069:20;13065:1;13054:9;13050:17;13043:47;13107:131;13233:4;13107:131;:::i;:::-;13099:139;;12826:419;;;:::o;13251:::-;13417:4;13455:2;13444:9;13440:18;13432:26;;13504:9;13498:4;13494:20;13490:1;13479:9;13475:17;13468:47;13532:131;13658:4;13532:131;:::i;:::-;13524:139;;13251:419;;;:::o;13676:222::-;13769:4;13807:2;13796:9;13792:18;13784:26;;13820:71;13888:1;13877:9;13873:17;13864:6;13820:71;:::i;:::-;13676:222;;;;:::o;13904:129::-;13938:6;13965:20;;:::i;:::-;13955:30;;13994:33;14022:4;14014:6;13994:33;:::i;:::-;13904:129;;;:::o;14039:75::-;14072:6;14105:2;14099:9;14089:19;;14039:75;:::o;14120:307::-;14181:4;14271:18;14263:6;14260:30;14257:56;;;14293:18;;:::i;:::-;14257:56;14331:29;14353:6;14331:29;:::i;:::-;14323:37;;14415:4;14409;14405:15;14397:23;;14120:307;;;:::o;14433:308::-;14495:4;14585:18;14577:6;14574:30;14571:56;;;14607:18;;:::i;:::-;14571:56;14645:29;14667:6;14645:29;:::i;:::-;14637:37;;14729:4;14723;14719:15;14711:23;;14433:308;;;:::o;14747:98::-;14798:6;14832:5;14826:12;14816:22;;14747:98;;;:::o;14851:99::-;14903:6;14937:5;14931:12;14921:22;;14851:99;;;:::o;14956:168::-;15039:11;15073:6;15068:3;15061:19;15113:4;15108:3;15104:14;15089:29;;14956:168;;;;:::o;15130:169::-;15214:11;15248:6;15243:3;15236:19;15288:4;15283:3;15279:14;15264:29;;15130:169;;;;:::o;15305:148::-;15407:11;15444:3;15429:18;;15305:148;;;;:::o;15459:305::-;15499:3;15518:20;15536:1;15518:20;:::i;:::-;15513:25;;15552:20;15570:1;15552:20;:::i;:::-;15547:25;;15706:1;15638:66;15634:74;15631:1;15628:81;15625:107;;;15712:18;;:::i;:::-;15625:107;15756:1;15753;15749:9;15742:16;;15459:305;;;;:::o;15770:96::-;15807:7;15836:24;15854:5;15836:24;:::i;:::-;15825:35;;15770:96;;;:::o;15872:90::-;15906:7;15949:5;15942:13;15935:21;15924:32;;15872:90;;;:::o;15968:149::-;16004:7;16044:66;16037:5;16033:78;16022:89;;15968:149;;;:::o;16123:126::-;16160:7;16200:42;16193:5;16189:54;16178:65;;16123:126;;;:::o;16255:77::-;16292:7;16321:5;16310:16;;16255:77;;;:::o;16338:154::-;16422:6;16417:3;16412;16399:30;16484:1;16475:6;16470:3;16466:16;16459:27;16338:154;;;:::o;16498:307::-;16566:1;16576:113;16590:6;16587:1;16584:13;16576:113;;;16675:1;16670:3;16666:11;16660:18;16656:1;16651:3;16647:11;16640:39;16612:2;16609:1;16605:10;16600:15;;16576:113;;;16707:6;16704:1;16701:13;16698:101;;;16787:1;16778:6;16773:3;16769:16;16762:27;16698:101;16547:258;16498:307;;;:::o;16811:320::-;16855:6;16892:1;16886:4;16882:12;16872:22;;16939:1;16933:4;16929:12;16960:18;16950:81;;17016:4;17008:6;17004:17;16994:27;;16950:81;17078:2;17070:6;17067:14;17047:18;17044:38;17041:84;;;17097:18;;:::i;:::-;17041:84;16862:269;16811:320;;;:::o;17137:281::-;17220:27;17242:4;17220:27;:::i;:::-;17212:6;17208:40;17350:6;17338:10;17335:22;17314:18;17302:10;17299:34;17296:62;17293:88;;;17361:18;;:::i;:::-;17293:88;17401:10;17397:2;17390:22;17180:238;17137:281;;:::o;17424:180::-;17472:77;17469:1;17462:88;17569:4;17566:1;17559:15;17593:4;17590:1;17583:15;17610:180;17658:77;17655:1;17648:88;17755:4;17752:1;17745:15;17779:4;17776:1;17769:15;17796:180;17844:77;17841:1;17834:88;17941:4;17938:1;17931:15;17965:4;17962:1;17955:15;17982:117;18091:1;18088;18081:12;18105:117;18214:1;18211;18204:12;18228:117;18337:1;18334;18327:12;18351:117;18460:1;18457;18450:12;18474:102;18515:6;18566:2;18562:7;18557:2;18550:5;18546:14;18542:28;18532:38;;18474:102;;;:::o;18582:158::-;18722:10;18718:1;18710:6;18706:14;18699:34;18582:158;:::o;18746:225::-;18886:34;18882:1;18874:6;18870:14;18863:58;18955:8;18950:2;18942:6;18938:15;18931:33;18746:225;:::o;18977:159::-;19117:11;19113:1;19105:6;19101:14;19094:35;18977:159;:::o;19142:182::-;19282:34;19278:1;19270:6;19266:14;19259:58;19142:182;:::o;19330:122::-;19403:24;19421:5;19403:24;:::i;:::-;19396:5;19393:35;19383:63;;19442:1;19439;19432:12;19383:63;19330:122;:::o;19458:116::-;19528:21;19543:5;19528:21;:::i;:::-;19521:5;19518:32;19508:60;;19564:1;19561;19554:12;19508:60;19458:116;:::o;19580:120::-;19652:23;19669:5;19652:23;:::i;:::-;19645:5;19642:34;19632:62;;19690:1;19687;19680:12;19632:62;19580:120;:::o;19706:122::-;19779:24;19797:5;19779:24;:::i;:::-;19772:5;19769:35;19759:63;;19818:1;19815;19808:12;19759:63;19706:122;:::o

Swarm Source

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