ETH Price: $2,493.32 (-2.41%)

Token

Epic Pangolin Squad (EPS)
 

Overview

Max Total Supply

481 EPS

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cryptocaro.eth
Balance
5 EPS
0x45a333346ee351dd985aa6325cbd193be30a69fb
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:
Epicpangolinsquad

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-17
*/

// SPDX-License-Identifier: MIT








pragma solidity ^0.8.0;


interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}




// File: @openzeppelin/contracts/interfaces/IERC2981.sol




// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)


pragma solidity ^0.8.0;




/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */


interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}






pragma solidity ^0.8.0;


interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


pragma solidity ^0.8.0;


interface IERC721 is IERC165 {
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );


    function balanceOf(address owner) external view returns (uint256 balance);


    function ownerOf(uint256 tokenId) external view returns (address owner);


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    function approve(address to, uint256 tokenId) external;


    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);


    function setApprovalForAll(address operator, bool _approved) external;


    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


pragma solidity ^0.8.0;


interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);


    function symbol() external view returns (string memory);


    function tokenURI(uint256 tokenId) external view returns (string memory);
}


pragma solidity ^0.8.0;


interface IERC721Enumerable is IERC721 {
    function totalSupply() external view returns (uint256);


    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256);


    function tokenByIndex(uint256 index) external view returns (uint256);
}


pragma solidity ^0.8.1;


library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }


    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );


        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }


    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }


    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }


    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }


    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");


        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }


    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }


    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");


        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }


    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }


    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");


        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }


    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }


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


pragma solidity ^0.8.0;


abstract contract Ownable is Context {
    address private _owner;


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


    constructor() {
        _setOwner(_msgSender());
    }


    function owner() public view virtual returns (address) {
        return _owner;
    }


    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }


    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }


    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }


    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;


library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";


    function toString(uint256 value) internal pure returns (string memory) {
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol


        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }


    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }


    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;


abstract contract ERC165 is IERC165 {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}


pragma solidity ^0.8.0;


abstract contract ReentrancyGuard {
    // word because each write operation emits an extra SLOAD to first read the
    // back. This is the compiler's defense against contract upgrades and


    // but in exchange the refund on every call to nonReentrant will be lower in
    // transaction's gas, it is best to keep them low in cases like this one, to
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;


    uint256 private _status;


    constructor() {
        _status = _NOT_ENTERED;
    }


    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
        _status = _ENTERED;


        _;
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File: @openzeppelin/contracts/token/common/ERC2981.sol




// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)


pragma solidity ^0.8.0;






/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }


    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;


    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }


    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];


        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }


        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();


        return (royalty.receiver, royaltyAmount);
    }


    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }


    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");


        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }


    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }


    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");


        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }


    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


pragma solidity ^0.8.0;


contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;


    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }


    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }


    uint256 private currentIndex = 0;


    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;
    string private _name;
    string private _symbol;
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;
    mapping(address => AddressData) private _addressData;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;


    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }


    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }


    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }


    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }


    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }


    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }


    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }


    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");


        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }


        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }


        revert("ERC721A: unable to determine the owner of token");
    }


    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }


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


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


    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );


        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }


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


    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");


        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );


        _approve(to, tokenId, owner);
    }


    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );


        return _tokenApprovals[tokenId];
    }


    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");


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


    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }


    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, "");
    }


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }


    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }


    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }


    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");


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


        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));


        uint256 updatedIndex = startTokenId;


        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }


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


    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);


        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));


        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );


        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");


        _beforeTokenTransfers(from, to, tokenId, 1);
        _approve(address(0), tokenId, prevOwnership.addr);


        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }


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


    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }


    uint256 public nextOwnerToExplicitlySet = 0;


    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }


    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }


    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


