ETH Price: $3,365.49 (-1.50%)
Gas: 8 Gwei

Token

Run Ed. (RUNED)
 

Overview

Max Total Supply

1,000 RUNED

Holders

601

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
warpsound.eth
Balance
1 RUNED
0x96A2D0a04e6dBAb7e0Ba7c91fC74D7901C7EFD23
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RunEd

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-28
*/

// 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;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\security\ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: ..\..\..\..\node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol


// 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);
}

// File: @openzeppelin\contracts\token\ERC721\IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @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);

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

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\token\ERC721\IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}



// File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin\contracts\utils\Address.sol


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin\contracts\utils\Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

// File: @openzeppelin\contracts\utils\introspection\ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: contracts\ERC721A.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

// File: contracts\RunEd.sol


pragma solidity ^0.8.0;




////////////////////////////////////////////////////////////////////////////////////////////
//                                                                                        //
//                                                                                        //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.,...,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,..................*@@@@@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@&,,,,,,,,,,,......*.,...................@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@,,,,,,,,,,,,....,@@@@@@@&@@&@..................@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@,,,,,,,,,,,,.../@@%@&@@@@@@@@@&@@@&.#................@@@@@@@@@@@@@    //
//    @@@@@@@@@@@,,,,,,,,,,,.,.&&@@@%@@@@@@@@&&@@&@@@@@@@*..................@@@@@@@@@@    //
//    @@@@@@@@@,,,,,,,,,,,,,...@@@@@%@@@@@@@@@@@@@@@@@@@@@%@..................@@@@@@@@    //
//    @@@@@@@,,,,,,,,,,,,.....@@@@@@@@@@@@@@@@@@@@@@@@@@(*@@....................@@@@@@    //
//    @@@@@&,,,,,,,,,..........@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(....................@@@@@    //
//    @@@@,,,,,,,,,,,,........*@%@@@@@@@@@@@@@@@@@@@@@@@@@@% ...................../@@@    //
//    @@@,,,,,,,,,,,,............@@@@@@@@@@@@@@@@@@@@@@@@@#........................,@@    //
//    @@*,,,,,,,,,,.,............@@*.@@@@@@@@@@@@@@@@@@,/...........................#@    //
//    @&,,,,,,,,,,,,,,...............&@@@@@@@@@@@@@@@&##.......................,,,.,,@    //
//    @***,,,,,,,,,,,,,,,............,#@@@@@@@@@@@@@@...................,,,,,,,,,,,,,,    //
//    @****,,,,,,,,,,,,,,,,,,,.........#@&@@@@@@@%&(................,,,,,,,,,,,,,,,,,,    //
//    ********,,,,,,,,,,,,,,,,,,,,,,,,.@@@@@@@@@%@@%.........,,,,,,,,,,,,,,,,,,,,,,,,,    //
//    **********,,,,,,,,,,,,,,,,,,,,,,.......  ..       ..,,,,,,,,,,,,,,,,,,,,,,,,,,,,    //
//    *************,*,,,,,,,,,,,,.    .                        ,,,,,,,,,,,,,,,,,,,,,,,    //
//    @****************,,,,,       ..... .   .                     ,,,,,,,*,,,,,****,*    //
//    @*****************,,,.   .,.,,...,,.... . .                   ******************    //
//    @@/***************,,.. .,*.,.....,. . .....  ..          ..    ****************@    //
//    @@///*************..... .,,.,,,.   .   .  . .      ...   , .    **************#@    //
//    @@@//////********.,,.,./.(,,,,,........... . .   ....  ,....     .***********/@@    //
//    @@@@//////*/***.*,,,**,..,#.,.. ....... . .    .  ,,.. *,..        *********@@@@    //
//    @@@@@@////////..,..,,,,,#......,...  .    .  ..  .,,.. ,....    .**********@@@@@    //
//    @@@@@@@////////*...,..,,,.,..........      .    ..,,.. ,   ,&@@@@/*******/@@@@@@    //
//    @@@@@@@@@///////@@@@%..,/,........... . ....  .. .,.,..@@@@@@@@%&&/////*@@@@@@@@    //
//    @@@@@@@@@@@////%@@@@@@@@@*............ .. . .  . .,,... @@@@@@@@@&%///@@@@@@@@@@    //
//    @@@@@@@@@@@@@@/@@@@@@@@@@/......... ... .....     ,*..../@@@&@@@@&&@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@....  . . . ...... ..... ..,..../@@@@@&@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@(.......   ... ......       ..,..//@@@@@@@@@@@@@@@@@@@@@    //
//    @@@@@@@@@@@@@@@@@@@@@@@@@@/....  ..  . ...... .     ..%@@@@@@@@@@@@@@@@@@@@@@@@@    //
//                                                                                        //
//                                                                                        //
////////////////////////////////////////////////////////////////////////////////////////////

