Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,111 WAA
Holders
297
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 WAALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
WeAreAnimals
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-25 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/WeAreAnimals.sol contract WeAreAnimals is ERC721A, ERC2981, Ownable { enum Status { Waiting, Started, Finished, AllowListOnly } Status public status; string public baseURI; uint256 public constant MAX_MINT_PER_ADDR = 4; uint256 public constant MAX_SUPPLY = 1111; uint256 public constant PRICE = 0.02022 * 10 ** 18; // 0.01 ETH address public royaltyReceiver = 0x0862a6B1767c66d486a833A52f04836CEBe1E1e0; uint96 public royaltyFeeNumerator = 500; mapping(address => uint256) public allowlist; event Minted(address minter, uint256 amount); event StatusChanged(Status status); event BaseURIChanged(string newBaseURI); constructor(string memory initBaseURI) ERC721A("WeAreAnimals", "WAA") { baseURI = initBaseURI; _setDefaultRoyalty(royaltyReceiver, royaltyFeeNumerator); } function _baseURI() internal view override returns (string memory) { return baseURI; } function mint(uint256 quantity) external payable { require(status == Status.Started, "WeAreAnimals: minting is not started"); require(tx.origin == msg.sender, "WeAreAnimals: you are not the owner"); require(numberMinted(msg.sender) + quantity <= MAX_MINT_PER_ADDR, "WeAreAnimals: you have already minted too many NFT"); require(totalSupply() + quantity <= MAX_SUPPLY, "WeAreAnimals: total supply is too high"); _safeMint(msg.sender, quantity); refundIfOver(PRICE * quantity); emit Minted(msg.sender, quantity); } function allowlistMint(uint256 quantity) external payable { require(allowlist[msg.sender] > 0, "WeAreAnimals: you are not on the allowlist"); require(status == Status.Started || status == Status.AllowListOnly, "WeAreAnimals: allowlist minting is not started"); require(tx.origin == msg.sender, "WeAreAnimals: "); require(quantity <= allowlist[msg.sender], "WeAreAnimals: you have already minted too many NFT"); require(totalSupply() + quantity <= MAX_SUPPLY, "WeAreAnimals: total supply is too high"); allowlist[msg.sender] = allowlist[msg.sender] - quantity; _safeMint(msg.sender, quantity); emit Minted(msg.sender, quantity); } function seedAllowlist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner { require(addresses.length == numSlots.length, "WeAreAnimals: addresses and numSlots must have the same length"); for (uint256 i = 0; i < addresses.length; i++) { allowlist[addresses[i]] = numSlots[i]; } } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function refundIfOver(uint256 price) private { require(msg.value >= price, "WeAreAnimals: you don't have enough ETH"); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function setStatus(Status newStatus) external onlyOwner { status = newStatus; emit StatusChanged(status); } function setBaseURI(string calldata newBaseURI) external onlyOwner { baseURI = newBaseURI; emit BaseURIChanged(newBaseURI); } function withdraw(address payable recipient) external onlyOwner { uint256 balance = address(this).balance; (bool success,) = recipient.call{value : balance}(""); require(success, "WeAreAnimals: recipient failed to receive ETH"); } function setRoyaltyFee(uint96 newRoyaltyFeeNumerator) external onlyOwner { royaltyFeeNumerator = newRoyaltyFeeNumerator; _setDefaultRoyalty(royaltyReceiver, royaltyFeeNumerator); } function setRoyaltyAddress(address newRoyaltyReceiver) external onlyOwner { royaltyReceiver = newRoyaltyReceiver; _setDefaultRoyalty(royaltyReceiver, royaltyFeeNumerator); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"enum WeAreAnimals.Status","name":"status","type":"uint8"}],"name":"StatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyFeeNumerator","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRoyaltyReceiver","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"newRoyaltyFeeNumerator","type":"uint96"}],"name":"setRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum WeAreAnimals.Status","name":"newStatus","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum WeAreAnimals.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052730862a6b1767c66d486a833a52f04836cebe1e1e0600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f4600c60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055503480156200009957600080fd5b5060405162004ef638038062004ef68339818101604052810190620000bf9190620006d0565b6040518060400160405280600c81526020017f5765417265416e696d616c7300000000000000000000000000000000000000008152506040518060400160405280600381526020017f574141000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014392919062000483565b5080600390805190602001906200015c92919062000483565b506200016d6200020360201b60201c565b600081905550505062000195620001896200020860201b60201c565b6200021060201b60201c565b80600b9080519060200190620001ad92919062000483565b50620001fc600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60149054906101000a90046bffffffffffffffffffffffff16620002d660201b60201c565b50620008a0565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e66200047960201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e90620007a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b0906200081a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b82805462000491906200086b565b90600052602060002090601f016020900481019282620004b5576000855562000501565b82601f10620004d057805160ff191683800117855562000501565b8280016001018555821562000501579182015b8281111562000500578251825591602001919060010190620004e3565b5b50905062000510919062000514565b5090565b5b808211156200052f57600081600090555060010162000515565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200059c8262000551565b810181811067ffffffffffffffff82111715620005be57620005bd62000562565b5b80604052505050565b6000620005d362000533565b9050620005e1828262000591565b919050565b600067ffffffffffffffff82111562000604576200060362000562565b5b6200060f8262000551565b9050602081019050919050565b60005b838110156200063c5780820151818401526020810190506200061f565b838111156200064c576000848401525b50505050565b6000620006696200066384620005e6565b620005c7565b9050828152602081018484840111156200068857620006876200054c565b5b620006958482856200061c565b509392505050565b600082601f830112620006b557620006b462000547565b5b8151620006c784826020860162000652565b91505092915050565b600060208284031215620006e957620006e86200053d565b5b600082015167ffffffffffffffff8111156200070a576200070962000542565b5b62000718848285016200069d565b91505092915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000790602a8362000721565b91506200079d8262000732565b604082019050919050565b60006020820190508181036000830152620007c38162000781565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006200080260198362000721565b91506200080f82620007ca565b602082019050919050565b600060208201905081810360008301526200083581620007f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200088457607f821691505b6020821081036200089a57620008996200083c565b5b50919050565b61464680620008b06000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c180526a1161006f578063c180526a14610747578063c87b56dd14610763578063dc33e681146107a0578063e985e9c5146107dd578063f2fde38b1461081a57610204565b8063a22cb4651461068f578063a7cd52cb146106b8578063b05863d5146106f5578063b88d4fde1461071e57610204565b80638d859f3e116100e75780638d859f3e146105c75780638da5cb5b146105f257806395d89b411461061d5780639fbc871314610648578063a0712d681461067357610204565b80636c0360eb1461051d57806370a0823114610548578063715018a61461058557806381ddcc1f1461059c57610204565b806323b872dd1161019b57806332cb6b0c1161016a57806332cb6b0c1461043a57806342842e0e1461046557806351cff8d91461048e57806355f804b3146104b75780636352211e146104e057610204565b806323b872dd146103815780632a55205a146103aa5780632e49d78b146103e857806331faafb41461041157610204565b8063095ea7b3116101d7578063095ea7b3146102d7578063161548621461030057806318160ddd1461032b578063200d2ed21461035657610204565b806301ffc9a71461020957806306d254da1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061300d565b610843565b60405161023d9190613055565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130ce565b610865565b005b34801561027b57600080fd5b5061028461096b565b6040516102919190613194565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131ec565b6109fd565b6040516102ce9190613228565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613243565b610a79565b005b34801561030c57600080fd5b50610315610c1f565b6040516103229190613292565b60405180910390f35b34801561033757600080fd5b50610340610c24565b60405161034d9190613292565b60405180910390f35b34801561036257600080fd5b5061036b610c3b565b6040516103789190613324565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a3919061333f565b610c4e565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613392565b610c5e565b6040516103df9291906133d2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613420565b610e48565b005b34801561041d57600080fd5b5061043860048036038101906104339190613491565b610f37565b005b34801561044657600080fd5b5061044f61102d565b60405161045c9190613292565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061333f565b611033565b005b34801561049a57600080fd5b506104b560048036038101906104b091906134fc565b611053565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061358e565b611185565b005b3480156104ec57600080fd5b50610507600480360381019061050291906131ec565b611250565b6040516105149190613228565b60405180910390f35b34801561052957600080fd5b50610532611262565b60405161053f9190613194565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906130ce565b6112f0565b60405161057c9190613292565b60405180910390f35b34801561059157600080fd5b5061059a6113a8565b005b3480156105a857600080fd5b506105b1611430565b6040516105be91906135ea565b60405180910390f35b3480156105d357600080fd5b506105dc61144e565b6040516105e99190613292565b60405180910390f35b3480156105fe57600080fd5b50610607611459565b6040516106149190613228565b60405180910390f35b34801561062957600080fd5b50610632611483565b60405161063f9190613194565b60405180910390f35b34801561065457600080fd5b5061065d611515565b60405161066a9190613228565b60405180910390f35b61068d600480360381019061068891906131ec565b61153b565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613631565b61172e565b005b3480156106c457600080fd5b506106df60048036038101906106da91906130ce565b6118a5565b6040516106ec9190613292565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613872565b6118bd565b005b34801561072a57600080fd5b506107456004803603810190610740919061399f565b611a19565b005b610761600480360381019061075c91906131ec565b611a8c565b005b34801561076f57600080fd5b5061078a600480360381019061078591906131ec565b611ddc565b6040516107979190613194565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906130ce565b611e7a565b6040516107d49190613292565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190613a22565b611e8c565b6040516108119190613055565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906130ce565b611f20565b005b600061084e82612017565b8061085e575061085d826120a9565b5b9050919050565b61086d612123565b73ffffffffffffffffffffffffffffffffffffffff1661088b611459565b73ffffffffffffffffffffffffffffffffffffffff16146108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613aae565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610968600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60149054906101000a90046bffffffffffffffffffffffff1661212b565b50565b60606002805461097a90613afd565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690613afd565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000610a08826122c0565b610a3e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a848261231f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0a6123eb565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d57610b3681610b316123eb565b611e8c565b610b6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600481565b6000610c2e6123f3565b6001546000540303905090565b600a60149054906101000a900460ff1681565b610c598383836123f8565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610df35760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610dfd61279f565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e299190613b5d565b610e339190613be6565b90508160000151819350935050509250929050565b610e50612123565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611459565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613aae565b60405180910390fd5b80600a60146101000a81548160ff02191690836003811115610ee957610ee86132ad565b5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e600a60149054906101000a900460ff16604051610f2c9190613324565b60405180910390a150565b610f3f612123565b73ffffffffffffffffffffffffffffffffffffffff16610f5d611459565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613aae565b60405180910390fd5b80600c60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061102a600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60149054906101000a90046bffffffffffffffffffffffff1661212b565b50565b61045781565b61104e83838360405180602001604052806000815250611a19565b505050565b61105b612123565b73ffffffffffffffffffffffffffffffffffffffff16611079611459565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613aae565b60405180910390fd5b600047905060008273ffffffffffffffffffffffffffffffffffffffff16826040516110fa90613c48565b60006040518083038185875af1925050503d8060008114611137576040519150601f19603f3d011682016040523d82523d6000602084013e61113c565b606091505b5050905080611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613ccf565b60405180910390fd5b505050565b61118d612123565b73ffffffffffffffffffffffffffffffffffffffff166111ab611459565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613aae565b60405180910390fd5b8181600b9190611212929190612efe565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611244929190613d1c565b60405180910390a15050565b600061125b8261231f565b9050919050565b600b805461126f90613afd565b80601f016020809104026020016040519081016040528092919081815260200182805461129b90613afd565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611357576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113b0612123565b73ffffffffffffffffffffffffffffffffffffffff166113ce611459565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613aae565b60405180910390fd5b61142e60006127a9565b565b600c60149054906101000a90046bffffffffffffffffffffffff1681565b6647d5fb9d5bc00081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461149290613afd565b80601f01602080910402602001604051908101604052809291908181526020018280546114be90613afd565b801561150b5780601f106114e05761010080835404028352916020019161150b565b820191906000526020600020905b8154815290600101906020018083116114ee57829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001600381111561154f5761154e6132ad565b5b600a60149054906101000a900460ff166003811115611571576115706132ad565b5b146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613db2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613e44565b60405180910390fd5b60048161162b33611e7a565b6116359190613e64565b1115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90613f2c565b60405180910390fd5b61045781611682610c24565b61168c9190613e64565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613fbe565b60405180910390fd5b6116d7338261286f565b6116f2816647d5fb9d5bc0006116ed9190613b5d565b61288d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe33826040516117239291906133d2565b60405180910390a150565b6117366123eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361179a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117a76123eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118546123eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118999190613055565b60405180910390a35050565b600d6020528060005260406000206000915090505481565b6118c5612123565b73ffffffffffffffffffffffffffffffffffffffff166118e3611459565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613aae565b60405180910390fd5b805182511461197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614050565b60405180910390fd5b60005b8251811015611a145781818151811061199c5761199b614070565b5b6020026020010151600d60008584815181106119bb576119ba614070565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611a0c9061409f565b915050611980565b505050565b611a248484846123f8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a8657611a4f8484848461292e565b611a85576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614159565b60405180910390fd5b60016003811115611b2257611b216132ad565b5b600a60149054906101000a900460ff166003811115611b4457611b436132ad565b5b1480611b825750600380811115611b5e57611b5d6132ad565b5b600a60149054906101000a900460ff166003811115611b8057611b7f6132ad565b5b145b611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906141eb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614257565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890613f2c565b60405180910390fd5b61045781611cbd610c24565b611cc79190613e64565b1115611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90613fbe565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d539190614277565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611da0338261286f565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611dd19291906133d2565b60405180910390a150565b6060611de7826122c0565b611e1d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e27612a7e565b90506000815103611e475760405180602001604052806000815250611e72565b80611e5184612b10565b604051602001611e629291906142e7565b6040516020818303038152906040525b915050919050565b6000611e8582612b6a565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f28612123565b73ffffffffffffffffffffffffffffffffffffffff16611f46611459565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613aae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361200b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120029061437d565b60405180910390fd5b612014816127a9565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061207257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061211c575061211b82612bc1565b5b9050919050565b600033905090565b61213361279f565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121889061440f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f79061447b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816122cb6123f3565b111580156122da575060005482105b8015612318575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061232e6123f3565b116123b4576000548110156123b35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036123b1575b600081036123a757600460008360019003935083815260200190815260200160002054905061237d565b80925050506123e6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006124038261231f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461246a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661248b6123eb565b73ffffffffffffffffffffffffffffffffffffffff1614806124ba57506124b9856124b46123eb565b611e8c565b5b806124ff57506124c86123eb565b73ffffffffffffffffffffffffffffffffffffffff166124e7846109fd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612538576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361259e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125ab8585856001612c2b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126a886612c31565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612730576000600184019050600060046000838152602001908152602001600020540361272e57600054811461272d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127988585856001612c3b565b5050505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612889828260405180602001604052806000815250612c41565b5050565b803410156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c79061450d565b60405180910390fd5b8034111561292b573373ffffffffffffffffffffffffffffffffffffffff166108fc82346128fe9190614277565b9081150290604051600060405180830381858888f19350505050158015612929573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129546123eb565b8786866040518563ffffffff1660e01b81526004016129769493929190614582565b6020604051808303816000875af19250505080156129b257506040513d601f19601f820116820180604052508101906129af91906145e3565b60015b612a2b573d80600081146129e2576040519150601f19603f3d011682016040523d82523d6000602084013e6129e7565b606091505b506000815103612a23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612a8d90613afd565b80601f0160208091040260200160405190810160405280929190818152602001828054612ab990613afd565b8015612b065780601f10612adb57610100808354040283529160200191612b06565b820191906000526020600020905b815481529060010190602001808311612ae957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612b5657600183039250600a81066030018353600a81049050612b36565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cad576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612ce7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf46000858386612c2b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d5960018514612ef4565b901b60a042901b612d6986612c31565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e6d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1d600087848060010195508761292e565b612e53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612dae578260005414612e6857600080fd5b612ed8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e6e575b816000819055505050612eee6000858386612c3b565b50505050565b6000819050919050565b828054612f0a90613afd565b90600052602060002090601f016020900481019282612f2c5760008555612f73565b82601f10612f4557803560ff1916838001178555612f73565b82800160010185558215612f73579182015b82811115612f72578235825591602001919060010190612f57565b5b509050612f809190612f84565b5090565b5b80821115612f9d576000816000905550600101612f85565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fea81612fb5565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b60006020828403121561302357613022612fab565b5b600061303184828501612ff8565b91505092915050565b60008115159050919050565b61304f8161303a565b82525050565b600060208201905061306a6000830184613046565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061309b82613070565b9050919050565b6130ab81613090565b81146130b657600080fd5b50565b6000813590506130c8816130a2565b92915050565b6000602082840312156130e4576130e3612fab565b5b60006130f2848285016130b9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313557808201518184015260208101905061311a565b83811115613144576000848401525b50505050565b6000601f19601f8301169050919050565b6000613166826130fb565b6131708185613106565b9350613180818560208601613117565b6131898161314a565b840191505092915050565b600060208201905081810360008301526131ae818461315b565b905092915050565b6000819050919050565b6131c9816131b6565b81146131d457600080fd5b50565b6000813590506131e6816131c0565b92915050565b60006020828403121561320257613201612fab565b5b6000613210848285016131d7565b91505092915050565b61322281613090565b82525050565b600060208201905061323d6000830184613219565b92915050565b6000806040838503121561325a57613259612fab565b5b6000613268858286016130b9565b9250506020613279858286016131d7565b9150509250929050565b61328c816131b6565b82525050565b60006020820190506132a76000830184613283565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106132ed576132ec6132ad565b5b50565b60008190506132fe826132dc565b919050565b600061330e826132f0565b9050919050565b61331e81613303565b82525050565b60006020820190506133396000830184613315565b92915050565b60008060006060848603121561335857613357612fab565b5b6000613366868287016130b9565b9350506020613377868287016130b9565b9250506040613388868287016131d7565b9150509250925092565b600080604083850312156133a9576133a8612fab565b5b60006133b7858286016131d7565b92505060206133c8858286016131d7565b9150509250929050565b60006040820190506133e76000830185613219565b6133f46020830184613283565b9392505050565b6004811061340857600080fd5b50565b60008135905061341a816133fb565b92915050565b60006020828403121561343657613435612fab565b5b60006134448482850161340b565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b61346e8161344d565b811461347957600080fd5b50565b60008135905061348b81613465565b92915050565b6000602082840312156134a7576134a6612fab565b5b60006134b58482850161347c565b91505092915050565b60006134c982613070565b9050919050565b6134d9816134be565b81146134e457600080fd5b50565b6000813590506134f6816134d0565b92915050565b60006020828403121561351257613511612fab565b5b6000613520848285016134e7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261354e5761354d613529565b5b8235905067ffffffffffffffff81111561356b5761356a61352e565b5b60208301915083600182028301111561358757613586613533565b5b9250929050565b600080602083850312156135a5576135a4612fab565b5b600083013567ffffffffffffffff8111156135c3576135c2612fb0565b5b6135cf85828601613538565b92509250509250929050565b6135e48161344d565b82525050565b60006020820190506135ff60008301846135db565b92915050565b61360e8161303a565b811461361957600080fd5b50565b60008135905061362b81613605565b92915050565b6000806040838503121561364857613647612fab565b5b6000613656858286016130b9565b92505060206136678582860161361c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136a98261314a565b810181811067ffffffffffffffff821117156136c8576136c7613671565b5b80604052505050565b60006136db612fa1565b90506136e782826136a0565b919050565b600067ffffffffffffffff82111561370757613706613671565b5b602082029050602081019050919050565b600061372b613726846136ec565b6136d1565b9050808382526020820190506020840283018581111561374e5761374d613533565b5b835b81811015613777578061376388826130b9565b845260208401935050602081019050613750565b5050509392505050565b600082601f83011261379657613795613529565b5b81356137a6848260208601613718565b91505092915050565b600067ffffffffffffffff8211156137ca576137c9613671565b5b602082029050602081019050919050565b60006137ee6137e9846137af565b6136d1565b9050808382526020820190506020840283018581111561381157613810613533565b5b835b8181101561383a578061382688826131d7565b845260208401935050602081019050613813565b5050509392505050565b600082601f83011261385957613858613529565b5b81356138698482602086016137db565b91505092915050565b6000806040838503121561388957613888612fab565b5b600083013567ffffffffffffffff8111156138a7576138a6612fb0565b5b6138b385828601613781565b925050602083013567ffffffffffffffff8111156138d4576138d3612fb0565b5b6138e085828601613844565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561390a57613909613671565b5b6139138261314a565b9050602081019050919050565b82818337600083830152505050565b600061394261393d846138ef565b6136d1565b90508281526020810184848401111561395e5761395d6138ea565b5b613969848285613920565b509392505050565b600082601f83011261398657613985613529565b5b813561399684826020860161392f565b91505092915050565b600080600080608085870312156139b9576139b8612fab565b5b60006139c7878288016130b9565b94505060206139d8878288016130b9565b93505060406139e9878288016131d7565b925050606085013567ffffffffffffffff811115613a0a57613a09612fb0565b5b613a1687828801613971565b91505092959194509250565b60008060408385031215613a3957613a38612fab565b5b6000613a47858286016130b9565b9250506020613a58858286016130b9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a98602083613106565b9150613aa382613a62565b602082019050919050565b60006020820190508181036000830152613ac781613a8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b1557607f821691505b602082108103613b2857613b27613ace565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b68826131b6565b9150613b73836131b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bac57613bab613b2e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bf1826131b6565b9150613bfc836131b6565b925082613c0c57613c0b613bb7565b5b828204905092915050565b600081905092915050565b50565b6000613c32600083613c17565b9150613c3d82613c22565b600082019050919050565b6000613c5382613c25565b9150819050919050565b7f5765417265416e696d616c733a20726563697069656e74206661696c6564207460008201527f6f20726563656976652045544800000000000000000000000000000000000000602082015250565b6000613cb9602d83613106565b9150613cc482613c5d565b604082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b6000613cfb8385613106565b9350613d08838584613920565b613d118361314a565b840190509392505050565b60006020820190508181036000830152613d37818486613cef565b90509392505050565b7f5765417265416e696d616c733a206d696e74696e67206973206e6f742073746160008201527f7274656400000000000000000000000000000000000000000000000000000000602082015250565b6000613d9c602483613106565b9150613da782613d40565b604082019050919050565b60006020820190508181036000830152613dcb81613d8f565b9050919050565b7f5765417265416e696d616c733a20796f7520617265206e6f7420746865206f7760008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b6000613e2e602383613106565b9150613e3982613dd2565b604082019050919050565b60006020820190508181036000830152613e5d81613e21565b9050919050565b6000613e6f826131b6565b9150613e7a836131b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eaf57613eae613b2e565b5b828201905092915050565b7f5765417265416e696d616c733a20796f75206861766520616c7265616479206d60008201527f696e74656420746f6f206d616e79204e46540000000000000000000000000000602082015250565b6000613f16603283613106565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f5765417265416e696d616c733a20746f74616c20737570706c7920697320746f60008201527f6f20686967680000000000000000000000000000000000000000000000000000602082015250565b6000613fa8602683613106565b9150613fb382613f4c565b604082019050919050565b60006020820190508181036000830152613fd781613f9b565b9050919050565b7f5765417265416e696d616c733a2061646472657373657320616e64206e756d5360008201527f6c6f7473206d7573742068617665207468652073616d65206c656e6774680000602082015250565b600061403a603e83613106565b915061404582613fde565b604082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006140aa826131b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140dc576140db613b2e565b5b600182019050919050565b7f5765417265416e696d616c733a20796f7520617265206e6f74206f6e2074686560008201527f20616c6c6f776c69737400000000000000000000000000000000000000000000602082015250565b6000614143602a83613106565b915061414e826140e7565b604082019050919050565b6000602082019050818103600083015261417281614136565b9050919050565b7f5765417265416e696d616c733a20616c6c6f776c697374206d696e74696e672060008201527f6973206e6f742073746172746564000000000000000000000000000000000000602082015250565b60006141d5602e83613106565b91506141e082614179565b604082019050919050565b60006020820190508181036000830152614204816141c8565b9050919050565b7f5765417265416e696d616c733a20000000000000000000000000000000000000600082015250565b6000614241600e83613106565b915061424c8261420b565b602082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b6000614282826131b6565b915061428d836131b6565b9250828210156142a05761429f613b2e565b5b828203905092915050565b600081905092915050565b60006142c1826130fb565b6142cb81856142ab565b93506142db818560208601613117565b80840191505092915050565b60006142f382856142b6565b91506142ff82846142b6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614367602683613106565b91506143728261430b565b604082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006143f9602a83613106565b91506144048261439d565b604082019050919050565b60006020820190508181036000830152614428816143ec565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614465601983613106565b91506144708261442f565b602082019050919050565b6000602082019050818103600083015261449481614458565b9050919050565b7f5765417265416e696d616c733a20796f7520646f6e2774206861766520656e6f60008201527f7567682045544800000000000000000000000000000000000000000000000000602082015250565b60006144f7602783613106565b91506145028261449b565b604082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006145548261452d565b61455e8185614538565b935061456e818560208601613117565b6145778161314a565b840191505092915050565b60006080820190506145976000830187613219565b6145a46020830186613219565b6145b16040830185613283565b81810360608301526145c38184614549565b905095945050505050565b6000815190506145dd81612fe1565b92915050565b6000602082840312156145f9576145f8612fab565b5b6000614607848285016145ce565b9150509291505056fea264697066735822122065951e6e37985f080347f09e3026799c4524bb30e52d2010641dc1b7f6ed95cd64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57525841757945347735466f696443673478536a427164713361657259743737315543534361577a584a476e2f00000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c180526a1161006f578063c180526a14610747578063c87b56dd14610763578063dc33e681146107a0578063e985e9c5146107dd578063f2fde38b1461081a57610204565b8063a22cb4651461068f578063a7cd52cb146106b8578063b05863d5146106f5578063b88d4fde1461071e57610204565b80638d859f3e116100e75780638d859f3e146105c75780638da5cb5b146105f257806395d89b411461061d5780639fbc871314610648578063a0712d681461067357610204565b80636c0360eb1461051d57806370a0823114610548578063715018a61461058557806381ddcc1f1461059c57610204565b806323b872dd1161019b57806332cb6b0c1161016a57806332cb6b0c1461043a57806342842e0e1461046557806351cff8d91461048e57806355f804b3146104b75780636352211e146104e057610204565b806323b872dd146103815780632a55205a146103aa5780632e49d78b146103e857806331faafb41461041157610204565b8063095ea7b3116101d7578063095ea7b3146102d7578063161548621461030057806318160ddd1461032b578063200d2ed21461035657610204565b806301ffc9a71461020957806306d254da1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061300d565b610843565b60405161023d9190613055565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130ce565b610865565b005b34801561027b57600080fd5b5061028461096b565b6040516102919190613194565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131ec565b6109fd565b6040516102ce9190613228565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613243565b610a79565b005b34801561030c57600080fd5b50610315610c1f565b6040516103229190613292565b60405180910390f35b34801561033757600080fd5b50610340610c24565b60405161034d9190613292565b60405180910390f35b34801561036257600080fd5b5061036b610c3b565b6040516103789190613324565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a3919061333f565b610c4e565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613392565b610c5e565b6040516103df9291906133d2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613420565b610e48565b005b34801561041d57600080fd5b5061043860048036038101906104339190613491565b610f37565b005b34801561044657600080fd5b5061044f61102d565b60405161045c9190613292565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061333f565b611033565b005b34801561049a57600080fd5b506104b560048036038101906104b091906134fc565b611053565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061358e565b611185565b005b3480156104ec57600080fd5b50610507600480360381019061050291906131ec565b611250565b6040516105149190613228565b60405180910390f35b34801561052957600080fd5b50610532611262565b60405161053f9190613194565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906130ce565b6112f0565b60405161057c9190613292565b60405180910390f35b34801561059157600080fd5b5061059a6113a8565b005b3480156105a857600080fd5b506105b1611430565b6040516105be91906135ea565b60405180910390f35b3480156105d357600080fd5b506105dc61144e565b6040516105e99190613292565b60405180910390f35b3480156105fe57600080fd5b50610607611459565b6040516106149190613228565b60405180910390f35b34801561062957600080fd5b50610632611483565b60405161063f9190613194565b60405180910390f35b34801561065457600080fd5b5061065d611515565b60405161066a9190613228565b60405180910390f35b61068d600480360381019061068891906131ec565b61153b565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613631565b61172e565b005b3480156106c457600080fd5b506106df60048036038101906106da91906130ce565b6118a5565b6040516106ec9190613292565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613872565b6118bd565b005b34801561072a57600080fd5b506107456004803603810190610740919061399f565b611a19565b005b610761600480360381019061075c91906131ec565b611a8c565b005b34801561076f57600080fd5b5061078a600480360381019061078591906131ec565b611ddc565b6040516107979190613194565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c291906130ce565b611e7a565b6040516107d49190613292565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190613a22565b611e8c565b6040516108119190613055565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906130ce565b611f20565b005b600061084e82612017565b8061085e575061085d826120a9565b5b9050919050565b61086d612123565b73ffffffffffffffffffffffffffffffffffffffff1661088b611459565b73ffffffffffffffffffffffffffffffffffffffff16146108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613aae565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610968600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60149054906101000a90046bffffffffffffffffffffffff1661212b565b50565b60606002805461097a90613afd565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690613afd565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000610a08826122c0565b610a3e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a848261231f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0a6123eb565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d57610b3681610b316123eb565b611e8c565b610b6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600481565b6000610c2e6123f3565b6001546000540303905090565b600a60149054906101000a900460ff1681565b610c598383836123f8565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610df35760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610dfd61279f565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e299190613b5d565b610e339190613be6565b90508160000151819350935050509250929050565b610e50612123565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611459565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613aae565b60405180910390fd5b80600a60146101000a81548160ff02191690836003811115610ee957610ee86132ad565b5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e600a60149054906101000a900460ff16604051610f2c9190613324565b60405180910390a150565b610f3f612123565b73ffffffffffffffffffffffffffffffffffffffff16610f5d611459565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613aae565b60405180910390fd5b80600c60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555061102a600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60149054906101000a90046bffffffffffffffffffffffff1661212b565b50565b61045781565b61104e83838360405180602001604052806000815250611a19565b505050565b61105b612123565b73ffffffffffffffffffffffffffffffffffffffff16611079611459565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613aae565b60405180910390fd5b600047905060008273ffffffffffffffffffffffffffffffffffffffff16826040516110fa90613c48565b60006040518083038185875af1925050503d8060008114611137576040519150601f19603f3d011682016040523d82523d6000602084013e61113c565b606091505b5050905080611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790613ccf565b60405180910390fd5b505050565b61118d612123565b73ffffffffffffffffffffffffffffffffffffffff166111ab611459565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613aae565b60405180910390fd5b8181600b9190611212929190612efe565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611244929190613d1c565b60405180910390a15050565b600061125b8261231f565b9050919050565b600b805461126f90613afd565b80601f016020809104026020016040519081016040528092919081815260200182805461129b90613afd565b80156112e85780601f106112bd576101008083540402835291602001916112e8565b820191906000526020600020905b8154815290600101906020018083116112cb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611357576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113b0612123565b73ffffffffffffffffffffffffffffffffffffffff166113ce611459565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613aae565b60405180910390fd5b61142e60006127a9565b565b600c60149054906101000a90046bffffffffffffffffffffffff1681565b6647d5fb9d5bc00081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461149290613afd565b80601f01602080910402602001604051908101604052809291908181526020018280546114be90613afd565b801561150b5780601f106114e05761010080835404028352916020019161150b565b820191906000526020600020905b8154815290600101906020018083116114ee57829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001600381111561154f5761154e6132ad565b5b600a60149054906101000a900460ff166003811115611571576115706132ad565b5b146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613db2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690613e44565b60405180910390fd5b60048161162b33611e7a565b6116359190613e64565b1115611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d90613f2c565b60405180910390fd5b61045781611682610c24565b61168c9190613e64565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613fbe565b60405180910390fd5b6116d7338261286f565b6116f2816647d5fb9d5bc0006116ed9190613b5d565b61288d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe33826040516117239291906133d2565b60405180910390a150565b6117366123eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361179a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117a76123eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118546123eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118999190613055565b60405180910390a35050565b600d6020528060005260406000206000915090505481565b6118c5612123565b73ffffffffffffffffffffffffffffffffffffffff166118e3611459565b73ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613aae565b60405180910390fd5b805182511461197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614050565b60405180910390fd5b60005b8251811015611a145781818151811061199c5761199b614070565b5b6020026020010151600d60008584815181106119bb576119ba614070565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611a0c9061409f565b915050611980565b505050565b611a248484846123f8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a8657611a4f8484848461292e565b611a85576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590614159565b60405180910390fd5b60016003811115611b2257611b216132ad565b5b600a60149054906101000a900460ff166003811115611b4457611b436132ad565b5b1480611b825750600380811115611b5e57611b5d6132ad565b5b600a60149054906101000a900460ff166003811115611b8057611b7f6132ad565b5b145b611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906141eb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614257565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890613f2c565b60405180910390fd5b61045781611cbd610c24565b611cc79190613e64565b1115611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90613fbe565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d539190614277565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611da0338261286f565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611dd19291906133d2565b60405180910390a150565b6060611de7826122c0565b611e1d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e27612a7e565b90506000815103611e475760405180602001604052806000815250611e72565b80611e5184612b10565b604051602001611e629291906142e7565b6040516020818303038152906040525b915050919050565b6000611e8582612b6a565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f28612123565b73ffffffffffffffffffffffffffffffffffffffff16611f46611459565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613aae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361200b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120029061437d565b60405180910390fd5b612014816127a9565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061207257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061211c575061211b82612bc1565b5b9050919050565b600033905090565b61213361279f565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121889061440f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f79061447b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816122cb6123f3565b111580156122da575060005482105b8015612318575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061232e6123f3565b116123b4576000548110156123b35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036123b1575b600081036123a757600460008360019003935083815260200190815260200160002054905061237d565b80925050506123e6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006124038261231f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461246a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661248b6123eb565b73ffffffffffffffffffffffffffffffffffffffff1614806124ba57506124b9856124b46123eb565b611e8c565b5b806124ff57506124c86123eb565b73ffffffffffffffffffffffffffffffffffffffff166124e7846109fd565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612538576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361259e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125ab8585856001612c2b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126a886612c31565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612730576000600184019050600060046000838152602001908152602001600020540361272e57600054811461272d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127988585856001612c3b565b5050505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612889828260405180602001604052806000815250612c41565b5050565b803410156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c79061450d565b60405180910390fd5b8034111561292b573373ffffffffffffffffffffffffffffffffffffffff166108fc82346128fe9190614277565b9081150290604051600060405180830381858888f19350505050158015612929573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129546123eb565b8786866040518563ffffffff1660e01b81526004016129769493929190614582565b6020604051808303816000875af19250505080156129b257506040513d601f19601f820116820180604052508101906129af91906145e3565b60015b612a2b573d80600081146129e2576040519150601f19603f3d011682016040523d82523d6000602084013e6129e7565b606091505b506000815103612a23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612a8d90613afd565b80601f0160208091040260200160405190810160405280929190818152602001828054612ab990613afd565b8015612b065780601f10612adb57610100808354040283529160200191612b06565b820191906000526020600020905b815481529060010190602001808311612ae957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612b5657600183039250600a81066030018353600a81049050612b36565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cad576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612ce7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf46000858386612c2b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612d5960018514612ef4565b901b60a042901b612d6986612c31565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612e6d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1d600087848060010195508761292e565b612e53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612dae578260005414612e6857600080fd5b612ed8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612e6e575b816000819055505050612eee6000858386612c3b565b50505050565b6000819050919050565b828054612f0a90613afd565b90600052602060002090601f016020900481019282612f2c5760008555612f73565b82601f10612f4557803560ff1916838001178555612f73565b82800160010185558215612f73579182015b82811115612f72578235825591602001919060010190612f57565b5b509050612f809190612f84565b5090565b5b80821115612f9d576000816000905550600101612f85565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fea81612fb5565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b60006020828403121561302357613022612fab565b5b600061303184828501612ff8565b91505092915050565b60008115159050919050565b61304f8161303a565b82525050565b600060208201905061306a6000830184613046565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061309b82613070565b9050919050565b6130ab81613090565b81146130b657600080fd5b50565b6000813590506130c8816130a2565b92915050565b6000602082840312156130e4576130e3612fab565b5b60006130f2848285016130b9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313557808201518184015260208101905061311a565b83811115613144576000848401525b50505050565b6000601f19601f8301169050919050565b6000613166826130fb565b6131708185613106565b9350613180818560208601613117565b6131898161314a565b840191505092915050565b600060208201905081810360008301526131ae818461315b565b905092915050565b6000819050919050565b6131c9816131b6565b81146131d457600080fd5b50565b6000813590506131e6816131c0565b92915050565b60006020828403121561320257613201612fab565b5b6000613210848285016131d7565b91505092915050565b61322281613090565b82525050565b600060208201905061323d6000830184613219565b92915050565b6000806040838503121561325a57613259612fab565b5b6000613268858286016130b9565b9250506020613279858286016131d7565b9150509250929050565b61328c816131b6565b82525050565b60006020820190506132a76000830184613283565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106132ed576132ec6132ad565b5b50565b60008190506132fe826132dc565b919050565b600061330e826132f0565b9050919050565b61331e81613303565b82525050565b60006020820190506133396000830184613315565b92915050565b60008060006060848603121561335857613357612fab565b5b6000613366868287016130b9565b9350506020613377868287016130b9565b9250506040613388868287016131d7565b9150509250925092565b600080604083850312156133a9576133a8612fab565b5b60006133b7858286016131d7565b92505060206133c8858286016131d7565b9150509250929050565b60006040820190506133e76000830185613219565b6133f46020830184613283565b9392505050565b6004811061340857600080fd5b50565b60008135905061341a816133fb565b92915050565b60006020828403121561343657613435612fab565b5b60006134448482850161340b565b91505092915050565b60006bffffffffffffffffffffffff82169050919050565b61346e8161344d565b811461347957600080fd5b50565b60008135905061348b81613465565b92915050565b6000602082840312156134a7576134a6612fab565b5b60006134b58482850161347c565b91505092915050565b60006134c982613070565b9050919050565b6134d9816134be565b81146134e457600080fd5b50565b6000813590506134f6816134d0565b92915050565b60006020828403121561351257613511612fab565b5b6000613520848285016134e7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261354e5761354d613529565b5b8235905067ffffffffffffffff81111561356b5761356a61352e565b5b60208301915083600182028301111561358757613586613533565b5b9250929050565b600080602083850312156135a5576135a4612fab565b5b600083013567ffffffffffffffff8111156135c3576135c2612fb0565b5b6135cf85828601613538565b92509250509250929050565b6135e48161344d565b82525050565b60006020820190506135ff60008301846135db565b92915050565b61360e8161303a565b811461361957600080fd5b50565b60008135905061362b81613605565b92915050565b6000806040838503121561364857613647612fab565b5b6000613656858286016130b9565b92505060206136678582860161361c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136a98261314a565b810181811067ffffffffffffffff821117156136c8576136c7613671565b5b80604052505050565b60006136db612fa1565b90506136e782826136a0565b919050565b600067ffffffffffffffff82111561370757613706613671565b5b602082029050602081019050919050565b600061372b613726846136ec565b6136d1565b9050808382526020820190506020840283018581111561374e5761374d613533565b5b835b81811015613777578061376388826130b9565b845260208401935050602081019050613750565b5050509392505050565b600082601f83011261379657613795613529565b5b81356137a6848260208601613718565b91505092915050565b600067ffffffffffffffff8211156137ca576137c9613671565b5b602082029050602081019050919050565b60006137ee6137e9846137af565b6136d1565b9050808382526020820190506020840283018581111561381157613810613533565b5b835b8181101561383a578061382688826131d7565b845260208401935050602081019050613813565b5050509392505050565b600082601f83011261385957613858613529565b5b81356138698482602086016137db565b91505092915050565b6000806040838503121561388957613888612fab565b5b600083013567ffffffffffffffff8111156138a7576138a6612fb0565b5b6138b385828601613781565b925050602083013567ffffffffffffffff8111156138d4576138d3612fb0565b5b6138e085828601613844565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561390a57613909613671565b5b6139138261314a565b9050602081019050919050565b82818337600083830152505050565b600061394261393d846138ef565b6136d1565b90508281526020810184848401111561395e5761395d6138ea565b5b613969848285613920565b509392505050565b600082601f83011261398657613985613529565b5b813561399684826020860161392f565b91505092915050565b600080600080608085870312156139b9576139b8612fab565b5b60006139c7878288016130b9565b94505060206139d8878288016130b9565b93505060406139e9878288016131d7565b925050606085013567ffffffffffffffff811115613a0a57613a09612fb0565b5b613a1687828801613971565b91505092959194509250565b60008060408385031215613a3957613a38612fab565b5b6000613a47858286016130b9565b9250506020613a58858286016130b9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a98602083613106565b9150613aa382613a62565b602082019050919050565b60006020820190508181036000830152613ac781613a8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b1557607f821691505b602082108103613b2857613b27613ace565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b68826131b6565b9150613b73836131b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bac57613bab613b2e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bf1826131b6565b9150613bfc836131b6565b925082613c0c57613c0b613bb7565b5b828204905092915050565b600081905092915050565b50565b6000613c32600083613c17565b9150613c3d82613c22565b600082019050919050565b6000613c5382613c25565b9150819050919050565b7f5765417265416e696d616c733a20726563697069656e74206661696c6564207460008201527f6f20726563656976652045544800000000000000000000000000000000000000602082015250565b6000613cb9602d83613106565b9150613cc482613c5d565b604082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b6000613cfb8385613106565b9350613d08838584613920565b613d118361314a565b840190509392505050565b60006020820190508181036000830152613d37818486613cef565b90509392505050565b7f5765417265416e696d616c733a206d696e74696e67206973206e6f742073746160008201527f7274656400000000000000000000000000000000000000000000000000000000602082015250565b6000613d9c602483613106565b9150613da782613d40565b604082019050919050565b60006020820190508181036000830152613dcb81613d8f565b9050919050565b7f5765417265416e696d616c733a20796f7520617265206e6f7420746865206f7760008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b6000613e2e602383613106565b9150613e3982613dd2565b604082019050919050565b60006020820190508181036000830152613e5d81613e21565b9050919050565b6000613e6f826131b6565b9150613e7a836131b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eaf57613eae613b2e565b5b828201905092915050565b7f5765417265416e696d616c733a20796f75206861766520616c7265616479206d60008201527f696e74656420746f6f206d616e79204e46540000000000000000000000000000602082015250565b6000613f16603283613106565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f5765417265416e696d616c733a20746f74616c20737570706c7920697320746f60008201527f6f20686967680000000000000000000000000000000000000000000000000000602082015250565b6000613fa8602683613106565b9150613fb382613f4c565b604082019050919050565b60006020820190508181036000830152613fd781613f9b565b9050919050565b7f5765417265416e696d616c733a2061646472657373657320616e64206e756d5360008201527f6c6f7473206d7573742068617665207468652073616d65206c656e6774680000602082015250565b600061403a603e83613106565b915061404582613fde565b604082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006140aa826131b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140dc576140db613b2e565b5b600182019050919050565b7f5765417265416e696d616c733a20796f7520617265206e6f74206f6e2074686560008201527f20616c6c6f776c69737400000000000000000000000000000000000000000000602082015250565b6000614143602a83613106565b915061414e826140e7565b604082019050919050565b6000602082019050818103600083015261417281614136565b9050919050565b7f5765417265416e696d616c733a20616c6c6f776c697374206d696e74696e672060008201527f6973206e6f742073746172746564000000000000000000000000000000000000602082015250565b60006141d5602e83613106565b91506141e082614179565b604082019050919050565b60006020820190508181036000830152614204816141c8565b9050919050565b7f5765417265416e696d616c733a20000000000000000000000000000000000000600082015250565b6000614241600e83613106565b915061424c8261420b565b602082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b6000614282826131b6565b915061428d836131b6565b9250828210156142a05761429f613b2e565b5b828203905092915050565b600081905092915050565b60006142c1826130fb565b6142cb81856142ab565b93506142db818560208601613117565b80840191505092915050565b60006142f382856142b6565b91506142ff82846142b6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614367602683613106565b91506143728261430b565b604082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006143f9602a83613106565b91506144048261439d565b604082019050919050565b60006020820190508181036000830152614428816143ec565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614465601983613106565b91506144708261442f565b602082019050919050565b6000602082019050818103600083015261449481614458565b9050919050565b7f5765417265416e696d616c733a20796f7520646f6e2774206861766520656e6f60008201527f7567682045544800000000000000000000000000000000000000000000000000602082015250565b60006144f7602783613106565b91506145028261449b565b604082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006145548261452d565b61455e8185614538565b935061456e818560208601613117565b6145778161314a565b840191505092915050565b60006080820190506145976000830187613219565b6145a46020830186613219565b6145b16040830185613283565b81810360608301526145c38184614549565b905095945050505050565b6000815190506145dd81612fe1565b92915050565b6000602082840312156145f9576145f8612fab565b5b6000614607848285016145ce565b9150509291505056fea264697066735822122065951e6e37985f080347f09e3026799c4524bb30e52d2010641dc1b7f6ed95cd64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57525841757945347735466f696443673478536a427164713361657259743737315543534361577a584a476e2f00000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmWRXAuyE4w5FoidCg4xSjBqdq3aerYt771UCSCaWzXJGn/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d57525841757945347735466f696443673478536a427164
Arg [3] : 713361657259743737315543534361577a584a476e2f00000000000000000000
Deployed Bytecode Sourcemap
47919:4246:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51947:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51743:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28246:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30314:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29774:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48138:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22403:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48083:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31200:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7799:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;50964:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51532:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48190:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31441:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51262:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51104:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28035:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48110:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23992:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2608:103;;;;;;;;;;;;;:::i;:::-;;48391:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48238:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28415:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48309:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48925:584;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30590:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48439:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50235:349;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31697:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49517:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28590:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50592:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30969:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2866:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51947:215;52050:4;52074:38;52100:11;52074:25;:38::i;:::-;:80;;;;52116:38;52142:11;52116:25;:38::i;:::-;52074:80;52067:87;;51947:215;;;:::o;51743:196::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51846:18:::1;51828:15;;:36;;;;;;;;;;;;;;;;;;51875:56;51894:15;;;;;;;;;;;51911:19;;;;;;;;;;;51875:18;:56::i;:::-;51743:196:::0;:::o;28246:100::-;28300:13;28333:5;28326:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28246:100;:::o;30314:204::-;30382:7;30407:16;30415:7;30407;:16::i;:::-;30402:64;;30432:34;;;;;;;;;;;;;;30402:64;30486:15;:24;30502:7;30486:24;;;;;;;;;;;;;;;;;;;;;30479:31;;30314:204;;;:::o;29774:474::-;29847:13;29879:27;29898:7;29879:18;:27::i;:::-;29847:61;;29929:5;29923:11;;:2;:11;;;29919:48;;29943:24;;;;;;;;;;;;;;29919:48;30007:5;29984:28;;:19;:17;:19::i;:::-;:28;;;29980:175;;30032:44;30049:5;30056:19;:17;:19::i;:::-;30032:16;:44::i;:::-;30027:128;;30104:35;;;;;;;;;;;;;;30027:128;29980:175;30194:2;30167:15;:24;30183:7;30167:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30232:7;30228:2;30212:28;;30221:5;30212:28;;;;;;;;;;;;29836:412;29774:474;;:::o;48138:45::-;48182:1;48138:45;:::o;22403:303::-;22456:7;22676:15;:13;:15::i;:::-;22661:12;;22645:13;;:28;:46;22638:53;;22403:303;:::o;48083:20::-;;;;;;;;;;;;;:::o;31200:170::-;31334:28;31344:4;31350:2;31354:7;31334:9;:28::i;:::-;31200:170;;;:::o;7799:442::-;7896:7;7905;7925:26;7954:17;:27;7972:8;7954:27;;;;;;;;;;;7925:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8026:1;7998:30;;:7;:16;;;:30;;;7994:92;;8055:19;8045:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7994:92;8098:21;8163:17;:15;:17::i;:::-;8122:58;;8136:7;:23;;;8123:36;;:10;:36;;;;:::i;:::-;8122:58;;;;:::i;:::-;8098:82;;8201:7;:16;;;8219:13;8193:40;;;;;;7799:442;;;;;:::o;50964:132::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51040:9:::1;51031:6;;:18;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;51067:21;51081:6;;;;;;;;;;;51067:21;;;;;;:::i;:::-;;;;;;;;50964:132:::0;:::o;51532:203::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51638:22:::1;51616:19;;:44;;;;;;;;;;;;;;;;;;51671:56;51690:15;;;;;;;;;;;51707:19;;;;;;;;;;;51671:18;:56::i;:::-;51532:203:::0;:::o;48190:41::-;48227:4;48190:41;:::o;31441:185::-;31579:39;31596:4;31602:2;31606:7;31579:39;;;;;;;;;;;;:16;:39::i;:::-;31441:185;;;:::o;51262:262::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51337:15:::1;51355:21;51337:39;;51388:12;51405:9;:14;;51428:7;51405:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51387:53;;;51459:7;51451:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51326:198;;51262:262:::0;:::o;51104:150::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51192:10:::1;;51182:7;:20;;;;;;;:::i;:::-;;51220:26;51235:10;;51220:26;;;;;;;:::i;:::-;;;;;;;;51104:150:::0;;:::o;28035:144::-;28099:7;28142:27;28161:7;28142:18;:27::i;:::-;28119:52;;28035:144;;;:::o;48110:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23992:224::-;24056:7;24097:1;24080:19;;:5;:19;;;24076:60;;24108:28;;;;;;;;;;;;;;24076:60;19373:13;24154:18;:25;24173:5;24154:25;;;;;;;;;;;;;;;;:54;24147:61;;23992:224;;;:::o;2608:103::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2673:30:::1;2700:1;2673:18;:30::i;:::-;2608:103::o:0;48391:39::-;;;;;;;;;;;;;:::o;48238:50::-;48270:18;48238:50;:::o;1957:87::-;2003:7;2030:6;;;;;;;;;;;2023:13;;1957:87;:::o;28415:104::-;28471:13;28504:7;28497:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28415:104;:::o;48309:75::-;;;;;;;;;;;;;:::o;48925:584::-;49003:14;48993:24;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;48985:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49090:10;49077:23;;:9;:23;;;49069:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48182:1;49186:8;49159:24;49172:10;49159:12;:24::i;:::-;:35;;;;:::i;:::-;:56;;49151:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;48227:4;49305:8;49289:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49281:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;49383:31;49393:10;49405:8;49383:9;:31::i;:::-;49425:30;49446:8;48270:18;49438:16;;;;:::i;:::-;49425:12;:30::i;:::-;49473:28;49480:10;49492:8;49473:28;;;;;;;:::i;:::-;;;;;;;;48925:584;:::o;30590:308::-;30701:19;:17;:19::i;:::-;30689:31;;:8;:31;;;30685:61;;30729:17;;;;;;;;;;;;;;30685:61;30811:8;30759:18;:39;30778:19;:17;:19::i;:::-;30759:39;;;;;;;;;;;;;;;:49;30799:8;30759:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30871:8;30835:55;;30850:19;:17;:19::i;:::-;30835:55;;;30881:8;30835:55;;;;;;:::i;:::-;;;;;;;;30590:308;;:::o;48439:44::-;;;;;;;;;;;;;;;;;:::o;50235:349::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50371:8:::1;:15;50351:9;:16;:35;50343:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;50471:9;50466:111;50490:9;:16;50486:1;:20;50466:111;;;50554:8;50563:1;50554:11;;;;;;;;:::i;:::-;;;;;;;;50528:9;:23;50538:9;50548:1;50538:12;;;;;;;;:::i;:::-;;;;;;;;50528:23;;;;;;;;;;;;;;;:37;;;;50508:3;;;;;:::i;:::-;;;;50466:111;;;;50235:349:::0;;:::o;31697:396::-;31864:28;31874:4;31880:2;31884:7;31864:9;:28::i;:::-;31925:1;31907:2;:14;;;:19;31903:183;;31946:56;31977:4;31983:2;31987:7;31996:5;31946:30;:56::i;:::-;31941:145;;32030:40;;;;;;;;;;;;;;31941:145;31903:183;31697:396;;;;:::o;49517:710::-;49618:1;49594:9;:21;49604:10;49594:21;;;;;;;;;;;;;;;;:25;49586:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49695:14;49685:24;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;:58;;;;49723:20;49713:30;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;49685:58;49677:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;49826:10;49813:23;;:9;:23;;;49805:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49886:9;:21;49896:10;49886:21;;;;;;;;;;;;;;;;49874:8;:33;;49866:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;48227:4;49997:8;49981:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49973:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;50123:8;50099:9;:21;50109:10;50099:21;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;50075:9;:21;50085:10;50075:21;;;;;;;;;;;;;;;:56;;;;50142:31;50152:10;50164:8;50142:9;:31::i;:::-;50191:28;50198:10;50210:8;50191:28;;;;;;;:::i;:::-;;;;;;;;49517:710;:::o;28590:318::-;28663:13;28694:16;28702:7;28694;:16::i;:::-;28689:59;;28719:29;;;;;;;;;;;;;;28689:59;28761:21;28785:10;:8;:10::i;:::-;28761:34;;28838:1;28819:7;28813:21;:26;:87;;;;;;;;;;;;;;;;;28866:7;28875:18;28885:7;28875:9;:18::i;:::-;28849:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28813:87;28806:94;;;28590:318;;;:::o;50592:113::-;50650:7;50677:20;50691:5;50677:13;:20::i;:::-;50670:27;;50592:113;;;:::o;30969:164::-;31066:4;31090:18;:25;31109:5;31090:25;;;;;;;;;;;;;;;:35;31116:8;31090:35;;;;;;;;;;;;;;;;;;;;;;;;;31083:42;;30969:164;;;;:::o;2866:201::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2975:1:::1;2955:22;;:8;:22;;::::0;2947:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3031:28;3050:8;3031:18;:28::i;:::-;2866:201:::0;:::o;23325:603::-;23410:4;23721:10;23706:25;;:11;:25;;;;:98;;;;23794:10;23779:25;;:11;:25;;;;23706:98;:171;;;;23867:10;23852:25;;:11;:25;;;;23706:171;23690:187;;23325:603;;;:::o;7529:215::-;7631:4;7670:26;7655:41;;;:11;:41;;;;:81;;;;7700:36;7724:11;7700:23;:36::i;:::-;7655:81;7648:88;;7529:215;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;8891:332::-;9010:17;:15;:17::i;:::-;8994:33;;:12;:33;;;;8986:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;9113:1;9093:22;;:8;:22;;;9085:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;9180:35;;;;;;;;9192:8;9180:35;;;;;;9202:12;9180:35;;;;;9158:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8891:332;;:::o;32348:261::-;32405:4;32457:7;32438:15;:13;:15::i;:::-;:26;;:62;;;;;32487:13;;32477:7;:23;32438:62;:144;;;;;32581:1;20143:8;32534:17;:26;32552:7;32534:26;;;;;;;;;;;;:43;:48;32438:144;32422:160;;32348:261;;;:::o;25630:1049::-;25697:7;25717:12;25732:7;25717:22;;25792:4;25773:15;:13;:15::i;:::-;:23;25769:847;;25822:13;;25815:4;:20;25811:805;;;25856:14;25873:17;:23;25891:4;25873:23;;;;;;;;;;;;25856:40;;25981:1;20143:8;25954:6;:23;:28;25950:651;;26441:105;26458:1;26448:6;:11;26441:105;;26497:17;:25;26515:6;;;;;;;26497:25;;;;;;;;;;;;26488:34;;26441:105;;;26575:6;26568:13;;;;;;25950:651;25837:779;25811:805;25769:847;26640:31;;;;;;;;;;;;;;25630:1049;;;;:::o;45781:105::-;45841:7;45868:10;45861:17;;45781:105;:::o;21927:92::-;21983:7;21927:92;:::o;37323:2391::-;37438:27;37468;37487:7;37468:18;:27::i;:::-;37438:57;;37553:4;37512:45;;37528:19;37512:45;;;37508:86;;37566:28;;;;;;;;;;;;;;37508:86;37607:22;37656:4;37633:27;;:19;:17;:19::i;:::-;:27;;;:83;;;;37673:43;37690:4;37696:19;:17;:19::i;:::-;37673:16;:43::i;:::-;37633:83;:139;;;;37753:19;:17;:19::i;:::-;37729:43;;:20;37741:7;37729:11;:20::i;:::-;:43;;;37633:139;37607:166;;37791:17;37786:66;;37817:35;;;;;;;;;;;;;;37786:66;37881:1;37867:16;;:2;:16;;;37863:52;;37892:23;;;;;;;;;;;;;;37863:52;37928:43;37950:4;37956:2;37960:7;37969:1;37928:21;:43::i;:::-;38044:15;:24;38060:7;38044:24;;;;;;;;;;;;38037:31;;;;;;;;;;;38424:18;:24;38443:4;38424:24;;;;;;;;;;;;;;;;38422:26;;;;;;;;;;;;38489:18;:22;38508:2;38489:22;;;;;;;;;;;;;;;;38487:24;;;;;;;;;;;20421:8;20027:3;38830:15;:41;;38796:21;38814:2;38796:17;:21::i;:::-;:76;:112;38758:17;:26;38776:7;38758:26;;;;;;;;;;;:150;;;;39070:1;20421:8;39020:19;:46;:51;39016:586;;39088:19;39120:1;39110:7;:11;39088:33;;39269:1;39235:17;:30;39253:11;39235:30;;;;;;;;;;;;:35;39231:360;;39365:13;;39350:11;:28;39346:230;;39537:19;39504:17;:30;39522:11;39504:30;;;;;;;;;;;:52;;;;39346:230;39231:360;39073:529;39016:586;39645:7;39641:2;39626:27;;39635:4;39626:27;;;;;;;;;;;;39664:42;39685:4;39691:2;39695:7;39704:1;39664:20;:42::i;:::-;37427:2287;;37323:2391;;;:::o;8523:97::-;8581:6;8607:5;8600:12;;8523:97;:::o;3227:191::-;3301:16;3320:6;;;;;;;;;;;3301:25;;3346:8;3337:6;;:17;;;;;;;;;;;;;;;;;;3401:8;3370:40;;3391:8;3370:40;;;;;;;;;;;;3290:128;3227:191;:::o;32693:104::-;32762:27;32772:2;32776:8;32762:27;;;;;;;;;;;;:9;:27::i;:::-;32693:104;;:::o;50713:243::-;50790:5;50777:9;:18;;50769:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50868:5;50856:9;:17;50852:97;;;50898:10;50890:28;;:47;50931:5;50919:9;:17;;;;:::i;:::-;50890:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50852:97;50713:243;:::o;43250:716::-;43413:4;43459:2;43434:45;;;43480:19;:17;:19::i;:::-;43501:4;43507:7;43516:5;43434:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43430:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43734:1;43717:6;:13;:18;43713:235;;43763:40;;;;;;;;;;;;;;43713:235;43906:6;43900:13;43891:6;43887:2;43883:15;43876:38;43430:529;43603:54;;;43593:64;;;:6;:64;;;;43586:71;;;43250:716;;;;;;:::o;48817:100::-;48869:13;48902:7;48895:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48817:100;:::o;45992:1879::-;46049:17;46452:3;46445:4;46439:11;46435:21;46428:28;;46539:3;46533:4;46526:17;46641:3;47077:5;47203:1;47198:3;47194:11;47187:18;;47336:2;47330:4;47326:13;47322:2;47318:22;47313:3;47305:36;47377:2;47371:4;47367:13;47359:21;;46973:664;47396:4;46973:664;;;47566:1;47561:3;47557:11;47550:18;;47617:2;47611:4;47607:13;47603:2;47599:22;47594:3;47586:36;47487:2;47481:4;47477:13;47469:21;;46973:664;;;46977:418;47676:3;47671;47667:13;47787:2;47782:3;47778:12;47771:19;;47846:6;47841:3;47834:19;46088:1776;;45992:1879;;;:::o;24298:176::-;24359:7;19373:13;19510:2;24387:18;:25;24406:5;24387:25;;;;;;;;;;;;;;;;:49;;24386:80;24379:87;;24298:176;;;:::o;6008:157::-;6093:4;6132:25;6117:40;;;:11;:40;;;;6110:47;;6008:157;;;:::o;44614:159::-;;;;;:::o;29335:148::-;29399:14;29460:5;29450:15;;29335:148;;;:::o;45432:158::-;;;;;:::o;33170:2088::-;33293:20;33316:13;;33293:36;;33358:1;33344:16;;:2;:16;;;33340:48;;33369:19;;;;;;;;;;;;;;33340:48;33415:1;33403:8;:13;33399:44;;33425:18;;;;;;;;;;;;;;33399:44;33456:61;33486:1;33490:2;33494:12;33508:8;33456:21;:61::i;:::-;34032:1;19510:2;34003:1;:25;;34002:31;33990:8;:44;33964:18;:22;33983:2;33964:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;20286:3;34385:29;34412:1;34400:8;:13;34385:14;:29::i;:::-;:56;;20027:3;34330:15;:41;;34296:21;34314:2;34296:17;:21::i;:::-;:76;:146;34253:17;:31;34271:12;34253:31;;;;;;;;;;;:189;;;;34455:20;34478:12;34455:35;;34501:11;34530:8;34515:12;:23;34501:37;;34573:1;34555:2;:14;;;:19;34551:583;;34591:293;34643:12;34639:2;34618:38;;34635:1;34618:38;;;;;;;;;;;;34680:69;34719:1;34723:2;34727:14;;;;;;34743:5;34680:30;:69::i;:::-;34675:166;;34781:40;;;;;;;;;;;;;;34675:166;34879:3;34864:12;:18;34591:293;;34957:12;34940:13;;:29;34936:43;;34971:8;;;34936:43;34551:583;;;35012:111;35064:14;;;;;;35060:2;35039:40;;35056:1;35039:40;;;;;;;;;;;;35118:3;35103:12;:18;35012:111;;34551:583;35160:12;35144:13;:28;;;;33765:1415;;35190:60;35219:1;35223:2;35227:12;35241:8;35190:20;:60::i;:::-;33282:1976;33170:2088;;;:::o;29570:142::-;29628:14;29689:5;29679:15;;29570:142;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:307::-;2708:1;2718:113;2732:6;2729:1;2726:13;2718:113;;;2817:1;2812:3;2808:11;2802:18;2798:1;2793:3;2789:11;2782:39;2754:2;2751:1;2747:10;2742:15;;2718:113;;;2849:6;2846:1;2843:13;2840:101;;;2929:1;2920:6;2915:3;2911:16;2904:27;2840:101;2689:258;2640:307;;;:::o;2953:102::-;2994:6;3045:2;3041:7;3036:2;3029:5;3025:14;3021:28;3011:38;;2953:102;;;:::o;3061:364::-;3149:3;3177:39;3210:5;3177:39;:::i;:::-;3232:71;3296:6;3291:3;3232:71;:::i;:::-;3225:78;;3312:52;3357:6;3352:3;3345:4;3338:5;3334:16;3312:52;:::i;:::-;3389:29;3411:6;3389:29;:::i;:::-;3384:3;3380:39;3373:46;;3153:272;3061:364;;;;:::o;3431:313::-;3544:4;3582:2;3571:9;3567:18;3559:26;;3631:9;3625:4;3621:20;3617:1;3606:9;3602:17;3595:47;3659:78;3732:4;3723:6;3659:78;:::i;:::-;3651:86;;3431:313;;;;:::o;3750:77::-;3787:7;3816:5;3805:16;;3750:77;;;:::o;3833:122::-;3906:24;3924:5;3906:24;:::i;:::-;3899:5;3896:35;3886:63;;3945:1;3942;3935:12;3886:63;3833:122;:::o;3961:139::-;4007:5;4045:6;4032:20;4023:29;;4061:33;4088:5;4061:33;:::i;:::-;3961:139;;;;:::o;4106:329::-;4165:6;4214:2;4202:9;4193:7;4189:23;4185:32;4182:119;;;4220:79;;:::i;:::-;4182:119;4340:1;4365:53;4410:7;4401:6;4390:9;4386:22;4365:53;:::i;:::-;4355:63;;4311:117;4106:329;;;;:::o;4441:118::-;4528:24;4546:5;4528:24;:::i;:::-;4523:3;4516:37;4441:118;;:::o;4565:222::-;4658:4;4696:2;4685:9;4681:18;4673:26;;4709:71;4777:1;4766:9;4762:17;4753:6;4709:71;:::i;:::-;4565:222;;;;:::o;4793:474::-;4861:6;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4793:474;;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:180::-;5673:77;5670:1;5663:88;5770:4;5767:1;5760:15;5794:4;5791:1;5784:15;5811:116;5895:1;5888:5;5885:12;5875:46;;5901:18;;:::i;:::-;5875:46;5811:116;:::o;5933:133::-;5981:7;6010:5;5999:16;;6016:44;6054:5;6016:44;:::i;:::-;5933:133;;;:::o;6072:::-;6131:9;6164:35;6193:5;6164:35;:::i;:::-;6151:48;;6072:133;;;:::o;6211:149::-;6307:46;6347:5;6307:46;:::i;:::-;6302:3;6295:59;6211:149;;:::o;6366:240::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:80;6596:1;6585:9;6581:17;6572:6;6519:80;:::i;:::-;6366:240;;;;:::o;6612:619::-;6689:6;6697;6705;6754:2;6742:9;6733:7;6729:23;6725:32;6722:119;;;6760:79;;:::i;:::-;6722:119;6880:1;6905:53;6950:7;6941:6;6930:9;6926:22;6905:53;:::i;:::-;6895:63;;6851:117;7007:2;7033:53;7078:7;7069:6;7058:9;7054:22;7033:53;:::i;:::-;7023:63;;6978:118;7135:2;7161:53;7206:7;7197:6;7186:9;7182:22;7161:53;:::i;:::-;7151:63;;7106:118;6612:619;;;;;:::o;7237:474::-;7305:6;7313;7362:2;7350:9;7341:7;7337:23;7333:32;7330:119;;;7368:79;;:::i;:::-;7330:119;7488:1;7513:53;7558:7;7549:6;7538:9;7534:22;7513:53;:::i;:::-;7503:63;;7459:117;7615:2;7641:53;7686:7;7677:6;7666:9;7662:22;7641:53;:::i;:::-;7631:63;;7586:118;7237:474;;;;;:::o;7717:332::-;7838:4;7876:2;7865:9;7861:18;7853:26;;7889:71;7957:1;7946:9;7942:17;7933:6;7889:71;:::i;:::-;7970:72;8038:2;8027:9;8023:18;8014:6;7970:72;:::i;:::-;7717:332;;;;;:::o;8055:110::-;8139:1;8132:5;8129:12;8119:40;;8155:1;8152;8145:12;8119:40;8055:110;:::o;8171:161::-;8228:5;8266:6;8253:20;8244:29;;8282:44;8320:5;8282:44;:::i;:::-;8171:161;;;;:::o;8338:351::-;8408:6;8457:2;8445:9;8436:7;8432:23;8428:32;8425:119;;;8463:79;;:::i;:::-;8425:119;8583:1;8608:64;8664:7;8655:6;8644:9;8640:22;8608:64;:::i;:::-;8598:74;;8554:128;8338:351;;;;:::o;8695:109::-;8731:7;8771:26;8764:5;8760:38;8749:49;;8695:109;;;:::o;8810:120::-;8882:23;8899:5;8882:23;:::i;:::-;8875:5;8872:34;8862:62;;8920:1;8917;8910:12;8862:62;8810:120;:::o;8936:137::-;8981:5;9019:6;9006:20;8997:29;;9035:32;9061:5;9035:32;:::i;:::-;8936:137;;;;:::o;9079:327::-;9137:6;9186:2;9174:9;9165:7;9161:23;9157:32;9154:119;;;9192:79;;:::i;:::-;9154:119;9312:1;9337:52;9381:7;9372:6;9361:9;9357:22;9337:52;:::i;:::-;9327:62;;9283:116;9079:327;;;;:::o;9412:104::-;9457:7;9486:24;9504:5;9486:24;:::i;:::-;9475:35;;9412:104;;;:::o;9522:138::-;9603:32;9629:5;9603:32;:::i;:::-;9596:5;9593:43;9583:71;;9650:1;9647;9640:12;9583:71;9522:138;:::o;9666:155::-;9720:5;9758:6;9745:20;9736:29;;9774:41;9809:5;9774:41;:::i;:::-;9666:155;;;;:::o;9827:345::-;9894:6;9943:2;9931:9;9922:7;9918:23;9914:32;9911:119;;;9949:79;;:::i;:::-;9911:119;10069:1;10094:61;10147:7;10138:6;10127:9;10123:22;10094:61;:::i;:::-;10084:71;;10040:125;9827:345;;;;:::o;10178:117::-;10287:1;10284;10277:12;10301:117;10410:1;10407;10400:12;10424:117;10533:1;10530;10523:12;10561:553;10619:8;10629:6;10679:3;10672:4;10664:6;10660:17;10656:27;10646:122;;10687:79;;:::i;:::-;10646:122;10800:6;10787:20;10777:30;;10830:18;10822:6;10819:30;10816:117;;;10852:79;;:::i;:::-;10816:117;10966:4;10958:6;10954:17;10942:29;;11020:3;11012:4;11004:6;11000:17;10990:8;10986:32;10983:41;10980:128;;;11027:79;;:::i;:::-;10980:128;10561:553;;;;;:::o;11120:529::-;11191:6;11199;11248:2;11236:9;11227:7;11223:23;11219:32;11216:119;;;11254:79;;:::i;:::-;11216:119;11402:1;11391:9;11387:17;11374:31;11432:18;11424:6;11421:30;11418:117;;;11454:79;;:::i;:::-;11418:117;11567:65;11624:7;11615:6;11604:9;11600:22;11567:65;:::i;:::-;11549:83;;;;11345:297;11120:529;;;;;:::o;11655:115::-;11740:23;11757:5;11740:23;:::i;:::-;11735:3;11728:36;11655:115;;:::o;11776:218::-;11867:4;11905:2;11894:9;11890:18;11882:26;;11918:69;11984:1;11973:9;11969:17;11960:6;11918:69;:::i;:::-;11776:218;;;;:::o;12000:116::-;12070:21;12085:5;12070:21;:::i;:::-;12063:5;12060:32;12050:60;;12106:1;12103;12096:12;12050:60;12000:116;:::o;12122:133::-;12165:5;12203:6;12190:20;12181:29;;12219:30;12243:5;12219:30;:::i;:::-;12122:133;;;;:::o;12261:468::-;12326:6;12334;12383:2;12371:9;12362:7;12358:23;12354:32;12351:119;;;12389:79;;:::i;:::-;12351:119;12509:1;12534:53;12579:7;12570:6;12559:9;12555:22;12534:53;:::i;:::-;12524:63;;12480:117;12636:2;12662:50;12704:7;12695:6;12684:9;12680:22;12662:50;:::i;:::-;12652:60;;12607:115;12261:468;;;;;:::o;12735:180::-;12783:77;12780:1;12773:88;12880:4;12877:1;12870:15;12904:4;12901:1;12894:15;12921:281;13004:27;13026:4;13004:27;:::i;:::-;12996:6;12992:40;13134:6;13122:10;13119:22;13098:18;13086:10;13083:34;13080:62;13077:88;;;13145:18;;:::i;:::-;13077:88;13185:10;13181:2;13174:22;12964:238;12921:281;;:::o;13208:129::-;13242:6;13269:20;;:::i;:::-;13259:30;;13298:33;13326:4;13318:6;13298:33;:::i;:::-;13208:129;;;:::o;13343:311::-;13420:4;13510:18;13502:6;13499:30;13496:56;;;13532:18;;:::i;:::-;13496:56;13582:4;13574:6;13570:17;13562:25;;13642:4;13636;13632:15;13624:23;;13343:311;;;:::o;13677:710::-;13773:5;13798:81;13814:64;13871:6;13814:64;:::i;:::-;13798:81;:::i;:::-;13789:90;;13899:5;13928:6;13921:5;13914:21;13962:4;13955:5;13951:16;13944:23;;14015:4;14007:6;14003:17;13995:6;13991:30;14044:3;14036:6;14033:15;14030:122;;;14063:79;;:::i;:::-;14030:122;14178:6;14161:220;14195:6;14190:3;14187:15;14161:220;;;14270:3;14299:37;14332:3;14320:10;14299:37;:::i;:::-;14294:3;14287:50;14366:4;14361:3;14357:14;14350:21;;14237:144;14221:4;14216:3;14212:14;14205:21;;14161:220;;;14165:21;13779:608;;13677:710;;;;;:::o;14410:370::-;14481:5;14530:3;14523:4;14515:6;14511:17;14507:27;14497:122;;14538:79;;:::i;:::-;14497:122;14655:6;14642:20;14680:94;14770:3;14762:6;14755:4;14747:6;14743:17;14680:94;:::i;:::-;14671:103;;14487:293;14410:370;;;;:::o;14786:311::-;14863:4;14953:18;14945:6;14942:30;14939:56;;;14975:18;;:::i;:::-;14939:56;15025:4;15017:6;15013:17;15005:25;;15085:4;15079;15075:15;15067:23;;14786:311;;;:::o;15120:710::-;15216:5;15241:81;15257:64;15314:6;15257:64;:::i;:::-;15241:81;:::i;:::-;15232:90;;15342:5;15371:6;15364:5;15357:21;15405:4;15398:5;15394:16;15387:23;;15458:4;15450:6;15446:17;15438:6;15434:30;15487:3;15479:6;15476:15;15473:122;;;15506:79;;:::i;:::-;15473:122;15621:6;15604:220;15638:6;15633:3;15630:15;15604:220;;;15713:3;15742:37;15775:3;15763:10;15742:37;:::i;:::-;15737:3;15730:50;15809:4;15804:3;15800:14;15793:21;;15680:144;15664:4;15659:3;15655:14;15648:21;;15604:220;;;15608:21;15222:608;;15120:710;;;;;:::o;15853:370::-;15924:5;15973:3;15966:4;15958:6;15954:17;15950:27;15940:122;;15981:79;;:::i;:::-;15940:122;16098:6;16085:20;16123:94;16213:3;16205:6;16198:4;16190:6;16186:17;16123:94;:::i;:::-;16114:103;;15930:293;15853:370;;;;:::o;16229:894::-;16347:6;16355;16404:2;16392:9;16383:7;16379:23;16375:32;16372:119;;;16410:79;;:::i;:::-;16372:119;16558:1;16547:9;16543:17;16530:31;16588:18;16580:6;16577:30;16574:117;;;16610:79;;:::i;:::-;16574:117;16715:78;16785:7;16776:6;16765:9;16761:22;16715:78;:::i;:::-;16705:88;;16501:302;16870:2;16859:9;16855:18;16842:32;16901:18;16893:6;16890:30;16887:117;;;16923:79;;:::i;:::-;16887:117;17028:78;17098:7;17089:6;17078:9;17074:22;17028:78;:::i;:::-;17018:88;;16813:303;16229:894;;;;;:::o;17129:117::-;17238:1;17235;17228:12;17252:307;17313:4;17403:18;17395:6;17392:30;17389:56;;;17425:18;;:::i;:::-;17389:56;17463:29;17485:6;17463:29;:::i;:::-;17455:37;;17547:4;17541;17537:15;17529:23;;17252:307;;;:::o;17565:154::-;17649:6;17644:3;17639;17626:30;17711:1;17702:6;17697:3;17693:16;17686:27;17565:154;;;:::o;17725:410::-;17802:5;17827:65;17843:48;17884:6;17843:48;:::i;:::-;17827:65;:::i;:::-;17818:74;;17915:6;17908:5;17901:21;17953:4;17946:5;17942:16;17991:3;17982:6;17977:3;17973:16;17970:25;17967:112;;;17998:79;;:::i;:::-;17967:112;18088:41;18122:6;18117:3;18112;18088:41;:::i;:::-;17808:327;17725:410;;;;;:::o;18154:338::-;18209:5;18258:3;18251:4;18243:6;18239:17;18235:27;18225:122;;18266:79;;:::i;:::-;18225:122;18383:6;18370:20;18408:78;18482:3;18474:6;18467:4;18459:6;18455:17;18408:78;:::i;:::-;18399:87;;18215:277;18154:338;;;;:::o;18498:943::-;18593:6;18601;18609;18617;18666:3;18654:9;18645:7;18641:23;18637:33;18634:120;;;18673:79;;:::i;:::-;18634:120;18793:1;18818:53;18863:7;18854:6;18843:9;18839:22;18818:53;:::i;:::-;18808:63;;18764:117;18920:2;18946:53;18991:7;18982:6;18971:9;18967:22;18946:53;:::i;:::-;18936:63;;18891:118;19048:2;19074:53;19119:7;19110:6;19099:9;19095:22;19074:53;:::i;:::-;19064:63;;19019:118;19204:2;19193:9;19189:18;19176:32;19235:18;19227:6;19224:30;19221:117;;;19257:79;;:::i;:::-;19221:117;19362:62;19416:7;19407:6;19396:9;19392:22;19362:62;:::i;:::-;19352:72;;19147:287;18498:943;;;;;;;:::o;19447:474::-;19515:6;19523;19572:2;19560:9;19551:7;19547:23;19543:32;19540:119;;;19578:79;;:::i;:::-;19540:119;19698:1;19723:53;19768:7;19759:6;19748:9;19744:22;19723:53;:::i;:::-;19713:63;;19669:117;19825:2;19851:53;19896:7;19887:6;19876:9;19872:22;19851:53;:::i;:::-;19841:63;;19796:118;19447:474;;;;;:::o;19927:182::-;20067:34;20063:1;20055:6;20051:14;20044:58;19927:182;:::o;20115:366::-;20257:3;20278:67;20342:2;20337:3;20278:67;:::i;:::-;20271:74;;20354:93;20443:3;20354:93;:::i;:::-;20472:2;20467:3;20463:12;20456:19;;20115:366;;;:::o;20487:419::-;20653:4;20691:2;20680:9;20676:18;20668:26;;20740:9;20734:4;20730:20;20726:1;20715:9;20711:17;20704:47;20768:131;20894:4;20768:131;:::i;:::-;20760:139;;20487:419;;;:::o;20912:180::-;20960:77;20957:1;20950:88;21057:4;21054:1;21047:15;21081:4;21078:1;21071:15;21098:320;21142:6;21179:1;21173:4;21169:12;21159:22;;21226:1;21220:4;21216:12;21247:18;21237:81;;21303:4;21295:6;21291:17;21281:27;;21237:81;21365:2;21357:6;21354:14;21334:18;21331:38;21328:84;;21384:18;;:::i;:::-;21328:84;21149:269;21098:320;;;:::o;21424:180::-;21472:77;21469:1;21462:88;21569:4;21566:1;21559:15;21593:4;21590:1;21583:15;21610:348;21650:7;21673:20;21691:1;21673:20;:::i;:::-;21668:25;;21707:20;21725:1;21707:20;:::i;:::-;21702:25;;21895:1;21827:66;21823:74;21820:1;21817:81;21812:1;21805:9;21798:17;21794:105;21791:131;;;21902:18;;:::i;:::-;21791:131;21950:1;21947;21943:9;21932:20;;21610:348;;;;:::o;21964:180::-;22012:77;22009:1;22002:88;22109:4;22106:1;22099:15;22133:4;22130:1;22123:15;22150:185;22190:1;22207:20;22225:1;22207:20;:::i;:::-;22202:25;;22241:20;22259:1;22241:20;:::i;:::-;22236:25;;22280:1;22270:35;;22285:18;;:::i;:::-;22270:35;22327:1;22324;22320:9;22315:14;;22150:185;;;;:::o;22341:147::-;22442:11;22479:3;22464:18;;22341:147;;;;:::o;22494:114::-;;:::o;22614:398::-;22773:3;22794:83;22875:1;22870:3;22794:83;:::i;:::-;22787:90;;22886:93;22975:3;22886:93;:::i;:::-;23004:1;22999:3;22995:11;22988:18;;22614:398;;;:::o;23018:379::-;23202:3;23224:147;23367:3;23224:147;:::i;:::-;23217:154;;23388:3;23381:10;;23018:379;;;:::o;23403:232::-;23543:34;23539:1;23531:6;23527:14;23520:58;23612:15;23607:2;23599:6;23595:15;23588:40;23403:232;:::o;23641:366::-;23783:3;23804:67;23868:2;23863:3;23804:67;:::i;:::-;23797:74;;23880:93;23969:3;23880:93;:::i;:::-;23998:2;23993:3;23989:12;23982:19;;23641:366;;;:::o;24013:419::-;24179:4;24217:2;24206:9;24202:18;24194:26;;24266:9;24260:4;24256:20;24252:1;24241:9;24237:17;24230:47;24294:131;24420:4;24294:131;:::i;:::-;24286:139;;24013:419;;;:::o;24462:304::-;24560:3;24581:71;24645:6;24640:3;24581:71;:::i;:::-;24574:78;;24662:43;24698:6;24693:3;24686:5;24662:43;:::i;:::-;24730:29;24752:6;24730:29;:::i;:::-;24725:3;24721:39;24714:46;;24462:304;;;;;:::o;24772:333::-;24895:4;24933:2;24922:9;24918:18;24910:26;;24982:9;24976:4;24972:20;24968:1;24957:9;24953:17;24946:47;25010:88;25093:4;25084:6;25076;25010:88;:::i;:::-;25002:96;;24772:333;;;;;:::o;25111:223::-;25251:34;25247:1;25239:6;25235:14;25228:58;25320:6;25315:2;25307:6;25303:15;25296:31;25111:223;:::o;25340:366::-;25482:3;25503:67;25567:2;25562:3;25503:67;:::i;:::-;25496:74;;25579:93;25668:3;25579:93;:::i;:::-;25697:2;25692:3;25688:12;25681:19;;25340:366;;;:::o;25712:419::-;25878:4;25916:2;25905:9;25901:18;25893:26;;25965:9;25959:4;25955:20;25951:1;25940:9;25936:17;25929:47;25993:131;26119:4;25993:131;:::i;:::-;25985:139;;25712:419;;;:::o;26137:222::-;26277:34;26273:1;26265:6;26261:14;26254:58;26346:5;26341:2;26333:6;26329:15;26322:30;26137:222;:::o;26365:366::-;26507:3;26528:67;26592:2;26587:3;26528:67;:::i;:::-;26521:74;;26604:93;26693:3;26604:93;:::i;:::-;26722:2;26717:3;26713:12;26706:19;;26365:366;;;:::o;26737:419::-;26903:4;26941:2;26930:9;26926:18;26918:26;;26990:9;26984:4;26980:20;26976:1;26965:9;26961:17;26954:47;27018:131;27144:4;27018:131;:::i;:::-;27010:139;;26737:419;;;:::o;27162:305::-;27202:3;27221:20;27239:1;27221:20;:::i;:::-;27216:25;;27255:20;27273:1;27255:20;:::i;:::-;27250:25;;27409:1;27341:66;27337:74;27334:1;27331:81;27328:107;;;27415:18;;:::i;:::-;27328:107;27459:1;27456;27452:9;27445:16;;27162:305;;;;:::o;27473:237::-;27613:34;27609:1;27601:6;27597:14;27590:58;27682:20;27677:2;27669:6;27665:15;27658:45;27473:237;:::o;27716:366::-;27858:3;27879:67;27943:2;27938:3;27879:67;:::i;:::-;27872:74;;27955:93;28044:3;27955:93;:::i;:::-;28073:2;28068:3;28064:12;28057:19;;27716:366;;;:::o;28088:419::-;28254:4;28292:2;28281:9;28277:18;28269:26;;28341:9;28335:4;28331:20;28327:1;28316:9;28312:17;28305:47;28369:131;28495:4;28369:131;:::i;:::-;28361:139;;28088:419;;;:::o;28513:225::-;28653:34;28649:1;28641:6;28637:14;28630:58;28722:8;28717:2;28709:6;28705:15;28698:33;28513:225;:::o;28744:366::-;28886:3;28907:67;28971:2;28966:3;28907:67;:::i;:::-;28900:74;;28983:93;29072:3;28983:93;:::i;:::-;29101:2;29096:3;29092:12;29085:19;;28744:366;;;:::o;29116:419::-;29282:4;29320:2;29309:9;29305:18;29297:26;;29369:9;29363:4;29359:20;29355:1;29344:9;29340:17;29333:47;29397:131;29523:4;29397:131;:::i;:::-;29389:139;;29116:419;;;:::o;29541:249::-;29681:34;29677:1;29669:6;29665:14;29658:58;29750:32;29745:2;29737:6;29733:15;29726:57;29541:249;:::o;29796:366::-;29938:3;29959:67;30023:2;30018:3;29959:67;:::i;:::-;29952:74;;30035:93;30124:3;30035:93;:::i;:::-;30153:2;30148:3;30144:12;30137:19;;29796:366;;;:::o;30168:419::-;30334:4;30372:2;30361:9;30357:18;30349:26;;30421:9;30415:4;30411:20;30407:1;30396:9;30392:17;30385:47;30449:131;30575:4;30449:131;:::i;:::-;30441:139;;30168:419;;;:::o;30593:180::-;30641:77;30638:1;30631:88;30738:4;30735:1;30728:15;30762:4;30759:1;30752:15;30779:233;30818:3;30841:24;30859:5;30841:24;:::i;:::-;30832:33;;30887:66;30880:5;30877:77;30874:103;;30957:18;;:::i;:::-;30874:103;31004:1;30997:5;30993:13;30986:20;;30779:233;;;:::o;31018:229::-;31158:34;31154:1;31146:6;31142:14;31135:58;31227:12;31222:2;31214:6;31210:15;31203:37;31018:229;:::o;31253:366::-;31395:3;31416:67;31480:2;31475:3;31416:67;:::i;:::-;31409:74;;31492:93;31581:3;31492:93;:::i;:::-;31610:2;31605:3;31601:12;31594:19;;31253:366;;;:::o;31625:419::-;31791:4;31829:2;31818:9;31814:18;31806:26;;31878:9;31872:4;31868:20;31864:1;31853:9;31849:17;31842:47;31906:131;32032:4;31906:131;:::i;:::-;31898:139;;31625:419;;;:::o;32050:233::-;32190:34;32186:1;32178:6;32174:14;32167:58;32259:16;32254:2;32246:6;32242:15;32235:41;32050:233;:::o;32289:366::-;32431:3;32452:67;32516:2;32511:3;32452:67;:::i;:::-;32445:74;;32528:93;32617:3;32528:93;:::i;:::-;32646:2;32641:3;32637:12;32630:19;;32289:366;;;:::o;32661:419::-;32827:4;32865:2;32854:9;32850:18;32842:26;;32914:9;32908:4;32904:20;32900:1;32889:9;32885:17;32878:47;32942:131;33068:4;32942:131;:::i;:::-;32934:139;;32661:419;;;:::o;33086:164::-;33226:16;33222:1;33214:6;33210:14;33203:40;33086:164;:::o;33256:366::-;33398:3;33419:67;33483:2;33478:3;33419:67;:::i;:::-;33412:74;;33495:93;33584:3;33495:93;:::i;:::-;33613:2;33608:3;33604:12;33597:19;;33256:366;;;:::o;33628:419::-;33794:4;33832:2;33821:9;33817:18;33809:26;;33881:9;33875:4;33871:20;33867:1;33856:9;33852:17;33845:47;33909:131;34035:4;33909:131;:::i;:::-;33901:139;;33628:419;;;:::o;34053:191::-;34093:4;34113:20;34131:1;34113:20;:::i;:::-;34108:25;;34147:20;34165:1;34147:20;:::i;:::-;34142:25;;34186:1;34183;34180:8;34177:34;;;34191:18;;:::i;:::-;34177:34;34236:1;34233;34229:9;34221:17;;34053:191;;;;:::o;34250:148::-;34352:11;34389:3;34374:18;;34250:148;;;;:::o;34404:377::-;34510:3;34538:39;34571:5;34538:39;:::i;:::-;34593:89;34675:6;34670:3;34593:89;:::i;:::-;34586:96;;34691:52;34736:6;34731:3;34724:4;34717:5;34713:16;34691:52;:::i;:::-;34768:6;34763:3;34759:16;34752:23;;34514:267;34404:377;;;;:::o;34787:435::-;34967:3;34989:95;35080:3;35071:6;34989:95;:::i;:::-;34982:102;;35101:95;35192:3;35183:6;35101:95;:::i;:::-;35094:102;;35213:3;35206:10;;34787:435;;;;;:::o;35228:225::-;35368:34;35364:1;35356:6;35352:14;35345:58;35437:8;35432:2;35424:6;35420:15;35413:33;35228:225;:::o;35459:366::-;35601:3;35622:67;35686:2;35681:3;35622:67;:::i;:::-;35615:74;;35698:93;35787:3;35698:93;:::i;:::-;35816:2;35811:3;35807:12;35800:19;;35459:366;;;:::o;35831:419::-;35997:4;36035:2;36024:9;36020:18;36012:26;;36084:9;36078:4;36074:20;36070:1;36059:9;36055:17;36048:47;36112:131;36238:4;36112:131;:::i;:::-;36104:139;;35831:419;;;:::o;36256:229::-;36396:34;36392:1;36384:6;36380:14;36373:58;36465:12;36460:2;36452:6;36448:15;36441:37;36256:229;:::o;36491:366::-;36633:3;36654:67;36718:2;36713:3;36654:67;:::i;:::-;36647:74;;36730:93;36819:3;36730:93;:::i;:::-;36848:2;36843:3;36839:12;36832:19;;36491:366;;;:::o;36863:419::-;37029:4;37067:2;37056:9;37052:18;37044:26;;37116:9;37110:4;37106:20;37102:1;37091:9;37087:17;37080:47;37144:131;37270:4;37144:131;:::i;:::-;37136:139;;36863:419;;;:::o;37288:175::-;37428:27;37424:1;37416:6;37412:14;37405:51;37288:175;:::o;37469:366::-;37611:3;37632:67;37696:2;37691:3;37632:67;:::i;:::-;37625:74;;37708:93;37797:3;37708:93;:::i;:::-;37826:2;37821:3;37817:12;37810:19;;37469:366;;;:::o;37841:419::-;38007:4;38045:2;38034:9;38030:18;38022:26;;38094:9;38088:4;38084:20;38080:1;38069:9;38065:17;38058:47;38122:131;38248:4;38122:131;:::i;:::-;38114:139;;37841:419;;;:::o;38266:226::-;38406:34;38402:1;38394:6;38390:14;38383:58;38475:9;38470:2;38462:6;38458:15;38451:34;38266:226;:::o;38498:366::-;38640:3;38661:67;38725:2;38720:3;38661:67;:::i;:::-;38654:74;;38737:93;38826:3;38737:93;:::i;:::-;38855:2;38850:3;38846:12;38839:19;;38498:366;;;:::o;38870:419::-;39036:4;39074:2;39063:9;39059:18;39051:26;;39123:9;39117:4;39113:20;39109:1;39098:9;39094:17;39087:47;39151:131;39277:4;39151:131;:::i;:::-;39143:139;;38870:419;;;:::o;39295:98::-;39346:6;39380:5;39374:12;39364:22;;39295:98;;;:::o;39399:168::-;39482:11;39516:6;39511:3;39504:19;39556:4;39551:3;39547:14;39532:29;;39399:168;;;;:::o;39573:360::-;39659:3;39687:38;39719:5;39687:38;:::i;:::-;39741:70;39804:6;39799:3;39741:70;:::i;:::-;39734:77;;39820:52;39865:6;39860:3;39853:4;39846:5;39842:16;39820:52;:::i;:::-;39897:29;39919:6;39897:29;:::i;:::-;39892:3;39888:39;39881:46;;39663:270;39573:360;;;;:::o;39939:640::-;40134:4;40172:3;40161:9;40157:19;40149:27;;40186:71;40254:1;40243:9;40239:17;40230:6;40186:71;:::i;:::-;40267:72;40335:2;40324:9;40320:18;40311:6;40267:72;:::i;:::-;40349;40417:2;40406:9;40402:18;40393:6;40349:72;:::i;:::-;40468:9;40462:4;40458:20;40453:2;40442:9;40438:18;40431:48;40496:76;40567:4;40558:6;40496:76;:::i;:::-;40488:84;;39939:640;;;;;;;:::o;40585:141::-;40641:5;40672:6;40666:13;40657:22;;40688:32;40714:5;40688:32;:::i;:::-;40585:141;;;;:::o;40732:349::-;40801:6;40850:2;40838:9;40829:7;40825:23;40821:32;40818:119;;;40856:79;;:::i;:::-;40818:119;40976:1;41001:63;41056:7;41047:6;41036:9;41032:22;41001:63;:::i;:::-;40991:73;;40947:127;40732:349;;;;:::o
Swarm Source
ipfs://65951e6e37985f080347f09e3026799c4524bb30e52d2010641dc1b7f6ed95cd
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.