APE Price: $0.41 (-2.21%)
    /

    Token

    The 8102: Blueprints (BLUEPRINTS)

    Overview

    Max Total Supply

    0 BLUEPRINTS

    Holders

    51

    Market

    Volume (24H)

    N/A

    Min Price (24H)

    N/A

    Max Price (24H)

    N/A
    Balance
    1 BLUEPRINTS
    0x4A4484bF6d3242807bd6043Fb3D56C32Eb7E2e1F
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information

    Contract Source Code Verified (Exact Match)

    Contract Name:
    Blueprints

    Compiler Version
    v0.8.21+commit.d9974bed

    Optimization Enabled:
    Yes with 200 runs

    Other Settings:
    paris EvmVersion, MIT license
    File 1 of 35 : The8102Blueprints.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.21;
    import "./Signature.sol";
    import "./Recoverable.sol";
    import "@limitbreak/creator-token-standards/src/access/OwnableBasic.sol";
    import "@limitbreak/creator-token-standards/src/erc721c/ERC721C.sol";
    import "@limitbreak/creator-token-standards/src/programmable-royalties/BasicRoyalties.sol";
    contract Blueprints is OwnableBasic, ERC721C, BasicRoyalties, Signature, Recoverable {
    string public baseURI;
    bool public isMintEnabled = false;
    error MintNotEnabled();
    error NonceAlreadyUsed();
    error InvalidSignature();
    error InvalidRecipient();
    error InvalidCaller();
    error RequestExpired();
    struct MintRequest {
    address to;
    address from;
    uint256[] tokenIds;
    uint128 validityStartTimestamp;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 35 : OwnableBasic.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "./OwnablePermissions.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    abstract contract OwnableBasic is OwnablePermissions, Ownable {
    function _requireCallerIsContractOwner() internal view virtual override {
    _checkOwner();
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 35 : OwnablePermissions.sol
    1
    2
    3
    4
    5
    6
    7
    8
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "@openzeppelin/contracts/utils/Context.sol";
    abstract contract OwnablePermissions is Context {
    function _requireCallerIsContractOwner() internal view virtual;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 35 : ERC721C.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "../utils/AutomaticValidatorTransferApproval.sol";
    import "../utils/CreatorTokenBase.sol";
    import "../token/erc721/ERC721OpenZeppelin.sol";
    import "../interfaces/ITransferValidatorSetTokenType.sol";
    import {TOKEN_TYPE_ERC721} from "@limitbreak/permit-c/src/Constants.sol";
    /**
    * @title ERC721C
    * @author Limit Break, Inc.
    * @notice Extends OpenZeppelin's ERC721 implementation with Creator Token functionality, which
    * allows the contract owner to update the transfer validation logic by managing a security policy in
    * an external transfer validation security policy registry. See {CreatorTokenTransferValidator}.
    */
    abstract contract ERC721C is ERC721OpenZeppelin, CreatorTokenBase, AutomaticValidatorTransferApproval {
    /**
    * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved
    * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers.
    */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) {
    isApproved = super.isApprovedForAll(owner, operator);
    if (!isApproved) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 35 : ICreatorToken.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    interface ICreatorToken {
    event TransferValidatorUpdated(address oldValidator, address newValidator);
    function getTransferValidator() external view returns (address validator);
    function setTransferValidator(address validator) external;
    function getTransferValidationFunction() external view returns (bytes4 functionSignature, bool isViewFunction);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 35 : ICreatorTokenLegacy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    interface ICreatorTokenLegacy {
    event TransferValidatorUpdated(address oldValidator, address newValidator);
    function getTransferValidator() external view returns (address validator);
    function setTransferValidator(address validator) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 35 : ITransferValidator.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    interface ITransferValidator {
    function applyCollectionTransferPolicy(address caller, address from, address to) external view;
    function validateTransfer(address caller, address from, address to) external view;
    function validateTransfer(address caller, address from, address to, uint256 tokenId) external view;
    function validateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount) external;
    function beforeAuthorizedTransfer(address operator, address token, uint256 tokenId) external;
    function afterAuthorizedTransfer(address token, uint256 tokenId) external;
    function beforeAuthorizedTransfer(address operator, address token) external;
    function afterAuthorizedTransfer(address token) external;
    function beforeAuthorizedTransfer(address token, uint256 tokenId) external;
    function beforeAuthorizedTransferWithAmount(address token, uint256 tokenId, uint256 amount) external;
    function afterAuthorizedTransferWithAmount(address token, uint256 tokenId) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 35 : ITransferValidatorSetTokenType.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    interface ITransferValidatorSetTokenType {
    function setTokenTypeOfCollection(address collection, uint16 tokenType) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 35 : BasicRoyalties.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "@openzeppelin/contracts/token/common/ERC2981.sol";
    /**
    * @title BasicRoyaltiesBase
    * @author Limit Break, Inc.
    * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties.
    */
    abstract contract BasicRoyaltiesBase is ERC2981 {
    event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator);
    event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator);
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override {
    super._setDefaultRoyalty(receiver, feeNumerator);
    emit DefaultRoyaltySet(receiver, feeNumerator);
    }
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override {
    super._setTokenRoyalty(tokenId, receiver, feeNumerator);
    emit TokenRoyaltySet(tokenId, receiver, feeNumerator);
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 35 : ERC721OpenZeppelin.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "../../access/OwnablePermissions.sol";
    import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
    abstract contract ERC721OpenZeppelinBase is ERC721 {
    // Token name
    string internal _contractName;
    // Token symbol
    string internal _contractSymbol;
    function name() public view virtual override returns (string memory) {
    return _contractName;
    }
    function symbol() public view virtual override returns (string memory) {
    return _contractSymbol;
    }
    function _setNameAndSymbol(string memory name_, string memory symbol_) internal {
    _contractName = name_;
    _contractSymbol = symbol_;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 35 : AutomaticValidatorTransferApproval.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "../access/OwnablePermissions.sol";
    /**
    * @title AutomaticValidatorTransferApproval
    * @author Limit Break, Inc.
    * @notice Base contract mix-in that provides boilerplate code giving the contract owner the
    * option to automatically approve a 721-C transfer validator implementation for transfers.
    */
    abstract contract AutomaticValidatorTransferApproval is OwnablePermissions {
    /// @dev Emitted when the automatic approval flag is modified by the creator.
    event AutomaticApprovalOfTransferValidatorSet(bool autoApproved);
    /// @dev If true, the collection's transfer validator is automatically approved to transfer holder's tokens.
    bool public autoApproveTransfersFromValidator;
    /**
    * @notice Sets if the transfer validator is automatically approved as an operator for all token owners.
    *
    * @dev Throws when the caller is not the contract owner.
    *
    * @param autoApprove If true, the collection's transfer validator will be automatically approved to
    * transfer holder's tokens.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 35 : CreatorTokenBase.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "../access/OwnablePermissions.sol";
    import "../interfaces/ICreatorToken.sol";
    import "../interfaces/ICreatorTokenLegacy.sol";
    import "../interfaces/ITransferValidator.sol";
    import "./TransferValidation.sol";
    import "../interfaces/ITransferValidatorSetTokenType.sol";
    /**
    * @title CreatorTokenBase
    * @author Limit Break, Inc.
    * @notice CreatorTokenBaseV3 is an abstract contract that provides basic functionality for managing token
    * transfer policies through an implementation of ICreatorTokenTransferValidator/ICreatorTokenTransferValidatorV2/ICreatorTokenTransferValidatorV3.
    * This contract is intended to be used as a base for creator-specific token contracts, enabling customizable transfer
    * restrictions and security policies.
    *
    * <h4>Features:</h4>
    * <ul>Ownable: This contract can have an owner who can set and update the transfer validator.</ul>
    * <ul>TransferValidation: Implements the basic token transfer validation interface.</ul>
    *
    * <h4>Benefits:</h4>
    * <ul>Provides a flexible and modular way to implement custom token transfer restrictions and security policies.</ul>
    * <ul>Allows creators to enforce policies such as account and codehash blacklists, whitelists, and graylists.</ul>
    * <ul>Can be easily integrated into other token contracts as a base contract.</ul>
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 35 : TransferValidation.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    import "@openzeppelin/contracts/utils/Context.sol";
    /**
    * @title TransferValidation
    * @author Limit Break, Inc.
    * @notice A mix-in that can be combined with ERC-721 contracts to provide more granular hooks.
    * Openzeppelin's ERC721 contract only provides hooks for before and after transfer. This allows
    * developers to validate or customize transfers within the context of a mint, a burn, or a transfer.
    */
    abstract contract TransferValidation is Context {
    /// @dev Thrown when the from and to address are both the zero address.
    error ShouldNotMintToBurnAddress();
    /*************************************************************************/
    /* Transfers Without Amounts */
    /*************************************************************************/
    /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks.
    function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual {
    bool fromZeroAddress = from == address(0);
    bool toZeroAddress = to == address(0);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 14 of 35 : Constants.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.4;
    /// @dev Constant bytes32 value of 0x000...000
    bytes32 constant ZERO_BYTES32 = bytes32(0);
    /// @dev Constant value of 0
    uint256 constant ZERO = 0;
    /// @dev Constant value of 1
    uint256 constant ONE = 1;
    /// @dev Constant value representing an open order in storage
    uint8 constant ORDER_STATE_OPEN = 0;
    /// @dev Constant value representing a filled order in storage
    uint8 constant ORDER_STATE_FILLED = 1;
    /// @dev Constant value representing a cancelled order in storage
    uint8 constant ORDER_STATE_CANCELLED = 2;
    /// @dev Constant value representing the ERC721 token type for signatures and transfer hooks
    uint256 constant TOKEN_TYPE_ERC721 = 721;
    /// @dev Constant value representing the ERC1155 token type for signatures and transfer hooks
    uint256 constant TOKEN_TYPE_ERC1155 = 1155;
    /// @dev Constant value representing the ERC20 token type for signatures and transfer hooks
    uint256 constant TOKEN_TYPE_ERC20 = 20;
    /// @dev Constant value to mask the upper bits of a signature that uses a packed `vs` value to extract `s`
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 15 of 35 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
    pragma solidity ^0.8.0;
    import "../utils/Context.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * By default, the owner account will be the one that deploys the contract. This
    * can later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 16 of 35 : IERC1155.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1155.sol)
    pragma solidity ^0.8.0;
    import "../token/ERC1155/IERC1155.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 17 of 35 : IERC20.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)
    pragma solidity ^0.8.0;
    import "../token/ERC20/IERC20.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 18 of 35 : IERC2981.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
    pragma solidity ^0.8.0;
    import "../utils/introspection/IERC165.sol";
    /**
    * @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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 19 of 35 : IERC721.sol
    1
    2
    3
    4
    5
    6
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)
    pragma solidity ^0.8.0;
    import "../token/ERC721/IERC721.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 20 of 35 : ERC2981.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)
    pragma solidity ^0.8.0;
    import "../../interfaces/IERC2981.sol";
    import "../../utils/introspection/ERC165.sol";
    /**
    * @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;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 21 of 35 : IERC1155.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)
    pragma solidity ^0.8.0;
    import "../../utils/introspection/IERC165.sol";
    /**
    * @dev Required interface of an ERC1155 compliant contract, as defined in the
    * https://eips.ethereum.org/EIPS/eip-1155[EIP].
    *
    * _Available since v3.1._
    */
    interface IERC1155 is IERC165 {
    /**
    * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
    */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
    /**
    * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
    * transfers.
    */
    event TransferBatch(
    address indexed operator,
    address indexed from,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 22 of 35 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Interface of the ERC20 standard as defined in the EIP.
    */
    interface IERC20 {
    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
    * @dev Returns the amount of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 23 of 35 : ERC721.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)
    pragma solidity ^0.8.0;
    import "./IERC721.sol";
    import "./IERC721Receiver.sol";
    import "./extensions/IERC721Metadata.sol";
    import "../../utils/Address.sol";
    import "../../utils/Context.sol";
    import "../../utils/Strings.sol";
    import "../../utils/introspection/ERC165.sol";
    /**
    * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
    * the Metadata extension, but not including the Enumerable extension, which is available separately as
    * {ERC721Enumerable}.
    */
    contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    // Token name
    string private _name;
    // Token symbol
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 24 of 35 : IERC721Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
    pragma solidity ^0.8.0;
    import "../IERC721.sol";
    /**
    * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
    * @dev See https://eips.ethereum.org/EIPS/eip-721
    */
    interface IERC721Metadata is IERC721 {
    /**
    * @dev Returns the token collection name.
    */
    function name() external view returns (string memory);
    /**
    * @dev Returns the token collection symbol.
    */
    function symbol() external view returns (string memory);
    /**
    * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
    */
    function tokenURI(uint256 tokenId) external view returns (string memory);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 25 of 35 : IERC721.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
    pragma solidity ^0.8.0;
    import "../../utils/introspection/IERC165.sol";
    /**
    * @dev Required interface of an ERC721 compliant contract.
    */
    interface IERC721 is IERC165 {
    /**
    * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
    */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    /**
    * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
    */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    /**
    * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
    */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 26 of 35 : IERC721Receiver.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
    pragma solidity ^0.8.0;
    /**
    * @title ERC721 token receiver interface
    * @dev Interface for any contract that wants to support safeTransfers
    * from ERC721 asset contracts.
    */
    interface IERC721Receiver {
    /**
    * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
    * by `operator` from `from`, this function is called.
    *
    * It must return its Solidity selector to confirm the token transfer.
    * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
    *
    * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
    */
    function onERC721Received(
    address operator,
    address from,
    uint256 tokenId,
    bytes calldata data
    ) external returns (bytes4);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 27 of 35 : Address.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
    pragma solidity ^0.8.1;
    /**
    * @dev Collection of functions related to the address type
    */
    library Address {
    /**
    * @dev Returns true if `account` is a contract.
    *
    * [IMPORTANT]
    * ====
    * It is unsafe to assume that an address for which this function returns
    * false is an externally-owned account (EOA) and not a contract.
    *
    * Among others, `isContract` will return false for the following
    * types of addresses:
    *
    * - an externally-owned account
    * - a contract in construction
    * - an address where a contract will be created
    * - an address where a contract lived, but was destroyed
    * ====
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 28 of 35 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 29 of 35 : ECDSA.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)
    pragma solidity ^0.8.0;
    import "../Strings.sol";
    /**
    * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
    *
    * These functions can be used to verify that a message was signed by the holder
    * of the private keys of a given address.
    */
    library ECDSA {
    enum RecoverError {
    NoError,
    InvalidSignature,
    InvalidSignatureLength,
    InvalidSignatureS,
    InvalidSignatureV // Deprecated in v4.8
    }
    function _throwError(RecoverError error) private pure {
    if (error == RecoverError.NoError) {
    return; // no error: do nothing
    } else if (error == RecoverError.InvalidSignature) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 30 of 35 : ERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
    pragma solidity ^0.8.0;
    import "./IERC165.sol";
    /**
    * @dev Implementation of the {IERC165} interface.
    *
    * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
    * for the additional interface id that will be supported. For example:
    *
    * ```solidity
    * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
    * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
    * }
    * ```
    *
    * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
    */
    abstract contract ERC165 is IERC165 {
    /**
    * @dev See {IERC165-supportsInterface}.
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 31 of 35 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Interface of the ERC165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[EIP].
    *
    * Implementers can declare support of contract interfaces, which can then be
    * queried by others ({ERC165Checker}).
    *
    * For an implementation, see {ERC165}.
    */
    interface IERC165 {
    /**
    * @dev Returns true if this contract implements the interface defined by
    * `interfaceId`. See the corresponding
    * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
    * to learn more about how these ids are created.
    *
    * This function call must use less than 30 000 gas.
    */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 32 of 35 : Math.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Standard math utilities missing in the Solidity language.
    */
    library Math {
    enum Rounding {
    Down, // Toward negative infinity
    Up, // Toward infinity
    Zero // Toward zero
    }
    /**
    * @dev Returns the largest of two numbers.
    */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
    return a > b ? a : b;
    }
    /**
    * @dev Returns the smallest of two numbers.
    */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 33 of 35 : Strings.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
    pragma solidity ^0.8.0;
    import "./math/Math.sol";
    /**
    * @dev String operations.
    */
    library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;
    /**
    * @dev Converts a `uint256` to its ASCII `string` decimal representation.
    */
    function toString(uint256 value) internal pure returns (string memory) {
    unchecked {
    uint256 length = Math.log10(value) + 1;
    string memory buffer = new string(length);
    uint256 ptr;
    /// @solidity memory-safe-assembly
    assembly {
    ptr := add(buffer, add(32, length))
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 34 of 35 : Recoverable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.21;
    import "@openzeppelin/contracts/interfaces/IERC20.sol";
    import "@openzeppelin/contracts/interfaces/IERC721.sol";
    import "@openzeppelin/contracts/interfaces/IERC1155.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    abstract contract Recoverable is Ownable {
    event RecoveredERC20(address indexed token, uint256 amount);
    event RecoveredERC721(address indexed token, uint256 indexed tokenId);
    event RecoveredERC1155(address indexed token, uint256 indexed tokenId, uint256 amount);
    error InvalidTokenAddress();
    error NothingToRecover();
    function recoverERC1155(address tokenAddress, uint256 tokenId) external onlyOwner {
    if (tokenAddress == address(0)) revert InvalidTokenAddress();
    IERC1155 token = IERC1155(tokenAddress);
    uint256 balance = token.balanceOf(address(this), tokenId);
    if (balance == 0) revert NothingToRecover();
    token.safeTransferFrom(address(this), owner(), tokenId, balance, "");
    emit RecoveredERC1155(tokenAddress, tokenId, balance);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 35 of 35 : Signature.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.21;
    import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
    abstract contract Signature {
    using ECDSA for bytes32;
    address private signer;
    mapping(bytes32 => bool) public nonces;
    function _setSigner(address signer_) internal {
    require(signer_ != address(0), "Invalid signer address");
    signer = signer_;
    }
    function _isValidSignature(
    bytes32 data,
    bytes memory signature
    ) public view returns (bool) {
    return data.toEthSignedMessageHash().recover(signature) == signer;
    }
    function isValidNonce(bytes32 _nonce) public view returns (bool) {
    return !nonces[_nonce];
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    {
    "optimizer": {
    "enabled": true,
    "runs": 200
    },
    "evmVersion": "paris",
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    "abi"
    ]
    }
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint96","name":"royaltyFeeNumerator_","type":"uint96"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CreatorTokenBase__InvalidTransferValidatorContract","type":"error"},{"inputs":[],"name":"InvalidCaller","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidTokenAddress","type":"error"},{"inputs":[],"name":"MintNotEnabled","type":"error"},{"inputs":[],"name":"NonceAlreadyUsed","type":"error"},{"inputs":[],"name":"NothingToRecover","type":"error"},{"inputs":[],"name":"RequestExpired","type":"error"},{"inputs":[],"name":"ShouldNotMintToBurnAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"autoApproved","type":"bool"}],"name":"AutomaticApprovalOfTransferValidatorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","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":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RecoveredERC1155","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RecoveredERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"RecoveredERC721","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldValidator","type":"address"},{"indexed":false,"internalType":"address","name":"newValidator","type":"address"}],"name":"TransferValidatorUpdated","type":"event"},{"inputs":[],"name":"DEFAULT_TRANSFER_VALIDATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"data","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"_isValidSignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"autoApproveTransfersFromValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"to_","type":"address"},{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"},{"internalType":"uint128","name":"validityStartTimestamp_","type":"uint128"},{"internalType":"uint128","name":"validityEndTimestamp_","type":"uint128"},{"internalType":"bytes32","name":"nonce_","type":"bytes32"}],"name":"getMintMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTransferValidationFunction","outputs":[{"internalType":"bytes4","name":"functionSignature","type":"bytes4"},{"internalType":"bool","name":"isViewFunction","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTransferValidator","outputs":[{"internalType":"address","name":"validator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isApproved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_nonce","type":"bytes32"}],"name":"isValidNonce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"_start","type":"uint128"},{"internalType":"uint128","name":"_end","type":"uint128"}],"name":"isValidTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint128","name":"validityStartTimestamp","type":"uint128"},{"internalType":"uint128","name":"validityEndTimestamp","type":"uint128"},{"internalType":"bytes32","name":"nonce","type":"bytes32"}],"internalType":"struct Blueprints.MintRequest","name":"req_","type":"tuple"},{"internalType":"bytes","name":"signature_","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"autoApprove","type":"bool"}],"name":"setAutomaticApprovalOfTransfersFromValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintEnabled_","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId_","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

    6080604052600f805460ff191690553480156200001b57600080fd5b5060405162003415380380620034158339810160408190526200003e9162000454565b83838383604051806020016040528060008152506040518060200160405280600081525081600090816200007391906200058d565b5060016200008282826200058d565b505050620000978282620000f260201b60201c565b50620000a590503362000114565b620000af62000166565b620000ce73721c002b0059009a671d00ad1700c9748146cd1b620001b5565b620000da828262000233565b50620000e890508462000114565b5050505062000659565b60066200010083826200058d565b5060076200010f82826200058d565b505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516000815273721c002b0059009a671d00ad1700c9748146cd1b60208201527fcc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac910160405180910390a1565b6001600160a01b038116156200023057803b80156200022e576040805163fb2de5d760e01b81523060048201526102d1602482015290516001600160a01b0384169163fb2de5d791604480830192600092919082900301818387803b1580156200021e57600080fd5b505af19250505080156200010f57505b505b50565b6200023f82826200028a565b6040516001600160601b03821681526001600160a01b038316907f8a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76ef9060200160405180910390a25050565b6127106001600160601b0382161115620002fe5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003565760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620002f5565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003b757600080fd5b81516001600160401b0380821115620003d457620003d46200038f565b604051601f8301601f19908116603f01168101908282118183101715620003ff57620003ff6200038f565b816040528381526020925086838588010111156200041c57600080fd5b600091505b8382101562000440578582018301518183018401529082019062000421565b600093810190920192909252949350505050565b600080600080608085870312156200046b57600080fd5b84516001600160a01b03811681146200048357600080fd5b60208601519094506001600160601b0381168114620004a157600080fd5b60408601519093506001600160401b0380821115620004bf57600080fd5b620004cd88838901620003a5565b93506060870151915080821115620004e457600080fd5b50620004f387828801620003a5565b91505092959194509250565b600181811c908216806200051457607f821691505b6020821081036200053557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200010f57600081815260208120601f850160051c81016020861015620005645750805b601f850160051c820191505b81811015620005855782815560010162000570565b505050505050565b81516001600160401b03811115620005a957620005a96200038f565b620005c181620005ba8454620004ff565b846200053b565b602080601f831160018114620005f95760008415620005e05750858301515b600019600386901b1c1916600185901b17855562000585565b600085815260208120601f198616915b828110156200062a5788860151825594840194600190910190840162000609565b5085821015620006495787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612dac80620006696000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a08231116101305780639f665bdf116100b8578063c87b56dd1161007c578063c87b56dd146104e8578063e985e9c5146104fb578063f2fde38b1461050e578063f46a04eb14610521578063fc23eab71461053457600080fd5b80639f665bdf14610478578063a22cb4651461048b578063a9fc664e1461049e578063b88d4fde146104b1578063ba0f2637146104c457600080fd5b80638da5cb5b116100ff5780638da5cb5b1461041657806395d89b41146104275780639e05d2401461042f5780639e317f12146104425780639e8c708e1461046557600080fd5b806370a08231146103c7578063715018a6146103e8578063819d4cc6146103f0578063825349d41461040357600080fd5b8063346de50a116101b35780635c654ad9116101825780635c654ad9146103725780636221d13c146103855780636352211e146103995780636c0360eb146103ac5780636c19e783146103b457600080fd5b8063346de50a1461032c57806342842e0e14610339578063429c97581461034c57806355f804b31461035f57600080fd5b8063095ea7b3116101fa578063095ea7b3146102af578063098144d4146102c45780630d705df6146102cc57806323b872dd146102e75780632a55205a146102fa57600080fd5b8063014635461461022c57806301ffc9a71461026457806306fdde0314610287578063081812fc1461029c575b600080fd5b61024773721c002b0059009a671d00ad1700c9748146cd1b81565b6040516001600160a01b0390911681526020015b60405180910390f35b6102776102723660046123a1565b610547565b604051901515815260200161025b565b61028f610558565b60405161025b919061240e565b6102476102aa366004612421565b6105ea565b6102c26102bd36600461244f565b610611565b005b61024761072b565b6040805163657711f560e11b8152600160208201520161025b565b6102c26102f536600461247b565b610767565b61030d6103083660046124bc565b610798565b604080516001600160a01b03909316835260208301919091520161025b565b600f546102779060ff1681565b6102c261034736600461247b565b610846565b61027761035a36600461258a565b610861565b6102c261036d3660046125d1565b6108e2565b6102c261038036600461244f565b6108fa565b60095461027790600160a01b900460ff1681565b6102476103a7366004612421565b610aa5565b61028f610b05565b6102c26103c236600461261a565b610b93565b6103da6103d536600461261a565b610ba7565b60405190815260200161025b565b6102c2610c2d565b6102c26103fe36600461244f565b610c41565b6102c2610411366004612637565b610dce565b6008546001600160a01b0316610247565b61028f61103e565b6102c261043d3660046126e4565b61104d565b610277610450366004612421565b600d6020526000908152604090205460ff1681565b6102c261047336600461261a565b6110ad565b61027761048636600461271d565b611247565b6102c2610499366004612750565b611272565b6102c26104ac36600461261a565b61127d565b6102c26104bf366004612789565b611342565b6102776104d2366004612421565b6000908152600d602052604090205460ff161590565b61028f6104f6366004612421565b61137a565b6102776105093660046127f5565b6113e0565b6102c261051c36600461261a565b611444565b6102c261052f3660046126e4565b6114ba565b6103da610542366004612823565b6114d5565b600061055282611517565b92915050565b606060068054610567906128e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610593906128e9565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b60006105f58261153c565b506000908152600460205260409020546001600160a01b031690565b600061061c82610aa5565b9050806001600160a01b0316836001600160a01b03160361068e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106aa57506106aa81336113e0565b61071c5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610685565b610726838361159b565b505050565b6009546001600160a01b03168061076457600854600160a01b900460ff16610764575073721c002b0059009a671d00ad1700c9748146cd1b5b90565b6107713382611609565b61078d5760405162461bcd60e51b815260040161068590612923565b610726838383611668565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161080d575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061082c906001600160601b031687612986565b610836919061299d565b91519350909150505b9250929050565b61072683838360405180602001604052806000815250611342565b600c546000906001600160a01b03166108d1836108cb866040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b906117e1565b6001600160a01b0316149392505050565b6108ea611805565b600e6108f68282612a05565b5050565b610902611805565b6001600160a01b03821661092957604051630f58058360e11b815260040160405180910390fd5b604051627eeac760e11b81523060048201526024810182905282906000906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099b9190612ac5565b9050806000036109be5760405163157474a960e31b815260040160405180910390fd5b816001600160a01b031663f242432a306109e06008546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064810184905260a06084820152600060a482015260c401600060405180830381600087803b158015610a4457600080fd5b505af1158015610a58573d6000803e3d6000fd5b5050505082846001600160a01b03167e04b148840595eb234e6148251c2c9c78d692171f32febbd992963e0c13855383604051610a9791815260200190565b60405180910390a350505050565b6000818152600260205260408120546001600160a01b0316806105525760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610685565b600e8054610b12906128e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e906128e9565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b505050505081565b610b9b611805565b610ba48161185f565b50565b60006001600160a01b038216610c115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610685565b506001600160a01b031660009081526003602052604090205490565b610c35611805565b610c3f60006118d0565b565b610c49611805565b6001600160a01b038216610c7057604051630f58058360e11b815260040160405180910390fd5b6040516331a9108f60e11b81526004810182905282906000906001600160a01b03831690636352211e90602401602060405180830381865afa158015610cba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cde9190612ade565b90506001600160a01b0381163014610d095760405163157474a960e31b815260040160405180910390fd5b816001600160a01b03166342842e0e30610d2b6008546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260448101869052606401600060405180830381600087803b158015610d7a57600080fd5b505af1158015610d8e573d6000803e3d6000fd5b50506040518592506001600160a01b03871691507f57519b6a0997d7d44511836bcee0a36871aa79d445816f6c464abb0cd9d3f3e890600090a350505050565b600f5460ff16610df15760405163447691f760e01b815260040160405180910390fd5b6000610e00602085018561261a565b6001600160a01b031603610e2757604051634e46966960e11b815260040160405180910390fd5b6000610e39604085016020860161261a565b6001600160a01b03161480610e66575033610e5a604085016020860161261a565b6001600160a01b031614155b15610e84576040516348f5c3ed60e01b815260040160405180910390fd5b60a08301356000908152600d602052604090205460ff1615610eb857604051623f613760e71b815260040160405180910390fd5b610edb610ecb6080850160608601612afb565b61048660a0860160808701612afb565b610ef857604051637f780e6960e11b815260040160405180910390fd5b610f1b8360a001356000908152600d60205260409020805460ff19166001179055565b6000610f74610f2d602086018661261a565b610f3d604087016020880161261a565b610f4a6040880188612b16565b610f5a60808a0160608b01612afb565b610f6a60a08b0160808c01612afb565b8a60a001356114d5565b9050610fb68184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061086192505050565b610fd357604051638baa579f60e01b815260040160405180910390fd5b60005b610fe36040860186612b16565b905081101561103757611025610ffc602087018761261a565b6110096040880188612b16565b8481811061101957611019612b60565b90506020020135611922565b8061102f81612b76565b915050610fd6565b5050505050565b606060078054610567906128e9565b61105561193c565b60098054821515600160a01b0260ff60a01b199091161790556040517f6787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc906110a290831515815260200190565b60405180910390a150565b6110b5611805565b6001600160a01b0381166110dc57604051630f58058360e11b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611125573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111499190612ac5565b90508060000361116c5760405163157474a960e31b815260040160405180910390fd5b816001600160a01b031663a9059cbb61118d6008546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe9190612b8f565b50826001600160a01b03167f55350610fe57096d8c0ffa30beede987326bccfcb0b4415804164d0dd50ce8b18260405161123a91815260200190565b60405180910390a2505050565b600042836001600160801b03161115801561126b575042826001600160801b031610155b9392505050565b6108f6338383611944565b61128561193c565b6001600160a01b038116803b151590158015906112a0575080155b156112be576040516332483afb60e01b815260040160405180910390fd5b7fcc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac6112e761072b565b604080516001600160a01b03928316815291851660208301520160405180910390a16008805460ff60a01b1916600160a01b179055600980546001600160a01b0384166001600160a01b03199091161790556108f682611a12565b61134c3383611609565b6113685760405162461bcd60e51b815260040161068590612923565b61137484848484611a92565b50505050565b60606113858261153c565b600061138f611ac5565b905060008151116113af576040518060200160405280600081525061126b565b806113b984611ad4565b6040516020016113ca929190612bac565b6040516020818303038152906040529392505050565b6001600160a01b0382811660009081526005602090815260408083209385168352929052205460ff168061055257600954600160a01b900460ff16156105525761142861072b565b6001600160a01b0316826001600160a01b031614905092915050565b61144c611805565b6001600160a01b0381166114b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610685565b610ba4816118d0565b6114c2611805565b600f805460ff1916911515919091179055565b6000878787878787876040516020016114f49796959493929190612bdb565b604051602081830303815290604052805190602001209050979650505050505050565b60006001600160e01b0319821663152a902d60e11b1480610552575061055282611b67565b6000818152600260205260409020546001600160a01b0316610ba45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610685565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d082610aa5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061161583610aa5565b9050806001600160a01b0316846001600160a01b0316148061163c575061163c81856113e0565b806116605750836001600160a01b0316611655846105ea565b6001600160a01b0316145b949350505050565b826001600160a01b031661167b82610aa5565b6001600160a01b0316146116a15760405162461bcd60e51b815260040161068590612c5c565b6001600160a01b0382166117035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610685565b6117108383836001611ba7565b826001600160a01b031661172382610aa5565b6001600160a01b0316146117495760405162461bcd60e51b815260040161068590612c5c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107268383836001611bce565b60008060006117f08585611bf5565b915091506117fd81611c37565b509392505050565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610685565b6001600160a01b0381166118ae5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964207369676e6572206164647265737360501b6044820152606401610685565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108f6828260405180602001604052806000815250611d81565b610c3f611805565b816001600160a01b0316836001600160a01b0316036119a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610685565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03811615610ba457803b80156108f6576040805163fb2de5d760e01b81523060048201526102d1602482015290516001600160a01b0384169163fb2de5d791604480830192600092919082900301818387803b158015611a7857600080fd5b505af1925050508015611a89575060015b156108f6575050565b611a9d848484611668565b611aa984848484611db4565b6113745760405162461bcd60e51b815260040161068590612ca1565b6060600e8054610567906128e9565b60606000611ae183611eb5565b600101905060008167ffffffffffffffff811115611b0157611b016124de565b6040519080825280601f01601f191660200182016040528015611b2b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b3557509392505050565b60006001600160e01b03198216632b435fdb60e21b1480611b9857506001600160e01b0319821663503e914d60e11b145b80610552575061055282611f8d565b60005b8181101561103757611bc68585611bc18487612cf3565b611fdd565b600101611baa565b60005b8181101561103757611bed8585611be88487612cf3565b612033565b600101611bd1565b6000808251604103611c2b5760208301516040840151606085015160001a611c1f8782858561207a565b9450945050505061083f565b5060009050600261083f565b6000816004811115611c4b57611c4b612d06565b03611c535750565b6001816004811115611c6757611c67612d06565b03611cb45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610685565b6002816004811115611cc857611cc8612d06565b03611d155760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610685565b6003816004811115611d2957611d29612d06565b03610ba45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610685565b611d8b838361213e565b611d986000848484611db4565b6107265760405162461bcd60e51b815260040161068590612ca1565b60006001600160a01b0384163b15611eaa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611df8903390899088908890600401612d1c565b6020604051808303816000875af1925050508015611e33575060408051601f3d908101601f19168201909252611e3091810190612d59565b60015b611e90573d808015611e61576040519150601f19603f3d011682016040523d82523d6000602084013e611e66565b606091505b508051600003611e885760405162461bcd60e51b815260040161068590612ca1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611660565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611ef45772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611f20576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611f3e57662386f26fc10000830492506010015b6305f5e1008310611f56576305f5e100830492506008015b6127108310611f6a57612710830492506004015b60648310611f7c576064830492506002015b600a83106105525760010192915050565b60006001600160e01b031982166380ac58cd60e01b1480611fbe57506001600160e01b03198216635b5e139f60e01b145b8061055257506301ffc9a760e01b6001600160e01b0319831614610552565b6001600160a01b038381161590831615818015611ff75750805b1561201557604051635cbd944160e01b815260040160405180910390fd5b8115612021575b611037565b8061201c5761103733868686346122e1565b6001600160a01b03838116159083161581801561204d5750805b1561206b57604051635cbd944160e01b815260040160405180910390fd5b8161201c578061201c57611037565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120b15750600090506003612135565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612105573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661212e57600060019250925050612135565b9150600090505b94509492505050565b6001600160a01b0382166121945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610685565b6000818152600260205260409020546001600160a01b0316156121f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610685565b612207600083836001611ba7565b6000818152600260205260409020546001600160a01b03161561226c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610685565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46108f6600083836001611bce565b60006122eb61072b565b90506001600160a01b03811615612383576001600160a01b03811633036123125750611037565b60405163657711f560e11b81526001600160a01b038781166004830152868116602483015285811660448301526064820185905282169063caee23ea9060840160006040518083038186803b15801561236a57600080fd5b505afa15801561237e573d6000803e3d6000fd5b505050505b505050505050565b6001600160e01b031981168114610ba457600080fd5b6000602082840312156123b357600080fd5b813561126b8161238b565b60005b838110156123d95781810151838201526020016123c1565b50506000910152565b600081518084526123fa8160208601602086016123be565b601f01601f19169290920160200192915050565b60208152600061126b60208301846123e2565b60006020828403121561243357600080fd5b5035919050565b6001600160a01b0381168114610ba457600080fd5b6000806040838503121561246257600080fd5b823561246d8161243a565b946020939093013593505050565b60008060006060848603121561249057600080fd5b833561249b8161243a565b925060208401356124ab8161243a565b929592945050506040919091013590565b600080604083850312156124cf57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561250f5761250f6124de565b604051601f8501601f19908116603f01168101908282118183101715612537576125376124de565b8160405280935085815286868601111561255057600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261257b57600080fd5b61126b838335602085016124f4565b6000806040838503121561259d57600080fd5b82359150602083013567ffffffffffffffff8111156125bb57600080fd5b6125c78582860161256a565b9150509250929050565b6000602082840312156125e357600080fd5b813567ffffffffffffffff8111156125fa57600080fd5b8201601f8101841361260b57600080fd5b611660848235602084016124f4565b60006020828403121561262c57600080fd5b813561126b8161243a565b60008060006040848603121561264c57600080fd5b833567ffffffffffffffff8082111561266457600080fd5b9085019060c0828803121561267857600080fd5b9093506020850135908082111561268e57600080fd5b818601915086601f8301126126a257600080fd5b8135818111156126b157600080fd5b8760208285010111156126c357600080fd5b6020830194508093505050509250925092565b8015158114610ba457600080fd5b6000602082840312156126f657600080fd5b813561126b816126d6565b80356001600160801b038116811461271857600080fd5b919050565b6000806040838503121561273057600080fd5b61273983612701565b915061274760208401612701565b90509250929050565b6000806040838503121561276357600080fd5b823561276e8161243a565b9150602083013561277e816126d6565b809150509250929050565b6000806000806080858703121561279f57600080fd5b84356127aa8161243a565b935060208501356127ba8161243a565b925060408501359150606085013567ffffffffffffffff8111156127dd57600080fd5b6127e98782880161256a565b91505092959194509250565b6000806040838503121561280857600080fd5b82356128138161243a565b9150602083013561277e8161243a565b600080600080600080600060c0888a03121561283e57600080fd5b87356128498161243a565b965060208801356128598161243a565b9550604088013567ffffffffffffffff8082111561287657600080fd5b818a0191508a601f83011261288a57600080fd5b81358181111561289957600080fd5b8b60208260051b85010111156128ae57600080fd5b6020830197508096505050506128c660608901612701565b92506128d460808901612701565b915060a0880135905092959891949750929550565b600181811c908216806128fd57607f821691505b60208210810361291d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761055257610552612970565b6000826129ba57634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561072657600081815260208120601f850160051c810160208610156129e65750805b601f850160051c820191505b81811015612383578281556001016129f2565b815167ffffffffffffffff811115612a1f57612a1f6124de565b612a3381612a2d84546128e9565b846129bf565b602080601f831160018114612a685760008415612a505750858301515b600019600386901b1c1916600185901b178555612383565b600085815260208120601f198616915b82811015612a9757888601518255948401946001909101908401612a78565b5085821015612ab55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612ad757600080fd5b5051919050565b600060208284031215612af057600080fd5b815161126b8161243a565b600060208284031215612b0d57600080fd5b61126b82612701565b6000808335601e19843603018112612b2d57600080fd5b83018035915067ffffffffffffffff821115612b4857600080fd5b6020019150600581901b360382131561083f57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060018201612b8857612b88612970565b5060010190565b600060208284031215612ba157600080fd5b815161126b816126d6565b60008351612bbe8184602088016123be565b835190830190612bd28183602088016123be565b01949350505050565b6bffffffffffffffffffffffff19606089811b8216835288901b16601482015260006001600160fb1b03861115612c1157600080fd5b8560051b808860288501376fffffffffffffffffffffffffffffffff19608096871b81169190930160288101919091529390941b166038830152604882015260680195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b8082018082111561055257610552612970565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d4f908301846123e2565b9695505050505050565b600060208284031215612d6b57600080fd5b815161126b8161238b56fea26469706673582212206f995f37c386cb60a032c1d74536025c3623c2880613c1f25aaa851599fb813964736f6c634300081500330000000000000000000000006bee03a601874abfad5143a83a3199dba71fa29500000000000000000000000000000000000000000000000000000000000001a4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001454686520383130323a20426c75657072696e7473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a424c55455052494e545300000000000000000000000000000000000000000000

    Deployed Bytecode

    0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a08231116101305780639f665bdf116100b8578063c87b56dd1161007c578063c87b56dd146104e8578063e985e9c5146104fb578063f2fde38b1461050e578063f46a04eb14610521578063fc23eab71461053457600080fd5b80639f665bdf14610478578063a22cb4651461048b578063a9fc664e1461049e578063b88d4fde146104b1578063ba0f2637146104c457600080fd5b80638da5cb5b116100ff5780638da5cb5b1461041657806395d89b41146104275780639e05d2401461042f5780639e317f12146104425780639e8c708e1461046557600080fd5b806370a08231146103c7578063715018a6146103e8578063819d4cc6146103f0578063825349d41461040357600080fd5b8063346de50a116101b35780635c654ad9116101825780635c654ad9146103725780636221d13c146103855780636352211e146103995780636c0360eb146103ac5780636c19e783146103b457600080fd5b8063346de50a1461032c57806342842e0e14610339578063429c97581461034c57806355f804b31461035f57600080fd5b8063095ea7b3116101fa578063095ea7b3146102af578063098144d4146102c45780630d705df6146102cc57806323b872dd146102e75780632a55205a146102fa57600080fd5b8063014635461461022c57806301ffc9a71461026457806306fdde0314610287578063081812fc1461029c575b600080fd5b61024773721c002b0059009a671d00ad1700c9748146cd1b81565b6040516001600160a01b0390911681526020015b60405180910390f35b6102776102723660046123a1565b610547565b604051901515815260200161025b565b61028f610558565b60405161025b919061240e565b6102476102aa366004612421565b6105ea565b6102c26102bd36600461244f565b610611565b005b61024761072b565b6040805163657711f560e11b8152600160208201520161025b565b6102c26102f536600461247b565b610767565b61030d6103083660046124bc565b610798565b604080516001600160a01b03909316835260208301919091520161025b565b600f546102779060ff1681565b6102c261034736600461247b565b610846565b61027761035a36600461258a565b610861565b6102c261036d3660046125d1565b6108e2565b6102c261038036600461244f565b6108fa565b60095461027790600160a01b900460ff1681565b6102476103a7366004612421565b610aa5565b61028f610b05565b6102c26103c236600461261a565b610b93565b6103da6103d536600461261a565b610ba7565b60405190815260200161025b565b6102c2610c2d565b6102c26103fe36600461244f565b610c41565b6102c2610411366004612637565b610dce565b6008546001600160a01b0316610247565b61028f61103e565b6102c261043d3660046126e4565b61104d565b610277610450366004612421565b600d6020526000908152604090205460ff1681565b6102c261047336600461261a565b6110ad565b61027761048636600461271d565b611247565b6102c2610499366004612750565b611272565b6102c26104ac36600461261a565b61127d565b6102c26104bf366004612789565b611342565b6102776104d2366004612421565b6000908152600d602052604090205460ff161590565b61028f6104f6366004612421565b61137a565b6102776105093660046127f5565b6113e0565b6102c261051c36600461261a565b611444565b6102c261052f3660046126e4565b6114ba565b6103da610542366004612823565b6114d5565b600061055282611517565b92915050565b606060068054610567906128e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610593906128e9565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b60006105f58261153c565b506000908152600460205260409020546001600160a01b031690565b600061061c82610aa5565b9050806001600160a01b0316836001600160a01b03160361068e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106aa57506106aa81336113e0565b61071c5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610685565b610726838361159b565b505050565b6009546001600160a01b03168061076457600854600160a01b900460ff16610764575073721c002b0059009a671d00ad1700c9748146cd1b5b90565b6107713382611609565b61078d5760405162461bcd60e51b815260040161068590612923565b610726838383611668565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161080d575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061082c906001600160601b031687612986565b610836919061299d565b91519350909150505b9250929050565b61072683838360405180602001604052806000815250611342565b600c546000906001600160a01b03166108d1836108cb866040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b906117e1565b6001600160a01b0316149392505050565b6108ea611805565b600e6108f68282612a05565b5050565b610902611805565b6001600160a01b03821661092957604051630f58058360e11b815260040160405180910390fd5b604051627eeac760e11b81523060048201526024810182905282906000906001600160a01b0383169062fdd58e90604401602060405180830381865afa158015610977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099b9190612ac5565b9050806000036109be5760405163157474a960e31b815260040160405180910390fd5b816001600160a01b031663f242432a306109e06008546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064810184905260a06084820152600060a482015260c401600060405180830381600087803b158015610a4457600080fd5b505af1158015610a58573d6000803e3d6000fd5b5050505082846001600160a01b03167e04b148840595eb234e6148251c2c9c78d692171f32febbd992963e0c13855383604051610a9791815260200190565b60405180910390a350505050565b6000818152600260205260408120546001600160a01b0316806105525760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610685565b600e8054610b12906128e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e906128e9565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b505050505081565b610b9b611805565b610ba48161185f565b50565b60006001600160a01b038216610c115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610685565b506001600160a01b031660009081526003602052604090205490565b610c35611805565b610c3f60006118d0565b565b610c49611805565b6001600160a01b038216610c7057604051630f58058360e11b815260040160405180910390fd5b6040516331a9108f60e11b81526004810182905282906000906001600160a01b03831690636352211e90602401602060405180830381865afa158015610cba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cde9190612ade565b90506001600160a01b0381163014610d095760405163157474a960e31b815260040160405180910390fd5b816001600160a01b03166342842e0e30610d2b6008546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260448101869052606401600060405180830381600087803b158015610d7a57600080fd5b505af1158015610d8e573d6000803e3d6000fd5b50506040518592506001600160a01b03871691507f57519b6a0997d7d44511836bcee0a36871aa79d445816f6c464abb0cd9d3f3e890600090a350505050565b600f5460ff16610df15760405163447691f760e01b815260040160405180910390fd5b6000610e00602085018561261a565b6001600160a01b031603610e2757604051634e46966960e11b815260040160405180910390fd5b6000610e39604085016020860161261a565b6001600160a01b03161480610e66575033610e5a604085016020860161261a565b6001600160a01b031614155b15610e84576040516348f5c3ed60e01b815260040160405180910390fd5b60a08301356000908152600d602052604090205460ff1615610eb857604051623f613760e71b815260040160405180910390fd5b610edb610ecb6080850160608601612afb565b61048660a0860160808701612afb565b610ef857604051637f780e6960e11b815260040160405180910390fd5b610f1b8360a001356000908152600d60205260409020805460ff19166001179055565b6000610f74610f2d602086018661261a565b610f3d604087016020880161261a565b610f4a6040880188612b16565b610f5a60808a0160608b01612afb565b610f6a60a08b0160808c01612afb565b8a60a001356114d5565b9050610fb68184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061086192505050565b610fd357604051638baa579f60e01b815260040160405180910390fd5b60005b610fe36040860186612b16565b905081101561103757611025610ffc602087018761261a565b6110096040880188612b16565b8481811061101957611019612b60565b90506020020135611922565b8061102f81612b76565b915050610fd6565b5050505050565b606060078054610567906128e9565b61105561193c565b60098054821515600160a01b0260ff60a01b199091161790556040517f6787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc906110a290831515815260200190565b60405180910390a150565b6110b5611805565b6001600160a01b0381166110dc57604051630f58058360e11b815260040160405180910390fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611125573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111499190612ac5565b90508060000361116c5760405163157474a960e31b815260040160405180910390fd5b816001600160a01b031663a9059cbb61118d6008546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe9190612b8f565b50826001600160a01b03167f55350610fe57096d8c0ffa30beede987326bccfcb0b4415804164d0dd50ce8b18260405161123a91815260200190565b60405180910390a2505050565b600042836001600160801b03161115801561126b575042826001600160801b031610155b9392505050565b6108f6338383611944565b61128561193c565b6001600160a01b038116803b151590158015906112a0575080155b156112be576040516332483afb60e01b815260040160405180910390fd5b7fcc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac6112e761072b565b604080516001600160a01b03928316815291851660208301520160405180910390a16008805460ff60a01b1916600160a01b179055600980546001600160a01b0384166001600160a01b03199091161790556108f682611a12565b61134c3383611609565b6113685760405162461bcd60e51b815260040161068590612923565b61137484848484611a92565b50505050565b60606113858261153c565b600061138f611ac5565b905060008151116113af576040518060200160405280600081525061126b565b806113b984611ad4565b6040516020016113ca929190612bac565b6040516020818303038152906040529392505050565b6001600160a01b0382811660009081526005602090815260408083209385168352929052205460ff168061055257600954600160a01b900460ff16156105525761142861072b565b6001600160a01b0316826001600160a01b031614905092915050565b61144c611805565b6001600160a01b0381166114b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610685565b610ba4816118d0565b6114c2611805565b600f805460ff1916911515919091179055565b6000878787878787876040516020016114f49796959493929190612bdb565b604051602081830303815290604052805190602001209050979650505050505050565b60006001600160e01b0319821663152a902d60e11b1480610552575061055282611b67565b6000818152600260205260409020546001600160a01b0316610ba45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610685565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d082610aa5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061161583610aa5565b9050806001600160a01b0316846001600160a01b0316148061163c575061163c81856113e0565b806116605750836001600160a01b0316611655846105ea565b6001600160a01b0316145b949350505050565b826001600160a01b031661167b82610aa5565b6001600160a01b0316146116a15760405162461bcd60e51b815260040161068590612c5c565b6001600160a01b0382166117035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610685565b6117108383836001611ba7565b826001600160a01b031661172382610aa5565b6001600160a01b0316146117495760405162461bcd60e51b815260040161068590612c5c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107268383836001611bce565b60008060006117f08585611bf5565b915091506117fd81611c37565b509392505050565b6008546001600160a01b03163314610c3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610685565b6001600160a01b0381166118ae5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964207369676e6572206164647265737360501b6044820152606401610685565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108f6828260405180602001604052806000815250611d81565b610c3f611805565b816001600160a01b0316836001600160a01b0316036119a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610685565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03811615610ba457803b80156108f6576040805163fb2de5d760e01b81523060048201526102d1602482015290516001600160a01b0384169163fb2de5d791604480830192600092919082900301818387803b158015611a7857600080fd5b505af1925050508015611a89575060015b156108f6575050565b611a9d848484611668565b611aa984848484611db4565b6113745760405162461bcd60e51b815260040161068590612ca1565b6060600e8054610567906128e9565b60606000611ae183611eb5565b600101905060008167ffffffffffffffff811115611b0157611b016124de565b6040519080825280601f01601f191660200182016040528015611b2b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b3557509392505050565b60006001600160e01b03198216632b435fdb60e21b1480611b9857506001600160e01b0319821663503e914d60e11b145b80610552575061055282611f8d565b60005b8181101561103757611bc68585611bc18487612cf3565b611fdd565b600101611baa565b60005b8181101561103757611bed8585611be88487612cf3565b612033565b600101611bd1565b6000808251604103611c2b5760208301516040840151606085015160001a611c1f8782858561207a565b9450945050505061083f565b5060009050600261083f565b6000816004811115611c4b57611c4b612d06565b03611c535750565b6001816004811115611c6757611c67612d06565b03611cb45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610685565b6002816004811115611cc857611cc8612d06565b03611d155760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610685565b6003816004811115611d2957611d29612d06565b03610ba45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610685565b611d8b838361213e565b611d986000848484611db4565b6107265760405162461bcd60e51b815260040161068590612ca1565b60006001600160a01b0384163b15611eaa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611df8903390899088908890600401612d1c565b6020604051808303816000875af1925050508015611e33575060408051601f3d908101601f19168201909252611e3091810190612d59565b60015b611e90573d808015611e61576040519150601f19603f3d011682016040523d82523d6000602084013e611e66565b606091505b508051600003611e885760405162461bcd60e51b815260040161068590612ca1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611660565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611ef45772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611f20576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611f3e57662386f26fc10000830492506010015b6305f5e1008310611f56576305f5e100830492506008015b6127108310611f6a57612710830492506004015b60648310611f7c576064830492506002015b600a83106105525760010192915050565b60006001600160e01b031982166380ac58cd60e01b1480611fbe57506001600160e01b03198216635b5e139f60e01b145b8061055257506301ffc9a760e01b6001600160e01b0319831614610552565b6001600160a01b038381161590831615818015611ff75750805b1561201557604051635cbd944160e01b815260040160405180910390fd5b8115612021575b611037565b8061201c5761103733868686346122e1565b6001600160a01b03838116159083161581801561204d5750805b1561206b57604051635cbd944160e01b815260040160405180910390fd5b8161201c578061201c57611037565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120b15750600090506003612135565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612105573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661212e57600060019250925050612135565b9150600090505b94509492505050565b6001600160a01b0382166121945760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610685565b6000818152600260205260409020546001600160a01b0316156121f95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610685565b612207600083836001611ba7565b6000818152600260205260409020546001600160a01b03161561226c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610685565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46108f6600083836001611bce565b60006122eb61072b565b90506001600160a01b03811615612383576001600160a01b03811633036123125750611037565b60405163657711f560e11b81526001600160a01b038781166004830152868116602483015285811660448301526064820185905282169063caee23ea9060840160006040518083038186803b15801561236a57600080fd5b505afa15801561237e573d6000803e3d6000fd5b505050505b505050505050565b6001600160e01b031981168114610ba457600080fd5b6000602082840312156123b357600080fd5b813561126b8161238b565b60005b838110156123d95781810151838201526020016123c1565b50506000910152565b600081518084526123fa8160208601602086016123be565b601f01601f19169290920160200192915050565b60208152600061126b60208301846123e2565b60006020828403121561243357600080fd5b5035919050565b6001600160a01b0381168114610ba457600080fd5b6000806040838503121561246257600080fd5b823561246d8161243a565b946020939093013593505050565b60008060006060848603121561249057600080fd5b833561249b8161243a565b925060208401356124ab8161243a565b929592945050506040919091013590565b600080604083850312156124cf57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561250f5761250f6124de565b604051601f8501601f19908116603f01168101908282118183101715612537576125376124de565b8160405280935085815286868601111561255057600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261257b57600080fd5b61126b838335602085016124f4565b6000806040838503121561259d57600080fd5b82359150602083013567ffffffffffffffff8111156125bb57600080fd5b6125c78582860161256a565b9150509250929050565b6000602082840312156125e357600080fd5b813567ffffffffffffffff8111156125fa57600080fd5b8201601f8101841361260b57600080fd5b611660848235602084016124f4565b60006020828403121561262c57600080fd5b813561126b8161243a565b60008060006040848603121561264c57600080fd5b833567ffffffffffffffff8082111561266457600080fd5b9085019060c0828803121561267857600080fd5b9093506020850135908082111561268e57600080fd5b818601915086601f8301126126a257600080fd5b8135818111156126b157600080fd5b8760208285010111156126c357600080fd5b6020830194508093505050509250925092565b8015158114610ba457600080fd5b6000602082840312156126f657600080fd5b813561126b816126d6565b80356001600160801b038116811461271857600080fd5b919050565b6000806040838503121561273057600080fd5b61273983612701565b915061274760208401612701565b90509250929050565b6000806040838503121561276357600080fd5b823561276e8161243a565b9150602083013561277e816126d6565b809150509250929050565b6000806000806080858703121561279f57600080fd5b84356127aa8161243a565b935060208501356127ba8161243a565b925060408501359150606085013567ffffffffffffffff8111156127dd57600080fd5b6127e98782880161256a565b91505092959194509250565b6000806040838503121561280857600080fd5b82356128138161243a565b9150602083013561277e8161243a565b600080600080600080600060c0888a03121561283e57600080fd5b87356128498161243a565b965060208801356128598161243a565b9550604088013567ffffffffffffffff8082111561287657600080fd5b818a0191508a601f83011261288a57600080fd5b81358181111561289957600080fd5b8b60208260051b85010111156128ae57600080fd5b6020830197508096505050506128c660608901612701565b92506128d460808901612701565b915060a0880135905092959891949750929550565b600181811c908216806128fd57607f821691505b60208210810361291d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761055257610552612970565b6000826129ba57634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561072657600081815260208120601f850160051c810160208610156129e65750805b601f850160051c820191505b81811015612383578281556001016129f2565b815167ffffffffffffffff811115612a1f57612a1f6124de565b612a3381612a2d84546128e9565b846129bf565b602080601f831160018114612a685760008415612a505750858301515b600019600386901b1c1916600185901b178555612383565b600085815260208120601f198616915b82811015612a9757888601518255948401946001909101908401612a78565b5085821015612ab55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612ad757600080fd5b5051919050565b600060208284031215612af057600080fd5b815161126b8161243a565b600060208284031215612b0d57600080fd5b61126b82612701565b6000808335601e19843603018112612b2d57600080fd5b83018035915067ffffffffffffffff821115612b4857600080fd5b6020019150600581901b360382131561083f57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060018201612b8857612b88612970565b5060010190565b600060208284031215612ba157600080fd5b815161126b816126d6565b60008351612bbe8184602088016123be565b835190830190612bd28183602088016123be565b01949350505050565b6bffffffffffffffffffffffff19606089811b8216835288901b16601482015260006001600160fb1b03861115612c1157600080fd5b8560051b808860288501376fffffffffffffffffffffffffffffffff19608096871b81169190930160288101919091529390941b166038830152604882015260680195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b8082018082111561055257610552612970565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d4f908301846123e2565b9695505050505050565b600060208284031215612d6b57600080fd5b815161126b8161238b56fea26469706673582212206f995f37c386cb60a032c1d74536025c3623c2880613c1f25aaa851599fb813964736f6c63430008150033

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

    0000000000000000000000006bee03a601874abfad5143a83a3199dba71fa29500000000000000000000000000000000000000000000000000000000000001a4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001454686520383130323a20426c75657072696e7473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a424c55455052494e545300000000000000000000000000000000000000000000

    -----Decoded View---------------
    Arg [0] : royaltyReceiver_ (address): 0x6bEE03a601874ABFad5143A83a3199DBA71Fa295
    Arg [1] : royaltyFeeNumerator_ (uint96): 420
    Arg [2] : name_ (string): The 8102: Blueprints
    Arg [3] : symbol_ (string): BLUEPRINTS

    -----Encoded View---------------
    8 Constructor Arguments found :
    Arg [0] : 0000000000000000000000006bee03a601874abfad5143a83a3199dba71fa295
    Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a4
    Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
    Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
    Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
    Arg [5] : 54686520383130323a20426c75657072696e7473000000000000000000000000
    Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
    Arg [7] : 424c55455052494e545300000000000000000000000000000000000000000000


    Deployed Bytecode Sourcemap

    350:2800:34:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2205:104:10;;2266:42;2205:104;;;;;-1:-1:-1;;;;;178:32:35;;;160:51;;148:2;133:18;2205:104:10;;;;;;;;2769:171:34;;;;;;:::i;:::-;;:::i;:::-;;;773:14:35;;766:22;748:41;;736:2;721:18;2769:171:34;608:187:35;333:106:8;;;:::i;:::-;;;;;;;:::i;3935:167:20:-;;;;;;:::i;:::-;;:::i;3468:406::-;;;;;;:::i;:::-;;:::i;:::-;;3958:290:10;;;:::i;2159:249:2:-;;;;-1:-1:-1;;;2363:52:35;;2397:4:2;2446:2:35;2431:18;;2424:50;2336:18;2159:249:2;2197:283:35;4612:326:20;;;;;;:::i;:::-;;:::i;1671:432:24:-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3391:32:35;;;3373:51;;3455:2;3440:18;;3433:34;;;;3346:18;1671:432:24;3199:274:35;468:33:34;;;;;;;;;5004:179:20;;;;;;:::i;:::-;;:::i;411:196:33:-;;;;;;:::i;:::-;;:::i;2946:98:34:-;;;;;;:::i;:::-;;:::i;628:471:32:-;;;;;;:::i;:::-;;:::i;724:45:9:-;;;;;-1:-1:-1;;;724:45:9;;;;;;2190:219:20;;;;;;:::i;:::-;;:::i;441:21:34:-;;;:::i;2559:91::-;;;;;;:::i;:::-;;:::i;1929:204:20:-;;;;;;:::i;:::-;;:::i;:::-;;;5717:25:35;;;5705:2;5690:18;1929:204:20;5571:177:35;1831:101:13;;;:::i;1503:450:32:-;;;;;;:::i;:::-;;:::i;1182:853:34:-;;;;;;:::i;:::-;;:::i;1201:85:13:-;1273:6;;-1:-1:-1;;;;;1273:6:13;1201:85;;445:110:8;;;:::i;1139:253:9:-;;;;;;:::i;:::-;;:::i;215:38:33:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1105:392:32;;;;;;:::i;:::-;;:::i;723:154:33:-;;;;;;:::i;:::-;;:::i;4169:153:20:-;;;;;;:::i;:::-;;:::i;3268:580:10:-;;;;;;:::i;:::-;;:::i;5249:314:20:-;;;;;;:::i;:::-;;:::i;613:104:33:-;;;;;;:::i;:::-;672:4;696:14;;;:6;:14;;;;;;;;695:15;;613:104;2801:276:20;;;;;;:::i;:::-;;:::i;1053:362:2:-;;;;;;:::i;:::-;;:::i;2081:198:13:-;;;;;;:::i;:::-;;:::i;2656:107:34:-;;;;;;:::i;:::-;;:::i;2041:512::-;;;;;;:::i;:::-;;:::i;2769:171::-;2873:4;2896:37;2920:12;2896:23;:37::i;:::-;2889:44;2769:171;-1:-1:-1;;2769:171:34:o;333:106:8:-;387:13;419;412:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333:106;:::o;3935:167:20:-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:20;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:20;;3935:167::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;-1:-1:-1;;;;;3605:11:20;:2;-1:-1:-1;;;;;3605:11:20;;3597:57;;;;-1:-1:-1;;;3597:57:20;;10964:2:35;3597:57:20;;;10946:21:35;11003:2;10983:18;;;10976:30;11042:34;11022:18;;;11015:62;-1:-1:-1;;;11093:18:35;;;11086:31;11134:19;;3597:57:20;;;;;;;;;719:10:26;-1:-1:-1;;;;;3686:21:20;;;;:62;;-1:-1:-1;3711:37:20;3728:5;719:10:26;1053:362:2;:::i;3711:37:20:-;3665:170;;;;-1:-1:-1;;;3665:170:20;;11366:2:35;3665:170:20;;;11348:21:35;11405:2;11385:18;;;11378:30;11444:34;11424:18;;;11417:62;11515:31;11495:18;;;11488:59;11564:19;;3665:170:20;11164:425:35;3665:170:20;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;3958:290:10:-;4061:17;;-1:-1:-1;;;;;4061:17:10;;4089:153;;4137:22;;-1:-1:-1;;;4137:22:10;;;;4132:100;;-1:-1:-1;2266:42:10;4132:100;3958:290;:::o;4612:326:20:-;4801:41;719:10:26;4834:7:20;4801:18;:41::i;:::-;4793:99;;;;-1:-1:-1;;;4793:99:20;;;;;;;:::i;:::-;4903:28;4913:4;4919:2;4923:7;4903:9;:28::i;1671:432:24:-;1768:7;1825:27;;;:17;:27;;;;;;;;1796:56;;;;;;;;;-1:-1:-1;;;;;1796:56:24;;;;;-1:-1:-1;;;1796:56:24;;;-1:-1:-1;;;;;1796:56:24;;;;;;;;1768:7;;1863:90;;-1:-1:-1;1913:29:24;;;;;;;;;1923:19;1913:29;-1:-1:-1;;;;;1913:29:24;;;;-1:-1:-1;;;1913:29:24;;-1:-1:-1;;;;;1913:29:24;;;;;1863:90;2001:23;;;;1963:21;;2461:5;;1988:36;;-1:-1:-1;;;;;1988:36:24;:10;:36;:::i;:::-;1987:58;;;;:::i;:::-;2064:16;;;-1:-1:-1;1963:82:24;;-1:-1:-1;;1671:432:24;;;;;;:::o;5004:179:20:-;5137:39;5154:4;5160:2;5164:7;5137:39;;;;;;;;;;;;:16;:39::i;411:196:33:-;594:6;;519:4;;-1:-1:-1;;;;;594:6:33;542:48;580:9;542:29;:4;7455:58:28;;21521:66:35;7455:58:28;;;21509:79:35;21604:12;;;21597:28;;;7325:7:28;;21641:12:35;;7455:58:28;;;;;;;;;;;;7445:69;;;;;;7438:76;;7256:265;;;;542:29:33;:37;;:48::i;:::-;-1:-1:-1;;;;;542:58:33;;;411:196;-1:-1:-1;;;411:196:33:o;2946:98:34:-;1094:13:13;:11;:13::i;:::-;3019:7:34::1;:18;3029:8:::0;3019:7;:18:::1;:::i;:::-;;2946:98:::0;:::o;628:471:32:-;1094:13:13;:11;:13::i;:::-;-1:-1:-1;;;;;724:26:32;::::1;720:60;;759:21;;-1:-1:-1::0;;;759:21:32::1;;;;;;;;;;;720:60;858:39;::::0;-1:-1:-1;;;858:39:32;;882:4:::1;858:39;::::0;::::1;3373:51:35::0;3440:18;;;3433:34;;;817:12:32;;791:14:::1;::::0;-1:-1:-1;;;;;858:15:32;::::1;::::0;::::1;::::0;3346:18:35;;858:39:32::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;840:57;;911:7;922:1;911:12:::0;907:43:::1;;932:18;;-1:-1:-1::0;;;932:18:32::1;;;;;;;;;;;907:43;961:5;-1:-1:-1::0;;;;;961:22:32::1;;992:4;999:7;1273:6:13::0;;-1:-1:-1;;;;;1273:6:13;;1201:85;999:7:32::1;961:68;::::0;-1:-1:-1;;;;;;961:68:32::1;::::0;;;;;;-1:-1:-1;;;;;15411:15:35;;;961:68:32::1;::::0;::::1;15393:34:35::0;15463:15;;15443:18;;;15436:43;15495:18;;;15488:34;;;15538:18;;;15531:34;;;15373:3;15581:19;;;15574:32;-1:-1:-1;15622:19:35;;;15615:30;15662:19;;961:68:32::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;1075:7;1061:12;-1:-1:-1::0;;;;;1044:48:32::1;;1084:7;1044:48;;;;5717:25:35::0;;5705:2;5690:18;;5571:177;1044:48:32::1;;;;;;;;710:389;;628:471:::0;;:::o;2190:219:20:-;2262:7;6930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6930:16:20;;2324:56;;;;-1:-1:-1;;;2324:56:20;;15894:2:35;2324:56:20;;;15876:21:35;15933:2;15913:18;;;15906:30;-1:-1:-1;;;15952:18:35;;;15945:54;16016:18;;2324:56:20;15692:348:35;441:21:34;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2559:91::-;1094:13:13;:11;:13::i;:::-;2624:19:34::1;2635:7;2624:10;:19::i;:::-;2559:91:::0;:::o;1929:204:20:-;2001:7;-1:-1:-1;;;;;2028:19:20;;2020:73;;;;-1:-1:-1;;;2020:73:20;;16247:2:35;2020:73:20;;;16229:21:35;16286:2;16266:18;;;16259:30;16325:34;16305:18;;;16298:62;-1:-1:-1;;;16376:18:35;;;16369:39;16425:19;;2020:73:20;16045:405:35;2020:73:20;-1:-1:-1;;;;;;2110:16:20;;;;;:9;:16;;;;;;;1929:204::o;1831:101:13:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1503:450:32:-;1094:13:13;:11;:13::i;:::-;-1:-1:-1;;;;;1598:26:32;::::1;1594:60;;1633:21;;-1:-1:-1::0;;;1633:21:32::1;;;;;;;;;;;1594:60;1735:22;::::0;-1:-1:-1;;;1735:22:32;;::::1;::::0;::::1;5717:25:35::0;;;1689:12:32;;1665:13:::1;::::0;-1:-1:-1;;;;;1735:13:32;::::1;::::0;::::1;::::0;5690:18:35;;1735:22:32::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1712:45:::0;-1:-1:-1;;;;;;1771:29:32;::::1;1795:4;1771:29;1767:60;;1809:18;;-1:-1:-1::0;;;1809:18:32::1;;;;;;;;;;;1767:60;1838:5;-1:-1:-1::0;;;;;1838:22:32::1;;1869:4;1876:7;1273:6:13::0;;-1:-1:-1;;;;;1273:6:13;;1201:85;1876:7:32::1;1838:55;::::0;-1:-1:-1;;;;;;1838:55:32::1;::::0;;;;;;-1:-1:-1;;;;;16969:15:35;;;1838:55:32::1;::::0;::::1;16951:34:35::0;17021:15;;17001:18;;;16994:43;17053:18;;;17046:34;;;16886:18;;1838:55:32::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;1908:38:32::1;::::0;1938:7;;-1:-1:-1;;;;;;1908:38:32;::::1;::::0;-1:-1:-1;1908:38:32::1;::::0;;;::::1;1584:369;;1503:450:::0;;:::o;1182:853:34:-;1274:13;;;;1269:43;;1296:16;;-1:-1:-1;;;1296:16:34;;;;;;;;;;;1269:43;1345:1;1326:7;;;;:4;:7;:::i;:::-;-1:-1:-1;;;;;1326:21:34;;1322:52;;1356:18;;-1:-1:-1;;;1356:18:34;;;;;;;;;;;1322:52;1409:1;1388:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1388:23:34;;:52;;;-1:-1:-1;719:10:26;1415:9:34;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1415:25:34;;;1388:52;1384:80;;;1449:15;;-1:-1:-1;;;1449:15:34;;;;;;;;;;;1384:80;1492:10;;;;672:4:33;696:14;;;:6;:14;;;;;;;;695:15;1474:56:34;;1512:18;;-1:-1:-1;;;1512:18:34;;;;;;;;;;;1474:56;1545:67;1557:27;;;;;;;;:::i;:::-;1586:25;;;;;;;;:::i;1545:67::-;1540:97;;1621:16;;-1:-1:-1;;;1621:16:34;;;;;;;;;;;1540:97;1648:28;1665:4;:10;;;944:14:33;;;;:6;:14;;;;;:21;;-1:-1:-1;;944:21:33;961:4;944:21;;;883:89;1648:28:34;1687:15;1705:121;1724:7;;;;:4;:7;:::i;:::-;1733:9;;;;;;;;:::i;:::-;1744:13;;;;:4;:13;:::i;:::-;1759:27;;;;;;;;:::i;:::-;1788:25;;;;;;;;:::i;:::-;1815:4;:10;;;1705:18;:121::i;:::-;1687:139;;1841:38;1859:7;1868:10;;1841:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1841:17:34;;-1:-1:-1;;;1841:38:34:i;:::-;1836:70;;1888:18;;-1:-1:-1;;;1888:18:34;;;;;;;;;;;1836:70;1922:9;1917:112;1941:13;;;;:4;:13;:::i;:::-;:20;;1937:1;:24;1917:112;;;1982:36;1992:7;;;;:4;:7;:::i;:::-;2001:13;;;;:4;:13;:::i;:::-;2015:1;2001:16;;;;;;;:::i;:::-;;;;;;;1982:9;:36::i;:::-;1963:3;;;;:::i;:::-;;;;1917:112;;;;1259:776;1182:853;;;:::o;445:110:8:-;501:13;533:15;526:22;;;;;:::i;1139:253:9:-;1230:31;:29;:31::i;:::-;1271:33;:47;;;;;-1:-1:-1;;;1271:47:9;-1:-1:-1;;;;1271:47:9;;;;;;1333:52;;;;;;1307:11;773:14:35;766:22;748:41;;736:2;721:18;;608:187;1333:52:9;;;;;;;;1139:253;:::o;1105:392:32:-;1094:13:13;:11;:13::i;:::-;-1:-1:-1;;;;;1182:26:32;::::1;1178:60;;1217:21;;-1:-1:-1::0;;;1217:21:32::1;;;;;;;;;;;1178:60;1312:30;::::0;-1:-1:-1;;;1312:30:32;;1336:4:::1;1312:30;::::0;::::1;160:51:35::0;1271:12:32;;1249::::1;::::0;-1:-1:-1;;;;;1312:15:32;::::1;::::0;::::1;::::0;133:18:35;;1312:30:32::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1294:48;;1356:7;1367:1;1356:12:::0;1352:43:::1;;1377:18;;-1:-1:-1::0;;;1377:18:32::1;;;;;;;;;;;1352:43;1406:5;-1:-1:-1::0;;;;;1406:14:32::1;;1421:7;1273:6:13::0;;-1:-1:-1;;;;;1273:6:13;;1201:85;1421:7:32::1;1406:32;::::0;-1:-1:-1;;;;;;1406:32:32::1;::::0;;;;;;-1:-1:-1;;;;;3391:32:35;;;1406::32::1;::::0;::::1;3373:51:35::0;3440:18;;;3433:34;;;3346:18;;1406:32:32::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1468:12;-1:-1:-1::0;;;;;1453:37:32::1;;1482:7;1453:37;;;;5717:25:35::0;;5705:2;5690:18;;5571:177;1453:37:32::1;;;;;;;;1168:329;;1105:392:::0;:::o;723:154:33:-;795:4;828:15;818:6;-1:-1:-1;;;;;818:25:33;;;:52;;;;;855:15;847:4;-1:-1:-1;;;;;847:23:33;;;818:52;811:59;723:154;-1:-1:-1;;;723:154:33:o;4169:153:20:-;4263:52;719:10:26;4296:8:20;4306;4263:18;:52::i;3268:580:10:-;3343:31;:29;:31::i;:::-;-1:-1:-1;;;;;3417:30:10;;;;:34;;;3465:32;;;;:61;;;3502:24;3501:25;3465:61;3462:150;;;3549:52;;-1:-1:-1;;;3549:52:10;;;;;;;;;;;3462:150;3627:77;3660:22;:20;:22::i;:::-;3627:77;;;-1:-1:-1;;;;;18584:15:35;;;18566:34;;18636:15;;;18631:2;18616:18;;18609:43;18501:18;3627:77:10;;;;;;;3715:22;:29;;-1:-1:-1;;;;3715:29:10;-1:-1:-1;;;3715:29:10;;;3754:17;:38;;-1:-1:-1;;;;;3754:38:10;;-1:-1:-1;;;;;;3754:38:10;;;;;;3803;3774:18;3803;:38::i;5249:314:20:-;5417:41;719:10:26;5450:7:20;5417:18;:41::i;:::-;5409:99;;;;-1:-1:-1;;;5409:99:20;;;;;;;:::i;:::-;5518:38;5532:4;5538:2;5542:7;5551:4;5518:13;:38::i;:::-;5249:314;;;;:::o;2801:276::-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;:8;:10::i;:::-;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2977:93;2801:276;-1:-1:-1;;;2801:276:20:o;1053:362:2:-;-1:-1:-1;;;;;4508:25:20;;;1150:15:2;4508:25:20;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;1240:169:2;;1275:33;;-1:-1:-1;;;1275:33:2;;;;1271:128;;;1361:22;:20;:22::i;:::-;-1:-1:-1;;;;;1341:43:2;:8;-1:-1:-1;;;;;1341:43:2;;1328:56;;1053:362;;;;:::o;2081:198:13:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:13;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:13;;19366:2:35;2161:73:13::1;::::0;::::1;19348:21:35::0;19405:2;19385:18;;;19378:30;19444:34;19424:18;;;19417:62;-1:-1:-1;;;19495:18:35;;;19488:36;19541:19;;2161:73:13::1;19164:402:35::0;2161:73:13::1;2244:28;2263:8;2244:18;:28::i;2656:107:34:-:0;1094:13:13;:11;:13::i;:::-;2728::34::1;:28:::0;;-1:-1:-1;;2728:28:34::1;::::0;::::1;;::::0;;;::::1;::::0;;2656:107::o;2041:512::-;2282:7;2365:3;2386:5;2409:9;;2436:23;2477:21;2516:6;2331:205;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2308:238;;;;;;2301:245;;2041:512;;;;;;;;;:::o;1408:213:24:-;1510:4;-1:-1:-1;;;;;;1533:41:24;;-1:-1:-1;;;1533:41:24;;:81;;;1578:36;1602:11;1578:23;:36::i;13466:133:20:-;7321:4;6930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6930:16:20;13539:53;;;;-1:-1:-1;;;13539:53:20;;15894:2:35;13539:53:20;;;15876:21:35;15933:2;15913:18;;;15906:30;-1:-1:-1;;;15952:18:35;;;15945:54;16016:18;;13539:53:20;15692:348:35;12768:171:20;12842:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12842:29:20;-1:-1:-1;;;;;12842:29:20;;;;;;;;:24;;12895:23;12842:24;12895:14;:23::i;:::-;-1:-1:-1;;;;;12886:46:20;;;;;;;;;;;12768:171;;:::o;7540:261::-;7633:4;7649:13;7665:23;7680:7;7665:14;:23::i;:::-;7649:39;;7717:5;-1:-1:-1;;;;;7706:16:20;:7;-1:-1:-1;;;;;7706:16:20;;:52;;;;7726:32;7743:5;7750:7;7726:16;:32::i;:::-;7706:87;;;;7786:7;-1:-1:-1;;;;;7762:31:20;:20;7774:7;7762:11;:20::i;:::-;-1:-1:-1;;;;;7762:31:20;;7706:87;7698:96;7540:261;-1:-1:-1;;;;7540:261:20:o;11423:1233::-;11577:4;-1:-1:-1;;;;;11550:31:20;:23;11565:7;11550:14;:23::i;:::-;-1:-1:-1;;;;;11550:31:20;;11542:81;;;;-1:-1:-1;;;11542:81:20;;;;;;;:::i;:::-;-1:-1:-1;;;;;11641:16:20;;11633:65;;;;-1:-1:-1;;;11633:65:20;;21076:2:35;11633:65:20;;;21058:21:35;21115:2;21095:18;;;21088:30;21154:34;21134:18;;;21127:62;-1:-1:-1;;;21205:18:35;;;21198:34;21249:19;;11633:65:20;20874:400:35;11633:65:20;11709:42;11730:4;11736:2;11740:7;11749:1;11709:20;:42::i;:::-;11878:4;-1:-1:-1;;;;;11851:31:20;:23;11866:7;11851:14;:23::i;:::-;-1:-1:-1;;;;;11851:31:20;;11843:81;;;;-1:-1:-1;;;11843:81:20;;;;;;;:::i;:::-;11993:24;;;;:15;:24;;;;;;;;11986:31;;-1:-1:-1;;;;;;11986:31:20;;;;;;-1:-1:-1;;;;;12461:15:20;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12461:20:20;;;12495:13;;;;;;;;;:18;;11986:31;12495:18;;;12533:16;;;:7;:16;;;;;;:21;;;;;;;;;;12570:27;;12009:7;;12570:27;;;12608:41;12628:4;12634:2;12638:7;12647:1;12608:19;:41::i;3661:227:28:-;3739:7;3759:17;3778:18;3800:27;3811:4;3817:9;3800:10;:27::i;:::-;3758:69;;;;3837:18;3849:5;3837:11;:18::i;:::-;-1:-1:-1;3872:9:28;3661:227;-1:-1:-1;;;3661:227:28:o;1359:130:13:-;1273:6;;-1:-1:-1;;;;;1273:6:13;719:10:26;1422:23:13;1414:68;;;;-1:-1:-1;;;1414:68:13;;21866:2:35;1414:68:13;;;21848:21:35;;;21885:18;;;21878:30;21944:34;21924:18;;;21917:62;21996:18;;1414:68:13;21664:356:35;260:145:33;-1:-1:-1;;;;;324:21:33;;316:56;;;;-1:-1:-1;;;316:56:33;;22227:2:35;316:56:33;;;22209:21:35;22266:2;22246:18;;;22239:30;-1:-1:-1;;;22285:18:35;;;22278:52;22347:18;;316:56:33;22025:346:35;316:56:33;382:6;:16;;-1:-1:-1;;;;;;382:16:33;-1:-1:-1;;;;;382:16:33;;;;;;;;;;260:145::o;2433:187:13:-;2525:6;;;-1:-1:-1;;;;;2541:17:13;;;-1:-1:-1;;;;;;2541:17:13;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;8131:108:20:-;8206:26;8216:2;8220:7;8206:26;;;;;;;;;;;;:9;:26::i;215:102:0:-;297:13;:11;:13::i;13075:307:20:-;13225:8;-1:-1:-1;;;;;13216:17:20;:5;-1:-1:-1;;;;;13216:17:20;;13208:55;;;;-1:-1:-1;;;13208:55:20;;22578:2:35;13208:55:20;;;22560:21:35;22617:2;22597:18;;;22590:30;22656:27;22636:18;;;22629:55;22701:18;;13208:55:20;22376:349:35;13208:55:20;-1:-1:-1;;;;;13273:25:20;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13273:46:20;;;;;;;;;;13334:41;;748::35;;;13334::20;;721:18:35;13334:41:20;;;;;;;13075:307;;;:::o;7405:448:10:-;-1:-1:-1;;;;;7475:23:10;;;7471:376;;7601:22;;7653:21;;7650:187;;7698:95;;;-1:-1:-1;;;7698:95:10;;7773:4;7698:95;;;22902:51:35;701:3:12;22969:18:35;;;22962:47;7698:95:10;;-1:-1:-1;;;;;7698:66:10;;;;;22875:18:35;;;;;-1:-1:-1;;7698:95:10;;;;;;;-1:-1:-1;7698:66:10;:95;;;;;;;;;;;;;;;;;;;;;;;;;7694:129;;;7500:347;7405:448;:::o;6424:305:20:-;6574:28;6584:4;6590:2;6594:7;6574:9;:28::i;:::-;6620:47;6643:4;6649:2;6653:7;6662:4;6620:22;:47::i;:::-;6612:110;;;;-1:-1:-1;;;6612:110:20;;;;;;;:::i;3050:98:34:-;3102:13;3134:7;3127:14;;;;;:::i;415:696:27:-;471:13;520:14;537:17;548:5;537:10;:17::i;:::-;557:1;537:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;595:18:27;-1:-1:-1;572:41:27;-1:-1:-1;733:28:27;;;749:2;733:28;788:280;-1:-1:-1;;819:5:27;-1:-1:-1;;;953:2:27;942:14;;937:30;819:5;924:44;1012:2;1003:11;;;-1:-1:-1;1032:21:27;788:280;1032:21;-1:-1:-1;1088:6:27;415:696;-1:-1:-1;;;415:696:27:o;1701:284:2:-;1786:4;-1:-1:-1;;;;;;1818:46:2;;-1:-1:-1;;;1818:46:2;;:111;;-1:-1:-1;;;;;;;1877:52:2;;-1:-1:-1;;;1877:52:2;1818:111;:160;;;;1942:36;1966:11;1942:23;:36::i;2519:343::-;2690:9;2685:171;2709:9;2705:1;:13;2685:171;;;2735:51;2759:4;2765:2;2769:16;2784:1;2769:12;:16;:::i;:::-;2735:23;:51::i;:::-;2828:3;;2685:171;;2972:341;3142:9;3137:170;3161:9;3157:1;:13;3137:170;;;3187:50;3210:4;3216:2;3220:16;3235:1;3220:12;:16;:::i;:::-;3187:22;:50::i;:::-;3279:3;;3137:170;;2145:730:28;2226:7;2235:12;2263:9;:16;2283:2;2263:22;2259:610;;2599:4;2584:20;;2578:27;2648:4;2633:20;;2627:27;2705:4;2690:20;;2684:27;2301:9;2676:36;2746:25;2757:4;2676:36;2578:27;2627;2746:10;:25::i;:::-;2739:32;;;;;;;;;2259:610;-1:-1:-1;2818:1:28;;-1:-1:-1;2822:35:28;2802:56;;570:511;647:20;638:5;:29;;;;;;;;:::i;:::-;;634:441;;570:511;:::o;634:441::-;743:29;734:5;:38;;;;;;;;:::i;:::-;;730:345;;788:34;;-1:-1:-1;;;788:34:28;;23903:2:35;788:34:28;;;23885:21:35;23942:2;23922:18;;;23915:30;23981:26;23961:18;;;23954:54;24025:18;;788:34:28;23701:348:35;730:345:28;852:35;843:5;:44;;;;;;;;:::i;:::-;;839:236;;903:41;;-1:-1:-1;;;903:41:28;;24256:2:35;903:41:28;;;24238:21:35;24295:2;24275:18;;;24268:30;24334:33;24314:18;;;24307:61;24385:18;;903:41:28;24054:355:35;839:236:28;974:30;965:5;:39;;;;;;;;:::i;:::-;;961:114;;1020:44;;-1:-1:-1;;;1020:44:28;;24616:2:35;1020:44:28;;;24598:21:35;24655:2;24635:18;;;24628:30;24694:34;24674:18;;;24667:62;-1:-1:-1;;;24745:18:35;;;24738:32;24787:19;;1020:44:28;24414:398:35;8460:309:20;8584:18;8590:2;8594:7;8584:5;:18::i;:::-;8633:53;8664:1;8668:2;8672:7;8681:4;8633:22;:53::i;:::-;8612:150;;;;-1:-1:-1;;;8612:150:20;;;;;;;:::i;14151:831::-;14300:4;-1:-1:-1;;;;;14320:13:20;;1465:19:25;:23;14316:660:20;;14355:71;;-1:-1:-1;;;14355:71:20;;-1:-1:-1;;;;;14355:36:20;;;;;:71;;719:10:26;;14406:4:20;;14412:7;;14421:4;;14355:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14355:71:20;;;;;;;;-1:-1:-1;;14355:71:20;;;;;;;;;;;;:::i;:::-;;;14351:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14593:6;:13;14610:1;14593:18;14589:321;;14635:60;;-1:-1:-1;;;14635:60:20;;;;;;;:::i;14589:321::-;14862:6;14856:13;14847:6;14843:2;14839:15;14832:38;14351:573;-1:-1:-1;;;;;;14476:51:20;-1:-1:-1;;;14476:51:20;;-1:-1:-1;14469:58:20;;14316:660;-1:-1:-1;14961:4:20;14151:831;;;;;;:::o;9889:890:31:-;9942:7;;-1:-1:-1;;;10017:15:31;;10013:99;;-1:-1:-1;;;10052:15:31;;;-1:-1:-1;10095:2:31;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:31;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:31;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:31;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:31;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:31;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:31:o;1570:300:20:-;1672:4;-1:-1:-1;;;;;;1707:40:20;;-1:-1:-1;;;1707:40:20;;:104;;-1:-1:-1;;;;;;;1763:48:20;;-1:-1:-1;;;1763:48:20;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:29;;;1827:36:20;829:155:29;1014:610:11;-1:-1:-1;;;;;1140:18:11;;;;;1189:16;;;1140:18;1219:32;;;;;1238:13;1219:32;1216:402;;;1274:28;;-1:-1:-1;;;1274:28:11;;;;;;;;;;;1216:402;1322:15;1319:299;;;1353:54;1319:299;;;1427:13;1456:56;1424:194;1543:64;719:10:26;1578:4:11;1584:2;1588:7;1597:9;1543:20;:64::i;1754:612::-;-1:-1:-1;;;;;1879:18:11;;;;;1928:16;;;1879:18;1958:32;;;;;1977:13;1958:32;1955:405;;;2013:28;;-1:-1:-1;;;2013:28:11;;;;;;;;;;;1955:405;2061:15;2092:55;2058:302;2167:13;2196:57;2164:196;2284:65;2559:91:34:o;5069:1494:28:-;5195:7;;6119:66;6106:79;;6102:161;;;-1:-1:-1;6217:1:28;;-1:-1:-1;6221:30:28;6201:51;;6102:161;6374:24;;;6357:14;6374:24;;;;;;;;;25792:25:35;;;25865:4;25853:17;;25833:18;;;25826:45;;;;25887:18;;;25880:34;;;25930:18;;;25923:34;;;6374:24:28;;25764:19:35;;6374:24:28;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6374:24:28;;-1:-1:-1;;6374:24:28;;;-1:-1:-1;;;;;;;6412:20:28;;6408:101;;6464:1;6468:29;6448:50;;;;;;;6408:101;6527:6;-1:-1:-1;6535:20:28;;-1:-1:-1;5069:1494:28;;;;;;;;:::o;9091:920:20:-;-1:-1:-1;;;;;9170:16:20;;9162:61;;;;-1:-1:-1;;;9162:61:20;;26170:2:35;9162:61:20;;;26152:21:35;;;26189:18;;;26182:30;26248:34;26228:18;;;26221:62;26300:18;;9162:61:20;25968:356:35;9162:61:20;7321:4;6930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6930:16:20;7344:31;9233:58;;;;-1:-1:-1;;;9233:58:20;;26531:2:35;9233:58:20;;;26513:21:35;26570:2;26550:18;;;26543:30;26609;26589:18;;;26582:58;26657:18;;9233:58:20;26329:352:35;9233:58:20;9302:48;9331:1;9335:2;9339:7;9348:1;9302:20;:48::i;:::-;7321:4;6930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6930:16:20;7344:31;9437:58;;;;-1:-1:-1;;;9437:58:20;;26531:2:35;9437:58:20;;;26513:21:35;26570:2;26550:18;;;26543:30;26609;26589:18;;;26582:58;26657:18;;9437:58:20;26329:352:35;9437:58:20;-1:-1:-1;;;;;9837:13:20;;;;;;:9;:13;;;;;;;;:18;;9854:1;9837:18;;;9876:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9876:21:20;;;;;9913:33;9884:7;;9837:13;;9913:33;;9837:13;;9913:33;9957:47;9985:1;9989:2;9993:7;10002:1;9957:19;:47::i;5190:457:10:-;5379:17;5399:22;:20;:22::i;:::-;5379:42;-1:-1:-1;;;;;;5436:23:10;;;5432:209;;-1:-1:-1;;;;;5479:23:10;;:10;:23;5475:68;;5522:7;;;5475:68;5557:73;;-1:-1:-1;;;5557:73:10;;-1:-1:-1;;;;;26973:15:35;;;5557:73:10;;;26955:34:35;27025:15;;;27005:18;;;26998:43;27077:15;;;27057:18;;;27050:43;27109:18;;;27102:34;;;5557:46:10;;;;;26889:19:35;;5557:73:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5432:209;5369:278;5190:457;;;;;:::o;222:131:35:-;-1:-1:-1;;;;;;296:32:35;;286:43;;276:71;;343:1;340;333:12;358:245;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;524:9;511:23;543:30;567:5;543:30;:::i;800:250::-;885:1;895:113;909:6;906:1;903:13;895:113;;;985:11;;;979:18;966:11;;;959:39;931:2;924:10;895:113;;;-1:-1:-1;;1042:1:35;1024:16;;1017:27;800:250::o;1055:271::-;1097:3;1135:5;1129:12;1162:6;1157:3;1150:19;1178:76;1247:6;1240:4;1235:3;1231:14;1224:4;1217:5;1213:16;1178:76;:::i;:::-;1308:2;1287:15;-1:-1:-1;;1283:29:35;1274:39;;;;1315:4;1270:50;;1055:271;-1:-1:-1;;1055:271:35:o;1331:220::-;1480:2;1469:9;1462:21;1443:4;1500:45;1541:2;1530:9;1526:18;1518:6;1500:45;:::i;1556:180::-;1615:6;1668:2;1656:9;1647:7;1643:23;1639:32;1636:52;;;1684:1;1681;1674:12;1636:52;-1:-1:-1;1707:23:35;;1556:180;-1:-1:-1;1556:180:35:o;1741:131::-;-1:-1:-1;;;;;1816:31:35;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:35:o;2485:456::-;2562:6;2570;2578;2631:2;2619:9;2610:7;2606:23;2602:32;2599:52;;;2647:1;2644;2637:12;2599:52;2686:9;2673:23;2705:31;2730:5;2705:31;:::i;:::-;2755:5;-1:-1:-1;2812:2:35;2797:18;;2784:32;2825:33;2784:32;2825:33;:::i;:::-;2485:456;;2877:7;;-1:-1:-1;;;2931:2:35;2916:18;;;;2903:32;;2485:456::o;2946:248::-;3014:6;3022;3075:2;3063:9;3054:7;3050:23;3046:32;3043:52;;;3091:1;3088;3081:12;3043:52;-1:-1:-1;;3114:23:35;;;3184:2;3169:18;;;3156:32;;-1:-1:-1;2946:248:35:o;3478:127::-;3539:10;3534:3;3530:20;3527:1;3520:31;3570:4;3567:1;3560:15;3594:4;3591:1;3584:15;3610:631;3674:5;3704:18;3745:2;3737:6;3734:14;3731:40;;;3751:18;;:::i;:::-;3826:2;3820:9;3794:2;3880:15;;-1:-1:-1;;3876:24:35;;;3902:2;3872:33;3868:42;3856:55;;;3926:18;;;3946:22;;;3923:46;3920:72;;;3972:18;;:::i;:::-;4012:10;4008:2;4001:22;4041:6;4032:15;;4071:6;4063;4056:22;4111:3;4102:6;4097:3;4093:16;4090:25;4087:45;;;4128:1;4125;4118:12;4087:45;4178:6;4173:3;4166:4;4158:6;4154:17;4141:44;4233:1;4226:4;4217:6;4209;4205:19;4201:30;4194:41;;;;3610:631;;;;;:::o;4246:220::-;4288:5;4341:3;4334:4;4326:6;4322:17;4318:27;4308:55;;4359:1;4356;4349:12;4308:55;4381:79;4456:3;4447:6;4434:20;4427:4;4419:6;4415:17;4381:79;:::i;4471:388::-;4548:6;4556;4609:2;4597:9;4588:7;4584:23;4580:32;4577:52;;;4625:1;4622;4615:12;4577:52;4661:9;4648:23;4638:33;;4722:2;4711:9;4707:18;4694:32;4749:18;4741:6;4738:30;4735:50;;;4781:1;4778;4771:12;4735:50;4804:49;4845:7;4836:6;4825:9;4821:22;4804:49;:::i;:::-;4794:59;;;4471:388;;;;;:::o;4864:450::-;4933:6;4986:2;4974:9;4965:7;4961:23;4957:32;4954:52;;;5002:1;4999;4992:12;4954:52;5042:9;5029:23;5075:18;5067:6;5064:30;5061:50;;;5107:1;5104;5097:12;5061:50;5130:22;;5183:4;5175:13;;5171:27;-1:-1:-1;5161:55:35;;5212:1;5209;5202:12;5161:55;5235:73;5300:7;5295:2;5282:16;5277:2;5273;5269:11;5235:73;:::i;5319:247::-;5378:6;5431:2;5419:9;5410:7;5406:23;5402:32;5399:52;;;5447:1;5444;5437:12;5399:52;5486:9;5473:23;5505:31;5530:5;5505:31;:::i;5753:860::-;5863:6;5871;5879;5932:2;5920:9;5911:7;5907:23;5903:32;5900:52;;;5948:1;5945;5938:12;5900:52;5988:9;5975:23;6017:18;6058:2;6050:6;6047:14;6044:34;;;6074:1;6071;6064:12;6044:34;6097:22;;;;6153:3;6135:16;;;6131:26;6128:46;;;6170:1;6167;6160:12;6128:46;6193:2;;-1:-1:-1;6248:2:35;6233:18;;6220:32;;6264:16;;;6261:36;;;6293:1;6290;6283:12;6261:36;6331:8;6320:9;6316:24;6306:34;;6378:7;6371:4;6367:2;6363:13;6359:27;6349:55;;6400:1;6397;6390:12;6349:55;6440:2;6427:16;6466:2;6458:6;6455:14;6452:34;;;6482:1;6479;6472:12;6452:34;6527:7;6522:2;6513:6;6509:2;6505:15;6501:24;6498:37;6495:57;;;6548:1;6545;6538:12;6495:57;6579:2;6575;6571:11;6561:21;;6601:6;6591:16;;;;;5753:860;;;;;:::o;6618:118::-;6704:5;6697:13;6690:21;6683:5;6680:32;6670:60;;6726:1;6723;6716:12;6741:241;6797:6;6850:2;6838:9;6829:7;6825:23;6821:32;6818:52;;;6866:1;6863;6856:12;6818:52;6905:9;6892:23;6924:28;6946:5;6924:28;:::i;7172:188::-;7240:20;;-1:-1:-1;;;;;7289:46:35;;7279:57;;7269:85;;7350:1;7347;7340:12;7269:85;7172:188;;;:::o;7365:260::-;7433:6;7441;7494:2;7482:9;7473:7;7469:23;7465:32;7462:52;;;7510:1;7507;7500:12;7462:52;7533:29;7552:9;7533:29;:::i;:::-;7523:39;;7581:38;7615:2;7604:9;7600:18;7581:38;:::i;:::-;7571:48;;7365:260;;;;;:::o;7630:382::-;7695:6;7703;7756:2;7744:9;7735:7;7731:23;7727:32;7724:52;;;7772:1;7769;7762:12;7724:52;7811:9;7798:23;7830:31;7855:5;7830:31;:::i;:::-;7880:5;-1:-1:-1;7937:2:35;7922:18;;7909:32;7950:30;7909:32;7950:30;:::i;:::-;7999:7;7989:17;;;7630:382;;;;;:::o;8017:665::-;8112:6;8120;8128;8136;8189:3;8177:9;8168:7;8164:23;8160:33;8157:53;;;8206:1;8203;8196:12;8157:53;8245:9;8232:23;8264:31;8289:5;8264:31;:::i;:::-;8314:5;-1:-1:-1;8371:2:35;8356:18;;8343:32;8384:33;8343:32;8384:33;:::i;:::-;8436:7;-1:-1:-1;8490:2:35;8475:18;;8462:32;;-1:-1:-1;8545:2:35;8530:18;;8517:32;8572:18;8561:30;;8558:50;;;8604:1;8601;8594:12;8558:50;8627:49;8668:7;8659:6;8648:9;8644:22;8627:49;:::i;:::-;8617:59;;;8017:665;;;;;;;:::o;8687:388::-;8755:6;8763;8816:2;8804:9;8795:7;8791:23;8787:32;8784:52;;;8832:1;8829;8822:12;8784:52;8871:9;8858:23;8890:31;8915:5;8890:31;:::i;:::-;8940:5;-1:-1:-1;8997:2:35;8982:18;;8969:32;9010:33;8969:32;9010:33;:::i;9080:1110::-;9211:6;9219;9227;9235;9243;9251;9259;9312:3;9300:9;9291:7;9287:23;9283:33;9280:53;;;9329:1;9326;9319:12;9280:53;9368:9;9355:23;9387:31;9412:5;9387:31;:::i;:::-;9437:5;-1:-1:-1;9494:2:35;9479:18;;9466:32;9507:33;9466:32;9507:33;:::i;:::-;9559:7;-1:-1:-1;9617:2:35;9602:18;;9589:32;9640:18;9670:14;;;9667:34;;;9697:1;9694;9687:12;9667:34;9735:6;9724:9;9720:22;9710:32;;9780:7;9773:4;9769:2;9765:13;9761:27;9751:55;;9802:1;9799;9792:12;9751:55;9842:2;9829:16;9868:2;9860:6;9857:14;9854:34;;;9884:1;9881;9874:12;9854:34;9937:7;9932:2;9922:6;9919:1;9915:14;9911:2;9907:23;9903:32;9900:45;9897:65;;;9958:1;9955;9948:12;9897:65;9989:2;9985;9981:11;9971:21;;10011:6;10001:16;;;;;10036:38;10070:2;10059:9;10055:18;10036:38;:::i;:::-;10026:48;;10093:39;10127:3;10116:9;10112:19;10093:39;:::i;:::-;10083:49;;10179:3;10168:9;10164:19;10151:33;10141:43;;9080:1110;;;;;;;;;;:::o;10377:380::-;10456:1;10452:12;;;;10499;;;10520:61;;10574:4;10566:6;10562:17;10552:27;;10520:61;10627:2;10619:6;10616:14;10596:18;10593:38;10590:161;;10673:10;10668:3;10664:20;10661:1;10654:31;10708:4;10705:1;10698:15;10736:4;10733:1;10726:15;10590:161;;10377:380;;;:::o;11594:409::-;11796:2;11778:21;;;11835:2;11815:18;;;11808:30;11874:34;11869:2;11854:18;;11847:62;-1:-1:-1;;;11940:2:35;11925:18;;11918:43;11993:3;11978:19;;11594:409::o;12008:127::-;12069:10;12064:3;12060:20;12057:1;12050:31;12100:4;12097:1;12090:15;12124:4;12121:1;12114:15;12140:168;12213:9;;;12244;;12261:15;;;12255:22;;12241:37;12231:71;;12282:18;;:::i;12445:217::-;12485:1;12511;12501:132;;12555:10;12550:3;12546:20;12543:1;12536:31;12590:4;12587:1;12580:15;12618:4;12615:1;12608:15;12501:132;-1:-1:-1;12647:9:35;;12445:217::o;12793:545::-;12895:2;12890:3;12887:11;12884:448;;;12931:1;12956:5;12952:2;12945:17;13001:4;12997:2;12987:19;13071:2;13059:10;13055:19;13052:1;13048:27;13042:4;13038:38;13107:4;13095:10;13092:20;13089:47;;;-1:-1:-1;13130:4:35;13089:47;13185:2;13180:3;13176:12;13173:1;13169:20;13163:4;13159:31;13149:41;;13240:82;13258:2;13251:5;13248:13;13240:82;;;13303:17;;;13284:1;13273:13;13240:82;;13514:1352;13640:3;13634:10;13667:18;13659:6;13656:30;13653:56;;;13689:18;;:::i;:::-;13718:97;13808:6;13768:38;13800:4;13794:11;13768:38;:::i;:::-;13762:4;13718:97;:::i;:::-;13870:4;;13934:2;13923:14;;13951:1;13946:663;;;;14653:1;14670:6;14667:89;;;-1:-1:-1;14722:19:35;;;14716:26;14667:89;-1:-1:-1;;13471:1:35;13467:11;;;13463:24;13459:29;13449:40;13495:1;13491:11;;;13446:57;14769:81;;13916:944;;13946:663;12740:1;12733:14;;;12777:4;12764:18;;-1:-1:-1;;13982:20:35;;;14100:236;14114:7;14111:1;14108:14;14100:236;;;14203:19;;;14197:26;14182:42;;14295:27;;;;14263:1;14251:14;;;;14130:19;;14100:236;;;14104:3;14364:6;14355:7;14352:19;14349:201;;;14425:19;;;14419:26;-1:-1:-1;;14508:1:35;14504:14;;;14520:3;14500:24;14496:37;14492:42;14477:58;14462:74;;14349:201;-1:-1:-1;;;;;14596:1:35;14580:14;;;14576:22;14563:36;;-1:-1:-1;13514:1352:35:o;14871:184::-;14941:6;14994:2;14982:9;14973:7;14969:23;14965:32;14962:52;;;15010:1;15007;15000:12;14962:52;-1:-1:-1;15033:16:35;;14871:184;-1:-1:-1;14871:184:35:o;16455:251::-;16525:6;16578:2;16566:9;16557:7;16553:23;16549:32;16546:52;;;16594:1;16591;16584:12;16546:52;16626:9;16620:16;16645:31;16670:5;16645:31;:::i;17091:186::-;17150:6;17203:2;17191:9;17182:7;17178:23;17174:32;17171:52;;;17219:1;17216;17209:12;17171:52;17242:29;17261:9;17242:29;:::i;17282:545::-;17375:4;17381:6;17441:11;17428:25;17535:2;17531:7;17520:8;17504:14;17500:29;17496:43;17476:18;17472:68;17462:96;;17554:1;17551;17544:12;17462:96;17581:33;;17633:20;;;-1:-1:-1;17676:18:35;17665:30;;17662:50;;;17708:1;17705;17698:12;17662:50;17741:4;17729:17;;-1:-1:-1;17792:1:35;17788:14;;;17772;17768:35;17758:46;;17755:66;;;17817:1;17814;17807:12;17832:127;17893:10;17888:3;17884:20;17881:1;17874:31;17924:4;17921:1;17914:15;17948:4;17945:1;17938:15;17964:135;18003:3;18024:17;;;18021:43;;18044:18;;:::i;:::-;-1:-1:-1;18091:1:35;18080:13;;17964:135::o;18104:245::-;18171:6;18224:2;18212:9;18203:7;18199:23;18195:32;18192:52;;;18240:1;18237;18230:12;18192:52;18272:9;18266:16;18291:28;18313:5;18291:28;:::i;18663:496::-;18842:3;18880:6;18874:13;18896:66;18955:6;18950:3;18943:4;18935:6;18931:17;18896:66;:::i;:::-;19025:13;;18984:16;;;;19047:70;19025:13;18984:16;19094:4;19082:17;;19047:70;:::i;:::-;19133:20;;18663:496;-1:-1:-1;;;;18663:496:35:o;19571:892::-;-1:-1:-1;;19970:2:35;19966:15;;;19962:24;;19950:37;;20021:15;;;20017:24;20012:2;20003:12;;19996:46;-1:-1:-1;;;;;;20054:31:35;;20051:51;;;20098:1;20095;20088:12;20051:51;20132:6;20129:1;20125:14;20183:6;20175;20170:2;20165:3;20161:12;20148:42;-1:-1:-1;;20320:3:35;20316:16;;;20312:25;;20209:16;;;;20307:2;20299:11;;20292:46;;;;20371:16;;;;20367:25;20362:2;20354:11;;20347:46;20417:2;20409:11;;20402:27;20453:3;20445:12;;;-1:-1:-1;;;;;19571:892:35:o;20468:401::-;20670:2;20652:21;;;20709:2;20689:18;;;20682:30;20748:34;20743:2;20728:18;;20721:62;-1:-1:-1;;;20814:2:35;20799:18;;20792:35;20859:3;20844:19;;20468:401::o;23020:414::-;23222:2;23204:21;;;23261:2;23241:18;;;23234:30;23300:34;23295:2;23280:18;;23273:62;-1:-1:-1;;;23366:2:35;23351:18;;23344:48;23424:3;23409:19;;23020:414::o;23439:125::-;23504:9;;;23525:10;;;23522:36;;;23538:18;;:::i;23569:127::-;23630:10;23625:3;23621:20;23618:1;23611:31;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;24817:489;-1:-1:-1;;;;;25086:15:35;;;25068:34;;25138:15;;25133:2;25118:18;;25111:43;25185:2;25170:18;;25163:34;;;25233:3;25228:2;25213:18;;25206:31;;;25011:4;;25254:46;;25280:19;;25272:6;25254:46;:::i;:::-;25246:54;24817:489;-1:-1:-1;;;;;;24817:489:35:o;25311:249::-;25380:6;25433:2;25421:9;25412:7;25408:23;25404:32;25401:52;;;25449:1;25446;25439:12;25401:52;25481:9;25475:16;25500:30;25524:5;25500:30;:::i

    Swarm Source

    ipfs://6f995f37c386cb60a032c1d74536025c3623c2880613c1f25aaa851599fb8139
    [ 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.