contract RunEd is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;

  struct SaleConfig {
    uint32 publicSaleStartTime;
    uint64 mintlistPrice;
    uint64 publicPrice;
    uint32 publicSaleKey;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_
  ) ERC721A("Run Ed.", "RUNED", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
    require(
      amountForDevs_ <= collectionSize_,
      "larger collection size needed"
    );
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function allowlistMint(uint256 quantity) external payable callerIsUser {
    uint256 price = uint256(saleConfig.mintlistPrice);
    require(price != 0, "allowlist sale has not begun yet");
    require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(allowlist[msg.sender] >= quantity, "minting quantity exceeded max per wallet");
    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,"can not mint this many");
    allowlist[msg.sender]-= quantity;
    _safeMint(msg.sender, quantity);
    refundIfOver(price * quantity);
  }

  function publicSaleMint(uint256 quantity, uint256 callerPublicSaleKey)
    external
    payable
    callerIsUser
  {
    SaleConfig memory config = saleConfig;
    uint256 publicSaleKey = uint256(config.publicSaleKey);
    uint256 publicPrice = uint256(config.publicPrice);
    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
    require(
      publicSaleKey == callerPublicSaleKey,
      "called with incorrect public sale key"
    );

    require(
      isPublicSaleOn(publicPrice, publicSaleKey, publicSaleStartTime),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicPriceWei,
    uint256 publicSaleKey,
    uint256 publicSaleStartTime
  ) public view returns (bool) {
    return
      publicPriceWei != 0 &&
      publicSaleKey != 0 &&
      block.timestamp >= publicSaleStartTime;
  }
  
  function setupSaleInfo(
    uint64 mintlistPriceWei,
    uint64 publicPriceWei,
    uint32 publicSaleStartTime
  ) external onlyOwner {
    saleConfig = SaleConfig(
      publicSaleStartTime,
      mintlistPriceWei,
      publicPriceWei,
      saleConfig.publicSaleKey
    );
  }

  function setPublicSaleKey(uint32 key) external onlyOwner {
    saleConfig.publicSaleKey = key;
  }

  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleKey","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"key","type":"uint32"}],"name":"setPublicSaleKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintlistPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b5060405162003748380380620037488339810160408190526200003f9162000303565b60405180604001604052806007815260200166293ab71022b21760c91b81525060405180604001604052806005815260200164149553915160da1b815250848462000099620000936200020960201b60201c565b6200020d565b60008111620001065760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001685760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fd565b83516200017d9060029060208701906200025d565b508251620001939060039060208601906200025d565b5060a0919091526080525050600160095560c083905260e081905281811115620002005760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e65656465640000006044820152606401620000fd565b5050506200036f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200026b9062000332565b90600052602060002090601f0160209004810192826200028f5760008555620002da565b82601f10620002aa57805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002da578251825591602001919060010190620002bd565b50620002e8929150620002ec565b5090565b5b80821115620002e85760008155600101620002ed565b6000806000606084860312156200031957600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200034757607f821691505b602082108114156200036957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051613352620003f66000396000818161074a0152610ca101526000818161044b0152818161165e01526119cd015260008181610d3701528181610dc501528181610dfd0152818161229b015281816122c50152612892015260008181611576015281816119550152818161208601526120b801526133526000f3fe60806040526004361061020f5760003560e01c80639002808311610118578063c180526a116100a0578063dc33e6811161006f578063dc33e6811461068f578063e985e9c5146106af578063ea9a576c146106f8578063f2fde38b14610718578063fbe1aa511461073857600080fd5b8063c180526a14610633578063c87b56dd14610646578063cb91d8b314610666578063d7224ba01461067957600080fd5b8063a22cb465116100e7578063a22cb46514610591578063a7cd52cb146105b1578063ac446002146105de578063b05863d5146105f3578063b88d4fde1461061357600080fd5b8063900280831461048b57806390aa0b0f146104ab5780639231ab2a1461052e57806395d89b411461057c57600080fd5b8063422030ba1161019b5780636352211e1161016a5780636352211e146103e457806370a0823114610404578063715018a6146104245780638bc35c2f146104395780638da5cb5b1461046d57600080fd5b8063422030ba1461036457806342842e0e146103845780634f6ccce7146103a457806355f804b3146103c457600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632f745c5914610324578063375a069a1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612ba2565b61076c565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107d9565b6040516102409190612c17565b34801561027757600080fd5b5061028b610286366004612c2a565b61086b565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612c5f565b6108fb565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612c89565b610a13565b34801561031057600080fd5b506102c361031f366004612c2a565b610a1e565b34801561033057600080fd5b506102d661033f366004612c5f565b610acf565b34801561035057600080fd5b506102c361035f366004612c2a565b610c57565b34801561037057600080fd5b5061023461037f366004612cc5565b610e33565b34801561039057600080fd5b506102c361039f366004612c89565b610e57565b3480156103b057600080fd5b506102d66103bf366004612c2a565b610e72565b3480156103d057600080fd5b506102c36103df366004612cf1565b610edb565b3480156103f057600080fd5b5061028b6103ff366004612c2a565b610f2f565b34801561041057600080fd5b506102d661041f366004612d63565b610f41565b34801561043057600080fd5b506102c3610fd2565b34801561044557600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561047957600080fd5b506000546001600160a01b031661028b565b34801561049757600080fd5b506102c36104a6366004612d92565b611026565b3480156104b757600080fd5b50600a546104f29063ffffffff8082169167ffffffffffffffff6401000000008204811692600160601b830490911691600160a01b90041684565b604051610240949392919063ffffffff948516815267ffffffffffffffff93841660208201529190921660408201529116606082015260800190565b34801561053a57600080fd5b5061054e610549366004612c2a565b611094565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561058857600080fd5b5061025e6110b1565b34801561059d57600080fd5b506102c36105ac366004612dad565b6110c0565b3480156105bd57600080fd5b506102d66105cc366004612d63565b600b6020526000908152604090205481565b3480156105ea57600080fd5b506102c3611185565b3480156105ff57600080fd5b506102c361060e366004612ebf565b6112bd565b34801561061f57600080fd5b506102c361062e366004612f7f565b6113e2565b6102c3610641366004612c2a565b611467565b34801561065257600080fd5b5061025e610661366004612c2a565b611724565b6102c361067436600461303f565b6117ff565b34801561068557600080fd5b506102d660085481565b34801561069b57600080fd5b506102d66106aa366004612d63565b611a6d565b3480156106bb57600080fd5b506102346106ca366004613061565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070457600080fd5b506102c36107133660046130ac565b611a78565b34801561072457600080fd5b506102c3610733366004612d63565b611b64565b34801561074457600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061079d57506001600160e01b03198216635b5e139f60e01b145b806107b857506001600160e01b0319821663780e9d6360e01b145b806107d357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e8906130ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610814906130ef565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b6000610878826001541190565b6108df5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090682610f2f565b9050806001600160a01b0316836001600160a01b031614156109755760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108d6565b336001600160a01b0382161480610991575061099181336106ca565b610a035760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108d6565b610a0e838383611c1d565b505050565b610a0e838383611c86565b6000546001600160a01b03163314610a665760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b60026009541415610ab95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d6565b6002600955610ac781612015565b506001600955565b6000610ada83610f41565b8210610b335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108d6565b6000610b3e60015490565b905060008060005b83811015610be8576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b9957805192505b876001600160a01b0316836001600160a01b03161415610bd55786841415610bc7575093506107d392505050565b83610bd181613140565b9450505b5080610be081613140565b915050610b46565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016108d6565b6000546001600160a01b03163314610c9f5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b7f000000000000000000000000000000000000000000000000000000000000000081610cca60015490565b610cd4919061315b565b1115610d325760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016108d6565b610d5c7f000000000000000000000000000000000000000000000000000000000000000082613189565b15610dbe5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108d6565b6000610dea7f00000000000000000000000000000000000000000000000000000000000000008361319d565b905060005b81811015610a0e57610e21337f00000000000000000000000000000000000000000000000000000000000000006121ff565b80610e2b81613140565b915050610def565b60008315801590610e4357508215155b8015610e4f5750814210155b949350505050565b610a0e838383604051806020016040528060008152506113e2565b6000610e7d60015490565b8210610ed75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108d6565b5090565b6000546001600160a01b03163314610f235760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b610a0e600c8383612afc565b6000610f3a82612219565b5192915050565b60006001600160a01b038216610fad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108d6565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461101a5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b61102460006123d1565b565b6000546001600160a01b0316331461106e5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b60408051808201909152600080825260208201526107d382612219565b6060600380546107e8906130ef565b6001600160a01b0382163314156111195760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108d6565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111cd5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b600260095414156112205760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d6565b6002600955604051600090339047908381818185875af1925050503d8060008114611267576040519150601f19603f3d011682016040523d82523d6000602084013e61126c565b606091505b5050905080610ac75760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016108d6565b6000546001600160a01b031633146113055760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b80518251146113675760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108d6565b60005b8251811015610a0e57818181518110611385576113856131b1565b6020026020010151600b60008584815181106113a3576113a36131b1565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113da90613140565b91505061136a565b6113ed848484611c86565b6113f98484848461242e565b6114615760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016108d6565b50505050565b3233146114b65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108d6565b600a54640100000000900467ffffffffffffffff16806115185760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108d6565b336000908152600b60205260409020546115745760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108d6565b7f00000000000000000000000000000000000000000000000000000000000000008261159f60015490565b6115a9919061315b565b11156115ec5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108d6565b336000908152600b602052604090205482111561165c5760405162461bcd60e51b815260206004820152602860248201527f6d696e74696e67207175616e74697479206578636565646564206d61782070656044820152671c881dd85b1b195d60c21b60648201526084016108d6565b7f00000000000000000000000000000000000000000000000000000000000000008261168733611a6d565b611691919061315b565b11156116df5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016108d6565b336000908152600b6020526040812080548492906116fe9084906131c7565b9091555061170e905033836121ff565b61172061171b83836131de565b612578565b5050565b6060611731826001541190565b6117a35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108d6565b60006117ad612606565b905060008151116117cd57604051806020016040528060008152506117f8565b806117d784612615565b6040516020016117e89291906131fd565b6040516020818303038152906040525b9392505050565b32331461184e5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108d6565b60408051608081018252600a5463ffffffff80821680845267ffffffffffffffff640100000000840481166020860152600160601b840416948401859052600160a01b90920416606083018190529192908483146118fc5760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b60648201526084016108d6565b611907828483610e33565b6119535760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108d6565b7f00000000000000000000000000000000000000000000000000000000000000008661197e60015490565b611988919061315b565b11156119cb5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108d6565b7f0000000000000000000000000000000000000000000000000000000000000000866119f633611a6d565b611a00919061315b565b1115611a4e5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016108d6565b611a5833876121ff565b611a6561171b87846131de565b505050505050565b60006107d38261272b565b6000546001600160a01b03163314611ac05760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b6040805160808101825263ffffffff92831680825267ffffffffffffffff9586166020830181905294909516918101829052600a8054600160a01b80820490951660609093018390526bffffffffffffffffffffffff1916909517640100000000909402939093177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b90910263ffffffff60a01b1916179102179055565b6000546001600160a01b03163314611bac5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b6001600160a01b038116611c115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d6565b611c1a816123d1565b50565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c9182612219565b80519091506000906001600160a01b0316336001600160a01b03161480611cc8575033611cbd8461086b565b6001600160a01b0316145b80611cda57508151611cda90336106ca565b905080611d4f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016108d6565b846001600160a01b031682600001516001600160a01b031614611dc35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108d6565b6001600160a01b038416611e275760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108d6565b611e376000848460000151611c1d565b6001600160a01b0385166000908152600560205260408120805460019290611e699084906001600160801b0316613239565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611eb591859116613261565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f3d84600161315b565b6000818152600460205260409020549091506001600160a01b0316611fcf57611f67816001541190565b15611fcf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a65565b600854816120655760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108d6565b60006001612073848461315b565b61207d91906131c7565b90506120aa60017f00000000000000000000000000000000000000000000000000000000000000006131c7565b8111156120df576120dc60017f00000000000000000000000000000000000000000000000000000000000000006131c7565b90505b6120ea816001541190565b6121455760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108d6565b815b8181116121eb576000818152600460205260409020546001600160a01b03166121d957600061217582612219565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806121e381613140565b915050612147565b506121f781600161315b565b600855505050565b6117208282604051806020016040528060008152506127d5565b6040805180820190915260008082526020820152612238826001541190565b6122975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108d6565b60007f000000000000000000000000000000000000000000000000000000000000000083106122f8576122ea7f0000000000000000000000000000000000000000000000000000000000000000846131c7565b6122f590600161315b565b90505b825b818110612362576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561234f57949350505050565b508061235a8161328c565b9150506122fa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e000000000000000000000000000000000060648201526084016108d6565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561256d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124729033908990889088906004016132a3565b6020604051808303816000875af19250505080156124ad575060408051601f3d908101601f191682019092526124aa918101906132df565b60015b612553573d8080156124db576040519150601f19603f3d011682016040523d82523d6000602084013e6124e0565b606091505b50805161254b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016108d6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e4f565b506001949350505050565b803410156125c85760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e0000000000000000000060448201526064016108d6565b80341115611c1a57336108fc6125de83346131c7565b6040518115909202916000818181858888f19350505050158015611720573d6000803e3d6000fd5b6060600c80546107e8906130ef565b6060816126395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612663578061264d81613140565b915061265c9050600a8361319d565b915061263d565b60008167ffffffffffffffff81111561267e5761267e612de9565b6040519080825280601f01601f1916602001820160405280156126a8576020820181803683370190505b5090505b8415610e4f576126bd6001836131c7565b91506126ca600a86613189565b6126d590603061315b565b60f81b8183815181106126ea576126ea6131b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612724600a8661319d565b94506126ac565b60006001600160a01b0382166127a95760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f206164647265737300000000000000000000000000000060648201526084016108d6565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166128385760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108d6565b612843816001541190565b156128905760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108d6565b7f000000000000000000000000000000000000000000000000000000000000000083111561290b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108d6565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612967908790613261565b6001600160801b031681526020018583602001516129859190613261565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612af15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a69600088848861242e565b612ad15760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016108d6565b81612adb81613140565b9250508080612ae990613140565b915050612a1c565b506001819055611a65565b828054612b08906130ef565b90600052602060002090601f016020900481019282612b2a5760008555612b70565b82601f10612b435782800160ff19823516178555612b70565b82800160010185558215612b70579182015b82811115612b70578235825591602001919060010190612b55565b50610ed79291505b80821115610ed75760008155600101612b78565b6001600160e01b031981168114611c1a57600080fd5b600060208284031215612bb457600080fd5b81356117f881612b8c565b60005b83811015612bda578181015183820152602001612bc2565b838111156114615750506000910152565b60008151808452612c03816020860160208601612bbf565b601f01601f19169290920160200192915050565b6020815260006117f86020830184612beb565b600060208284031215612c3c57600080fd5b5035919050565b80356001600160a01b0381168114612c5a57600080fd5b919050565b60008060408385031215612c7257600080fd5b612c7b83612c43565b946020939093013593505050565b600080600060608486031215612c9e57600080fd5b612ca784612c43565b9250612cb560208501612c43565b9150604084013590509250925092565b600080600060608486031215612cda57600080fd5b505081359360208301359350604090920135919050565b60008060208385031215612d0457600080fd5b823567ffffffffffffffff80821115612d1c57600080fd5b818501915085601f830112612d3057600080fd5b813581811115612d3f57600080fd5b866020828501011115612d5157600080fd5b60209290920196919550909350505050565b600060208284031215612d7557600080fd5b6117f882612c43565b803563ffffffff81168114612c5a57600080fd5b600060208284031215612da457600080fd5b6117f882612d7e565b60008060408385031215612dc057600080fd5b612dc983612c43565b915060208301358015158114612dde57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e2857612e28612de9565b604052919050565b600067ffffffffffffffff821115612e4a57612e4a612de9565b5060051b60200190565b600082601f830112612e6557600080fd5b81356020612e7a612e7583612e30565b612dff565b82815260059290921b84018101918181019086841115612e9957600080fd5b8286015b84811015612eb45780358352918301918301612e9d565b509695505050505050565b60008060408385031215612ed257600080fd5b823567ffffffffffffffff80821115612eea57600080fd5b818501915085601f830112612efe57600080fd5b81356020612f0e612e7583612e30565b82815260059290921b84018101918181019089841115612f2d57600080fd5b948201945b83861015612f5257612f4386612c43565b82529482019490820190612f32565b96505086013592505080821115612f6857600080fd5b50612f7585828601612e54565b9150509250929050565b60008060008060808587031215612f9557600080fd5b612f9e85612c43565b93506020612fad818701612c43565b935060408601359250606086013567ffffffffffffffff80821115612fd157600080fd5b818801915088601f830112612fe557600080fd5b813581811115612ff757612ff7612de9565b613009601f8201601f19168501612dff565b9150808252898482850101111561301f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561305257600080fd5b50508035926020909101359150565b6000806040838503121561307457600080fd5b61307d83612c43565b915061308b60208401612c43565b90509250929050565b803567ffffffffffffffff81168114612c5a57600080fd5b6000806000606084860312156130c157600080fd5b6130ca84613094565b92506130d860208501613094565b91506130e660408501612d7e565b90509250925092565b600181811c9082168061310357607f821691505b6020821081141561312457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60006000198214156131545761315461312a565b5060010190565b6000821982111561316e5761316e61312a565b500190565b634e487b7160e01b600052601260045260246000fd5b60008261319857613198613173565b500690565b6000826131ac576131ac613173565b500490565b634e487b7160e01b600052603260045260246000fd5b6000828210156131d9576131d961312a565b500390565b60008160001904831182151516156131f8576131f861312a565b500290565b6000835161320f818460208801612bbf565b602f60f81b908301908152835161322d816001840160208801612bbf565b01600101949350505050565b60006001600160801b03838116908316818110156132595761325961312a565b039392505050565b60006001600160801b038083168185168083038211156132835761328361312a565b01949350505050565b60008161329b5761329b61312a565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132d56080830184612beb565b9695505050505050565b6000602082840312156132f157600080fd5b81516117f881612b8c56fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212208971d55ee713a11b2d384d03de09e37d47ee436cc2a056db0405fe07443407d864736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000ac

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80639002808311610118578063c180526a116100a0578063dc33e6811161006f578063dc33e6811461068f578063e985e9c5146106af578063ea9a576c146106f8578063f2fde38b14610718578063fbe1aa511461073857600080fd5b8063c180526a14610633578063c87b56dd14610646578063cb91d8b314610666578063d7224ba01461067957600080fd5b8063a22cb465116100e7578063a22cb46514610591578063a7cd52cb146105b1578063ac446002146105de578063b05863d5146105f3578063b88d4fde1461061357600080fd5b8063900280831461048b57806390aa0b0f146104ab5780639231ab2a1461052e57806395d89b411461057c57600080fd5b8063422030ba1161019b5780636352211e1161016a5780636352211e146103e457806370a0823114610404578063715018a6146104245780638bc35c2f146104395780638da5cb5b1461046d57600080fd5b8063422030ba1461036457806342842e0e146103845780634f6ccce7146103a457806355f804b3146103c457600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632f745c5914610324578063375a069a1461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612ba2565b61076c565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107d9565b6040516102409190612c17565b34801561027757600080fd5b5061028b610286366004612c2a565b61086b565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612c5f565b6108fb565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612c89565b610a13565b34801561031057600080fd5b506102c361031f366004612c2a565b610a1e565b34801561033057600080fd5b506102d661033f366004612c5f565b610acf565b34801561035057600080fd5b506102c361035f366004612c2a565b610c57565b34801561037057600080fd5b5061023461037f366004612cc5565b610e33565b34801561039057600080fd5b506102c361039f366004612c89565b610e57565b3480156103b057600080fd5b506102d66103bf366004612c2a565b610e72565b3480156103d057600080fd5b506102c36103df366004612cf1565b610edb565b3480156103f057600080fd5b5061028b6103ff366004612c2a565b610f2f565b34801561041057600080fd5b506102d661041f366004612d63565b610f41565b34801561043057600080fd5b506102c3610fd2565b34801561044557600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000281565b34801561047957600080fd5b506000546001600160a01b031661028b565b34801561049757600080fd5b506102c36104a6366004612d92565b611026565b3480156104b757600080fd5b50600a546104f29063ffffffff8082169167ffffffffffffffff6401000000008204811692600160601b830490911691600160a01b90041684565b604051610240949392919063ffffffff948516815267ffffffffffffffff93841660208201529190921660408201529116606082015260800190565b34801561053a57600080fd5b5061054e610549366004612c2a565b611094565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561058857600080fd5b5061025e6110b1565b34801561059d57600080fd5b506102c36105ac366004612dad565b6110c0565b3480156105bd57600080fd5b506102d66105cc366004612d63565b600b6020526000908152604090205481565b3480156105ea57600080fd5b506102c3611185565b3480156105ff57600080fd5b506102c361060e366004612ebf565b6112bd565b34801561061f57600080fd5b506102c361062e366004612f7f565b6113e2565b6102c3610641366004612c2a565b611467565b34801561065257600080fd5b5061025e610661366004612c2a565b611724565b6102c361067436600461303f565b6117ff565b34801561068557600080fd5b506102d660085481565b34801561069b57600080fd5b506102d66106aa366004612d63565b611a6d565b3480156106bb57600080fd5b506102346106ca366004613061565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070457600080fd5b506102c36107133660046130ac565b611a78565b34801561072457600080fd5b506102c3610733366004612d63565b611b64565b34801561074457600080fd5b506102d67f00000000000000000000000000000000000000000000000000000000000000ac81565b60006001600160e01b031982166380ac58cd60e01b148061079d57506001600160e01b03198216635b5e139f60e01b145b806107b857506001600160e01b0319821663780e9d6360e01b145b806107d357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e8906130ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610814906130ef565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b6000610878826001541190565b6108df5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090682610f2f565b9050806001600160a01b0316836001600160a01b031614156109755760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108d6565b336001600160a01b0382161480610991575061099181336106ca565b610a035760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108d6565b610a0e838383611c1d565b505050565b610a0e838383611c86565b6000546001600160a01b03163314610a665760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b60026009541415610ab95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d6565b6002600955610ac781612015565b506001600955565b6000610ada83610f41565b8210610b335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108d6565b6000610b3e60015490565b905060008060005b83811015610be8576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b9957805192505b876001600160a01b0316836001600160a01b03161415610bd55786841415610bc7575093506107d392505050565b83610bd181613140565b9450505b5080610be081613140565b915050610b46565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016108d6565b6000546001600160a01b03163314610c9f5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b7f00000000000000000000000000000000000000000000000000000000000000ac81610cca60015490565b610cd4919061315b565b1115610d325760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016108d6565b610d5c7f000000000000000000000000000000000000000000000000000000000000000282613189565b15610dbe5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108d6565b6000610dea7f00000000000000000000000000000000000000000000000000000000000000028361319d565b905060005b81811015610a0e57610e21337f00000000000000000000000000000000000000000000000000000000000000026121ff565b80610e2b81613140565b915050610def565b60008315801590610e4357508215155b8015610e4f5750814210155b949350505050565b610a0e838383604051806020016040528060008152506113e2565b6000610e7d60015490565b8210610ed75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108d6565b5090565b6000546001600160a01b03163314610f235760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b610a0e600c8383612afc565b6000610f3a82612219565b5192915050565b60006001600160a01b038216610fad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108d6565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461101a5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b61102460006123d1565b565b6000546001600160a01b0316331461106e5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b60408051808201909152600080825260208201526107d382612219565b6060600380546107e8906130ef565b6001600160a01b0382163314156111195760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108d6565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111cd5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b600260095414156112205760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d6565b6002600955604051600090339047908381818185875af1925050503d8060008114611267576040519150601f19603f3d011682016040523d82523d6000602084013e61126c565b606091505b5050905080610ac75760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016108d6565b6000546001600160a01b031633146113055760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b80518251146113675760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108d6565b60005b8251811015610a0e57818181518110611385576113856131b1565b6020026020010151600b60008584815181106113a3576113a36131b1565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113da90613140565b91505061136a565b6113ed848484611c86565b6113f98484848461242e565b6114615760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016108d6565b50505050565b3233146114b65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108d6565b600a54640100000000900467ffffffffffffffff16806115185760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108d6565b336000908152600b60205260409020546115745760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108d6565b7f00000000000000000000000000000000000000000000000000000000000013888261159f60015490565b6115a9919061315b565b11156115ec5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108d6565b336000908152600b602052604090205482111561165c5760405162461bcd60e51b815260206004820152602860248201527f6d696e74696e67207175616e74697479206578636565646564206d61782070656044820152671c881dd85b1b195d60c21b60648201526084016108d6565b7f00000000000000000000000000000000000000000000000000000000000000028261168733611a6d565b611691919061315b565b11156116df5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016108d6565b336000908152600b6020526040812080548492906116fe9084906131c7565b9091555061170e905033836121ff565b61172061171b83836131de565b612578565b5050565b6060611731826001541190565b6117a35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108d6565b60006117ad612606565b905060008151116117cd57604051806020016040528060008152506117f8565b806117d784612615565b6040516020016117e89291906131fd565b6040516020818303038152906040525b9392505050565b32331461184e5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108d6565b60408051608081018252600a5463ffffffff80821680845267ffffffffffffffff640100000000840481166020860152600160601b840416948401859052600160a01b90920416606083018190529192908483146118fc5760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b60648201526084016108d6565b611907828483610e33565b6119535760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108d6565b7f00000000000000000000000000000000000000000000000000000000000013888661197e60015490565b611988919061315b565b11156119cb5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016108d6565b7f0000000000000000000000000000000000000000000000000000000000000002866119f633611a6d565b611a00919061315b565b1115611a4e5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e790000000000000000000060448201526064016108d6565b611a5833876121ff565b611a6561171b87846131de565b505050505050565b60006107d38261272b565b6000546001600160a01b03163314611ac05760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b6040805160808101825263ffffffff92831680825267ffffffffffffffff9586166020830181905294909516918101829052600a8054600160a01b80820490951660609093018390526bffffffffffffffffffffffff1916909517640100000000909402939093177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff16600160601b90910263ffffffff60a01b1916179102179055565b6000546001600160a01b03163314611bac5760405162461bcd60e51b815260206004820181905260248201526000805160206132fd83398151915260448201526064016108d6565b6001600160a01b038116611c115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d6565b611c1a816123d1565b50565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c9182612219565b80519091506000906001600160a01b0316336001600160a01b03161480611cc8575033611cbd8461086b565b6001600160a01b0316145b80611cda57508151611cda90336106ca565b905080611d4f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016108d6565b846001600160a01b031682600001516001600160a01b031614611dc35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108d6565b6001600160a01b038416611e275760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108d6565b611e376000848460000151611c1d565b6001600160a01b0385166000908152600560205260408120805460019290611e699084906001600160801b0316613239565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611eb591859116613261565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f3d84600161315b565b6000818152600460205260409020549091506001600160a01b0316611fcf57611f67816001541190565b15611fcf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a65565b600854816120655760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108d6565b60006001612073848461315b565b61207d91906131c7565b90506120aa60017f00000000000000000000000000000000000000000000000000000000000013886131c7565b8111156120df576120dc60017f00000000000000000000000000000000000000000000000000000000000013886131c7565b90505b6120ea816001541190565b6121455760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108d6565b815b8181116121eb576000818152600460205260409020546001600160a01b03166121d957600061217582612219565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806121e381613140565b915050612147565b506121f781600161315b565b600855505050565b6117208282604051806020016040528060008152506127d5565b6040805180820190915260008082526020820152612238826001541190565b6122975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108d6565b60007f000000000000000000000000000000000000000000000000000000000000000283106122f8576122ea7f0000000000000000000000000000000000000000000000000000000000000002846131c7565b6122f590600161315b565b90505b825b818110612362576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561234f57949350505050565b508061235a8161328c565b9150506122fa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e000000000000000000000000000000000060648201526084016108d6565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561256d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124729033908990889088906004016132a3565b6020604051808303816000875af19250505080156124ad575060408051601f3d908101601f191682019092526124aa918101906132df565b60015b612553573d8080156124db576040519150601f19603f3d011682016040523d82523d6000602084013e6124e0565b606091505b50805161254b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016108d6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e4f565b506001949350505050565b803410156125c85760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e0000000000000000000060448201526064016108d6565b80341115611c1a57336108fc6125de83346131c7565b6040518115909202916000818181858888f19350505050158015611720573d6000803e3d6000fd5b6060600c80546107e8906130ef565b6060816126395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612663578061264d81613140565b915061265c9050600a8361319d565b915061263d565b60008167ffffffffffffffff81111561267e5761267e612de9565b6040519080825280601f01601f1916602001820160405280156126a8576020820181803683370190505b5090505b8415610e4f576126bd6001836131c7565b91506126ca600a86613189565b6126d590603061315b565b60f81b8183815181106126ea576126ea6131b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612724600a8661319d565b94506126ac565b60006001600160a01b0382166127a95760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f206164647265737300000000000000000000000000000060648201526084016108d6565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166128385760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108d6565b612843816001541190565b156128905760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108d6565b7f000000000000000000000000000000000000000000000000000000000000000283111561290b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108d6565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612967908790613261565b6001600160801b031681526020018583602001516129859190613261565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612af15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a69600088848861242e565b612ad15760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016108d6565b81612adb81613140565b9250508080612ae990613140565b915050612a1c565b506001819055611a65565b828054612b08906130ef565b90600052602060002090601f016020900481019282612b2a5760008555612b70565b82601f10612b435782800160ff19823516178555612b70565b82800160010185558215612b70579182015b82811115612b70578235825591602001919060010190612b55565b50610ed79291505b80821115610ed75760008155600101612b78565b6001600160e01b031981168114611c1a57600080fd5b600060208284031215612bb457600080fd5b81356117f881612b8c565b60005b83811015612bda578181015183820152602001612bc2565b838111156114615750506000910152565b60008151808452612c03816020860160208601612bbf565b601f01601f19169290920160200192915050565b6020815260006117f86020830184612beb565b600060208284031215612c3c57600080fd5b5035919050565b80356001600160a01b0381168114612c5a57600080fd5b919050565b60008060408385031215612c7257600080fd5b612c7b83612c43565b946020939093013593505050565b600080600060608486031215612c9e57600080fd5b612ca784612c43565b9250612cb560208501612c43565b9150604084013590509250925092565b600080600060608486031215612cda57600080fd5b505081359360208301359350604090920135919050565b60008060208385031215612d0457600080fd5b823567ffffffffffffffff80821115612d1c57600080fd5b818501915085601f830112612d3057600080fd5b813581811115612d3f57600080fd5b866020828501011115612d5157600080fd5b60209290920196919550909350505050565b600060208284031215612d7557600080fd5b6117f882612c43565b803563ffffffff81168114612c5a57600080fd5b600060208284031215612da457600080fd5b6117f882612d7e565b60008060408385031215612dc057600080fd5b612dc983612c43565b915060208301358015158114612dde57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612e2857612e28612de9565b604052919050565b600067ffffffffffffffff821115612e4a57612e4a612de9565b5060051b60200190565b600082601f830112612e6557600080fd5b81356020612e7a612e7583612e30565b612dff565b82815260059290921b84018101918181019086841115612e9957600080fd5b8286015b84811015612eb45780358352918301918301612e9d565b509695505050505050565b60008060408385031215612ed257600080fd5b823567ffffffffffffffff80821115612eea57600080fd5b818501915085601f830112612efe57600080fd5b81356020612f0e612e7583612e30565b82815260059290921b84018101918181019089841115612f2d57600080fd5b948201945b83861015612f5257612f4386612c43565b82529482019490820190612f32565b96505086013592505080821115612f6857600080fd5b50612f7585828601612e54565b9150509250929050565b60008060008060808587031215612f9557600080fd5b612f9e85612c43565b93506020612fad818701612c43565b935060408601359250606086013567ffffffffffffffff80821115612fd157600080fd5b818801915088601f830112612fe557600080fd5b813581811115612ff757612ff7612de9565b613009601f8201601f19168501612dff565b9150808252898482850101111561301f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561305257600080fd5b50508035926020909101359150565b6000806040838503121561307457600080fd5b61307d83612c43565b915061308b60208401612c43565b90509250929050565b803567ffffffffffffffff81168114612c5a57600080fd5b6000806000606084860312156130c157600080fd5b6130ca84613094565b92506130d860208501613094565b91506130e660408501612d7e565b90509250925092565b600181811c9082168061310357607f821691505b6020821081141561312457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60006000198214156131545761315461312a565b5060010190565b6000821982111561316e5761316e61312a565b500190565b634e487b7160e01b600052601260045260246000fd5b60008261319857613198613173565b500690565b6000826131ac576131ac613173565b500490565b634e487b7160e01b600052603260045260246000fd5b6000828210156131d9576131d961312a565b500390565b60008160001904831182151516156131f8576131f861312a565b500290565b6000835161320f818460208801612bbf565b602f60f81b908301908152835161322d816001840160208801612bbf565b01600101949350505050565b60006001600160801b03838116908316818110156132595761325961312a565b039392505050565b60006001600160801b038083168185168083038211156132835761328361312a565b01949350505050565b60008161329b5761329b61312a565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526132d56080830184612beb565b9695505050505050565b6000602082840312156132f157600080fd5b81516117f881612b8c56fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212208971d55ee713a11b2d384d03de09e37d47ee436cc2a056db0405fe07443407d864736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000ac

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 2
Arg [1] : collectionSize_ (uint256): 5000
Arg [2] : amountForDevs_ (uint256): 172

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000ac


