ERC-721
Overview
Max Total Supply
52 DD
Holders
21
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DigiDragon
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// ,,... // ,,,, // ,,,,. // ,%... // ,,,..... // ,,,/,....... @@ // ,&&,,,....*.. @@@ // @@&@@ ,,, ..,... @@@ // /##%&@ ,,,,,,,**,,,,, @&&# // //( ,,,&,... ,,*,, // // ####/ // ///,/////// ,,,,,,*,, / /*,,// // ( /(((/# //////////,,///**,,*,,,,*****/ * , // // /# **// &&**/**#(#((#(#%%%##//*& // // */// &** @.//@ #**#** @/ @@ /& /* // /*,,* %//, .,, ///// ,. */% // , ,,,, %%** @@@ @@ & @@ **/% ,, // * ,,,,, %#&###& //// &&&%#%%( ,,* // ,,** .. ,,,,*****//////*****//// **, // ,*** ,, , ,,,*/ ////////*** / ,**,, // ,,**/* ,, *,.. * **// // / * ..*/*,,, // //**/* , ////, **/// // ///* */*/// // ,*/**((. ##,, ((/** */////////* .,,((*//* // ,,***//,,, #### ///(/**,,, @@ ,,,**//***,, // ,,,,*****,,,,,,,,. #@### ////(((/// , @** ,,,,,,,*******,, // ,*****,,,//****,, #@@@## ((##/ ##@ , **///*,*******, // ,***(*,**//****,*/// #%@@@#%###%%@@@ //,,***///*,***(***, // ,*////****//*******/ /// #####@@%# ** /*****///*****///**, // ,,,,//,,,*** ,**,,* //// ##@@#@@# # , ,**, ****,,**//,,,, // ,,,,* ,,, ,, *// //**** % ##%## / ,, ,, *,,,, // ,, //(**(((###((## / ,,, // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./Ownable.sol"; contract DigiDragon is ERC721A, Ownable { using Strings for uint256; uint256 public maxSupply = 5555; uint256 public price = 0.002 ether; uint256 public maxPerTx = 10; uint256 public maxFreeAmount = 5555; uint256 public maxFreePerWallet = 2; uint256 public maxFreePerTx = 2; bool public mintEnabled = true; string public baseURI="ipfs://QmY6ysAsoBsdU8Qv6jwQYCEP2az8EVwhWm77F8yBpbbsTo/"; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("Digi Dragon", "DD") { _safeMint(msg.sender, 10); } function mint(uint256 quantity) external payable { uint256 cost = price; uint256 num = quantity; uint256 maxFreeTx = maxFreePerTx; bool free = ((totalSupply() + num < maxFreeAmount + 1) && (_mintedFreeAmount[msg.sender] + num <= maxFreePerWallet)); if (free) { cost = 0; _mintedFreeAmount[msg.sender] += num; require(num < maxFreeTx + 1, "Max per TX reached."); } else { require(num < maxPerTx + 1, "Max per TX reached."); } require(mintEnabled, "Minting is not live yet."); require(msg.value >= num * cost, "Please send the exact amount."); require(totalSupply() + num < maxSupply + 1, "No more"); _safeMint(msg.sender, num); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setMaxFreeAmount(uint256 _amount) external onlyOwner { maxFreeAmount = _amount; } function setMaxFreePerWallet(uint256 _amount) external onlyOwner { maxFreePerWallet = _amount; } function setMaxFreePerTx(uint256 _amount) external onlyOwner { maxFreePerTx = _amount; } function flipSale() external onlyOwner { mintEnabled = !mintEnabled; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if ( safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526115b360095566071afd498d0000600a55600a600b556115b3600c556002600d556002600e556001600f60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162004bcc60369139601090816200006f9190620009bc565b503480156200007d57600080fd5b506040518060400160405280600b81526020017f4469676920447261676f6e0000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44440000000000000000000000000000000000000000000000000000000000008152508160029081620000fb9190620009bc565b5080600390816200010d9190620009bc565b505050600062000122620001da60201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001d433600a620001e260201b60201c565b62000c7b565b600033905090565b620002048282604051806020016040528060008152506200020860201b60201c565b5050565b6200021d83838360016200022260201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200028f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403620002ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002df60008683876200057560201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200055057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156200050257506200050060008884886200057b60201b60201c565b155b156200053a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506200047d565b5080600081905550506200056e60008683876200071960201b60201c565b5050505050565b50505050565b6000620005a98473ffffffffffffffffffffffffffffffffffffffff166200071f60201b62001e1b1760201c565b156200070c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005db620001da60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005ff949392919062000b93565b6020604051808303816000875af19250505080156200063e57506040513d601f19601f820116820180604052508101906200063b919062000c49565b60015b620006bb573d806000811462000671576040519150601f19603f3d011682016040523d82523d6000602084013e62000676565b606091505b506000815103620006b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000711565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007c457607f821691505b602082108103620007da57620007d96200077c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000805565b62000850868362000805565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200089d62000897620008918462000868565b62000872565b62000868565b9050919050565b6000819050919050565b620008b9836200087c565b620008d1620008c882620008a4565b84845462000812565b825550505050565b600090565b620008e8620008d9565b620008f5818484620008ae565b505050565b5b818110156200091d5762000911600082620008de565b600181019050620008fb565b5050565b601f8211156200096c576200093681620007e0565b6200094184620007f5565b8101602085101562000951578190505b620009696200096085620007f5565b830182620008fa565b50505b505050565b600082821c905092915050565b6000620009916000198460080262000971565b1980831691505092915050565b6000620009ac83836200097e565b9150826002028217905092915050565b620009c78262000742565b67ffffffffffffffff811115620009e357620009e26200074d565b5b620009ef8254620007ab565b620009fc82828562000921565b600060209050601f83116001811462000a34576000841562000a1f578287015190505b62000a2b85826200099e565b86555062000a9b565b601f19841662000a4486620007e0565b60005b8281101562000a6e5784890151825560018201915060208501945060208101905062000a47565b8683101562000a8e578489015162000a8a601f8916826200097e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ad08262000aa3565b9050919050565b62000ae28162000ac3565b82525050565b62000af38162000868565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b3557808201518184015260208101905062000b18565b60008484015250505050565b6000601f19601f8301169050919050565b600062000b5f8262000af9565b62000b6b818562000b04565b935062000b7d81856020860162000b15565b62000b888162000b41565b840191505092915050565b600060808201905062000baa600083018762000ad7565b62000bb9602083018662000ad7565b62000bc8604083018562000ae8565b818103606083015262000bdc818462000b52565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c238162000bec565b811462000c2f57600080fd5b50565b60008151905062000c438162000c18565b92915050565b60006020828403121562000c625762000c6162000be7565b5b600062000c728482850162000c32565b91505092915050565b613f418062000c8b6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a7027357116100a0578063d5abeb011161006f578063d5abeb0114610732578063e985e9c51461075d578063f2fde38b1461079a578063f892c6e2146107c3578063f968adbe146107ee57610204565b8063a702735714610676578063b88d4fde146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806391b7f5ed116100e757806391b7f5ed146105b257806395d89b41146105db578063a035b1fe14610606578063a0712d6814610631578063a22cb4651461064d57610204565b8063715018a61461052e5780637ba5e621146105455780637dc949b21461055c5780638da5cb5b1461058757610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104375780636352211e146104605780636c0360eb1461049d5780636d7c4a4b146104c857806370a08231146104f157610204565b80633ccfd60b1461039157806340f070a8146103a857806342842e0e146103d15780634f6ccce7146103fa57610204565b80630c23bb3f116101d75780630c23bb3f146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e05565b610819565b60405161023d9190612e4d565b60405180910390f35b34801561025257600080fd5b5061025b610963565b6040516102689190612ef8565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f50565b6109f5565b6040516102a59190612fbe565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613005565b610a71565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612f50565b610b7b565b005b34801561030c57600080fd5b50610315610c01565b6040516103229190613054565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d919061306f565b610c0f565b005b34801561036057600080fd5b5061037b60048036038101906103769190613005565b610c1f565b6040516103889190613054565b60405180910390f35b34801561039d57600080fd5b506103a6610df5565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f50565b610f20565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061306f565b610fa6565b005b34801561040657600080fd5b50610421600480360381019061041c9190612f50565b610fc6565b60405161042e9190613054565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906131f7565b61110a565b005b34801561046c57600080fd5b5061048760048036038101906104829190612f50565b611199565b6040516104949190612fbe565b60405180910390f35b3480156104a957600080fd5b506104b26111af565b6040516104bf9190612ef8565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612f50565b61123d565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613240565b6112c3565b6040516105259190613054565b60405180910390f35b34801561053a57600080fd5b50610543611392565b005b34801561055157600080fd5b5061055a6114cf565b005b34801561056857600080fd5b50610571611577565b60405161057e9190613054565b60405180910390f35b34801561059357600080fd5b5061059c61157d565b6040516105a99190612fbe565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612f50565b6115a7565b005b3480156105e757600080fd5b506105f061162d565b6040516105fd9190612ef8565b60405180910390f35b34801561061257600080fd5b5061061b6116bf565b6040516106289190613054565b60405180910390f35b61064b60048036038101906106469190612f50565b6116c5565b005b34801561065957600080fd5b50610674600480360381019061066f9190613299565b61196b565b005b34801561068257600080fd5b5061068b611ae2565b6040516106989190613054565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c3919061337a565b611ae8565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190612f50565b611b3b565b6040516106fe9190612ef8565b60405180910390f35b34801561071357600080fd5b5061071c611bb7565b6040516107299190612e4d565b60405180910390f35b34801561073e57600080fd5b50610747611bca565b6040516107549190613054565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906133fd565b611bd0565b6040516107919190612e4d565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613240565b611c64565b005b3480156107cf57600080fd5b506107d8611e0f565b6040516107e59190613054565b60405180910390f35b3480156107fa57600080fd5b50610803611e15565b6040516108109190613054565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c575061095b82611e3e565b5b9050919050565b6060600280546109729061346c565b80601f016020809104026020016040519081016040528092919081815260200182805461099e9061346c565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a0082611ea8565b610a36576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7c82611199565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b02611ee2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b345750610b3281610b2d611ee2565b611bd0565b155b15610b6b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b76838383611eea565b505050565b610b83611ee2565b73ffffffffffffffffffffffffffffffffffffffff16610ba161157d565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906134e9565b60405180910390fd5b80600c8190555050565b600060015460005403905090565b610c1a838383611f9c565b505050565b6000610c2a836112c3565b8210610c62576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610dea576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d4b5750610ddd565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ddb57868403610dd2578195505050505050610def565b83806001019450505b505b8080600101915050610c6e565b600080fd5b92915050565b610dfd611ee2565b73ffffffffffffffffffffffffffffffffffffffff16610e1b61157d565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e68906134e9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e979061353a565b60006040518083038185875af1925050503d8060008114610ed4576040519150601f19603f3d011682016040523d82523d6000602084013e610ed9565b606091505b5050905080610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f149061359b565b60405180910390fd5b50565b610f28611ee2565b73ffffffffffffffffffffffffffffffffffffffff16610f4661157d565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906134e9565b60405180910390fd5b80600e8190555050565b610fc183838360405180602001604052806000815250611ae8565b505050565b60008060005490506000805b828110156110d2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110c4578583036110bb5781945050505050611105565b82806001019350505b508080600101915050610fd2565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611112611ee2565b73ffffffffffffffffffffffffffffffffffffffff1661113061157d565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906134e9565b60405180910390fd5b80601090816111959190613767565b5050565b60006111a48261248b565b600001519050919050565b601080546111bc9061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e89061346c565b80156112355780601f1061120a57610100808354040283529160200191611235565b820191906000526020600020905b81548152906001019060200180831161121857829003601f168201915b505050505081565b611245611ee2565b73ffffffffffffffffffffffffffffffffffffffff1661126361157d565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906134e9565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61139a611ee2565b73ffffffffffffffffffffffffffffffffffffffff166113b861157d565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906134e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114d7611ee2565b73ffffffffffffffffffffffffffffffffffffffff166114f561157d565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611542906134e9565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115af611ee2565b73ffffffffffffffffffffffffffffffffffffffff166115cd61157d565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906134e9565b60405180910390fd5b80600a8190555050565b60606003805461163c9061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546116689061346c565b80156116b55780601f1061168a576101008083540402835291602001916116b5565b820191906000526020600020905b81548152906001019060200180831161169857829003601f168201915b5050505050905090565b600a5481565b6000600a54905060008290506000600e54905060006001600c546116e99190613868565b836116f2610c01565b6116fc9190613868565b1080156117555750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117529190613868565b11155b9050801561180a576000935082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b09190613868565b925050819055506001826117c49190613868565b8310611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc906138e8565b60405180910390fd5b61185b565b6001600b546118199190613868565b831061185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906138e8565b60405180910390fd5b5b600f60009054906101000a900460ff166118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190613954565b60405180910390fd5b83836118b69190613974565b3410156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613a02565b60405180910390fd5b60016009546119079190613868565b83611910610c01565b61191a9190613868565b1061195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613a6e565b60405180910390fd5b6119643384612707565b5050505050565b611973611ee2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e4611ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a91611ee2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad69190612e4d565b60405180910390a35050565b600d5481565b611af3848484611f9c565b611aff84848484612725565b611b35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611b4682611ea8565b611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613b00565b60405180910390fd5b6010611b90836128a3565b604051602001611ba1929190613c2b565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c6c611ee2565b73ffffffffffffffffffffffffffffffffffffffff16611c8a61157d565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd7906134e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613ccc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b600b5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611edb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fa78261248b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fce611ee2565b73ffffffffffffffffffffffffffffffffffffffff16148061200157506120008260000151611ffb611ee2565b611bd0565b5b80612046575061200f611ee2565b73ffffffffffffffffffffffffffffffffffffffff1661202e846109f5565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361214e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215b8585856001612a03565b61216b6000848460000151611eea565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361241b5760005481101561241a5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124848585856001612a09565b5050505050565b612493612d56565b60008290506000548110156126d0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126ce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b2578092505050612702565b5b6001156126cd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c8578092505050612702565b6125b3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612721828260405180602001604052806000815250612a0f565b5050565b60006127468473ffffffffffffffffffffffffffffffffffffffff16611e1b565b15612896578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261276f611ee2565b8786866040518563ffffffff1660e01b81526004016127919493929190613d41565b6020604051808303816000875af19250505080156127cd57506040513d601f19601f820116820180604052508101906127ca9190613da2565b60015b612846573d80600081146127fd576040519150601f19603f3d011682016040523d82523d6000602084013e612802565b606091505b50600081510361283e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061289b565b600190505b949350505050565b6060600082036128ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129fe565b600082905060005b6000821461291c57808061290590613dcf565b915050600a826129159190613e46565b91506128f2565b60008167ffffffffffffffff811115612938576129376130cc565b5b6040519080825280601f01601f19166020018201604052801561296a5781602001600182028036833780820191505090505b5090505b600085146129f7576001826129839190613e77565b9150600a856129929190613eab565b603061299e9190613868565b60f81b8183815181106129b4576129b3613edc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f09190613e46565b945061296e565b8093505050505b919050565b50505050565b50505050565b612a1c8383836001612a21565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612ac7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad46000868387612a03565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d3957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612ced5750612ceb6000888488612725565b155b15612d24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c72565b508060008190555050612d4f6000868387612a09565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612de281612dad565b8114612ded57600080fd5b50565b600081359050612dff81612dd9565b92915050565b600060208284031215612e1b57612e1a612da3565b5b6000612e2984828501612df0565b91505092915050565b60008115159050919050565b612e4781612e32565b82525050565b6000602082019050612e626000830184612e3e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ea2578082015181840152602081019050612e87565b60008484015250505050565b6000601f19601f8301169050919050565b6000612eca82612e68565b612ed48185612e73565b9350612ee4818560208601612e84565b612eed81612eae565b840191505092915050565b60006020820190508181036000830152612f128184612ebf565b905092915050565b6000819050919050565b612f2d81612f1a565b8114612f3857600080fd5b50565b600081359050612f4a81612f24565b92915050565b600060208284031215612f6657612f65612da3565b5b6000612f7484828501612f3b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fa882612f7d565b9050919050565b612fb881612f9d565b82525050565b6000602082019050612fd36000830184612faf565b92915050565b612fe281612f9d565b8114612fed57600080fd5b50565b600081359050612fff81612fd9565b92915050565b6000806040838503121561301c5761301b612da3565b5b600061302a85828601612ff0565b925050602061303b85828601612f3b565b9150509250929050565b61304e81612f1a565b82525050565b60006020820190506130696000830184613045565b92915050565b60008060006060848603121561308857613087612da3565b5b600061309686828701612ff0565b93505060206130a786828701612ff0565b92505060406130b886828701612f3b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310482612eae565b810181811067ffffffffffffffff82111715613123576131226130cc565b5b80604052505050565b6000613136612d99565b905061314282826130fb565b919050565b600067ffffffffffffffff821115613162576131616130cc565b5b61316b82612eae565b9050602081019050919050565b82818337600083830152505050565b600061319a61319584613147565b61312c565b9050828152602081018484840111156131b6576131b56130c7565b5b6131c1848285613178565b509392505050565b600082601f8301126131de576131dd6130c2565b5b81356131ee848260208601613187565b91505092915050565b60006020828403121561320d5761320c612da3565b5b600082013567ffffffffffffffff81111561322b5761322a612da8565b5b613237848285016131c9565b91505092915050565b60006020828403121561325657613255612da3565b5b600061326484828501612ff0565b91505092915050565b61327681612e32565b811461328157600080fd5b50565b6000813590506132938161326d565b92915050565b600080604083850312156132b0576132af612da3565b5b60006132be85828601612ff0565b92505060206132cf85828601613284565b9150509250929050565b600067ffffffffffffffff8211156132f4576132f36130cc565b5b6132fd82612eae565b9050602081019050919050565b600061331d613318846132d9565b61312c565b905082815260208101848484011115613339576133386130c7565b5b613344848285613178565b509392505050565b600082601f830112613361576133606130c2565b5b813561337184826020860161330a565b91505092915050565b6000806000806080858703121561339457613393612da3565b5b60006133a287828801612ff0565b94505060206133b387828801612ff0565b93505060406133c487828801612f3b565b925050606085013567ffffffffffffffff8111156133e5576133e4612da8565b5b6133f18782880161334c565b91505092959194509250565b6000806040838503121561341457613413612da3565b5b600061342285828601612ff0565b925050602061343385828601612ff0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348457607f821691505b6020821081036134975761349661343d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134d3602083612e73565b91506134de8261349d565b602082019050919050565b60006020820190508181036000830152613502816134c6565b9050919050565b600081905092915050565b50565b6000613524600083613509565b915061352f82613514565b600082019050919050565b600061354582613517565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613585601083612e73565b91506135908261354f565b602082019050919050565b600060208201905081810360008301526135b481613578565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261361d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135e0565b61362786836135e0565b95508019841693508086168417925050509392505050565b6000819050919050565b600061366461365f61365a84612f1a565b61363f565b612f1a565b9050919050565b6000819050919050565b61367e83613649565b61369261368a8261366b565b8484546135ed565b825550505050565b600090565b6136a761369a565b6136b2818484613675565b505050565b5b818110156136d6576136cb60008261369f565b6001810190506136b8565b5050565b601f82111561371b576136ec816135bb565b6136f5846135d0565b81016020851015613704578190505b613718613710856135d0565b8301826136b7565b50505b505050565b600082821c905092915050565b600061373e60001984600802613720565b1980831691505092915050565b6000613757838361372d565b9150826002028217905092915050565b61377082612e68565b67ffffffffffffffff811115613789576137886130cc565b5b613793825461346c565b61379e8282856136da565b600060209050601f8311600181146137d157600084156137bf578287015190505b6137c9858261374b565b865550613831565b601f1984166137df866135bb565b60005b82811015613807578489015182556001820191506020850194506020810190506137e2565b868310156138245784890151613820601f89168261372d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061387382612f1a565b915061387e83612f1a565b925082820190508082111561389657613895613839565b5b92915050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006138d2601383612e73565b91506138dd8261389c565b602082019050919050565b60006020820190508181036000830152613901816138c5565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b600061393e601883612e73565b915061394982613908565b602082019050919050565b6000602082019050818103600083015261396d81613931565b9050919050565b600061397f82612f1a565b915061398a83612f1a565b925082820261399881612f1a565b915082820484148315176139af576139ae613839565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006139ec601d83612e73565b91506139f7826139b6565b602082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613a58600783612e73565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613aea602f83612e73565b9150613af582613a8e565b604082019050919050565b60006020820190508181036000830152613b1981613add565b9050919050565b600081905092915050565b60008154613b388161346c565b613b428186613b20565b94506001821660008114613b5d5760018114613b7257613ba5565b60ff1983168652811515820286019350613ba5565b613b7b856135bb565b60005b83811015613b9d57815481890152600182019150602081019050613b7e565b838801955050505b50505092915050565b6000613bb982612e68565b613bc38185613b20565b9350613bd3818560208601612e84565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613c15600583613b20565b9150613c2082613bdf565b600582019050919050565b6000613c378285613b2b565b9150613c438284613bae565b9150613c4e82613c08565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cb6602683612e73565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d1382613cec565b613d1d8185613cf7565b9350613d2d818560208601612e84565b613d3681612eae565b840191505092915050565b6000608082019050613d566000830187612faf565b613d636020830186612faf565b613d706040830185613045565b8181036060830152613d828184613d08565b905095945050505050565b600081519050613d9c81612dd9565b92915050565b600060208284031215613db857613db7612da3565b5b6000613dc684828501613d8d565b91505092915050565b6000613dda82612f1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e0c57613e0b613839565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e5182612f1a565b9150613e5c83612f1a565b925082613e6c57613e6b613e17565b5b828204905092915050565b6000613e8282612f1a565b9150613e8d83612f1a565b9250828203905081811115613ea557613ea4613839565b5b92915050565b6000613eb682612f1a565b9150613ec183612f1a565b925082613ed157613ed0613e17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bc6216e98deeb5e54657f08bd3c31639ec9c42333543448f96acdb4c22d54f9264736f6c63430008110033697066733a2f2f516d5936797341736f42736455385176366a77515943455032617a3845567768576d37374638794270626273546f2f
Deployed Bytecode
0x6080604052600436106102045760003560e01c8063715018a611610118578063a7027357116100a0578063d5abeb011161006f578063d5abeb0114610732578063e985e9c51461075d578063f2fde38b1461079a578063f892c6e2146107c3578063f968adbe146107ee57610204565b8063a702735714610676578063b88d4fde146106a1578063c87b56dd146106ca578063d12397301461070757610204565b806391b7f5ed116100e757806391b7f5ed146105b257806395d89b41146105db578063a035b1fe14610606578063a0712d6814610631578063a22cb4651461064d57610204565b8063715018a61461052e5780637ba5e621146105455780637dc949b21461055c5780638da5cb5b1461058757610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104375780636352211e146104605780636c0360eb1461049d5780636d7c4a4b146104c857806370a08231146104f157610204565b80633ccfd60b1461039157806340f070a8146103a857806342842e0e146103d15780634f6ccce7146103fa57610204565b80630c23bb3f116101d75780630c23bb3f146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612e05565b610819565b60405161023d9190612e4d565b60405180910390f35b34801561025257600080fd5b5061025b610963565b6040516102689190612ef8565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612f50565b6109f5565b6040516102a59190612fbe565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613005565b610a71565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612f50565b610b7b565b005b34801561030c57600080fd5b50610315610c01565b6040516103229190613054565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d919061306f565b610c0f565b005b34801561036057600080fd5b5061037b60048036038101906103769190613005565b610c1f565b6040516103889190613054565b60405180910390f35b34801561039d57600080fd5b506103a6610df5565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f50565b610f20565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061306f565b610fa6565b005b34801561040657600080fd5b50610421600480360381019061041c9190612f50565b610fc6565b60405161042e9190613054565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906131f7565b61110a565b005b34801561046c57600080fd5b5061048760048036038101906104829190612f50565b611199565b6040516104949190612fbe565b60405180910390f35b3480156104a957600080fd5b506104b26111af565b6040516104bf9190612ef8565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612f50565b61123d565b005b3480156104fd57600080fd5b5061051860048036038101906105139190613240565b6112c3565b6040516105259190613054565b60405180910390f35b34801561053a57600080fd5b50610543611392565b005b34801561055157600080fd5b5061055a6114cf565b005b34801561056857600080fd5b50610571611577565b60405161057e9190613054565b60405180910390f35b34801561059357600080fd5b5061059c61157d565b6040516105a99190612fbe565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612f50565b6115a7565b005b3480156105e757600080fd5b506105f061162d565b6040516105fd9190612ef8565b60405180910390f35b34801561061257600080fd5b5061061b6116bf565b6040516106289190613054565b60405180910390f35b61064b60048036038101906106469190612f50565b6116c5565b005b34801561065957600080fd5b50610674600480360381019061066f9190613299565b61196b565b005b34801561068257600080fd5b5061068b611ae2565b6040516106989190613054565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c3919061337a565b611ae8565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190612f50565b611b3b565b6040516106fe9190612ef8565b60405180910390f35b34801561071357600080fd5b5061071c611bb7565b6040516107299190612e4d565b60405180910390f35b34801561073e57600080fd5b50610747611bca565b6040516107549190613054565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906133fd565b611bd0565b6040516107919190612e4d565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613240565b611c64565b005b3480156107cf57600080fd5b506107d8611e0f565b6040516107e59190613054565b60405180910390f35b3480156107fa57600080fd5b50610803611e15565b6040516108109190613054565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c575061095b82611e3e565b5b9050919050565b6060600280546109729061346c565b80601f016020809104026020016040519081016040528092919081815260200182805461099e9061346c565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a0082611ea8565b610a36576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7c82611199565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b02611ee2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b345750610b3281610b2d611ee2565b611bd0565b155b15610b6b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b76838383611eea565b505050565b610b83611ee2565b73ffffffffffffffffffffffffffffffffffffffff16610ba161157d565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906134e9565b60405180910390fd5b80600c8190555050565b600060015460005403905090565b610c1a838383611f9c565b505050565b6000610c2a836112c3565b8210610c62576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610dea576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d4b5750610ddd565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ddb57868403610dd2578195505050505050610def565b83806001019450505b505b8080600101915050610c6e565b600080fd5b92915050565b610dfd611ee2565b73ffffffffffffffffffffffffffffffffffffffff16610e1b61157d565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e68906134e9565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e979061353a565b60006040518083038185875af1925050503d8060008114610ed4576040519150601f19603f3d011682016040523d82523d6000602084013e610ed9565b606091505b5050905080610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f149061359b565b60405180910390fd5b50565b610f28611ee2565b73ffffffffffffffffffffffffffffffffffffffff16610f4661157d565b73ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906134e9565b60405180910390fd5b80600e8190555050565b610fc183838360405180602001604052806000815250611ae8565b505050565b60008060005490506000805b828110156110d2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110c4578583036110bb5781945050505050611105565b82806001019350505b508080600101915050610fd2565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611112611ee2565b73ffffffffffffffffffffffffffffffffffffffff1661113061157d565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906134e9565b60405180910390fd5b80601090816111959190613767565b5050565b60006111a48261248b565b600001519050919050565b601080546111bc9061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546111e89061346c565b80156112355780601f1061120a57610100808354040283529160200191611235565b820191906000526020600020905b81548152906001019060200180831161121857829003601f168201915b505050505081565b611245611ee2565b73ffffffffffffffffffffffffffffffffffffffff1661126361157d565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906134e9565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61139a611ee2565b73ffffffffffffffffffffffffffffffffffffffff166113b861157d565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906134e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114d7611ee2565b73ffffffffffffffffffffffffffffffffffffffff166114f561157d565b73ffffffffffffffffffffffffffffffffffffffff161461154b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611542906134e9565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115af611ee2565b73ffffffffffffffffffffffffffffffffffffffff166115cd61157d565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a906134e9565b60405180910390fd5b80600a8190555050565b60606003805461163c9061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546116689061346c565b80156116b55780601f1061168a576101008083540402835291602001916116b5565b820191906000526020600020905b81548152906001019060200180831161169857829003601f168201915b5050505050905090565b600a5481565b6000600a54905060008290506000600e54905060006001600c546116e99190613868565b836116f2610c01565b6116fc9190613868565b1080156117555750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117529190613868565b11155b9050801561180a576000935082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b09190613868565b925050819055506001826117c49190613868565b8310611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc906138e8565b60405180910390fd5b61185b565b6001600b546118199190613868565b831061185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906138e8565b60405180910390fd5b5b600f60009054906101000a900460ff166118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190613954565b60405180910390fd5b83836118b69190613974565b3410156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613a02565b60405180910390fd5b60016009546119079190613868565b83611910610c01565b61191a9190613868565b1061195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613a6e565b60405180910390fd5b6119643384612707565b5050505050565b611973611ee2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e4611ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a91611ee2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad69190612e4d565b60405180910390a35050565b600d5481565b611af3848484611f9c565b611aff84848484612725565b611b35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611b4682611ea8565b611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613b00565b60405180910390fd5b6010611b90836128a3565b604051602001611ba1929190613c2b565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c6c611ee2565b73ffffffffffffffffffffffffffffffffffffffff16611c8a61157d565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd7906134e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613ccc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b600b5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482108015611edb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fa78261248b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fce611ee2565b73ffffffffffffffffffffffffffffffffffffffff16148061200157506120008260000151611ffb611ee2565b611bd0565b5b80612046575061200f611ee2565b73ffffffffffffffffffffffffffffffffffffffff1661202e846109f5565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120e8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361214e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215b8585856001612a03565b61216b6000848460000151611eea565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361241b5760005481101561241a5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124848585856001612a09565b5050505050565b612493612d56565b60008290506000548110156126d0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126ce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b2578092505050612702565b5b6001156126cd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c8578092505050612702565b6125b3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612721828260405180602001604052806000815250612a0f565b5050565b60006127468473ffffffffffffffffffffffffffffffffffffffff16611e1b565b15612896578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261276f611ee2565b8786866040518563ffffffff1660e01b81526004016127919493929190613d41565b6020604051808303816000875af19250505080156127cd57506040513d601f19601f820116820180604052508101906127ca9190613da2565b60015b612846573d80600081146127fd576040519150601f19603f3d011682016040523d82523d6000602084013e612802565b606091505b50600081510361283e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061289b565b600190505b949350505050565b6060600082036128ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129fe565b600082905060005b6000821461291c57808061290590613dcf565b915050600a826129159190613e46565b91506128f2565b60008167ffffffffffffffff811115612938576129376130cc565b5b6040519080825280601f01601f19166020018201604052801561296a5781602001600182028036833780820191505090505b5090505b600085146129f7576001826129839190613e77565b9150600a856129929190613eab565b603061299e9190613868565b60f81b8183815181106129b4576129b3613edc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f09190613e46565b945061296e565b8093505050505b919050565b50505050565b50505050565b612a1c8383836001612a21565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612a8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612ac7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad46000868387612a03565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d3957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612ced5750612ceb6000888488612725565b155b15612d24576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c72565b508060008190555050612d4f6000868387612a09565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612de281612dad565b8114612ded57600080fd5b50565b600081359050612dff81612dd9565b92915050565b600060208284031215612e1b57612e1a612da3565b5b6000612e2984828501612df0565b91505092915050565b60008115159050919050565b612e4781612e32565b82525050565b6000602082019050612e626000830184612e3e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ea2578082015181840152602081019050612e87565b60008484015250505050565b6000601f19601f8301169050919050565b6000612eca82612e68565b612ed48185612e73565b9350612ee4818560208601612e84565b612eed81612eae565b840191505092915050565b60006020820190508181036000830152612f128184612ebf565b905092915050565b6000819050919050565b612f2d81612f1a565b8114612f3857600080fd5b50565b600081359050612f4a81612f24565b92915050565b600060208284031215612f6657612f65612da3565b5b6000612f7484828501612f3b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fa882612f7d565b9050919050565b612fb881612f9d565b82525050565b6000602082019050612fd36000830184612faf565b92915050565b612fe281612f9d565b8114612fed57600080fd5b50565b600081359050612fff81612fd9565b92915050565b6000806040838503121561301c5761301b612da3565b5b600061302a85828601612ff0565b925050602061303b85828601612f3b565b9150509250929050565b61304e81612f1a565b82525050565b60006020820190506130696000830184613045565b92915050565b60008060006060848603121561308857613087612da3565b5b600061309686828701612ff0565b93505060206130a786828701612ff0565b92505060406130b886828701612f3b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310482612eae565b810181811067ffffffffffffffff82111715613123576131226130cc565b5b80604052505050565b6000613136612d99565b905061314282826130fb565b919050565b600067ffffffffffffffff821115613162576131616130cc565b5b61316b82612eae565b9050602081019050919050565b82818337600083830152505050565b600061319a61319584613147565b61312c565b9050828152602081018484840111156131b6576131b56130c7565b5b6131c1848285613178565b509392505050565b600082601f8301126131de576131dd6130c2565b5b81356131ee848260208601613187565b91505092915050565b60006020828403121561320d5761320c612da3565b5b600082013567ffffffffffffffff81111561322b5761322a612da8565b5b613237848285016131c9565b91505092915050565b60006020828403121561325657613255612da3565b5b600061326484828501612ff0565b91505092915050565b61327681612e32565b811461328157600080fd5b50565b6000813590506132938161326d565b92915050565b600080604083850312156132b0576132af612da3565b5b60006132be85828601612ff0565b92505060206132cf85828601613284565b9150509250929050565b600067ffffffffffffffff8211156132f4576132f36130cc565b5b6132fd82612eae565b9050602081019050919050565b600061331d613318846132d9565b61312c565b905082815260208101848484011115613339576133386130c7565b5b613344848285613178565b509392505050565b600082601f830112613361576133606130c2565b5b813561337184826020860161330a565b91505092915050565b6000806000806080858703121561339457613393612da3565b5b60006133a287828801612ff0565b94505060206133b387828801612ff0565b93505060406133c487828801612f3b565b925050606085013567ffffffffffffffff8111156133e5576133e4612da8565b5b6133f18782880161334c565b91505092959194509250565b6000806040838503121561341457613413612da3565b5b600061342285828601612ff0565b925050602061343385828601612ff0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348457607f821691505b6020821081036134975761349661343d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134d3602083612e73565b91506134de8261349d565b602082019050919050565b60006020820190508181036000830152613502816134c6565b9050919050565b600081905092915050565b50565b6000613524600083613509565b915061352f82613514565b600082019050919050565b600061354582613517565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613585601083612e73565b91506135908261354f565b602082019050919050565b600060208201905081810360008301526135b481613578565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261361d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135e0565b61362786836135e0565b95508019841693508086168417925050509392505050565b6000819050919050565b600061366461365f61365a84612f1a565b61363f565b612f1a565b9050919050565b6000819050919050565b61367e83613649565b61369261368a8261366b565b8484546135ed565b825550505050565b600090565b6136a761369a565b6136b2818484613675565b505050565b5b818110156136d6576136cb60008261369f565b6001810190506136b8565b5050565b601f82111561371b576136ec816135bb565b6136f5846135d0565b81016020851015613704578190505b613718613710856135d0565b8301826136b7565b50505b505050565b600082821c905092915050565b600061373e60001984600802613720565b1980831691505092915050565b6000613757838361372d565b9150826002028217905092915050565b61377082612e68565b67ffffffffffffffff811115613789576137886130cc565b5b613793825461346c565b61379e8282856136da565b600060209050601f8311600181146137d157600084156137bf578287015190505b6137c9858261374b565b865550613831565b601f1984166137df866135bb565b60005b82811015613807578489015182556001820191506020850194506020810190506137e2565b868310156138245784890151613820601f89168261372d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061387382612f1a565b915061387e83612f1a565b925082820190508082111561389657613895613839565b5b92915050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006138d2601383612e73565b91506138dd8261389c565b602082019050919050565b60006020820190508181036000830152613901816138c5565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b600061393e601883612e73565b915061394982613908565b602082019050919050565b6000602082019050818103600083015261396d81613931565b9050919050565b600061397f82612f1a565b915061398a83612f1a565b925082820261399881612f1a565b915082820484148315176139af576139ae613839565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006139ec601d83612e73565b91506139f7826139b6565b602082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613a58600783612e73565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613aea602f83612e73565b9150613af582613a8e565b604082019050919050565b60006020820190508181036000830152613b1981613add565b9050919050565b600081905092915050565b60008154613b388161346c565b613b428186613b20565b94506001821660008114613b5d5760018114613b7257613ba5565b60ff1983168652811515820286019350613ba5565b613b7b856135bb565b60005b83811015613b9d57815481890152600182019150602081019050613b7e565b838801955050505b50505092915050565b6000613bb982612e68565b613bc38185613b20565b9350613bd3818560208601612e84565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613c15600583613b20565b9150613c2082613bdf565b600582019050919050565b6000613c378285613b2b565b9150613c438284613bae565b9150613c4e82613c08565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cb6602683612e73565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d1382613cec565b613d1d8185613cf7565b9350613d2d818560208601612e84565b613d3681612eae565b840191505092915050565b6000608082019050613d566000830187612faf565b613d636020830186612faf565b613d706040830185613045565b8181036060830152613d828184613d08565b905095945050505050565b600081519050613d9c81612dd9565b92915050565b600060208284031215613db857613db7612da3565b5b6000613dc684828501613d8d565b91505092915050565b6000613dda82612f1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e0c57613e0b613839565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e5182612f1a565b9150613e5c83612f1a565b925082613e6c57613e6b613e17565b5b828204905092915050565b6000613e8282612f1a565b9150613e8d83612f1a565b9250828203905081811115613ea557613ea4613839565b5b92915050565b6000613eb682612f1a565b9150613ec183612f1a565b925082613ed157613ed0613e17565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bc6216e98deeb5e54657f08bd3c31639ec9c42333543448f96acdb4c22d54f9264736f6c63430008110033
Deployed Bytecode Sourcemap
2658:2639:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6016:410:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8629:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10173:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9750:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4678:102:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3248:278:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11104:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4836:1113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5094:201:2;;;;;;;;;;;;;:::i;:::-;;4900:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11334:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3812:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4490:86:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8445:122:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3009:78:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4786:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6485:203:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:12;;;;;;;;;;;;;:::i;:::-;;5006:82:2;;;;;;;;;;;;;:::i;:::-;;2934:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4582:90:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8791:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2774:34:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3245:783;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10476:294:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2892:35:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11579:332:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4146:338:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2972:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2736:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10836:206:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2850:35:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2815:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6016:410:5;6158:4;6212:25;6197:40;;;:11;:40;;;;:104;;;;6268:33;6253:48;;;:11;:48;;;;6197:104;:170;;;;6332:35;6317:50;;;:11;:50;;;;6197:170;:222;;;;6383:36;6407:11;6383:23;:36::i;:::-;6197:222;6178:241;;6016:410;;;:::o;8629:98::-;8683:13;8715:5;8708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8629:98;:::o;10173:236::-;10273:7;10301:16;10309:7;10301;:16::i;:::-;10296:64;;10326:34;;;;;;;;;;;;;;10296:64;10378:15;:24;10394:7;10378:24;;;;;;;;;;;;;;;;;;;;;10371:31;;10173:236;;;:::o;9750:362::-;9822:13;9838:24;9854:7;9838:15;:24::i;:::-;9822:40;;9882:5;9876:11;;:2;:11;;;9872:48;;9896:24;;;;;;;;;;;;;;9872:48;9951:5;9935:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9961:37;9978:5;9985:12;:10;:12::i;:::-;9961:16;:37::i;:::-;9960:38;9935:63;9931:136;;;10021:35;;;;;;;;;;;;;;9931:136;10077:28;10086:2;10090:7;10099:5;10077:8;:28::i;:::-;9812:300;9750:362;;:::o;4678:102:2:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4766:7:2::1;4750:13;:23;;;;4678:102:::0;:::o;3248:278:5:-;3309:7;3497:12;;3481:13;;:28;3474:35;;3248:278;:::o;11104:164::-;11233:28;11243:4;11249:2;11253:7;11233:9;:28::i;:::-;11104:164;;;:::o;4836:1113::-;4957:7;4993:16;5003:5;4993:9;:16::i;:::-;4984:5;:25;4980:61;;5018:23;;;;;;;;;;;;;;4980:61;5051:22;5076:13;;5051:38;;5099:19;5128:25;5324:9;5319:543;5339:14;5335:1;:18;5319:543;;;5378:31;5412:11;:14;5424:1;5412:14;;;;;;;;;;;5378:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5448:9;:16;;;5444:71;;;5488:8;;;5444:71;5562:1;5536:28;;:9;:14;;;:28;;;5532:109;;5608:9;:14;;;5588:34;;5532:109;5683:5;5662:26;;:17;:26;;;5658:190;;5731:5;5716:11;:20;5712:83;;5771:1;5764:8;;;;;;;;;5712:83;5816:13;;;;;;;5658:190;5360:502;5319:543;5355:3;;;;;;;5319:543;;;5934:8;;;4836:1113;;;;;:::o;5094:201:2:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5144:12:2::1;5170:10;5162:24;;5207:21;5162:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5143:99;;;5260:7;5252:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;5133:162;5094:201::o:0;4900:100::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4986:7:2::1;4971:12;:22;;;;4900:100:::0;:::o;11334:179:5:-;11467:39;11484:4;11490:2;11494:7;11467:39;;;;;;;;;;;;:16;:39::i;:::-;11334:179;;;:::o;3812:731::-;3911:7;3934:22;3959:13;;3934:38;;3982:19;4172:9;4167:320;4187:14;4183:1;:18;4167:320;;;4226:31;4260:11;:14;4272:1;4260:14;;;;;;;;;;;4226:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4297:9;:16;;;4292:181;;4356:5;4341:11;:20;4337:83;;4396:1;4389:8;;;;;;;;4337:83;4441:13;;;;;;;4292:181;4208:279;4203:3;;;;;;;4167:320;;;;4513:23;;;;;;;;;;;;;;3812:731;;;;:::o;4490:86:2:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4566:3:2::1;4556:7;:13;;;;;;:::i;:::-;;4490:86:::0;:::o;8445:122:5:-;8509:7;8535:20;8547:7;8535:11;:20::i;:::-;:25;;;8528:32;;8445:122;;;:::o;3009:78:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4786:108::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4880:7:2::1;4861:16;:26;;;;4786:108:::0;:::o;6485:203:5:-;6549:7;6589:1;6572:19;;:5;:19;;;6568:60;;6600:28;;;;;;;;;;;;;;6568:60;6653:12;:19;6666:5;6653:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6645:36;;6638:43;;6485:203;;;:::o;1693:145:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;5006:82:2:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5070:11:2::1;;;;;;;;;;;5069:12;5055:11;;:26;;;;;;;;;;;;;;;;;;5006:82::o:0;2934:31::-;;;;:::o;1061:85:12:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;4582:90:2:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:9:2::1;4648:5;:17;;;;4582:90:::0;:::o;8791:102:5:-;8847:13;8879:7;8872:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8791:102;:::o;2774:34:2:-;;;;:::o;3245:783::-;3304:12;3319:5;;3304:20;;3334:11;3348:8;3334:22;;3366:17;3386:12;;3366:32;;3409:9;3461:1;3445:13;;:17;;;;:::i;:::-;3439:3;3423:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:39;3422:114;;;;;3519:16;;3512:3;3480:17;:29;3498:10;3480:29;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:55;;3422:114;3409:128;;3551:4;3547:239;;;3578:1;3571:8;;3626:3;3593:17;:29;3611:10;3593:29;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;3669:1;3657:9;:13;;;;:::i;:::-;3651:3;:19;3643:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3547:239;;;3750:1;3739:8;;:12;;;;:::i;:::-;3733:3;:18;3725:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3547:239;3804:11;;;;;;;;;;;3796:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;3881:4;3875:3;:10;;;;:::i;:::-;3862:9;:23;;3854:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;3971:1;3959:9;;:13;;;;:::i;:::-;3953:3;3937:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;3929:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3995:26;4005:10;4017:3;3995:9;:26::i;:::-;3294:734;;;;3245:783;:::o;10476:294:5:-;10598:12;:10;:12::i;:::-;10586:24;;:8;:24;;;10582:54;;10619:17;;;;;;;;;;;;;;10582:54;10692:8;10647:18;:32;10666:12;:10;:12::i;:::-;10647:32;;;;;;;;;;;;;;;:42;10680:8;10647:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10744:8;10715:48;;10730:12;:10;:12::i;:::-;10715:48;;;10754:8;10715:48;;;;;;:::i;:::-;;;;;;;;10476:294;;:::o;2892:35:2:-;;;;:::o;11579:332:5:-;11740:28;11750:4;11756:2;11760:7;11740:9;:28::i;:::-;11783:48;11806:4;11812:2;11816:7;11825:5;11783:22;:48::i;:::-;11778:127;;11854:40;;;;;;;;;;;;;;11778:127;11579:332;;;;:::o;4146:338:2:-;4259:13;4309:16;4317:7;4309;:16::i;:::-;4288:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;4439:7;4448:18;:7;:16;:18::i;:::-;4422:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4408:69;;4146:338;;;:::o;2972:30::-;;;;;;;;;;;;;:::o;2736:31::-;;;;:::o;10836:206:5:-;10973:4;11000:18;:25;11019:5;11000:25;;;;;;;;;;;;;;;:35;11026:8;11000:35;;;;;;;;;;;;;;;;;;;;;;;;;10993:42;;10836:206;;;;:::o;1987:240:12:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;::::0;2067:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;2850:35:2:-;;;;:::o;2815:28::-;;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;829:155:3:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12157:142:5:-;12214:4;12247:13;;12237:7;:23;:55;;;;;12265:11;:20;12277:7;12265:20;;;;;;;;;;;:27;;;;;;;;;;;;12264:28;12237:55;12230:62;;12157:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;19283:189:5:-;19420:2;19393:15;:24;19409:7;19393:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19457:7;19453:2;19437:28;;19446:5;19437:28;;;;;;;;;;;;19283:189;;;:::o;14839:2092::-;14949:35;14987:20;14999:7;14987:11;:20::i;:::-;14949:58;;15018:22;15060:13;:18;;;15044:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;15094:50;15111:13;:18;;;15131:12;:10;:12::i;:::-;15094:16;:50::i;:::-;15044:100;:152;;;;15184:12;:10;:12::i;:::-;15160:36;;:20;15172:7;15160:11;:20::i;:::-;:36;;;15044:152;15018:179;;15213:17;15208:66;;15239:35;;;;;;;;;;;;;;15208:66;15310:4;15288:26;;:13;:18;;;:26;;;15284:67;;15323:28;;;;;;;;;;;;;;15284:67;15379:1;15365:16;;:2;:16;;;15361:52;;15390:23;;;;;;;;;;;;;;15361:52;15424:43;15446:4;15452:2;15456:7;15465:1;15424:21;:43::i;:::-;15529:49;15546:1;15550:7;15559:13;:18;;;15529:8;:49::i;:::-;15898:1;15868:12;:18;15881:4;15868:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15941:1;15913:12;:16;15926:2;15913:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15985:2;15957:11;:20;15969:7;15957:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16046:15;16001:11;:20;16013:7;16001:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16310:19;16342:1;16332:7;:11;16310:33;;16402:1;16361:43;;:11;:24;16373:11;16361:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16357:463;;16583:13;;16569:11;:27;16565:241;;;16652:13;:18;;;16620:11;:24;16632:11;16620:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16734:13;:53;;;16692:11;:24;16704:11;16692:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;16565:241;16357:463;15844:986;16864:7;16860:2;16845:27;;16854:4;16845:27;;;;;;;;;;;;16882:42;16903:4;16909:2;16913:7;16922:1;16882:20;:42::i;:::-;14939:1992;;14839:2092;;;:::o;7304:1084::-;7389:21;;:::i;:::-;7426:12;7441:7;7426:22;;7494:13;;7487:4;:20;7483:841;;;7527:31;7561:11;:17;7573:4;7561:17;;;;;;;;;;;7527:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7601:9;:16;;;7596:714;;7671:1;7645:28;;:9;:14;;;:28;;;7641:99;;7708:9;7701:16;;;;;;7641:99;8037:255;8044:4;8037:255;;;8076:6;;;;;;;;8120:11;:17;8132:4;8120:17;;;;;;;;;;;8108:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8193:1;8167:28;;:9;:14;;;:28;;;8163:107;;8234:9;8227:16;;;;;;8163:107;8037:255;;;7596:714;7509:815;7483:841;8350:31;;;;;;;;;;;;;;7304:1084;;;;:::o;12305:102::-;12373:27;12383:2;12387:8;12373:27;;;;;;;;;;;;:9;:27::i;:::-;12305:102;;:::o;20025:895::-;20175:4;20195:15;:2;:13;;;:15::i;:::-;20191:723;;;20262:2;20246:36;;;20304:12;:10;:12::i;:::-;20338:4;20364:7;20393:5;20246:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20226:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20616:1;20599:6;:13;:18;20595:253;;20648:40;;;;;;;;;;;;;;20595:253;20800:6;20794:13;20785:6;20781:2;20777:15;20770:38;20226:636;20488:45;;;20478:55;;;:6;:55;;;;20471:62;;;;;20191:723;20899:4;20892:11;;20025:895;;;;;;;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;21551:154:5:-;;;;;:::o;22346:153::-;;;;;:::o;12758:157::-;12876:32;12882:2;12886:8;12896:5;12903:4;12876:5;:32::i;:::-;12758:157;;;:::o;13162:1435::-;13295:20;13318:13;;13295:36;;13359:1;13345:16;;:2;:16;;;13341:48;;13370:19;;;;;;;;;;;;;;13341:48;13415:1;13403:8;:13;13399:44;;13425:18;;;;;;;;;;;;;;13399:44;13454:61;13484:1;13488:2;13492:12;13506:8;13454:21;:61::i;:::-;13821:8;13786:12;:16;13799:2;13786:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13884:8;13844:12;:16;13857:2;13844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13941:2;13908:11;:25;13920:12;13908:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14007:15;13957:11;:25;13969:12;13957:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14038:20;14061:12;14038:35;;14093:9;14088:380;14108:8;14104:1;:12;14088:380;;;14171:12;14167:2;14146:38;;14163:1;14146:38;;;;;;;;;;;;14227:4;:88;;;;;14256:59;14287:1;14291:2;14295:12;14309:5;14256:22;:59::i;:::-;14255:60;14227:88;14202:220;;;14363:40;;;;;;;;;;;;;;14202:220;14439:14;;;;;;;14118:3;;;;;;;14088:380;;;;14498:12;14482:13;:28;;;;13762:759;14530:60;14559:1;14563:2;14567:12;14581:8;14530:20;:60::i;:::-;13285:1312;13162:1435;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:14:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:182::-;12743:34;12739:1;12731:6;12727:14;12720:58;12603:182;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:147::-;13689:11;13726:3;13711:18;;13588:147;;;;:::o;13741:114::-;;:::o;13861:398::-;14020:3;14041:83;14122:1;14117:3;14041:83;:::i;:::-;14034:90;;14133:93;14222:3;14133:93;:::i;:::-;14251:1;14246:3;14242:11;14235:18;;13861:398;;;:::o;14265:379::-;14449:3;14471:147;14614:3;14471:147;:::i;:::-;14464:154;;14635:3;14628:10;;14265:379;;;:::o;14650:166::-;14790:18;14786:1;14778:6;14774:14;14767:42;14650:166;:::o;14822:366::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:419::-;15360:4;15398:2;15387:9;15383:18;15375:26;;15447:9;15441:4;15437:20;15433:1;15422:9;15418:17;15411:47;15475:131;15601:4;15475:131;:::i;:::-;15467:139;;15194:419;;;:::o;15619:141::-;15668:4;15691:3;15683:11;;15714:3;15711:1;15704:14;15748:4;15745:1;15735:18;15727:26;;15619:141;;;:::o;15766:93::-;15803:6;15850:2;15845;15838:5;15834:14;15830:23;15820:33;;15766:93;;;:::o;15865:107::-;15909:8;15959:5;15953:4;15949:16;15928:37;;15865:107;;;;:::o;15978:393::-;16047:6;16097:1;16085:10;16081:18;16120:97;16150:66;16139:9;16120:97;:::i;:::-;16238:39;16268:8;16257:9;16238:39;:::i;:::-;16226:51;;16310:4;16306:9;16299:5;16295:21;16286:30;;16359:4;16349:8;16345:19;16338:5;16335:30;16325:40;;16054:317;;15978:393;;;;;:::o;16377:60::-;16405:3;16426:5;16419:12;;16377:60;;;:::o;16443:142::-;16493:9;16526:53;16544:34;16553:24;16571:5;16553:24;:::i;:::-;16544:34;:::i;:::-;16526:53;:::i;:::-;16513:66;;16443:142;;;:::o;16591:75::-;16634:3;16655:5;16648:12;;16591:75;;;:::o;16672:269::-;16782:39;16813:7;16782:39;:::i;:::-;16843:91;16892:41;16916:16;16892:41;:::i;:::-;16884:6;16877:4;16871:11;16843:91;:::i;:::-;16837:4;16830:105;16748:193;16672:269;;;:::o;16947:73::-;16992:3;16947:73;:::o;17026:189::-;17103:32;;:::i;:::-;17144:65;17202:6;17194;17188:4;17144:65;:::i;:::-;17079:136;17026:189;;:::o;17221:186::-;17281:120;17298:3;17291:5;17288:14;17281:120;;;17352:39;17389:1;17382:5;17352:39;:::i;:::-;17325:1;17318:5;17314:13;17305:22;;17281:120;;;17221:186;;:::o;17413:543::-;17514:2;17509:3;17506:11;17503:446;;;17548:38;17580:5;17548:38;:::i;:::-;17632:29;17650:10;17632:29;:::i;:::-;17622:8;17618:44;17815:2;17803:10;17800:18;17797:49;;;17836:8;17821:23;;17797:49;17859:80;17915:22;17933:3;17915:22;:::i;:::-;17905:8;17901:37;17888:11;17859:80;:::i;:::-;17518:431;;17503:446;17413:543;;;:::o;17962:117::-;18016:8;18066:5;18060:4;18056:16;18035:37;;17962:117;;;;:::o;18085:169::-;18129:6;18162:51;18210:1;18206:6;18198:5;18195:1;18191:13;18162:51;:::i;:::-;18158:56;18243:4;18237;18233:15;18223:25;;18136:118;18085:169;;;;:::o;18259:295::-;18335:4;18481:29;18506:3;18500:4;18481:29;:::i;:::-;18473:37;;18543:3;18540:1;18536:11;18530:4;18527:21;18519:29;;18259:295;;;;:::o;18559:1395::-;18676:37;18709:3;18676:37;:::i;:::-;18778:18;18770:6;18767:30;18764:56;;;18800:18;;:::i;:::-;18764:56;18844:38;18876:4;18870:11;18844:38;:::i;:::-;18929:67;18989:6;18981;18975:4;18929:67;:::i;:::-;19023:1;19047:4;19034:17;;19079:2;19071:6;19068:14;19096:1;19091:618;;;;19753:1;19770:6;19767:77;;;19819:9;19814:3;19810:19;19804:26;19795:35;;19767:77;19870:67;19930:6;19923:5;19870:67;:::i;:::-;19864:4;19857:81;19726:222;19061:887;;19091:618;19143:4;19139:9;19131:6;19127:22;19177:37;19209:4;19177:37;:::i;:::-;19236:1;19250:208;19264:7;19261:1;19258:14;19250:208;;;19343:9;19338:3;19334:19;19328:26;19320:6;19313:42;19394:1;19386:6;19382:14;19372:24;;19441:2;19430:9;19426:18;19413:31;;19287:4;19284:1;19280:12;19275:17;;19250:208;;;19486:6;19477:7;19474:19;19471:179;;;19544:9;19539:3;19535:19;19529:26;19587:48;19629:4;19621:6;19617:17;19606:9;19587:48;:::i;:::-;19579:6;19572:64;19494:156;19471:179;19696:1;19692;19684:6;19680:14;19676:22;19670:4;19663:36;19098:611;;;19061:887;;18651:1303;;;18559:1395;;:::o;19960:180::-;20008:77;20005:1;19998:88;20105:4;20102:1;20095:15;20129:4;20126:1;20119:15;20146:191;20186:3;20205:20;20223:1;20205:20;:::i;:::-;20200:25;;20239:20;20257:1;20239:20;:::i;:::-;20234:25;;20282:1;20279;20275:9;20268:16;;20303:3;20300:1;20297:10;20294:36;;;20310:18;;:::i;:::-;20294:36;20146:191;;;;:::o;20343:169::-;20483:21;20479:1;20471:6;20467:14;20460:45;20343:169;:::o;20518:366::-;20660:3;20681:67;20745:2;20740:3;20681:67;:::i;:::-;20674:74;;20757:93;20846:3;20757:93;:::i;:::-;20875:2;20870:3;20866:12;20859:19;;20518:366;;;:::o;20890:419::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;20890:419;;;:::o;21315:174::-;21455:26;21451:1;21443:6;21439:14;21432:50;21315:174;:::o;21495:366::-;21637:3;21658:67;21722:2;21717:3;21658:67;:::i;:::-;21651:74;;21734:93;21823:3;21734:93;:::i;:::-;21852:2;21847:3;21843:12;21836:19;;21495:366;;;:::o;21867:419::-;22033:4;22071:2;22060:9;22056:18;22048:26;;22120:9;22114:4;22110:20;22106:1;22095:9;22091:17;22084:47;22148:131;22274:4;22148:131;:::i;:::-;22140:139;;21867:419;;;:::o;22292:410::-;22332:7;22355:20;22373:1;22355:20;:::i;:::-;22350:25;;22389:20;22407:1;22389:20;:::i;:::-;22384:25;;22444:1;22441;22437:9;22466:30;22484:11;22466:30;:::i;:::-;22455:41;;22645:1;22636:7;22632:15;22629:1;22626:22;22606:1;22599:9;22579:83;22556:139;;22675:18;;:::i;:::-;22556:139;22340:362;22292:410;;;;:::o;22708:179::-;22848:31;22844:1;22836:6;22832:14;22825:55;22708:179;:::o;22893:366::-;23035:3;23056:67;23120:2;23115:3;23056:67;:::i;:::-;23049:74;;23132:93;23221:3;23132:93;:::i;:::-;23250:2;23245:3;23241:12;23234:19;;22893:366;;;:::o;23265:419::-;23431:4;23469:2;23458:9;23454:18;23446:26;;23518:9;23512:4;23508:20;23504:1;23493:9;23489:17;23482:47;23546:131;23672:4;23546:131;:::i;:::-;23538:139;;23265:419;;;:::o;23690:157::-;23830:9;23826:1;23818:6;23814:14;23807:33;23690:157;:::o;23853:365::-;23995:3;24016:66;24080:1;24075:3;24016:66;:::i;:::-;24009:73;;24091:93;24180:3;24091:93;:::i;:::-;24209:2;24204:3;24200:12;24193:19;;23853:365;;;:::o;24224:419::-;24390:4;24428:2;24417:9;24413:18;24405:26;;24477:9;24471:4;24467:20;24463:1;24452:9;24448:17;24441:47;24505:131;24631:4;24505:131;:::i;:::-;24497:139;;24224:419;;;:::o;24649:234::-;24789:34;24785:1;24777:6;24773:14;24766:58;24858:17;24853:2;24845:6;24841:15;24834:42;24649:234;:::o;24889:366::-;25031:3;25052:67;25116:2;25111:3;25052:67;:::i;:::-;25045:74;;25128:93;25217:3;25128:93;:::i;:::-;25246:2;25241:3;25237:12;25230:19;;24889:366;;;:::o;25261:419::-;25427:4;25465:2;25454:9;25450:18;25442:26;;25514:9;25508:4;25504:20;25500:1;25489:9;25485:17;25478:47;25542:131;25668:4;25542:131;:::i;:::-;25534:139;;25261:419;;;:::o;25686:148::-;25788:11;25825:3;25810:18;;25686:148;;;;:::o;25864:874::-;25967:3;26004:5;25998:12;26033:36;26059:9;26033:36;:::i;:::-;26085:89;26167:6;26162:3;26085:89;:::i;:::-;26078:96;;26205:1;26194:9;26190:17;26221:1;26216:166;;;;26396:1;26391:341;;;;26183:549;;26216:166;26300:4;26296:9;26285;26281:25;26276:3;26269:38;26362:6;26355:14;26348:22;26340:6;26336:35;26331:3;26327:45;26320:52;;26216:166;;26391:341;26458:38;26490:5;26458:38;:::i;:::-;26518:1;26532:154;26546:6;26543:1;26540:13;26532:154;;;26620:7;26614:14;26610:1;26605:3;26601:11;26594:35;26670:1;26661:7;26657:15;26646:26;;26568:4;26565:1;26561:12;26556:17;;26532:154;;;26715:6;26710:3;26706:16;26699:23;;26398:334;;26183:549;;25971:767;;25864:874;;;;:::o;26744:390::-;26850:3;26878:39;26911:5;26878:39;:::i;:::-;26933:89;27015:6;27010:3;26933:89;:::i;:::-;26926:96;;27031:65;27089:6;27084:3;27077:4;27070:5;27066:16;27031:65;:::i;:::-;27121:6;27116:3;27112:16;27105:23;;26854:280;26744:390;;;;:::o;27140:155::-;27280:7;27276:1;27268:6;27264:14;27257:31;27140:155;:::o;27301:400::-;27461:3;27482:84;27564:1;27559:3;27482:84;:::i;:::-;27475:91;;27575:93;27664:3;27575:93;:::i;:::-;27693:1;27688:3;27684:11;27677:18;;27301:400;;;:::o;27707:695::-;27985:3;28007:92;28095:3;28086:6;28007:92;:::i;:::-;28000:99;;28116:95;28207:3;28198:6;28116:95;:::i;:::-;28109:102;;28228:148;28372:3;28228:148;:::i;:::-;28221:155;;28393:3;28386:10;;27707:695;;;;;:::o;28408:225::-;28548:34;28544:1;28536:6;28532:14;28525:58;28617:8;28612:2;28604:6;28600:15;28593:33;28408:225;:::o;28639:366::-;28781:3;28802:67;28866:2;28861:3;28802:67;:::i;:::-;28795:74;;28878:93;28967:3;28878:93;:::i;:::-;28996:2;28991:3;28987:12;28980:19;;28639:366;;;:::o;29011:419::-;29177:4;29215:2;29204:9;29200:18;29192:26;;29264:9;29258:4;29254:20;29250:1;29239:9;29235:17;29228:47;29292:131;29418:4;29292:131;:::i;:::-;29284:139;;29011:419;;;:::o;29436:98::-;29487:6;29521:5;29515:12;29505:22;;29436:98;;;:::o;29540:168::-;29623:11;29657:6;29652:3;29645:19;29697:4;29692:3;29688:14;29673:29;;29540:168;;;;:::o;29714:373::-;29800:3;29828:38;29860:5;29828:38;:::i;:::-;29882:70;29945:6;29940:3;29882:70;:::i;:::-;29875:77;;29961:65;30019:6;30014:3;30007:4;30000:5;29996:16;29961:65;:::i;:::-;30051:29;30073:6;30051:29;:::i;:::-;30046:3;30042:39;30035:46;;29804:283;29714:373;;;;:::o;30093:640::-;30288:4;30326:3;30315:9;30311:19;30303:27;;30340:71;30408:1;30397:9;30393:17;30384:6;30340:71;:::i;:::-;30421:72;30489:2;30478:9;30474:18;30465:6;30421:72;:::i;:::-;30503;30571:2;30560:9;30556:18;30547:6;30503:72;:::i;:::-;30622:9;30616:4;30612:20;30607:2;30596:9;30592:18;30585:48;30650:76;30721:4;30712:6;30650:76;:::i;:::-;30642:84;;30093:640;;;;;;;:::o;30739:141::-;30795:5;30826:6;30820:13;30811:22;;30842:32;30868:5;30842:32;:::i;:::-;30739:141;;;;:::o;30886:349::-;30955:6;31004:2;30992:9;30983:7;30979:23;30975:32;30972:119;;;31010:79;;:::i;:::-;30972:119;31130:1;31155:63;31210:7;31201:6;31190:9;31186:22;31155:63;:::i;:::-;31145:73;;31101:127;30886:349;;;;:::o;31241:233::-;31280:3;31303:24;31321:5;31303:24;:::i;:::-;31294:33;;31349:66;31342:5;31339:77;31336:103;;31419:18;;:::i;:::-;31336:103;31466:1;31459:5;31455:13;31448:20;;31241:233;;;:::o;31480:180::-;31528:77;31525:1;31518:88;31625:4;31622:1;31615:15;31649:4;31646:1;31639:15;31666:185;31706:1;31723:20;31741:1;31723:20;:::i;:::-;31718:25;;31757:20;31775:1;31757:20;:::i;:::-;31752:25;;31796:1;31786:35;;31801:18;;:::i;:::-;31786:35;31843:1;31840;31836:9;31831:14;;31666:185;;;;:::o;31857:194::-;31897:4;31917:20;31935:1;31917:20;:::i;:::-;31912:25;;31951:20;31969:1;31951:20;:::i;:::-;31946:25;;31995:1;31992;31988:9;31980:17;;32019:1;32013:4;32010:11;32007:37;;;32024:18;;:::i;:::-;32007:37;31857:194;;;;:::o;32057:176::-;32089:1;32106:20;32124:1;32106:20;:::i;:::-;32101:25;;32140:20;32158:1;32140:20;:::i;:::-;32135:25;;32179:1;32169:35;;32184:18;;:::i;:::-;32169:35;32225:1;32222;32218:9;32213:14;;32057:176;;;;:::o;32239:180::-;32287:77;32284:1;32277:88;32384:4;32381:1;32374:15;32408:4;32405:1;32398:15
Swarm Source
ipfs://bc6216e98deeb5e54657f08bd3c31639ec9c42333543448f96acdb4c22d54f92
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.