contract Epicpangolinsquad is Ownable, ERC721A, ERC2981, ReentrancyGuard {
    using Strings for uint256;
    address public ElephantContract;


    string public uriPrefix = "";


    string public uriSuffix = ".json";
    string public hiddenMetadataUri;


    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 2000;
    uint256 public maxMintAmountPerTx = 20;


    bool public publicMint = true; // By default public minting is paused
    bool public publicClaim = true; // By default claim pangolin NFTs is paused
    bool public revealed = false; //  By default NFTs is in hidden state


    mapping(uint256 => bool) public claimedepicpangolin;


    constructor(address payable royaltiesReceiver, address _contract) ERC721A("Epic Pangolin Squad", "EPS", 2000, maxSupply) {
        ElephantContract = _contract; // Epic Elephant Squad Contract Address
        setRoyaltyInfo(royaltiesReceiver, 1000);
    }


    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }


    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(!publicMint, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _safeMint(msg.sender, _mintAmount);
    }


    function claimepicpangolin()
        public
    {
        require(!publicClaim, "The contract is paused!");
        uint256 elephantsOwned = IERC721(ElephantContract).balanceOf(msg.sender);
        require(elephantsOwned > 0, "No Elephants owned!");


        uint256 claimAmount = 0;
        uint256 lastClaimableToken = 0;
        for (uint256 i = 0; i < elephantsOwned; i++) {
            uint256 tokenId = IERC721Enumerable(ElephantContract).tokenOfOwnerByIndex(msg.sender, i);
            if (!claimedepicpangolin[tokenId]) {
                claimAmount++;
                claimedepicpangolin[tokenId] = true;
                lastClaimableToken = tokenId;
            }
        }


        if (claimAmount % 1 == 1) {
            claimAmount--;
            delete claimedepicpangolin[lastClaimableToken];
        }


        require(claimAmount > 0, "No reedemable Pangolins!");
        _safeMint(msg.sender, claimAmount / 1);
    }


    function claimableElephantsCount(address _owner)
        public
        view
        returns (uint256)
    {
        uint256 elephantsOwned = IERC721(ElephantContract).balanceOf(_owner);


        uint256 claimAmount = 0;
        uint256 lastClaimableToken = 0;
        for (uint256 i = 0; i < elephantsOwned; i++) {
            uint256 tokenId = IERC721Enumerable(ElephantContract).tokenOfOwnerByIndex(_owner, i);
            if (!claimedepicpangolin[tokenId]) {
                claimAmount++;
                lastClaimableToken = tokenId;
            }
        }


        if (claimAmount % 1 == 1) {
            claimAmount--;
        }


        return (claimAmount / 1);
    }


    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }


    function mintForAddress(address _address, uint256 quantity)
        external
        onlyOwner
    {
        require(
            totalSupply() + quantity <= maxSupply,
            "NOT_ENOUGH_SUPPLY_TO_GIVEAWAY_DESIRED_AMOUNT"
        );
        _safeMint(_address, quantity);
    }


    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;


        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);


            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;


                ownedTokenIndex++;
            }


            currentTokenId++;
        }


        return ownedTokenIds;
    }


    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );


        if (revealed == false) {
            return hiddenMetadataUri;
        }


        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }


    function setRevealed() public onlyOwner {
        revealed = !revealed;
    }


    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }


    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }


    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }


    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }


    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }


    function setPublicMint() public onlyOwner {
        publicMint = !publicMint;
    }


    function setPublicClaim() public onlyOwner {
        publicClaim = !publicClaim;
    }


    function setElephantContract(address _address) public onlyOwner {
        ElephantContract = _address;
    }


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


    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
   
    // IERC2981


    function setRoyaltyInfo(address payable receiver, uint96 numerator) public onlyOwner {
        _setDefaultRoyalty(receiver, numerator);
    }
    //
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"royaltiesReceiver","type":"address"},{"internalType":"address","name":"_contract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"ElephantContract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"claimableElephantsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedepicpangolin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimepicpangolin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setElephantContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint96","name":"numerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

5f6001819055600881905560e060405260c0908152600d90610021908261047b565b50604080518082019091526005815264173539b7b760d91b6020820152600e9061004b908261047b565b50662386f26fc100006010556107d060115560146012556013805462ffffff191661010117905534801561007d575f80fd5b5060405161350e38038061350e83398101604081905261009c91610551565b6040518060400160405280601381526020017f457069632050616e676f6c696e205371756164000000000000000000000000008152506040518060400160405280600381526020016245505360e81b8152506107d060115461010a61010561022c60201b60201c565b610230565b5f81116101755760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b5f82116101d45760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840161016c565b60026101e0858261047b565b5060036101ed848261047b565b5060a09190915260805250506001600b55600c80546001600160a01b0319166001600160a01b038316179055610225826103e861027f565b5050610589565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f546001600160a01b031633146102d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161016c565b6102e282826102e6565b5050565b6127106001600160601b03821611156103545760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161016c565b6001600160a01b0382166103aa5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161016c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061040b57607f821691505b60208210810361042957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561047657805f5260205f20601f840160051c810160208510156104545750805b601f840160051c820191505b81811015610473575f8155600101610460565b50505b505050565b81516001600160401b03811115610494576104946103e3565b6104a8816104a284546103f7565b8461042f565b602080601f8311600181146104db575f84156104c45750858301515b5f19600386901b1c1916600185901b178555610532565b5f85815260208120601f198616915b82811015610509578886015182559484019460019091019084016104ea565b508582101561052657878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6001600160a01b038116811461054e575f80fd5b50565b5f8060408385031215610562575f80fd5b825161056d8161053a565b602084015190925061057e8161053a565b809150509250929050565b60805160a051612f596105b55f395f81816121710152818161219b01526125c701525f5050612f595ff3fe6080604052600436106102a5575f3560e01c80635503a0e81161016f578063a0712d68116100d8578063c87b56dd11610092578063dd4fc04a1161006d578063dd4fc04a14610818578063e985e9c51461082c578063f254933d14610873578063f2fde38b14610892575f80fd5b8063c87b56dd146107cf578063d5abeb01146107ee578063d7224ba014610803575f80fd5b8063a0712d681461072c578063a22cb4651461073f578063a45ba8e71461075e578063b071401b14610772578063b88d4fde14610791578063bdc3926d146107b0575f80fd5b80637ec4a659116101295780637ec4a6591461065c5780637f04116a1461067b5780638da5cb5b1461069a5780639231ab2a146106b657806394354fd01461070357806395d89b4114610718575f80fd5b80635503a0e8146105ce57806362b99ad4146105e25780636352211e146105f657806363d64c0a1461061557806370a0823114610629578063715018a614610648575f80fd5b806326092b831161021157806342842e0e116101cb57806342842e0e14610507578063438b63001461052657806344a0d68a146105525780634f6ccce7146105715780634fdd43cb1461059057806351830227146105af575f80fd5b806326092b831461043b5780632a55205a146104545780632f745c59146104925780633bc6eb6d146104b15780633bd64968146104df5780633ccfd60b146104f3575f80fd5b806313bfe8ad1161026257806313bfe8ad1461038957806313faede6146103a857806316ba10e0146103cb57806318160ddd146103ea5780631b415239146103fe57806323b872dd1461041c575f80fd5b806301ffc9a7146102a957806302456aa2146102dd57806302fa7c47146102f357806306fdde0314610312578063081812fc14610333578063095ea7b31461036a575b5f80fd5b3480156102b4575f80fd5b506102c86102c33660046127eb565b6108b1565b60405190151581526020015b60405180910390f35b3480156102e8575f80fd5b506102f16108d0565b005b3480156102fe575f80fd5b506102f161030d36600461281a565b610916565b34801561031d575f80fd5b5061032661094d565b6040516102d4919061288a565b34801561033e575f80fd5b5061035261034d36600461289c565b6109dd565b6040516001600160a01b0390911681526020016102d4565b348015610375575f80fd5b506102f16103843660046128b3565b610a66565b348015610394575f80fd5b506102f16103a33660046128dd565b610b7c565b3480156103b3575f80fd5b506103bd60105481565b6040519081526020016102d4565b3480156103d6575f80fd5b506102f16103e536600461297f565b610bc7565b3480156103f5575f80fd5b506001546103bd565b348015610409575f80fd5b506013546102c890610100900460ff1681565b348015610427575f80fd5b506102f16104363660046129c4565b610bfc565b348015610446575f80fd5b506013546102c89060ff1681565b34801561045f575f80fd5b5061047361046e366004612a02565b610c07565b604080516001600160a01b0390931683526020830191909152016102d4565b34801561049d575f80fd5b506103bd6104ac3660046128b3565b610cb1565b3480156104bc575f80fd5b506102c86104cb36600461289c565b60146020525f908152604090205460ff1681565b3480156104ea575f80fd5b506102f1610e19565b3480156104fe575f80fd5b506102f1610e61565b348015610512575f80fd5b506102f16105213660046129c4565b610eb6565b348015610531575f80fd5b506105456105403660046128dd565b610ed0565b6040516102d49190612a22565b34801561055d575f80fd5b506102f161056c36600461289c565b610fac565b34801561057c575f80fd5b506103bd61058b36600461289c565b610fda565b34801561059b575f80fd5b506102f16105aa36600461297f565b611042565b3480156105ba575f80fd5b506013546102c89062010000900460ff1681565b3480156105d9575f80fd5b50610326611077565b3480156105ed575f80fd5b50610326611103565b348015610601575f80fd5b5061035261061036600461289c565b611110565b348015610620575f80fd5b506102f1611121565b348015610634575f80fd5b506103bd6106433660046128dd565b611386565b348015610653575f80fd5b506102f1611415565b348015610667575f80fd5b506102f161067636600461297f565b611449565b348015610686575f80fd5b50600c54610352906001600160a01b031681565b3480156106a5575f80fd5b505f546001600160a01b0316610352565b3480156106c1575f80fd5b506106d56106d036600461289c565b61147e565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102d4565b34801561070e575f80fd5b506103bd60125481565b348015610723575f80fd5b5061032661149a565b6102f161073a36600461289c565b6114a9565b34801561074a575f80fd5b506102f1610759366004612a65565b611604565b348015610769575f80fd5b506103266116c7565b34801561077d575f80fd5b506102f161078c36600461289c565b6116d4565b34801561079c575f80fd5b506102f16107ab366004612a95565b611702565b3480156107bb575f80fd5b506103bd6107ca3660046128dd565b61173b565b3480156107da575f80fd5b506103266107e936600461289c565b611892565b3480156107f9575f80fd5b506103bd60115481565b34801561080e575f80fd5b506103bd60085481565b348015610823575f80fd5b506102f1611a03565b348015610837575f80fd5b506102c8610846366004612b10565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561087e575f80fd5b506102f161088d3660046128b3565b611a49565b34801561089d575f80fd5b506102f16108ac3660046128dd565b611af6565b5f6108bb82611b8d565b806108ca57506108ca82611bf7565b92915050565b5f546001600160a01b031633146109025760405162461bcd60e51b81526004016108f990612b3c565b60405180910390fd5b6013805460ff19811660ff90911615179055565b5f546001600160a01b0316331461093f5760405162461bcd60e51b81526004016108f990612b3c565b6109498282611c1b565b5050565b60606002805461095c90612b71565b80601f016020809104026020016040519081016040528092919081815260200182805461098890612b71565b80156109d35780601f106109aa576101008083540402835291602001916109d3565b820191905f5260205f20905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b5f6109e9826001541190565b610a4b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108f9565b505f908152600660205260409020546001600160a01b031690565b5f610a7082611110565b9050806001600160a01b0316836001600160a01b031603610ade5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f9565b336001600160a01b0382161480610afa5750610afa8133610846565b610b6c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f9565b610b77838383611d18565b505050565b5f546001600160a01b03163314610ba55760405162461bcd60e51b81526004016108f990612b3c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b03163314610bf05760405162461bcd60e51b81526004016108f990612b3c565b600e6109498282612bf4565b610b77838383611d73565b5f828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c7b5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610c99906001600160601b031687612cc4565b610ca39190612cef565b915196919550909350505050565b5f610cbb83611386565b8210610d145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f9565b5f610d1e60015490565b90505f805f5b83811015610db9575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d7657805192505b876001600160a01b0316836001600160a01b031603610db057868403610da2575093506108ca92505050565b83610dac81612d02565b9450505b50600101610d24565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f9565b5f546001600160a01b03163314610e425760405162461bcd60e51b81526004016108f990612b3c565b6013805462ff0000198116620100009182900460ff1615909102179055565b5f546001600160a01b03163314610e8a5760405162461bcd60e51b81526004016108f990612b3c565b60405133904780156108fc02915f818181858888f19350505050158015610eb3573d5f803e3d5ffd5b50565b610b7783838360405180602001604052805f815250611702565b60605f610edc83611386565b90505f8167ffffffffffffffff811115610ef857610ef86128f8565b604051908082528060200260200182016040528015610f21578160200160208202803683370190505b50905060015f5b8381108015610f3957506011548211155b15610fa2575f610f4883611110565b9050866001600160a01b0316816001600160a01b031603610f8f5782848381518110610f7657610f76612d1a565b602090810291909101015281610f8b81612d02565b9250505b82610f9981612d02565b93505050610f28565b5090949350505050565b5f546001600160a01b03163314610fd55760405162461bcd60e51b81526004016108f990612b3c565b601055565b5f610fe460015490565b821061103e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f9565b5090565b5f546001600160a01b0316331461106b5760405162461bcd60e51b81526004016108f990612b3c565b600f6109498282612bf4565b600e805461108490612b71565b80601f01602080910402602001604051908101604052809291908181526020018280546110b090612b71565b80156110fb5780601f106110d2576101008083540402835291602001916110fb565b820191905f5260205f20905b8154815290600101906020018083116110de57829003601f168201915b505050505081565b600d805461108490612b71565b5f61111a826120f1565b5192915050565b601354610100900460ff16156111735760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f9565b600c546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156111b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111dd9190612d2e565b90505f81116112245760405162461bcd60e51b81526020600482015260136024820152724e6f20456c657068616e7473206f776e65642160681b60448201526064016108f9565b5f805f5b838110156112ed57600c54604051632f745c5960e01b8152336004820152602481018390525f916001600160a01b031690632f745c5990604401602060405180830381865afa15801561127d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a19190612d2e565b5f8181526014602052604090205490915060ff166112e457836112c381612d02565b5f838152601460205260409020805460ff1916600117905594509092508290505b50600101611228565b506112f9600183612d45565b600103611323578161130a81612d58565b5f838152601460205260409020805460ff191690559250505b5f82116113725760405162461bcd60e51b815260206004820152601860248201527f4e6f2072656564656d61626c652050616e676f6c696e7321000000000000000060448201526064016108f9565b610b7733611381600185612cef565b612298565b5f6001600160a01b0382166113f15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f9565b506001600160a01b03165f908152600560205260409020546001600160801b031690565b5f546001600160a01b0316331461143e5760405162461bcd60e51b81526004016108f990612b3c565b6114475f6122b1565b565b5f546001600160a01b031633146114725760405162461bcd60e51b81526004016108f990612b3c565b600d6109498282612bf4565b604080518082019091525f80825260208201526108ca826120f1565b60606003805461095c90612b71565b805f811180156114bb57506012548111155b6114fe5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f9565b6011548161150b60015490565b6115159190612d6d565b111561155a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f9565b60135460ff16156115a75760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f9565b816010546115b59190612cc4565b3410156115fa5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108f9565b6109493383612298565b336001600160a01b0383160361165c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f9565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f805461108490612b71565b5f546001600160a01b031633146116fd5760405162461bcd60e51b81526004016108f990612b3c565b601255565b61170d848484611d73565b61171984848484612300565b6117355760405162461bcd60e51b81526004016108f990612d80565b50505050565b600c546040516370a0823160e01b81526001600160a01b0383811660048301525f9283929116906370a0823190602401602060405180830381865afa158015611786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117aa9190612d2e565b90505f805f5b8381101561185d57600c54604051632f745c5960e01b81526001600160a01b038881166004830152602482018490525f921690632f745c5990604401602060405180830381865afa158015611807573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182b9190612d2e565b5f8181526014602052604090205490915060ff16611854578361184d81612d02565b9450508092505b506001016117b0565b50611869600183612d45565b60010361187e578161187a81612d58565b9250505b611889600183612cef565b95945050505050565b606061189f826001541190565b6119035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f9565b60135462010000900460ff1615155f036119a757600f805461192490612b71565b80601f016020809104026020016040519081016040528092919081815260200182805461195090612b71565b801561199b5780601f106119725761010080835404028352916020019161199b565b820191905f5260205f20905b81548152906001019060200180831161197e57829003601f168201915b50505050509050919050565b5f6119b06123fe565b90505f8151116119ce5760405180602001604052805f8152506119fc565b806119d88461240d565b600e6040516020016119ec93929190612dea565b6040516020818303038152906040525b9392505050565b5f546001600160a01b03163314611a2c5760405162461bcd60e51b81526004016108f990612b3c565b6013805461ff001981166101009182900460ff1615909102179055565b5f546001600160a01b03163314611a725760405162461bcd60e51b81526004016108f990612b3c565b60115481611a7f60015490565b611a899190612d6d565b1115611aec5760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b60648201526084016108f9565b6109498282612298565b5f546001600160a01b03163314611b1f5760405162461bcd60e51b81526004016108f990612b3c565b6001600160a01b038116611b845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f9565b610eb3816122b1565b5f6001600160e01b031982166380ac58cd60e01b1480611bbd57506001600160e01b03198216635b5e139f60e01b145b80611bd857506001600160e01b0319821663780e9d6360e01b145b806108ca57506301ffc9a760e01b6001600160e01b03198316146108ca565b5f6001600160e01b0319821663152a902d60e11b14806108ca57506108ca82611b8d565b6127106001600160601b0382161115611c895760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016108f9565b6001600160a01b038216611cdf5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016108f9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f611d7d826120f1565b80519091505f906001600160a01b0316336001600160a01b03161480611db3575033611da8846109dd565b6001600160a01b0316145b80611dc557508151611dc59033610846565b905080611e2f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f9565b846001600160a01b0316825f01516001600160a01b031614611ea25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f9565b6001600160a01b038416611f065760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f9565b611f145f84845f0151611d18565b6001600160a01b0385165f908152600560205260408120805460019290611f459084906001600160801b0316612e72565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f9081526005602052604081208054600194509092611f9091859116612e99565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182525f8981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612017846001612d6d565b5f818152600460205260409020549091506001600160a01b03166120a757612040816001541190565b156120a75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081525f878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f808252602082015261210f826001541190565b61216e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f9565b5f7f000000000000000000000000000000000000000000000000000000000000000083106121ce576121c07f000000000000000000000000000000000000000000000000000000000000000084612eb9565b6121cb906001612d6d565b90505b825b818110612237575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561222457949350505050565b508061222f81612d58565b9150506121d0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108f9565b610949828260405180602001604052805f81525061250a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6001600160a01b0384163b156123f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612343903390899088908890600401612ecc565b6020604051808303815f875af192505050801561237d575060408051601f3d908101601f1916820190925261237a91810190612f08565b60015b6123d8573d8080156123aa576040519150601f19603f3d011682016040523d82523d5f602084013e6123af565b606091505b5080515f036123d05760405162461bcd60e51b81526004016108f990612d80565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123f6565b5060015b949350505050565b6060600d805461095c90612b71565b6060815f036124335750506040805180820190915260018152600360fc1b602082015290565b815f5b811561245c578061244681612d02565b91506124559050600a83612cef565b9150612436565b5f8167ffffffffffffffff811115612476576124766128f8565b6040519080825280601f01601f1916602001820160405280156124a0576020820181803683370190505b5090505b84156123f6576124b5600183612eb9565b91506124c2600a86612d45565b6124cd906030612d6d565b60f81b8183815181106124e2576124e2612d1a565b60200101906001600160f81b03191690815f1a905350612503600a86612cef565b94506124a4565b6001546001600160a01b03841661256d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f9565b612578816001541190565b156125c55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f9565b7f00000000000000000000000000000000000000000000000000000000000000008311156126405760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108f9565b6001600160a01b0384165f908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061269b908790612e99565b6001600160801b031681526020018583602001516126b99190612e99565b6001600160801b039081169091526001600160a01b038088165f8181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127cb5760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461279a5f888488612300565b6127b65760405162461bcd60e51b81526004016108f990612d80565b816127c081612d02565b92505060010161274f565b5060018190556120e9565b6001600160e01b031981168114610eb3575f80fd5b5f602082840312156127fb575f80fd5b81356119fc816127d6565b6001600160a01b0381168114610eb3575f80fd5b5f806040838503121561282b575f80fd5b823561283681612806565b915060208301356001600160601b0381168114612851575f80fd5b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6119fc602083018461285c565b5f602082840312156128ac575f80fd5b5035919050565b5f80604083850312156128c4575f80fd5b82356128cf81612806565b946020939093013593505050565b5f602082840312156128ed575f80fd5b81356119fc81612806565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115612926576129266128f8565b604051601f8501601f19908116603f0116810190828211818310171561294e5761294e6128f8565b81604052809350858152868686011115612966575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561298f575f80fd5b813567ffffffffffffffff8111156129a5575f80fd5b8201601f810184136129b5575f80fd5b6123f68482356020840161290c565b5f805f606084860312156129d6575f80fd5b83356129e181612806565b925060208401356129f181612806565b929592945050506040919091013590565b5f8060408385031215612a13575f80fd5b50508035926020909101359150565b602080825282518282018190525f9190848201906040850190845b81811015612a5957835183529284019291840191600101612a3d565b50909695505050505050565b5f8060408385031215612a76575f80fd5b8235612a8181612806565b915060208301358015158114612851575f80fd5b5f805f8060808587031215612aa8575f80fd5b8435612ab381612806565b93506020850135612ac381612806565b925060408501359150606085013567ffffffffffffffff811115612ae5575f80fd5b8501601f81018713612af5575f80fd5b612b048782356020840161290c565b91505092959194509250565b5f8060408385031215612b21575f80fd5b8235612b2c81612806565b9150602083013561285181612806565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b8557607f821691505b602082108103612ba357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b7757805f5260205f20601f840160051c81016020851015612bce5750805b601f840160051c820191505b81811015612bed575f8155600101612bda565b5050505050565b815167ffffffffffffffff811115612c0e57612c0e6128f8565b612c2281612c1c8454612b71565b84612ba9565b602080601f831160018114612c55575f8415612c3e5750858301515b5f19600386901b1c1916600185901b1785556120e9565b5f85815260208120601f198616915b82811015612c8357888601518255948401946001909101908401612c64565b5085821015612ca057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176108ca576108ca612cb0565b634e487b7160e01b5f52601260045260245ffd5b5f82612cfd57612cfd612cdb565b500490565b5f60018201612d1357612d13612cb0565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612d3e575f80fd5b5051919050565b5f82612d5357612d53612cdb565b500690565b5f81612d6657612d66612cb0565b505f190190565b808201808211156108ca576108ca612cb0565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f81518060208401855e5f93019283525090919050565b5f612dfe612df88387612dd3565b85612dd3565b5f8454612e0a81612b71565b60018281168015612e225760018114612e3757612e63565b60ff1984168652821515830286019450612e63565b885f526020805f205f5b85811015612e5a57815489820152908401908201612e41565b50505082860194505b50929998505050505050505050565b6001600160801b03828116828216039080821115612e9257612e92612cb0565b5092915050565b6001600160801b03818116838216019080821115612e9257612e92612cb0565b818103818111156108ca576108ca612cb0565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612efe9083018461285c565b9695505050505050565b5f60208284031215612f18575f80fd5b81516119fc816127d656fea264697066735822122047c6c588824bce1e32266ad8266b21b80442c85f176899d070003745f34ed43064736f6c6343000819003300000000000000000000000017de109b7418cd143e45f6068828b9a6b1a172b6000000000000000000000000e2ead7593cc0702f4681bb802ef09d417e744b5d

Deployed Bytecode

0x6080604052600436106102a5575f3560e01c80635503a0e81161016f578063a0712d68116100d8578063c87b56dd11610092578063dd4fc04a1161006d578063dd4fc04a14610818578063e985e9c51461082c578063f254933d14610873578063f2fde38b14610892575f80fd5b8063c87b56dd146107cf578063d5abeb01146107ee578063d7224ba014610803575f80fd5b8063a0712d681461072c578063a22cb4651461073f578063a45ba8e71461075e578063b071401b14610772578063b88d4fde14610791578063bdc3926d146107b0575f80fd5b80637ec4a659116101295780637ec4a6591461065c5780637f04116a1461067b5780638da5cb5b1461069a5780639231ab2a146106b657806394354fd01461070357806395d89b4114610718575f80fd5b80635503a0e8146105ce57806362b99ad4146105e25780636352211e146105f657806363d64c0a1461061557806370a0823114610629578063715018a614610648575f80fd5b806326092b831161021157806342842e0e116101cb57806342842e0e14610507578063438b63001461052657806344a0d68a146105525780634f6ccce7146105715780634fdd43cb1461059057806351830227146105af575f80fd5b806326092b831461043b5780632a55205a146104545780632f745c59146104925780633bc6eb6d146104b15780633bd64968146104df5780633ccfd60b146104f3575f80fd5b806313bfe8ad1161026257806313bfe8ad1461038957806313faede6146103a857806316ba10e0146103cb57806318160ddd146103ea5780631b415239146103fe57806323b872dd1461041c575f80fd5b806301ffc9a7146102a957806302456aa2146102dd57806302fa7c47146102f357806306fdde0314610312578063081812fc14610333578063095ea7b31461036a575b5f80fd5b3480156102b4575f80fd5b506102c86102c33660046127eb565b6108b1565b60405190151581526020015b60405180910390f35b3480156102e8575f80fd5b506102f16108d0565b005b3480156102fe575f80fd5b506102f161030d36600461281a565b610916565b34801561031d575f80fd5b5061032661094d565b6040516102d4919061288a565b34801561033e575f80fd5b5061035261034d36600461289c565b6109dd565b6040516001600160a01b0390911681526020016102d4565b348015610375575f80fd5b506102f16103843660046128b3565b610a66565b348015610394575f80fd5b506102f16103a33660046128dd565b610b7c565b3480156103b3575f80fd5b506103bd60105481565b6040519081526020016102d4565b3480156103d6575f80fd5b506102f16103e536600461297f565b610bc7565b3480156103f5575f80fd5b506001546103bd565b348015610409575f80fd5b506013546102c890610100900460ff1681565b348015610427575f80fd5b506102f16104363660046129c4565b610bfc565b348015610446575f80fd5b506013546102c89060ff1681565b34801561045f575f80fd5b5061047361046e366004612a02565b610c07565b604080516001600160a01b0390931683526020830191909152016102d4565b34801561049d575f80fd5b506103bd6104ac3660046128b3565b610cb1565b3480156104bc575f80fd5b506102c86104cb36600461289c565b60146020525f908152604090205460ff1681565b3480156104ea575f80fd5b506102f1610e19565b3480156104fe575f80fd5b506102f1610e61565b348015610512575f80fd5b506102f16105213660046129c4565b610eb6565b348015610531575f80fd5b506105456105403660046128dd565b610ed0565b6040516102d49190612a22565b34801561055d575f80fd5b506102f161056c36600461289c565b610fac565b34801561057c575f80fd5b506103bd61058b36600461289c565b610fda565b34801561059b575f80fd5b506102f16105aa36600461297f565b611042565b3480156105ba575f80fd5b506013546102c89062010000900460ff1681565b3480156105d9575f80fd5b50610326611077565b3480156105ed575f80fd5b50610326611103565b348015610601575f80fd5b5061035261061036600461289c565b611110565b348015610620575f80fd5b506102f1611121565b348015610634575f80fd5b506103bd6106433660046128dd565b611386565b348015610653575f80fd5b506102f1611415565b348015610667575f80fd5b506102f161067636600461297f565b611449565b348015610686575f80fd5b50600c54610352906001600160a01b031681565b3480156106a5575f80fd5b505f546001600160a01b0316610352565b3480156106c1575f80fd5b506106d56106d036600461289c565b61147e565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102d4565b34801561070e575f80fd5b506103bd60125481565b348015610723575f80fd5b5061032661149a565b6102f161073a36600461289c565b6114a9565b34801561074a575f80fd5b506102f1610759366004612a65565b611604565b348015610769575f80fd5b506103266116c7565b34801561077d575f80fd5b506102f161078c36600461289c565b6116d4565b34801561079c575f80fd5b506102f16107ab366004612a95565b611702565b3480156107bb575f80fd5b506103bd6107ca3660046128dd565b61173b565b3480156107da575f80fd5b506103266107e936600461289c565b611892565b3480156107f9575f80fd5b506103bd60115481565b34801561080e575f80fd5b506103bd60085481565b348015610823575f80fd5b506102f1611a03565b348015610837575f80fd5b506102c8610846366004612b10565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561087e575f80fd5b506102f161088d3660046128b3565b611a49565b34801561089d575f80fd5b506102f16108ac3660046128dd565b611af6565b5f6108bb82611b8d565b806108ca57506108ca82611bf7565b92915050565b5f546001600160a01b031633146109025760405162461bcd60e51b81526004016108f990612b3c565b60405180910390fd5b6013805460ff19811660ff90911615179055565b5f546001600160a01b0316331461093f5760405162461bcd60e51b81526004016108f990612b3c565b6109498282611c1b565b5050565b60606002805461095c90612b71565b80601f016020809104026020016040519081016040528092919081815260200182805461098890612b71565b80156109d35780601f106109aa576101008083540402835291602001916109d3565b820191905f5260205f20905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b5f6109e9826001541190565b610a4b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108f9565b505f908152600660205260409020546001600160a01b031690565b5f610a7082611110565b9050806001600160a01b0316836001600160a01b031603610ade5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108f9565b336001600160a01b0382161480610afa5750610afa8133610846565b610b6c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108f9565b610b77838383611d18565b505050565b5f546001600160a01b03163314610ba55760405162461bcd60e51b81526004016108f990612b3c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b03163314610bf05760405162461bcd60e51b81526004016108f990612b3c565b600e6109498282612bf4565b610b77838383611d73565b5f828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c7b5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610c99906001600160601b031687612cc4565b610ca39190612cef565b915196919550909350505050565b5f610cbb83611386565b8210610d145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108f9565b5f610d1e60015490565b90505f805f5b83811015610db9575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d7657805192505b876001600160a01b0316836001600160a01b031603610db057868403610da2575093506108ca92505050565b83610dac81612d02565b9450505b50600101610d24565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108f9565b5f546001600160a01b03163314610e425760405162461bcd60e51b81526004016108f990612b3c565b6013805462ff0000198116620100009182900460ff1615909102179055565b5f546001600160a01b03163314610e8a5760405162461bcd60e51b81526004016108f990612b3c565b60405133904780156108fc02915f818181858888f19350505050158015610eb3573d5f803e3d5ffd5b50565b610b7783838360405180602001604052805f815250611702565b60605f610edc83611386565b90505f8167ffffffffffffffff811115610ef857610ef86128f8565b604051908082528060200260200182016040528015610f21578160200160208202803683370190505b50905060015f5b8381108015610f3957506011548211155b15610fa2575f610f4883611110565b9050866001600160a01b0316816001600160a01b031603610f8f5782848381518110610f7657610f76612d1a565b602090810291909101015281610f8b81612d02565b9250505b82610f9981612d02565b93505050610f28565b5090949350505050565b5f546001600160a01b03163314610fd55760405162461bcd60e51b81526004016108f990612b3c565b601055565b5f610fe460015490565b821061103e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108f9565b5090565b5f546001600160a01b0316331461106b5760405162461bcd60e51b81526004016108f990612b3c565b600f6109498282612bf4565b600e805461108490612b71565b80601f01602080910402602001604051908101604052809291908181526020018280546110b090612b71565b80156110fb5780601f106110d2576101008083540402835291602001916110fb565b820191905f5260205f20905b8154815290600101906020018083116110de57829003601f168201915b505050505081565b600d805461108490612b71565b5f61111a826120f1565b5192915050565b601354610100900460ff16156111735760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f9565b600c546040516370a0823160e01b81523360048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156111b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111dd9190612d2e565b90505f81116112245760405162461bcd60e51b81526020600482015260136024820152724e6f20456c657068616e7473206f776e65642160681b60448201526064016108f9565b5f805f5b838110156112ed57600c54604051632f745c5960e01b8152336004820152602481018390525f916001600160a01b031690632f745c5990604401602060405180830381865afa15801561127d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a19190612d2e565b5f8181526014602052604090205490915060ff166112e457836112c381612d02565b5f838152601460205260409020805460ff1916600117905594509092508290505b50600101611228565b506112f9600183612d45565b600103611323578161130a81612d58565b5f838152601460205260409020805460ff191690559250505b5f82116113725760405162461bcd60e51b815260206004820152601860248201527f4e6f2072656564656d61626c652050616e676f6c696e7321000000000000000060448201526064016108f9565b610b7733611381600185612cef565b612298565b5f6001600160a01b0382166113f15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108f9565b506001600160a01b03165f908152600560205260409020546001600160801b031690565b5f546001600160a01b0316331461143e5760405162461bcd60e51b81526004016108f990612b3c565b6114475f6122b1565b565b5f546001600160a01b031633146114725760405162461bcd60e51b81526004016108f990612b3c565b600d6109498282612bf4565b604080518082019091525f80825260208201526108ca826120f1565b60606003805461095c90612b71565b805f811180156114bb57506012548111155b6114fe5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f9565b6011548161150b60015490565b6115159190612d6d565b111561155a5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f9565b60135460ff16156115a75760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108f9565b816010546115b59190612cc4565b3410156115fa5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108f9565b6109493383612298565b336001600160a01b0383160361165c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108f9565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f805461108490612b71565b5f546001600160a01b031633146116fd5760405162461bcd60e51b81526004016108f990612b3c565b601255565b61170d848484611d73565b61171984848484612300565b6117355760405162461bcd60e51b81526004016108f990612d80565b50505050565b600c546040516370a0823160e01b81526001600160a01b0383811660048301525f9283929116906370a0823190602401602060405180830381865afa158015611786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117aa9190612d2e565b90505f805f5b8381101561185d57600c54604051632f745c5960e01b81526001600160a01b038881166004830152602482018490525f921690632f745c5990604401602060405180830381865afa158015611807573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182b9190612d2e565b5f8181526014602052604090205490915060ff16611854578361184d81612d02565b9450508092505b506001016117b0565b50611869600183612d45565b60010361187e578161187a81612d58565b9250505b611889600183612cef565b95945050505050565b606061189f826001541190565b6119035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f9565b60135462010000900460ff1615155f036119a757600f805461192490612b71565b80601f016020809104026020016040519081016040528092919081815260200182805461195090612b71565b801561199b5780601f106119725761010080835404028352916020019161199b565b820191905f5260205f20905b81548152906001019060200180831161197e57829003601f168201915b50505050509050919050565b5f6119b06123fe565b90505f8151116119ce5760405180602001604052805f8152506119fc565b806119d88461240d565b600e6040516020016119ec93929190612dea565b6040516020818303038152906040525b9392505050565b5f546001600160a01b03163314611a2c5760405162461bcd60e51b81526004016108f990612b3c565b6013805461ff001981166101009182900460ff1615909102179055565b5f546001600160a01b03163314611a725760405162461bcd60e51b81526004016108f990612b3c565b60115481611a7f60015490565b611a899190612d6d565b1115611aec5760405162461bcd60e51b815260206004820152602c60248201527f4e4f545f454e4f5547485f535550504c595f544f5f47495645415741595f444560448201526b14d254915117d05353d5539560a21b60648201526084016108f9565b6109498282612298565b5f546001600160a01b03163314611b1f5760405162461bcd60e51b81526004016108f990612b3c565b6001600160a01b038116611b845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f9565b610eb3816122b1565b5f6001600160e01b031982166380ac58cd60e01b1480611bbd57506001600160e01b03198216635b5e139f60e01b145b80611bd857506001600160e01b0319821663780e9d6360e01b145b806108ca57506301ffc9a760e01b6001600160e01b03198316146108ca565b5f6001600160e01b0319821663152a902d60e11b14806108ca57506108ca82611b8d565b6127106001600160601b0382161115611c895760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016108f9565b6001600160a01b038216611cdf5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016108f9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f611d7d826120f1565b80519091505f906001600160a01b0316336001600160a01b03161480611db3575033611da8846109dd565b6001600160a01b0316145b80611dc557508151611dc59033610846565b905080611e2f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108f9565b846001600160a01b0316825f01516001600160a01b031614611ea25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108f9565b6001600160a01b038416611f065760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108f9565b611f145f84845f0151611d18565b6001600160a01b0385165f908152600560205260408120805460019290611f459084906001600160801b0316612e72565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f9081526005602052604081208054600194509092611f9091859116612e99565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182525f8981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612017846001612d6d565b5f818152600460205260409020549091506001600160a01b03166120a757612040816001541190565b156120a75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081525f878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f808252602082015261210f826001541190565b61216e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108f9565b5f7f00000000000000000000000000000000000000000000000000000000000007d083106121ce576121c07f00000000000000000000000000000000000000000000000000000000000007d084612eb9565b6121cb906001612d6d565b90505b825b818110612237575f818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561222457949350505050565b508061222f81612d58565b9150506121d0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108f9565b610949828260405180602001604052805f81525061250a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6001600160a01b0384163b156123f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612343903390899088908890600401612ecc565b6020604051808303815f875af192505050801561237d575060408051601f3d908101601f1916820190925261237a91810190612f08565b60015b6123d8573d8080156123aa576040519150601f19603f3d011682016040523d82523d5f602084013e6123af565b606091505b5080515f036123d05760405162461bcd60e51b81526004016108f990612d80565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123f6565b5060015b949350505050565b6060600d805461095c90612b71565b6060815f036124335750506040805180820190915260018152600360fc1b602082015290565b815f5b811561245c578061244681612d02565b91506124559050600a83612cef565b9150612436565b5f8167ffffffffffffffff811115612476576124766128f8565b6040519080825280601f01601f1916602001820160405280156124a0576020820181803683370190505b5090505b84156123f6576124b5600183612eb9565b91506124c2600a86612d45565b6124cd906030612d6d565b60f81b8183815181106124e2576124e2612d1a565b60200101906001600160f81b03191690815f1a905350612503600a86612cef565b94506124a4565b6001546001600160a01b03841661256d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108f9565b612578816001541190565b156125c55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108f9565b7f00000000000000000000000000000000000000000000000000000000000007d08311156126405760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108f9565b6001600160a01b0384165f908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061269b908790612e99565b6001600160801b031681526020018583602001516126b99190612e99565b6001600160801b039081169091526001600160a01b038088165f8181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127cb5760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461279a5f888488612300565b6127b65760405162461bcd60e51b81526004016108f990612d80565b816127c081612d02565b92505060010161274f565b5060018190556120e9565b6001600160e01b031981168114610eb3575f80fd5b5f602082840312156127fb575f80fd5b81356119fc816127d6565b6001600160a01b0381168114610eb3575f80fd5b5f806040838503121561282b575f80fd5b823561283681612806565b915060208301356001600160601b0381168114612851575f80fd5b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6119fc602083018461285c565b5f602082840312156128ac575f80fd5b5035919050565b5f80604083850312156128c4575f80fd5b82356128cf81612806565b946020939093013593505050565b5f602082840312156128ed575f80fd5b81356119fc81612806565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115612926576129266128f8565b604051601f8501601f19908116603f0116810190828211818310171561294e5761294e6128f8565b81604052809350858152868686011115612966575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561298f575f80fd5b813567ffffffffffffffff8111156129a5575f80fd5b8201601f810184136129b5575f80fd5b6123f68482356020840161290c565b5f805f606084860312156129d6575f80fd5b83356129e181612806565b925060208401356129f181612806565b929592945050506040919091013590565b5f8060408385031215612a13575f80fd5b50508035926020909101359150565b602080825282518282018190525f9190848201906040850190845b81811015612a5957835183529284019291840191600101612a3d565b50909695505050505050565b5f8060408385031215612a76575f80fd5b8235612a8181612806565b915060208301358015158114612851575f80fd5b5f805f8060808587031215612aa8575f80fd5b8435612ab381612806565b93506020850135612ac381612806565b925060408501359150606085013567ffffffffffffffff811115612ae5575f80fd5b8501601f81018713612af5575f80fd5b612b048782356020840161290c565b91505092959194509250565b5f8060408385031215612b21575f80fd5b8235612b2c81612806565b9150602083013561285181612806565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b8557607f821691505b602082108103612ba357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b7757805f5260205f20601f840160051c81016020851015612bce5750805b601f840160051c820191505b81811015612bed575f8155600101612bda565b5050505050565b815167ffffffffffffffff811115612c0e57612c0e6128f8565b612c2281612c1c8454612b71565b84612ba9565b602080601f831160018114612c55575f8415612c3e5750858301515b5f19600386901b1c1916600185901b1785556120e9565b5f85815260208120601f198616915b82811015612c8357888601518255948401946001909101908401612c64565b5085821015612ca057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176108ca576108ca612cb0565b634e487b7160e01b5f52601260045260245ffd5b5f82612cfd57612cfd612cdb565b500490565b5f60018201612d1357612d13612cb0565b5060010190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612d3e575f80fd5b5051919050565b5f82612d5357612d53612cdb565b500690565b5f81612d6657612d66612cb0565b505f190190565b808201808211156108ca576108ca612cb0565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f81518060208401855e5f93019283525090919050565b5f612dfe612df88387612dd3565b85612dd3565b5f8454612e0a81612b71565b60018281168015612e225760018114612e3757612e63565b60ff1984168652821515830286019450612e63565b885f526020805f205f5b85811015612e5a57815489820152908401908201612e41565b50505082860194505b50929998505050505050505050565b6001600160801b03828116828216039080821115612e9257612e92612cb0565b5092915050565b6001600160801b03818116838216019080821115612e9257612e92612cb0565b818103818111156108ca576108ca612cb0565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612efe9083018461285c565b9695505050505050565b5f60208284031215612f18575f80fd5b81516119fc816127d656fea264697066735822122047c6c588824bce1e32266ad8266b21b80442c85f176899d070003745f34ed43064736f6c63430008190033

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

00000000000000000000000017de109b7418cd143e45f6068828b9a6b1a172b6000000000000000000000000e2ead7593cc0702f4681bb802ef09d417e744b5d

-----Decoded View---------------
Arg [0] : royaltiesReceiver (address): 0x17De109B7418cd143E45f6068828B9A6b1a172B6
Arg [1] : _contract (address): 0xE2EaD7593Cc0702F4681Bb802ef09d417e744B5d

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000017de109b7418cd143e45f6068828b9a6b1a172b6
Arg [1] : 000000000000000000000000e2ead7593cc0702f4681bb802ef09d417e744b5d


Deployed Bytecode Sourcemap

28654:6973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35409:215;;;;;;;;;;-1:-1:-1;35409:215:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35409:215:0;;;;;;;;34678:85;;;;;;;;;;;;;:::i;:::-;;35252:143;;;;;;;;;;-1:-1:-1;35252:143:0;;;;;:::i;:::-;;:::i;20306:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21541:294::-;;;;;;;;;;-1:-1:-1;21541:294:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2082:32:1;;;2064:51;;2052:2;2037:18;21541:294:0;1918:203:1;21114:417:0;;;;;;;;;;-1:-1:-1;21114:417:0;;;;;:::i;:::-;;:::i;34871:110::-;;;;;;;;;;-1:-1:-1;34871:110:0;;;;;:::i;:::-;;:::i;28929:32::-;;;;;;;;;;;;;;;;;;;2860:25:1;;;2848:2;2833:18;28929:32:0;2714:177:1;34562:106:0;;;;;;;;;;-1:-1:-1;34562:106:0;;;;;:::i;:::-;;:::i;17276:100::-;;;;;;;;;;-1:-1:-1;17356:12:0;;17276:100;;29130:30;;;;;;;;;;-1:-1:-1;29130:30:0;;;;;;;;;;;22392:162;;;;;;;;;;-1:-1:-1;22392:162:0;;;;;:::i;:::-;;:::i;29055:29::-;;;;;;;;;;-1:-1:-1;29055:29:0;;;;;;;;13277:448;;;;;;;;;;-1:-1:-1;13277:448:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5043:32:1;;;5025:51;;5107:2;5092:18;;5085:34;;;;4998:18;13277:448:0;4851:274:1;17624:864:0;;;;;;;;;;-1:-1:-1;17624:864:0;;;;;:::i;:::-;;:::i;29289:51::-;;;;;;;;;;-1:-1:-1;29289:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33927:79;;;;;;;;;;;;;:::i;35111:109::-;;;;;;;;;;;;;:::i;22564:177::-;;;;;;;;;;-1:-1:-1;22564:177:0;;;;;:::i;:::-;;:::i;32423:753::-;;;;;;;;;;-1:-1:-1;32423:753:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34016:80::-;;;;;;;;;;-1:-1:-1;34016:80:0;;;;;:::i;:::-;;:::i;17386:228::-;;;;;;;;;;-1:-1:-1;17386:228:0;;;;;:::i;:::-;;:::i;34275:161::-;;;;;;;;;;-1:-1:-1;34275:161:0;;;;;:::i;:::-;;:::i;29211:28::-;;;;;;;;;;-1:-1:-1;29211:28:0;;;;;;;;;;;28847:33;;;;;;;;;;;;;:::i;28808:28::-;;;;;;;;;;;;;:::i;20172:124::-;;;;;;;;;;-1:-1:-1;20172:124:0;;;;;:::i;:::-;;:::i;30253:965::-;;;;;;;;;;;;;:::i;18930:258::-;;;;;;;;;;-1:-1:-1;18930:258:0;;;;;:::i;:::-;;:::i;8203:94::-;;;;;;;;;;;;;:::i;34446:106::-;;;;;;;;;;-1:-1:-1;34446:106:0;;;;;:::i;:::-;;:::i;28766:31::-;;;;;;;;;;-1:-1:-1;28766:31:0;;;;-1:-1:-1;;;;;28766:31:0;;;7976:87;;;;;;;;;;-1:-1:-1;8022:7:0;8049:6;-1:-1:-1;;;;;8049:6:0;7976:87;;31944:167;;;;;;;;;;-1:-1:-1;31944:167:0;;;;;:::i;:::-;;:::i;:::-;;;;5999:13:1;;-1:-1:-1;;;;;5995:39:1;5977:58;;6095:4;6083:17;;;6077:24;6103:18;6073:49;6051:20;;;6044:79;;;;5950:18;31944:167:0;5767:362:1;29006:38:0;;;;;;;;;;;;;;;;20416:104;;;;;;;;;;;;;:::i;29948:295::-;;;;;;:::i;:::-;;:::i;21845:313::-;;;;;;;;;;-1:-1:-1;21845:313:0;;;;;:::i;:::-;;:::i;28887:31::-;;;;;;;;;;;;;:::i;34106:159::-;;;;;;;;;;-1:-1:-1;34106:159:0;;;;;:::i;:::-;;:::i;22751:355::-;;;;;;;;;;-1:-1:-1;22751:355:0;;;;;:::i;:::-;;:::i;31228:706::-;;;;;;;;;;-1:-1:-1;31228:706:0;;;;;:::i;:::-;;:::i;33186:731::-;;;;;;;;;;-1:-1:-1;33186:731:0;;;;;:::i;:::-;;:::i;28968:31::-;;;;;;;;;;;;;;;;26414:43;;;;;;;;;;;;;;;;34773:88;;;;;;;;;;;;;:::i;22168:214::-;;;;;;;;;;-1:-1:-1;22168:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;22339:25:0;;;22310:4;22339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22168:214;32121:292;;;;;;;;;;-1:-1:-1;32121:292:0;;;;;:::i;:::-;;:::i;8307:229::-;;;;;;;;;;-1:-1:-1;8307:229:0;;;;;:::i;:::-;;:::i;35409:215::-;35512:4;35536:38;35562:11;35536:25;:38::i;:::-;:80;;;;35578:38;35604:11;35578:25;:38::i;:::-;35529:87;35409:215;-1:-1:-1;;35409:215:0:o;34678:85::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;;;;;;;;;34745:10:::1;::::0;;-1:-1:-1;;34731:24:0;::::1;34745:10;::::0;;::::1;34744:11;34731:24;::::0;;34678:85::o;35252:143::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;35348:39:::1;35367:8;35377:9;35348:18;:39::i;:::-;35252:143:::0;;:::o;20306:100::-;20360:13;20393:5;20386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20306:100;:::o;21541:294::-;21645:7;21692:16;21700:7;23207:12;;-1:-1:-1;23197:22:0;23116:111;21692:16;21670:111;;;;-1:-1:-1;;;21670:111:0;;8736:2:1;21670:111:0;;;8718:21:1;8775:2;8755:18;;;8748:30;8814:34;8794:18;;;8787:62;-1:-1:-1;;;8865:18:1;;;8858:43;8918:19;;21670:111:0;8534:409:1;21670:111:0;-1:-1:-1;21803:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21803:24:0;;21541:294::o;21114:417::-;21187:13;21203:24;21219:7;21203:15;:24::i;:::-;21187:40;;21252:5;-1:-1:-1;;;;;21246:11:0;:2;-1:-1:-1;;;;;21246:11:0;;21238:58;;;;-1:-1:-1;;;21238:58:0;;9150:2:1;21238:58:0;;;9132:21:1;9189:2;9169:18;;;9162:30;9228:34;9208:18;;;9201:62;-1:-1:-1;;;9279:18:1;;;9272:32;9321:19;;21238:58:0;8948:398:1;21238:58:0;7547:10;-1:-1:-1;;;;;21333:21:0;;;;:62;;-1:-1:-1;21358:37:0;21375:5;7547:10;22168:214;:::i;21358:37::-;21311:169;;;;-1:-1:-1;;;21311:169:0;;9553:2:1;21311:169:0;;;9535:21:1;9592:2;9572:18;;;9565:30;9631:34;9611:18;;;9604:62;9702:27;9682:18;;;9675:55;9747:19;;21311:169:0;9351:421:1;21311:169:0;21495:28;21504:2;21508:7;21517:5;21495:8;:28::i;:::-;21176:355;21114:417;;:::o;34871:110::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34946:16:::1;:27:::0;;-1:-1:-1;;;;;;34946:27:0::1;-1:-1:-1::0;;;;;34946:27:0;;;::::1;::::0;;;::::1;::::0;;34871:110::o;34562:106::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34638:9:::1;:22;34650:10:::0;34638:9;:22:::1;:::i;22392:162::-:0;22518:28;22528:4;22534:2;22538:7;22518:9;:28::i;13277:448::-;13374:7;13432:27;;;:17;:27;;;;;;;;13403:56;;;;;;;;;-1:-1:-1;;;;;13403:56:0;;;;;-1:-1:-1;;;13403:56:0;;;-1:-1:-1;;;;;13403:56:0;;;;;;;;13374:7;;13474:92;;-1:-1:-1;13525:29:0;;;;;;;;;13535:19;13525:29;-1:-1:-1;;;;;13525:29:0;;;;-1:-1:-1;;;13525:29:0;;-1:-1:-1;;;;;13525:29:0;;;;;13474:92;13618:23;;;;13580:21;;14093:5;;13605:36;;-1:-1:-1;;;;;13605:36:0;:10;:36;:::i;:::-;13604:58;;;;:::i;:::-;13685:16;;;;;-1:-1:-1;13277:448:0;;-1:-1:-1;;;;13277:448:0:o;17624:864::-;17749:7;17790:16;17800:5;17790:9;:16::i;:::-;17782:5;:24;17774:71;;;;-1:-1:-1;;;17774:71:0;;12711:2:1;17774:71:0;;;12693:21:1;12750:2;12730:18;;;12723:30;12789:34;12769:18;;;12762:62;-1:-1:-1;;;12840:18:1;;;12833:32;12882:19;;17774:71:0;12509:398:1;17774:71:0;17856:22;17881:13;17356:12;;;17276:100;17881:13;17856:38;;17905:19;17939:25;17993:9;17988:426;18012:14;18008:1;:18;17988:426;;;18048:31;18082:14;;;:11;:14;;;;;;;;;18048:48;;;;;;;;;-1:-1:-1;;;;;18048:48:0;;;;;-1:-1:-1;;;18048:48:0;;;;;;;;;;;;18115:28;18111:103;;18184:14;;;-1:-1:-1;18111:103:0;18253:5;-1:-1:-1;;;;;18232:26:0;:17;-1:-1:-1;;;;;18232:26:0;;18228:175;;18298:5;18283:11;:20;18279:77;;-1:-1:-1;18335:1:0;-1:-1:-1;18328:8:0;;-1:-1:-1;;;18328:8:0;18279:77;18374:13;;;;:::i;:::-;;;;18228:175;-1:-1:-1;18028:3:0;;17988:426;;;-1:-1:-1;18424:56:0;;-1:-1:-1;;;18424:56:0;;13254:2:1;18424:56:0;;;13236:21:1;13293:2;13273:18;;;13266:30;13332:34;13312:18;;;13305:62;-1:-1:-1;;;13383:18:1;;;13376:44;13437:19;;18424:56:0;13052:410:1;33927:79:0;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;33990:8:::1;::::0;;-1:-1:-1;;33978:20:0;::::1;33990:8:::0;;;;::::1;;;33989:9;33978:20:::0;;::::1;;::::0;;33927:79::o;35111:109::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;35161:51:::1;::::0;35169:10:::1;::::0;35190:21:::1;35161:51:::0;::::1;;;::::0;::::1;::::0;;;35190:21;35169:10;35161:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35111:109::o:0;22564:177::-;22694:39;22711:4;22717:2;22721:7;22694:39;;;;;;;;;;;;:16;:39::i;32423:753::-;32510:16;32544:23;32570:17;32580:6;32570:9;:17::i;:::-;32544:43;;32598:30;32645:15;32631:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32631:30:0;-1:-1:-1;32598:63:0;-1:-1:-1;32697:1:0;32672:22;32751:383;32790:15;32772;:33;:64;;;;;32827:9;;32809:14;:27;;32772:64;32751:383;;;32863:25;32891:23;32899:14;32891:7;:23::i;:::-;32863:51;;32958:6;-1:-1:-1;;;;;32937:27:0;:17;-1:-1:-1;;;;;32937:27:0;;32933:155;;33018:14;32985:13;32999:15;32985:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;33055:17;;;;:::i;:::-;;;;32933:155;33106:16;;;;:::i;:::-;;;;32848:286;32751:383;;;-1:-1:-1;33155:13:0;;32423:753;-1:-1:-1;;;;32423:753:0:o;34016:80::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34076:4:::1;:12:::0;34016:80::o;17386:228::-;17489:7;17530:13;17356:12;;;17276:100;17530:13;17522:5;:21;17514:69;;;;-1:-1:-1;;;17514:69:0;;13801:2:1;17514:69:0;;;13783:21:1;13840:2;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;-1:-1:-1;;;13930:18:1;;;13923:33;13973:19;;17514:69:0;13599:399:1;17514:69:0;-1:-1:-1;17601:5:0;17386:228::o;34275:161::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34390:17:::1;:38;34410:18:::0;34390:17;:38:::1;:::i;28847:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28808:28::-;;;;;;;:::i;20172:124::-;20236:7;20263:20;20275:7;20263:11;:20::i;:::-;:25;;20172:124;-1:-1:-1;;20172:124:0:o;30253:965::-;30323:11;;;;;;;30322:12;30314:48;;;;-1:-1:-1;;;30314:48:0;;14205:2:1;30314:48:0;;;14187:21:1;14244:2;14224:18;;;14217:30;-1:-1:-1;;;14263:18:1;;;14256:53;14326:18;;30314:48:0;14003:347:1;30314:48:0;30406:16;;30398:47;;-1:-1:-1;;;30398:47:0;;30434:10;30398:47;;;2064:51:1;30373:22:0;;-1:-1:-1;;;;;30406:16:0;;30398:35;;2037:18:1;;30398:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30373:72;;30481:1;30464:14;:18;30456:50;;;;-1:-1:-1;;;30456:50:0;;14746:2:1;30456:50:0;;;14728:21:1;14785:2;14765:18;;;14758:30;-1:-1:-1;;;14804:18:1;;;14797:49;14863:18;;30456:50:0;14544:343:1;30456:50:0;30521:19;30555:26;30601:9;30596:358;30620:14;30616:1;:18;30596:358;;;30692:16;;30674:70;;-1:-1:-1;;;30674:70:0;;30730:10;30674:70;;;5025:51:1;5092:18;;;5085:34;;;30656:15:0;;-1:-1:-1;;;;;30692:16:0;;30674:55;;4998:18:1;;30674:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30764:28;;;;:19;:28;;;;;;30656:88;;-1:-1:-1;30764:28:0;;30759:184;;30813:13;;;;:::i;:::-;30845:28;;;;:19;:28;;;;;:35;;-1:-1:-1;;30845:35:0;30876:4;30845:35;;;30813:13;-1:-1:-1;30865:7:0;;-1:-1:-1;30865:7:0;;-1:-1:-1;30759:184:0;-1:-1:-1;30636:3:0;;30596:358;;;-1:-1:-1;30972:15:0;30986:1;30972:11;:15;:::i;:::-;30991:1;30972:20;30968:127;;31009:13;;;;:::i;:::-;31044:39;;;;:19;:39;;;;;31037:46;;-1:-1:-1;;31037:46:0;;;31009:13;-1:-1:-1;;30968:127:0;31131:1;31117:11;:15;31109:52;;;;-1:-1:-1;;;31109:52:0;;15352:2:1;31109:52:0;;;15334:21:1;15391:2;15371:18;;;15364:30;15430:26;15410:18;;;15403:54;15474:18;;31109:52:0;15150:348:1;31109:52:0;31172:38;31182:10;31194:15;31208:1;31194:11;:15;:::i;:::-;31172:9;:38::i;18930:258::-;18994:7;-1:-1:-1;;;;;19036:19:0;;19014:112;;;;-1:-1:-1;;;19014:112:0;;15705:2:1;19014:112:0;;;15687:21:1;15744:2;15724:18;;;15717:30;15783:34;15763:18;;;15756:62;-1:-1:-1;;;15834:18:1;;;15827:41;15885:19;;19014:112:0;15503:407:1;19014:112:0;-1:-1:-1;;;;;;19152:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;19152:27:0;;18930:258::o;8203:94::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;8268:21:::1;8286:1;8268:9;:21::i;:::-;8203:94::o:0;34446:106::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34522:9:::1;:22;34534:10:::0;34522:9;:22:::1;:::i;31944:167::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;32083:20:0;32095:7;32083:11;:20::i;20416:104::-;20472:13;20505:7;20498:14;;;;;:::i;29948:295::-;30040:11;29711:1;29697:11;:15;:52;;;;;29731:18;;29716:11;:33;;29697:52;29675:122;;;;-1:-1:-1;;;29675:122:0;;16117:2:1;29675:122:0;;;16099:21:1;16156:2;16136:18;;;16129:30;-1:-1:-1;;;16175:18:1;;;16168:50;16235:18;;29675:122:0;15915:344:1;29675:122:0;29861:9;;29846:11;29830:13;17356:12;;;17276:100;29830:13;:27;;;;:::i;:::-;:40;;29808:110;;;;-1:-1:-1;;;29808:110:0;;16596:2:1;29808:110:0;;;16578:21:1;16635:2;16615:18;;;16608:30;-1:-1:-1;;;16654:18:1;;;16647:50;16714:18;;29808:110:0;16394:344:1;29808:110:0;30078:10:::1;::::0;::::1;;30077:11;30069:47;;;::::0;-1:-1:-1;;;30069:47:0;;14205:2:1;30069:47:0::1;::::0;::::1;14187:21:1::0;14244:2;14224:18;;;14217:30;-1:-1:-1;;;14263:18:1;;;14256:53;14326:18;;30069:47:0::1;14003:347:1::0;30069:47:0::1;30155:11;30148:4;;:18;;;;:::i;:::-;30135:9;:31;;30127:63;;;::::0;-1:-1:-1;;;30127:63:0;;16945:2:1;30127:63:0::1;::::0;::::1;16927:21:1::0;16984:2;16964:18;;;16957:30;-1:-1:-1;;;17003:18:1;;;16996:49;17062:18;;30127:63:0::1;16743:343:1::0;30127:63:0::1;30201:34;30211:10;30223:11;30201:9;:34::i;21845:313::-:0;7547:10;-1:-1:-1;;;;;21963:24:0;;;21955:63;;;;-1:-1:-1;;;21955:63:0;;17293:2:1;21955:63:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:28;17351:18;;;17344:56;17417:18;;21955:63:0;17091:350:1;21955:63:0;7547:10;22033:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22033:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22033:53:0;;;;;;;;;;22102:48;;540:41:1;;;22033:42:0;;7547:10;22102:48;;513:18:1;22102:48:0;;;;;;;21845:313;;:::o;28887:31::-;;;;;;;:::i;34106:159::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34217:18:::1;:40:::0;34106:159::o;22751:355::-;22910:28;22920:4;22926:2;22930:7;22910:9;:28::i;:::-;22971:48;22994:4;23000:2;23004:7;23013:5;22971:22;:48::i;:::-;22949:149;;;;-1:-1:-1;;;22949:149:0;;;;;;;:::i;:::-;22751:355;;;;:::o;31228:706::-;31383:16;;31375:43;;-1:-1:-1;;;31375:43:0;;-1:-1:-1;;;;;2082:32:1;;;31375:43:0;;;2064:51:1;31325:7:0;;;;31383:16;;;31375:35;;2037:18:1;;31375:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31350:68;;31433:19;31467:26;31513:9;31508:300;31532:14;31528:1;:18;31508:300;;;31604:16;;31586:66;;-1:-1:-1;;;31586:66:0;;-1:-1:-1;;;;;5043:32:1;;;31586:66:0;;;5025:51:1;5092:18;;;5085:34;;;31568:15:0;;31604:16;;31586:55;;4998:18:1;;31586:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31672:28;;;;:19;:28;;;;;;31568:84;;-1:-1:-1;31672:28:0;;31667:130;;31721:13;;;;:::i;:::-;;;;31774:7;31753:28;;31667:130;-1:-1:-1;31548:3:0;;31508:300;;;-1:-1:-1;31826:15:0;31840:1;31826:11;:15;:::i;:::-;31845:1;31826:20;31822:66;;31863:13;;;;:::i;:::-;;;;31822:66;31910:15;31924:1;31910:11;:15;:::i;:::-;31902:24;31228:706;-1:-1:-1;;;;;31228:706:0:o;33186:731::-;33305:13;33358:17;33366:8;23207:12;;-1:-1:-1;23197:22:0;23116:111;33358:17;33336:114;;;;-1:-1:-1;;;33336:114:0;;18068:2:1;33336:114:0;;;18050:21:1;18107:2;18087:18;;;18080:30;18146:34;18126:18;;;18119:62;-1:-1:-1;;;18197:18:1;;;18190:45;18252:19;;33336:114:0;17866:411:1;33336:114:0;33469:8;;;;;;;:17;;33481:5;33469:17;33465:74;;33510:17;33503:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33186:731;;;:::o;33465:74::-;33553:28;33584:10;:8;:10::i;:::-;33553:41;;33656:1;33631:14;33625:28;:32;:284;;;;;;;;;;;;;;;;;33749:14;33790:19;:8;:17;:19::i;:::-;33836:9;33706:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33625:284;33605:304;33186:731;-1:-1:-1;;;33186:731:0:o;34773:88::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;34842:11:::1;::::0;;-1:-1:-1;;34827:26:0;::::1;34842:11;::::0;;;::::1;;;34841:12;34827:26:::0;;::::1;;::::0;;34773:88::o;32121:292::-;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;32284:9:::1;;32272:8;32256:13;17356:12:::0;;;17276:100;32256:13:::1;:24;;;;:::i;:::-;:37;;32234:131;;;::::0;-1:-1:-1;;;32234:131:0;;19717:2:1;32234:131:0::1;::::0;::::1;19699:21:1::0;19756:2;19736:18;;;19729:30;19795:34;19775:18;;;19768:62;-1:-1:-1;;;19846:18:1;;;19839:42;19898:19;;32234:131:0::1;19515:408:1::0;32234:131:0::1;32376:29;32386:8;32396;32376:9;:29::i;8307:229::-:0;8022:7;8049:6;-1:-1:-1;;;;;8049:6:0;7547:10;8113:23;8105:68;;;;-1:-1:-1;;;8105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8410:22:0;::::1;8388:110;;;::::0;-1:-1:-1;;;8388:110:0;;20130:2:1;8388:110:0::1;::::0;::::1;20112:21:1::0;20169:2;20149:18;;;20142:30;20208:34;20188:18;;;20181:62;-1:-1:-1;;;20259:18:1;;;20252:36;20305:19;;8388:110:0::1;19928:402:1::0;8388:110:0::1;8509:19;8519:8;8509:9;:19::i;18498:422::-:0;18645:4;-1:-1:-1;;;;;;18687:40:0;;-1:-1:-1;;;18687:40:0;;:105;;-1:-1:-1;;;;;;;18744:48:0;;-1:-1:-1;;;18744:48:0;18687:105;:172;;;-1:-1:-1;;;;;;;18809:50:0;;-1:-1:-1;;;18809:50:0;18687:172;:225;;;-1:-1:-1;;;;;;;;;;10711:40:0;;;18876:36;10552:207;13005:215;13107:4;-1:-1:-1;;;;;;13131:41:0;;-1:-1:-1;;;13131:41:0;;:81;;;13176:36;13200:11;13176:23;:36::i;14379:334::-;14093:5;-1:-1:-1;;;;;14482:33:0;;;;14474:88;;;;-1:-1:-1;;;14474:88:0;;20537:2:1;14474:88:0;;;20519:21:1;20576:2;20556:18;;;20549:30;20615:34;20595:18;;;20588:62;-1:-1:-1;;;20666:18:1;;;20659:40;20716:19;;14474:88:0;20335:406:1;14474:88:0;-1:-1:-1;;;;;14581:22:0;;14573:60;;;;-1:-1:-1;;;14573:60:0;;20948:2:1;14573:60:0;;;20930:21:1;20987:2;20967:18;;;20960:30;21026:27;21006:18;;;20999:55;21071:18;;14573:60:0;20746:349:1;14573:60:0;14670:35;;;;;;;;;-1:-1:-1;;;;;14670:35:0;;;;;;-1:-1:-1;;;;;14670:35:0;;;;;;;;;;-1:-1:-1;;;14648:57:0;;;;:19;:57;14379:334::o;26208:196::-;26323:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;26323:29:0;-1:-1:-1;;;;;26323:29:0;;;;;;;;;26368:28;;26323:24;;26368:28;;;;;;;26208:196;;;:::o;24646:1552::-;24761:35;24799:20;24811:7;24799:11;:20::i;:::-;24876:18;;24761:58;;-1:-1:-1;24834:22:0;;-1:-1:-1;;;;;24860:34:0;7547:10;-1:-1:-1;;;;;24860:34:0;;:87;;;-1:-1:-1;7547:10:0;24911:20;24923:7;24911:11;:20::i;:::-;-1:-1:-1;;;;;24911:36:0;;24860:87;:154;;;-1:-1:-1;24981:18:0;;24964:50;;7547:10;22168:214;:::i;24964:50::-;24834:181;;25052:17;25030:117;;;;-1:-1:-1;;;25030:117:0;;21302:2:1;25030:117:0;;;21284:21:1;21341:2;21321:18;;;21314:30;21380:34;21360:18;;;21353:62;-1:-1:-1;;;21431:18:1;;;21424:48;21489:19;;25030:117:0;21100:414:1;25030:117:0;25206:4;-1:-1:-1;;;;;25184:26:0;:13;:18;;;-1:-1:-1;;;;;25184:26:0;;25162:114;;;;-1:-1:-1;;;25162:114:0;;21721:2:1;25162:114:0;;;21703:21:1;21760:2;21740:18;;;21733:30;21799:34;21779:18;;;21772:62;-1:-1:-1;;;21850:18:1;;;21843:36;21896:19;;25162:114:0;21519:402:1;25162:114:0;-1:-1:-1;;;;;25295:16:0;;25287:66;;;;-1:-1:-1;;;25287:66:0;;22128:2:1;25287:66:0;;;22110:21:1;22167:2;22147:18;;;22140:30;22206:34;22186:18;;;22179:62;-1:-1:-1;;;22257:18:1;;;22250:35;22302:19;;25287:66:0;21926:401:1;25287:66:0;25422:49;25439:1;25443:7;25452:13;:18;;;25422:8;:49::i;:::-;-1:-1:-1;;;;;25486:18:0;;;;;;:12;:18;;;;;:31;;25516:1;;25486:18;:31;;25516:1;;-1:-1:-1;;;;;25486:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;25486:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25528:16:0;;-1:-1:-1;25528:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;25528:16:0;;:29;;-1:-1:-1;;25528:29:0;;:::i;:::-;;;-1:-1:-1;;;;;25528:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25591:43:0;;;;;;;;-1:-1:-1;;;;;25591:43:0;;;;;;25617:15;25591:43;;;;;;;;;-1:-1:-1;25568:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;25568:66:0;-1:-1:-1;;;;;;25568:66:0;;;;;;;;;;;25781:11;25580:7;-1:-1:-1;25781:11:0;:::i;:::-;25848:1;25807:24;;;:11;:24;;;;;:29;25759:33;;-1:-1:-1;;;;;;25807:29:0;25803:288;;25871:20;25879:11;23207:12;;-1:-1:-1;23197:22:0;23116:111;25871:20;25867:213;;;25939:125;;;;;;;;25976:18;;-1:-1:-1;;;;;25939:125:0;;;;;;26017:28;;;;25939:125;;;;;;;;;;-1:-1:-1;25912:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;25912:152:0;-1:-1:-1;;;;;;25912:152:0;;;;;;;;;;;;25867:213;26129:7;26125:2;-1:-1:-1;;;;;26110:27:0;26119:4;-1:-1:-1;;;;;26110:27:0;;;;;;;;;;;26148:42;24750:1448;;;24646:1552;;;:::o;19474:688::-;-1:-1:-1;;;;;;;;;;;;;;;;;19609:16:0;19617:7;23207:12;;-1:-1:-1;23197:22:0;23116:111;19609:16;19601:71;;;;-1:-1:-1;;;19601:71:0;;22941:2:1;19601:71:0;;;22923:21:1;22980:2;22960:18;;;22953:30;23019:34;22999:18;;;22992:62;-1:-1:-1;;;23070:18:1;;;23063:40;23120:19;;19601:71:0;22739:406:1;19601:71:0;19687:26;19739:12;19728:7;:23;19724:103;;19789:22;19799:12;19789:7;:22;:::i;:::-;:26;;19814:1;19789:26;:::i;:::-;19768:47;;19724:103;19861:7;19841:242;19878:18;19870:4;:26;19841:242;;19921:31;19955:17;;;:11;:17;;;;;;;;;19921:51;;;;;;;;;-1:-1:-1;;;;;19921:51:0;;;;;-1:-1:-1;;;19921:51:0;;;;;;;;;;;;19991:28;19987:85;;20047:9;19474:688;-1:-1:-1;;;;19474:688:0:o;19987:85::-;-1:-1:-1;19898:6:0;;;;:::i;:::-;;;;19841:242;;;-1:-1:-1;20097:57:0;;-1:-1:-1;;;20097:57:0;;23485:2:1;20097:57:0;;;23467:21:1;23524:2;23504:18;;;23497:30;23563:34;23543:18;;;23536:62;-1:-1:-1;;;23614:18:1;;;23607:45;23669:19;;20097:57:0;23283:411:1;23237:104:0;23306:27;23316:2;23320:8;23306:27;;;;;;;;;;;;:9;:27::i;8546:173::-;8602:16;8621:6;;-1:-1:-1;;;;;8638:17:0;;;-1:-1:-1;;;;;;8638:17:0;;;;;;8671:40;;8621:6;;;;;;;8671:40;;8602:16;8671:40;8591:128;8546:173;:::o;27323:985::-;27478:4;-1:-1:-1;;;;;27499:13:0;;3505:19;:23;27495:806;;27552:175;;-1:-1:-1;;;27552:175:0;;-1:-1:-1;;;;;27552:36:0;;;;;:175;;7547:10;;27646:4;;27673:7;;27703:5;;27552:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27552:175:0;;;;;;;;-1:-1:-1;;27552:175:0;;;;;;;;;;;;:::i;:::-;;;27531:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27914:6;:13;27931:1;27914:18;27910:321;;27957:109;;-1:-1:-1;;;27957:109:0;;;;;;;:::i;27910:321::-;28181:6;28175:13;28166:6;28162:2;28158:15;28151:38;27531:715;-1:-1:-1;;;;;;27791:55:0;-1:-1:-1;;;27791:55:0;;-1:-1:-1;27784:62:0;;27495:806;-1:-1:-1;28285:4:0;27495:806;27323:985;;;;;;:::o;34991:110::-;35051:13;35084:9;35077:16;;;;;:::i;8903:658::-;8959:13;9115:5;9124:1;9115:10;9111:53;;-1:-1:-1;;9142:10:0;;;;;;;;;;;;-1:-1:-1;;;9142:10:0;;;;;8903:658::o;9111:53::-;9189:5;9174:12;9230:78;9237:9;;9230:78;;9263:8;;;;:::i;:::-;;-1:-1:-1;9286:10:0;;-1:-1:-1;9294:2:0;9286:10;;:::i;:::-;;;9230:78;;;9318:19;9350:6;9340:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9340:17:0;;9318:39;;9368:154;9375:10;;9368:154;;9402:11;9412:1;9402:11;;:::i;:::-;;-1:-1:-1;9471:10:0;9479:2;9471:5;:10;:::i;:::-;9458:24;;:2;:24;:::i;:::-;9445:39;;9428:6;9435;9428:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9428:56:0;;;;;;;;-1:-1:-1;9499:11:0;9508:2;9499:11;;:::i;:::-;;;9368:154;;23351:1285;23497:12;;-1:-1:-1;;;;;23528:16:0;;23520:62;;;;-1:-1:-1;;;23520:62:0;;24660:2:1;23520:62:0;;;24642:21:1;24699:2;24679:18;;;24672:30;24738:34;24718:18;;;24711:62;-1:-1:-1;;;24789:18:1;;;24782:31;24830:19;;23520:62:0;24458:397:1;23520:62:0;23602:21;23610:12;23207;;-1:-1:-1;23197:22:0;23116:111;23602:21;23601:22;23593:64;;;;-1:-1:-1;;;23593:64:0;;25062:2:1;23593:64:0;;;25044:21:1;25101:2;25081:18;;;25074:30;25140:31;25120:18;;;25113:59;25189:18;;23593:64:0;24860:353:1;23593:64:0;23688:12;23676:8;:24;;23668:71;;;;-1:-1:-1;;;23668:71:0;;25420:2:1;23668:71:0;;;25402:21:1;25459:2;25439:18;;;25432:30;25498:34;25478:18;;;25471:62;-1:-1:-1;;;25549:18:1;;;25542:32;25591:19;;23668:71:0;25218:398:1;23668:71:0;-1:-1:-1;;;;;23863:16:0;;23830:30;23863:16;;;:12;:16;;;;;;;;;23830:49;;;;;;;;;-1:-1:-1;;;;;23830:49:0;;;;;-1:-1:-1;;;23830:49:0;;;;;;;;;;;23909:135;;;;;;;;23935:19;;23830:49;;23909:135;;;23935:39;;23965:8;;23935:39;:::i;:::-;-1:-1:-1;;;;;23909:135:0;;;;;24024:8;23989:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;23909:135:0;;;;;;-1:-1:-1;;;;;23890:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;23890:154:0;;;;;;;;;;;;24083:43;;;;;;;;;;;24109:15;24083:43;;;;;;;;24055:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;24055:71:0;-1:-1:-1;;;;;;24055:71:0;;;;;;;;;;;;;;;;;;24067:12;;24191:325;24215:8;24211:1;:12;24191:325;;;24250:38;;24275:12;;-1:-1:-1;;;;;24250:38:0;;;24267:1;;24250:38;;24267:1;;24250:38;24329:59;24360:1;24364:2;24368:12;24382:5;24329:22;:59::i;:::-;24303:172;;;;-1:-1:-1;;;24303:172:0;;;;;;;:::i;:::-;24490:14;;;;:::i;:::-;;-1:-1:-1;;24225:3:0;;24191:325;;;-1:-1:-1;24530:12:0;:27;;;24568:60;22751:355;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:139::-;-1:-1:-1;;;;;675:31:1;;665:42;;655:70;;721:1;718;711:12;736:451;811:6;819;872:2;860:9;851:7;847:23;843:32;840:52;;;888:1;885;878:12;840:52;927:9;914:23;946:39;979:5;946:39;:::i;:::-;1004:5;-1:-1:-1;1061:2:1;1046:18;;1033:32;-1:-1:-1;;;;;1096:40:1;;1084:53;;1074:81;;1151:1;1148;1141:12;1074:81;1174:7;1164:17;;;736:451;;;;;:::o;1192:300::-;1245:3;1283:5;1277:12;1310:6;1305:3;1298:19;1366:6;1359:4;1352:5;1348:16;1341:4;1336:3;1332:14;1326:47;1418:1;1411:4;1402:6;1397:3;1393:16;1389:27;1382:38;1481:4;1474:2;1470:7;1465:2;1457:6;1453:15;1449:29;1444:3;1440:39;1436:50;1429:57;;;1192:300;;;;:::o;1497:231::-;1646:2;1635:9;1628:21;1609:4;1666:56;1718:2;1707:9;1703:18;1695:6;1666:56;:::i;1733:180::-;1792:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;-1:-1:-1;1884:23:1;;1733:180;-1:-1:-1;1733:180:1:o;2126:323::-;2194:6;2202;2255:2;2243:9;2234:7;2230:23;2226:32;2223:52;;;2271:1;2268;2261:12;2223:52;2310:9;2297:23;2329:39;2362:5;2329:39;:::i;:::-;2387:5;2439:2;2424:18;;;;2411:32;;-1:-1:-1;;;2126:323:1:o;2454:255::-;2513:6;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:39;2673:5;2640:39;:::i;2896:127::-;2957:10;2952:3;2948:20;2945:1;2938:31;2988:4;2985:1;2978:15;3012:4;3009:1;3002:15;3028:632;3093:5;3123:18;3164:2;3156:6;3153:14;3150:40;;;3170:18;;:::i;:::-;3245:2;3239:9;3213:2;3299:15;;-1:-1:-1;;3295:24:1;;;3321:2;3291:33;3287:42;3275:55;;;3345:18;;;3365:22;;;3342:46;3339:72;;;3391:18;;:::i;:::-;3431:10;3427:2;3420:22;3460:6;3451:15;;3490:6;3482;3475:22;3530:3;3521:6;3516:3;3512:16;3509:25;3506:45;;;3547:1;3544;3537:12;3506:45;3597:6;3592:3;3585:4;3577:6;3573:17;3560:44;3652:1;3645:4;3636:6;3628;3624:19;3620:30;3613:41;;;;3028:632;;;;;:::o;3665:451::-;3734:6;3787:2;3775:9;3766:7;3762:23;3758:32;3755:52;;;3803:1;3800;3793:12;3755:52;3843:9;3830:23;3876:18;3868:6;3865:30;3862:50;;;3908:1;3905;3898:12;3862:50;3931:22;;3984:4;3976:13;;3972:27;-1:-1:-1;3962:55:1;;4013:1;4010;4003:12;3962:55;4036:74;4102:7;4097:2;4084:16;4079:2;4075;4071:11;4036:74;:::i;4121:472::-;4198:6;4206;4214;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4322:9;4309:23;4341:39;4374:5;4341:39;:::i;:::-;4399:5;-1:-1:-1;4456:2:1;4441:18;;4428:32;4469:41;4428:32;4469:41;:::i;:::-;4121:472;;4529:7;;-1:-1:-1;;;4583:2:1;4568:18;;;;4555:32;;4121:472::o;4598:248::-;4666:6;4674;4727:2;4715:9;4706:7;4702:23;4698:32;4695:52;;;4743:1;4740;4733:12;4695:52;-1:-1:-1;;4766:23:1;;;4836:2;4821:18;;;4808:32;;-1:-1:-1;4598:248:1:o;5130:632::-;5301:2;5353:21;;;5423:13;;5326:18;;;5445:22;;;5272:4;;5301:2;5524:15;;;;5498:2;5483:18;;;5272:4;5567:169;5581:6;5578:1;5575:13;5567:169;;;5642:13;;5630:26;;5711:15;;;;5676:12;;;;5603:1;5596:9;5567:169;;;-1:-1:-1;5753:3:1;;5130:632;-1:-1:-1;;;;;;5130:632:1:o;6134:424::-;6199:6;6207;6260:2;6248:9;6239:7;6235:23;6231:32;6228:52;;;6276:1;6273;6266:12;6228:52;6315:9;6302:23;6334:39;6367:5;6334:39;:::i;:::-;6392:5;-1:-1:-1;6449:2:1;6434:18;;6421:32;6491:15;;6484:23;6472:36;;6462:64;;6522:1;6519;6512:12;6563:811;6658:6;6666;6674;6682;6735:3;6723:9;6714:7;6710:23;6706:33;6703:53;;;6752:1;6749;6742:12;6703:53;6791:9;6778:23;6810:39;6843:5;6810:39;:::i;:::-;6868:5;-1:-1:-1;6925:2:1;6910:18;;6897:32;6938:41;6897:32;6938:41;:::i;:::-;6998:7;-1:-1:-1;7052:2:1;7037:18;;7024:32;;-1:-1:-1;7107:2:1;7092:18;;7079:32;7134:18;7123:30;;7120:50;;;7166:1;7163;7156:12;7120:50;7189:22;;7242:4;7234:13;;7230:27;-1:-1:-1;7220:55:1;;7271:1;7268;7261:12;7220:55;7294:74;7360:7;7355:2;7342:16;7337:2;7333;7329:11;7294:74;:::i;:::-;7284:84;;;6563:811;;;;;;;:::o;7379:404::-;7447:6;7455;7508:2;7496:9;7487:7;7483:23;7479:32;7476:52;;;7524:1;7521;7514:12;7476:52;7563:9;7550:23;7582:39;7615:5;7582:39;:::i;:::-;7640:5;-1:-1:-1;7697:2:1;7682:18;;7669:32;7710:41;7669:32;7710:41;:::i;7788:356::-;7990:2;7972:21;;;8009:18;;;8002:30;8068:34;8063:2;8048:18;;8041:62;8135:2;8120:18;;7788:356::o;8149:380::-;8228:1;8224:12;;;;8271;;;8292:61;;8346:4;8338:6;8334:17;8324:27;;8292:61;8399:2;8391:6;8388:14;8368:18;8365:38;8362:161;;8445:10;8440:3;8436:20;8433:1;8426:31;8480:4;8477:1;8470:15;8508:4;8505:1;8498:15;8362:161;;8149:380;;;:::o;9903:518::-;10005:2;10000:3;9997:11;9994:421;;;10041:5;10038:1;10031:16;10085:4;10082:1;10072:18;10155:2;10143:10;10139:19;10136:1;10132:27;10126:4;10122:38;10191:4;10179:10;10176:20;10173:47;;;-1:-1:-1;10214:4:1;10173:47;10269:2;10264:3;10260:12;10257:1;10253:20;10247:4;10243:31;10233:41;;10324:81;10342:2;10335:5;10332:13;10324:81;;;10401:1;10387:16;;10368:1;10357:13;10324:81;;;10328:3;;9903:518;;;:::o;10597:1345::-;10723:3;10717:10;10750:18;10742:6;10739:30;10736:56;;;10772:18;;:::i;:::-;10801:97;10891:6;10851:38;10883:4;10877:11;10851:38;:::i;:::-;10845:4;10801:97;:::i;:::-;10953:4;;11010:2;10999:14;;11027:1;11022:663;;;;11729:1;11746:6;11743:89;;;-1:-1:-1;11798:19:1;;;11792:26;11743:89;-1:-1:-1;;10554:1:1;10550:11;;;10546:24;10542:29;10532:40;10578:1;10574:11;;;10529:57;11845:81;;10992:944;;11022:663;9850:1;9843:14;;;9887:4;9874:18;;-1:-1:-1;;11058:20:1;;;11176:236;11190:7;11187:1;11184:14;11176:236;;;11279:19;;;11273:26;11258:42;;11371:27;;;;11339:1;11327:14;;;;11206:19;;11176:236;;;11180:3;11440:6;11431:7;11428:19;11425:201;;;11501:19;;;11495:26;-1:-1:-1;;11584:1:1;11580:14;;;11596:3;11576:24;11572:37;11568:42;11553:58;11538:74;;11425:201;-1:-1:-1;;;;;11672:1:1;11656:14;;;11652:22;11639:36;;-1:-1:-1;10597:1345:1:o;11947:127::-;12008:10;12003:3;11999:20;11996:1;11989:31;12039:4;12036:1;12029:15;12063:4;12060:1;12053:15;12079:168;12152:9;;;12183;;12200:15;;;12194:22;;12180:37;12170:71;;12221:18;;:::i;12252:127::-;12313:10;12308:3;12304:20;12301:1;12294:31;12344:4;12341:1;12334:15;12368:4;12365:1;12358:15;12384:120;12424:1;12450;12440:35;;12455:18;;:::i;:::-;-1:-1:-1;12489:9:1;;12384:120::o;12912:135::-;12951:3;12972:17;;;12969:43;;12992:18;;:::i;:::-;-1:-1:-1;13039:1:1;13028:13;;12912:135::o;13467:127::-;13528:10;13523:3;13519:20;13516:1;13509:31;13559:4;13556:1;13549:15;13583:4;13580:1;13573:15;14355:184;14425:6;14478:2;14466:9;14457:7;14453:23;14449:32;14446:52;;;14494:1;14491;14484:12;14446:52;-1:-1:-1;14517:16:1;;14355:184;-1:-1:-1;14355:184:1:o;14892:112::-;14924:1;14950;14940:35;;14955:18;;:::i;:::-;-1:-1:-1;14989:9:1;;14892:112::o;15009:136::-;15048:3;15076:5;15066:39;;15085:18;;:::i;:::-;-1:-1:-1;;;15121:18:1;;15009:136::o;16264:125::-;16329:9;;;16350:10;;;16347:36;;;16363:18;;:::i;17446:415::-;17648:2;17630:21;;;17687:2;17667:18;;;17660:30;17726:34;17721:2;17706:18;;17699:62;-1:-1:-1;;;17792:2:1;17777:18;;17770:49;17851:3;17836:19;;17446:415::o;18282:212::-;18324:3;18362:5;18356:12;18406:6;18399:4;18392:5;18388:16;18383:3;18377:36;18468:1;18432:16;;18457:13;;;-1:-1:-1;18432:16:1;;18282:212;-1:-1:-1;18282:212:1:o;18499:1011::-;18723:3;18751:57;18777:30;18803:3;18795:6;18777:30;:::i;:::-;18769:6;18751:57;:::i;:::-;18828:1;18861:6;18855:13;18891:36;18917:9;18891:36;:::i;:::-;18946:1;18963:17;;;18989:131;;;;19134:1;19129:356;;;;18956:529;;18989:131;-1:-1:-1;;19021:24:1;;19010:36;;19093:14;;19086:22;19074:35;;19066:44;;;-1:-1:-1;18989:131:1;;19129:356;19160:6;19157:1;19150:17;19190:4;19235;19232:1;19222:18;19262:1;19276:164;19290:6;19287:1;19284:13;19276:164;;;19367:14;;19355:10;;;19348:34;19410:16;;;;19305:10;;19276:164;;;19280:3;;;19468:6;19464:2;19460:15;19453:22;;18956:529;-1:-1:-1;19501:3:1;;18499:1011;-1:-1:-1;;;;;;;;;18499:1011:1:o;22332:200::-;-1:-1:-1;;;;;22468:10:1;;;22456;;;22452:27;;22491:12;;;22488:38;;;22506:18;;:::i;:::-;22488:38;22332:200;;;;:::o;22537:197::-;-1:-1:-1;;;;;22659:10:1;;;22671;;;22655:27;;22694:11;;;22691:37;;;22708:18;;:::i;23150:128::-;23217:9;;;23238:11;;;23235:37;;;23252:18;;:::i;23699:500::-;-1:-1:-1;;;;;23968:15:1;;;23950:34;;24020:15;;24015:2;24000:18;;23993:43;24067:2;24052:18;;24045:34;;;24115:3;24110:2;24095:18;;24088:31;;;23893:4;;24136:57;;24173:19;;24165:6;24136:57;:::i;:::-;24128:65;23699:500;-1:-1:-1;;;;;;23699:500:1:o;24204:249::-;24273:6;24326:2;24314:9;24305:7;24301:23;24297:32;24294:52;;;24342:1;24339;24332:12;24294:52;24374:9;24368:16;24393:30;24417:5;24393:30;:::i

Swarm Source

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