Deployed Bytecode Sourcemap

45880:4987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29931:370;;;;;;;;;;-1:-1:-1;29931:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29931:370:0;;;;;;;;31657:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33186:204::-;;;;;;;;;;-1:-1:-1;33186:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:1;;;1674:74;;1662:2;1647:18;33186:204:0;1528:226:1;32749:379:0;;;;;;;;;;-1:-1:-1;32749:379:0;;;;;:::i;:::-;;:::i;:::-;;28492:94;;;;;;;;;;-1:-1:-1;28568:12:0;;28492:94;;;2365:25:1;;;2353:2;2338:18;28492:94:0;2219:177:1;34036:142:0;;;;;;;;;;-1:-1:-1;34036:142:0;;;;;:::i;:::-;;:::i;50480:118::-;;;;;;;;;;-1:-1:-1;50480:118:0;;;;;:::i;:::-;;:::i;29123:744::-;;;;;;;;;;-1:-1:-1;29123:744:0;;;;;:::i;:::-;;:::i;49568:442::-;;;;;;;;;;-1:-1:-1;49568:442:0;;;;;:::i;:::-;;:::i;48517:271::-;;;;;;;;;;-1:-1:-1;48517:271:0;;;;;:::i;:::-;;:::i;34241:157::-;;;;;;;;;;-1:-1:-1;34241:157:0;;;;;:::i;:::-;;:::i;28655:177::-;;;;;;;;;;-1:-1:-1;28655:177:0;;;;;:::i;:::-;;:::i;50187:100::-;;;;;;;;;;-1:-1:-1;50187:100:0;;;;;:::i;:::-;;:::i;31480:118::-;;;;;;;;;;-1:-1:-1;31480:118:0;;;;;:::i;:::-;;:::i;30357:211::-;;;;;;;;;;-1:-1:-1;30357:211:0;;;;;:::i;:::-;;:::i;2581:103::-;;;;;;;;;;;;;:::i;45937:48::-;;;;;;;;;;;;;;;1930:87;;;;;;;;;;-1:-1:-1;1976:7:0;2003:6;-1:-1:-1;;;;;2003:6:0;1930:87;;49092:100;;;;;;;;;;-1:-1:-1;49092:100:0;;;;;:::i;:::-;;:::i;46177:28::-;;;;;;;;;;-1:-1:-1;46177:28:0;;;;;;;;;;;;;;;;-1:-1:-1;;;46177:28:0;;;;;;-1:-1:-1;;;46177:28:0;;;;;;;;;;;;;;4433:10:1;4470:15;;;4452:34;;4505:18;4559:15;;;4554:2;4539:18;;4532:43;4611:15;;;;4606:2;4591:18;;4584:43;4663:15;;4658:2;4643:18;;4636:43;4410:3;4395:19;;4200:485;50717:147:0;;;;;;;;;;-1:-1:-1;50717:147:0;;;;;:::i;:::-;;:::i;:::-;;;;4920:13:1;;-1:-1:-1;;;;;4916:62:1;4898:81;;5039:4;5027:17;;;5021:24;5047:18;5017:49;4995:20;;;4988:79;;;;4871:18;50717:147:0;4690:383:1;31812:98:0;;;;;;;;;;;;;:::i;33454:274::-;;;;;;;;;;-1:-1:-1;33454:274:0;;;;;:::i;:::-;;:::i;46212:44::-;;;;;;;;;;-1:-1:-1;46212:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;50293:181;;;;;;;;;;;;;:::i;49198:339::-;;;;;;;;;;-1:-1:-1;49198:339:0;;;;;:::i;:::-;;:::i;34461:311::-;;;;;;;;;;-1:-1:-1;34461:311:0;;;;;:::i;:::-;;:::i;46742:661::-;;;;;;:::i;:::-;;:::i;31973:398::-;;;;;;;;;;-1:-1:-1;31973:398:0;;;;;:::i;:::-;;:::i;47409:892::-;;;;;;:::i;:::-;;:::i;38876:43::-;;;;;;;;;;;;;;;;50604:107;;;;;;;;;;-1:-1:-1;50604:107:0;;;;;:::i;:::-;;:::i;33791:186::-;;;;;;;;;;-1:-1:-1;33791:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;33936:25:0;;;33913:4;33936:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33791:186;48796:290;;;;;;;;;;-1:-1:-1;48796:290:0;;;;;:::i;:::-;;:::i;2839:201::-;;;;;;;;;;-1:-1:-1;2839:201:0;;;;;:::i;:::-;;:::i;45990:38::-;;;;;;;;;;;;;;;29931:370;30058:4;-1:-1:-1;;;;;;30088:40:0;;-1:-1:-1;;;30088:40:0;;:99;;-1:-1:-1;;;;;;;30139:48:0;;-1:-1:-1;;;30139:48:0;30088:99;:160;;;-1:-1:-1;;;;;;;30198:50:0;;-1:-1:-1;;;30198:50:0;30088:160;:207;;;-1:-1:-1;;;;;;;;;;26123:40:0;;;30259:36;30074:221;29931:370;-1:-1:-1;;29931:370:0:o;31657:94::-;31711:13;31740:5;31733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:94;:::o;33186:204::-;33254:7;33278:16;33286:7;35098:12;;-1:-1:-1;35088:22:0;35011:105;33278:16;33270:74;;;;-1:-1:-1;;;33270:74:0;;10447:2:1;33270:74:0;;;10429:21:1;10486:2;10466:18;;;10459:30;10525:34;10505:18;;;10498:62;-1:-1:-1;;;10576:18:1;;;10569:43;10629:19;;33270:74:0;;;;;;;;;-1:-1:-1;33360:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33360:24:0;;33186:204::o;32749:379::-;32818:13;32834:24;32850:7;32834:15;:24::i;:::-;32818:40;;32879:5;-1:-1:-1;;;;;32873:11:0;:2;-1:-1:-1;;;;;32873:11:0;;;32865:58;;;;-1:-1:-1;;;32865:58:0;;10861:2:1;32865:58:0;;;10843:21:1;10900:2;10880:18;;;10873:30;10939:34;10919:18;;;10912:62;-1:-1:-1;;;10990:18:1;;;10983:32;11032:19;;32865:58:0;10659:398:1;32865:58:0;736:10;-1:-1:-1;;;;;32948:21:0;;;;:62;;-1:-1:-1;32973:37:0;32990:5;736:10;33791:186;:::i;32973:37::-;32932:153;;;;-1:-1:-1;;;32932:153:0;;11264:2:1;32932:153:0;;;11246:21:1;11303:2;11283:18;;;11276:30;11342:34;11322:18;;;11315:62;11413:27;11393:18;;;11386:55;11458:19;;32932:153:0;11062:421:1;32932:153:0;33094:28;33103:2;33107:7;33116:5;33094:8;:28::i;:::-;32811:317;32749:379;;:::o;34036:142::-;34144:28;34154:4;34160:2;34164:7;34144:9;:28::i;50480:118::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;5210:1:::1;5808:7;;:19;;5800:63;;;::::0;-1:-1:-1;;;5800:63:0;;12051:2:1;5800:63:0::1;::::0;::::1;12033:21:1::0;12090:2;12070:18;;;12063:30;12129:33;12109:18;;;12102:61;12180:18;;5800:63:0::1;11849:355:1::0;5800:63:0::1;5210:1;5941:7;:18:::0;50564:28:::2;50583:8:::0;50564:18:::2;:28::i;:::-;-1:-1:-1::0;5166:1:0::1;6120:7;:22:::0;50480:118::o;29123:744::-;29232:7;29267:16;29277:5;29267:9;:16::i;:::-;29259:5;:24;29251:71;;;;-1:-1:-1;;;29251:71:0;;12411:2:1;29251:71:0;;;12393:21:1;12450:2;12430:18;;;12423:30;12489:34;12469:18;;;12462:62;-1:-1:-1;;;12540:18:1;;;12533:32;12582:19;;29251:71:0;12209:398:1;29251:71:0;29329:22;29354:13;28568:12;;;28492:94;29354:13;29329:38;;29374:19;29404:25;29454:9;29449:350;29473:14;29469:1;:18;29449:350;;;29503:31;29537:14;;;:11;:14;;;;;;;;;29503:48;;;;;;;;;-1:-1:-1;;;;;29503:48:0;;;;;-1:-1:-1;;;29503:48:0;;;;;;;;;;;;29564:28;29560:89;;29625:14;;;-1:-1:-1;29560:89:0;29682:5;-1:-1:-1;;;;;29661:26:0;:17;-1:-1:-1;;;;;29661:26:0;;29657:135;;;29719:5;29704:11;:20;29700:59;;;-1:-1:-1;29746:1:0;-1:-1:-1;29739:8:0;;-1:-1:-1;;;29739:8:0;29700:59;29769:13;;;;:::i;:::-;;;;29657:135;-1:-1:-1;29489:3:0;;;;:::i;:::-;;;;29449:350;;;-1:-1:-1;29805:56:0;;-1:-1:-1;;;29805:56:0;;13086:2:1;29805:56:0;;;13068:21:1;13125:2;13105:18;;;13098:30;13164:34;13144:18;;;13137:62;13235:16;13215:18;;;13208:44;13269:19;;29805:56:0;12884:410:1;49568:442:0;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;49673:13:::1;49661:8;49645:13;28568:12:::0;;;28492:94;49645:13:::1;:24;;;;:::i;:::-;:41;;49629:114;;;::::0;-1:-1:-1;;;49629:114:0;;13634:2:1;49629:114:0::1;::::0;::::1;13616:21:1::0;13673:2;13653:18;;;13646:30;13712:34;13692:18;;;13685:62;-1:-1:-1;;;13763:18:1;;;13756:37;13810:19;;49629:114:0::1;13432:403:1::0;49629:114:0::1;49766:23;49777:12;49766:8:::0;:23:::1;:::i;:::-;:28:::0;49750:106:::1;;;::::0;-1:-1:-1;;;49750:106:0;;14291:2:1;49750:106:0::1;::::0;::::1;14273:21:1::0;14330:2;14310:18;;;14303:30;14369:34;14349:18;;;14342:62;-1:-1:-1;;;14420:18:1;;;14413:42;14472:19;;49750:106:0::1;14089:408:1::0;49750:106:0::1;49863:17;49883:23;49894:12;49883:8:::0;:23:::1;:::i;:::-;49863:43;;49918:9;49913:92;49937:9;49933:1;:13;49913:92;;;49962:35;49972:10;49984:12;49962:9;:35::i;:::-;49948:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49913:92;;48517:271:::0;48658:4;48685:19;;;;;:48;;-1:-1:-1;48715:18:0;;;48685:48;:97;;;;;48763:19;48744:15;:38;;48685:97;48671:111;48517:271;-1:-1:-1;;;;48517:271:0:o;34241:157::-;34353:39;34370:4;34376:2;34380:7;34353:39;;;;;;;;;;;;:16;:39::i;28655:177::-;28722:7;28754:13;28568:12;;;28492:94;28754:13;28746:5;:21;28738:69;;;;-1:-1:-1;;;28738:69:0;;14829:2:1;28738:69:0;;;14811:21:1;14868:2;14848:18;;;14841:30;14907:34;14887:18;;;14880:62;-1:-1:-1;;;14958:18:1;;;14951:33;15001:19;;28738:69:0;14627:399:1;28738:69:0;-1:-1:-1;28821:5:0;28655:177::o;50187:100::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;50258:23:::1;:13;50274:7:::0;;50258:23:::1;:::i;31480:118::-:0;31544:7;31567:20;31579:7;31567:11;:20::i;:::-;:25;;31480:118;-1:-1:-1;;31480:118:0:o;30357:211::-;30421:7;-1:-1:-1;;;;;30445:19:0;;30437:75;;;;-1:-1:-1;;;30437:75:0;;15233:2:1;30437:75:0;;;15215:21:1;15272:2;15252:18;;;15245:30;15311:34;15291:18;;;15284:62;-1:-1:-1;;;15362:18:1;;;15355:41;15413:19;;30437:75:0;15031:407:1;30437:75:0;-1:-1:-1;;;;;;30534:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30534:27:0;;30357:211::o;2581:103::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;2646:30:::1;2673:1;2646:18;:30::i;:::-;2581:103::o:0;49092:100::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;49156:10:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;49156:30:0::1;-1:-1:-1::0;;;;49156:30:0;;::::1;::::0;;;::::1;::::0;;49092:100::o;50717:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;50838:20:0;50850:7;50838:11;:20::i;31812:98::-;31868:13;31897:7;31890:14;;;;;:::i;33454:274::-;-1:-1:-1;;;;;33545:24:0;;736:10;33545:24;;33537:63;;;;-1:-1:-1;;;33537:63:0;;15645:2:1;33537:63:0;;;15627:21:1;15684:2;15664:18;;;15657:30;15723:28;15703:18;;;15696:56;15769:18;;33537:63:0;15443:350:1;33537:63:0;736:10;33609:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33609:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33609:53:0;;;;;;;;;;33674:48;;540:41:1;;;33609:42:0;;736:10;33674:48;;513:18:1;33674:48:0;;;;;;;33454:274;;:::o;50293:181::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;5210:1:::1;5808:7;;:19;;5800:63;;;::::0;-1:-1:-1;;;5800:63:0;;12051:2:1;5800:63:0::1;::::0;::::1;12033:21:1::0;12090:2;12070:18;;;12063:30;12129:33;12109:18;;;12102:61;12180:18;;5800:63:0::1;11849:355:1::0;5800:63:0::1;5210:1;5941:7;:18:::0;50376:49:::2;::::0;50358:12:::2;::::0;50376:10:::2;::::0;50399:21:::2;::::0;50358:12;50376:49;50358:12;50376:49;50399:21;50376:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50357:68;;;50440:7;50432:36;;;::::0;-1:-1:-1;;;50432:36:0;;16210:2:1;50432:36:0::2;::::0;::::2;16192:21:1::0;16249:2;16229:18;;;16222:30;16288:18;16268;;;16261:46;16324:18;;50432:36:0::2;16008:340:1::0;49198:339:0;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;49351:8:::1;:15;49331:9;:16;:35;49315:109;;;::::0;-1:-1:-1;;;49315:109:0;;16555:2:1;49315:109:0::1;::::0;::::1;16537:21:1::0;16594:2;16574:18;;;16567:30;16633:34;16613:18;;;16606:62;-1:-1:-1;;;16684:18:1;;;16677:38;16732:19;;49315:109:0::1;16353:404:1::0;49315:109:0::1;49436:9;49431:101;49455:9;:16;49451:1;:20;49431:101;;;49513:8;49522:1;49513:11;;;;;;;;:::i;:::-;;;;;;;49487:9;:23;49497:9;49507:1;49497:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;49487:23:0::1;-1:-1:-1::0;;;;;49487:23:0::1;;;;;;;;;;;;:37;;;;49473:3;;;;;:::i;:::-;;;;49431:101;;34461:311:::0;34598:28;34608:4;34614:2;34618:7;34598:9;:28::i;:::-;34649:48;34672:4;34678:2;34682:7;34691:5;34649:22;:48::i;:::-;34633:133;;;;-1:-1:-1;;;34633:133:0;;17096:2:1;34633:133:0;;;17078:21:1;17135:2;17115:18;;;17108:30;17174:34;17154:18;;;17147:62;-1:-1:-1;;;17225:18:1;;;17218:49;17284:19;;34633:133:0;16894:415:1;34633:133:0;34461:311;;;;:::o;46742:661::-;46664:9;46677:10;46664:23;46656:66;;;;-1:-1:-1;;;46656:66:0;;17516:2:1;46656:66:0;;;17498:21:1;17555:2;17535:18;;;17528:30;17594:32;17574:18;;;17567:60;17644:18;;46656:66:0;17314:354:1;46656:66:0;46844:10:::1;:24:::0;;;::::1;;;::::0;46876:55:::1;;;::::0;-1:-1:-1;;;46876:55:0;;17875:2:1;46876:55:0::1;::::0;::::1;17857:21:1::0;;;17894:18;;;17887:30;17953:34;17933:18;;;17926:62;18005:18;;46876:55:0::1;17673:356:1::0;46876:55:0::1;46956:10;46970:1;46946:21:::0;;;:9:::1;:21;::::0;;;;;46938:69:::1;;;::::0;-1:-1:-1;;;46938:69:0;;18236:2:1;46938:69:0::1;::::0;::::1;18218:21:1::0;18275:2;18255:18;;;18248:30;18314:33;18294:18;;;18287:61;18365:18;;46938:69:0::1;18034:355:1::0;46938:69:0::1;47050:14;47038:8;47022:13;28568:12:::0;;;28492:94;47022:13:::1;:24;;;;:::i;:::-;:42;;47014:73;;;::::0;-1:-1:-1;;;47014:73:0;;18596:2:1;47014:73:0::1;::::0;::::1;18578:21:1::0;18635:2;18615:18;;;18608:30;-1:-1:-1;;;18654:18:1;;;18647:48;18712:18;;47014:73:0::1;18394:342:1::0;47014:73:0::1;47112:10;47102:21;::::0;;;:9:::1;:21;::::0;;;;;:33;-1:-1:-1;47102:33:0::1;47094:86;;;::::0;-1:-1:-1;;;47094:86:0;;18943:2:1;47094:86:0::1;::::0;::::1;18925:21:1::0;18982:2;18962:18;;;18955:30;19021:34;19001:18;;;18994:62;-1:-1:-1;;;19072:18:1;;;19065:38;19120:19;;47094:86:0::1;18741:404:1::0;47094:86:0::1;47234:23;47222:8;47195:24;47208:10;47195:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;47187:96;;;::::0;-1:-1:-1;;;47187:96:0;;19352:2:1;47187:96:0::1;::::0;::::1;19334:21:1::0;19391:2;19371:18;;;19364:30;19430:24;19410:18;;;19403:52;19472:18;;47187:96:0::1;19150:346:1::0;47187:96:0::1;47300:10;47290:21;::::0;;;:9:::1;:21;::::0;;;;:32;;47314:8;;47290:21;:32:::1;::::0;47314:8;;47290:32:::1;:::i;:::-;::::0;;;-1:-1:-1;47329:31:0::1;::::0;-1:-1:-1;47339:10:0::1;47351:8:::0;47329:9:::1;:31::i;:::-;47367:30;47380:16;47388:8:::0;47380:5;:16:::1;:::i;:::-;47367:12;:30::i;:::-;46813:590;46742:661:::0;:::o;31973:398::-;32071:13;32112:16;32120:7;35098:12;;-1:-1:-1;35088:22:0;35011:105;32112:16;32096:97;;;;-1:-1:-1;;;32096:97:0;;20006:2:1;32096:97:0;;;19988:21:1;20045:2;20025:18;;;20018:30;20084:34;20064:18;;;20057:62;20155:17;20135:18;;;20128:45;20190:19;;32096:97:0;19804:411:1;32096:97:0;32202:21;32226:10;:8;:10::i;:::-;32202:34;;32281:1;32263:7;32257:21;:25;:108;;;;;;;;;;;;;;;;;32318:7;32331:18;:7;:16;:18::i;:::-;32301:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32257:108;32243:122;31973:398;-1:-1:-1;;;31973:398:0:o;47409:892::-;46664:9;46677:10;46664:23;46656:66;;;;-1:-1:-1;;;46656:66:0;;17516:2:1;46656:66:0;;;17498:21:1;17555:2;17535:18;;;17528:30;17594:32;17574:18;;;17567:60;17644:18;;46656:66:0;17314:354:1;46656:66:0;47535:37:::1;::::0;;::::1;::::0;::::1;::::0;;47562:10:::1;47535:37:::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;47535:37:0;::::1;;::::0;;;;;;-1:-1:-1;;;47535:37:0;;::::1;;::::0;;;;;;;;;47783:36;;::::1;47767:107;;;::::0;-1:-1:-1;;;47767:107:0;;21041:2:1;47767:107:0::1;::::0;::::1;21023:21:1::0;21080:2;21060:18;;;21053:30;21119:34;21099:18;;;21092:62;-1:-1:-1;;;21170:18:1;;;21163:35;21215:19;;47767:107:0::1;20839:401:1::0;47767:107:0::1;47899:63;47914:11;47927:13;47942:19;47899:14;:63::i;:::-;47883:126;;;::::0;-1:-1:-1;;;47883:126:0;;21447:2:1;47883:126:0::1;::::0;::::1;21429:21:1::0;21486:2;21466:18;;;21459:30;21525:31;21505:18;;;21498:59;21574:18;;47883:126:0::1;21245:353:1::0;47883:126:0::1;48052:14;48040:8;48024:13;28568:12:::0;;;28492:94;48024:13:::1;:24;;;;:::i;:::-;:42;;48016:73;;;::::0;-1:-1:-1;;;48016:73:0;;18596:2:1;48016:73:0::1;::::0;::::1;18578:21:1::0;18635:2;18615:18;;;18608:30;-1:-1:-1;;;18654:18:1;;;18647:48;18712:18;;48016:73:0::1;18394:342:1::0;48016:73:0::1;48151:23;48139:8;48112:24;48125:10;48112:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;48096:118;;;::::0;-1:-1:-1;;;48096:118:0;;19352:2:1;48096:118:0::1;::::0;::::1;19334:21:1::0;19391:2;19371:18;;;19364:30;19430:24;19410:18;;;19403:52;19472:18;;48096:118:0::1;19150:346:1::0;48096:118:0::1;48221:31;48231:10;48243:8;48221:9;:31::i;:::-;48259:36;48272:22;48286:8:::0;48272:11;:22:::1;:::i;48259:36::-;47528:773;;;;47409:892:::0;;:::o;50604:107::-;50662:7;50685:20;50699:5;50685:13;:20::i;48796:290::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;48954:126:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;49049:10:::1;:24:::0;;-1:-1:-1;;;49049:24:0;;::::1;::::0;;::::1;48954:126:::0;;;;;;;-1:-1:-1;;48941:139:0;;;;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;48941:139:0;;::::1;-1:-1:-1::0;;;;48941:139:0;;;::::1;;::::0;;48796:290::o;2839:201::-;1976:7;2003:6;-1:-1:-1;;;;;2003:6:0;736:10;2150:23;2142:68;;;;-1:-1:-1;;;2142:68:0;;11690:2:1;2142:68:0;;;11672:21:1;;;11709:18;;;11702:30;-1:-1:-1;;;;;;;;;;;11748:18:1;;;11741:62;11820:18;;2142:68:0;11488:356:1;2142:68:0;-1:-1:-1;;;;;2928:22:0;::::1;2920:73;;;::::0;-1:-1:-1;;;2920:73:0;;21805:2:1;2920:73:0::1;::::0;::::1;21787:21:1::0;21844:2;21824:18;;;21817:30;21883:34;21863:18;;;21856:62;-1:-1:-1;;;21934:18:1;;;21927:36;21980:19;;2920:73:0::1;21603:402:1::0;2920:73:0::1;3004:28;3023:8;3004:18;:28::i;:::-;2839:201:::0;:::o;38698:172::-;38795:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;38795:29:0;-1:-1:-1;;;;;38795:29:0;;;;;;;;;38836:28;;38795:24;;38836:28;;;;;;;38698:172;;;:::o;37063:1529::-;37160:35;37198:20;37210:7;37198:11;:20::i;:::-;37269:18;;37160:58;;-1:-1:-1;37227:22:0;;-1:-1:-1;;;;;37253:34:0;736:10;-1:-1:-1;;;;;37253:34:0;;:81;;;-1:-1:-1;736:10:0;37298:20;37310:7;37298:11;:20::i;:::-;-1:-1:-1;;;;;37298:36:0;;37253:81;:142;;;-1:-1:-1;37362:18:0;;37345:50;;736:10;33791:186;:::i;37345:50::-;37227:169;;37421:17;37405:101;;;;-1:-1:-1;;;37405:101:0;;22212:2:1;37405:101:0;;;22194:21:1;22251:2;22231:18;;;22224:30;22290:34;22270:18;;;22263:62;22361:20;22341:18;;;22334:48;22399:19;;37405:101:0;22010:414:1;37405:101:0;37553:4;-1:-1:-1;;;;;37531:26:0;:13;:18;;;-1:-1:-1;;;;;37531:26:0;;37515:98;;;;-1:-1:-1;;;37515:98:0;;22631:2:1;37515:98:0;;;22613:21:1;22670:2;22650:18;;;22643:30;22709:34;22689:18;;;22682:62;-1:-1:-1;;;22760:18:1;;;22753:36;22806:19;;37515:98:0;22429:402:1;37515:98:0;-1:-1:-1;;;;;37628:16:0;;37620:66;;;;-1:-1:-1;;;37620:66:0;;23038:2:1;37620:66:0;;;23020:21:1;23077:2;23057:18;;;23050:30;23116:34;23096:18;;;23089:62;-1:-1:-1;;;23167:18:1;;;23160:35;23212:19;;37620:66:0;22836:401:1;37620:66:0;37795:49;37812:1;37816:7;37825:13;:18;;;37795:8;:49::i;:::-;-1:-1:-1;;;;;37853:18:0;;;;;;:12;:18;;;;;:31;;37883:1;;37853:18;:31;;37883:1;;-1:-1:-1;;;;;37853:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;37853:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37891:16:0;;-1:-1:-1;37891:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37891:16:0;;:29;;-1:-1:-1;;37891:29:0;;:::i;:::-;;;-1:-1:-1;;;;;37891:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37950:43:0;;;;;;;;-1:-1:-1;;;;;37950:43:0;;;;;;37976:15;37950:43;;;;;;;;;-1:-1:-1;37927:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;37927:66:0;-1:-1:-1;;;;;;37927:66:0;;;;;;;;;;;38243:11;37939:7;-1:-1:-1;38243:11:0;:::i;:::-;38306:1;38265:24;;;:11;:24;;;;;:29;38221:33;;-1:-1:-1;;;;;;38265:29:0;38261:236;;38323:20;38331:11;35098:12;;-1:-1:-1;35088:22:0;35011:105;38323:20;38319:171;;;38383:97;;;;;;;;38410:18;;-1:-1:-1;;;;;38383:97:0;;;;;;38441:28;;;;38383:97;;;;;;;;;;-1:-1:-1;38356:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38356:124:0;-1:-1:-1;;;;;;38356:124:0;;;;;;;;;;;;38319:171;38529:7;38525:2;-1:-1:-1;;;;;38510:27:0;38519:4;-1:-1:-1;;;;;38510:27:0;;;;;;;;;;;38544:42;34461:311;39024:846;39114:24;;39153:12;39145:49;;;;-1:-1:-1;;;39145:49:0;;23953:2:1;39145:49:0;;;23935:21:1;23992:2;23972:18;;;23965:30;24031:26;24011:18;;;24004:54;24075:18;;39145:49:0;23751:348:1;39145:49:0;39201:16;39251:1;39220:28;39240:8;39220:17;:28;:::i;:::-;:32;;;;:::i;:::-;39201:51;-1:-1:-1;39274:18:0;39291:1;39274:14;:18;:::i;:::-;39263:8;:29;39259:81;;;39314:18;39331:1;39314:14;:18;:::i;:::-;39303:29;;39259:81;39455:17;39463:8;35098:12;;-1:-1:-1;35088:22:0;35011:105;39455:17;39447:68;;;;-1:-1:-1;;;39447:68:0;;24306:2:1;39447:68:0;;;24288:21:1;24345:2;24325:18;;;24318:30;24384:34;24364:18;;;24357:62;-1:-1:-1;;;24435:18:1;;;24428:36;24481:19;;39447:68:0;24104:402:1;39447:68:0;39539:17;39522:297;39563:8;39558:1;:13;39522:297;;39622:1;39591:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;39591:19:0;39587:225;;39637:31;39671:14;39683:1;39671:11;:14::i;:::-;39713:89;;;;;;;;39740:14;;-1:-1:-1;;;;;39713:89:0;;;;;;39767:24;;;;39713:89;;;;;;;;;;-1:-1:-1;39696:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;39696:106:0;-1:-1:-1;;;;;;39696:106:0;;;;;;;;;;;;-1:-1:-1;39587:225:0;39573:3;;;;:::i;:::-;;;;39522:297;;;-1:-1:-1;39852:12:0;:8;39863:1;39852:12;:::i;:::-;39825:24;:39;-1:-1:-1;;;39024:846:0:o;35122:98::-;35187:27;35197:2;35201:8;35187:27;;;;;;;;;;;;:9;:27::i;30820:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;30937:16:0;30945:7;35098:12;;-1:-1:-1;35088:22:0;35011:105;30937:16;30929:71;;;;-1:-1:-1;;;30929:71:0;;24713:2:1;30929:71:0;;;24695:21:1;24752:2;24732:18;;;24725:30;24791:34;24771:18;;;24764:62;-1:-1:-1;;;24842:18:1;;;24835:40;24892:19;;30929:71:0;24511:406:1;30929:71:0;31009:26;31057:12;31046:7;:23;31042:93;;31101:22;31111:12;31101:7;:22;:::i;:::-;:26;;31126:1;31101:26;:::i;:::-;31080:47;;31042:93;31163:7;31143:212;31180:18;31172:4;:26;31143:212;;31217:31;31251:17;;;:11;:17;;;;;;;;;31217:51;;;;;;;;;-1:-1:-1;;;;;31217:51:0;;;;;-1:-1:-1;;;31217:51:0;;;;;;;;;;;;31281:28;31277:71;;31329:9;30820:606;-1:-1:-1;;;;30820:606:0:o;31277:71::-;-1:-1:-1;31200:6:0;;;;:::i;:::-;;;;31143:212;;;-1:-1:-1;31363:57:0;;-1:-1:-1;;;31363:57:0;;25265:2:1;31363:57:0;;;25247:21:1;25304:2;25284:18;;;25277:30;25343:34;25323:18;;;25316:62;25414:17;25394:18;;;25387:45;25449:19;;31363:57:0;25063:411:1;3200:191:0;3274:16;3293:6;;-1:-1:-1;;;;;3310:17:0;;;-1:-1:-1;;3310:17:0;;;;;;3343:40;;3293:6;;;;;;;3343:40;;3274:16;3343:40;3263:128;3200:191;:::o;40413:690::-;40550:4;-1:-1:-1;;;;;40567:13:0;;16019:20;16067:8;40563:535;;40606:72;;-1:-1:-1;;;40606:72:0;;-1:-1:-1;;;;;40606:36:0;;;;;:72;;736:10;;40657:4;;40663:7;;40672:5;;40606:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40606:72:0;;;;;;;;-1:-1:-1;;40606:72:0;;;;;;;;;;;;:::i;:::-;;;40593:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40837:13:0;;40833:215;;40870:61;;-1:-1:-1;;;40870:61:0;;17096:2:1;40870:61:0;;;17078:21:1;17135:2;17115:18;;;17108:30;17174:34;17154:18;;;17147:62;-1:-1:-1;;;17225:18:1;;;17218:49;17284:19;;40870:61:0;16894:415:1;40833:215:0;41016:6;41010:13;41001:6;40997:2;40993:15;40986:38;40593:464;-1:-1:-1;;;;;;40728:55:0;-1:-1:-1;;;40728:55:0;;-1:-1:-1;40721:62:0;;40563:535;-1:-1:-1;41086:4:0;40413:690;;;;;;:::o;48307:204::-;48380:5;48367:9;:18;;48359:53;;;;-1:-1:-1;;;48359:53:0;;26452:2:1;48359:53:0;;;26434:21:1;26491:2;26471:18;;;26464:30;26530:24;26510:18;;;26503:52;26572:18;;48359:53:0;26250:346:1;48359:53:0;48435:5;48423:9;:17;48419:87;;;48459:10;48451:47;48480:17;48492:5;48480:9;:17;:::i;:::-;48451:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50073:108;50133:13;50162;50155:20;;;;;:::i;23392:723::-;23448:13;23669:10;23665:53;;-1:-1:-1;;23696:10:0;;;;;;;;;;;;-1:-1:-1;;;23696:10:0;;;;;23392:723::o;23665:53::-;23743:5;23728:12;23784:78;23791:9;;23784:78;;23817:8;;;;:::i;:::-;;-1:-1:-1;23840:10:0;;-1:-1:-1;23848:2:0;23840:10;;:::i;:::-;;;23784:78;;;23872:19;23904:6;23894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23894:17:0;;23872:39;;23922:154;23929:10;;23922:154;;23956:11;23966:1;23956:11;;:::i;:::-;;-1:-1:-1;24025:10:0;24033:2;24025:5;:10;:::i;:::-;24012:24;;:2;:24;:::i;:::-;23999:39;;23982:6;23989;23982:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;24053:11:0;24062:2;24053:11;;:::i;:::-;;;23922:154;;30574:240;30635:7;-1:-1:-1;;;;;30667:19:0;;30651:102;;;;-1:-1:-1;;;30651:102:0;;26803:2:1;30651:102:0;;;26785:21:1;26842:2;26822:18;;;26815:30;26881:34;26861:18;;;26854:62;26952:19;26932:18;;;26925:47;26989:19;;30651:102:0;26601:413:1;30651:102:0;-1:-1:-1;;;;;;30775:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30775:32:0;;-1:-1:-1;;;;;30775:32:0;;30574:240::o;35559:1272::-;35687:12;;-1:-1:-1;;;;;35714:16:0;;35706:62;;;;-1:-1:-1;;;35706:62:0;;27221:2:1;35706:62:0;;;27203:21:1;27260:2;27240:18;;;27233:30;27299:34;27279:18;;;27272:62;-1:-1:-1;;;27350:18:1;;;27343:31;27391:19;;35706:62:0;27019:397:1;35706:62:0;35905:21;35913:12;35098;;-1:-1:-1;35088:22:0;35011:105;35905:21;35904:22;35896:64;;;;-1:-1:-1;;;35896:64:0;;27623:2:1;35896:64:0;;;27605:21:1;27662:2;27642:18;;;27635:30;27701:31;27681:18;;;27674:59;27750:18;;35896:64:0;27421:353:1;35896:64:0;35987:12;35975:8;:24;;35967:71;;;;-1:-1:-1;;;35967:71:0;;27981:2:1;35967:71:0;;;27963:21:1;28020:2;28000:18;;;27993:30;28059:34;28039:18;;;28032:62;-1:-1:-1;;;28110:18:1;;;28103:32;28152:19;;35967:71:0;27779:398:1;35967:71:0;-1:-1:-1;;;;;36150:16:0;;36117:30;36150:16;;;:12;:16;;;;;;;;;36117:49;;;;;;;;;-1:-1:-1;;;;;36117:49:0;;;;;-1:-1:-1;;;36117:49:0;;;;;;;;;;;36192:119;;;;;;;;36212:19;;36117:49;;36192:119;;;36212:39;;36242:8;;36212:39;:::i;:::-;-1:-1:-1;;;;;36192:119:0;;;;;36295:8;36260:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36192:119:0;;;;;;-1:-1:-1;;;;;36173:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36173:138:0;;;;;;;;;;;;36346:43;;;;;;;;;;;36372:15;36346:43;;;;;;;;36318:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36318:71:0;-1:-1:-1;;;;;;36318:71:0;;;;;;;;;;;;;;;;;;36330:12;;36442:281;36466:8;36462:1;:12;36442:281;;;36495:38;;36520:12;;-1:-1:-1;;;;;36495:38:0;;;36512:1;;36495:38;;36512:1;;36495:38;36560:59;36591:1;36595:2;36599:12;36613:5;36560:22;:59::i;:::-;36542:150;;;;-1:-1:-1;;;36542:150:0;;17096:2:1;36542:150:0;;;17078:21:1;17135:2;17115:18;;;17108:30;17174:34;17154:18;;;17147:62;-1:-1:-1;;;17225:18:1;;;17218:49;17284:19;;36542:150:0;16894:415:1;36542:150:0;36701:14;;;;:::i;:::-;;;;36476:3;;;;;:::i;:::-;;;;36442:281;;;-1:-1:-1;36731:12:0;:27;;;36765:60;34461:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1759:196::-;1827:20;;-1:-1:-1;;;;;1876:54:1;;1866:65;;1856:93;;1945:1;1942;1935:12;1856:93;1759:196;;;:::o;1960:254::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2128:29;2147:9;2128:29;:::i;:::-;2118:39;2204:2;2189:18;;;;2176:32;;-1:-1:-1;;;1960:254:1:o;2401:328::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2719:2;2708:9;2704:18;2691:32;2681:42;;2401:328;;;;;:::o;2734:316::-;2811:6;2819;2827;2880:2;2868:9;2859:7;2855:23;2851:32;2848:52;;;2896:1;2893;2886:12;2848:52;-1:-1:-1;;2919:23:1;;;2989:2;2974:18;;2961:32;;-1:-1:-1;3040:2:1;3025:18;;;3012:32;;2734:316;-1:-1:-1;2734:316:1:o;3055:592::-;3126:6;3134;3187:2;3175:9;3166:7;3162:23;3158:32;3155:52;;;3203:1;3200;3193:12;3155:52;3243:9;3230:23;3272:18;3313:2;3305:6;3302:14;3299:34;;;3329:1;3326;3319:12;3299:34;3367:6;3356:9;3352:22;3342:32;;3412:7;3405:4;3401:2;3397:13;3393:27;3383:55;;3434:1;3431;3424:12;3383:55;3474:2;3461:16;3500:2;3492:6;3489:14;3486:34;;;3516:1;3513;3506:12;3486:34;3561:7;3556:2;3547:6;3543:2;3539:15;3535:24;3532:37;3529:57;;;3582:1;3579;3572:12;3529:57;3613:2;3605:11;;;;;3635:6;;-1:-1:-1;3055:592:1;;-1:-1:-1;;;;3055:592:1:o;3652:186::-;3711:6;3764:2;3752:9;3743:7;3739:23;3735:32;3732:52;;;3780:1;3777;3770:12;3732:52;3803:29;3822:9;3803:29;:::i;3843:163::-;3910:20;;3970:10;3959:22;;3949:33;;3939:61;;3996:1;3993;3986:12;4011:184;4069:6;4122:2;4110:9;4101:7;4097:23;4093:32;4090:52;;;4138:1;4135;4128:12;4090:52;4161:28;4179:9;4161:28;:::i;5078:347::-;5143:6;5151;5204:2;5192:9;5183:7;5179:23;5175:32;5172:52;;;5220:1;5217;5210:12;5172:52;5243:29;5262:9;5243:29;:::i;:::-;5233:39;;5322:2;5311:9;5307:18;5294:32;5369:5;5362:13;5355:21;5348:5;5345:32;5335:60;;5391:1;5388;5381:12;5335:60;5414:5;5404:15;;;5078:347;;;;;:::o;5430:127::-;5491:10;5486:3;5482:20;5479:1;5472:31;5522:4;5519:1;5512:15;5546:4;5543:1;5536:15;5562:275;5633:2;5627:9;5698:2;5679:13;;-1:-1:-1;;5675:27:1;5663:40;;5733:18;5718:34;;5754:22;;;5715:62;5712:88;;;5780:18;;:::i;:::-;5816:2;5809:22;5562:275;;-1:-1:-1;5562:275:1:o;5842:183::-;5902:4;5935:18;5927:6;5924:30;5921:56;;;5957:18;;:::i;:::-;-1:-1:-1;6002:1:1;5998:14;6014:4;5994:25;;5842:183::o;6030:662::-;6084:5;6137:3;6130:4;6122:6;6118:17;6114:27;6104:55;;6155:1;6152;6145:12;6104:55;6191:6;6178:20;6217:4;6241:60;6257:43;6297:2;6257:43;:::i;:::-;6241:60;:::i;:::-;6335:15;;;6421:1;6417:10;;;;6405:23;;6401:32;;;6366:12;;;;6445:15;;;6442:35;;;6473:1;6470;6463:12;6442:35;6509:2;6501:6;6497:15;6521:142;6537:6;6532:3;6529:15;6521:142;;;6603:17;;6591:30;;6641:12;;;;6554;;6521:142;;;-1:-1:-1;6681:5:1;6030:662;-1:-1:-1;;;;;;6030:662:1:o;6697:1146::-;6815:6;6823;6876:2;6864:9;6855:7;6851:23;6847:32;6844:52;;;6892:1;6889;6882:12;6844:52;6932:9;6919:23;6961:18;7002:2;6994:6;6991:14;6988:34;;;7018:1;7015;7008:12;6988:34;7056:6;7045:9;7041:22;7031:32;;7101:7;7094:4;7090:2;7086:13;7082:27;7072:55;;7123:1;7120;7113:12;7072:55;7159:2;7146:16;7181:4;7205:60;7221:43;7261:2;7221:43;:::i;7205:60::-;7299:15;;;7381:1;7377:10;;;;7369:19;;7365:28;;;7330:12;;;;7405:19;;;7402:39;;;7437:1;7434;7427:12;7402:39;7461:11;;;;7481:148;7497:6;7492:3;7489:15;7481:148;;;7563:23;7582:3;7563:23;:::i;:::-;7551:36;;7514:12;;;;7607;;;;7481:148;;;7648:5;-1:-1:-1;;7691:18:1;;7678:32;;-1:-1:-1;;7722:16:1;;;7719:36;;;7751:1;7748;7741:12;7719:36;;7774:63;7829:7;7818:8;7807:9;7803:24;7774:63;:::i;:::-;7764:73;;;6697:1146;;;;;:::o;7848:980::-;7943:6;7951;7959;7967;8020:3;8008:9;7999:7;7995:23;7991:33;7988:53;;;8037:1;8034;8027:12;7988:53;8060:29;8079:9;8060:29;:::i;:::-;8050:39;;8108:2;8129:38;8163:2;8152:9;8148:18;8129:38;:::i;:::-;8119:48;;8214:2;8203:9;8199:18;8186:32;8176:42;;8269:2;8258:9;8254:18;8241:32;8292:18;8333:2;8325:6;8322:14;8319:34;;;8349:1;8346;8339:12;8319:34;8387:6;8376:9;8372:22;8362:32;;8432:7;8425:4;8421:2;8417:13;8413:27;8403:55;;8454:1;8451;8444:12;8403:55;8490:2;8477:16;8512:2;8508;8505:10;8502:36;;;8518:18;;:::i;:::-;8560:53;8603:2;8584:13;;-1:-1:-1;;8580:27:1;8576:36;;8560:53;:::i;:::-;8547:66;;8636:2;8629:5;8622:17;8676:7;8671:2;8666;8662;8658:11;8654:20;8651:33;8648:53;;;8697:1;8694;8687:12;8648:53;8752:2;8747;8743;8739:11;8734:2;8727:5;8723:14;8710:45;8796:1;8791:2;8786;8779:5;8775:14;8771:23;8764:34;;8817:5;8807:15;;;;;7848:980;;;;;;;:::o;8833:248::-;8901:6;8909;8962:2;8950:9;8941:7;8937:23;8933:32;8930:52;;;8978:1;8975;8968:12;8930:52;-1:-1:-1;;9001:23:1;;;9071:2;9056:18;;;9043:32;;-1:-1:-1;8833:248:1:o;9086:260::-;9154:6;9162;9215:2;9203:9;9194:7;9190:23;9186:32;9183:52;;;9231:1;9228;9221:12;9183:52;9254:29;9273:9;9254:29;:::i;:::-;9244:39;;9302:38;9336:2;9325:9;9321:18;9302:38;:::i;:::-;9292:48;;9086:260;;;;;:::o;9351:171::-;9418:20;;9478:18;9467:30;;9457:41;;9447:69;;9512:1;9509;9502:12;9527:328;9601:6;9609;9617;9670:2;9658:9;9649:7;9645:23;9641:32;9638:52;;;9686:1;9683;9676:12;9638:52;9709:28;9727:9;9709:28;:::i;:::-;9699:38;;9756:37;9789:2;9778:9;9774:18;9756:37;:::i;:::-;9746:47;;9812:37;9845:2;9834:9;9830:18;9812:37;:::i;:::-;9802:47;;9527:328;;;;;:::o;9860:380::-;9939:1;9935:12;;;;9982;;;10003:61;;10057:4;10049:6;10045:17;10035:27;;10003:61;10110:2;10102:6;10099:14;10079:18;10076:38;10073:161;;;10156:10;10151:3;10147:20;10144:1;10137:31;10191:4;10188:1;10181:15;10219:4;10216:1;10209:15;10073:161;;9860:380;;;:::o;12612:127::-;12673:10;12668:3;12664:20;12661:1;12654:31;12704:4;12701:1;12694:15;12728:4;12725:1;12718:15;12744:135;12783:3;-1:-1:-1;;12804:17:1;;12801:43;;;12824:18;;:::i;:::-;-1:-1:-1;12871:1:1;12860:13;;12744:135::o;13299:128::-;13339:3;13370:1;13366:6;13363:1;13360:13;13357:39;;;13376:18;;:::i;:::-;-1:-1:-1;13412:9:1;;13299:128::o;13840:127::-;13901:10;13896:3;13892:20;13889:1;13882:31;13932:4;13929:1;13922:15;13956:4;13953:1;13946:15;13972:112;14004:1;14030;14020:35;;14035:18;;:::i;:::-;-1:-1:-1;14069:9:1;;13972:112::o;14502:120::-;14542:1;14568;14558:35;;14573:18;;:::i;:::-;-1:-1:-1;14607:9:1;;14502:120::o;16762:127::-;16823:10;16818:3;16814:20;16811:1;16804:31;16854:4;16851:1;16844:15;16878:4;16875:1;16868:15;19501:125;19541:4;19569:1;19566;19563:8;19560:34;;;19574:18;;:::i;:::-;-1:-1:-1;19611:9:1;;19501:125::o;19631:168::-;19671:7;19737:1;19733;19729:6;19725:14;19722:1;19719:21;19714:1;19707:9;19700:17;19696:45;19693:71;;;19744:18;;:::i;:::-;-1:-1:-1;19784:9:1;;19631:168::o;20220:614::-;20500:3;20538:6;20532:13;20554:53;20600:6;20595:3;20588:4;20580:6;20576:17;20554:53;:::i;:::-;-1:-1:-1;;;20629:16:1;;;20654:18;;;20697:13;;20719:65;20697:13;20771:1;20760:13;;20753:4;20741:17;;20719:65;:::i;:::-;20804:20;20826:1;20800:28;;20220:614;-1:-1:-1;;;;20220:614:1:o;23242:246::-;23282:4;-1:-1:-1;;;;;23395:10:1;;;;23365;;23417:12;;;23414:38;;;23432:18;;:::i;:::-;23469:13;;23242:246;-1:-1:-1;;;23242:246:1:o;23493:253::-;23533:3;-1:-1:-1;;;;;23622:2:1;23619:1;23615:10;23652:2;23649:1;23645:10;23683:3;23679:2;23675:12;23670:3;23667:21;23664:47;;;23691:18;;:::i;:::-;23727:13;;23493:253;-1:-1:-1;;;;23493:253:1:o;24922:136::-;24961:3;24989:5;24979:39;;24998:18;;:::i;:::-;-1:-1:-1;;;25034:18:1;;24922:136::o;25479:512::-;25673:4;-1:-1:-1;;;;;25783:2:1;25775:6;25771:15;25760:9;25753:34;25835:2;25827:6;25823:15;25818:2;25807:9;25803:18;25796:43;;25875:6;25870:2;25859:9;25855:18;25848:34;25918:3;25913:2;25902:9;25898:18;25891:31;25939:46;25980:3;25969:9;25965:19;25957:6;25939:46;:::i;:::-;25931:54;25479:512;-1:-1:-1;;;;;;25479:512:1:o;25996:249::-;26065:6;26118:2;26106:9;26097:7;26093:23;26089:32;26086:52;;;26134:1;26131;26124:12;26086:52;26166:9;26160:16;26185:30;26209:5;26185:30;:::i

Swarm Source

ipfs://8971d55ee713a11b2d384d03de09e37d47ee436cc2a056db0405fe07443407d8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.