ETH Price: $3,360.75 (+0.38%)
Gas: 10 Gwei

Token

goblinDAO (goblinDAO)
 

Overview

Max Total Supply

1,024 goblinDAO

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 goblinDAO
0x12ff352b48fdaeed0f84090671edeebf9596e532
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:
goblinDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


/** NO ROADMAP, NO BULLSHIT, JUST DAO.... 
    1. First 1000 FREE... then 0.002eth.. 
    2. 5% ROYALTIES to me.. coz i make memes...
    3. 95% ROYALTIES WILL GO TO BUY FLOOR goblintown.wtf to random holders forever, pray to RNGesus....
    4. 1 floor goblintown.wtf will be randomly sent to a holder ONCE MINTED OUT. spin the wheel mfers... 
    4. GAGMI - Goblins are going to make it...
    5. aaaAaauuUuuUGggGGgggHhhhhhhhh....
             ,      ,
            /(.-""-.)\
        |\  \/      \/  /|
        | \ / =.  .= \ / |
        \( \   o\/o   / )/
         \_, '-/  \-' ,_/
           /   \__/   \
           \ \__/\__/ /
         ___\ \|--|/ /___
       /`    \      /    `\
  NFA /       '----'       \
*/

// 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/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/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/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: @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/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _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;

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _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 virtual override {
        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

// File: contracts/goblindao.sol



pragma solidity ^0.8.0;



contract goblinDAO is ERC721A, Ownable {
    using Strings for uint256;


    uint256 public constant MAX_SUPPLY = 5555; 
    uint256 public constant PRICE = 0.002 ether;
    uint256 public constant MAX_PER_WALLET = 20;
    uint256 public constant MAX_FREE_SUPPLY = 1000; 

    // URI
    string public baseURI = "ipfs://QmZYfsWcvzJDPQhBEtFYS7hCkkWJ2Na1ncSN96H1cJP1ai/";
    string public endPoint = ".json";

    constructor() ERC721A("goblinDAO", "goblinDAO") {}

    function getPrice(uint256 _supply) internal pure returns (uint256 _price) {
        if (_supply < MAX_FREE_SUPPLY) {
            return 0 ether;
        } else {
            return PRICE;
        }
    }

    function mint(uint256 quantity) external payable {
        require(quantity <= MAX_PER_WALLET, "REACH_MAX_MINT");
        require(quantity > 0, "QUANTITY_ZERO");
        require(totalSupply() + quantity <= MAX_SUPPLY, "SOLD_OUT");
        require(msg.value >= getPrice(totalSupply()) * quantity, "INSUFFICIENT_ETH");

        _safeMint(msg.sender, quantity);
    }


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

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory){
        require(_exists(tokenId), "Cannot query non-existent token");

        return string(abi.encodePacked(baseURI, tokenId.toString(), endPoint));
    }

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPoint","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200368f60369139600990805190602001906200003592919062000245565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200008392919062000245565b503480156200009157600080fd5b506040518060400160405280600981526020017f676f626c696e44414f00000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f676f626c696e44414f000000000000000000000000000000000000000000000081525081600290805190602001906200011692919062000245565b5080600390805190602001906200012f92919062000245565b50620001406200016e60201b60201c565b6000819055505050620001686200015c6200017760201b60201c565b6200017f60201b60201c565b6200035a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025390620002f5565b90600052602060002090601f016020900481019282620002775760008555620002c3565b82601f106200029257805160ff1916838001178555620002c3565b82800160010185558215620002c3579182015b82811115620002c2578251825591602001919060010190620002a5565b5b509050620002d29190620002d6565b5090565b5b80821115620002f1576000816000905550600101620002d7565b5090565b600060028204905060018216806200030e57607f821691505b602082108114156200032557620003246200032b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613325806200036a6000396000f3fe6080604052600436106101815760003560e01c80636c0360eb116100d157806399e51e1c1161008a578063b88d4fde11610064578063b88d4fde1461053f578063c87b56dd14610568578063e985e9c5146105a5578063f2fde38b146105e257610181565b806399e51e1c146104cf578063a0712d68146104fa578063a22cb4651461051657610181565b80636c0360eb146103cf57806370a08231146103fa578063715018a6146104375780638d859f3e1461044e5780638da5cb5b1461047957806395d89b41146104a457610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461032957806342842e0e1461034057806355f804b3146103695780636352211e1461039257610181565b806318160ddd146102aa57806323b872dd146102d557806332cb6b0c146102fe57610181565b806301ffc9a71461018657806302ddb65b146101c357806306fdde03146101ee578063081812fc14610219578063095ea7b3146102565780630f2cdd6c1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906127d3565b61060b565b6040516101ba9190612b7f565b60405180910390f35b3480156101cf57600080fd5b506101d86106ed565b6040516101e59190612c9c565b60405180910390f35b3480156101fa57600080fd5b506102036106f3565b6040516102109190612b9a565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190612876565b610785565b60405161024d9190612b18565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612793565b610801565b005b34801561028b57600080fd5b5061029461090c565b6040516102a19190612c9c565b60405180910390f35b3480156102b657600080fd5b506102bf610911565b6040516102cc9190612c9c565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f7919061267d565b610928565b005b34801561030a57600080fd5b50610313610938565b6040516103209190612c9c565b60405180910390f35b34801561033557600080fd5b5061033e61093e565b005b34801561034c57600080fd5b506103676004803603810190610362919061267d565b6109fa565b005b34801561037557600080fd5b50610390600480360381019061038b919061282d565b610a1a565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612876565b610ab0565b6040516103c69190612b18565b60405180910390f35b3480156103db57600080fd5b506103e4610ac6565b6040516103f19190612b9a565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190612610565b610b54565b60405161042e9190612c9c565b60405180910390f35b34801561044357600080fd5b5061044c610c24565b005b34801561045a57600080fd5b50610463610cac565b6040516104709190612c9c565b60405180910390f35b34801561048557600080fd5b5061048e610cb7565b60405161049b9190612b18565b60405180910390f35b3480156104b057600080fd5b506104b9610ce1565b6040516104c69190612b9a565b60405180910390f35b3480156104db57600080fd5b506104e4610d73565b6040516104f19190612b9a565b60405180910390f35b610514600480360381019061050f9190612876565b610e01565b005b34801561052257600080fd5b5061053d60048036038101906105389190612753565b610f49565b005b34801561054b57600080fd5b50610566600480360381019061056191906126d0565b6110c1565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612876565b61113d565b60405161059c9190612b9a565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061263d565b6111bc565b6040516105d99190612b7f565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612610565b611250565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e657506106e582611348565b5b9050919050565b6103e881565b60606002805461070290612f61565b80601f016020809104026020016040519081016040528092919081815260200182805461072e90612f61565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b6000610790826113b2565b6107c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080c82610ab0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610874576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610893611400565b73ffffffffffffffffffffffffffffffffffffffff16141580156108c557506108c3816108be611400565b6111bc565b155b156108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610907838383611408565b505050565b601481565b600061091b6114ba565b6001546000540303905090565b6109338383836114c3565b505050565b6115b381565b610946611400565b73ffffffffffffffffffffffffffffffffffffffff16610964610cb7565b73ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190612c1c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506109f857600080fd5b565b610a15838383604051806020016040528060008152506110c1565b505050565b610a22611400565b73ffffffffffffffffffffffffffffffffffffffff16610a40610cb7565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612c1c565b60405180910390fd5b8060099080519060200190610aac9291906123e1565b5050565b6000610abb82611979565b600001519050919050565b60098054610ad390612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610aff90612f61565b8015610b4c5780601f10610b2157610100808354040283529160200191610b4c565b820191906000526020600020905b815481529060010190602001808311610b2f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c2c611400565b73ffffffffffffffffffffffffffffffffffffffff16610c4a610cb7565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612c1c565b60405180910390fd5b610caa6000611c08565b565b66071afd498d000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cf090612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1c90612f61565b8015610d695780601f10610d3e57610100808354040283529160200191610d69565b820191906000526020600020905b815481529060010190602001808311610d4c57829003601f168201915b5050505050905090565b600a8054610d8090612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610dac90612f61565b8015610df95780601f10610dce57610100808354040283529160200191610df9565b820191906000526020600020905b815481529060010190602001808311610ddc57829003601f168201915b505050505081565b6014811115610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90612c5c565b60405180910390fd5b60008111610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612bdc565b60405180910390fd5b6115b381610e94610911565b610e9e9190612d96565b1115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612bfc565b60405180910390fd5b80610ef0610eeb610911565b611cce565b610efa9190612e1d565b341015610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390612c7c565b60405180910390fd5b610f463382611cf3565b50565b610f51611400565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fc3611400565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611070611400565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110b59190612b7f565b60405180910390a35050565b6110cc8484846114c3565b6110eb8373ffffffffffffffffffffffffffffffffffffffff16611d11565b801561110057506110fe84848484611d34565b155b15611137576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611148826113b2565b611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612c3c565b60405180910390fd5b600961119283611e94565b600a6040516020016111a693929190612ae7565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611258611400565b73ffffffffffffffffffffffffffffffffffffffff16611276610cb7565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390612c1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612bbc565b60405180910390fd5b61134581611c08565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816113bd6114ba565b111580156113cc575060005482105b80156113f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006114ce82611979565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611539576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661155a611400565b73ffffffffffffffffffffffffffffffffffffffff161480611589575061158885611583611400565b6111bc565b5b806115ce5750611597611400565b73ffffffffffffffffffffffffffffffffffffffff166115b684610785565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611607576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561166e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61167b8585856001611ff5565b61168760008487611408565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561190757600054821461190657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119728585856001611ffb565b5050505050565b611981612467565b60008290508061198f6114ba565b1115801561199e575060005481105b15611bd1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611bcf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ab3578092505050611c03565b5b600115611bce57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bc9578092505050611c03565b611ab4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006103e8821015611ce35760009050611cee565b66071afd498d000090505b919050565b611d0d828260405180602001604052806000815250612001565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5a611400565b8786866040518563ffffffff1660e01b8152600401611d7c9493929190612b33565b602060405180830381600087803b158015611d9657600080fd5b505af1925050508015611dc757506040513d601f19601f82011682018060405250810190611dc49190612800565b60015b611e41573d8060008114611df7576040519150601f19603f3d011682016040523d82523d6000602084013e611dfc565b606091505b50600081511415611e39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611edc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff0565b600082905060005b60008214611f0e578080611ef790612fc4565b915050600a82611f079190612dec565b9150611ee4565b60008167ffffffffffffffff811115611f2a57611f296130fa565b5b6040519080825280601f01601f191660200182016040528015611f5c5781602001600182028036833780820191505090505b5090505b60008514611fe957600182611f759190612e77565b9150600a85611f84919061300d565b6030611f909190612d96565b60f81b818381518110611fa657611fa56130cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe29190612dec565b9450611f60565b8093505050505b919050565b50505050565b50505050565b61200e8383836001612013565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612080576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156120bb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c86000868387611ff5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561229257506122918773ffffffffffffffffffffffffffffffffffffffff16611d11565b5b15612358575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123076000888480600101955088611d34565b61233d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561229857826000541461235357600080fd5b6123c4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612359575b8160008190555050506123da6000868387611ffb565b5050505050565b8280546123ed90612f61565b90600052602060002090601f01602090048101928261240f5760008555612456565b82601f1061242857805160ff1916838001178555612456565b82800160010185558215612456579182015b8281111561245557825182559160200191906001019061243a565b5b50905061246391906124aa565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156124c35760008160009055506001016124ab565b5090565b60006124da6124d584612cdc565b612cb7565b9050828152602081018484840111156124f6576124f561312e565b5b612501848285612f1f565b509392505050565b600061251c61251784612d0d565b612cb7565b9050828152602081018484840111156125385761253761312e565b5b612543848285612f1f565b509392505050565b60008135905061255a81613293565b92915050565b60008135905061256f816132aa565b92915050565b600081359050612584816132c1565b92915050565b600081519050612599816132c1565b92915050565b600082601f8301126125b4576125b3613129565b5b81356125c48482602086016124c7565b91505092915050565b600082601f8301126125e2576125e1613129565b5b81356125f2848260208601612509565b91505092915050565b60008135905061260a816132d8565b92915050565b60006020828403121561262657612625613138565b5b60006126348482850161254b565b91505092915050565b6000806040838503121561265457612653613138565b5b60006126628582860161254b565b92505060206126738582860161254b565b9150509250929050565b60008060006060848603121561269657612695613138565b5b60006126a48682870161254b565b93505060206126b58682870161254b565b92505060406126c6868287016125fb565b9150509250925092565b600080600080608085870312156126ea576126e9613138565b5b60006126f88782880161254b565b94505060206127098782880161254b565b935050604061271a878288016125fb565b925050606085013567ffffffffffffffff81111561273b5761273a613133565b5b6127478782880161259f565b91505092959194509250565b6000806040838503121561276a57612769613138565b5b60006127788582860161254b565b925050602061278985828601612560565b9150509250929050565b600080604083850312156127aa576127a9613138565b5b60006127b88582860161254b565b92505060206127c9858286016125fb565b9150509250929050565b6000602082840312156127e9576127e8613138565b5b60006127f784828501612575565b91505092915050565b60006020828403121561281657612815613138565b5b60006128248482850161258a565b91505092915050565b60006020828403121561284357612842613138565b5b600082013567ffffffffffffffff81111561286157612860613133565b5b61286d848285016125cd565b91505092915050565b60006020828403121561288c5761288b613138565b5b600061289a848285016125fb565b91505092915050565b6128ac81612eab565b82525050565b6128bb81612ebd565b82525050565b60006128cc82612d53565b6128d68185612d69565b93506128e6818560208601612f2e565b6128ef8161313d565b840191505092915050565b600061290582612d5e565b61290f8185612d7a565b935061291f818560208601612f2e565b6129288161313d565b840191505092915050565b600061293e82612d5e565b6129488185612d8b565b9350612958818560208601612f2e565b80840191505092915050565b6000815461297181612f61565b61297b8186612d8b565b9450600182166000811461299657600181146129a7576129da565b60ff198316865281860193506129da565b6129b085612d3e565b60005b838110156129d2578154818901526001820191506020810190506129b3565b838801955050505b50505092915050565b60006129f0602683612d7a565b91506129fb8261314e565b604082019050919050565b6000612a13600d83612d7a565b9150612a1e8261319d565b602082019050919050565b6000612a36600883612d7a565b9150612a41826131c6565b602082019050919050565b6000612a59602083612d7a565b9150612a64826131ef565b602082019050919050565b6000612a7c601f83612d7a565b9150612a8782613218565b602082019050919050565b6000612a9f600e83612d7a565b9150612aaa82613241565b602082019050919050565b6000612ac2601083612d7a565b9150612acd8261326a565b602082019050919050565b612ae181612f15565b82525050565b6000612af38286612964565b9150612aff8285612933565b9150612b0b8284612964565b9150819050949350505050565b6000602082019050612b2d60008301846128a3565b92915050565b6000608082019050612b4860008301876128a3565b612b5560208301866128a3565b612b626040830185612ad8565b8181036060830152612b7481846128c1565b905095945050505050565b6000602082019050612b9460008301846128b2565b92915050565b60006020820190508181036000830152612bb481846128fa565b905092915050565b60006020820190508181036000830152612bd5816129e3565b9050919050565b60006020820190508181036000830152612bf581612a06565b9050919050565b60006020820190508181036000830152612c1581612a29565b9050919050565b60006020820190508181036000830152612c3581612a4c565b9050919050565b60006020820190508181036000830152612c5581612a6f565b9050919050565b60006020820190508181036000830152612c7581612a92565b9050919050565b60006020820190508181036000830152612c9581612ab5565b9050919050565b6000602082019050612cb16000830184612ad8565b92915050565b6000612cc1612cd2565b9050612ccd8282612f93565b919050565b6000604051905090565b600067ffffffffffffffff821115612cf757612cf66130fa565b5b612d008261313d565b9050602081019050919050565b600067ffffffffffffffff821115612d2857612d276130fa565b5b612d318261313d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612da182612f15565b9150612dac83612f15565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de157612de061303e565b5b828201905092915050565b6000612df782612f15565b9150612e0283612f15565b925082612e1257612e1161306d565b5b828204905092915050565b6000612e2882612f15565b9150612e3383612f15565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e6c57612e6b61303e565b5b828202905092915050565b6000612e8282612f15565b9150612e8d83612f15565b925082821015612ea057612e9f61303e565b5b828203905092915050565b6000612eb682612ef5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f4c578082015181840152602081019050612f31565b83811115612f5b576000848401525b50505050565b60006002820490506001821680612f7957607f821691505b60208210811415612f8d57612f8c61309c565b5b50919050565b612f9c8261313d565b810181811067ffffffffffffffff82111715612fbb57612fba6130fa565b5b80604052505050565b6000612fcf82612f15565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130025761300161303e565b5b600182019050919050565b600061301882612f15565b915061302383612f15565b9250826130335761303261306d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5155414e544954595f5a45524f00000000000000000000000000000000000000600082015250565b7f534f4c445f4f5554000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f52454143485f4d41585f4d494e54000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b61329c81612eab565b81146132a757600080fd5b50565b6132b381612ebd565b81146132be57600080fd5b50565b6132ca81612ec9565b81146132d557600080fd5b50565b6132e181612f15565b81146132ec57600080fd5b5056fea26469706673582212208571d90d692eeaf7b88ed2bddbd3a7f3fa17342cca56fd24fba62c5cbe922b1064736f6c63430008070033697066733a2f2f516d5a5966735763767a4a445051684245744659533768436b6b574a324e61316e63534e39364831634a503161692f

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636c0360eb116100d157806399e51e1c1161008a578063b88d4fde11610064578063b88d4fde1461053f578063c87b56dd14610568578063e985e9c5146105a5578063f2fde38b146105e257610181565b806399e51e1c146104cf578063a0712d68146104fa578063a22cb4651461051657610181565b80636c0360eb146103cf57806370a08231146103fa578063715018a6146104375780638d859f3e1461044e5780638da5cb5b1461047957806395d89b41146104a457610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461032957806342842e0e1461034057806355f804b3146103695780636352211e1461039257610181565b806318160ddd146102aa57806323b872dd146102d557806332cb6b0c146102fe57610181565b806301ffc9a71461018657806302ddb65b146101c357806306fdde03146101ee578063081812fc14610219578063095ea7b3146102565780630f2cdd6c1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906127d3565b61060b565b6040516101ba9190612b7f565b60405180910390f35b3480156101cf57600080fd5b506101d86106ed565b6040516101e59190612c9c565b60405180910390f35b3480156101fa57600080fd5b506102036106f3565b6040516102109190612b9a565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190612876565b610785565b60405161024d9190612b18565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612793565b610801565b005b34801561028b57600080fd5b5061029461090c565b6040516102a19190612c9c565b60405180910390f35b3480156102b657600080fd5b506102bf610911565b6040516102cc9190612c9c565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f7919061267d565b610928565b005b34801561030a57600080fd5b50610313610938565b6040516103209190612c9c565b60405180910390f35b34801561033557600080fd5b5061033e61093e565b005b34801561034c57600080fd5b506103676004803603810190610362919061267d565b6109fa565b005b34801561037557600080fd5b50610390600480360381019061038b919061282d565b610a1a565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612876565b610ab0565b6040516103c69190612b18565b60405180910390f35b3480156103db57600080fd5b506103e4610ac6565b6040516103f19190612b9a565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190612610565b610b54565b60405161042e9190612c9c565b60405180910390f35b34801561044357600080fd5b5061044c610c24565b005b34801561045a57600080fd5b50610463610cac565b6040516104709190612c9c565b60405180910390f35b34801561048557600080fd5b5061048e610cb7565b60405161049b9190612b18565b60405180910390f35b3480156104b057600080fd5b506104b9610ce1565b6040516104c69190612b9a565b60405180910390f35b3480156104db57600080fd5b506104e4610d73565b6040516104f19190612b9a565b60405180910390f35b610514600480360381019061050f9190612876565b610e01565b005b34801561052257600080fd5b5061053d60048036038101906105389190612753565b610f49565b005b34801561054b57600080fd5b50610566600480360381019061056191906126d0565b6110c1565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612876565b61113d565b60405161059c9190612b9a565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061263d565b6111bc565b6040516105d99190612b7f565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612610565b611250565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e657506106e582611348565b5b9050919050565b6103e881565b60606002805461070290612f61565b80601f016020809104026020016040519081016040528092919081815260200182805461072e90612f61565b801561077b5780601f106107505761010080835404028352916020019161077b565b820191906000526020600020905b81548152906001019060200180831161075e57829003601f168201915b5050505050905090565b6000610790826113b2565b6107c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080c82610ab0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610874576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610893611400565b73ffffffffffffffffffffffffffffffffffffffff16141580156108c557506108c3816108be611400565b6111bc565b155b156108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610907838383611408565b505050565b601481565b600061091b6114ba565b6001546000540303905090565b6109338383836114c3565b505050565b6115b381565b610946611400565b73ffffffffffffffffffffffffffffffffffffffff16610964610cb7565b73ffffffffffffffffffffffffffffffffffffffff16146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190612c1c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506109f857600080fd5b565b610a15838383604051806020016040528060008152506110c1565b505050565b610a22611400565b73ffffffffffffffffffffffffffffffffffffffff16610a40610cb7565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612c1c565b60405180910390fd5b8060099080519060200190610aac9291906123e1565b5050565b6000610abb82611979565b600001519050919050565b60098054610ad390612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610aff90612f61565b8015610b4c5780601f10610b2157610100808354040283529160200191610b4c565b820191906000526020600020905b815481529060010190602001808311610b2f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c2c611400565b73ffffffffffffffffffffffffffffffffffffffff16610c4a610cb7565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612c1c565b60405180910390fd5b610caa6000611c08565b565b66071afd498d000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cf090612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1c90612f61565b8015610d695780601f10610d3e57610100808354040283529160200191610d69565b820191906000526020600020905b815481529060010190602001808311610d4c57829003601f168201915b5050505050905090565b600a8054610d8090612f61565b80601f0160208091040260200160405190810160405280929190818152602001828054610dac90612f61565b8015610df95780601f10610dce57610100808354040283529160200191610df9565b820191906000526020600020905b815481529060010190602001808311610ddc57829003601f168201915b505050505081565b6014811115610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90612c5c565b60405180910390fd5b60008111610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612bdc565b60405180910390fd5b6115b381610e94610911565b610e9e9190612d96565b1115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612bfc565b60405180910390fd5b80610ef0610eeb610911565b611cce565b610efa9190612e1d565b341015610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390612c7c565b60405180910390fd5b610f463382611cf3565b50565b610f51611400565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fc3611400565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611070611400565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110b59190612b7f565b60405180910390a35050565b6110cc8484846114c3565b6110eb8373ffffffffffffffffffffffffffffffffffffffff16611d11565b801561110057506110fe84848484611d34565b155b15611137576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611148826113b2565b611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612c3c565b60405180910390fd5b600961119283611e94565b600a6040516020016111a693929190612ae7565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611258611400565b73ffffffffffffffffffffffffffffffffffffffff16611276610cb7565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390612c1c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612bbc565b60405180910390fd5b61134581611c08565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816113bd6114ba565b111580156113cc575060005482105b80156113f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006114ce82611979565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611539576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661155a611400565b73ffffffffffffffffffffffffffffffffffffffff161480611589575061158885611583611400565b6111bc565b5b806115ce5750611597611400565b73ffffffffffffffffffffffffffffffffffffffff166115b684610785565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611607576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561166e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61167b8585856001611ff5565b61168760008487611408565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561190757600054821461190657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119728585856001611ffb565b5050505050565b611981612467565b60008290508061198f6114ba565b1115801561199e575060005481105b15611bd1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611bcf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ab3578092505050611c03565b5b600115611bce57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bc9578092505050611c03565b611ab4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006103e8821015611ce35760009050611cee565b66071afd498d000090505b919050565b611d0d828260405180602001604052806000815250612001565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5a611400565b8786866040518563ffffffff1660e01b8152600401611d7c9493929190612b33565b602060405180830381600087803b158015611d9657600080fd5b505af1925050508015611dc757506040513d601f19601f82011682018060405250810190611dc49190612800565b60015b611e41573d8060008114611df7576040519150601f19603f3d011682016040523d82523d6000602084013e611dfc565b606091505b50600081511415611e39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611edc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff0565b600082905060005b60008214611f0e578080611ef790612fc4565b915050600a82611f079190612dec565b9150611ee4565b60008167ffffffffffffffff811115611f2a57611f296130fa565b5b6040519080825280601f01601f191660200182016040528015611f5c5781602001600182028036833780820191505090505b5090505b60008514611fe957600182611f759190612e77565b9150600a85611f84919061300d565b6030611f909190612d96565b60f81b818381518110611fa657611fa56130cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe29190612dec565b9450611f60565b8093505050505b919050565b50505050565b50505050565b61200e8383836001612013565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612080576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156120bb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c86000868387611ff5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561229257506122918773ffffffffffffffffffffffffffffffffffffffff16611d11565b5b15612358575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123076000888480600101955088611d34565b61233d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561229857826000541461235357600080fd5b6123c4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612359575b8160008190555050506123da6000868387611ffb565b5050505050565b8280546123ed90612f61565b90600052602060002090601f01602090048101928261240f5760008555612456565b82601f1061242857805160ff1916838001178555612456565b82800160010185558215612456579182015b8281111561245557825182559160200191906001019061243a565b5b50905061246391906124aa565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156124c35760008160009055506001016124ab565b5090565b60006124da6124d584612cdc565b612cb7565b9050828152602081018484840111156124f6576124f561312e565b5b612501848285612f1f565b509392505050565b600061251c61251784612d0d565b612cb7565b9050828152602081018484840111156125385761253761312e565b5b612543848285612f1f565b509392505050565b60008135905061255a81613293565b92915050565b60008135905061256f816132aa565b92915050565b600081359050612584816132c1565b92915050565b600081519050612599816132c1565b92915050565b600082601f8301126125b4576125b3613129565b5b81356125c48482602086016124c7565b91505092915050565b600082601f8301126125e2576125e1613129565b5b81356125f2848260208601612509565b91505092915050565b60008135905061260a816132d8565b92915050565b60006020828403121561262657612625613138565b5b60006126348482850161254b565b91505092915050565b6000806040838503121561265457612653613138565b5b60006126628582860161254b565b92505060206126738582860161254b565b9150509250929050565b60008060006060848603121561269657612695613138565b5b60006126a48682870161254b565b93505060206126b58682870161254b565b92505060406126c6868287016125fb565b9150509250925092565b600080600080608085870312156126ea576126e9613138565b5b60006126f88782880161254b565b94505060206127098782880161254b565b935050604061271a878288016125fb565b925050606085013567ffffffffffffffff81111561273b5761273a613133565b5b6127478782880161259f565b91505092959194509250565b6000806040838503121561276a57612769613138565b5b60006127788582860161254b565b925050602061278985828601612560565b9150509250929050565b600080604083850312156127aa576127a9613138565b5b60006127b88582860161254b565b92505060206127c9858286016125fb565b9150509250929050565b6000602082840312156127e9576127e8613138565b5b60006127f784828501612575565b91505092915050565b60006020828403121561281657612815613138565b5b60006128248482850161258a565b91505092915050565b60006020828403121561284357612842613138565b5b600082013567ffffffffffffffff81111561286157612860613133565b5b61286d848285016125cd565b91505092915050565b60006020828403121561288c5761288b613138565b5b600061289a848285016125fb565b91505092915050565b6128ac81612eab565b82525050565b6128bb81612ebd565b82525050565b60006128cc82612d53565b6128d68185612d69565b93506128e6818560208601612f2e565b6128ef8161313d565b840191505092915050565b600061290582612d5e565b61290f8185612d7a565b935061291f818560208601612f2e565b6129288161313d565b840191505092915050565b600061293e82612d5e565b6129488185612d8b565b9350612958818560208601612f2e565b80840191505092915050565b6000815461297181612f61565b61297b8186612d8b565b9450600182166000811461299657600181146129a7576129da565b60ff198316865281860193506129da565b6129b085612d3e565b60005b838110156129d2578154818901526001820191506020810190506129b3565b838801955050505b50505092915050565b60006129f0602683612d7a565b91506129fb8261314e565b604082019050919050565b6000612a13600d83612d7a565b9150612a1e8261319d565b602082019050919050565b6000612a36600883612d7a565b9150612a41826131c6565b602082019050919050565b6000612a59602083612d7a565b9150612a64826131ef565b602082019050919050565b6000612a7c601f83612d7a565b9150612a8782613218565b602082019050919050565b6000612a9f600e83612d7a565b9150612aaa82613241565b602082019050919050565b6000612ac2601083612d7a565b9150612acd8261326a565b602082019050919050565b612ae181612f15565b82525050565b6000612af38286612964565b9150612aff8285612933565b9150612b0b8284612964565b9150819050949350505050565b6000602082019050612b2d60008301846128a3565b92915050565b6000608082019050612b4860008301876128a3565b612b5560208301866128a3565b612b626040830185612ad8565b8181036060830152612b7481846128c1565b905095945050505050565b6000602082019050612b9460008301846128b2565b92915050565b60006020820190508181036000830152612bb481846128fa565b905092915050565b60006020820190508181036000830152612bd5816129e3565b9050919050565b60006020820190508181036000830152612bf581612a06565b9050919050565b60006020820190508181036000830152612c1581612a29565b9050919050565b60006020820190508181036000830152612c3581612a4c565b9050919050565b60006020820190508181036000830152612c5581612a6f565b9050919050565b60006020820190508181036000830152612c7581612a92565b9050919050565b60006020820190508181036000830152612c9581612ab5565b9050919050565b6000602082019050612cb16000830184612ad8565b92915050565b6000612cc1612cd2565b9050612ccd8282612f93565b919050565b6000604051905090565b600067ffffffffffffffff821115612cf757612cf66130fa565b5b612d008261313d565b9050602081019050919050565b600067ffffffffffffffff821115612d2857612d276130fa565b5b612d318261313d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612da182612f15565b9150612dac83612f15565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de157612de061303e565b5b828201905092915050565b6000612df782612f15565b9150612e0283612f15565b925082612e1257612e1161306d565b5b828204905092915050565b6000612e2882612f15565b9150612e3383612f15565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e6c57612e6b61303e565b5b828202905092915050565b6000612e8282612f15565b9150612e8d83612f15565b925082821015612ea057612e9f61303e565b5b828203905092915050565b6000612eb682612ef5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f4c578082015181840152602081019050612f31565b83811115612f5b576000848401525b50505050565b60006002820490506001821680612f7957607f821691505b60208210811415612f8d57612f8c61309c565b5b50919050565b612f9c8261313d565b810181811067ffffffffffffffff82111715612fbb57612fba6130fa565b5b80604052505050565b6000612fcf82612f15565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130025761300161303e565b5b600182019050919050565b600061301882612f15565b915061302383612f15565b9250826130335761303261306d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5155414e544954595f5a45524f00000000000000000000000000000000000000600082015250565b7f534f4c445f4f5554000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f52454143485f4d41585f4d494e54000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b61329c81612eab565b81146132a757600080fd5b50565b6132b381612ebd565b81146132be57600080fd5b50565b6132ca81612ec9565b81146132d557600080fd5b50565b6132e181612f15565b81146132ec57600080fd5b5056fea26469706673582212208571d90d692eeaf7b88ed2bddbd3a7f3fa17342cca56fd24fba62c5cbe922b1064736f6c63430008070033

Deployed Bytecode Sourcemap

45573:1672:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27744:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45804:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30857:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32360:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31923:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45754:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26993:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33225:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45655:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47128:114;;;;;;;;;;;;;:::i;:::-;;33466:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47030:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30665:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45872:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28113:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5502:103;;;;;;;;;;;;;:::i;:::-;;45704:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4851:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31026:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45959:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46275:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32636:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33722:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46772:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32994:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5760:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27744:305;27846:4;27898:25;27883:40;;;:11;:40;;;;:105;;;;27955:33;27940:48;;;:11;:48;;;;27883:105;:158;;;;28005:36;28029:11;28005:23;:36::i;:::-;27883:158;27863:178;;27744:305;;;:::o;45804:46::-;45846:4;45804:46;:::o;30857:100::-;30911:13;30944:5;30937:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30857:100;:::o;32360:204::-;32428:7;32453:16;32461:7;32453;:16::i;:::-;32448:64;;32478:34;;;;;;;;;;;;;;32448:64;32532:15;:24;32548:7;32532:24;;;;;;;;;;;;;;;;;;;;;32525:31;;32360:204;;;:::o;31923:371::-;31996:13;32012:24;32028:7;32012:15;:24::i;:::-;31996:40;;32057:5;32051:11;;:2;:11;;;32047:48;;;32071:24;;;;;;;;;;;;;;32047:48;32128:5;32112:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32138:37;32155:5;32162:12;:10;:12::i;:::-;32138:16;:37::i;:::-;32137:38;32112:63;32108:138;;;32199:35;;;;;;;;;;;;;;32108:138;32258:28;32267:2;32271:7;32280:5;32258:8;:28::i;:::-;31985:309;31923:371;;:::o;45754:43::-;45795:2;45754:43;:::o;26993:303::-;27037:7;27262:15;:13;:15::i;:::-;27247:12;;27231:13;;:28;:46;27224:53;;26993:303;:::o;33225:170::-;33359:28;33369:4;33375:2;33379:7;33359:9;:28::i;:::-;33225:170;;;:::o;45655:41::-;45692:4;45655:41;:::o;47128:114::-;5082:12;:10;:12::i;:::-;5071:23;;:7;:5;:7::i;:::-;:23;;;5063:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47194:10:::1;47186:24;;:47;47211:21;47186:47;;;;;;;;;;;;;;;;;;;;;;;47178:56;;;::::0;::::1;;47128:114::o:0;33466:185::-;33604:39;33621:4;33627:2;33631:7;33604:39;;;;;;;;;;;;:16;:39::i;:::-;33466:185;;;:::o;47030:90::-;5082:12;:10;:12::i;:::-;5071:23;;:7;:5;:7::i;:::-;:23;;;5063:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47109:3:::1;47099:7;:13;;;;;;;;;;;;:::i;:::-;;47030:90:::0;:::o;30665:125::-;30729:7;30756:21;30769:7;30756:12;:21::i;:::-;:26;;;30749:33;;30665:125;;;:::o;45872:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28113:206::-;28177:7;28218:1;28201:19;;:5;:19;;;28197:60;;;28229:28;;;;;;;;;;;;;;28197:60;28283:12;:19;28296:5;28283:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28275:36;;28268:43;;28113:206;;;:::o;5502:103::-;5082:12;:10;:12::i;:::-;5071:23;;:7;:5;:7::i;:::-;:23;;;5063:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5567:30:::1;5594:1;5567:18;:30::i;:::-;5502:103::o:0;45704:43::-;45736:11;45704:43;:::o;4851:87::-;4897:7;4924:6;;;;;;;;;;;4917:13;;4851:87;:::o;31026:104::-;31082:13;31115:7;31108:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31026:104;:::o;45959:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46275:371::-;45795:2;46343:8;:26;;46335:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46418:1;46407:8;:12;46399:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;45692:4;46472:8;46456:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;46448:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46565:8;46539:23;46548:13;:11;:13::i;:::-;46539:8;:23::i;:::-;:34;;;;:::i;:::-;46526:9;:47;;46518:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46607:31;46617:10;46629:8;46607:9;:31::i;:::-;46275:371;:::o;32636:287::-;32747:12;:10;:12::i;:::-;32735:24;;:8;:24;;;32731:54;;;32768:17;;;;;;;;;;;;;;32731:54;32843:8;32798:18;:32;32817:12;:10;:12::i;:::-;32798:32;;;;;;;;;;;;;;;:42;32831:8;32798:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32896:8;32867:48;;32882:12;:10;:12::i;:::-;32867:48;;;32906:8;32867:48;;;;;;:::i;:::-;;;;;;;;32636:287;;:::o;33722:369::-;33889:28;33899:4;33905:2;33909:7;33889:9;:28::i;:::-;33932:15;:2;:13;;;:15::i;:::-;:76;;;;;33952:56;33983:4;33989:2;33993:7;34002:5;33952:30;:56::i;:::-;33951:57;33932:76;33928:156;;;34032:40;;;;;;;;;;;;;;33928:156;33722:369;;;;:::o;46772:250::-;46846:13;46879:16;46887:7;46879;:16::i;:::-;46871:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46975:7;46984:18;:7;:16;:18::i;:::-;47004:8;46958:55;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46944:70;;46772:250;;;:::o;32994:164::-;33091:4;33115:18;:25;33134:5;33115:25;;;;;;;;;;;;;;;:35;33141:8;33115:35;;;;;;;;;;;;;;;;;;;;;;;;;33108:42;;32994:164;;;;:::o;5760:201::-;5082:12;:10;:12::i;:::-;5071:23;;:7;:5;:7::i;:::-;:23;;;5063:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5869:1:::1;5849:22;;:8;:22;;;;5841:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5925:28;5944:8;5925:18;:28::i;:::-;5760:201:::0;:::o;17635:157::-;17720:4;17759:25;17744:40;;;:11;:40;;;;17737:47;;17635:157;;;:::o;34346:187::-;34403:4;34446:7;34427:15;:13;:15::i;:::-;:26;;:53;;;;;34467:13;;34457:7;:23;34427:53;:98;;;;;34498:11;:20;34510:7;34498:20;;;;;;;;;;;:27;;;;;;;;;;;;34497:28;34427:98;34420:105;;34346:187;;;:::o;3575:98::-;3628:7;3655:10;3648:17;;3575:98;:::o;42516:196::-;42658:2;42631:15;:24;42647:7;42631:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42696:7;42692:2;42676:28;;42685:5;42676:28;;;;;;;;;;;;42516:196;;;:::o;26767:92::-;26823:7;26850:1;26843:8;;26767:92;:::o;37459:2130::-;37574:35;37612:21;37625:7;37612:12;:21::i;:::-;37574:59;;37672:4;37650:26;;:13;:18;;;:26;;;37646:67;;37685:28;;;;;;;;;;;;;;37646:67;37726:22;37768:4;37752:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37789:36;37806:4;37812:12;:10;:12::i;:::-;37789:16;:36::i;:::-;37752:73;:126;;;;37866:12;:10;:12::i;:::-;37842:36;;:20;37854:7;37842:11;:20::i;:::-;:36;;;37752:126;37726:153;;37897:17;37892:66;;37923:35;;;;;;;;;;;;;;37892:66;37987:1;37973:16;;:2;:16;;;37969:52;;;37998:23;;;;;;;;;;;;;;37969:52;38034:43;38056:4;38062:2;38066:7;38075:1;38034:21;:43::i;:::-;38142:35;38159:1;38163:7;38172:4;38142:8;:35::i;:::-;38503:1;38473:12;:18;38486:4;38473:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38547:1;38519:12;:16;38532:2;38519:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38565:31;38599:11;:20;38611:7;38599:20;;;;;;;;;;;38565:54;;38650:2;38634:8;:13;;;:18;;;;;;;;;;;;;;;;;;38700:15;38667:8;:23;;;:49;;;;;;;;;;;;;;;;;;38968:19;39000:1;38990:7;:11;38968:33;;39016:31;39050:11;:24;39062:11;39050:24;;;;;;;;;;;39016:58;;39118:1;39093:27;;:8;:13;;;;;;;;;;;;:27;;;39089:384;;;39303:13;;39288:11;:28;39284:174;;39357:4;39341:8;:13;;;:20;;;;;;;;;;;;;;;;;;39410:13;:28;;;39384:8;:23;;;:54;;;;;;;;;;;;;;;;;;39284:174;39089:384;38448:1036;;;39520:7;39516:2;39501:27;;39510:4;39501:27;;;;;;;;;;;;39539:42;39560:4;39566:2;39570:7;39579:1;39539:20;:42::i;:::-;37563:2026;;37459:2130;;;:::o;29494:1109::-;29556:21;;:::i;:::-;29590:12;29605:7;29590:22;;29673:4;29654:15;:13;:15::i;:::-;:23;;:47;;;;;29688:13;;29681:4;:20;29654:47;29650:886;;;29722:31;29756:11;:17;29768:4;29756:17;;;;;;;;;;;29722:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29797:9;:16;;;29792:729;;29868:1;29842:28;;:9;:14;;;:28;;;29838:101;;29906:9;29899:16;;;;;;29838:101;30241:261;30248:4;30241:261;;;30281:6;;;;;;;;30326:11;:17;30338:4;30326:17;;;;;;;;;;;30314:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30400:1;30374:28;;:9;:14;;;:28;;;30370:109;;30442:9;30435:16;;;;;;30370:109;30241:261;;;29792:729;29703:833;29650:886;30564:31;;;;;;;;;;;;;;29494:1109;;;;:::o;6121:191::-;6195:16;6214:6;;;;;;;;;;;6195:25;;6240:8;6231:6;;:17;;;;;;;;;;;;;;;;;;6295:8;6264:40;;6285:8;6264:40;;;;;;;;;;;;6184:128;6121:191;:::o;46058:209::-;46116:14;45846:4;46147:7;:25;46143:117;;;46196:7;46189:14;;;;46143:117;45736:11;46236:12;;46058:209;;;;:::o;34541:104::-;34610:27;34620:2;34624:8;34610:27;;;;;;;;;;;;:9;:27::i;:::-;34541:104;;:::o;7552:326::-;7612:4;7869:1;7847:7;:19;;;:23;7840:30;;7552:326;;;:::o;43204:667::-;43367:4;43404:2;43388:36;;;43425:12;:10;:12::i;:::-;43439:4;43445:7;43454:5;43388:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43384:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43639:1;43622:6;:13;:18;43618:235;;;43668:40;;;;;;;;;;;;;;43618:235;43811:6;43805:13;43796:6;43792:2;43788:15;43781:38;43384:480;43517:45;;;43507:55;;;:6;:55;;;;43500:62;;;43204:667;;;;;;:::o;1137:723::-;1193:13;1423:1;1414:5;:10;1410:53;;;1441:10;;;;;;;;;;;;;;;;;;;;;1410:53;1473:12;1488:5;1473:20;;1504:14;1529:78;1544:1;1536:4;:9;1529:78;;1562:8;;;;;:::i;:::-;;;;1593:2;1585:10;;;;;:::i;:::-;;;1529:78;;;1617:19;1649:6;1639:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1617:39;;1667:154;1683:1;1674:5;:10;1667:154;;1711:1;1701:11;;;;;:::i;:::-;;;1778:2;1770:5;:10;;;;:::i;:::-;1757:2;:24;;;;:::i;:::-;1744:39;;1727:6;1734;1727:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1807:2;1798:11;;;;;:::i;:::-;;;1667:154;;;1845:6;1831:21;;;;;1137:723;;;;:::o;44519:159::-;;;;;:::o;45337:158::-;;;;;:::o;35008:163::-;35131:32;35137:2;35141:8;35151:5;35158:4;35131:5;:32::i;:::-;35008:163;;;:::o;35430:1775::-;35569:20;35592:13;;35569:36;;35634:1;35620:16;;:2;:16;;;35616:48;;;35645:19;;;;;;;;;;;;;;35616:48;35691:1;35679:8;:13;35675:44;;;35701:18;;;;;;;;;;;;;;35675:44;35732:61;35762:1;35766:2;35770:12;35784:8;35732:21;:61::i;:::-;36105:8;36070:12;:16;36083:2;36070:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36169:8;36129:12;:16;36142:2;36129:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36228:2;36195:11;:25;36207:12;36195:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36295:15;36245:11;:25;36257:12;36245:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36328:20;36351:12;36328:35;;36378:11;36407:8;36392:12;:23;36378:37;;36436:4;:23;;;;;36444:15;:2;:13;;;:15::i;:::-;36436:23;36432:641;;;36480:314;36536:12;36532:2;36511:38;;36528:1;36511:38;;;;;;;;;;;;36577:69;36616:1;36620:2;36624:14;;;;;;36640:5;36577:30;:69::i;:::-;36572:174;;36682:40;;;;;;;;;;;;;;36572:174;36789:3;36773:12;:19;;36480:314;;36875:12;36858:13;;:29;36854:43;;36889:8;;;36854:43;36432:641;;;36938:120;36994:14;;;;;;36990:2;36969:40;;36986:1;36969:40;;;;;;;;;;;;37053:3;37037:12;:19;;36938:120;;36432:641;37103:12;37087:13;:28;;;;36045:1082;;37137:60;37166:1;37170:2;37174:12;37188:8;37137:20;:60::i;:::-;35558:1647;35430:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:365::-;10277:3;10298:66;10362:1;10357:3;10298:66;:::i;:::-;10291:73;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10135:365;;;:::o;10506:366::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:::-;11020:3;11041:67;11105:2;11100:3;11041:67;:::i;:::-;11034:74;;11117:93;11206:3;11117:93;:::i;:::-;11235:2;11230:3;11226:12;11219:19;;10878:366;;;:::o;11250:::-;11392:3;11413:67;11477:2;11472:3;11413:67;:::i;:::-;11406:74;;11489:93;11578:3;11489:93;:::i;:::-;11607:2;11602:3;11598:12;11591:19;;11250:366;;;:::o;11622:::-;11764:3;11785:67;11849:2;11844:3;11785:67;:::i;:::-;11778:74;;11861:93;11950:3;11861:93;:::i;:::-;11979:2;11974:3;11970:12;11963:19;;11622:366;;;:::o;11994:118::-;12081:24;12099:5;12081:24;:::i;:::-;12076:3;12069:37;11994:118;;:::o;12118:583::-;12340:3;12362:92;12450:3;12441:6;12362:92;:::i;:::-;12355:99;;12471:95;12562:3;12553:6;12471:95;:::i;:::-;12464:102;;12583:92;12671:3;12662:6;12583:92;:::i;:::-;12576:99;;12692:3;12685:10;;12118:583;;;;;;:::o;12707:222::-;12800:4;12838:2;12827:9;12823:18;12815:26;;12851:71;12919:1;12908:9;12904:17;12895:6;12851:71;:::i;:::-;12707:222;;;;:::o;12935:640::-;13130:4;13168:3;13157:9;13153:19;13145:27;;13182:71;13250:1;13239:9;13235:17;13226:6;13182:71;:::i;:::-;13263:72;13331:2;13320:9;13316:18;13307:6;13263:72;:::i;:::-;13345;13413:2;13402:9;13398:18;13389:6;13345:72;:::i;:::-;13464:9;13458:4;13454:20;13449:2;13438:9;13434:18;13427:48;13492:76;13563:4;13554:6;13492:76;:::i;:::-;13484:84;;12935:640;;;;;;;:::o;13581:210::-;13668:4;13706:2;13695:9;13691:18;13683:26;;13719:65;13781:1;13770:9;13766:17;13757:6;13719:65;:::i;:::-;13581:210;;;;:::o;13797:313::-;13910:4;13948:2;13937:9;13933:18;13925:26;;13997:9;13991:4;13987:20;13983:1;13972:9;13968:17;13961:47;14025:78;14098:4;14089:6;14025:78;:::i;:::-;14017:86;;13797:313;;;;:::o;14116:419::-;14282:4;14320:2;14309:9;14305:18;14297:26;;14369:9;14363:4;14359:20;14355:1;14344:9;14340:17;14333:47;14397:131;14523:4;14397:131;:::i;:::-;14389:139;;14116:419;;;:::o;14541:::-;14707:4;14745:2;14734:9;14730:18;14722:26;;14794:9;14788:4;14784:20;14780:1;14769:9;14765:17;14758:47;14822:131;14948:4;14822:131;:::i;:::-;14814:139;;14541:419;;;:::o;14966:::-;15132:4;15170:2;15159:9;15155:18;15147:26;;15219:9;15213:4;15209:20;15205:1;15194:9;15190:17;15183:47;15247:131;15373:4;15247:131;:::i;:::-;15239:139;;14966:419;;;:::o;15391:::-;15557:4;15595:2;15584:9;15580:18;15572:26;;15644:9;15638:4;15634:20;15630:1;15619:9;15615:17;15608:47;15672:131;15798:4;15672:131;:::i;:::-;15664:139;;15391:419;;;:::o;15816:::-;15982:4;16020:2;16009:9;16005:18;15997:26;;16069:9;16063:4;16059:20;16055:1;16044:9;16040:17;16033:47;16097:131;16223:4;16097:131;:::i;:::-;16089:139;;15816:419;;;:::o;16241:::-;16407:4;16445:2;16434:9;16430:18;16422:26;;16494:9;16488:4;16484:20;16480:1;16469:9;16465:17;16458:47;16522:131;16648:4;16522:131;:::i;:::-;16514:139;;16241:419;;;:::o;16666:::-;16832:4;16870:2;16859:9;16855:18;16847:26;;16919:9;16913:4;16909:20;16905:1;16894:9;16890:17;16883:47;16947:131;17073:4;16947:131;:::i;:::-;16939:139;;16666:419;;;:::o;17091:222::-;17184:4;17222:2;17211:9;17207:18;17199:26;;17235:71;17303:1;17292:9;17288:17;17279:6;17235:71;:::i;:::-;17091:222;;;;:::o;17319:129::-;17353:6;17380:20;;:::i;:::-;17370:30;;17409:33;17437:4;17429:6;17409:33;:::i;:::-;17319:129;;;:::o;17454:75::-;17487:6;17520:2;17514:9;17504:19;;17454:75;:::o;17535:307::-;17596:4;17686:18;17678:6;17675:30;17672:56;;;17708:18;;:::i;:::-;17672:56;17746:29;17768:6;17746:29;:::i;:::-;17738:37;;17830:4;17824;17820:15;17812:23;;17535:307;;;:::o;17848:308::-;17910:4;18000:18;17992:6;17989:30;17986:56;;;18022:18;;:::i;:::-;17986:56;18060:29;18082:6;18060:29;:::i;:::-;18052:37;;18144:4;18138;18134:15;18126:23;;17848:308;;;:::o;18162:141::-;18211:4;18234:3;18226:11;;18257:3;18254:1;18247:14;18291:4;18288:1;18278:18;18270:26;;18162:141;;;:::o;18309:98::-;18360:6;18394:5;18388:12;18378:22;;18309:98;;;:::o;18413:99::-;18465:6;18499:5;18493:12;18483:22;;18413:99;;;:::o;18518:168::-;18601:11;18635:6;18630:3;18623:19;18675:4;18670:3;18666:14;18651:29;;18518:168;;;;:::o;18692:169::-;18776:11;18810:6;18805:3;18798:19;18850:4;18845:3;18841:14;18826:29;;18692:169;;;;:::o;18867:148::-;18969:11;19006:3;18991:18;;18867:148;;;;:::o;19021:305::-;19061:3;19080:20;19098:1;19080:20;:::i;:::-;19075:25;;19114:20;19132:1;19114:20;:::i;:::-;19109:25;;19268:1;19200:66;19196:74;19193:1;19190:81;19187:107;;;19274:18;;:::i;:::-;19187:107;19318:1;19315;19311:9;19304:16;;19021:305;;;;:::o;19332:185::-;19372:1;19389:20;19407:1;19389:20;:::i;:::-;19384:25;;19423:20;19441:1;19423:20;:::i;:::-;19418:25;;19462:1;19452:35;;19467:18;;:::i;:::-;19452:35;19509:1;19506;19502:9;19497:14;;19332:185;;;;:::o;19523:348::-;19563:7;19586:20;19604:1;19586:20;:::i;:::-;19581:25;;19620:20;19638:1;19620:20;:::i;:::-;19615:25;;19808:1;19740:66;19736:74;19733:1;19730:81;19725:1;19718:9;19711:17;19707:105;19704:131;;;19815:18;;:::i;:::-;19704:131;19863:1;19860;19856:9;19845:20;;19523:348;;;;:::o;19877:191::-;19917:4;19937:20;19955:1;19937:20;:::i;:::-;19932:25;;19971:20;19989:1;19971:20;:::i;:::-;19966:25;;20010:1;20007;20004:8;20001:34;;;20015:18;;:::i;:::-;20001:34;20060:1;20057;20053:9;20045:17;;19877:191;;;;:::o;20074:96::-;20111:7;20140:24;20158:5;20140:24;:::i;:::-;20129:35;;20074:96;;;:::o;20176:90::-;20210:7;20253:5;20246:13;20239:21;20228:32;;20176:90;;;:::o;20272:149::-;20308:7;20348:66;20341:5;20337:78;20326:89;;20272:149;;;:::o;20427:126::-;20464:7;20504:42;20497:5;20493:54;20482:65;;20427:126;;;:::o;20559:77::-;20596:7;20625:5;20614:16;;20559:77;;;:::o;20642:154::-;20726:6;20721:3;20716;20703:30;20788:1;20779:6;20774:3;20770:16;20763:27;20642:154;;;:::o;20802:307::-;20870:1;20880:113;20894:6;20891:1;20888:13;20880:113;;;20979:1;20974:3;20970:11;20964:18;20960:1;20955:3;20951:11;20944:39;20916:2;20913:1;20909:10;20904:15;;20880:113;;;21011:6;21008:1;21005:13;21002:101;;;21091:1;21082:6;21077:3;21073:16;21066:27;21002:101;20851:258;20802:307;;;:::o;21115:320::-;21159:6;21196:1;21190:4;21186:12;21176:22;;21243:1;21237:4;21233:12;21264:18;21254:81;;21320:4;21312:6;21308:17;21298:27;;21254:81;21382:2;21374:6;21371:14;21351:18;21348:38;21345:84;;;21401:18;;:::i;:::-;21345:84;21166:269;21115:320;;;:::o;21441:281::-;21524:27;21546:4;21524:27;:::i;:::-;21516:6;21512:40;21654:6;21642:10;21639:22;21618:18;21606:10;21603:34;21600:62;21597:88;;;21665:18;;:::i;:::-;21597:88;21705:10;21701:2;21694:22;21484:238;21441:281;;:::o;21728:233::-;21767:3;21790:24;21808:5;21790:24;:::i;:::-;21781:33;;21836:66;21829:5;21826:77;21823:103;;;21906:18;;:::i;:::-;21823:103;21953:1;21946:5;21942:13;21935:20;;21728:233;;;:::o;21967:176::-;21999:1;22016:20;22034:1;22016:20;:::i;:::-;22011:25;;22050:20;22068:1;22050:20;:::i;:::-;22045:25;;22089:1;22079:35;;22094:18;;:::i;:::-;22079:35;22135:1;22132;22128:9;22123:14;;21967:176;;;;:::o;22149:180::-;22197:77;22194:1;22187:88;22294:4;22291:1;22284:15;22318:4;22315:1;22308:15;22335:180;22383:77;22380:1;22373:88;22480:4;22477:1;22470:15;22504:4;22501:1;22494:15;22521:180;22569:77;22566:1;22559:88;22666:4;22663:1;22656:15;22690:4;22687:1;22680:15;22707:180;22755:77;22752:1;22745:88;22852:4;22849:1;22842:15;22876:4;22873:1;22866:15;22893:180;22941:77;22938:1;22931:88;23038:4;23035:1;23028:15;23062:4;23059:1;23052:15;23079:117;23188:1;23185;23178:12;23202:117;23311:1;23308;23301:12;23325:117;23434:1;23431;23424:12;23448:117;23557:1;23554;23547:12;23571:102;23612:6;23663:2;23659:7;23654:2;23647:5;23643:14;23639:28;23629:38;;23571:102;;;:::o;23679:225::-;23819:34;23815:1;23807:6;23803:14;23796:58;23888:8;23883:2;23875:6;23871:15;23864:33;23679:225;:::o;23910:163::-;24050:15;24046:1;24038:6;24034:14;24027:39;23910:163;:::o;24079:158::-;24219:10;24215:1;24207:6;24203:14;24196:34;24079:158;:::o;24243:182::-;24383:34;24379:1;24371:6;24367:14;24360:58;24243:182;:::o;24431:181::-;24571:33;24567:1;24559:6;24555:14;24548:57;24431:181;:::o;24618:164::-;24758:16;24754:1;24746:6;24742:14;24735:40;24618:164;:::o;24788:166::-;24928:18;24924:1;24916:6;24912:14;24905:42;24788:166;:::o;24960:122::-;25033:24;25051:5;25033:24;:::i;:::-;25026:5;25023:35;25013:63;;25072:1;25069;25062:12;25013:63;24960:122;:::o;25088:116::-;25158:21;25173:5;25158:21;:::i;:::-;25151:5;25148:32;25138:60;;25194:1;25191;25184:12;25138:60;25088:116;:::o;25210:120::-;25282:23;25299:5;25282:23;:::i;:::-;25275:5;25272:34;25262:62;;25320:1;25317;25310:12;25262:62;25210:120;:::o;25336:122::-;25409:24;25427:5;25409:24;:::i;:::-;25402:5;25399:35;25389:63;;25448:1;25445;25438:12;25389:63;25336:122;:::o

Swarm Source

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