ETH Price: $3,259.18 (-0.28%)
Gas: 1 Gwei

Token

prehistoric dinosaur (DINOSAUR)
 

Overview

Max Total Supply

925 DINOSAUR

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dotsnft.eth
Balance
1 DINOSAUR
0xe34a6d588a1a867d88dee9928f5cbe9dc86c13ef
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:
prehistoricdinosaur

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-05-30
*/

// 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: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

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

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

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

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

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

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

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

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

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

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

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

// File: dangss.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;




/*
GoblinGrlz.sol

Contract by @NftDoyler
*/

contract prehistoricdinosaur is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 3300;
    uint256 public TEAM_MINT_MAX = 20;

    uint256 public publicPrice = 0.003 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 10;
    uint256 constant public PUBLIC_MINT_LIMIT = 20;

    uint256 public TOTAL_SUPPLY_TEAM;

    string public revealedURI;
    
    string public hiddenURI = "ipfs://QmdAL5mtqmPpkM2puoGeBnbgUVqZqAKYHErmoy1A2NWYMe";

    // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata
    string public CONTRACT_URI = "ipfs://QmdAL5mtqmPpkM2puoGeBnbgUVqZqAKYHErmoy1A2NWYMe";

    bool public paused = true;
    bool public revealed = false;

    bool public freeSale = true;
    bool public publicSale = false;

    address constant internal CHARITY_ADDRESS = 0xe179EAE3c81fDCf08915F505d151DaA5520e6382;
    address constant internal DEV_ADDRESS = 0xe179EAE3c81fDCf08915F505d151DaA5520e6382;
    address constant internal WEB_ADDRESS = 0xe179EAE3c81fDCf08915F505d151DaA5520e6382;
    address public teamWallet = 0xe179EAE3c81fDCf08915F505d151DaA5520e6382;

    mapping(address => bool) public userMintedFree;
    mapping(address => uint256) public numUserMints;

    constructor() ERC721A("prehistoric dinosaur", "DINOSAUR") { }

    // This function is if you want to override the first Token ID# for ERC721A
    // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint)
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

    function teamMint(uint256 quantity) public payable mintCompliance(quantity) {
        require(msg.sender == teamWallet, "Team minting only");
        require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left");
        require(totalSupply() >= 10, "Team mints after free");

        TOTAL_SUPPLY_TEAM += quantity;

        _safeMint(msg.sender, quantity);
    }
    
    function freeMint(uint256 quantity) external payable mintCompliance(quantity) {
       // require(freeSale, "Free sale inactive");
       // require(msg.value == 0, "This phase is free");
        require(quantity == 10, "Only 10 free");

        uint256 newSupply = totalSupply() + quantity;
        
        require(newSupply <= 300, "Not enough free supply");

        require(!userMintedFree[msg.sender], "User max free limit");
        
        userMintedFree[msg.sender] = true;

        if(newSupply == 300) {
            freeSale = false;
            publicSale = true;
        }

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

    // Note: walletOfOwner is only really necessary for enumerability when staking/using on websites etc.
        // That said, it's a public view so we can keep it in.
        // This could also be optimized if someone REALLY wanted, but it's just a public view.
        // Check the pinned tweets of 0xInuarashi for more ideas on this method!
        // For now, this is just the version that existed in v1.
    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

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

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

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal.
            // That said, it's a public view method so gas efficiency shouldn't come into play.
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return hiddenURI;
        }
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

    function setTeamMintMax(uint256 _teamMintMax) public onlyOwner {
        TEAM_MINT_MAX = _teamMintMax;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    // Note: This method can be hidden/removed if this is a constant.
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenURI = _hiddenMetadataUri;
    }

    function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner {
        revealed = _revealed;
        revealedURI = _baseUri;
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    function setContractURI(string memory _contractURI) public onlyOwner {
        CONTRACT_URI = _contractURI;
    }

    // Note: Another option is to inherit Pausable without implementing the logic yourself.
        // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
        freeSale = !_state;
    }
    function setFreeEnabled(bool _state) public onlyOwner {
        freeSale = _state;
        publicSale = !_state;
    }

    function setTeamWalletAddress(address _teamWallet) public onlyOwner {
        teamWallet = _teamWallet;
    }

    function withdraw() external payable onlyOwner {
        // Get the current funds to calculate initial percentages
        uint256 currBalance = address(this).balance;

        (bool succ, ) = payable(DEV_ADDRESS).call{
            value: (currBalance * 2833) / 10000
        }("");
        require(succ, "Dev transfer failed");

        (succ, ) = payable(WEB_ADDRESS).call{
            value: (currBalance * 2833) / 10000
        }("");
        require(succ, "Web transfer failed");

        (succ, ) = payable(CHARITY_ADDRESS).call{
            value: (currBalance * 1500) / 10000
        }("");
        require(succ, "Charity transfer failed");

        // Withdraw the ENTIRE remaining balance to the team wallet
        (succ, ) = payable(teamWallet).call{
            value: address(this).balance
        }("");
        require(succ, "Team (remaining) transfer failed");
    }

    // Owner-only mint functionality to "Airdrop" mints to specific users
        // Note: These will likely end up hidden on OpenSea
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    modifier mintCompliance(uint256 quantity) {
      //  require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
      //  require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526014600955660aa87bee538000600a556040518060600160405280603581526020016200524f60359139600d908051906020019062000045929190620002f8565b506040518060600160405280603581526020016200524f60359139600e908051906020019062000077929190620002f8565b506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055506000600f60036101000a81548160ff02191690831515021790555073e179eae3c81fdcf08915f505d151daa5520e6382600f60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200014657600080fd5b506040518060400160405280601481526020017f707265686973746f7269632064696e6f736175720000000000000000000000008152506040518060400160405280600881526020017f44494e4f53415552000000000000000000000000000000000000000000000000815250620001d3620001c76200022360201b60201c565b6200022b60201b60201c565b8160039080519060200190620001eb929190620002f8565b50806004908051906020019062000204929190620002f8565b5062000215620002ef60201b60201c565b60018190555050506200040d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200030690620003a8565b90600052602060002090601f0160209004810192826200032a576000855562000376565b82601f106200034557805160ff191683800117855562000376565b8280016001018555821562000376579182015b828111156200037557825182559160200191906001019062000358565b5b50905062000385919062000389565b5090565b5b80821115620003a45760008160009055506001016200038a565b5090565b60006002820490506001821680620003c157607f821691505b60208210811415620003d857620003d7620003de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e32806200041d6000396000f3fe6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610ada578063e985e9c514610b05578063f2fde38b14610b42578063f7e8d6ea14610b6b576102e4565b8063c627525514610a4b578063c87b56dd14610a74578063e0a8085314610ab1576102e4565b806395d89b411461094d578063a22cb46514610978578063a4b41a15146109a1578063a945bf80146109cc578063b88d4fde146109f7578063bceae77b14610a20576102e4565b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f146108a55780638da5cb5b146108d05780639007bd72146108fb578063938e3d7b14610924576102e4565b80637af3a1af146108375780637c928fe91461086057806388dedc141461087c576102e4565b806364f64076146107135780636b39fca41461075057806370a082311461077b578063715018a6146107b8578063763ea95f146107cf5780637aeb7242146107fa576102e4565b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146106575780635c975abb146106825780635ed3e25e146106ad5780636352211e146106d6576102e4565b806351830227146105d857806355f804b31461060357806356b4f6731461062c576102e4565b806332cb6b0c146104e957806333bc1c5c146105145780633ccfd60b1461053f57806342842e0e14610549578063438b6300146105725780634fdd43cb146105af576102e4565b806318160ddd116102a157806318160ddd1461040957806323b872dd146104345780632c4b23341461045d5780632db11544146104865780632fbba115146104a25780632fecf20b146104be576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630f15ad8d146103b757806316c38b3c146103e0575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613bfa565b610b96565b60405161031d919061428a565b60405180910390f35b34801561033257600080fd5b5061033b610c28565b60405161034891906142a5565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613c9d565b610cba565b6040516103859190614201565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613b31565b610d36565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613c9d565b610edd565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613b71565b610f63565b005b34801561041557600080fd5b5061041e610ffc565b60405161042b9190614527565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613a1b565b611013565b005b34801561046957600080fd5b50610484600480360381019061047f91906139ae565b611023565b005b6104a0600480360381019061049b9190613c9d565b6110e3565b005b6104bc60048036038101906104b79190613c9d565b6112db565b005b3480156104ca57600080fd5b506104d3611487565b6040516104e09190614527565b60405180910390f35b3480156104f557600080fd5b506104fe61148c565b60405161050b9190614527565b60405180910390f35b34801561052057600080fd5b50610529611492565b604051610536919061428a565b60405180910390f35b6105476114a5565b005b34801561055557600080fd5b50610570600480360381019061056b9190613a1b565b611886565b005b34801561057e57600080fd5b50610599600480360381019061059491906139ae565b6118a6565b6040516105a69190614268565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613c54565b6119b1565b005b3480156105e457600080fd5b506105ed611a47565b6040516105fa919061428a565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613c54565b611a5a565b005b34801561063857600080fd5b50610641611af0565b60405161064e91906142a5565b60405180910390f35b34801561066357600080fd5b5061066c611b7e565b6040516106799190614201565b60405180910390f35b34801561068e57600080fd5b50610697611ba4565b6040516106a4919061428a565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613b9e565b611bb7565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613c9d565b611c68565b60405161070a9190614201565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906139ae565b611c7a565b604051610747919061428a565b60405180910390f35b34801561075c57600080fd5b50610765611c9a565b6040516107729190614527565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d91906139ae565b611ca0565b6040516107af9190614527565b60405180910390f35b3480156107c457600080fd5b506107cd611d59565b005b3480156107db57600080fd5b506107e4611de1565b6040516107f19190614527565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c91906139ae565b611de7565b60405161082e9190614527565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613b71565b611dff565b005b61087a60048036038101906108759190613c9d565b611eb3565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613b71565b6120df565b005b3480156108b157600080fd5b506108ba612193565b6040516108c791906142a5565b60405180910390f35b3480156108dc57600080fd5b506108e5612221565b6040516108f29190614201565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613cca565b61224a565b005b34801561093057600080fd5b5061094b60048036038101906109469190613c54565b61232d565b005b34801561095957600080fd5b506109626123c3565b60405161096f91906142a5565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613af1565b612455565b005b3480156109ad57600080fd5b506109b66125cd565b6040516109c3919061428a565b60405180910390f35b3480156109d857600080fd5b506109e16125e0565b6040516109ee9190614527565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613a6e565b6125e6565b005b348015610a2c57600080fd5b50610a35612659565b604051610a429190614527565b60405180910390f35b348015610a5757600080fd5b50610a726004803603810190610a6d9190613c9d565b61265e565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190613c9d565b6126e4565b604051610aa891906142a5565b60405180910390f35b348015610abd57600080fd5b50610ad86004803603810190610ad39190613b71565b612808565b005b348015610ae657600080fd5b50610aef6128a1565b604051610afc91906142a5565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b2791906139db565b612933565b604051610b39919061428a565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b6491906139ae565b6129c7565b005b348015610b7757600080fd5b50610b80612abf565b604051610b8d91906142a5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c215750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610c3790614830565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390614830565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b6000610cc582612b4d565b610cfb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4182612bac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc8612c7a565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b57610df481610def612c7a565b612933565b610e2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ee5612c82565b73ffffffffffffffffffffffffffffffffffffffff16610f03612221565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614387565b60405180910390fd5b8060098190555050565b610f6b612c82565b73ffffffffffffffffffffffffffffffffffffffff16610f89612221565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690614387565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000611006612c8a565b6002546001540303905090565b61101e838383612c93565b505050565b61102b612c82565b73ffffffffffffffffffffffffffffffffffffffff16611049612221565b73ffffffffffffffffffffffffffffffffffffffff161461109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690614387565b60405180910390fd5b80600f60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80610ce4816110f0610ffc565b6110fa9190614665565b111561113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906144e7565b60405180910390fd5b600f60039054906101000a900460ff1661118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614427565b60405180910390fd5b600a8211156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590614467565b60405180910390fd5b6000600a5490506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601484826112279190614665565b1115611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90614347565b60405180910390fd5b61127c848361127791906146ec565b61303d565b83816112889190614665565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112d53385613149565b50505050565b80610ce4816112e8610ffc565b6112f29190614665565b1115611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906144e7565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90614307565b60405180910390fd5b60095482600b546113d49190614665565b1115611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c906143e7565b60405180910390fd5b600a61141f610ffc565b1015611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790614327565b60405180910390fd5b81600b60008282546114729190614665565b925050819055506114833383613149565b5050565b600a81565b610ce481565b600f60039054906101000a900460ff1681565b6114ad612c82565b73ffffffffffffffffffffffffffffffffffffffff166114cb612221565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614387565b60405180910390fd5b6000479050600073e179eae3c81fdcf08915f505d151daa5520e638273ffffffffffffffffffffffffffffffffffffffff16612710610b118461156491906146ec565b61156e91906146bb565b60405161157a906141ec565b60006040518083038185875af1925050503d80600081146115b7576040519150601f19603f3d011682016040523d82523d6000602084013e6115bc565b606091505b5050905080611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906144a7565b60405180910390fd5b73e179eae3c81fdcf08915f505d151daa5520e638273ffffffffffffffffffffffffffffffffffffffff16612710610b118461163c91906146ec565b61164691906146bb565b604051611652906141ec565b60006040518083038185875af1925050503d806000811461168f576040519150601f19603f3d011682016040523d82523d6000602084013e611694565b606091505b505080915050806116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614487565b60405180910390fd5b73e179eae3c81fdcf08915f505d151daa5520e638273ffffffffffffffffffffffffffffffffffffffff166127106105dc8461171691906146ec565b61172091906146bb565b60405161172c906141ec565b60006040518083038185875af1925050503d8060008114611769576040519150601f19603f3d011682016040523d82523d6000602084013e61176e565b606091505b505080915050806117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90614447565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117fa906141ec565b60006040518083038185875af1925050503d8060008114611837576040519150601f19603f3d011682016040523d82523d6000602084013e61183c565b606091505b50508091505080611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614367565b60405180910390fd5b5050565b6118a1838383604051806020016040528060008152506125e6565b505050565b606060006118b383611ca0565b905060008167ffffffffffffffff8111156118d1576118d06149c9565b5b6040519080825280602002602001820160405280156118ff5781602001602082028036833780820191505090505b50905060006001905060005b838110801561191c5750610ce48211155b156119a557600061192c83611c68565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199157828483815181106119765761197561499a565b5b602002602001018181525050818061198d90614893565b9250505b828061199c90614893565b9350505061190b565b82945050505050919050565b6119b9612c82565b73ffffffffffffffffffffffffffffffffffffffff166119d7612221565b73ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614387565b60405180910390fd5b80600d9080519060200190611a439291906137c2565b5050565b600f60019054906101000a900460ff1681565b611a62612c82565b73ffffffffffffffffffffffffffffffffffffffff16611a80612221565b73ffffffffffffffffffffffffffffffffffffffff1614611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90614387565b60405180910390fd5b80600c9080519060200190611aec9291906137c2565b5050565b600e8054611afd90614830565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2990614830565b8015611b765780601f10611b4b57610100808354040283529160200191611b76565b820191906000526020600020905b815481529060010190602001808311611b5957829003601f168201915b505050505081565b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b611bbf612c82565b73ffffffffffffffffffffffffffffffffffffffff16611bdd612221565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614387565b60405180910390fd5b81600f60016101000a81548160ff02191690831515021790555080600c9080519060200190611c639291906137c2565b505050565b6000611c7382612bac565b9050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d08576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d61612c82565b73ffffffffffffffffffffffffffffffffffffffff16611d7f612221565b73ffffffffffffffffffffffffffffffffffffffff1614611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614387565b60405180910390fd5b611ddf6000613167565b565b600b5481565b60116020528060005260406000206000915090505481565b611e07612c82565b73ffffffffffffffffffffffffffffffffffffffff16611e25612221565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614387565b60405180910390fd5b80600f60036101000a81548160ff0219169083151502179055508015600f60026101000a81548160ff02191690831515021790555050565b80610ce481611ec0610ffc565b611eca9190614665565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f02906144e7565b60405180910390fd5b600a8214611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590614507565b60405180910390fd5b600082611f59610ffc565b611f639190614665565b905061012c811115611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906144c7565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e906143a7565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061012c8114156120d0576000600f60026101000a81548160ff0219169083151502179055506001600f60036101000a81548160ff0219169083151502179055505b6120da3384613149565b505050565b6120e7612c82565b73ffffffffffffffffffffffffffffffffffffffff16612105612221565b73ffffffffffffffffffffffffffffffffffffffff161461215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614387565b60405180910390fd5b80600f60026101000a81548160ff0219169083151502179055508015600f60036101000a81548160ff02191690831515021790555050565b600d80546121a090614830565b80601f01602080910402602001604051908101604052809291908181526020018280546121cc90614830565b80156122195780601f106121ee57610100808354040283529160200191612219565b820191906000526020600020905b8154815290600101906020018083116121fc57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612252612c82565b73ffffffffffffffffffffffffffffffffffffffff16612270612221565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90614387565b60405180910390fd5b81610ce4816122d3610ffc565b6122dd9190614665565b111561231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906144e7565b60405180910390fd5b6123288284613149565b505050565b612335612c82565b73ffffffffffffffffffffffffffffffffffffffff16612353612221565b73ffffffffffffffffffffffffffffffffffffffff16146123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614387565b60405180910390fd5b80600e90805190602001906123bf9291906137c2565b5050565b6060600480546123d290614830565b80601f01602080910402602001604051908101604052809291908181526020018280546123fe90614830565b801561244b5780601f106124205761010080835404028352916020019161244b565b820191906000526020600020905b81548152906001019060200180831161242e57829003601f168201915b5050505050905090565b61245d612c7a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006124cf612c7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661257c612c7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125c1919061428a565b60405180910390a35050565b600f60029054906101000a900460ff1681565b600a5481565b6125f1848484612c93565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126535761261c8484848461322b565b612652576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601481565b612666612c82565b73ffffffffffffffffffffffffffffffffffffffff16612684612221565b73ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614387565b60405180910390fd5b80600a8190555050565b60606126ef82612b4d565b61272e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612725906143c7565b60405180910390fd5b600f60019054906101000a900460ff161561277557600c61274e8361338b565b60405160200161275f9291906141bd565b6040516020818303038152906040529050612803565b600d805461278290614830565b80601f01602080910402602001604051908101604052809291908181526020018280546127ae90614830565b80156127fb5780601f106127d0576101008083540402835291602001916127fb565b820191906000526020600020905b8154815290600101906020018083116127de57829003601f168201915b505050505090505b919050565b612810612c82565b73ffffffffffffffffffffffffffffffffffffffff1661282e612221565b73ffffffffffffffffffffffffffffffffffffffff1614612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b90614387565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6060600e80546128b090614830565b80601f01602080910402602001604051908101604052809291908181526020018280546128dc90614830565b80156129295780601f106128fe57610100808354040283529160200191612929565b820191906000526020600020905b81548152906001019060200180831161290c57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129cf612c82565b73ffffffffffffffffffffffffffffffffffffffff166129ed612221565b73ffffffffffffffffffffffffffffffffffffffff1614612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614387565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa906142c7565b60405180910390fd5b612abc81613167565b50565b600c8054612acc90614830565b80601f0160208091040260200160405190810160405280929190818152602001828054612af890614830565b8015612b455780601f10612b1a57610100808354040283529160200191612b45565b820191906000526020600020905b815481529060010190602001808311612b2857829003601f168201915b505050505081565b600081612b58612c8a565b11158015612b67575060015482105b8015612ba5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080612bbb612c8a565b11612c4357600154811015612c425760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612c40575b6000811415612c36576005600083600190039350838152602001908152602001600020549050612c0b565b8092505050612c75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000612c9e82612bac565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d05576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612d26612c7a565b73ffffffffffffffffffffffffffffffffffffffff161480612d555750612d5485612d4f612c7a565b612933565b5b80612d9a5750612d63612c7a565b73ffffffffffffffffffffffffffffffffffffffff16612d8284610cba565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612dd3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e3a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e4785858560016134ec565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612f44866134f2565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612fce576000600184019050600060056000838152602001908152602001600020541415612fcc576001548114612fcb578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461303685858560016134fc565b5050505050565b803411156131025760003373ffffffffffffffffffffffffffffffffffffffff16823461306a9190614746565b604051613076906141ec565b60006040518083038185875af1925050503d80600081146130b3576040519150601f19603f3d011682016040523d82523d6000602084013e6130b8565b606091505b50509050806130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f3906142e7565b60405180910390fd5b50613146565b80341015613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313c90614407565b60405180910390fd5b5b50565b613163828260405180602001604052806000815250613502565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613251612c7a565b8786866040518563ffffffff1660e01b8152600401613273949392919061421c565b602060405180830381600087803b15801561328d57600080fd5b505af19250505080156132be57506040513d601f19601f820116820180604052508101906132bb9190613c27565b60015b613338573d80600081146132ee576040519150601f19603f3d011682016040523d82523d6000602084013e6132f3565b606091505b50600081511415613330576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156133d3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134e7565b600082905060005b600082146134055780806133ee90614893565b915050600a826133fe91906146bb565b91506133db565b60008167ffffffffffffffff811115613421576134206149c9565b5b6040519080825280601f01601f1916602001820160405280156134535781602001600182028036833780820191505090505b5090505b600085146134e05760018261346c9190614746565b9150600a8561347b91906148dc565b60306134879190614665565b60f81b81838151811061349d5761349c61499a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134d991906146bb565b9450613457565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613570576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156135ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135b860008583866134ec565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161361d600185146137b8565b901b60a042901b61362d866134f2565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613731575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136e1600087848060010195508761322b565b613717576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061367257826001541461372c57600080fd5b61379c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613732575b8160018190555050506137b260008583866134fc565b50505050565b6000819050919050565b8280546137ce90614830565b90600052602060002090601f0160209004810192826137f05760008555613837565b82601f1061380957805160ff1916838001178555613837565b82800160010185558215613837579182015b8281111561383657825182559160200191906001019061381b565b5b5090506138449190613848565b5090565b5b80821115613861576000816000905550600101613849565b5090565b600061387861387384614567565b614542565b905082815260208101848484011115613894576138936149fd565b5b61389f8482856147ee565b509392505050565b60006138ba6138b584614598565b614542565b9050828152602081018484840111156138d6576138d56149fd565b5b6138e18482856147ee565b509392505050565b6000813590506138f881614da0565b92915050565b60008135905061390d81614db7565b92915050565b60008135905061392281614dce565b92915050565b60008151905061393781614dce565b92915050565b600082601f830112613952576139516149f8565b5b8135613962848260208601613865565b91505092915050565b600082601f8301126139805761397f6149f8565b5b81356139908482602086016138a7565b91505092915050565b6000813590506139a881614de5565b92915050565b6000602082840312156139c4576139c3614a07565b5b60006139d2848285016138e9565b91505092915050565b600080604083850312156139f2576139f1614a07565b5b6000613a00858286016138e9565b9250506020613a11858286016138e9565b9150509250929050565b600080600060608486031215613a3457613a33614a07565b5b6000613a42868287016138e9565b9350506020613a53868287016138e9565b9250506040613a6486828701613999565b9150509250925092565b60008060008060808587031215613a8857613a87614a07565b5b6000613a96878288016138e9565b9450506020613aa7878288016138e9565b9350506040613ab887828801613999565b925050606085013567ffffffffffffffff811115613ad957613ad8614a02565b5b613ae58782880161393d565b91505092959194509250565b60008060408385031215613b0857613b07614a07565b5b6000613b16858286016138e9565b9250506020613b27858286016138fe565b9150509250929050565b60008060408385031215613b4857613b47614a07565b5b6000613b56858286016138e9565b9250506020613b6785828601613999565b9150509250929050565b600060208284031215613b8757613b86614a07565b5b6000613b95848285016138fe565b91505092915050565b60008060408385031215613bb557613bb4614a07565b5b6000613bc3858286016138fe565b925050602083013567ffffffffffffffff811115613be457613be3614a02565b5b613bf08582860161396b565b9150509250929050565b600060208284031215613c1057613c0f614a07565b5b6000613c1e84828501613913565b91505092915050565b600060208284031215613c3d57613c3c614a07565b5b6000613c4b84828501613928565b91505092915050565b600060208284031215613c6a57613c69614a07565b5b600082013567ffffffffffffffff811115613c8857613c87614a02565b5b613c948482850161396b565b91505092915050565b600060208284031215613cb357613cb2614a07565b5b6000613cc184828501613999565b91505092915050565b60008060408385031215613ce157613ce0614a07565b5b6000613cef85828601613999565b9250506020613d00858286016138e9565b9150509250929050565b6000613d16838361419f565b60208301905092915050565b613d2b8161477a565b82525050565b6000613d3c826145ee565b613d46818561461c565b9350613d51836145c9565b8060005b83811015613d82578151613d698882613d0a565b9750613d748361460f565b925050600181019050613d55565b5085935050505092915050565b613d988161478c565b82525050565b6000613da9826145f9565b613db3818561462d565b9350613dc38185602086016147fd565b613dcc81614a0c565b840191505092915050565b6000613de282614604565b613dec8185614649565b9350613dfc8185602086016147fd565b613e0581614a0c565b840191505092915050565b6000613e1b82614604565b613e25818561465a565b9350613e358185602086016147fd565b80840191505092915050565b60008154613e4e81614830565b613e58818661465a565b94506001821660008114613e735760018114613e8457613eb7565b60ff19831686528186019350613eb7565b613e8d856145d9565b60005b83811015613eaf57815481890152600182019150602081019050613e90565b838801955050505b50505092915050565b6000613ecd602683614649565b9150613ed882614a1d565b604082019050919050565b6000613ef0600f83614649565b9150613efb82614a6c565b602082019050919050565b6000613f13601183614649565b9150613f1e82614a95565b602082019050919050565b6000613f36601583614649565b9150613f4182614abe565b602082019050919050565b6000613f59601383614649565b9150613f6482614ae7565b602082019050919050565b6000613f7c602083614649565b9150613f8782614b10565b602082019050919050565b6000613f9f60058361465a565b9150613faa82614b39565b600582019050919050565b6000613fc2602083614649565b9150613fcd82614b62565b602082019050919050565b6000613fe5601383614649565b9150613ff082614b8b565b602082019050919050565b6000614008602f83614649565b915061401382614bb4565b604082019050919050565b600061402b601283614649565b915061403682614c03565b602082019050919050565b600061404e601383614649565b915061405982614c2c565b602082019050919050565b6000614071601483614649565b915061407c82614c55565b602082019050919050565b6000614094601783614649565b915061409f82614c7e565b602082019050919050565b60006140b7601183614649565b91506140c282614ca7565b602082019050919050565b60006140da60008361463e565b91506140e582614cd0565b600082019050919050565b60006140fd601383614649565b915061410882614cd3565b602082019050919050565b6000614120601383614649565b915061412b82614cfc565b602082019050919050565b6000614143601683614649565b915061414e82614d25565b602082019050919050565b6000614166601583614649565b915061417182614d4e565b602082019050919050565b6000614189600c83614649565b915061419482614d77565b602082019050919050565b6141a8816147e4565b82525050565b6141b7816147e4565b82525050565b60006141c98285613e41565b91506141d58284613e10565b91506141e082613f92565b91508190509392505050565b60006141f7826140cd565b9150819050919050565b60006020820190506142166000830184613d22565b92915050565b60006080820190506142316000830187613d22565b61423e6020830186613d22565b61424b60408301856141ae565b818103606083015261425d8184613d9e565b905095945050505050565b600060208201905081810360008301526142828184613d31565b905092915050565b600060208201905061429f6000830184613d8f565b92915050565b600060208201905081810360008301526142bf8184613dd7565b905092915050565b600060208201905081810360008301526142e081613ec0565b9050919050565b6000602082019050818103600083015261430081613ee3565b9050919050565b6000602082019050818103600083015261432081613f06565b9050919050565b6000602082019050818103600083015261434081613f29565b9050919050565b6000602082019050818103600083015261436081613f4c565b9050919050565b6000602082019050818103600083015261438081613f6f565b9050919050565b600060208201905081810360008301526143a081613fb5565b9050919050565b600060208201905081810360008301526143c081613fd8565b9050919050565b600060208201905081810360008301526143e081613ffb565b9050919050565b600060208201905081810360008301526144008161401e565b9050919050565b6000602082019050818103600083015261442081614041565b9050919050565b6000602082019050818103600083015261444081614064565b9050919050565b6000602082019050818103600083015261446081614087565b9050919050565b60006020820190508181036000830152614480816140aa565b9050919050565b600060208201905081810360008301526144a0816140f0565b9050919050565b600060208201905081810360008301526144c081614113565b9050919050565b600060208201905081810360008301526144e081614136565b9050919050565b6000602082019050818103600083015261450081614159565b9050919050565b600060208201905081810360008301526145208161417c565b9050919050565b600060208201905061453c60008301846141ae565b92915050565b600061454c61455d565b90506145588282614862565b919050565b6000604051905090565b600067ffffffffffffffff821115614582576145816149c9565b5b61458b82614a0c565b9050602081019050919050565b600067ffffffffffffffff8211156145b3576145b26149c9565b5b6145bc82614a0c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614670826147e4565b915061467b836147e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146b0576146af61490d565b5b828201905092915050565b60006146c6826147e4565b91506146d1836147e4565b9250826146e1576146e061493c565b5b828204905092915050565b60006146f7826147e4565b9150614702836147e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561473b5761473a61490d565b5b828202905092915050565b6000614751826147e4565b915061475c836147e4565b92508282101561476f5761476e61490d565b5b828203905092915050565b6000614785826147c4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561481b578082015181840152602081019050614800565b8381111561482a576000848401525b50505050565b6000600282049050600182168061484857607f821691505b6020821081141561485c5761485b61496b565b5b50919050565b61486b82614a0c565b810181811067ffffffffffffffff8211171561488a576148896149c9565b5b80604052505050565b600061489e826147e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d1576148d061490d565b5b600182019050919050565b60006148e7826147e4565b91506148f2836147e4565b9250826149025761490161493c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b7f5465616d206d696e747320616674657220667265650000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f5465616d202872656d61696e696e6729207472616e73666572206661696c6564600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f43686172697479207472616e73666572206661696c6564000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f576562207472616e73666572206661696c656400000000000000000000000000600082015250565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f4e6f7420656e6f756768206672656520737570706c7900000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f4f6e6c7920313020667265650000000000000000000000000000000000000000600082015250565b614da98161477a565b8114614db457600080fd5b50565b614dc08161478c565b8114614dcb57600080fd5b50565b614dd781614798565b8114614de257600080fd5b50565b614dee816147e4565b8114614df957600080fd5b5056fea264697066735822122059c2291a699053ce159b4e65488c3b03ef9917174d669481b3767176651f18a564736f6c63430008070033697066733a2f2f516d64414c356d74716d50706b4d3270756f4765426e62675556715a71414b594845726d6f793141324e57594d65

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610ada578063e985e9c514610b05578063f2fde38b14610b42578063f7e8d6ea14610b6b576102e4565b8063c627525514610a4b578063c87b56dd14610a74578063e0a8085314610ab1576102e4565b806395d89b411461094d578063a22cb46514610978578063a4b41a15146109a1578063a945bf80146109cc578063b88d4fde146109f7578063bceae77b14610a20576102e4565b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f146108a55780638da5cb5b146108d05780639007bd72146108fb578063938e3d7b14610924576102e4565b80637af3a1af146108375780637c928fe91461086057806388dedc141461087c576102e4565b806364f64076146107135780636b39fca41461075057806370a082311461077b578063715018a6146107b8578063763ea95f146107cf5780637aeb7242146107fa576102e4565b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146106575780635c975abb146106825780635ed3e25e146106ad5780636352211e146106d6576102e4565b806351830227146105d857806355f804b31461060357806356b4f6731461062c576102e4565b806332cb6b0c146104e957806333bc1c5c146105145780633ccfd60b1461053f57806342842e0e14610549578063438b6300146105725780634fdd43cb146105af576102e4565b806318160ddd116102a157806318160ddd1461040957806323b872dd146104345780632c4b23341461045d5780632db11544146104865780632fbba115146104a25780632fecf20b146104be576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630f15ad8d146103b757806316c38b3c146103e0575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613bfa565b610b96565b60405161031d919061428a565b60405180910390f35b34801561033257600080fd5b5061033b610c28565b60405161034891906142a5565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613c9d565b610cba565b6040516103859190614201565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613b31565b610d36565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613c9d565b610edd565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613b71565b610f63565b005b34801561041557600080fd5b5061041e610ffc565b60405161042b9190614527565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613a1b565b611013565b005b34801561046957600080fd5b50610484600480360381019061047f91906139ae565b611023565b005b6104a0600480360381019061049b9190613c9d565b6110e3565b005b6104bc60048036038101906104b79190613c9d565b6112db565b005b3480156104ca57600080fd5b506104d3611487565b6040516104e09190614527565b60405180910390f35b3480156104f557600080fd5b506104fe61148c565b60405161050b9190614527565b60405180910390f35b34801561052057600080fd5b50610529611492565b604051610536919061428a565b60405180910390f35b6105476114a5565b005b34801561055557600080fd5b50610570600480360381019061056b9190613a1b565b611886565b005b34801561057e57600080fd5b50610599600480360381019061059491906139ae565b6118a6565b6040516105a69190614268565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613c54565b6119b1565b005b3480156105e457600080fd5b506105ed611a47565b6040516105fa919061428a565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613c54565b611a5a565b005b34801561063857600080fd5b50610641611af0565b60405161064e91906142a5565b60405180910390f35b34801561066357600080fd5b5061066c611b7e565b6040516106799190614201565b60405180910390f35b34801561068e57600080fd5b50610697611ba4565b6040516106a4919061428a565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613b9e565b611bb7565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613c9d565b611c68565b60405161070a9190614201565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906139ae565b611c7a565b604051610747919061428a565b60405180910390f35b34801561075c57600080fd5b50610765611c9a565b6040516107729190614527565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d91906139ae565b611ca0565b6040516107af9190614527565b60405180910390f35b3480156107c457600080fd5b506107cd611d59565b005b3480156107db57600080fd5b506107e4611de1565b6040516107f19190614527565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c91906139ae565b611de7565b60405161082e9190614527565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613b71565b611dff565b005b61087a60048036038101906108759190613c9d565b611eb3565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613b71565b6120df565b005b3480156108b157600080fd5b506108ba612193565b6040516108c791906142a5565b60405180910390f35b3480156108dc57600080fd5b506108e5612221565b6040516108f29190614201565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613cca565b61224a565b005b34801561093057600080fd5b5061094b60048036038101906109469190613c54565b61232d565b005b34801561095957600080fd5b506109626123c3565b60405161096f91906142a5565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613af1565b612455565b005b3480156109ad57600080fd5b506109b66125cd565b6040516109c3919061428a565b60405180910390f35b3480156109d857600080fd5b506109e16125e0565b6040516109ee9190614527565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613a6e565b6125e6565b005b348015610a2c57600080fd5b50610a35612659565b604051610a429190614527565b60405180910390f35b348015610a5757600080fd5b50610a726004803603810190610a6d9190613c9d565b61265e565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190613c9d565b6126e4565b604051610aa891906142a5565b60405180910390f35b348015610abd57600080fd5b50610ad86004803603810190610ad39190613b71565b612808565b005b348015610ae657600080fd5b50610aef6128a1565b604051610afc91906142a5565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b2791906139db565b612933565b604051610b39919061428a565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b6491906139ae565b6129c7565b005b348015610b7757600080fd5b50610b80612abf565b604051610b8d91906142a5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c215750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610c3790614830565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390614830565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b6000610cc582612b4d565b610cfb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4182612bac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc8612c7a565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b57610df481610def612c7a565b612933565b610e2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ee5612c82565b73ffffffffffffffffffffffffffffffffffffffff16610f03612221565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614387565b60405180910390fd5b8060098190555050565b610f6b612c82565b73ffffffffffffffffffffffffffffffffffffffff16610f89612221565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690614387565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000611006612c8a565b6002546001540303905090565b61101e838383612c93565b505050565b61102b612c82565b73ffffffffffffffffffffffffffffffffffffffff16611049612221565b73ffffffffffffffffffffffffffffffffffffffff161461109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690614387565b60405180910390fd5b80600f60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80610ce4816110f0610ffc565b6110fa9190614665565b111561113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906144e7565b60405180910390fd5b600f60039054906101000a900460ff1661118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614427565b60405180910390fd5b600a8211156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590614467565b60405180910390fd5b6000600a5490506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601484826112279190614665565b1115611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90614347565b60405180910390fd5b61127c848361127791906146ec565b61303d565b83816112889190614665565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112d53385613149565b50505050565b80610ce4816112e8610ffc565b6112f29190614665565b1115611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906144e7565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90614307565b60405180910390fd5b60095482600b546113d49190614665565b1115611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c906143e7565b60405180910390fd5b600a61141f610ffc565b1015611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145790614327565b60405180910390fd5b81600b60008282546114729190614665565b925050819055506114833383613149565b5050565b600a81565b610ce481565b600f60039054906101000a900460ff1681565b6114ad612c82565b73ffffffffffffffffffffffffffffffffffffffff166114cb612221565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614387565b60405180910390fd5b6000479050600073e179eae3c81fdcf08915f505d151daa5520e638273ffffffffffffffffffffffffffffffffffffffff16612710610b118461156491906146ec565b61156e91906146bb565b60405161157a906141ec565b60006040518083038185875af1925050503d80600081146115b7576040519150601f19603f3d011682016040523d82523d6000602084013e6115bc565b606091505b5050905080611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906144a7565b60405180910390fd5b73e179eae3c81fdcf08915f505d151daa5520e638273ffffffffffffffffffffffffffffffffffffffff16612710610b118461163c91906146ec565b61164691906146bb565b604051611652906141ec565b60006040518083038185875af1925050503d806000811461168f576040519150601f19603f3d011682016040523d82523d6000602084013e611694565b606091505b505080915050806116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614487565b60405180910390fd5b73e179eae3c81fdcf08915f505d151daa5520e638273ffffffffffffffffffffffffffffffffffffffff166127106105dc8461171691906146ec565b61172091906146bb565b60405161172c906141ec565b60006040518083038185875af1925050503d8060008114611769576040519150601f19603f3d011682016040523d82523d6000602084013e61176e565b606091505b505080915050806117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90614447565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117fa906141ec565b60006040518083038185875af1925050503d8060008114611837576040519150601f19603f3d011682016040523d82523d6000602084013e61183c565b606091505b50508091505080611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614367565b60405180910390fd5b5050565b6118a1838383604051806020016040528060008152506125e6565b505050565b606060006118b383611ca0565b905060008167ffffffffffffffff8111156118d1576118d06149c9565b5b6040519080825280602002602001820160405280156118ff5781602001602082028036833780820191505090505b50905060006001905060005b838110801561191c5750610ce48211155b156119a557600061192c83611c68565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199157828483815181106119765761197561499a565b5b602002602001018181525050818061198d90614893565b9250505b828061199c90614893565b9350505061190b565b82945050505050919050565b6119b9612c82565b73ffffffffffffffffffffffffffffffffffffffff166119d7612221565b73ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614387565b60405180910390fd5b80600d9080519060200190611a439291906137c2565b5050565b600f60019054906101000a900460ff1681565b611a62612c82565b73ffffffffffffffffffffffffffffffffffffffff16611a80612221565b73ffffffffffffffffffffffffffffffffffffffff1614611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90614387565b60405180910390fd5b80600c9080519060200190611aec9291906137c2565b5050565b600e8054611afd90614830565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2990614830565b8015611b765780601f10611b4b57610100808354040283529160200191611b76565b820191906000526020600020905b815481529060010190602001808311611b5957829003601f168201915b505050505081565b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b611bbf612c82565b73ffffffffffffffffffffffffffffffffffffffff16611bdd612221565b73ffffffffffffffffffffffffffffffffffffffff1614611c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2a90614387565b60405180910390fd5b81600f60016101000a81548160ff02191690831515021790555080600c9080519060200190611c639291906137c2565b505050565b6000611c7382612bac565b9050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d08576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d61612c82565b73ffffffffffffffffffffffffffffffffffffffff16611d7f612221565b73ffffffffffffffffffffffffffffffffffffffff1614611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614387565b60405180910390fd5b611ddf6000613167565b565b600b5481565b60116020528060005260406000206000915090505481565b611e07612c82565b73ffffffffffffffffffffffffffffffffffffffff16611e25612221565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614387565b60405180910390fd5b80600f60036101000a81548160ff0219169083151502179055508015600f60026101000a81548160ff02191690831515021790555050565b80610ce481611ec0610ffc565b611eca9190614665565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f02906144e7565b60405180910390fd5b600a8214611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590614507565b60405180910390fd5b600082611f59610ffc565b611f639190614665565b905061012c811115611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906144c7565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e906143a7565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061012c8114156120d0576000600f60026101000a81548160ff0219169083151502179055506001600f60036101000a81548160ff0219169083151502179055505b6120da3384613149565b505050565b6120e7612c82565b73ffffffffffffffffffffffffffffffffffffffff16612105612221565b73ffffffffffffffffffffffffffffffffffffffff161461215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614387565b60405180910390fd5b80600f60026101000a81548160ff0219169083151502179055508015600f60036101000a81548160ff02191690831515021790555050565b600d80546121a090614830565b80601f01602080910402602001604051908101604052809291908181526020018280546121cc90614830565b80156122195780601f106121ee57610100808354040283529160200191612219565b820191906000526020600020905b8154815290600101906020018083116121fc57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612252612c82565b73ffffffffffffffffffffffffffffffffffffffff16612270612221565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90614387565b60405180910390fd5b81610ce4816122d3610ffc565b6122dd9190614665565b111561231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906144e7565b60405180910390fd5b6123288284613149565b505050565b612335612c82565b73ffffffffffffffffffffffffffffffffffffffff16612353612221565b73ffffffffffffffffffffffffffffffffffffffff16146123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090614387565b60405180910390fd5b80600e90805190602001906123bf9291906137c2565b5050565b6060600480546123d290614830565b80601f01602080910402602001604051908101604052809291908181526020018280546123fe90614830565b801561244b5780601f106124205761010080835404028352916020019161244b565b820191906000526020600020905b81548152906001019060200180831161242e57829003601f168201915b5050505050905090565b61245d612c7a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006124cf612c7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661257c612c7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125c1919061428a565b60405180910390a35050565b600f60029054906101000a900460ff1681565b600a5481565b6125f1848484612c93565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126535761261c8484848461322b565b612652576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601481565b612666612c82565b73ffffffffffffffffffffffffffffffffffffffff16612684612221565b73ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d190614387565b60405180910390fd5b80600a8190555050565b60606126ef82612b4d565b61272e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612725906143c7565b60405180910390fd5b600f60019054906101000a900460ff161561277557600c61274e8361338b565b60405160200161275f9291906141bd565b6040516020818303038152906040529050612803565b600d805461278290614830565b80601f01602080910402602001604051908101604052809291908181526020018280546127ae90614830565b80156127fb5780601f106127d0576101008083540402835291602001916127fb565b820191906000526020600020905b8154815290600101906020018083116127de57829003601f168201915b505050505090505b919050565b612810612c82565b73ffffffffffffffffffffffffffffffffffffffff1661282e612221565b73ffffffffffffffffffffffffffffffffffffffff1614612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b90614387565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6060600e80546128b090614830565b80601f01602080910402602001604051908101604052809291908181526020018280546128dc90614830565b80156129295780601f106128fe57610100808354040283529160200191612929565b820191906000526020600020905b81548152906001019060200180831161290c57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129cf612c82565b73ffffffffffffffffffffffffffffffffffffffff166129ed612221565b73ffffffffffffffffffffffffffffffffffffffff1614612a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3a90614387565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa906142c7565b60405180910390fd5b612abc81613167565b50565b600c8054612acc90614830565b80601f0160208091040260200160405190810160405280929190818152602001828054612af890614830565b8015612b455780601f10612b1a57610100808354040283529160200191612b45565b820191906000526020600020905b815481529060010190602001808311612b2857829003601f168201915b505050505081565b600081612b58612c8a565b11158015612b67575060015482105b8015612ba5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080612bbb612c8a565b11612c4357600154811015612c425760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612c40575b6000811415612c36576005600083600190039350838152602001908152602001600020549050612c0b565b8092505050612c75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000612c9e82612bac565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d05576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612d26612c7a565b73ffffffffffffffffffffffffffffffffffffffff161480612d555750612d5485612d4f612c7a565b612933565b5b80612d9a5750612d63612c7a565b73ffffffffffffffffffffffffffffffffffffffff16612d8284610cba565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612dd3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e3a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e4785858560016134ec565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612f44866134f2565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612fce576000600184019050600060056000838152602001908152602001600020541415612fcc576001548114612fcb578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461303685858560016134fc565b5050505050565b803411156131025760003373ffffffffffffffffffffffffffffffffffffffff16823461306a9190614746565b604051613076906141ec565b60006040518083038185875af1925050503d80600081146130b3576040519150601f19603f3d011682016040523d82523d6000602084013e6130b8565b606091505b50509050806130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f3906142e7565b60405180910390fd5b50613146565b80341015613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313c90614407565b60405180910390fd5b5b50565b613163828260405180602001604052806000815250613502565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613251612c7a565b8786866040518563ffffffff1660e01b8152600401613273949392919061421c565b602060405180830381600087803b15801561328d57600080fd5b505af19250505080156132be57506040513d601f19601f820116820180604052508101906132bb9190613c27565b60015b613338573d80600081146132ee576040519150601f19603f3d011682016040523d82523d6000602084013e6132f3565b606091505b50600081511415613330576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156133d3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134e7565b600082905060005b600082146134055780806133ee90614893565b915050600a826133fe91906146bb565b91506133db565b60008167ffffffffffffffff811115613421576134206149c9565b5b6040519080825280601f01601f1916602001820160405280156134535781602001600182028036833780820191505090505b5090505b600085146134e05760018261346c9190614746565b9150600a8561347b91906148dc565b60306134879190614665565b60f81b81838151811061349d5761349c61499a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134d991906146bb565b9450613457565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613570576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156135ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135b860008583866134ec565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161361d600185146137b8565b901b60a042901b61362d866134f2565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613731575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136e1600087848060010195508761322b565b613717576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061367257826001541461372c57600080fd5b61379c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613732575b8160018190555050506137b260008583866134fc565b50505050565b6000819050919050565b8280546137ce90614830565b90600052602060002090601f0160209004810192826137f05760008555613837565b82601f1061380957805160ff1916838001178555613837565b82800160010185558215613837579182015b8281111561383657825182559160200191906001019061381b565b5b5090506138449190613848565b5090565b5b80821115613861576000816000905550600101613849565b5090565b600061387861387384614567565b614542565b905082815260208101848484011115613894576138936149fd565b5b61389f8482856147ee565b509392505050565b60006138ba6138b584614598565b614542565b9050828152602081018484840111156138d6576138d56149fd565b5b6138e18482856147ee565b509392505050565b6000813590506138f881614da0565b92915050565b60008135905061390d81614db7565b92915050565b60008135905061392281614dce565b92915050565b60008151905061393781614dce565b92915050565b600082601f830112613952576139516149f8565b5b8135613962848260208601613865565b91505092915050565b600082601f8301126139805761397f6149f8565b5b81356139908482602086016138a7565b91505092915050565b6000813590506139a881614de5565b92915050565b6000602082840312156139c4576139c3614a07565b5b60006139d2848285016138e9565b91505092915050565b600080604083850312156139f2576139f1614a07565b5b6000613a00858286016138e9565b9250506020613a11858286016138e9565b9150509250929050565b600080600060608486031215613a3457613a33614a07565b5b6000613a42868287016138e9565b9350506020613a53868287016138e9565b9250506040613a6486828701613999565b9150509250925092565b60008060008060808587031215613a8857613a87614a07565b5b6000613a96878288016138e9565b9450506020613aa7878288016138e9565b9350506040613ab887828801613999565b925050606085013567ffffffffffffffff811115613ad957613ad8614a02565b5b613ae58782880161393d565b91505092959194509250565b60008060408385031215613b0857613b07614a07565b5b6000613b16858286016138e9565b9250506020613b27858286016138fe565b9150509250929050565b60008060408385031215613b4857613b47614a07565b5b6000613b56858286016138e9565b9250506020613b6785828601613999565b9150509250929050565b600060208284031215613b8757613b86614a07565b5b6000613b95848285016138fe565b91505092915050565b60008060408385031215613bb557613bb4614a07565b5b6000613bc3858286016138fe565b925050602083013567ffffffffffffffff811115613be457613be3614a02565b5b613bf08582860161396b565b9150509250929050565b600060208284031215613c1057613c0f614a07565b5b6000613c1e84828501613913565b91505092915050565b600060208284031215613c3d57613c3c614a07565b5b6000613c4b84828501613928565b91505092915050565b600060208284031215613c6a57613c69614a07565b5b600082013567ffffffffffffffff811115613c8857613c87614a02565b5b613c948482850161396b565b91505092915050565b600060208284031215613cb357613cb2614a07565b5b6000613cc184828501613999565b91505092915050565b60008060408385031215613ce157613ce0614a07565b5b6000613cef85828601613999565b9250506020613d00858286016138e9565b9150509250929050565b6000613d16838361419f565b60208301905092915050565b613d2b8161477a565b82525050565b6000613d3c826145ee565b613d46818561461c565b9350613d51836145c9565b8060005b83811015613d82578151613d698882613d0a565b9750613d748361460f565b925050600181019050613d55565b5085935050505092915050565b613d988161478c565b82525050565b6000613da9826145f9565b613db3818561462d565b9350613dc38185602086016147fd565b613dcc81614a0c565b840191505092915050565b6000613de282614604565b613dec8185614649565b9350613dfc8185602086016147fd565b613e0581614a0c565b840191505092915050565b6000613e1b82614604565b613e25818561465a565b9350613e358185602086016147fd565b80840191505092915050565b60008154613e4e81614830565b613e58818661465a565b94506001821660008114613e735760018114613e8457613eb7565b60ff19831686528186019350613eb7565b613e8d856145d9565b60005b83811015613eaf57815481890152600182019150602081019050613e90565b838801955050505b50505092915050565b6000613ecd602683614649565b9150613ed882614a1d565b604082019050919050565b6000613ef0600f83614649565b9150613efb82614a6c565b602082019050919050565b6000613f13601183614649565b9150613f1e82614a95565b602082019050919050565b6000613f36601583614649565b9150613f4182614abe565b602082019050919050565b6000613f59601383614649565b9150613f6482614ae7565b602082019050919050565b6000613f7c602083614649565b9150613f8782614b10565b602082019050919050565b6000613f9f60058361465a565b9150613faa82614b39565b600582019050919050565b6000613fc2602083614649565b9150613fcd82614b62565b602082019050919050565b6000613fe5601383614649565b9150613ff082614b8b565b602082019050919050565b6000614008602f83614649565b915061401382614bb4565b604082019050919050565b600061402b601283614649565b915061403682614c03565b602082019050919050565b600061404e601383614649565b915061405982614c2c565b602082019050919050565b6000614071601483614649565b915061407c82614c55565b602082019050919050565b6000614094601783614649565b915061409f82614c7e565b602082019050919050565b60006140b7601183614649565b91506140c282614ca7565b602082019050919050565b60006140da60008361463e565b91506140e582614cd0565b600082019050919050565b60006140fd601383614649565b915061410882614cd3565b602082019050919050565b6000614120601383614649565b915061412b82614cfc565b602082019050919050565b6000614143601683614649565b915061414e82614d25565b602082019050919050565b6000614166601583614649565b915061417182614d4e565b602082019050919050565b6000614189600c83614649565b915061419482614d77565b602082019050919050565b6141a8816147e4565b82525050565b6141b7816147e4565b82525050565b60006141c98285613e41565b91506141d58284613e10565b91506141e082613f92565b91508190509392505050565b60006141f7826140cd565b9150819050919050565b60006020820190506142166000830184613d22565b92915050565b60006080820190506142316000830187613d22565b61423e6020830186613d22565b61424b60408301856141ae565b818103606083015261425d8184613d9e565b905095945050505050565b600060208201905081810360008301526142828184613d31565b905092915050565b600060208201905061429f6000830184613d8f565b92915050565b600060208201905081810360008301526142bf8184613dd7565b905092915050565b600060208201905081810360008301526142e081613ec0565b9050919050565b6000602082019050818103600083015261430081613ee3565b9050919050565b6000602082019050818103600083015261432081613f06565b9050919050565b6000602082019050818103600083015261434081613f29565b9050919050565b6000602082019050818103600083015261436081613f4c565b9050919050565b6000602082019050818103600083015261438081613f6f565b9050919050565b600060208201905081810360008301526143a081613fb5565b9050919050565b600060208201905081810360008301526143c081613fd8565b9050919050565b600060208201905081810360008301526143e081613ffb565b9050919050565b600060208201905081810360008301526144008161401e565b9050919050565b6000602082019050818103600083015261442081614041565b9050919050565b6000602082019050818103600083015261444081614064565b9050919050565b6000602082019050818103600083015261446081614087565b9050919050565b60006020820190508181036000830152614480816140aa565b9050919050565b600060208201905081810360008301526144a0816140f0565b9050919050565b600060208201905081810360008301526144c081614113565b9050919050565b600060208201905081810360008301526144e081614136565b9050919050565b6000602082019050818103600083015261450081614159565b9050919050565b600060208201905081810360008301526145208161417c565b9050919050565b600060208201905061453c60008301846141ae565b92915050565b600061454c61455d565b90506145588282614862565b919050565b6000604051905090565b600067ffffffffffffffff821115614582576145816149c9565b5b61458b82614a0c565b9050602081019050919050565b600067ffffffffffffffff8211156145b3576145b26149c9565b5b6145bc82614a0c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614670826147e4565b915061467b836147e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146b0576146af61490d565b5b828201905092915050565b60006146c6826147e4565b91506146d1836147e4565b9250826146e1576146e061493c565b5b828204905092915050565b60006146f7826147e4565b9150614702836147e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561473b5761473a61490d565b5b828202905092915050565b6000614751826147e4565b915061475c836147e4565b92508282101561476f5761476e61490d565b5b828203905092915050565b6000614785826147c4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561481b578082015181840152602081019050614800565b8381111561482a576000848401525b50505050565b6000600282049050600182168061484857607f821691505b6020821081141561485c5761485b61496b565b5b50919050565b61486b82614a0c565b810181811067ffffffffffffffff8211171561488a576148896149c9565b5b80604052505050565b600061489e826147e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d1576148d061490d565b5b600182019050919050565b60006148e7826147e4565b91506148f2836147e4565b9250826149025761490161493c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b7f5465616d206d696e747320616674657220667265650000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f5465616d202872656d61696e696e6729207472616e73666572206661696c6564600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f43686172697479207472616e73666572206661696c6564000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f576562207472616e73666572206661696c656400000000000000000000000000600082015250565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f4e6f7420656e6f756768206672656520737570706c7900000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f4f6e6c7920313020667265650000000000000000000000000000000000000000600082015250565b614da98161477a565b8114614db457600080fd5b50565b614dc08161478c565b8114614dcb57600080fd5b50565b614dd781614798565b8114614de257600080fd5b50565b614dee816147e4565b8114614df957600080fd5b5056fea264697066735822122059c2291a699053ce159b4e65488c3b03ef9917174d669481b3767176651f18a564736f6c63430008070033

Deployed Bytecode Sourcemap

44034:8798:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25701:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25161:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49693:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50797:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17674:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26587:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51241:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47102:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46043:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44229:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44090:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44790:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51360:907;;;:::i;:::-;;26828:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48096:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50108:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44719:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49927:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44594:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45100:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44687:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50246:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23422:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45179:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44138:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19299:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;44341:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45232:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50983:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46441:653;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51112:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44420:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52411:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50470:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23802:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25977:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44756:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44180:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44286:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49811:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48793:608;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50888:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49588:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26356:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44382:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18620:615;18705:4;19020:10;19005:25;;:11;:25;;;;:102;;;;19097:10;19082:25;;:11;:25;;;;19005:102;:179;;;;19174:10;19159:25;;:11;:25;;;;19005:179;18985:199;;18620:615;;;:::o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;;;;;;;;;;;;;25789:64;25873:15;:24;25889:7;25873:24;;;;;;;;;;;;;;;;;;;;;25866:31;;25701:204;;;:::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;25310:11;;:2;:11;;;25306:48;;;25330:24;;;;;;;;;;;;;;25306:48;25394:5;25371:28;;:19;:17;:19::i;:::-;:28;;;25367:175;;25419:44;25436:5;25443:19;:17;:19::i;:::-;25419:16;:44::i;:::-;25414:128;;25491:35;;;;;;;;;;;;;;25414:128;25367:175;25581:2;25554:15;:24;25570:7;25554:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25619:7;25615:2;25599:28;;25608:5;25599:28;;;;;;;;;;;;25223:412;25161:474;;:::o;49693:110::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49783:12:::1;49767:13;:28;;;;49693:110:::0;:::o;50797:83::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50866:6:::1;50857;;:15;;;;;;;;;;;;;;;;;;50797:83:::0;:::o;17674:315::-;17727:7;17955:15;:13;:15::i;:::-;17940:12;;17924:13;;:28;:46;17917:53;;17674:315;:::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;51241:111::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51333:11:::1;51320:10;;:24;;;;;;;;;;;;;;;;;;51241:111:::0;:::o;47102:571::-;47172:8;44127:4;52693:8;52677:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52669:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;47201:10:::1;;;;;;;;;;;47193:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44277:2;47255:8;:33;;47247:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47323:13;47339:11;;47323:27;;47361:17;47381:12;:24;47394:10;47381:24;;;;;;;;;;;;;;;;47361:44;;44330:2;47454:8;47442:9;:20;;;;:::i;:::-;:41;;47434:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47528:31;47550:8;47542:5;:16;;;;:::i;:::-;47528:13;:31::i;:::-;47612:8;47600:9;:20;;;;:::i;:::-;47572:12;:24;47585:10;47572:24;;;;;;;;;;;;;;;:49;;;;47634:31;47644:10;47656:8;47634:9;:31::i;:::-;47182:491;;47102:571:::0;;:::o;46043:386::-;46109:8;44127:4;52693:8;52677:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52669:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46152:10:::1;;;;;;;;;;;46138:24;;:10;:24;;;46130:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46235:13;;46223:8;46203:17;;:28;;;;:::i;:::-;:45;;46195:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46307:2;46290:13;:11;:13::i;:::-;:19;;46282:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46369:8;46348:17;;:29;;;;;;;:::i;:::-;;;;;;;;46390:31;46400:10;46412:8;46390:9;:31::i;:::-;46043:386:::0;;:::o;44229:50::-;44277:2;44229:50;:::o;44090:41::-;44127:4;44090:41;:::o;44790:30::-;;;;;;;;;;;;;:::o;51360:907::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51485:19:::1;51507:21;51485:43;;51542:9;44962:42;51557:25;;51627:5;51619:4;51605:11;:18;;;;:::i;:::-;51604:28;;;;:::i;:::-;51557:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51541:106;;;51666:4;51658:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45051:42;51718:25;;51788:5;51780:4;51766:11;:18;;;;:::i;:::-;51765:28;;;;:::i;:::-;51718:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51707:101;;;;;51827:4;51819:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44873:42;51879:29;;51953:5;51945:4;51931:11;:18;;;;:::i;:::-;51930:28;;;;:::i;:::-;51879:94;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51868:105;;;;;51992:4;51984:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;52125:10;;;;;;;;;;;52117:24;;52163:21;52117:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52106:93;;;;;52218:4;52210:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;51407:860;;51360:907::o:0;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;:::-;26828:185;;;:::o;48096:689::-;48156:16;48190:23;48216:17;48226:6;48216:9;:17::i;:::-;48190:43;;48244:30;48291:15;48277:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48244:63;;48318:22;48343:1;48318:26;;48355:23;48395:350;48420:15;48402;:33;:65;;;;;44127:4;48439:14;:28;;48402:65;48395:350;;;48484:25;48512:23;48520:14;48512:7;:23::i;:::-;48484:51;;48577:6;48556:27;;:17;:27;;;48552:153;;;48637:14;48604:13;48618:15;48604:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;48672:17;;;;;:::i;:::-;;;;48552:153;48717:16;;;;;:::i;:::-;;;;48469:276;48395:350;;;48764:13;48757:20;;;;;;48096:689;;;:::o;50108:130::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50212:18:::1;50200:9;:30;;;;;;;;;;;;:::i;:::-;;50108:130:::0;:::o;44719:28::-;;;;;;;;;;;;;:::o;49927:102::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50013:8:::1;49999:11;:22;;;;;;;;;;;;:::i;:::-;;49927:102:::0;:::o;44594:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45100:70::-;;;;;;;;;;;;;:::o;44687:25::-;;;;;;;;;;;;;:::o;50246:155::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50351:9:::1;50340:8;;:20;;;;;;;;;;;;;;;;;;50385:8;50371:11;:22;;;;;;;;;;;;:::i;:::-;;50246:155:::0;;:::o;23422:144::-;23486:7;23529:27;23548:7;23529:18;:27::i;:::-;23506:52;;23422:144;;;:::o;45179:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;44138:33::-;;;;:::o;19299:224::-;19363:7;19404:1;19387:19;;:5;:19;;;19383:60;;;19415:28;;;;;;;;;;;;;;19383:60;14638:13;19461:18;:25;19480:5;19461:25;;;;;;;;;;;;;;;;:54;19454:61;;19299:224;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;44341:32::-;;;;:::o;45232:47::-;;;;;;;;;;;;;;;;;:::o;50983:123::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51063:6:::1;51050:10;;:19;;;;;;;;;;;;;;;;;;51092:6;51091:7;51080:8;;:18;;;;;;;;;;;;;;;;;;50983:123:::0;:::o;46441:653::-;46509:8;44127:4;52693:8;52677:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52669:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46660:2:::1;46648:8;:14;46640:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;46692:17;46728:8;46712:13;:11;:13::i;:::-;:24;;;;:::i;:::-;46692:44;;46778:3;46765:9;:16;;46757:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;46830:14;:26;46845:10;46830:26;;;;;;;;;;;;;;;;;;;;;;;;;46829:27;46821:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46930:4;46901:14;:26;46916:10;46901:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;46963:3;46950:9;:16;46947:96;;;46994:5;46983:8;;:16;;;;;;;;;;;;;;;;;;47027:4;47014:10;;:17;;;;;;;;;;;;;;;;;;46947:96;47055:31;47065:10;47077:8;47055:9;:31::i;:::-;46519:575;46441:653:::0;;:::o;51112:121::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51188:6:::1;51177:8;;:17;;;;;;;;;;;;;;;;;;51219:6;51218:7;51205:10;;:20;;;;;;;;;;;;;;;;;;51112:121:::0;:::o;44420:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;52411:146::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52499:8:::1;44127:4;52693:8;52677:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52669:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52520:29:::2;52530:8;52540;52520:9;:29::i;:::-;4370:1:::1;52411:146:::0;;:::o;50470:115::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50565:12:::1;50550;:27;;;;;;;;;;;;:::i;:::-;;50470:115:::0;:::o;23802:104::-;23858:13;23891:7;23884:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23802:104;:::o;25977:308::-;26088:19;:17;:19::i;:::-;26076:31;;:8;:31;;;26072:61;;;26116:17;;;;;;;;;;;;;;26072:61;26198:8;26146:18;:39;26165:19;:17;:19::i;:::-;26146:39;;;;;;;;;;;;;;;:49;26186:8;26146:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26258:8;26222:55;;26237:19;:17;:19::i;:::-;26222:55;;;26268:8;26222:55;;;;;;:::i;:::-;;;;;;;;25977:308;;:::o;44756:27::-;;;;;;;;;;;;;:::o;44180:40::-;;;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;27312:1;27294:2;:14;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;;;;;;;;;;;;;27328:145;27290:183;27084:396;;;;:::o;44286:46::-;44330:2;44286:46;:::o;49811:108::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49899:12:::1;49885:11;:26;;;;49811:108:::0;:::o;48793:608::-;48859:13;49124:17;49132:8;49124:7;:17::i;:::-;49116:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49218:8;;;;;;;;;;;49214:180;;;49274:11;49287:26;49304:8;49287:16;:26::i;:::-;49257:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49243:81;;;;49214:180;49373:9;49366:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48793:608;;;;:::o;50888:87::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50961:6:::1;50950:8;;:17;;;;;;;;;;;;;;;;;;50888:87:::0;:::o;49588:97::-;49632:13;49665:12;49658:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49588:97;:::o;26356:164::-;26453:4;26477:18;:25;26496:5;26477:25;;;;;;;;;;;;;;;:35;26503:8;26477:35;;;;;;;;;;;;;;;;;;;;;;;;;26470:42;;26356:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44382:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27735:273::-;27792:4;27848:7;27829:15;:13;:15::i;:::-;:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;;27980:1;15408:8;27933:17;:26;27951:7;27933:26;;;;;;;;;;;;:43;:48;27829:152;27809:172;;27735:273;;;:::o;20937:1129::-;21004:7;21024:12;21039:7;21024:22;;21107:4;21088:15;:13;:15::i;:::-;:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:17;:23;21214:4;21196:23;;;;;;;;;;;;21179:40;;21312:1;15408:8;21285:6;:23;:28;21281:699;;;21804:113;21821:1;21811:6;:11;21804:113;;;21864:17;:25;21882:6;;;;;;;21864:25;;;;;;;;;;;;21855:34;;21804:113;;;21950:6;21943:13;;;;;;21281:699;21156:843;21130:869;21084:915;22027:31;;;;;;;;;;;;;;20937:1129;;;;:::o;41717:105::-;41777:7;41804:10;41797:17;;41717:105;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;45567:101::-;45632:7;45659:1;45652:8;;45567:101;:::o;32974:2515::-;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;33163:45;;33179:19;33163:45;;;33159:86;;33217:28;;;;;;;;;;;;;;33159:86;33258:22;33307:4;33284:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33328:43;33345:4;33351:19;:17;:19::i;:::-;33328:16;:43::i;:::-;33284:87;:147;;;;33412:19;:17;:19::i;:::-;33388:43;;:20;33400:7;33388:11;:20::i;:::-;:43;;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;;;;;;;;;;;;;33445:66;33540:1;33526:16;;:2;:16;;;33522:52;;;33551:23;;;;;;;;;;;;;;33522:52;33587:43;33609:4;33615:2;33619:7;33628:1;33587:21;:43::i;:::-;33703:15;:24;33719:7;33703:24;;;;;;;;;;;;33696:31;;;;;;;;;;;34095:18;:24;34114:4;34095:24;;;;;;;;;;;;;;;;34093:26;;;;;;;;;;;;34164:18;:22;34183:2;34164:22;;;;;;;;;;;;;;;;34162:24;;;;;;;;;;;15690:8;15292:3;34545:15;:41;;34503:21;34521:2;34503:17;:21::i;:::-;:84;:128;34457:17;:26;34475:7;34457:26;;;;;;;;;;;:174;;;;34801:1;15690:8;34751:19;:46;:51;34747:626;;;34823:19;34855:1;34845:7;:11;34823:33;;35012:1;34978:17;:30;34996:11;34978:30;;;;;;;;;;;;:35;34974:384;;;35116:13;;35101:11;:28;35097:242;;35296:19;35263:17;:30;35281:11;35263:30;;;;;;;;;;;:52;;;;35097:242;34974:384;34804:569;34747:626;35420:7;35416:2;35401:27;;35410:4;35401:27;;;;;;;;;;;;35439:42;35460:4;35466:2;35470:7;35479:1;35439:20;:42::i;:::-;33078:2411;;32974:2515;;;:::o;45676:359::-;45749:5;45737:9;:17;45733:295;;;45772:9;45795:10;45787:24;;45850:5;45838:9;:17;;;;:::i;:::-;45787:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45771:104;;;45898:4;45890:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;45756:178;45733:295;;;45965:5;45953:9;:17;45949:79;;;45987:29;;;;;;;;;;:::i;:::-;;;;;;;;45949:79;45733:295;45676:359;:::o;28092:104::-;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;:::-;28092:104;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;39186:716::-;39349:4;39395:2;39370:45;;;39416:19;:17;:19::i;:::-;39437:4;39443:7;39452:5;39370:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39670:1;39653:6;:13;:18;39649:235;;;39699:40;;;;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;39539:54;;;39529:64;;;:6;:64;;;;39522:71;;;39186:716;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;40550:159::-;;;;;:::o;24722:148::-;24786:14;24847:5;24837:15;;24722:148;;;:::o;41368:158::-;;;;;:::o;28569:2236::-;28692:20;28715:13;;28692:36;;28757:1;28743:16;;:2;:16;;;28739:48;;;28768:19;;;;;;;;;;;;;;28739:48;28814:1;28802:8;:13;28798:44;;;28824:18;;;;;;;;;;;;;;28798:44;28855:61;28885:1;28889:2;28893:12;28907:8;28855:21;:61::i;:::-;29459:1;14775:2;29430:1;:25;;29429:31;29417:8;:44;29391:18;:22;29410:2;29391:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15555:3;29860:29;29887:1;29875:8;:13;29860:14;:29::i;:::-;:56;;15292:3;29797:15;:41;;29755:21;29773:2;29755:17;:21::i;:::-;:84;:162;29704:17;:31;29722:12;29704:31;;;;;;;;;;;:213;;;;29934:20;29957:12;29934:35;;29984:11;30013:8;29998:12;:23;29984:37;;30060:1;30042:2;:14;;;:19;30038:635;;30082:313;30138:12;30134:2;30113:38;;30130:1;30113:38;;;;;;;;;;;;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;;;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30595:14;;;;;;30591:2;30570:40;;30587:1;30570:40;;;;;;;;;;;;30653:3;30638:12;:18;30539:119;;30038:635;30703:12;30687:13;:28;;;;29168:1559;;30737:60;30766:1;30770:2;30774:12;30788:8;30737:20;:60::i;:::-;28681:2124;28569:2236;;;:::o;24957:142::-;25015:14;25076:5;25066:15;;24957:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:648::-;6024:6;6032;6081:2;6069:9;6060:7;6056:23;6052:32;6049:119;;;6087:79;;:::i;:::-;6049:119;6207:1;6232:50;6274:7;6265:6;6254:9;6250:22;6232:50;:::i;:::-;6222:60;;6178:114;6359:2;6348:9;6344:18;6331:32;6390:18;6382:6;6379:30;6376:117;;;6412:79;;:::i;:::-;6376:117;6517:63;6572:7;6563:6;6552:9;6548:22;6517:63;:::i;:::-;6507:73;;6302:288;5949:648;;;;;:::o;6603:327::-;6661:6;6710:2;6698:9;6689:7;6685:23;6681:32;6678:119;;;6716:79;;:::i;:::-;6678:119;6836:1;6861:52;6905:7;6896:6;6885:9;6881:22;6861:52;:::i;:::-;6851:62;;6807:116;6603:327;;;;:::o;6936:349::-;7005:6;7054:2;7042:9;7033:7;7029:23;7025:32;7022:119;;;7060:79;;:::i;:::-;7022:119;7180:1;7205:63;7260:7;7251:6;7240:9;7236:22;7205:63;:::i;:::-;7195:73;;7151:127;6936:349;;;;:::o;7291:509::-;7360:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7720:63;7775:7;7766:6;7755:9;7751:22;7720:63;:::i;:::-;7710:73;;7506:287;7291:509;;;;:::o;7806:329::-;7865:6;7914:2;7902:9;7893:7;7889:23;7885:32;7882:119;;;7920:79;;:::i;:::-;7882:119;8040:1;8065:53;8110:7;8101:6;8090:9;8086:22;8065:53;:::i;:::-;8055:63;;8011:117;7806:329;;;;:::o;8141:474::-;8209:6;8217;8266:2;8254:9;8245:7;8241:23;8237:32;8234:119;;;8272:79;;:::i;:::-;8234:119;8392:1;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8363:117;8519:2;8545:53;8590:7;8581:6;8570:9;8566:22;8545:53;:::i;:::-;8535:63;;8490:118;8141:474;;;;;:::o;8621:179::-;8690:10;8711:46;8753:3;8745:6;8711:46;:::i;:::-;8789:4;8784:3;8780:14;8766:28;;8621:179;;;;:::o;8806:118::-;8893:24;8911:5;8893:24;:::i;:::-;8888:3;8881:37;8806:118;;:::o;8960:732::-;9079:3;9108:54;9156:5;9108:54;:::i;:::-;9178:86;9257:6;9252:3;9178:86;:::i;:::-;9171:93;;9288:56;9338:5;9288:56;:::i;:::-;9367:7;9398:1;9383:284;9408:6;9405:1;9402:13;9383:284;;;9484:6;9478:13;9511:63;9570:3;9555:13;9511:63;:::i;:::-;9504:70;;9597:60;9650:6;9597:60;:::i;:::-;9587:70;;9443:224;9430:1;9427;9423:9;9418:14;;9383:284;;;9387:14;9683:3;9676:10;;9084:608;;;8960:732;;;;:::o;9698:109::-;9779:21;9794:5;9779:21;:::i;:::-;9774:3;9767:34;9698:109;;:::o;9813:360::-;9899:3;9927:38;9959:5;9927:38;:::i;:::-;9981:70;10044:6;10039:3;9981:70;:::i;:::-;9974:77;;10060:52;10105:6;10100:3;10093:4;10086:5;10082:16;10060:52;:::i;:::-;10137:29;10159:6;10137:29;:::i;:::-;10132:3;10128:39;10121:46;;9903:270;9813:360;;;;:::o;10179:364::-;10267:3;10295:39;10328:5;10295:39;:::i;:::-;10350:71;10414:6;10409:3;10350:71;:::i;:::-;10343:78;;10430:52;10475:6;10470:3;10463:4;10456:5;10452:16;10430:52;:::i;:::-;10507:29;10529:6;10507:29;:::i;:::-;10502:3;10498:39;10491:46;;10271:272;10179:364;;;;:::o;10549:377::-;10655:3;10683:39;10716:5;10683:39;:::i;:::-;10738:89;10820:6;10815:3;10738:89;:::i;:::-;10731:96;;10836:52;10881:6;10876:3;10869:4;10862:5;10858:16;10836:52;:::i;:::-;10913:6;10908:3;10904:16;10897:23;;10659:267;10549:377;;;;:::o;10956:845::-;11059:3;11096:5;11090:12;11125:36;11151:9;11125:36;:::i;:::-;11177:89;11259:6;11254:3;11177:89;:::i;:::-;11170:96;;11297:1;11286:9;11282:17;11313:1;11308:137;;;;11459:1;11454:341;;;;11275:520;;11308:137;11392:4;11388:9;11377;11373:25;11368:3;11361:38;11428:6;11423:3;11419:16;11412:23;;11308:137;;11454:341;11521:38;11553:5;11521:38;:::i;:::-;11581:1;11595:154;11609:6;11606:1;11603:13;11595:154;;;11683:7;11677:14;11673:1;11668:3;11664:11;11657:35;11733:1;11724:7;11720:15;11709:26;;11631:4;11628:1;11624:12;11619:17;;11595:154;;;11778:6;11773:3;11769:16;11762:23;;11461:334;;11275:520;;11063:738;;10956:845;;;;:::o;11807:366::-;11949:3;11970:67;12034:2;12029:3;11970:67;:::i;:::-;11963:74;;12046:93;12135:3;12046:93;:::i;:::-;12164:2;12159:3;12155:12;12148:19;;11807:366;;;:::o;12179:::-;12321:3;12342:67;12406:2;12401:3;12342:67;:::i;:::-;12335:74;;12418:93;12507:3;12418:93;:::i;:::-;12536:2;12531:3;12527:12;12520:19;;12179:366;;;:::o;12551:::-;12693:3;12714:67;12778:2;12773:3;12714:67;:::i;:::-;12707:74;;12790:93;12879:3;12790:93;:::i;:::-;12908:2;12903:3;12899:12;12892:19;;12551:366;;;:::o;12923:::-;13065:3;13086:67;13150:2;13145:3;13086:67;:::i;:::-;13079:74;;13162:93;13251:3;13162:93;:::i;:::-;13280:2;13275:3;13271:12;13264:19;;12923:366;;;:::o;13295:::-;13437:3;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13534:93;13623:3;13534:93;:::i;:::-;13652:2;13647:3;13643:12;13636:19;;13295:366;;;:::o;13667:::-;13809:3;13830:67;13894:2;13889:3;13830:67;:::i;:::-;13823:74;;13906:93;13995:3;13906:93;:::i;:::-;14024:2;14019:3;14015:12;14008:19;;13667:366;;;:::o;14039:400::-;14199:3;14220:84;14302:1;14297:3;14220:84;:::i;:::-;14213:91;;14313:93;14402:3;14313:93;:::i;:::-;14431:1;14426:3;14422:11;14415:18;;14039:400;;;:::o;14445:366::-;14587:3;14608:67;14672:2;14667:3;14608:67;:::i;:::-;14601:74;;14684:93;14773:3;14684:93;:::i;:::-;14802:2;14797:3;14793:12;14786:19;;14445:366;;;:::o;14817:::-;14959:3;14980:67;15044:2;15039:3;14980:67;:::i;:::-;14973:74;;15056:93;15145:3;15056:93;:::i;:::-;15174:2;15169:3;15165:12;15158:19;;14817:366;;;:::o;15189:::-;15331:3;15352:67;15416:2;15411:3;15352:67;:::i;:::-;15345:74;;15428:93;15517:3;15428:93;:::i;:::-;15546:2;15541:3;15537:12;15530:19;;15189:366;;;:::o;15561:::-;15703:3;15724:67;15788:2;15783:3;15724:67;:::i;:::-;15717:74;;15800:93;15889:3;15800:93;:::i;:::-;15918:2;15913:3;15909:12;15902:19;;15561:366;;;:::o;15933:::-;16075:3;16096:67;16160:2;16155:3;16096:67;:::i;:::-;16089:74;;16172:93;16261:3;16172:93;:::i;:::-;16290:2;16285:3;16281:12;16274:19;;15933:366;;;:::o;16305:::-;16447:3;16468:67;16532:2;16527:3;16468:67;:::i;:::-;16461:74;;16544:93;16633:3;16544:93;:::i;:::-;16662:2;16657:3;16653:12;16646:19;;16305:366;;;:::o;16677:::-;16819:3;16840:67;16904:2;16899:3;16840:67;:::i;:::-;16833:74;;16916:93;17005:3;16916:93;:::i;:::-;17034:2;17029:3;17025:12;17018:19;;16677:366;;;:::o;17049:::-;17191:3;17212:67;17276:2;17271:3;17212:67;:::i;:::-;17205:74;;17288:93;17377:3;17288:93;:::i;:::-;17406:2;17401:3;17397:12;17390:19;;17049:366;;;:::o;17421:398::-;17580:3;17601:83;17682:1;17677:3;17601:83;:::i;:::-;17594:90;;17693:93;17782:3;17693:93;:::i;:::-;17811:1;17806:3;17802:11;17795:18;;17421:398;;;:::o;17825:366::-;17967:3;17988:67;18052:2;18047:3;17988:67;:::i;:::-;17981:74;;18064:93;18153:3;18064:93;:::i;:::-;18182:2;18177:3;18173:12;18166:19;;17825:366;;;:::o;18197:::-;18339:3;18360:67;18424:2;18419:3;18360:67;:::i;:::-;18353:74;;18436:93;18525:3;18436:93;:::i;:::-;18554:2;18549:3;18545:12;18538:19;;18197:366;;;:::o;18569:::-;18711:3;18732:67;18796:2;18791:3;18732:67;:::i;:::-;18725:74;;18808:93;18897:3;18808:93;:::i;:::-;18926:2;18921:3;18917:12;18910:19;;18569:366;;;:::o;18941:::-;19083:3;19104:67;19168:2;19163:3;19104:67;:::i;:::-;19097:74;;19180:93;19269:3;19180:93;:::i;:::-;19298:2;19293:3;19289:12;19282:19;;18941:366;;;:::o;19313:::-;19455:3;19476:67;19540:2;19535:3;19476:67;:::i;:::-;19469:74;;19552:93;19641:3;19552:93;:::i;:::-;19670:2;19665:3;19661:12;19654:19;;19313:366;;;:::o;19685:108::-;19762:24;19780:5;19762:24;:::i;:::-;19757:3;19750:37;19685:108;;:::o;19799:118::-;19886:24;19904:5;19886:24;:::i;:::-;19881:3;19874:37;19799:118;;:::o;19923:695::-;20201:3;20223:92;20311:3;20302:6;20223:92;:::i;:::-;20216:99;;20332:95;20423:3;20414:6;20332:95;:::i;:::-;20325:102;;20444:148;20588:3;20444:148;:::i;:::-;20437:155;;20609:3;20602:10;;19923:695;;;;;:::o;20624:379::-;20808:3;20830:147;20973:3;20830:147;:::i;:::-;20823:154;;20994:3;20987:10;;20624:379;;;:::o;21009:222::-;21102:4;21140:2;21129:9;21125:18;21117:26;;21153:71;21221:1;21210:9;21206:17;21197:6;21153:71;:::i;:::-;21009:222;;;;:::o;21237:640::-;21432:4;21470:3;21459:9;21455:19;21447:27;;21484:71;21552:1;21541:9;21537:17;21528:6;21484:71;:::i;:::-;21565:72;21633:2;21622:9;21618:18;21609:6;21565:72;:::i;:::-;21647;21715:2;21704:9;21700:18;21691:6;21647:72;:::i;:::-;21766:9;21760:4;21756:20;21751:2;21740:9;21736:18;21729:48;21794:76;21865:4;21856:6;21794:76;:::i;:::-;21786:84;;21237:640;;;;;;;:::o;21883:373::-;22026:4;22064:2;22053:9;22049:18;22041:26;;22113:9;22107:4;22103:20;22099:1;22088:9;22084:17;22077:47;22141:108;22244:4;22235:6;22141:108;:::i;:::-;22133:116;;21883:373;;;;:::o;22262:210::-;22349:4;22387:2;22376:9;22372:18;22364:26;;22400:65;22462:1;22451:9;22447:17;22438:6;22400:65;:::i;:::-;22262:210;;;;:::o;22478:313::-;22591:4;22629:2;22618:9;22614:18;22606:26;;22678:9;22672:4;22668:20;22664:1;22653:9;22649:17;22642:47;22706:78;22779:4;22770:6;22706:78;:::i;:::-;22698:86;;22478:313;;;;:::o;22797:419::-;22963:4;23001:2;22990:9;22986:18;22978:26;;23050:9;23044:4;23040:20;23036:1;23025:9;23021:17;23014:47;23078:131;23204:4;23078:131;:::i;:::-;23070:139;;22797:419;;;:::o;23222:::-;23388:4;23426:2;23415:9;23411:18;23403:26;;23475:9;23469:4;23465:20;23461:1;23450:9;23446:17;23439:47;23503:131;23629:4;23503:131;:::i;:::-;23495:139;;23222:419;;;:::o;23647:::-;23813:4;23851:2;23840:9;23836:18;23828:26;;23900:9;23894:4;23890:20;23886:1;23875:9;23871:17;23864:47;23928:131;24054:4;23928:131;:::i;:::-;23920:139;;23647:419;;;:::o;24072:::-;24238:4;24276:2;24265:9;24261:18;24253:26;;24325:9;24319:4;24315:20;24311:1;24300:9;24296:17;24289:47;24353:131;24479:4;24353:131;:::i;:::-;24345:139;;24072:419;;;:::o;24497:::-;24663:4;24701:2;24690:9;24686:18;24678:26;;24750:9;24744:4;24740:20;24736:1;24725:9;24721:17;24714:47;24778:131;24904:4;24778:131;:::i;:::-;24770:139;;24497:419;;;:::o;24922:::-;25088:4;25126:2;25115:9;25111:18;25103:26;;25175:9;25169:4;25165:20;25161:1;25150:9;25146:17;25139:47;25203:131;25329:4;25203:131;:::i;:::-;25195:139;;24922:419;;;:::o;25347:::-;25513:4;25551:2;25540:9;25536:18;25528:26;;25600:9;25594:4;25590:20;25586:1;25575:9;25571:17;25564:47;25628:131;25754:4;25628:131;:::i;:::-;25620:139;;25347:419;;;:::o;25772:::-;25938:4;25976:2;25965:9;25961:18;25953:26;;26025:9;26019:4;26015:20;26011:1;26000:9;25996:17;25989:47;26053:131;26179:4;26053:131;:::i;:::-;26045:139;;25772:419;;;:::o;26197:::-;26363:4;26401:2;26390:9;26386:18;26378:26;;26450:9;26444:4;26440:20;26436:1;26425:9;26421:17;26414:47;26478:131;26604:4;26478:131;:::i;:::-;26470:139;;26197:419;;;:::o;26622:::-;26788:4;26826:2;26815:9;26811:18;26803:26;;26875:9;26869:4;26865:20;26861:1;26850:9;26846:17;26839:47;26903:131;27029:4;26903:131;:::i;:::-;26895:139;;26622:419;;;:::o;27047:::-;27213:4;27251:2;27240:9;27236:18;27228:26;;27300:9;27294:4;27290:20;27286:1;27275:9;27271:17;27264:47;27328:131;27454:4;27328:131;:::i;:::-;27320:139;;27047:419;;;:::o;27472:::-;27638:4;27676:2;27665:9;27661:18;27653:26;;27725:9;27719:4;27715:20;27711:1;27700:9;27696:17;27689:47;27753:131;27879:4;27753:131;:::i;:::-;27745:139;;27472:419;;;:::o;27897:::-;28063:4;28101:2;28090:9;28086:18;28078:26;;28150:9;28144:4;28140:20;28136:1;28125:9;28121:17;28114:47;28178:131;28304:4;28178:131;:::i;:::-;28170:139;;27897:419;;;:::o;28322:::-;28488:4;28526:2;28515:9;28511:18;28503:26;;28575:9;28569:4;28565:20;28561:1;28550:9;28546:17;28539:47;28603:131;28729:4;28603:131;:::i;:::-;28595:139;;28322:419;;;:::o;28747:::-;28913:4;28951:2;28940:9;28936:18;28928:26;;29000:9;28994:4;28990:20;28986:1;28975:9;28971:17;28964:47;29028:131;29154:4;29028:131;:::i;:::-;29020:139;;28747:419;;;:::o;29172:::-;29338:4;29376:2;29365:9;29361:18;29353:26;;29425:9;29419:4;29415:20;29411:1;29400:9;29396:17;29389:47;29453:131;29579:4;29453:131;:::i;:::-;29445:139;;29172:419;;;:::o;29597:::-;29763:4;29801:2;29790:9;29786:18;29778:26;;29850:9;29844:4;29840:20;29836:1;29825:9;29821:17;29814:47;29878:131;30004:4;29878:131;:::i;:::-;29870:139;;29597:419;;;:::o;30022:::-;30188:4;30226:2;30215:9;30211:18;30203:26;;30275:9;30269:4;30265:20;30261:1;30250:9;30246:17;30239:47;30303:131;30429:4;30303:131;:::i;:::-;30295:139;;30022:419;;;:::o;30447:::-;30613:4;30651:2;30640:9;30636:18;30628:26;;30700:9;30694:4;30690:20;30686:1;30675:9;30671:17;30664:47;30728:131;30854:4;30728:131;:::i;:::-;30720:139;;30447:419;;;:::o;30872:222::-;30965:4;31003:2;30992:9;30988:18;30980:26;;31016:71;31084:1;31073:9;31069:17;31060:6;31016:71;:::i;:::-;30872:222;;;;:::o;31100:129::-;31134:6;31161:20;;:::i;:::-;31151:30;;31190:33;31218:4;31210:6;31190:33;:::i;:::-;31100:129;;;:::o;31235:75::-;31268:6;31301:2;31295:9;31285:19;;31235:75;:::o;31316:307::-;31377:4;31467:18;31459:6;31456:30;31453:56;;;31489:18;;:::i;:::-;31453:56;31527:29;31549:6;31527:29;:::i;:::-;31519:37;;31611:4;31605;31601:15;31593:23;;31316:307;;;:::o;31629:308::-;31691:4;31781:18;31773:6;31770:30;31767:56;;;31803:18;;:::i;:::-;31767:56;31841:29;31863:6;31841:29;:::i;:::-;31833:37;;31925:4;31919;31915:15;31907:23;;31629:308;;;:::o;31943:132::-;32010:4;32033:3;32025:11;;32063:4;32058:3;32054:14;32046:22;;31943:132;;;:::o;32081:141::-;32130:4;32153:3;32145:11;;32176:3;32173:1;32166:14;32210:4;32207:1;32197:18;32189:26;;32081:141;;;:::o;32228:114::-;32295:6;32329:5;32323:12;32313:22;;32228:114;;;:::o;32348:98::-;32399:6;32433:5;32427:12;32417:22;;32348:98;;;:::o;32452:99::-;32504:6;32538:5;32532:12;32522:22;;32452:99;;;:::o;32557:113::-;32627:4;32659;32654:3;32650:14;32642:22;;32557:113;;;:::o;32676:184::-;32775:11;32809:6;32804:3;32797:19;32849:4;32844:3;32840:14;32825:29;;32676:184;;;;:::o;32866:168::-;32949:11;32983:6;32978:3;32971:19;33023:4;33018:3;33014:14;32999:29;;32866:168;;;;:::o;33040:147::-;33141:11;33178:3;33163:18;;33040:147;;;;:::o;33193:169::-;33277:11;33311:6;33306:3;33299:19;33351:4;33346:3;33342:14;33327:29;;33193:169;;;;:::o;33368:148::-;33470:11;33507:3;33492:18;;33368:148;;;;:::o;33522:305::-;33562:3;33581:20;33599:1;33581:20;:::i;:::-;33576:25;;33615:20;33633:1;33615:20;:::i;:::-;33610:25;;33769:1;33701:66;33697:74;33694:1;33691:81;33688:107;;;33775:18;;:::i;:::-;33688:107;33819:1;33816;33812:9;33805:16;;33522:305;;;;:::o;33833:185::-;33873:1;33890:20;33908:1;33890:20;:::i;:::-;33885:25;;33924:20;33942:1;33924:20;:::i;:::-;33919:25;;33963:1;33953:35;;33968:18;;:::i;:::-;33953:35;34010:1;34007;34003:9;33998:14;;33833:185;;;;:::o;34024:348::-;34064:7;34087:20;34105:1;34087:20;:::i;:::-;34082:25;;34121:20;34139:1;34121:20;:::i;:::-;34116:25;;34309:1;34241:66;34237:74;34234:1;34231:81;34226:1;34219:9;34212:17;34208:105;34205:131;;;34316:18;;:::i;:::-;34205:131;34364:1;34361;34357:9;34346:20;;34024:348;;;;:::o;34378:191::-;34418:4;34438:20;34456:1;34438:20;:::i;:::-;34433:25;;34472:20;34490:1;34472:20;:::i;:::-;34467:25;;34511:1;34508;34505:8;34502:34;;;34516:18;;:::i;:::-;34502:34;34561:1;34558;34554:9;34546:17;;34378:191;;;;:::o;34575:96::-;34612:7;34641:24;34659:5;34641:24;:::i;:::-;34630:35;;34575:96;;;:::o;34677:90::-;34711:7;34754:5;34747:13;34740:21;34729:32;;34677:90;;;:::o;34773:149::-;34809:7;34849:66;34842:5;34838:78;34827:89;;34773:149;;;:::o;34928:126::-;34965:7;35005:42;34998:5;34994:54;34983:65;;34928:126;;;:::o;35060:77::-;35097:7;35126:5;35115:16;;35060:77;;;:::o;35143:154::-;35227:6;35222:3;35217;35204:30;35289:1;35280:6;35275:3;35271:16;35264:27;35143:154;;;:::o;35303:307::-;35371:1;35381:113;35395:6;35392:1;35389:13;35381:113;;;35480:1;35475:3;35471:11;35465:18;35461:1;35456:3;35452:11;35445:39;35417:2;35414:1;35410:10;35405:15;;35381:113;;;35512:6;35509:1;35506:13;35503:101;;;35592:1;35583:6;35578:3;35574:16;35567:27;35503:101;35352:258;35303:307;;;:::o;35616:320::-;35660:6;35697:1;35691:4;35687:12;35677:22;;35744:1;35738:4;35734:12;35765:18;35755:81;;35821:4;35813:6;35809:17;35799:27;;35755:81;35883:2;35875:6;35872:14;35852:18;35849:38;35846:84;;;35902:18;;:::i;:::-;35846:84;35667:269;35616:320;;;:::o;35942:281::-;36025:27;36047:4;36025:27;:::i;:::-;36017:6;36013:40;36155:6;36143:10;36140:22;36119:18;36107:10;36104:34;36101:62;36098:88;;;36166:18;;:::i;:::-;36098:88;36206:10;36202:2;36195:22;35985:238;35942:281;;:::o;36229:233::-;36268:3;36291:24;36309:5;36291:24;:::i;:::-;36282:33;;36337:66;36330:5;36327:77;36324:103;;;36407:18;;:::i;:::-;36324:103;36454:1;36447:5;36443:13;36436:20;;36229:233;;;:::o;36468:176::-;36500:1;36517:20;36535:1;36517:20;:::i;:::-;36512:25;;36551:20;36569:1;36551:20;:::i;:::-;36546:25;;36590:1;36580:35;;36595:18;;:::i;:::-;36580:35;36636:1;36633;36629:9;36624:14;;36468:176;;;;:::o;36650:180::-;36698:77;36695:1;36688:88;36795:4;36792:1;36785:15;36819:4;36816:1;36809:15;36836:180;36884:77;36881:1;36874:88;36981:4;36978:1;36971:15;37005:4;37002:1;36995:15;37022:180;37070:77;37067:1;37060:88;37167:4;37164:1;37157:15;37191:4;37188:1;37181:15;37208:180;37256:77;37253:1;37246:88;37353:4;37350:1;37343:15;37377:4;37374:1;37367:15;37394:180;37442:77;37439:1;37432:88;37539:4;37536:1;37529:15;37563:4;37560:1;37553:15;37580:117;37689:1;37686;37679:12;37703:117;37812:1;37809;37802:12;37826:117;37935:1;37932;37925:12;37949:117;38058:1;38055;38048:12;38072:102;38113:6;38164:2;38160:7;38155:2;38148:5;38144:14;38140:28;38130:38;;38072:102;;;:::o;38180:225::-;38320:34;38316:1;38308:6;38304:14;38297:58;38389:8;38384:2;38376:6;38372:15;38365:33;38180:225;:::o;38411:165::-;38551:17;38547:1;38539:6;38535:14;38528:41;38411:165;:::o;38582:167::-;38722:19;38718:1;38710:6;38706:14;38699:43;38582:167;:::o;38755:171::-;38895:23;38891:1;38883:6;38879:14;38872:47;38755:171;:::o;38932:169::-;39072:21;39068:1;39060:6;39056:14;39049:45;38932:169;:::o;39107:182::-;39247:34;39243:1;39235:6;39231:14;39224:58;39107:182;:::o;39295:155::-;39435:7;39431:1;39423:6;39419:14;39412:31;39295:155;:::o;39456:182::-;39596:34;39592:1;39584:6;39580:14;39573:58;39456:182;:::o;39644:169::-;39784:21;39780:1;39772:6;39768:14;39761:45;39644:169;:::o;39819:234::-;39959:34;39955:1;39947:6;39943:14;39936:58;40028:17;40023:2;40015:6;40011:15;40004:42;39819:234;:::o;40059:168::-;40199:20;40195:1;40187:6;40183:14;40176:44;40059:168;:::o;40233:169::-;40373:21;40369:1;40361:6;40357:14;40350:45;40233:169;:::o;40408:170::-;40548:22;40544:1;40536:6;40532:14;40525:46;40408:170;:::o;40584:173::-;40724:25;40720:1;40712:6;40708:14;40701:49;40584:173;:::o;40763:167::-;40903:19;40899:1;40891:6;40887:14;40880:43;40763:167;:::o;40936:114::-;;:::o;41056:169::-;41196:21;41192:1;41184:6;41180:14;41173:45;41056:169;:::o;41231:::-;41371:21;41367:1;41359:6;41355:14;41348:45;41231:169;:::o;41406:172::-;41546:24;41542:1;41534:6;41530:14;41523:48;41406:172;:::o;41584:171::-;41724:23;41720:1;41712:6;41708:14;41701:47;41584:171;:::o;41761:162::-;41901:14;41897:1;41889:6;41885:14;41878:38;41761:162;:::o;41929:122::-;42002:24;42020:5;42002:24;:::i;:::-;41995:5;41992:35;41982:63;;42041:1;42038;42031:12;41982:63;41929:122;:::o;42057:116::-;42127:21;42142:5;42127:21;:::i;:::-;42120:5;42117:32;42107:60;;42163:1;42160;42153:12;42107:60;42057:116;:::o;42179:120::-;42251:23;42268:5;42251:23;:::i;:::-;42244:5;42241:34;42231:62;;42289:1;42286;42279:12;42231:62;42179:120;:::o;42305:122::-;42378:24;42396:5;42378:24;:::i;:::-;42371:5;42368:35;42358:63;;42417:1;42414;42407:12;42358:63;42305:122;:::o

Swarm Source

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