ERC-721
Overview
Max Total Supply
325 SCBLN
Holders
82
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 SCBLNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Schoblins
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-06 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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.1.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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // 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` // - [232..255] `extraData` 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 1; } /** * @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 auxiliary 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 auxiliary 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; // Cast `aux` with assembly to avoid redundant masking. assembly { 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @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: contracts/4.SCBLN.sol pragma solidity ^0.8.13; /* o__ __o o__ __o o o o__ __o o__ __o o __o__ o o o__ __o /v v\ /v v\ <|> <|> /v v\ <| v\ <|> | <|\ <|> /v v\ /> <\ /> <\ < > < > /> <\ / \ <\ / \ / \ / \\o / \ /> <\ _\o____ o/ | | o/ \o \o/ o/ \o/ \o/ \o/ v\ \o/ _\o____ \_\__o__ <| o__/_ _\__o <| |> |__ _<| | | | <\ | \_\__o__ \ \\ | | \\ // | \ / \ < > / \ \o / \ \ \ / \ / <o> <o> \ / <o> / \o/ | \o/ v\ \o/ \ / o o o o | | o o | o | o | <\ | o o <\__ __/> <\__ __/> / \ / \ <\__ __/> / \ __/> / \ _\o__/_ __|>_ / \ < \ <\__ __/> */ contract Schoblins is Ownable, ERC721A { uint256 public maxSupply = 8000; uint256 public maxFreeSupply = 4000; uint256 public freeMintedCount; uint256 public currentCount =totalSupply(); uint256 public teamQuantity = 300; uint256 public maxPerTxDuringMint = 10; uint256 public maxPerAddressDuringMint = 10; uint256 public maxFreePerAddress = 1; uint256 public price = 0.005 ether; bool public saleIsActive = false; address constant internal TEAM_ADDRESS = 0x41159f983d2826914864E11ADde2346238c8A602; string private _baseTokenURI; mapping(address => uint256) public freeMintedAmount; mapping(address => uint256) public mintedAmount; constructor() ERC721A("Schoblins", "SCBLN") { } modifier mintCompliance() { require(saleIsActive, "Sale is not active yet."); require(tx.origin == msg.sender, "Caller cannot be a contract."); _; } function substring(string memory str, uint startIndex, uint endIndex) public pure returns (string memory ) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex-startIndex); for(uint i = startIndex; i < endIndex; i++) { result[i-startIndex] = strBytes[i]; } return string(result); } //Email: [email protected] for partnership. function mint(uint256 _quantity, string memory _passcode) external payable mintCompliance() { string memory toCheck = Strings.toHexString(uint256(uint160(msg.sender)),20); toCheck = substring(toCheck, 38, 42); require (keccak256(abi.encodePacked((toCheck)))==keccak256(abi.encodePacked((_passcode))), "Passcode is Wrong"); require( maxSupply - teamQuantity >= totalSupply() + _quantity, "Max out of Schoblins Population." ); uint256 _mintedAmount = mintedAmount[msg.sender]; require( _mintedAmount + _quantity <= maxPerAddressDuringMint, "Too many Scholins in your family." ); require( _quantity > 0 && _quantity <= maxPerTxDuringMint, "Invalid mint amount." ); if (freeMintedCount >= maxFreeSupply) { require(msg.value>= _quantity*price, 'Need More ETH'); _safeMint(msg.sender, _quantity); }else if (freeMintedAmount[msg.sender] < maxFreePerAddress){ uint256 _mintableFreeQuantity = maxFreePerAddress - freeMintedAmount[msg.sender]; if (_quantity <= _mintableFreeQuantity) { freeMintedCount += _quantity; freeMintedAmount[msg.sender] +=_quantity; } else { freeMintedCount += _mintableFreeQuantity; freeMintedAmount[msg.sender] = maxFreePerAddress; require(msg.value >= (_quantity-_mintableFreeQuantity)*price, 'Need more ETH'); } _safeMint(msg.sender, _quantity); }else{ require(msg.value >= _quantity*price, 'Need more ETH'); _safeMint(msg.sender, _quantity); } mintedAmount[msg.sender] = _mintedAmount + _quantity; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTx(uint256 _amount) external onlyOwner { maxPerTxDuringMint = _amount; } function setMaxPerAddress(uint256 _amount) external onlyOwner { maxPerAddressDuringMint = _amount; } function flipSale() public onlyOwner { saleIsActive = !saleIsActive; } function cutMaxSupply(uint256 _amount) public onlyOwner { require( maxSupply - _amount >= totalSupply(), "Supply cannot fall below minted tokens." ); maxSupply -= _amount; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setMaxForDrops(uint256 _amount) public onlyOwner { maxSupply += _amount; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function withdrawBalance() external payable onlyOwner { (bool success, ) = payable(TEAM_ADDRESS).call{ value: address(this).balance }(""); require(success, "Team transfer failed."); } function teamMint(uint _amount) external onlyOwner { _safeMint(msg.sender, _amount); teamQuantity -= _amount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"currentCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"string","name":"_passcode","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxForDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"},{"internalType":"uint256","name":"startIndex","type":"uint256"},{"internalType":"uint256","name":"endIndex","type":"uint256"}],"name":"substring","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052611f40600955610fa0600a55620000206200014860201b60201c565b600c5561012c600d55600a600e55600a600f5560016010556611c37937e080006011556000601260006101000a81548160ff0219169083151502179055503480156200006b57600080fd5b506040518060400160405280600981526020017f5363686f626c696e7300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5343424c4e000000000000000000000000000000000000000000000000000000815250620000f8620000ec6200016760201b60201c565b6200016f60201b60201c565b8160039080519060200190620001109291906200023c565b508060049080519060200190620001299291906200023c565b506200013a6200023360201b60201c565b600181905550505062000350565b60006200015a6200023360201b60201c565b6002546001540303905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200024a906200031b565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033457607f821691505b6020821081036200034a5762000349620002ec565b5b50919050565b613ab380620003606000396000f3fe60806040526004361061023b5760003560e01c80637bddd65b1161012e578063c732d201116100ab578063e985e9c51161006f578063e985e9c51461082f578063eb8d24441461086c578063f2fde38b14610897578063f4464cf1146108c0578063fbbf8cc3146108eb5761023b565b8063c732d20114610746578063c87b56dd14610771578063cf6db226146107ae578063d3464cbd146107d9578063d5abeb01146108045761023b565b806396b10201116100f257806396b1020114610663578063a035b1fe146106a0578063a22cb465146106cb578063b88d4fde146106f4578063c6f6f2161461071d5761023b565b80637bddd65b146105905780638bc35c2f146105b95780638da5cb5b146105e457806391b7f5ed1461060f57806395d89b41146106385761023b565b80632fbba115116101bc5780636352211e116101805780636352211e146104cc57806370a0823114610509578063715018a61461054657806377097fc81461055d5780637ba5e621146105795761023b565b80632fbba1151461041c57806342842e0e14610445578063475133341461046e57806355f804b3146104995780635fd8c710146104c25761023b565b80631222b8e2116102035780631222b8e21461033757806318160ddd146103605780631dcd9b551461038b57806323b872dd146103c857806327a81bef146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780631141df201461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061296c565b610928565b60405161027491906129b4565b60405180910390f35b34801561028957600080fd5b506102926109ba565b60405161029f9190612a68565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612ac0565b610a4c565b6040516102dc9190612b2e565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612b75565b610ac8565b005b34801561031a57600080fd5b5061033560048036038101906103309190612ac0565b610c09565b005b34801561034357600080fd5b5061035e60048036038101906103599190612ac0565b610c84565b005b34801561036c57600080fd5b50610375610ca8565b6040516103829190612bc4565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612d14565b610cbf565b6040516103bf9190612a68565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612d83565b610dbb565b005b3480156103fd57600080fd5b506104066110dd565b6040516104139190612bc4565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612ac0565b6110e3565b005b34801561045157600080fd5b5061046c60048036038101906104679190612d83565b611111565b005b34801561047a57600080fd5b50610483611131565b6040516104909190612bc4565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612e36565b611137565b005b6104ca611155565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190612ac0565b611220565b6040516105009190612b2e565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612e83565b611232565b60405161053d9190612bc4565b60405180910390f35b34801561055257600080fd5b5061055b6112ea565b005b61057760048036038101906105729190612eb0565b6112fe565b005b34801561058557600080fd5b5061058e6118c1565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612ac0565b6118f5565b005b3480156105c557600080fd5b506105ce611907565b6040516105db9190612bc4565b60405180910390f35b3480156105f057600080fd5b506105f961190d565b6040516106069190612b2e565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612ac0565b611936565b005b34801561064457600080fd5b5061064d611948565b60405161065a9190612a68565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612e83565b6119da565b6040516106979190612bc4565b60405180910390f35b3480156106ac57600080fd5b506106b56119f2565b6040516106c29190612bc4565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612f38565b6119f8565b005b34801561070057600080fd5b5061071b60048036038101906107169190613019565b611b6f565b005b34801561072957600080fd5b50610744600480360381019061073f9190612ac0565b611be2565b005b34801561075257600080fd5b5061075b611bf4565b6040516107689190612bc4565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612ac0565b611bfa565b6040516107a59190612a68565b60405180910390f35b3480156107ba57600080fd5b506107c3611c98565b6040516107d09190612bc4565b60405180910390f35b3480156107e557600080fd5b506107ee611c9e565b6040516107fb9190612bc4565b60405180910390f35b34801561081057600080fd5b50610819611ca4565b6040516108269190612bc4565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061309c565b611caa565b60405161086391906129b4565b60405180910390f35b34801561087857600080fd5b50610881611d3e565b60405161088e91906129b4565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190612e83565b611d51565b005b3480156108cc57600080fd5b506108d5611dd4565b6040516108e29190612bc4565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190612e83565b611dda565b60405161091f9190612bc4565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546109c99061310b565b80601f01602080910402602001604051908101604052809291908181526020018280546109f59061310b565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b6000610a5782611df2565b610a8d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad382611220565b90508073ffffffffffffffffffffffffffffffffffffffff16610af4611e51565b73ffffffffffffffffffffffffffffffffffffffff1614610b5757610b2081610b1b611e51565b611caa565b610b56576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c11611e59565b610c19610ca8565b81600954610c27919061316b565b1015610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90613211565b60405180910390fd5b8060096000828254610c7a919061316b565b9250508190555050565b610c8c611e59565b8060096000828254610c9e9190613231565b9250508190555050565b6000610cb2611ed7565b6002546001540303905090565b6060600084905060008484610cd4919061316b565b67ffffffffffffffff811115610ced57610cec612be9565b5b6040519080825280601f01601f191660200182016040528015610d1f5781602001600182028036833780820191505090505b50905060008590505b84811015610dae57828181518110610d4357610d42613287565b5b602001015160f81c60f81b828783610d5b919061316b565b81518110610d6c57610d6b613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080610da6906132b6565b915050610d28565b5080925050509392505050565b6000610dc682611ee0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e3984611fac565b91509150610e4f8187610e4a611e51565b611fce565b610e9b57610e6486610e5f611e51565b611caa565b610e9a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f01576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f0e8686866001612012565b8015610f1957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fe785610fc3888887612018565b7c020000000000000000000000000000000000000000000000000000000017612040565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361106d576000600185019050600060056000838152602001908152602001600020540361106b57600154811461106a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110d5868686600161206b565b505050505050565b600d5481565b6110eb611e59565b6110f53382612071565b80600d6000828254611107919061316b565b9250508190555050565b61112c83838360405180602001604052806000815250611b6f565b505050565b600a5481565b61113f611e59565b81816013919061115092919061285d565b505050565b61115d611e59565b60007341159f983d2826914864e11adde2346238c8a60273ffffffffffffffffffffffffffffffffffffffff16476040516111979061332f565b60006040518083038185875af1925050503d80600081146111d4576040519150601f19603f3d011682016040523d82523d6000602084013e6111d9565b606091505b505090508061121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613390565b60405180910390fd5b50565b600061122b82611ee0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611299576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f2611e59565b6112fc600061208f565b565b601260009054906101000a900460ff1661134d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611344906133fc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613468565b60405180910390fd5b60006113de3373ffffffffffffffffffffffffffffffffffffffff166014612153565b90506113ed816026602a610cbf565b90508160405160200161140091906134c4565b604051602081830303815290604052805190602001208160405160200161142791906134c4565b604051602081830303815290604052805190602001201461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613527565b60405180910390fd5b82611486610ca8565b6114909190613231565b600d546009546114a0919061316b565b10156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613593565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5484826115349190613231565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613625565b60405180910390fd5b6000841180156115875750600e548411155b6115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613691565b60405180910390fd5b600a54600b541061163057601154846115df91906136b1565b341015611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613757565b60405180910390fd5b61162b3385612071565b61186c565b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611810576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546116c8919061316b565b90508085116117455784600b60008282546116e39190613231565b9250508190555084601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117399190613231565b92505081905550611800565b80600b60008282546117579190613231565b92505081905550601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060115481866117b3919061316b565b6117bd91906136b1565b3410156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f6906137c3565b60405180910390fd5b5b61180a3386612071565b5061186b565b6011548461181e91906136b1565b341015611860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611857906137c3565b60405180910390fd5b61186a3385612071565b5b5b83816118789190613231565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6118c9611e59565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6118fd611e59565b80600f8190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61193e611e59565b8060118190555050565b6060600480546119579061310b565b80601f01602080910402602001604051908101604052809291908181526020018280546119839061310b565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b5050505050905090565b60146020528060005260406000206000915090505481565b60115481565b611a00611e51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a64576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611a71611e51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1e611e51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b6391906129b4565b60405180910390a35050565b611b7a848484610dbb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bdc57611ba58484848461238f565b611bdb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611bea611e59565b80600e8190555050565b600c5481565b6060611c0582611df2565b611c3b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c456124df565b90506000815103611c655760405180602001604052806000815250611c90565b80611c6f84612571565b604051602001611c809291906137e3565b6040516020818303038152906040525b915050919050565b600b5481565b600e5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611d59611e59565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613879565b60405180910390fd5b611dd18161208f565b50565b60105481565b60156020528060005260406000206000915090505481565b600081611dfd611ed7565b11158015611e0c575060015482105b8015611e4a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611e616125cb565b73ffffffffffffffffffffffffffffffffffffffff16611e7f61190d565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906138e5565b60405180910390fd5b565b60006001905090565b60008082905080611eef611ed7565b11611f7557600154811015611f745760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f72575b60008103611f68576005600083600190039350838152602001908152602001600020549050611f3e565b8092505050611fa7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861202f8686846125d3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61208b8282604051806020016040528060008152506125dc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000600283600261216691906136b1565b6121709190613231565b67ffffffffffffffff81111561218957612188612be9565b5b6040519080825280601f01601f1916602001820160405280156121bb5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106121f3576121f2613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061225757612256613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261229791906136b1565b6122a19190613231565b90505b6001811115612341577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106122e3576122e2613287565b5b1a60f81b8282815181106122fa576122f9613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061233a90613905565b90506122a4565b5060008414612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c9061397a565b60405180910390fd5b8091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b5611e51565b8786866040518563ffffffff1660e01b81526004016123d794939291906139ef565b6020604051808303816000875af192505050801561241357506040513d601f19601f820116820180604052508101906124109190613a50565b60015b61248c573d8060008114612443576040519150601f19603f3d011682016040523d82523d6000602084013e612448565b606091505b506000815103612484576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601380546124ee9061310b565b80601f016020809104026020016040519081016040528092919081815260200182805461251a9061310b565b80156125675780601f1061253c57610100808354040283529160200191612567565b820191906000526020600020905b81548152906001019060200180831161254a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156125b757600183039250600a81066030018353600a81049050612597565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6125e6838361267a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126755760006001549050600083820390505b612627600086838060010194508661238f565b61265d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261457816001541461267257600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612721576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272e6000848385612012565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127a5836127966000866000612018565b61279f8561284d565b17612040565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106127c957806001819055505050612848600084838561206b565b505050565b60006001821460e11b9050919050565b8280546128699061310b565b90600052602060002090601f01602090048101928261288b57600085556128d2565b82601f106128a457803560ff19168380011785556128d2565b828001600101855582156128d2579182015b828111156128d15782358255916020019190600101906128b6565b5b5090506128df91906128e3565b5090565b5b808211156128fc5760008160009055506001016128e4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61294981612914565b811461295457600080fd5b50565b60008135905061296681612940565b92915050565b6000602082840312156129825761298161290a565b5b600061299084828501612957565b91505092915050565b60008115159050919050565b6129ae81612999565b82525050565b60006020820190506129c960008301846129a5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a095780820151818401526020810190506129ee565b83811115612a18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a3a826129cf565b612a4481856129da565b9350612a548185602086016129eb565b612a5d81612a1e565b840191505092915050565b60006020820190508181036000830152612a828184612a2f565b905092915050565b6000819050919050565b612a9d81612a8a565b8114612aa857600080fd5b50565b600081359050612aba81612a94565b92915050565b600060208284031215612ad657612ad561290a565b5b6000612ae484828501612aab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b1882612aed565b9050919050565b612b2881612b0d565b82525050565b6000602082019050612b436000830184612b1f565b92915050565b612b5281612b0d565b8114612b5d57600080fd5b50565b600081359050612b6f81612b49565b92915050565b60008060408385031215612b8c57612b8b61290a565b5b6000612b9a85828601612b60565b9250506020612bab85828601612aab565b9150509250929050565b612bbe81612a8a565b82525050565b6000602082019050612bd96000830184612bb5565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c2182612a1e565b810181811067ffffffffffffffff82111715612c4057612c3f612be9565b5b80604052505050565b6000612c53612900565b9050612c5f8282612c18565b919050565b600067ffffffffffffffff821115612c7f57612c7e612be9565b5b612c8882612a1e565b9050602081019050919050565b82818337600083830152505050565b6000612cb7612cb284612c64565b612c49565b905082815260208101848484011115612cd357612cd2612be4565b5b612cde848285612c95565b509392505050565b600082601f830112612cfb57612cfa612bdf565b5b8135612d0b848260208601612ca4565b91505092915050565b600080600060608486031215612d2d57612d2c61290a565b5b600084013567ffffffffffffffff811115612d4b57612d4a61290f565b5b612d5786828701612ce6565b9350506020612d6886828701612aab565b9250506040612d7986828701612aab565b9150509250925092565b600080600060608486031215612d9c57612d9b61290a565b5b6000612daa86828701612b60565b9350506020612dbb86828701612b60565b9250506040612dcc86828701612aab565b9150509250925092565b600080fd5b600080fd5b60008083601f840112612df657612df5612bdf565b5b8235905067ffffffffffffffff811115612e1357612e12612dd6565b5b602083019150836001820283011115612e2f57612e2e612ddb565b5b9250929050565b60008060208385031215612e4d57612e4c61290a565b5b600083013567ffffffffffffffff811115612e6b57612e6a61290f565b5b612e7785828601612de0565b92509250509250929050565b600060208284031215612e9957612e9861290a565b5b6000612ea784828501612b60565b91505092915050565b60008060408385031215612ec757612ec661290a565b5b6000612ed585828601612aab565b925050602083013567ffffffffffffffff811115612ef657612ef561290f565b5b612f0285828601612ce6565b9150509250929050565b612f1581612999565b8114612f2057600080fd5b50565b600081359050612f3281612f0c565b92915050565b60008060408385031215612f4f57612f4e61290a565b5b6000612f5d85828601612b60565b9250506020612f6e85828601612f23565b9150509250929050565b600067ffffffffffffffff821115612f9357612f92612be9565b5b612f9c82612a1e565b9050602081019050919050565b6000612fbc612fb784612f78565b612c49565b905082815260208101848484011115612fd857612fd7612be4565b5b612fe3848285612c95565b509392505050565b600082601f83011261300057612fff612bdf565b5b8135613010848260208601612fa9565b91505092915050565b600080600080608085870312156130335761303261290a565b5b600061304187828801612b60565b945050602061305287828801612b60565b935050604061306387828801612aab565b925050606085013567ffffffffffffffff8111156130845761308361290f565b5b61309087828801612feb565b91505092959194509250565b600080604083850312156130b3576130b261290a565b5b60006130c185828601612b60565b92505060206130d285828601612b60565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061312357607f821691505b602082108103613136576131356130dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061317682612a8a565b915061318183612a8a565b9250828210156131945761319361313c565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006131fb6027836129da565b91506132068261319f565b604082019050919050565b6000602082019050818103600083015261322a816131ee565b9050919050565b600061323c82612a8a565b915061324783612a8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561327c5761327b61313c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132c182612a8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132f3576132f261313c565b5b600182019050919050565b600081905092915050565b50565b60006133196000836132fe565b915061332482613309565b600082019050919050565b600061333a8261330c565b9150819050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b600061337a6015836129da565b915061338582613344565b602082019050919050565b600060208201905081810360008301526133a98161336d565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006133e66017836129da565b91506133f1826133b0565b602082019050919050565b60006020820190508181036000830152613415816133d9565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000613452601c836129da565b915061345d8261341c565b602082019050919050565b6000602082019050818103600083015261348181613445565b9050919050565b600081905092915050565b600061349e826129cf565b6134a88185613488565b93506134b88185602086016129eb565b80840191505092915050565b60006134d08284613493565b915081905092915050565b7f50617373636f64652069732057726f6e67000000000000000000000000000000600082015250565b60006135116011836129da565b915061351c826134db565b602082019050919050565b6000602082019050818103600083015261354081613504565b9050919050565b7f4d6178206f7574206f66205363686f626c696e7320506f70756c6174696f6e2e600082015250565b600061357d6020836129da565b915061358882613547565b602082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f546f6f206d616e79205363686f6c696e7320696e20796f75722066616d696c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061360f6021836129da565b915061361a826135b3565b604082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061367b6014836129da565b915061368682613645565b602082019050919050565b600060208201905081810360008301526136aa8161366e565b9050919050565b60006136bc82612a8a565b91506136c783612a8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613700576136ff61313c565b5b828202905092915050565b7f4e656564204d6f72652045544800000000000000000000000000000000000000600082015250565b6000613741600d836129da565b915061374c8261370b565b602082019050919050565b6000602082019050818103600083015261377081613734565b9050919050565b7f4e656564206d6f72652045544800000000000000000000000000000000000000600082015250565b60006137ad600d836129da565b91506137b882613777565b602082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b60006137ef8285613493565b91506137fb8284613493565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138636026836129da565b915061386e82613807565b604082019050919050565b6000602082019050818103600083015261389281613856565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138cf6020836129da565b91506138da82613899565b602082019050919050565b600060208201905081810360008301526138fe816138c2565b9050919050565b600061391082612a8a565b9150600082036139235761392261313c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006139646020836129da565b915061396f8261392e565b602082019050919050565b6000602082019050818103600083015261399381613957565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139c18261399a565b6139cb81856139a5565b93506139db8185602086016129eb565b6139e481612a1e565b840191505092915050565b6000608082019050613a046000830187612b1f565b613a116020830186612b1f565b613a1e6040830185612bb5565b8181036060830152613a3081846139b6565b905095945050505050565b600081519050613a4a81612940565b92915050565b600060208284031215613a6657613a6561290a565b5b6000613a7484828501613a3b565b9150509291505056fea2646970667358221220c860e41b17b596d118fc716c66aa8a4c5fc7c73aa8dfeca4134e9b6d31b4a42664736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80637bddd65b1161012e578063c732d201116100ab578063e985e9c51161006f578063e985e9c51461082f578063eb8d24441461086c578063f2fde38b14610897578063f4464cf1146108c0578063fbbf8cc3146108eb5761023b565b8063c732d20114610746578063c87b56dd14610771578063cf6db226146107ae578063d3464cbd146107d9578063d5abeb01146108045761023b565b806396b10201116100f257806396b1020114610663578063a035b1fe146106a0578063a22cb465146106cb578063b88d4fde146106f4578063c6f6f2161461071d5761023b565b80637bddd65b146105905780638bc35c2f146105b95780638da5cb5b146105e457806391b7f5ed1461060f57806395d89b41146106385761023b565b80632fbba115116101bc5780636352211e116101805780636352211e146104cc57806370a0823114610509578063715018a61461054657806377097fc81461055d5780637ba5e621146105795761023b565b80632fbba1151461041c57806342842e0e14610445578063475133341461046e57806355f804b3146104995780635fd8c710146104c25761023b565b80631222b8e2116102035780631222b8e21461033757806318160ddd146103605780631dcd9b551461038b57806323b872dd146103c857806327a81bef146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780631141df201461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061296c565b610928565b60405161027491906129b4565b60405180910390f35b34801561028957600080fd5b506102926109ba565b60405161029f9190612a68565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612ac0565b610a4c565b6040516102dc9190612b2e565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612b75565b610ac8565b005b34801561031a57600080fd5b5061033560048036038101906103309190612ac0565b610c09565b005b34801561034357600080fd5b5061035e60048036038101906103599190612ac0565b610c84565b005b34801561036c57600080fd5b50610375610ca8565b6040516103829190612bc4565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612d14565b610cbf565b6040516103bf9190612a68565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190612d83565b610dbb565b005b3480156103fd57600080fd5b506104066110dd565b6040516104139190612bc4565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612ac0565b6110e3565b005b34801561045157600080fd5b5061046c60048036038101906104679190612d83565b611111565b005b34801561047a57600080fd5b50610483611131565b6040516104909190612bc4565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612e36565b611137565b005b6104ca611155565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190612ac0565b611220565b6040516105009190612b2e565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b9190612e83565b611232565b60405161053d9190612bc4565b60405180910390f35b34801561055257600080fd5b5061055b6112ea565b005b61057760048036038101906105729190612eb0565b6112fe565b005b34801561058557600080fd5b5061058e6118c1565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612ac0565b6118f5565b005b3480156105c557600080fd5b506105ce611907565b6040516105db9190612bc4565b60405180910390f35b3480156105f057600080fd5b506105f961190d565b6040516106069190612b2e565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612ac0565b611936565b005b34801561064457600080fd5b5061064d611948565b60405161065a9190612a68565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612e83565b6119da565b6040516106979190612bc4565b60405180910390f35b3480156106ac57600080fd5b506106b56119f2565b6040516106c29190612bc4565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612f38565b6119f8565b005b34801561070057600080fd5b5061071b60048036038101906107169190613019565b611b6f565b005b34801561072957600080fd5b50610744600480360381019061073f9190612ac0565b611be2565b005b34801561075257600080fd5b5061075b611bf4565b6040516107689190612bc4565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612ac0565b611bfa565b6040516107a59190612a68565b60405180910390f35b3480156107ba57600080fd5b506107c3611c98565b6040516107d09190612bc4565b60405180910390f35b3480156107e557600080fd5b506107ee611c9e565b6040516107fb9190612bc4565b60405180910390f35b34801561081057600080fd5b50610819611ca4565b6040516108269190612bc4565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061309c565b611caa565b60405161086391906129b4565b60405180910390f35b34801561087857600080fd5b50610881611d3e565b60405161088e91906129b4565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190612e83565b611d51565b005b3480156108cc57600080fd5b506108d5611dd4565b6040516108e29190612bc4565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190612e83565b611dda565b60405161091f9190612bc4565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546109c99061310b565b80601f01602080910402602001604051908101604052809291908181526020018280546109f59061310b565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b6000610a5782611df2565b610a8d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad382611220565b90508073ffffffffffffffffffffffffffffffffffffffff16610af4611e51565b73ffffffffffffffffffffffffffffffffffffffff1614610b5757610b2081610b1b611e51565b611caa565b610b56576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c11611e59565b610c19610ca8565b81600954610c27919061316b565b1015610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90613211565b60405180910390fd5b8060096000828254610c7a919061316b565b9250508190555050565b610c8c611e59565b8060096000828254610c9e9190613231565b9250508190555050565b6000610cb2611ed7565b6002546001540303905090565b6060600084905060008484610cd4919061316b565b67ffffffffffffffff811115610ced57610cec612be9565b5b6040519080825280601f01601f191660200182016040528015610d1f5781602001600182028036833780820191505090505b50905060008590505b84811015610dae57828181518110610d4357610d42613287565b5b602001015160f81c60f81b828783610d5b919061316b565b81518110610d6c57610d6b613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080610da6906132b6565b915050610d28565b5080925050509392505050565b6000610dc682611ee0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e3984611fac565b91509150610e4f8187610e4a611e51565b611fce565b610e9b57610e6486610e5f611e51565b611caa565b610e9a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f01576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f0e8686866001612012565b8015610f1957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fe785610fc3888887612018565b7c020000000000000000000000000000000000000000000000000000000017612040565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361106d576000600185019050600060056000838152602001908152602001600020540361106b57600154811461106a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110d5868686600161206b565b505050505050565b600d5481565b6110eb611e59565b6110f53382612071565b80600d6000828254611107919061316b565b9250508190555050565b61112c83838360405180602001604052806000815250611b6f565b505050565b600a5481565b61113f611e59565b81816013919061115092919061285d565b505050565b61115d611e59565b60007341159f983d2826914864e11adde2346238c8a60273ffffffffffffffffffffffffffffffffffffffff16476040516111979061332f565b60006040518083038185875af1925050503d80600081146111d4576040519150601f19603f3d011682016040523d82523d6000602084013e6111d9565b606091505b505090508061121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613390565b60405180910390fd5b50565b600061122b82611ee0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611299576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f2611e59565b6112fc600061208f565b565b601260009054906101000a900460ff1661134d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611344906133fc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613468565b60405180910390fd5b60006113de3373ffffffffffffffffffffffffffffffffffffffff166014612153565b90506113ed816026602a610cbf565b90508160405160200161140091906134c4565b604051602081830303815290604052805190602001208160405160200161142791906134c4565b604051602081830303815290604052805190602001201461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613527565b60405180910390fd5b82611486610ca8565b6114909190613231565b600d546009546114a0919061316b565b10156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890613593565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5484826115349190613231565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613625565b60405180910390fd5b6000841180156115875750600e548411155b6115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613691565b60405180910390fd5b600a54600b541061163057601154846115df91906136b1565b341015611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613757565b60405180910390fd5b61162b3385612071565b61186c565b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611810576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546116c8919061316b565b90508085116117455784600b60008282546116e39190613231565b9250508190555084601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117399190613231565b92505081905550611800565b80600b60008282546117579190613231565b92505081905550601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060115481866117b3919061316b565b6117bd91906136b1565b3410156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f6906137c3565b60405180910390fd5b5b61180a3386612071565b5061186b565b6011548461181e91906136b1565b341015611860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611857906137c3565b60405180910390fd5b61186a3385612071565b5b5b83816118789190613231565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6118c9611e59565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6118fd611e59565b80600f8190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61193e611e59565b8060118190555050565b6060600480546119579061310b565b80601f01602080910402602001604051908101604052809291908181526020018280546119839061310b565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b5050505050905090565b60146020528060005260406000206000915090505481565b60115481565b611a00611e51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a64576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611a71611e51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1e611e51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b6391906129b4565b60405180910390a35050565b611b7a848484610dbb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bdc57611ba58484848461238f565b611bdb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611bea611e59565b80600e8190555050565b600c5481565b6060611c0582611df2565b611c3b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c456124df565b90506000815103611c655760405180602001604052806000815250611c90565b80611c6f84612571565b604051602001611c809291906137e3565b6040516020818303038152906040525b915050919050565b600b5481565b600e5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611d59611e59565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90613879565b60405180910390fd5b611dd18161208f565b50565b60105481565b60156020528060005260406000206000915090505481565b600081611dfd611ed7565b11158015611e0c575060015482105b8015611e4a575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611e616125cb565b73ffffffffffffffffffffffffffffffffffffffff16611e7f61190d565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906138e5565b60405180910390fd5b565b60006001905090565b60008082905080611eef611ed7565b11611f7557600154811015611f745760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f72575b60008103611f68576005600083600190039350838152602001908152602001600020549050611f3e565b8092505050611fa7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861202f8686846125d3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61208b8282604051806020016040528060008152506125dc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000600283600261216691906136b1565b6121709190613231565b67ffffffffffffffff81111561218957612188612be9565b5b6040519080825280601f01601f1916602001820160405280156121bb5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106121f3576121f2613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061225757612256613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261229791906136b1565b6122a19190613231565b90505b6001811115612341577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106122e3576122e2613287565b5b1a60f81b8282815181106122fa576122f9613287565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061233a90613905565b90506122a4565b5060008414612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c9061397a565b60405180910390fd5b8091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b5611e51565b8786866040518563ffffffff1660e01b81526004016123d794939291906139ef565b6020604051808303816000875af192505050801561241357506040513d601f19601f820116820180604052508101906124109190613a50565b60015b61248c573d8060008114612443576040519150601f19603f3d011682016040523d82523d6000602084013e612448565b606091505b506000815103612484576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601380546124ee9061310b565b80601f016020809104026020016040519081016040528092919081815260200182805461251a9061310b565b80156125675780601f1061253c57610100808354040283529160200191612567565b820191906000526020600020905b81548152906001019060200180831161254a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156125b757600183039250600a81066030018353600a81049050612597565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6125e6838361267a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126755760006001549050600083820390505b612627600086838060010194508661238f565b61265d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261457816001541461267257600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612721576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61272e6000848385612012565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127a5836127966000866000612018565b61279f8561284d565b17612040565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106127c957806001819055505050612848600084838561206b565b505050565b60006001821460e11b9050919050565b8280546128699061310b565b90600052602060002090601f01602090048101928261288b57600085556128d2565b82601f106128a457803560ff19168380011785556128d2565b828001600101855582156128d2579182015b828111156128d15782358255916020019190600101906128b6565b5b5090506128df91906128e3565b5090565b5b808211156128fc5760008160009055506001016128e4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61294981612914565b811461295457600080fd5b50565b60008135905061296681612940565b92915050565b6000602082840312156129825761298161290a565b5b600061299084828501612957565b91505092915050565b60008115159050919050565b6129ae81612999565b82525050565b60006020820190506129c960008301846129a5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a095780820151818401526020810190506129ee565b83811115612a18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a3a826129cf565b612a4481856129da565b9350612a548185602086016129eb565b612a5d81612a1e565b840191505092915050565b60006020820190508181036000830152612a828184612a2f565b905092915050565b6000819050919050565b612a9d81612a8a565b8114612aa857600080fd5b50565b600081359050612aba81612a94565b92915050565b600060208284031215612ad657612ad561290a565b5b6000612ae484828501612aab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b1882612aed565b9050919050565b612b2881612b0d565b82525050565b6000602082019050612b436000830184612b1f565b92915050565b612b5281612b0d565b8114612b5d57600080fd5b50565b600081359050612b6f81612b49565b92915050565b60008060408385031215612b8c57612b8b61290a565b5b6000612b9a85828601612b60565b9250506020612bab85828601612aab565b9150509250929050565b612bbe81612a8a565b82525050565b6000602082019050612bd96000830184612bb5565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c2182612a1e565b810181811067ffffffffffffffff82111715612c4057612c3f612be9565b5b80604052505050565b6000612c53612900565b9050612c5f8282612c18565b919050565b600067ffffffffffffffff821115612c7f57612c7e612be9565b5b612c8882612a1e565b9050602081019050919050565b82818337600083830152505050565b6000612cb7612cb284612c64565b612c49565b905082815260208101848484011115612cd357612cd2612be4565b5b612cde848285612c95565b509392505050565b600082601f830112612cfb57612cfa612bdf565b5b8135612d0b848260208601612ca4565b91505092915050565b600080600060608486031215612d2d57612d2c61290a565b5b600084013567ffffffffffffffff811115612d4b57612d4a61290f565b5b612d5786828701612ce6565b9350506020612d6886828701612aab565b9250506040612d7986828701612aab565b9150509250925092565b600080600060608486031215612d9c57612d9b61290a565b5b6000612daa86828701612b60565b9350506020612dbb86828701612b60565b9250506040612dcc86828701612aab565b9150509250925092565b600080fd5b600080fd5b60008083601f840112612df657612df5612bdf565b5b8235905067ffffffffffffffff811115612e1357612e12612dd6565b5b602083019150836001820283011115612e2f57612e2e612ddb565b5b9250929050565b60008060208385031215612e4d57612e4c61290a565b5b600083013567ffffffffffffffff811115612e6b57612e6a61290f565b5b612e7785828601612de0565b92509250509250929050565b600060208284031215612e9957612e9861290a565b5b6000612ea784828501612b60565b91505092915050565b60008060408385031215612ec757612ec661290a565b5b6000612ed585828601612aab565b925050602083013567ffffffffffffffff811115612ef657612ef561290f565b5b612f0285828601612ce6565b9150509250929050565b612f1581612999565b8114612f2057600080fd5b50565b600081359050612f3281612f0c565b92915050565b60008060408385031215612f4f57612f4e61290a565b5b6000612f5d85828601612b60565b9250506020612f6e85828601612f23565b9150509250929050565b600067ffffffffffffffff821115612f9357612f92612be9565b5b612f9c82612a1e565b9050602081019050919050565b6000612fbc612fb784612f78565b612c49565b905082815260208101848484011115612fd857612fd7612be4565b5b612fe3848285612c95565b509392505050565b600082601f83011261300057612fff612bdf565b5b8135613010848260208601612fa9565b91505092915050565b600080600080608085870312156130335761303261290a565b5b600061304187828801612b60565b945050602061305287828801612b60565b935050604061306387828801612aab565b925050606085013567ffffffffffffffff8111156130845761308361290f565b5b61309087828801612feb565b91505092959194509250565b600080604083850312156130b3576130b261290a565b5b60006130c185828601612b60565b92505060206130d285828601612b60565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061312357607f821691505b602082108103613136576131356130dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061317682612a8a565b915061318183612a8a565b9250828210156131945761319361313c565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006131fb6027836129da565b91506132068261319f565b604082019050919050565b6000602082019050818103600083015261322a816131ee565b9050919050565b600061323c82612a8a565b915061324783612a8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561327c5761327b61313c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006132c182612a8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132f3576132f261313c565b5b600182019050919050565b600081905092915050565b50565b60006133196000836132fe565b915061332482613309565b600082019050919050565b600061333a8261330c565b9150819050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b600061337a6015836129da565b915061338582613344565b602082019050919050565b600060208201905081810360008301526133a98161336d565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006133e66017836129da565b91506133f1826133b0565b602082019050919050565b60006020820190508181036000830152613415816133d9565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000613452601c836129da565b915061345d8261341c565b602082019050919050565b6000602082019050818103600083015261348181613445565b9050919050565b600081905092915050565b600061349e826129cf565b6134a88185613488565b93506134b88185602086016129eb565b80840191505092915050565b60006134d08284613493565b915081905092915050565b7f50617373636f64652069732057726f6e67000000000000000000000000000000600082015250565b60006135116011836129da565b915061351c826134db565b602082019050919050565b6000602082019050818103600083015261354081613504565b9050919050565b7f4d6178206f7574206f66205363686f626c696e7320506f70756c6174696f6e2e600082015250565b600061357d6020836129da565b915061358882613547565b602082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f546f6f206d616e79205363686f6c696e7320696e20796f75722066616d696c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061360f6021836129da565b915061361a826135b3565b604082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061367b6014836129da565b915061368682613645565b602082019050919050565b600060208201905081810360008301526136aa8161366e565b9050919050565b60006136bc82612a8a565b91506136c783612a8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613700576136ff61313c565b5b828202905092915050565b7f4e656564204d6f72652045544800000000000000000000000000000000000000600082015250565b6000613741600d836129da565b915061374c8261370b565b602082019050919050565b6000602082019050818103600083015261377081613734565b9050919050565b7f4e656564206d6f72652045544800000000000000000000000000000000000000600082015250565b60006137ad600d836129da565b91506137b882613777565b602082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b60006137ef8285613493565b91506137fb8284613493565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138636026836129da565b915061386e82613807565b604082019050919050565b6000602082019050818103600083015261389281613856565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138cf6020836129da565b91506138da82613899565b602082019050919050565b600060208201905081810360008301526138fe816138c2565b9050919050565b600061391082612a8a565b9150600082036139235761392261313c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006139646020836129da565b915061396f8261392e565b602082019050919050565b6000602082019050818103600083015261399381613957565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139c18261399a565b6139cb81856139a5565b93506139db8185602086016129eb565b6139e481612a1e565b840191505092915050565b6000608082019050613a046000830187612b1f565b613a116020830186612b1f565b613a1e6040830185612bb5565b8181036060830152613a3081846139b6565b905095945050505050565b600081519050613a4a81612940565b92915050565b600060208284031215613a6657613a6561290a565b5b6000613a7484828501613a3b565b9150509291505056fea2646970667358221220c860e41b17b596d118fc716c66aa8a4c5fc7c73aa8dfeca4134e9b6d31b4a42664736f6c634300080d0033
Deployed Bytecode Sourcemap
52206:4756:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20682:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28275:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27823:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55985:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56341:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19736:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53296:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37540:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52452:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56812:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29165:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52309:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56225:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56574:230;;;:::i;:::-;;26118:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21361:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;53702:1853;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55893:84;;;;;;;;;;;;;:::i;:::-;;55771:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52565:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55565:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26498:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52937:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52680:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28551:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29421:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55659:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52403:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26673:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52366:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52510:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52252:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28930:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52744:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52620:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52995;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20682:615;20767:4;21082:10;21067:25;;:11;:25;;;;:102;;;;21159:10;21144:25;;:11;:25;;;;21067:102;:179;;;;21236:10;21221:25;;:11;:25;;;;21067:179;21047:199;;20682:615;;;:::o;26329:100::-;26383:13;26416:5;26409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26329:100;:::o;28275:204::-;28343:7;28368:16;28376:7;28368;:16::i;:::-;28363:64;;28393:34;;;;;;;;;;;;;;28363:64;28447:15;:24;28463:7;28447:24;;;;;;;;;;;;;;;;;;;;;28440:31;;28275:204;;;:::o;27823:386::-;27896:13;27912:16;27920:7;27912;:16::i;:::-;27896:32;;27968:5;27945:28;;:19;:17;:19::i;:::-;:28;;;27941:175;;27993:44;28010:5;28017:19;:17;:19::i;:::-;27993:16;:44::i;:::-;27988:128;;28065:35;;;;;;;;;;;;;;27988:128;27941:175;28155:2;28128:15;:24;28144:7;28128:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28193:7;28189:2;28173:28;;28182:5;28173:28;;;;;;;;;;;;27885:324;27823:386;;:::o;55985:232::-;4511:13;:11;:13::i;:::-;56097::::1;:11;:13::i;:::-;56086:7;56074:9;;:19;;;;:::i;:::-;:36;;56052:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;56202:7;56189:9;;:20;;;;;;;:::i;:::-;;;;;;;;55985:232:::0;:::o;56341:99::-;4511:13;:11;:13::i;:::-;56425:7:::1;56412:9;;:20;;;;;;;:::i;:::-;;;;;;;;56341:99:::0;:::o;19736:315::-;19789:7;20017:15;:13;:15::i;:::-;20002:12;;19986:13;;:28;:46;19979:53;;19736:315;:::o;53296:342::-;53387:13;53410:21;53440:3;53410:34;;53451:19;53492:10;53483:8;:19;;;;:::i;:::-;53473:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53451:52;;53514:6;53523:10;53514:19;;53510:97;53539:8;53535:1;:12;53510:97;;;53588:8;53597:1;53588:11;;;;;;;;:::i;:::-;;;;;;;;;;53565:6;53574:10;53572:1;:12;;;;:::i;:::-;53565:20;;;;;;;;:::i;:::-;;;;;:34;;;;;;;;;;;53549:3;;;;;:::i;:::-;;;;53510:97;;;;53627:6;53613:21;;;;53296:342;;;;;:::o;37540:2800::-;37674:27;37704;37723:7;37704:18;:27::i;:::-;37674:57;;37789:4;37748:45;;37764:19;37748:45;;;37744:86;;37802:28;;;;;;;;;;;;;;37744:86;37844:27;37873:23;37900:28;37920:7;37900:19;:28::i;:::-;37843:85;;;;38028:62;38047:15;38064:4;38070:19;:17;:19::i;:::-;38028:18;:62::i;:::-;38023:174;;38110:43;38127:4;38133:19;:17;:19::i;:::-;38110:16;:43::i;:::-;38105:92;;38162:35;;;;;;;;;;;;;;38105:92;38023:174;38228:1;38214:16;;:2;:16;;;38210:52;;38239:23;;;;;;;;;;;;;;38210:52;38275:43;38297:4;38303:2;38307:7;38316:1;38275:21;:43::i;:::-;38411:15;38408:160;;;38551:1;38530:19;38523:30;38408:160;38946:18;:24;38965:4;38946:24;;;;;;;;;;;;;;;;38944:26;;;;;;;;;;;;39015:18;:22;39034:2;39015:22;;;;;;;;;;;;;;;;39013:24;;;;;;;;;;;39337:145;39374:2;39422:45;39437:4;39443:2;39447:19;39422:14;:45::i;:::-;16964:8;39395:72;39337:18;:145::i;:::-;39308:17;:26;39326:7;39308:26;;;;;;;;;;;:174;;;;39652:1;16964:8;39602:19;:46;:51;39598:626;;39674:19;39706:1;39696:7;:11;39674:33;;39863:1;39829:17;:30;39847:11;39829:30;;;;;;;;;;;;:35;39825:384;;39967:13;;39952:11;:28;39948:242;;40147:19;40114:17;:30;40132:11;40114:30;;;;;;;;;;;:52;;;;39948:242;39825:384;39655:569;39598:626;40271:7;40267:2;40252:27;;40261:4;40252:27;;;;;;;;;;;;40290:42;40311:4;40317:2;40321:7;40330:1;40290:20;:42::i;:::-;37663:2677;;;37540:2800;;;:::o;52452:49::-;;;;:::o;56812:145::-;4511:13;:11;:13::i;:::-;56884:30:::1;56894:10;56906:7;56884:9;:30::i;:::-;56941:7;56925:12;;:23;;;;;;;:::i;:::-;;;;;;;;56812:145:::0;:::o;29165:185::-;29303:39;29320:4;29326:2;29330:7;29303:39;;;;;;;;;;;;:16;:39::i;:::-;29165:185;;;:::o;52309:50::-;;;;:::o;56225:106::-;4511:13;:11;:13::i;:::-;56316:7:::1;;56300:13;:23;;;;;;;:::i;:::-;;56225:106:::0;;:::o;56574:230::-;4511:13;:11;:13::i;:::-;56642:12:::1;52849:42;56660:26;;56708:21;56660:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56641:103;;;56763:7;56755:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;56628:176;56574:230::o:0;26118:144::-;26182:7;26225:27;26244:7;26225:18;:27::i;:::-;26202:52;;26118:144;;;:::o;21361:224::-;21425:7;21466:1;21449:19;;:5;:19;;;21445:60;;21477:28;;;;;;;;;;;;;;21445:60;15916:13;21523:18;:25;21542:5;21523:25;;;;;;;;;;;;;;;;:54;21516:61;;21361:224;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;53702:1853::-;53156:12;;;;;;;;;;;53148:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53228:10;53215:23;;:9;:23;;;53207:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53806:21:::1;53830:52;53866:10;53850:28;;53879:2;53830:19;:52::i;:::-;53806:76;;53903:26;53913:7;53922:2;53926;53903:9;:26::i;:::-;53893:36;;54017:9;53999:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;53989:40;;;;;;53977:7;53959:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;53949:38;;;;;;:80;53940:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;54128:9;54112:13;:11;:13::i;:::-;:25;;;;:::i;:::-;54096:12;;54084:9;;:24;;;;:::i;:::-;:53;;54062:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;54208:21;54232:12;:24;54245:10;54232:24;;;;;;;;;;;;;;;;54208:48;;54318:23;;54305:9;54289:13;:25;;;;:::i;:::-;:52;;54267:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;54447:1;54435:9;:13;:48;;;;;54465:18;;54452:9;:31;;54435:48;54413:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;54565:13;;54546:15;;:32;54542:943;;54625:5;;54615:9;:15;;;;:::i;:::-;54603:9;:27;;54595:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54663:32;54673:10;54685:9;54663;:32::i;:::-;54542:943;;;54747:17;;54716:16;:28;54733:10;54716:28;;;;;;;;;;;;;;;;:48;54712:773;;;54776:29;54828:16;:28;54845:10;54828:28;;;;;;;;;;;;;;;;54808:17;;:48;;;;:::i;:::-;54776:80;;54890:21;54877:9;:34;54873:411;;54951:9;54932:15;;:28;;;;;;;:::i;:::-;;;;;;;;55010:9;54979:16;:28;54996:10;54979:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;54873:411;;;55079:21;55060:15;;:40;;;;;;;:::i;:::-;;;;;;;;55150:17;;55119:16;:28;55136:10;55119:28;;;;;;;;;;;;;;;:48;;;;55241:5;;55218:21;55208:9;:31;;;;:::i;:::-;55207:39;;;;:::i;:::-;55194:9;:52;;55186:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;54873:411;55302:32;55312:10;55324:9;55302;:32::i;:::-;54765:583;54712:773;;;55398:5;;55388:9;:15;;;;:::i;:::-;55375:9;:28;;55367:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55436:32;55446:10;55458:9;55436;:32::i;:::-;54712:773;54542:943;55538:9;55522:13;:25;;;;:::i;:::-;55495:12;:24;55508:10;55495:24;;;;;;;;;;;;;;;:52;;;;53795:1760;;53702:1853:::0;;:::o;55893:84::-;4511:13;:11;:13::i;:::-;55957:12:::1;;;;;;;;;;;55956:13;55941:12;;:28;;;;;;;;;;;;;;;;;;55893:84::o:0;55771:114::-;4511:13;:11;:13::i;:::-;55870:7:::1;55844:23;:33;;;;55771:114:::0;:::o;52565:48::-;;;;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;55565:86::-;4511:13;:11;:13::i;:::-;55637:6:::1;55629:5;:14;;;;55565:86:::0;:::o;26498:104::-;26554:13;26587:7;26580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26498:104;:::o;52937:51::-;;;;;;;;;;;;;;;;;:::o;52680:57::-;;;;:::o;28551:308::-;28662:19;:17;:19::i;:::-;28650:31;;:8;:31;;;28646:61;;28690:17;;;;;;;;;;;;;;28646:61;28772:8;28720:18;:39;28739:19;:17;:19::i;:::-;28720:39;;;;;;;;;;;;;;;:49;28760:8;28720:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28832:8;28796:55;;28811:19;:17;:19::i;:::-;28796:55;;;28842:8;28796:55;;;;;;:::i;:::-;;;;;;;;28551:308;;:::o;29421:399::-;29588:31;29601:4;29607:2;29611:7;29588:12;:31::i;:::-;29652:1;29634:2;:14;;;:19;29630:183;;29673:56;29704:4;29710:2;29714:7;29723:5;29673:30;:56::i;:::-;29668:145;;29757:40;;;;;;;;;;;;;;29668:145;29630:183;29421:399;;;;:::o;55659:104::-;4511:13;:11;:13::i;:::-;55748:7:::1;55727:18;:28;;;;55659:104:::0;:::o;52403:42::-;;;;:::o;26673:318::-;26746:13;26777:16;26785:7;26777;:16::i;:::-;26772:59;;26802:29;;;;;;;;;;;;;;26772:59;26844:21;26868:10;:8;:10::i;:::-;26844:34;;26921:1;26902:7;26896:21;:26;:87;;;;;;;;;;;;;;;;;26949:7;26958:18;26968:7;26958:9;:18::i;:::-;26932:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26896:87;26889:94;;;26673:318;;;:::o;52366:30::-;;;;:::o;52510:48::-;;;;:::o;52252:50::-;;;;:::o;28930:164::-;29027:4;29051:18;:25;29070:5;29051:25;;;;;;;;;;;;;;;:35;29077:8;29051:35;;;;;;;;;;;;;;;;;;;;;;;;;29044:42;;28930:164;;;;:::o;52744:51::-;;;;;;;;;;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;::::0;5612:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;52620:47::-;;;;:::o;52995:::-;;;;;;;;;;;;;;;;;:::o;30075:273::-;30132:4;30188:7;30169:15;:13;:15::i;:::-;:26;;:66;;;;;30222:13;;30212:7;:23;30169:66;:152;;;;;30320:1;16686:8;30273:17;:26;30291:7;30273:26;;;;;;;;;;;;:43;:48;30169:152;30149:172;;30075:273;;;:::o;48636:105::-;48696:7;48723:10;48716:17;;48636:105;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;19260:92::-;19316:7;19343:1;19336:8;;19260:92;:::o;23035:1129::-;23102:7;23122:12;23137:7;23122:22;;23205:4;23186:15;:13;:15::i;:::-;:23;23182:915;;23239:13;;23232:4;:20;23228:869;;;23277:14;23294:17;:23;23312:4;23294:23;;;;;;;;;;;;23277:40;;23410:1;16686:8;23383:6;:23;:28;23379:699;;23902:113;23919:1;23909:6;:11;23902:113;;23962:17;:25;23980:6;;;;;;;23962:25;;;;;;;;;;;;23953:34;;23902:113;;;24048:6;24041:13;;;;;;23379:699;23254:843;23228:869;23182:915;24125:31;;;;;;;;;;;;;;23035:1129;;;;:::o;35876:652::-;35971:27;36000:23;36041:53;36097:15;36041:71;;36283:7;36277:4;36270:21;36318:22;36312:4;36305:36;36394:4;36388;36378:21;36355:44;;36490:19;36484:26;36465:45;;36221:300;35876:652;;;:::o;36641:645::-;36783:11;36945:15;36939:4;36935:26;36927:34;;37104:15;37093:9;37089:31;37076:44;;37251:15;37240:9;37237:30;37230:4;37219:9;37216:19;37213:55;37203:65;;36641:645;;;;;:::o;47469:159::-;;;;;:::o;45781:309::-;45916:7;45936:16;17087:3;45962:19;:40;;45936:67;;17087:3;46029:31;46040:4;46046:2;46050:9;46029:10;:31::i;:::-;46021:40;;:61;;46014:68;;;45781:309;;;;;:::o;25609:447::-;25689:14;25857:15;25850:5;25846:27;25837:36;;26031:5;26017:11;25993:22;25989:40;25986:51;25979:5;25976:62;25966:72;;25609:447;;;;:::o;48287:158::-;;;;;:::o;30432:104::-;30501:27;30511:2;30515:8;30501:27;;;;;;;;;;;;:9;:27::i;:::-;30432:104;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;1731:451::-;1806:13;1832:19;1877:1;1868:6;1864:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1854:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1832:47;;1890:15;:6;1897:1;1890:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1916;:6;1923:1;1916:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1947:9;1972:1;1963:6;1959:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1947:26;;1942:135;1979:1;1975;:5;1942:135;;;2014:12;2035:3;2027:5;:11;2014:25;;;;;;;:::i;:::-;;;;;2002:6;2009:1;2002:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;2064:1;2054:11;;;;;1982:3;;;;:::i;:::-;;;1942:135;;;;2104:1;2095:5;:10;2087:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2167:6;2153:21;;;1731:451;;;;:::o;44291:716::-;44454:4;44500:2;44475:45;;;44521:19;:17;:19::i;:::-;44542:4;44548:7;44557:5;44475:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44471:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44775:1;44758:6;:13;:18;44754:235;;44804:40;;;;;;;;;;;;;;44754:235;44947:6;44941:13;44932:6;44928:2;44924:15;44917:38;44471:529;44644:54;;;44634:64;;;:6;:64;;;;44627:71;;;44291:716;;;;;;:::o;56452:114::-;56512:13;56545;56538:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56452:114;:::o;48847:1960::-;48904:17;49323:3;49316:4;49310:11;49306:21;49299:28;;49414:3;49408:4;49401:17;49520:3;49976:5;50106:1;50101:3;50097:11;50090:18;;50243:2;50237:4;50233:13;50229:2;50225:22;50220:3;50212:36;50284:2;50278:4;50274:13;50266:21;;49868:697;50303:4;49868:697;;;50494:1;50489:3;50485:11;50478:18;;50545:2;50539:4;50535:13;50531:2;50527:22;50522:3;50514:36;50398:2;50392:4;50388:13;50380:21;;49868:697;;;49872:430;50604:3;50599;50595:13;50719:2;50714:3;50710:12;50703:19;;50782:6;50777:3;50770:19;48943:1857;;48847:1960;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;46666:147::-;46803:6;46666:147;;;;;:::o;30952:681::-;31075:19;31081:2;31085:8;31075:5;:19::i;:::-;31154:1;31136:2;:14;;;:19;31132:483;;31176:11;31190:13;;31176:27;;31222:13;31244:8;31238:3;:14;31222:30;;31271:233;31302:62;31341:1;31345:2;31349:7;;;;;;31358:5;31302:30;:62::i;:::-;31297:167;;31400:40;;;;;;;;;;;;;;31297:167;31499:3;31491:5;:11;31271:233;;31586:3;31569:13;;:20;31565:34;;31591:8;;;31565:34;31157:458;;31132:483;30952:681;;;:::o;31906:1529::-;31971:20;31994:13;;31971:36;;32036:1;32022:16;;:2;:16;;;32018:48;;32047:19;;;;;;;;;;;;;;32018:48;32093:1;32081:8;:13;32077:44;;32103:18;;;;;;;;;;;;;;32077:44;32134:61;32164:1;32168:2;32172:12;32186:8;32134:21;:61::i;:::-;32677:1;16053:2;32648:1;:25;;32647:31;32635:8;:44;32609:18;:22;32628:2;32609:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;32956:139;32993:2;33047:33;33070:1;33074:2;33078:1;33047:14;:33::i;:::-;33014:30;33035:8;33014:20;:30::i;:::-;:66;32956:18;:139::i;:::-;32922:17;:31;32940:12;32922:31;;;;;;;;;;;:173;;;;33112:15;33130:12;33112:30;;33157:11;33186:8;33171:12;:23;33157:37;;33209:101;33261:9;;;;;;33257:2;33236:35;;33253:1;33236:35;;;;;;;;;;;;33305:3;33295:7;:13;33209:101;;33342:3;33326:13;:19;;;;32383:974;;33367:60;33396:1;33400:2;33404:12;33418:8;33367:20;:60::i;:::-;31960:1475;31906:1529;;:::o;27439:322::-;27509:14;27740:1;27730:8;27727:15;27702:23;27698:45;27688:55;;27439:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:799::-;7483:6;7491;7499;7548:2;7536:9;7527:7;7523:23;7519:32;7516:119;;;7554:79;;:::i;:::-;7516:119;7702:1;7691:9;7687:17;7674:31;7732:18;7724:6;7721:30;7718:117;;;7754:79;;:::i;:::-;7718:117;7859:63;7914:7;7905:6;7894:9;7890:22;7859:63;:::i;:::-;7849:73;;7645:287;7971:2;7997:53;8042:7;8033:6;8022:9;8018:22;7997:53;:::i;:::-;7987:63;;7942:118;8099:2;8125:53;8170:7;8161:6;8150:9;8146:22;8125:53;:::i;:::-;8115:63;;8070:118;7396:799;;;;;:::o;8201:619::-;8278:6;8286;8294;8343:2;8331:9;8322:7;8318:23;8314:32;8311:119;;;8349:79;;:::i;:::-;8311:119;8469:1;8494:53;8539:7;8530:6;8519:9;8515:22;8494:53;:::i;:::-;8484:63;;8440:117;8596:2;8622:53;8667:7;8658:6;8647:9;8643:22;8622:53;:::i;:::-;8612:63;;8567:118;8724:2;8750:53;8795:7;8786:6;8775:9;8771:22;8750:53;:::i;:::-;8740:63;;8695:118;8201:619;;;;;:::o;8826:117::-;8935:1;8932;8925:12;8949:117;9058:1;9055;9048:12;9086:553;9144:8;9154:6;9204:3;9197:4;9189:6;9185:17;9181:27;9171:122;;9212:79;;:::i;:::-;9171:122;9325:6;9312:20;9302:30;;9355:18;9347:6;9344:30;9341:117;;;9377:79;;:::i;:::-;9341:117;9491:4;9483:6;9479:17;9467:29;;9545:3;9537:4;9529:6;9525:17;9515:8;9511:32;9508:41;9505:128;;;9552:79;;:::i;:::-;9505:128;9086:553;;;;;:::o;9645:529::-;9716:6;9724;9773:2;9761:9;9752:7;9748:23;9744:32;9741:119;;;9779:79;;:::i;:::-;9741:119;9927:1;9916:9;9912:17;9899:31;9957:18;9949:6;9946:30;9943:117;;;9979:79;;:::i;:::-;9943:117;10092:65;10149:7;10140:6;10129:9;10125:22;10092:65;:::i;:::-;10074:83;;;;9870:297;9645:529;;;;;:::o;10180:329::-;10239:6;10288:2;10276:9;10267:7;10263:23;10259:32;10256:119;;;10294:79;;:::i;:::-;10256:119;10414:1;10439:53;10484:7;10475:6;10464:9;10460:22;10439:53;:::i;:::-;10429:63;;10385:117;10180:329;;;;:::o;10515:654::-;10593:6;10601;10650:2;10638:9;10629:7;10625:23;10621:32;10618:119;;;10656:79;;:::i;:::-;10618:119;10776:1;10801:53;10846:7;10837:6;10826:9;10822:22;10801:53;:::i;:::-;10791:63;;10747:117;10931:2;10920:9;10916:18;10903:32;10962:18;10954:6;10951:30;10948:117;;;10984:79;;:::i;:::-;10948:117;11089:63;11144:7;11135:6;11124:9;11120:22;11089:63;:::i;:::-;11079:73;;10874:288;10515:654;;;;;:::o;11175:116::-;11245:21;11260:5;11245:21;:::i;:::-;11238:5;11235:32;11225:60;;11281:1;11278;11271:12;11225:60;11175:116;:::o;11297:133::-;11340:5;11378:6;11365:20;11356:29;;11394:30;11418:5;11394:30;:::i;:::-;11297:133;;;;:::o;11436:468::-;11501:6;11509;11558:2;11546:9;11537:7;11533:23;11529:32;11526:119;;;11564:79;;:::i;:::-;11526:119;11684:1;11709:53;11754:7;11745:6;11734:9;11730:22;11709:53;:::i;:::-;11699:63;;11655:117;11811:2;11837:50;11879:7;11870:6;11859:9;11855:22;11837:50;:::i;:::-;11827:60;;11782:115;11436:468;;;;;:::o;11910:307::-;11971:4;12061:18;12053:6;12050:30;12047:56;;;12083:18;;:::i;:::-;12047:56;12121:29;12143:6;12121:29;:::i;:::-;12113:37;;12205:4;12199;12195:15;12187:23;;11910:307;;;:::o;12223:410::-;12300:5;12325:65;12341:48;12382:6;12341:48;:::i;:::-;12325:65;:::i;:::-;12316:74;;12413:6;12406:5;12399:21;12451:4;12444:5;12440:16;12489:3;12480:6;12475:3;12471:16;12468:25;12465:112;;;12496:79;;:::i;:::-;12465:112;12586:41;12620:6;12615:3;12610;12586:41;:::i;:::-;12306:327;12223:410;;;;;:::o;12652:338::-;12707:5;12756:3;12749:4;12741:6;12737:17;12733:27;12723:122;;12764:79;;:::i;:::-;12723:122;12881:6;12868:20;12906:78;12980:3;12972:6;12965:4;12957:6;12953:17;12906:78;:::i;:::-;12897:87;;12713:277;12652:338;;;;:::o;12996:943::-;13091:6;13099;13107;13115;13164:3;13152:9;13143:7;13139:23;13135:33;13132:120;;;13171:79;;:::i;:::-;13132:120;13291:1;13316:53;13361:7;13352:6;13341:9;13337:22;13316:53;:::i;:::-;13306:63;;13262:117;13418:2;13444:53;13489:7;13480:6;13469:9;13465:22;13444:53;:::i;:::-;13434:63;;13389:118;13546:2;13572:53;13617:7;13608:6;13597:9;13593:22;13572:53;:::i;:::-;13562:63;;13517:118;13702:2;13691:9;13687:18;13674:32;13733:18;13725:6;13722:30;13719:117;;;13755:79;;:::i;:::-;13719:117;13860:62;13914:7;13905:6;13894:9;13890:22;13860:62;:::i;:::-;13850:72;;13645:287;12996:943;;;;;;;:::o;13945:474::-;14013:6;14021;14070:2;14058:9;14049:7;14045:23;14041:32;14038:119;;;14076:79;;:::i;:::-;14038:119;14196:1;14221:53;14266:7;14257:6;14246:9;14242:22;14221:53;:::i;:::-;14211:63;;14167:117;14323:2;14349:53;14394:7;14385:6;14374:9;14370:22;14349:53;:::i;:::-;14339:63;;14294:118;13945:474;;;;;:::o;14425:180::-;14473:77;14470:1;14463:88;14570:4;14567:1;14560:15;14594:4;14591:1;14584:15;14611:320;14655:6;14692:1;14686:4;14682:12;14672:22;;14739:1;14733:4;14729:12;14760:18;14750:81;;14816:4;14808:6;14804:17;14794:27;;14750:81;14878:2;14870:6;14867:14;14847:18;14844:38;14841:84;;14897:18;;:::i;:::-;14841:84;14662:269;14611:320;;;:::o;14937:180::-;14985:77;14982:1;14975:88;15082:4;15079:1;15072:15;15106:4;15103:1;15096:15;15123:191;15163:4;15183:20;15201:1;15183:20;:::i;:::-;15178:25;;15217:20;15235:1;15217:20;:::i;:::-;15212:25;;15256:1;15253;15250:8;15247:34;;;15261:18;;:::i;:::-;15247:34;15306:1;15303;15299:9;15291:17;;15123:191;;;;:::o;15320:226::-;15460:34;15456:1;15448:6;15444:14;15437:58;15529:9;15524:2;15516:6;15512:15;15505:34;15320:226;:::o;15552:366::-;15694:3;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15791:93;15880:3;15791:93;:::i;:::-;15909:2;15904:3;15900:12;15893:19;;15552:366;;;:::o;15924:419::-;16090:4;16128:2;16117:9;16113:18;16105:26;;16177:9;16171:4;16167:20;16163:1;16152:9;16148:17;16141:47;16205:131;16331:4;16205:131;:::i;:::-;16197:139;;15924:419;;;:::o;16349:305::-;16389:3;16408:20;16426:1;16408:20;:::i;:::-;16403:25;;16442:20;16460:1;16442:20;:::i;:::-;16437:25;;16596:1;16528:66;16524:74;16521:1;16518:81;16515:107;;;16602:18;;:::i;:::-;16515:107;16646:1;16643;16639:9;16632:16;;16349:305;;;;:::o;16660:180::-;16708:77;16705:1;16698:88;16805:4;16802:1;16795:15;16829:4;16826:1;16819:15;16846:233;16885:3;16908:24;16926:5;16908:24;:::i;:::-;16899:33;;16954:66;16947:5;16944:77;16941:103;;17024:18;;:::i;:::-;16941:103;17071:1;17064:5;17060:13;17053:20;;16846:233;;;:::o;17085:147::-;17186:11;17223:3;17208:18;;17085:147;;;;:::o;17238:114::-;;:::o;17358:398::-;17517:3;17538:83;17619:1;17614:3;17538:83;:::i;:::-;17531:90;;17630:93;17719:3;17630:93;:::i;:::-;17748:1;17743:3;17739:11;17732:18;;17358:398;;;:::o;17762:379::-;17946:3;17968:147;18111:3;17968:147;:::i;:::-;17961:154;;18132:3;18125:10;;17762:379;;;:::o;18147:171::-;18287:23;18283:1;18275:6;18271:14;18264:47;18147:171;:::o;18324:366::-;18466:3;18487:67;18551:2;18546:3;18487:67;:::i;:::-;18480:74;;18563:93;18652:3;18563:93;:::i;:::-;18681:2;18676:3;18672:12;18665:19;;18324:366;;;:::o;18696:419::-;18862:4;18900:2;18889:9;18885:18;18877:26;;18949:9;18943:4;18939:20;18935:1;18924:9;18920:17;18913:47;18977:131;19103:4;18977:131;:::i;:::-;18969:139;;18696:419;;;:::o;19121:173::-;19261:25;19257:1;19249:6;19245:14;19238:49;19121:173;:::o;19300:366::-;19442:3;19463:67;19527:2;19522:3;19463:67;:::i;:::-;19456:74;;19539:93;19628:3;19539:93;:::i;:::-;19657:2;19652:3;19648:12;19641:19;;19300:366;;;:::o;19672:419::-;19838:4;19876:2;19865:9;19861:18;19853:26;;19925:9;19919:4;19915:20;19911:1;19900:9;19896:17;19889:47;19953:131;20079:4;19953:131;:::i;:::-;19945:139;;19672:419;;;:::o;20097:178::-;20237:30;20233:1;20225:6;20221:14;20214:54;20097:178;:::o;20281:366::-;20423:3;20444:67;20508:2;20503:3;20444:67;:::i;:::-;20437:74;;20520:93;20609:3;20520:93;:::i;:::-;20638:2;20633:3;20629:12;20622:19;;20281:366;;;:::o;20653:419::-;20819:4;20857:2;20846:9;20842:18;20834:26;;20906:9;20900:4;20896:20;20892:1;20881:9;20877:17;20870:47;20934:131;21060:4;20934:131;:::i;:::-;20926:139;;20653:419;;;:::o;21078:148::-;21180:11;21217:3;21202:18;;21078:148;;;;:::o;21232:377::-;21338:3;21366:39;21399:5;21366:39;:::i;:::-;21421:89;21503:6;21498:3;21421:89;:::i;:::-;21414:96;;21519:52;21564:6;21559:3;21552:4;21545:5;21541:16;21519:52;:::i;:::-;21596:6;21591:3;21587:16;21580:23;;21342:267;21232:377;;;;:::o;21615:275::-;21747:3;21769:95;21860:3;21851:6;21769:95;:::i;:::-;21762:102;;21881:3;21874:10;;21615:275;;;;:::o;21896:167::-;22036:19;22032:1;22024:6;22020:14;22013:43;21896:167;:::o;22069:366::-;22211:3;22232:67;22296:2;22291:3;22232:67;:::i;:::-;22225:74;;22308:93;22397:3;22308:93;:::i;:::-;22426:2;22421:3;22417:12;22410:19;;22069:366;;;:::o;22441:419::-;22607:4;22645:2;22634:9;22630:18;22622:26;;22694:9;22688:4;22684:20;22680:1;22669:9;22665:17;22658:47;22722:131;22848:4;22722:131;:::i;:::-;22714:139;;22441:419;;;:::o;22866:182::-;23006:34;23002:1;22994:6;22990:14;22983:58;22866:182;:::o;23054:366::-;23196:3;23217:67;23281:2;23276:3;23217:67;:::i;:::-;23210:74;;23293:93;23382:3;23293:93;:::i;:::-;23411:2;23406:3;23402:12;23395:19;;23054:366;;;:::o;23426:419::-;23592:4;23630:2;23619:9;23615:18;23607:26;;23679:9;23673:4;23669:20;23665:1;23654:9;23650:17;23643:47;23707:131;23833:4;23707:131;:::i;:::-;23699:139;;23426:419;;;:::o;23851:220::-;23991:34;23987:1;23979:6;23975:14;23968:58;24060:3;24055:2;24047:6;24043:15;24036:28;23851:220;:::o;24077:366::-;24219:3;24240:67;24304:2;24299:3;24240:67;:::i;:::-;24233:74;;24316:93;24405:3;24316:93;:::i;:::-;24434:2;24429:3;24425:12;24418:19;;24077:366;;;:::o;24449:419::-;24615:4;24653:2;24642:9;24638:18;24630:26;;24702:9;24696:4;24692:20;24688:1;24677:9;24673:17;24666:47;24730:131;24856:4;24730:131;:::i;:::-;24722:139;;24449:419;;;:::o;24874:170::-;25014:22;25010:1;25002:6;24998:14;24991:46;24874:170;:::o;25050:366::-;25192:3;25213:67;25277:2;25272:3;25213:67;:::i;:::-;25206:74;;25289:93;25378:3;25289:93;:::i;:::-;25407:2;25402:3;25398:12;25391:19;;25050:366;;;:::o;25422:419::-;25588:4;25626:2;25615:9;25611:18;25603:26;;25675:9;25669:4;25665:20;25661:1;25650:9;25646:17;25639:47;25703:131;25829:4;25703:131;:::i;:::-;25695:139;;25422:419;;;:::o;25847:348::-;25887:7;25910:20;25928:1;25910:20;:::i;:::-;25905:25;;25944:20;25962:1;25944:20;:::i;:::-;25939:25;;26132:1;26064:66;26060:74;26057:1;26054:81;26049:1;26042:9;26035:17;26031:105;26028:131;;;26139:18;;:::i;:::-;26028:131;26187:1;26184;26180:9;26169:20;;25847:348;;;;:::o;26201:163::-;26341:15;26337:1;26329:6;26325:14;26318:39;26201:163;:::o;26370:366::-;26512:3;26533:67;26597:2;26592:3;26533:67;:::i;:::-;26526:74;;26609:93;26698:3;26609:93;:::i;:::-;26727:2;26722:3;26718:12;26711:19;;26370:366;;;:::o;26742:419::-;26908:4;26946:2;26935:9;26931:18;26923:26;;26995:9;26989:4;26985:20;26981:1;26970:9;26966:17;26959:47;27023:131;27149:4;27023:131;:::i;:::-;27015:139;;26742:419;;;:::o;27167:163::-;27307:15;27303:1;27295:6;27291:14;27284:39;27167:163;:::o;27336:366::-;27478:3;27499:67;27563:2;27558:3;27499:67;:::i;:::-;27492:74;;27575:93;27664:3;27575:93;:::i;:::-;27693:2;27688:3;27684:12;27677:19;;27336:366;;;:::o;27708:419::-;27874:4;27912:2;27901:9;27897:18;27889:26;;27961:9;27955:4;27951:20;27947:1;27936:9;27932:17;27925:47;27989:131;28115:4;27989:131;:::i;:::-;27981:139;;27708:419;;;:::o;28133:435::-;28313:3;28335:95;28426:3;28417:6;28335:95;:::i;:::-;28328:102;;28447:95;28538:3;28529:6;28447:95;:::i;:::-;28440:102;;28559:3;28552:10;;28133:435;;;;;:::o;28574:225::-;28714:34;28710:1;28702:6;28698:14;28691:58;28783:8;28778:2;28770:6;28766:15;28759:33;28574:225;:::o;28805:366::-;28947:3;28968:67;29032:2;29027:3;28968:67;:::i;:::-;28961:74;;29044:93;29133:3;29044:93;:::i;:::-;29162:2;29157:3;29153:12;29146:19;;28805:366;;;:::o;29177:419::-;29343:4;29381:2;29370:9;29366:18;29358:26;;29430:9;29424:4;29420:20;29416:1;29405:9;29401:17;29394:47;29458:131;29584:4;29458:131;:::i;:::-;29450:139;;29177:419;;;:::o;29602:182::-;29742:34;29738:1;29730:6;29726:14;29719:58;29602:182;:::o;29790:366::-;29932:3;29953:67;30017:2;30012:3;29953:67;:::i;:::-;29946:74;;30029:93;30118:3;30029:93;:::i;:::-;30147:2;30142:3;30138:12;30131:19;;29790:366;;;:::o;30162:419::-;30328:4;30366:2;30355:9;30351:18;30343:26;;30415:9;30409:4;30405:20;30401:1;30390:9;30386:17;30379:47;30443:131;30569:4;30443:131;:::i;:::-;30435:139;;30162:419;;;:::o;30587:171::-;30626:3;30649:24;30667:5;30649:24;:::i;:::-;30640:33;;30695:4;30688:5;30685:15;30682:41;;30703:18;;:::i;:::-;30682:41;30750:1;30743:5;30739:13;30732:20;;30587:171;;;:::o;30764:182::-;30904:34;30900:1;30892:6;30888:14;30881:58;30764:182;:::o;30952:366::-;31094:3;31115:67;31179:2;31174:3;31115:67;:::i;:::-;31108:74;;31191:93;31280:3;31191:93;:::i;:::-;31309:2;31304:3;31300:12;31293:19;;30952:366;;;:::o;31324:419::-;31490:4;31528:2;31517:9;31513:18;31505:26;;31577:9;31571:4;31567:20;31563:1;31552:9;31548:17;31541:47;31605:131;31731:4;31605:131;:::i;:::-;31597:139;;31324:419;;;:::o;31749:98::-;31800:6;31834:5;31828:12;31818:22;;31749:98;;;:::o;31853:168::-;31936:11;31970:6;31965:3;31958:19;32010:4;32005:3;32001:14;31986:29;;31853:168;;;;:::o;32027:360::-;32113:3;32141:38;32173:5;32141:38;:::i;:::-;32195:70;32258:6;32253:3;32195:70;:::i;:::-;32188:77;;32274:52;32319:6;32314:3;32307:4;32300:5;32296:16;32274:52;:::i;:::-;32351:29;32373:6;32351:29;:::i;:::-;32346:3;32342:39;32335:46;;32117:270;32027:360;;;;:::o;32393:640::-;32588:4;32626:3;32615:9;32611:19;32603:27;;32640:71;32708:1;32697:9;32693:17;32684:6;32640:71;:::i;:::-;32721:72;32789:2;32778:9;32774:18;32765:6;32721:72;:::i;:::-;32803;32871:2;32860:9;32856:18;32847:6;32803:72;:::i;:::-;32922:9;32916:4;32912:20;32907:2;32896:9;32892:18;32885:48;32950:76;33021:4;33012:6;32950:76;:::i;:::-;32942:84;;32393:640;;;;;;;:::o;33039:141::-;33095:5;33126:6;33120:13;33111:22;;33142:32;33168:5;33142:32;:::i;:::-;33039:141;;;;:::o;33186:349::-;33255:6;33304:2;33292:9;33283:7;33279:23;33275:32;33272:119;;;33310:79;;:::i;:::-;33272:119;33430:1;33455:63;33510:7;33501:6;33490:9;33486:22;33455:63;:::i;:::-;33445:73;;33401:127;33186:349;;;;:::o
Swarm Source
ipfs://c860e41b17b596d118fc716c66aa8a4c5fc7c73aa8dfeca4134e9b6d31b4a426
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.