Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
517
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MuskBlueBird
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// , . , * ..,. ,, , ... ... ,*.,.... , .. / .., // , . , * .,,. ,, , ..., .,. ,*.,.///////////////////..,. // , . , * .,,. ,, , ..., ... ,*/////////////////////////. // , . , * .,,. ,, , ..., .,. .///////////////////////////// // , . , * ..,. ,, , .... ... //////////////////////////////// // , ///////////////////// .,. /////////////////////////////////// // ... ...///////////////////////////// .///////////////////////// .& ./////..... // .////////////////////////////////////////////////////// ( ///////, ,* // /////////////////////////////////////////////////////////////////////, // . ..///////////////////////////////////////////////////////////////// // . . . //////////////////////////////////////////////////////////.*,* // . . .,. . *,///////////////////////////////////////////////////// ,,* // .// . .,. . . , ////////////////////////////////////////////////// * // ////////* . . ,.., ///////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // //////////////////////////////////////////////////////////////// // .///////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////// // /////////////////////////////////////////////////////// // ,*////////////////////////////////////////////////// // ,,../////////////////////////////////////////////**. // ,,., .. //////////////////////////////////////.,.**. // ,,.. .. ////////////////////////////* . .,.**. // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./Ownable.sol"; contract MuskBlueBird is ERC721A, Ownable { using Strings for uint256; constructor() ERC721A("Musk's Blue Bird", "MuskBlueBird") {} mapping(uint256 => bool) private _rewarded100ETH; bool public hit100ETH = false; uint256 public hit100ETHReward = 0.01 ether; mapping(uint256 => bool) private _rewardedSuccessAnd500ETH; bool public hitSuccessAnd500ETH = false; uint256 public hitSuccessAnd500ETHReward = 0.1 ether; uint256 public constant MAX_SUPPLY = 2000; uint256 private mintCount = 0; uint256 private maxMint = 10; uint256 public freeMintAmount = 200; uint256 public price = 0.01 ether; string private baseTokenURI; string public unRevealedURI = "https://ipfs.io/ipfs/QmZtBN9eozrmNFZCpWL2EhDY7tFJTizfib4BpuwYdoxorm"; bool public saleOpen = true; bool public revealed = false; event Minted(uint256 totalMinted); function mint(uint256 _count) external payable { uint256 supply = totalSupply(); require(saleOpen, "Sale is not open yet"); require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply"); require(_count > 0, "Minimum 1 NFT has to be minted per transaction"); require(_count <= 5, "Maximum 5 NFTs can be minted per transaction"); require( numberMinted(msg.sender) + _count <= maxMint, "Max mint amount per wallet exceeded." ); if ((mintCount + _count) > freeMintAmount) { require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); } mintCount += _count; _safeMint(msg.sender, _count); emit Minted(_count); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function reward100ETH(uint256 tokenId) external { require(hit100ETH, "Not ready!"); require(!_rewarded100ETH[tokenId], "Have been rewarded!"); TokenOwnership memory ownership = ownershipOf(tokenId); require(ownership.addr == msg.sender, "Not your bird :)"); _rewarded100ETH[tokenId] = true; (bool success, ) = payable(msg.sender).call{value: hit100ETHReward}(""); require(success, "Transfer failed."); } function rewardSuccessAnd500ETH(uint256 tokenId) external { require(hitSuccessAnd500ETH, "Not ready!"); require(!_rewardedSuccessAnd500ETH[tokenId], "Have been rewarded"); TokenOwnership memory ownership = ownershipOf(tokenId); require(ownership.addr == msg.sender, "Not your bird :)"); _rewardedSuccessAnd500ETH[tokenId] = true; (bool success, ) = payable(msg.sender).call{ value: hitSuccessAnd500ETHReward }(""); require(success, "Transfer failed."); } function totalSupply() public view override returns (uint256) { return mintCount; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setUnRevealedURI(string memory uri) public onlyOwner { unRevealedURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { freeMintAmount = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function flip100ETHReward() external onlyOwner { hit100ETH = !hit100ETH; } function flipSuccessAnd500ETH() external onlyOwner { hitSuccessAnd500ETH = !hitSuccessAnd500ETH; } function flipSale() external onlyOwner { saleOpen = !saleOpen; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; uint256 half = balance / 2; // dev (bool success1, ) = payable(0xEE9824f48998F87fbdAb9241ea612Eb451e70396) .call{value: half}(""); // artist (bool success2, ) = payable(0x379af28aD9600Bf07D8a27A592c2e22DCA794eF2) .call{value: half}(""); require(success1, "Transfer failed."); require(success2, "Transfer failed."); } function setRevealed(bool _revealed) external onlyOwner { revealed = _revealed; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return revealed ? string( abi.encodePacked(baseTokenURI, tokenId.toString(), ".json") ) : unRevealedURI; } }
// 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":"MintedQueryForZeroAddress","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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flip100ETHReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSuccessAnd500ETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hit100ETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hit100ETHReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hitSuccessAnd500ETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hitSuccessAnd500ETHReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"reward100ETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"rewardSuccessAnd500ETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnRevealedURI","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":"unRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff021916908315150217905550662386f26fc10000600b556000600d60006101000a81548160ff02191690831515021790555067016345785d8a0000600e556000600f55600a60105560c8601155662386f26fc1000060125560405180608001604052806043815260200162004dce60439139601490805190602001906200009c92919062000240565b506001601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff021916908315150217905550348015620000e057600080fd5b506040518060400160405280601081526020017f4d75736b277320426c75652042697264000000000000000000000000000000008152506040518060400160405280600c81526020017f4d75736b426c756542697264000000000000000000000000000000000000000081525081600290805190602001906200016592919062000240565b5080600390805190602001906200017e92919062000240565b5050506000620001936200023860201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000355565b600033905090565b8280546200024e90620002f0565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b600060028204905060018216806200030957607f821691505b6020821081141562000320576200031f62000326565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a6980620003656000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a0712d68116100b6578063dc33e6811161007a578063dc33e6811461086b578063e0a80853146108a8578063e985e9c5146108d1578063ee82088b1461090e578063f050436314610925578063f2fde38b1461095057610251565b8063a0712d68146107a9578063a22cb465146107c5578063b88d4fde146107ee578063c52f532e14610817578063c87b56dd1461082e57610251565b806391b7f5ed116100fd57806391b7f5ed146106d657806392910eec146106ff57806395d89b411461072857806399288dbb14610753578063a035b1fe1461077e57610251565b80636352211e1461060357806370a0823114610640578063715018a61461067d5780637ba5e621146106945780638da5cb5b146106ab57610251565b80632f745c59116101d25780633a467e3d116101965780633a467e3d146105075780633ccfd60b1461053257806342842e0e146105495780634f6ccce71461057257806351830227146105af57806355f804b3146105da57610251565b80632f745c591461042057806331aee91d1461045d57806332cb6b0c1461048657806334f44367146104b15780633738f44c146104dc57610251565b80630cec9dc2116102195780630cec9dc21461034d57806318160ddd1461037857806323b872dd146103a3578063276306ed146103cc5780632dedd8ce146103f757610251565b806301aade7b1461025657806301ffc9a71461027f57806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613b2f565b610979565b005b34801561028b57600080fd5b506102a660048036038101906102a19190613ad5565b610a0f565b6040516102b39190613fcf565b60405180910390f35b3480156102c857600080fd5b506102d1610b59565b6040516102de9190613fea565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613b78565b610beb565b60405161031b9190613f68565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613a68565b610c67565b005b34801561035957600080fd5b50610362610d72565b60405161036f91906141cc565b60405180910390f35b34801561038457600080fd5b5061038d610d78565b60405161039a91906141cc565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613952565b610d82565b005b3480156103d857600080fd5b506103e1610d92565b6040516103ee9190613fea565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190613b78565b610e20565b005b34801561042c57600080fd5b5061044760048036038101906104429190613a68565b61102e565b60405161045491906141cc565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190613b78565b611207565b005b34801561049257600080fd5b5061049b611415565b6040516104a891906141cc565b60405180910390f35b3480156104bd57600080fd5b506104c661141b565b6040516104d39190613fcf565b60405180910390f35b3480156104e857600080fd5b506104f161142e565b6040516104fe9190613fcf565b60405180910390f35b34801561051357600080fd5b5061051c611441565b60405161052991906141cc565b60405180910390f35b34801561053e57600080fd5b50610547611447565b005b34801561055557600080fd5b50610570600480360381019061056b9190613952565b61165f565b005b34801561057e57600080fd5b5061059960048036038101906105949190613b78565b61167f565b6040516105a691906141cc565b60405180910390f35b3480156105bb57600080fd5b506105c46117c4565b6040516105d19190613fcf565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613b2f565b6117d7565b005b34801561060f57600080fd5b5061062a60048036038101906106259190613b78565b61186d565b6040516106379190613f68565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906138e5565b611883565b60405161067491906141cc565b60405180910390f35b34801561068957600080fd5b50610692611953565b005b3480156106a057600080fd5b506106a9611a90565b005b3480156106b757600080fd5b506106c0611b38565b6040516106cd9190613f68565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613b78565b611b62565b005b34801561070b57600080fd5b5061072660048036038101906107219190613b78565b611be8565b005b34801561073457600080fd5b5061073d611c6e565b60405161074a9190613fea565b60405180910390f35b34801561075f57600080fd5b50610768611d00565b6040516107759190613fcf565b60405180910390f35b34801561078a57600080fd5b50610793611d13565b6040516107a091906141cc565b60405180910390f35b6107c360048036038101906107be9190613b78565b611d19565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613a28565b611f69565b005b3480156107fa57600080fd5b50610815600480360381019061081091906139a5565b6120e1565b005b34801561082357600080fd5b5061082c612134565b005b34801561083a57600080fd5b5061085560048036038101906108509190613b78565b6121dc565b6040516108629190613fea565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d91906138e5565b6122fd565b60405161089f91906141cc565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca9190613aa8565b61230f565b005b3480156108dd57600080fd5b506108f860048036038101906108f39190613912565b6123a8565b6040516109059190613fcf565b60405180910390f35b34801561091a57600080fd5b5061092361243c565b005b34801561093157600080fd5b5061093a6124e4565b60405161094791906141cc565b60405180910390f35b34801561095c57600080fd5b50610977600480360381019061097291906138e5565b6124ea565b005b610981612696565b73ffffffffffffffffffffffffffffffffffffffff1661099f611b38565b73ffffffffffffffffffffffffffffffffffffffff16146109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061412c565b60405180910390fd5b8060149080519060200190610a0b9291906136b6565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ada57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b525750610b518261269e565b5b9050919050565b606060028054610b689061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b949061449c565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b6000610bf682612708565b610c2c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c728261186d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf9612696565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d2b5750610d2981610d24612696565b6123a8565b155b15610d62576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6d838383612742565b505050565b600b5481565b6000600f54905090565b610d8d8383836127f4565b505050565b60148054610d9f9061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcb9061449c565b8015610e185780601f10610ded57610100808354040283529160200191610e18565b820191906000526020600020905b815481529060010190602001808311610dfb57829003601f168201915b505050505081565b600d60009054906101000a900460ff16610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906140ec565b60405180910390fd5b600c600082815260200190815260200160002060009054906101000a900460ff1615610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061404c565b60405180910390fd5b6000610edb82612ce5565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906141ac565b60405180910390fd5b6001600c600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff16600e54604051610fa390613f53565b60006040518083038185875af1925050503d8060008114610fe0576040519150601f19603f3d011682016040523d82523d6000602084013e610fe5565b606091505b5050905080611029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110209061418c565b60405180910390fd5b505050565b600061103983611883565b8210611071576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b838110156111fb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561115a57506111ee565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461119a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ec57868414156111e3578195505050505050611201565b83806001019450505b505b808060010191505061107d565b50600080fd5b92915050565b600a60009054906101000a900460ff16611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906140ec565b60405180910390fd5b6009600082815260200190815260200160002060009054906101000a900460ff16156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906140cc565b60405180910390fd5b60006112c282612ce5565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906141ac565b60405180910390fd5b60016009600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff16600b5460405161138a90613f53565b60006040518083038185875af1925050503d80600081146113c7576040519150601f19603f3d011682016040523d82523d6000602084013e6113cc565b606091505b5050905080611410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114079061418c565b60405180910390fd5b505050565b6107d081565b600d60009054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b60115481565b61144f612696565b73ffffffffffffffffffffffffffffffffffffffff1661146d611b38565b73ffffffffffffffffffffffffffffffffffffffff16146114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba9061412c565b60405180910390fd5b600047905060006002826114d79190614327565b9050600073ee9824f48998f87fbdab9241ea612eb451e7039673ffffffffffffffffffffffffffffffffffffffff168260405161151390613f53565b60006040518083038185875af1925050503d8060008114611550576040519150601f19603f3d011682016040523d82523d6000602084013e611555565b606091505b50509050600073379af28ad9600bf07d8a27a592c2e22dca794ef273ffffffffffffffffffffffffffffffffffffffff168360405161159390613f53565b60006040518083038185875af1925050503d80600081146115d0576040519150601f19603f3d011682016040523d82523d6000602084013e6115d5565b606091505b5050905081611619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116109061418c565b60405180910390fd5b80611659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116509061418c565b60405180910390fd5b50505050565b61167a838383604051806020016040528060008152506120e1565b505050565b60008060005490506000805b8281101561178c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161177e578583141561177557819450505050506117bf565b82806001019350505b50808060010191505061168b565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601560019054906101000a900460ff1681565b6117df612696565b73ffffffffffffffffffffffffffffffffffffffff166117fd611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a9061412c565b60405180910390fd5b80601390805190602001906118699291906136b6565b5050565b600061187882612ce5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61195b612696565b73ffffffffffffffffffffffffffffffffffffffff16611979611b38565b73ffffffffffffffffffffffffffffffffffffffff16146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c69061412c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a98612696565b73ffffffffffffffffffffffffffffffffffffffff16611ab6611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061412c565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b6a612696565b73ffffffffffffffffffffffffffffffffffffffff16611b88611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd59061412c565b60405180910390fd5b8060128190555050565b611bf0612696565b73ffffffffffffffffffffffffffffffffffffffff16611c0e611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061412c565b60405180910390fd5b8060118190555050565b606060038054611c7d9061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca99061449c565b8015611cf65780601f10611ccb57610100808354040283529160200191611cf6565b820191906000526020600020905b815481529060010190602001808311611cd957829003601f168201915b5050505050905090565b601560009054906101000a900460ff1681565b60125481565b6000611d23610d78565b9050601560009054906101000a900460ff16611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b9061406c565b60405180910390fd5b6107d08282611d8391906142d1565b1115611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb9061416c565b60405180910390fd5b60008211611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe9061400c565b60405180910390fd5b6005821115611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e42906140ac565b60405180910390fd5b60105482611e58336122fd565b611e6291906142d1565b1115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a9061408c565b60405180910390fd5b60115482600f54611eb491906142d1565b1115611f0b5781601254611ec89190614358565b341015611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019061410c565b60405180910390fd5b5b81600f6000828254611f1d91906142d1565b92505081905550611f2e3383612f61565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611f5d91906141cc565b60405180910390a15050565b611f71612696565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611fe3612696565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612090612696565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d59190613fcf565b60405180910390a35050565b6120ec8484846127f4565b6120f884848484612f7f565b61212e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61213c612696565b73ffffffffffffffffffffffffffffffffffffffff1661215a611b38565b73ffffffffffffffffffffffffffffffffffffffff16146121b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a79061412c565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60606121e782612708565b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061414c565b60405180910390fd5b601560019054906101000a900460ff166122ca57601480546122479061449c565b80601f01602080910402602001604051908101604052809291908181526020018280546122739061449c565b80156122c05780601f10612295576101008083540402835291602001916122c0565b820191906000526020600020905b8154815290600101906020018083116122a357829003601f168201915b50505050506122f6565b60136122d58361310d565b6040516020016122e6929190613f24565b6040516020818303038152906040525b9050919050565b60006123088261326e565b9050919050565b612317612696565b73ffffffffffffffffffffffffffffffffffffffff16612335611b38565b73ffffffffffffffffffffffffffffffffffffffff161461238b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123829061412c565b60405180910390fd5b80601560016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612444612696565b73ffffffffffffffffffffffffffffffffffffffff16612462611b38565b73ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af9061412c565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600e5481565b6124f2612696565b73ffffffffffffffffffffffffffffffffffffffff16612510611b38565b73ffffffffffffffffffffffffffffffffffffffff1614612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d9061412c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd9061402c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561273b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127ff82612ce5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612826612696565b73ffffffffffffffffffffffffffffffffffffffff16148061285957506128588260000151612853612696565b6123a8565b5b8061289e5750612867612696565b73ffffffffffffffffffffffffffffffffffffffff1661288684610beb565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612940576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129a7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b4858585600161333e565b6129c46000848460000151612742565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c7557600054811015612c745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cde8585856001613344565b5050505050565b612ced61373c565b6000829050600054811015612f2a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f2857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0c578092505050612f5c565b5b600115612f2757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f22578092505050612f5c565b612e0d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612f7b82826040518060200160405280600081525061334a565b5050565b6000612fa08473ffffffffffffffffffffffffffffffffffffffff1661335c565b15613100578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc9612696565b8786866040518563ffffffff1660e01b8152600401612feb9493929190613f83565b602060405180830381600087803b15801561300557600080fd5b505af192505050801561303657506040513d601f19601f820116820180604052508101906130339190613b02565b60015b6130b0573d8060008114613066576040519150601f19603f3d011682016040523d82523d6000602084013e61306b565b606091505b506000815114156130a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613105565b600190505b949350505050565b60606000821415613155576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613269565b600082905060005b60008214613187578080613170906144ff565b915050600a826131809190614327565b915061315d565b60008167ffffffffffffffff8111156131a3576131a2614635565b5b6040519080825280601f01601f1916602001820160405280156131d55781602001600182028036833780820191505090505b5090505b60008514613262576001826131ee91906143b2565b9150600a856131fd9190614548565b603061320991906142d1565b60f81b81838151811061321f5761321e614606565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325b9190614327565b94506131d9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132d6576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b613357838383600161337f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133ec576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613427576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613434600086838761333e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561369957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561364d575061364b6000888488612f7f565b155b15613684576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506135d2565b5080600081905550506136af6000868387613344565b5050505050565b8280546136c29061449c565b90600052602060002090601f0160209004810192826136e4576000855561372b565b82601f106136fd57805160ff191683800117855561372b565b8280016001018555821561372b579182015b8281111561372a57825182559160200191906001019061370f565b5b509050613738919061377f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613798576000816000905550600101613780565b5090565b60006137af6137aa8461420c565b6141e7565b9050828152602081018484840111156137cb576137ca614669565b5b6137d684828561445a565b509392505050565b60006137f16137ec8461423d565b6141e7565b90508281526020810184848401111561380d5761380c614669565b5b61381884828561445a565b509392505050565b60008135905061382f816149d7565b92915050565b600081359050613844816149ee565b92915050565b60008135905061385981614a05565b92915050565b60008151905061386e81614a05565b92915050565b600082601f83011261388957613888614664565b5b813561389984826020860161379c565b91505092915050565b600082601f8301126138b7576138b6614664565b5b81356138c78482602086016137de565b91505092915050565b6000813590506138df81614a1c565b92915050565b6000602082840312156138fb576138fa614673565b5b600061390984828501613820565b91505092915050565b6000806040838503121561392957613928614673565b5b600061393785828601613820565b925050602061394885828601613820565b9150509250929050565b60008060006060848603121561396b5761396a614673565b5b600061397986828701613820565b935050602061398a86828701613820565b925050604061399b868287016138d0565b9150509250925092565b600080600080608085870312156139bf576139be614673565b5b60006139cd87828801613820565b94505060206139de87828801613820565b93505060406139ef878288016138d0565b925050606085013567ffffffffffffffff811115613a1057613a0f61466e565b5b613a1c87828801613874565b91505092959194509250565b60008060408385031215613a3f57613a3e614673565b5b6000613a4d85828601613820565b9250506020613a5e85828601613835565b9150509250929050565b60008060408385031215613a7f57613a7e614673565b5b6000613a8d85828601613820565b9250506020613a9e858286016138d0565b9150509250929050565b600060208284031215613abe57613abd614673565b5b6000613acc84828501613835565b91505092915050565b600060208284031215613aeb57613aea614673565b5b6000613af98482850161384a565b91505092915050565b600060208284031215613b1857613b17614673565b5b6000613b268482850161385f565b91505092915050565b600060208284031215613b4557613b44614673565b5b600082013567ffffffffffffffff811115613b6357613b6261466e565b5b613b6f848285016138a2565b91505092915050565b600060208284031215613b8e57613b8d614673565b5b6000613b9c848285016138d0565b91505092915050565b613bae816143e6565b82525050565b613bbd816143f8565b82525050565b6000613bce82614283565b613bd88185614299565b9350613be8818560208601614469565b613bf181614678565b840191505092915050565b6000613c078261428e565b613c1181856142b5565b9350613c21818560208601614469565b613c2a81614678565b840191505092915050565b6000613c408261428e565b613c4a81856142c6565b9350613c5a818560208601614469565b80840191505092915050565b60008154613c738161449c565b613c7d81866142c6565b94506001821660008114613c985760018114613ca957613cdc565b60ff19831686528186019350613cdc565b613cb28561426e565b60005b83811015613cd457815481890152600182019150602081019050613cb5565b838801955050505b50505092915050565b6000613cf2602e836142b5565b9150613cfd82614689565b604082019050919050565b6000613d156026836142b5565b9150613d20826146d8565b604082019050919050565b6000613d386012836142b5565b9150613d4382614727565b602082019050919050565b6000613d5b6014836142b5565b9150613d6682614750565b602082019050919050565b6000613d7e6024836142b5565b9150613d8982614779565b604082019050919050565b6000613da1602c836142b5565b9150613dac826147c8565b604082019050919050565b6000613dc46013836142b5565b9150613dcf82614817565b602082019050919050565b6000613de7600a836142b5565b9150613df282614840565b602082019050919050565b6000613e0a6005836142c6565b9150613e1582614869565b600582019050919050565b6000613e2d602f836142b5565b9150613e3882614892565b604082019050919050565b6000613e506020836142b5565b9150613e5b826148e1565b602082019050919050565b6000613e73602f836142b5565b9150613e7e8261490a565b604082019050919050565b6000613e966016836142b5565b9150613ea182614959565b602082019050919050565b6000613eb96000836142aa565b9150613ec482614982565b600082019050919050565b6000613edc6010836142b5565b9150613ee782614985565b602082019050919050565b6000613eff6010836142b5565b9150613f0a826149ae565b602082019050919050565b613f1e81614450565b82525050565b6000613f308285613c66565b9150613f3c8284613c35565b9150613f4782613dfd565b91508190509392505050565b6000613f5e82613eac565b9150819050919050565b6000602082019050613f7d6000830184613ba5565b92915050565b6000608082019050613f986000830187613ba5565b613fa56020830186613ba5565b613fb26040830185613f15565b8181036060830152613fc48184613bc3565b905095945050505050565b6000602082019050613fe46000830184613bb4565b92915050565b600060208201905081810360008301526140048184613bfc565b905092915050565b6000602082019050818103600083015261402581613ce5565b9050919050565b6000602082019050818103600083015261404581613d08565b9050919050565b6000602082019050818103600083015261406581613d2b565b9050919050565b6000602082019050818103600083015261408581613d4e565b9050919050565b600060208201905081810360008301526140a581613d71565b9050919050565b600060208201905081810360008301526140c581613d94565b9050919050565b600060208201905081810360008301526140e581613db7565b9050919050565b6000602082019050818103600083015261410581613dda565b9050919050565b6000602082019050818103600083015261412581613e20565b9050919050565b6000602082019050818103600083015261414581613e43565b9050919050565b6000602082019050818103600083015261416581613e66565b9050919050565b6000602082019050818103600083015261418581613e89565b9050919050565b600060208201905081810360008301526141a581613ecf565b9050919050565b600060208201905081810360008301526141c581613ef2565b9050919050565b60006020820190506141e16000830184613f15565b92915050565b60006141f1614202565b90506141fd82826144ce565b919050565b6000604051905090565b600067ffffffffffffffff82111561422757614226614635565b5b61423082614678565b9050602081019050919050565b600067ffffffffffffffff82111561425857614257614635565b5b61426182614678565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142dc82614450565b91506142e783614450565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431c5761431b614579565b5b828201905092915050565b600061433282614450565b915061433d83614450565b92508261434d5761434c6145a8565b5b828204905092915050565b600061436382614450565b915061436e83614450565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a7576143a6614579565b5b828202905092915050565b60006143bd82614450565b91506143c883614450565b9250828210156143db576143da614579565b5b828203905092915050565b60006143f182614430565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561448757808201518184015260208101905061446c565b83811115614496576000848401525b50505050565b600060028204905060018216806144b457607f821691505b602082108114156144c8576144c76145d7565b5b50919050565b6144d782614678565b810181811067ffffffffffffffff821117156144f6576144f5614635565b5b80604052505050565b600061450a82614450565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561453d5761453c614579565b5b600182019050919050565b600061455382614450565b915061455e83614450565b92508261456e5761456d6145a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f48617665206265656e2072657761726465640000000000000000000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178206d696e7420616d6f756e74207065722077616c6c657420657863656560008201527f6465642e00000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d2035204e4654732063616e206265206d696e7465642070657260008201527f207472616e73616374696f6e0000000000000000000000000000000000000000602082015250565b7f48617665206265656e2072657761726465642100000000000000000000000000600082015250565b7f4e6f742072656164792100000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f7420796f75722062697264203a2900000000000000000000000000000000600082015250565b6149e0816143e6565b81146149eb57600080fd5b50565b6149f7816143f8565b8114614a0257600080fd5b50565b614a0e81614404565b8114614a1957600080fd5b50565b614a2581614450565b8114614a3057600080fd5b5056fea2646970667358221220160c13043b025a57c684a9434c5b0537dd5aeeaa57bb14280820621436ac8ffd64736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d5a74424e39656f7a726d4e465a4370574c32456844593774464a54697a666962344270757759646f786f726d
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636352211e11610139578063a0712d68116100b6578063dc33e6811161007a578063dc33e6811461086b578063e0a80853146108a8578063e985e9c5146108d1578063ee82088b1461090e578063f050436314610925578063f2fde38b1461095057610251565b8063a0712d68146107a9578063a22cb465146107c5578063b88d4fde146107ee578063c52f532e14610817578063c87b56dd1461082e57610251565b806391b7f5ed116100fd57806391b7f5ed146106d657806392910eec146106ff57806395d89b411461072857806399288dbb14610753578063a035b1fe1461077e57610251565b80636352211e1461060357806370a0823114610640578063715018a61461067d5780637ba5e621146106945780638da5cb5b146106ab57610251565b80632f745c59116101d25780633a467e3d116101965780633a467e3d146105075780633ccfd60b1461053257806342842e0e146105495780634f6ccce71461057257806351830227146105af57806355f804b3146105da57610251565b80632f745c591461042057806331aee91d1461045d57806332cb6b0c1461048657806334f44367146104b15780633738f44c146104dc57610251565b80630cec9dc2116102195780630cec9dc21461034d57806318160ddd1461037857806323b872dd146103a3578063276306ed146103cc5780632dedd8ce146103f757610251565b806301aade7b1461025657806301ffc9a71461027f57806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613b2f565b610979565b005b34801561028b57600080fd5b506102a660048036038101906102a19190613ad5565b610a0f565b6040516102b39190613fcf565b60405180910390f35b3480156102c857600080fd5b506102d1610b59565b6040516102de9190613fea565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613b78565b610beb565b60405161031b9190613f68565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613a68565b610c67565b005b34801561035957600080fd5b50610362610d72565b60405161036f91906141cc565b60405180910390f35b34801561038457600080fd5b5061038d610d78565b60405161039a91906141cc565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613952565b610d82565b005b3480156103d857600080fd5b506103e1610d92565b6040516103ee9190613fea565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190613b78565b610e20565b005b34801561042c57600080fd5b5061044760048036038101906104429190613a68565b61102e565b60405161045491906141cc565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190613b78565b611207565b005b34801561049257600080fd5b5061049b611415565b6040516104a891906141cc565b60405180910390f35b3480156104bd57600080fd5b506104c661141b565b6040516104d39190613fcf565b60405180910390f35b3480156104e857600080fd5b506104f161142e565b6040516104fe9190613fcf565b60405180910390f35b34801561051357600080fd5b5061051c611441565b60405161052991906141cc565b60405180910390f35b34801561053e57600080fd5b50610547611447565b005b34801561055557600080fd5b50610570600480360381019061056b9190613952565b61165f565b005b34801561057e57600080fd5b5061059960048036038101906105949190613b78565b61167f565b6040516105a691906141cc565b60405180910390f35b3480156105bb57600080fd5b506105c46117c4565b6040516105d19190613fcf565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613b2f565b6117d7565b005b34801561060f57600080fd5b5061062a60048036038101906106259190613b78565b61186d565b6040516106379190613f68565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906138e5565b611883565b60405161067491906141cc565b60405180910390f35b34801561068957600080fd5b50610692611953565b005b3480156106a057600080fd5b506106a9611a90565b005b3480156106b757600080fd5b506106c0611b38565b6040516106cd9190613f68565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613b78565b611b62565b005b34801561070b57600080fd5b5061072660048036038101906107219190613b78565b611be8565b005b34801561073457600080fd5b5061073d611c6e565b60405161074a9190613fea565b60405180910390f35b34801561075f57600080fd5b50610768611d00565b6040516107759190613fcf565b60405180910390f35b34801561078a57600080fd5b50610793611d13565b6040516107a091906141cc565b60405180910390f35b6107c360048036038101906107be9190613b78565b611d19565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613a28565b611f69565b005b3480156107fa57600080fd5b50610815600480360381019061081091906139a5565b6120e1565b005b34801561082357600080fd5b5061082c612134565b005b34801561083a57600080fd5b5061085560048036038101906108509190613b78565b6121dc565b6040516108629190613fea565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d91906138e5565b6122fd565b60405161089f91906141cc565b60405180910390f35b3480156108b457600080fd5b506108cf60048036038101906108ca9190613aa8565b61230f565b005b3480156108dd57600080fd5b506108f860048036038101906108f39190613912565b6123a8565b6040516109059190613fcf565b60405180910390f35b34801561091a57600080fd5b5061092361243c565b005b34801561093157600080fd5b5061093a6124e4565b60405161094791906141cc565b60405180910390f35b34801561095c57600080fd5b50610977600480360381019061097291906138e5565b6124ea565b005b610981612696565b73ffffffffffffffffffffffffffffffffffffffff1661099f611b38565b73ffffffffffffffffffffffffffffffffffffffff16146109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061412c565b60405180910390fd5b8060149080519060200190610a0b9291906136b6565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ada57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b525750610b518261269e565b5b9050919050565b606060028054610b689061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b949061449c565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b6000610bf682612708565b610c2c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c728261186d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf9612696565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d2b5750610d2981610d24612696565b6123a8565b155b15610d62576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6d838383612742565b505050565b600b5481565b6000600f54905090565b610d8d8383836127f4565b505050565b60148054610d9f9061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcb9061449c565b8015610e185780601f10610ded57610100808354040283529160200191610e18565b820191906000526020600020905b815481529060010190602001808311610dfb57829003601f168201915b505050505081565b600d60009054906101000a900460ff16610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906140ec565b60405180910390fd5b600c600082815260200190815260200160002060009054906101000a900460ff1615610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061404c565b60405180910390fd5b6000610edb82612ce5565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906141ac565b60405180910390fd5b6001600c600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff16600e54604051610fa390613f53565b60006040518083038185875af1925050503d8060008114610fe0576040519150601f19603f3d011682016040523d82523d6000602084013e610fe5565b606091505b5050905080611029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110209061418c565b60405180910390fd5b505050565b600061103983611883565b8210611071576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b838110156111fb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561115a57506111ee565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461119a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ec57868414156111e3578195505050505050611201565b83806001019450505b505b808060010191505061107d565b50600080fd5b92915050565b600a60009054906101000a900460ff16611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d906140ec565b60405180910390fd5b6009600082815260200190815260200160002060009054906101000a900460ff16156112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae906140cc565b60405180910390fd5b60006112c282612ce5565b90503373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d906141ac565b60405180910390fd5b60016009600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff16600b5460405161138a90613f53565b60006040518083038185875af1925050503d80600081146113c7576040519150601f19603f3d011682016040523d82523d6000602084013e6113cc565b606091505b5050905080611410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114079061418c565b60405180910390fd5b505050565b6107d081565b600d60009054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b60115481565b61144f612696565b73ffffffffffffffffffffffffffffffffffffffff1661146d611b38565b73ffffffffffffffffffffffffffffffffffffffff16146114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba9061412c565b60405180910390fd5b600047905060006002826114d79190614327565b9050600073ee9824f48998f87fbdab9241ea612eb451e7039673ffffffffffffffffffffffffffffffffffffffff168260405161151390613f53565b60006040518083038185875af1925050503d8060008114611550576040519150601f19603f3d011682016040523d82523d6000602084013e611555565b606091505b50509050600073379af28ad9600bf07d8a27a592c2e22dca794ef273ffffffffffffffffffffffffffffffffffffffff168360405161159390613f53565b60006040518083038185875af1925050503d80600081146115d0576040519150601f19603f3d011682016040523d82523d6000602084013e6115d5565b606091505b5050905081611619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116109061418c565b60405180910390fd5b80611659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116509061418c565b60405180910390fd5b50505050565b61167a838383604051806020016040528060008152506120e1565b505050565b60008060005490506000805b8281101561178c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161177e578583141561177557819450505050506117bf565b82806001019350505b50808060010191505061168b565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b601560019054906101000a900460ff1681565b6117df612696565b73ffffffffffffffffffffffffffffffffffffffff166117fd611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a9061412c565b60405180910390fd5b80601390805190602001906118699291906136b6565b5050565b600061187882612ce5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61195b612696565b73ffffffffffffffffffffffffffffffffffffffff16611979611b38565b73ffffffffffffffffffffffffffffffffffffffff16146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c69061412c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611a98612696565b73ffffffffffffffffffffffffffffffffffffffff16611ab6611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061412c565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b6a612696565b73ffffffffffffffffffffffffffffffffffffffff16611b88611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd59061412c565b60405180910390fd5b8060128190555050565b611bf0612696565b73ffffffffffffffffffffffffffffffffffffffff16611c0e611b38565b73ffffffffffffffffffffffffffffffffffffffff1614611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061412c565b60405180910390fd5b8060118190555050565b606060038054611c7d9061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca99061449c565b8015611cf65780601f10611ccb57610100808354040283529160200191611cf6565b820191906000526020600020905b815481529060010190602001808311611cd957829003601f168201915b5050505050905090565b601560009054906101000a900460ff1681565b60125481565b6000611d23610d78565b9050601560009054906101000a900460ff16611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b9061406c565b60405180910390fd5b6107d08282611d8391906142d1565b1115611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb9061416c565b60405180910390fd5b60008211611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe9061400c565b60405180910390fd5b6005821115611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e42906140ac565b60405180910390fd5b60105482611e58336122fd565b611e6291906142d1565b1115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a9061408c565b60405180910390fd5b60115482600f54611eb491906142d1565b1115611f0b5781601254611ec89190614358565b341015611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019061410c565b60405180910390fd5b5b81600f6000828254611f1d91906142d1565b92505081905550611f2e3383612f61565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611f5d91906141cc565b60405180910390a15050565b611f71612696565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611fe3612696565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612090612696565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d59190613fcf565b60405180910390a35050565b6120ec8484846127f4565b6120f884848484612f7f565b61212e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61213c612696565b73ffffffffffffffffffffffffffffffffffffffff1661215a611b38565b73ffffffffffffffffffffffffffffffffffffffff16146121b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a79061412c565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60606121e782612708565b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061414c565b60405180910390fd5b601560019054906101000a900460ff166122ca57601480546122479061449c565b80601f01602080910402602001604051908101604052809291908181526020018280546122739061449c565b80156122c05780601f10612295576101008083540402835291602001916122c0565b820191906000526020600020905b8154815290600101906020018083116122a357829003601f168201915b50505050506122f6565b60136122d58361310d565b6040516020016122e6929190613f24565b6040516020818303038152906040525b9050919050565b60006123088261326e565b9050919050565b612317612696565b73ffffffffffffffffffffffffffffffffffffffff16612335611b38565b73ffffffffffffffffffffffffffffffffffffffff161461238b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123829061412c565b60405180910390fd5b80601560016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612444612696565b73ffffffffffffffffffffffffffffffffffffffff16612462611b38565b73ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af9061412c565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600e5481565b6124f2612696565b73ffffffffffffffffffffffffffffffffffffffff16612510611b38565b73ffffffffffffffffffffffffffffffffffffffff1614612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d9061412c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd9061402c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561273b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127ff82612ce5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612826612696565b73ffffffffffffffffffffffffffffffffffffffff16148061285957506128588260000151612853612696565b6123a8565b5b8061289e5750612867612696565b73ffffffffffffffffffffffffffffffffffffffff1661288684610beb565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806128d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612940576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129a7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b4858585600161333e565b6129c46000848460000151612742565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c7557600054811015612c745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cde8585856001613344565b5050505050565b612ced61373c565b6000829050600054811015612f2a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612f2857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0c578092505050612f5c565b5b600115612f2757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f22578092505050612f5c565b612e0d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612f7b82826040518060200160405280600081525061334a565b5050565b6000612fa08473ffffffffffffffffffffffffffffffffffffffff1661335c565b15613100578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc9612696565b8786866040518563ffffffff1660e01b8152600401612feb9493929190613f83565b602060405180830381600087803b15801561300557600080fd5b505af192505050801561303657506040513d601f19601f820116820180604052508101906130339190613b02565b60015b6130b0573d8060008114613066576040519150601f19603f3d011682016040523d82523d6000602084013e61306b565b606091505b506000815114156130a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613105565b600190505b949350505050565b60606000821415613155576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613269565b600082905060005b60008214613187578080613170906144ff565b915050600a826131809190614327565b915061315d565b60008167ffffffffffffffff8111156131a3576131a2614635565b5b6040519080825280601f01601f1916602001820160405280156131d55781602001600182028036833780820191505090505b5090505b60008514613262576001826131ee91906143b2565b9150600a856131fd9190614548565b603061320991906142d1565b60f81b81838151811061321f5761321e614606565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325b9190614327565b94506131d9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132d6576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b613357838383600161337f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133ec576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613427576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613434600086838761333e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561369957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561364d575061364b6000888488612f7f565b155b15613684576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506135d2565b5080600081905550506136af6000868387613344565b5050505050565b8280546136c29061449c565b90600052602060002090601f0160209004810192826136e4576000855561372b565b82601f106136fd57805160ff191683800117855561372b565b8280016001018555821561372b579182015b8281111561372a57825182559160200191906001019061370f565b5b509050613738919061377f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613798576000816000905550600101613780565b5090565b60006137af6137aa8461420c565b6141e7565b9050828152602081018484840111156137cb576137ca614669565b5b6137d684828561445a565b509392505050565b60006137f16137ec8461423d565b6141e7565b90508281526020810184848401111561380d5761380c614669565b5b61381884828561445a565b509392505050565b60008135905061382f816149d7565b92915050565b600081359050613844816149ee565b92915050565b60008135905061385981614a05565b92915050565b60008151905061386e81614a05565b92915050565b600082601f83011261388957613888614664565b5b813561389984826020860161379c565b91505092915050565b600082601f8301126138b7576138b6614664565b5b81356138c78482602086016137de565b91505092915050565b6000813590506138df81614a1c565b92915050565b6000602082840312156138fb576138fa614673565b5b600061390984828501613820565b91505092915050565b6000806040838503121561392957613928614673565b5b600061393785828601613820565b925050602061394885828601613820565b9150509250929050565b60008060006060848603121561396b5761396a614673565b5b600061397986828701613820565b935050602061398a86828701613820565b925050604061399b868287016138d0565b9150509250925092565b600080600080608085870312156139bf576139be614673565b5b60006139cd87828801613820565b94505060206139de87828801613820565b93505060406139ef878288016138d0565b925050606085013567ffffffffffffffff811115613a1057613a0f61466e565b5b613a1c87828801613874565b91505092959194509250565b60008060408385031215613a3f57613a3e614673565b5b6000613a4d85828601613820565b9250506020613a5e85828601613835565b9150509250929050565b60008060408385031215613a7f57613a7e614673565b5b6000613a8d85828601613820565b9250506020613a9e858286016138d0565b9150509250929050565b600060208284031215613abe57613abd614673565b5b6000613acc84828501613835565b91505092915050565b600060208284031215613aeb57613aea614673565b5b6000613af98482850161384a565b91505092915050565b600060208284031215613b1857613b17614673565b5b6000613b268482850161385f565b91505092915050565b600060208284031215613b4557613b44614673565b5b600082013567ffffffffffffffff811115613b6357613b6261466e565b5b613b6f848285016138a2565b91505092915050565b600060208284031215613b8e57613b8d614673565b5b6000613b9c848285016138d0565b91505092915050565b613bae816143e6565b82525050565b613bbd816143f8565b82525050565b6000613bce82614283565b613bd88185614299565b9350613be8818560208601614469565b613bf181614678565b840191505092915050565b6000613c078261428e565b613c1181856142b5565b9350613c21818560208601614469565b613c2a81614678565b840191505092915050565b6000613c408261428e565b613c4a81856142c6565b9350613c5a818560208601614469565b80840191505092915050565b60008154613c738161449c565b613c7d81866142c6565b94506001821660008114613c985760018114613ca957613cdc565b60ff19831686528186019350613cdc565b613cb28561426e565b60005b83811015613cd457815481890152600182019150602081019050613cb5565b838801955050505b50505092915050565b6000613cf2602e836142b5565b9150613cfd82614689565b604082019050919050565b6000613d156026836142b5565b9150613d20826146d8565b604082019050919050565b6000613d386012836142b5565b9150613d4382614727565b602082019050919050565b6000613d5b6014836142b5565b9150613d6682614750565b602082019050919050565b6000613d7e6024836142b5565b9150613d8982614779565b604082019050919050565b6000613da1602c836142b5565b9150613dac826147c8565b604082019050919050565b6000613dc46013836142b5565b9150613dcf82614817565b602082019050919050565b6000613de7600a836142b5565b9150613df282614840565b602082019050919050565b6000613e0a6005836142c6565b9150613e1582614869565b600582019050919050565b6000613e2d602f836142b5565b9150613e3882614892565b604082019050919050565b6000613e506020836142b5565b9150613e5b826148e1565b602082019050919050565b6000613e73602f836142b5565b9150613e7e8261490a565b604082019050919050565b6000613e966016836142b5565b9150613ea182614959565b602082019050919050565b6000613eb96000836142aa565b9150613ec482614982565b600082019050919050565b6000613edc6010836142b5565b9150613ee782614985565b602082019050919050565b6000613eff6010836142b5565b9150613f0a826149ae565b602082019050919050565b613f1e81614450565b82525050565b6000613f308285613c66565b9150613f3c8284613c35565b9150613f4782613dfd565b91508190509392505050565b6000613f5e82613eac565b9150819050919050565b6000602082019050613f7d6000830184613ba5565b92915050565b6000608082019050613f986000830187613ba5565b613fa56020830186613ba5565b613fb26040830185613f15565b8181036060830152613fc48184613bc3565b905095945050505050565b6000602082019050613fe46000830184613bb4565b92915050565b600060208201905081810360008301526140048184613bfc565b905092915050565b6000602082019050818103600083015261402581613ce5565b9050919050565b6000602082019050818103600083015261404581613d08565b9050919050565b6000602082019050818103600083015261406581613d2b565b9050919050565b6000602082019050818103600083015261408581613d4e565b9050919050565b600060208201905081810360008301526140a581613d71565b9050919050565b600060208201905081810360008301526140c581613d94565b9050919050565b600060208201905081810360008301526140e581613db7565b9050919050565b6000602082019050818103600083015261410581613dda565b9050919050565b6000602082019050818103600083015261412581613e20565b9050919050565b6000602082019050818103600083015261414581613e43565b9050919050565b6000602082019050818103600083015261416581613e66565b9050919050565b6000602082019050818103600083015261418581613e89565b9050919050565b600060208201905081810360008301526141a581613ecf565b9050919050565b600060208201905081810360008301526141c581613ef2565b9050919050565b60006020820190506141e16000830184613f15565b92915050565b60006141f1614202565b90506141fd82826144ce565b919050565b6000604051905090565b600067ffffffffffffffff82111561422757614226614635565b5b61423082614678565b9050602081019050919050565b600067ffffffffffffffff82111561425857614257614635565b5b61426182614678565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142dc82614450565b91506142e783614450565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431c5761431b614579565b5b828201905092915050565b600061433282614450565b915061433d83614450565b92508261434d5761434c6145a8565b5b828204905092915050565b600061436382614450565b915061436e83614450565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a7576143a6614579565b5b828202905092915050565b60006143bd82614450565b91506143c883614450565b9250828210156143db576143da614579565b5b828203905092915050565b60006143f182614430565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561448757808201518184015260208101905061446c565b83811115614496576000848401525b50505050565b600060028204905060018216806144b457607f821691505b602082108114156144c8576144c76145d7565b5b50919050565b6144d782614678565b810181811067ffffffffffffffff821117156144f6576144f5614635565b5b80604052505050565b600061450a82614450565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561453d5761453c614579565b5b600182019050919050565b600061455382614450565b915061455e83614450565b92508261456e5761456d6145a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f48617665206265656e2072657761726465640000000000000000000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4d6178206d696e7420616d6f756e74207065722077616c6c657420657863656560008201527f6465642e00000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d2035204e4654732063616e206265206d696e7465642070657260008201527f207472616e73616374696f6e0000000000000000000000000000000000000000602082015250565b7f48617665206265656e2072657761726465642100000000000000000000000000600082015250565b7f4e6f742072656164792100000000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f7420796f75722062697264203a2900000000000000000000000000000000600082015250565b6149e0816143e6565b81146149eb57600080fd5b50565b6149f7816143f8565b8114614a0257600080fd5b50565b614a0e81614404565b8114614a1957600080fd5b50565b614a2581614450565b8114614a3057600080fd5b5056fea2646970667358221220160c13043b025a57c684a9434c5b0537dd5aeeaa57bb14280820621436ac8ffd64736f6c63430008070033
Deployed Bytecode Sourcemap
1823:4840:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5929:366:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8472:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9928:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9505:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2058:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4694:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10759:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2511:107:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4151:537;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4785:1077:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3680:465:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2276:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2172:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2023:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2395:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5494:493;;;;;;;;;;;;;:::i;:::-;;10989:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3797:695;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2659:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4795:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8288:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6354:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:12;;;;;;;;;;;;;:::i;:::-;;5412:76:11;;;;;;;;;;;;;:::i;:::-;;1061:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5108:90:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5004:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8634:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2625:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2437:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2734:823;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10195:274:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11234:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5204:86:11;;;;;;;;;;;;;:::i;:::-;;6209:452;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3563:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5993:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10535:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5296:110:11;;;;;;;;;;;;;:::i;:::-;;2217:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4900:98:11;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4988:3:11::1;4972:13;:19;;;;;;;;;;;;:::i;:::-;;4900:98:::0;:::o;5929:366:4:-;6031:4;6081:25;6066:40;;;:11;:40;;;;:104;;;;6137:33;6122:48;;;:11;:48;;;;6066:104;:170;;;;6201:35;6186:50;;;:11;:50;;;;6066:170;:222;;;;6252:36;6276:11;6252:23;:36::i;:::-;6066:222;6047:241;;5929:366;;;:::o;8472:98::-;8526:13;8558:5;8551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8472:98;:::o;9928:200::-;9996:7;10020:16;10028:7;10020;:16::i;:::-;10015:64;;10045:34;;;;;;;;;;;;;;10015:64;10097:15;:24;10113:7;10097:24;;;;;;;;;;;;;;;;;;;;;10090:31;;9928:200;;;:::o;9505:362::-;9577:13;9593:24;9609:7;9593:15;:24::i;:::-;9577:40;;9637:5;9631:11;;:2;:11;;;9627:48;;;9651:24;;;;;;;;;;;;;;9627:48;9706:5;9690:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9716:37;9733:5;9740:12;:10;:12::i;:::-;9716:16;:37::i;:::-;9715:38;9690:63;9686:136;;;9776:35;;;;;;;;;;;;;;9686:136;9832:28;9841:2;9845:7;9854:5;9832:8;:28::i;:::-;9567:300;9505:362;;:::o;2058:43:11:-;;;;:::o;4694:95::-;4747:7;4773:9;;4766:16;;4694:95;:::o;10759:164:4:-;10888:28;10898:4;10904:2;10908:7;10888:9;:28::i;:::-;10759:164;;;:::o;2511:107:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4151:537::-;4227:19;;;;;;;;;;;4219:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;4280:25;:34;4306:7;4280:34;;;;;;;;;;;;;;;;;;;;;4279:35;4271:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;4348:31;4382:20;4394:7;4382:11;:20::i;:::-;4348:54;;4438:10;4420:28;;:9;:14;;;:28;;;4412:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4517:4;4480:25;:34;4506:7;4480:34;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;4533:12;4559:10;4551:24;;4596:25;;4551:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4532:103;;;4653:7;4645:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;4209:479;;4151:537;:::o;4785:1077:4:-;4874:7;4906:16;4916:5;4906:9;:16::i;:::-;4897:5;:25;4893:61;;4931:23;;;;;;;;;;;;;;4893:61;4964:22;4989:13;;4964:38;;5012:19;5041:25;5237:9;5232:543;5252:14;5248:1;:18;5232:543;;;5291:31;5325:11;:14;5337:1;5325:14;;;;;;;;;;;5291:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5361:9;:16;;;5357:71;;;5401:8;;;5357:71;5475:1;5449:28;;:9;:14;;;:28;;;5445:109;;5521:9;:14;;;5501:34;;5445:109;5596:5;5575:26;;:17;:26;;;5571:190;;;5644:5;5629:11;:20;5625:83;;;5684:1;5677:8;;;;;;;;;5625:83;5729:13;;;;;;;5571:190;5273:502;5232:543;5268:3;;;;;;;5232:543;;;;5847:8;;;4785:1077;;;;;:::o;3680:465:11:-;3746:9;;;;;;;;;;;3738:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;3789:15;:24;3805:7;3789:24;;;;;;;;;;;;;;;;;;;;;3788:25;3780:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3847:31;3881:20;3893:7;3881:11;:20::i;:::-;3847:54;;3937:10;3919:28;;:9;:14;;;:28;;;3911:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4006:4;3979:15;:24;3995:7;3979:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;4022:12;4048:10;4040:24;;4072:15;;4040:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4021:71;;;4110:7;4102:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;3728:417;;3680:465;:::o;2276:41::-;2313:4;2276:41;:::o;2172:39::-;;;;;;;;;;;;;:::o;2023:29::-;;;;;;;;;;;;;:::o;2395:35::-;;;;:::o;5494:493::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5543:15:11::1;5561:21;5543:39;;5592:12;5617:1;5607:7;:11;;;;:::i;:::-;5592:26;;5645:13;5672:42;5664:69;;5741:4;5664:86;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5644:106;;;5780:13;5807:42;5799:69;;5876:4;5799:86;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5779:106;;;5904:8;5896:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;5951:8;5943:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;5533:454;;;;5494:493::o:0;10989:179:4:-;11122:39;11139:4;11145:2;11149:7;11122:39;;;;;;;;;;;;:16;:39::i;:::-;10989:179;;;:::o;3797:695::-;3864:7;3883:22;3908:13;;3883:38;;3931:19;4121:9;4116:320;4136:14;4132:1;:18;4116:320;;;4175:31;4209:11;:14;4221:1;4209:14;;;;;;;;;;;4175:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4246:9;:16;;;4241:181;;4305:5;4290:11;:20;4286:83;;;4345:1;4338:8;;;;;;;;4286:83;4390:13;;;;;;;4241:181;4157:279;4152:3;;;;;;;4116:320;;;;4462:23;;;;;;;;;;;;;;3797:695;;;;:::o;2659:28:11:-;;;;;;;;;;;;;:::o;4795:99::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4880:7:11::1;4865:12;:22;;;;;;;;;;;;:::i;:::-;;4795:99:::0;:::o;8288:122:4:-;8352:7;8378:20;8390:7;8378:11;:20::i;:::-;:25;;;8371:32;;8288:122;;;:::o;6354:203::-;6418:7;6458:1;6441:19;;:5;:19;;;6437:60;;;6469:28;;;;;;;;;;;;;;6437:60;6522:12;:19;6535:5;6522:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6514:36;;6507:43;;6354: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;5412:76:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5473:8:11::1;;;;;;;;;;;5472:9;5461:8;;:20;;;;;;;;;;;;;;;;;;5412:76::o:0;1061:85:12:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;5108:90:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5182:9:11::1;5174:5;:17;;;;5108:90:::0;:::o;5004:98::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5089:6:11::1;5072:14;:23;;;;5004:98:::0;:::o;8634:102:4:-;8690:13;8722:7;8715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:102;:::o;2625:27:11:-;;;;;;;;;;;;;:::o;2437:33::-;;;;:::o;2734:823::-;2791:14;2808:13;:11;:13::i;:::-;2791:30;;2840:8;;;;;;;;;;;2832:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2313:4;2900:6;2891;:15;;;;:::i;:::-;:29;;2883:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2974:1;2965:6;:10;2957:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3054:1;3044:6;:11;;3036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3172:7;;3162:6;3135:24;3148:10;3135:12;:24::i;:::-;:33;;;;:::i;:::-;:44;;3114:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;3279:14;;3269:6;3257:9;;:18;;;;:::i;:::-;3256:37;3252:201;;;3355:6;3347:5;;:14;;;;:::i;:::-;3334:9;:27;;3309:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:201;3476:6;3463:9;;:19;;;;;;;:::i;:::-;;;;;;;;3492:29;3502:10;3514:6;3492:9;:29::i;:::-;3536:14;3543:6;3536:14;;;;;;:::i;:::-;;;;;;;;2781:776;2734:823;:::o;10195:274:4:-;10297:12;:10;:12::i;:::-;10285:24;;:8;:24;;;10281:54;;;10318:17;;;;;;;;;;;;;;10281:54;10391:8;10346:18;:32;10365:12;:10;:12::i;:::-;10346:32;;;;;;;;;;;;;;;:42;10379:8;10346:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10443:8;10414:48;;10429:12;:10;:12::i;:::-;10414:48;;;10453:8;10414:48;;;;;;:::i;:::-;;;;;;;;10195:274;;:::o;11234:332::-;11395:28;11405:4;11411:2;11415:7;11395:9;:28::i;:::-;11438:48;11461:4;11467:2;11471:7;11480:5;11438:22;:48::i;:::-;11433:127;;11509:40;;;;;;;;;;;;;;11433:127;11234:332;;;;:::o;5204:86:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5274:9:11::1;;;;;;;;;;;5273:10;5261:9;;:22;;;;;;;;;;;;;;;;;;5204:86::o:0;6209:452::-;6322:13;6372:16;6380:7;6372;:16::i;:::-;6351:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6490:8;;;;;;;;;;;:164;;6641:13;6490:164;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6562:12;6576:18;:7;:16;:18::i;:::-;6545:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6490:164;6471:183;;6209:452;;;:::o;3563:111::-;3621:7;3647:20;3661:5;3647:13;:20::i;:::-;3640:27;;3563:111;;;:::o;5993:93::-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6070:9:11::1;6059:8;;:20;;;;;;;;;;;;;;;;;;5993:93:::0;:::o;10535:162:4:-;10632:4;10655:18;:25;10674:5;10655:25;;;;;;;;;;;;;;;:35;10681:8;10655:35;;;;;;;;;;;;;;;;;;;;;;;;;10648:42;;10535:162;;;;:::o;5296:110:11:-;1284:12:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5380:19:11::1;;;;;;;;;;;5379:20;5357:19;;:42;;;;;;;;;;;;;;;;;;5296:110::o:0;2217:52::-;;;;:::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;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11812:142:4:-;11869:4;11902:13;;11892:7;:23;:55;;;;;11920:11;:20;11932:7;11920:20;;;;;;;;;;;:27;;;;;;;;;;;;11919:28;11892:55;11885:62;;11812:142;;;:::o;18831:189::-;18968:2;18941:15;:24;18957:7;18941:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19005:7;19001:2;18985:28;;18994:5;18985:28;;;;;;;;;;;;18831:189;;;:::o;14436:2067::-;14546:35;14584:20;14596:7;14584:11;:20::i;:::-;14546:58;;14615:22;14657:13;:18;;;14641:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;14691:50;14708:13;:18;;;14728:12;:10;:12::i;:::-;14691:16;:50::i;:::-;14641:100;:152;;;;14781:12;:10;:12::i;:::-;14757:36;;:20;14769:7;14757:11;:20::i;:::-;:36;;;14641:152;14615:179;;14810:17;14805:66;;14836:35;;;;;;;;;;;;;;14805:66;14907:4;14885:26;;:13;:18;;;:26;;;14881:67;;14920:28;;;;;;;;;;;;;;14881:67;14976:1;14962:16;;:2;:16;;;14958:52;;;14987:23;;;;;;;;;;;;;;14958:52;15021:43;15043:4;15049:2;15053:7;15062:1;15021:21;:43::i;:::-;15126:49;15143:1;15147:7;15156:13;:18;;;15126:8;:49::i;:::-;15495:1;15465:12;:18;15478:4;15465:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15538:1;15510:12;:16;15523:2;15510:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15582:2;15554:11;:20;15566:7;15554:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;15643:15;15598:11;:20;15610:7;15598:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;15907:19;15939:1;15929:7;:11;15907:33;;15999:1;15958:43;;:11;:24;15970:11;15958:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;15954:438;;;16180:13;;16166:11;:27;16162:216;;;16249:13;:18;;;16217:11;:24;16229:11;16217:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16331:13;:28;;;16289:11;:24;16301:11;16289:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16162:216;15954:438;15441:961;16436:7;16432:2;16417:27;;16426:4;16417:27;;;;;;;;;;;;16454:42;16475:4;16481:2;16485:7;16494:1;16454:20;:42::i;:::-;14536:1967;;14436:2067;;;:::o;7173:1058::-;7234:21;;:::i;:::-;7267:12;7282:7;7267:22;;7335:13;;7328:4;:20;7324:843;;;7368:31;7402:11;:17;7414:4;7402:17;;;;;;;;;;;7368:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7442:9;:16;;;7437:716;;7512:1;7486:28;;:9;:14;;;:28;;;7482:99;;7549:9;7542:16;;;;;;7482:99;7880:255;7887:4;7880:255;;;7919:6;;;;;;;;7963:11;:17;7975:4;7963:17;;;;;;;;;;;7951:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8036:1;8010:28;;:9;:14;;;:28;;;8006:107;;8077:9;8070:16;;;;;;8006:107;7880:255;;;7437:716;7350:817;7324:843;8193:31;;;;;;;;;;;;;;7173:1058;;;;:::o;11960:102::-;12028:27;12038:2;12042:8;12028:27;;;;;;;;;;;;:9;:27::i;:::-;11960:102;;:::o;19573:769::-;19723:4;19743:15;:2;:13;;;:15::i;:::-;19739:597;;;19794:2;19778:36;;;19815:12;:10;:12::i;:::-;19829:4;19835:7;19844:5;19778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19774:510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20038:1;20021:6;:13;:18;20017:253;;;20070:40;;;;;;;;;;;;;;20017:253;20222:6;20216:13;20207:6;20203:2;20199:15;20192:38;19774:510;19910:45;;;19900:55;;;:6;:55;;;;19893:62;;;;;19739:597;20321:4;20314:11;;19573:769;;;;;;;:::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;6563:204:4:-;6624:7;6664:1;6647:19;;:5;:19;;;6643:59;;;6675:27;;;;;;;;;;;;;;6643:59;6727:12;:19;6740:5;6727:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;6719:41;;6712:48;;6563:204;;;:::o;20973:154::-;;;;;:::o;21768:153::-;;;;;:::o;12413:157::-;12531:32;12537:2;12541:8;12551:5;12558:4;12531:5;:32::i;:::-;12413:157;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;12817:1377:4:-;12950:20;12973:13;;12950:36;;13014:1;13000:16;;:2;:16;;;12996:48;;;13025:19;;;;;;;;;;;;;;12996:48;13070:1;13058:8;:13;13054:44;;;13080:18;;;;;;;;;;;;;;13054:44;13109:61;13139:1;13143:2;13147:12;13161:8;13109:21;:61::i;:::-;13476:8;13441:12;:16;13454:2;13441:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13539:8;13499:12;:16;13512:2;13499:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13596:2;13563:11;:25;13575:12;13563:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13662:15;13612:11;:25;13624:12;13612:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13693:20;13716:12;13693:35;;13748:9;13743:322;13763:8;13759:1;:12;13743:322;;;13826:12;13822:2;13801:38;;13818:1;13801:38;;;;;;;;;;;;13861:4;:68;;;;;13870:59;13901:1;13905:2;13909:12;13923:5;13870:22;:59::i;:::-;13869:60;13861:68;13857:162;;;13960:40;;;;;;;;;;;;;;13857:162;14036:14;;;;;;;13773:3;;;;;;;13743:322;;;;14095:12;14079:13;:28;;;;13417:701;14127:60;14156:1;14160:2;14164:12;14178:8;14127:20;:60::i;:::-;12940:1254;12817:1377;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:400::-;12856:3;12877:84;12959:1;12954:3;12877:84;:::i;:::-;12870:91;;12970:93;13059:3;12970:93;:::i;:::-;13088:1;13083:3;13079:11;13072:18;;12696:400;;;:::o;13102:366::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:398::-;14749:3;14770:83;14851:1;14846:3;14770:83;:::i;:::-;14763:90;;14862:93;14951:3;14862:93;:::i;:::-;14980:1;14975:3;14971:11;14964:18;;14590:398;;;:::o;14994:366::-;15136:3;15157:67;15221:2;15216:3;15157:67;:::i;:::-;15150:74;;15233:93;15322:3;15233:93;:::i;:::-;15351:2;15346:3;15342:12;15335:19;;14994:366;;;:::o;15366:::-;15508:3;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15366:366;;;:::o;15738:118::-;15825:24;15843:5;15825:24;:::i;:::-;15820:3;15813:37;15738:118;;:::o;15862:695::-;16140:3;16162:92;16250:3;16241:6;16162:92;:::i;:::-;16155:99;;16271:95;16362:3;16353:6;16271:95;:::i;:::-;16264:102;;16383:148;16527:3;16383:148;:::i;:::-;16376:155;;16548:3;16541:10;;15862:695;;;;;:::o;16563:379::-;16747:3;16769:147;16912:3;16769:147;:::i;:::-;16762:154;;16933:3;16926:10;;16563:379;;;:::o;16948:222::-;17041:4;17079:2;17068:9;17064:18;17056:26;;17092:71;17160:1;17149:9;17145:17;17136:6;17092:71;:::i;:::-;16948:222;;;;:::o;17176:640::-;17371:4;17409:3;17398:9;17394:19;17386:27;;17423:71;17491:1;17480:9;17476:17;17467:6;17423:71;:::i;:::-;17504:72;17572:2;17561:9;17557:18;17548:6;17504:72;:::i;:::-;17586;17654:2;17643:9;17639:18;17630:6;17586:72;:::i;:::-;17705:9;17699:4;17695:20;17690:2;17679:9;17675:18;17668:48;17733:76;17804:4;17795:6;17733:76;:::i;:::-;17725:84;;17176:640;;;;;;;:::o;17822:210::-;17909:4;17947:2;17936:9;17932:18;17924:26;;17960:65;18022:1;18011:9;18007:17;17998:6;17960:65;:::i;:::-;17822:210;;;;:::o;18038:313::-;18151:4;18189:2;18178:9;18174:18;18166:26;;18238:9;18232:4;18228:20;18224:1;18213:9;18209:17;18202:47;18266:78;18339:4;18330:6;18266:78;:::i;:::-;18258:86;;18038:313;;;;:::o;18357:419::-;18523:4;18561:2;18550:9;18546:18;18538:26;;18610:9;18604:4;18600:20;18596:1;18585:9;18581:17;18574:47;18638:131;18764:4;18638:131;:::i;:::-;18630:139;;18357:419;;;:::o;18782:::-;18948:4;18986:2;18975:9;18971:18;18963:26;;19035:9;19029:4;19025:20;19021:1;19010:9;19006:17;18999:47;19063:131;19189:4;19063:131;:::i;:::-;19055:139;;18782:419;;;:::o;19207:::-;19373:4;19411:2;19400:9;19396:18;19388:26;;19460:9;19454:4;19450:20;19446:1;19435:9;19431:17;19424:47;19488:131;19614:4;19488:131;:::i;:::-;19480:139;;19207:419;;;:::o;19632:::-;19798:4;19836:2;19825:9;19821:18;19813:26;;19885:9;19879:4;19875:20;19871:1;19860:9;19856:17;19849:47;19913:131;20039:4;19913:131;:::i;:::-;19905:139;;19632:419;;;:::o;20057:::-;20223:4;20261:2;20250:9;20246:18;20238:26;;20310:9;20304:4;20300:20;20296:1;20285:9;20281:17;20274:47;20338:131;20464:4;20338:131;:::i;:::-;20330:139;;20057:419;;;:::o;20482:::-;20648:4;20686:2;20675:9;20671:18;20663:26;;20735:9;20729:4;20725:20;20721:1;20710:9;20706:17;20699:47;20763:131;20889:4;20763:131;:::i;:::-;20755:139;;20482:419;;;:::o;20907:::-;21073:4;21111:2;21100:9;21096:18;21088:26;;21160:9;21154:4;21150:20;21146:1;21135:9;21131:17;21124:47;21188:131;21314:4;21188:131;:::i;:::-;21180:139;;20907:419;;;:::o;21332:::-;21498:4;21536:2;21525:9;21521:18;21513:26;;21585:9;21579:4;21575:20;21571:1;21560:9;21556:17;21549:47;21613:131;21739:4;21613:131;:::i;:::-;21605:139;;21332:419;;;:::o;21757:::-;21923:4;21961:2;21950:9;21946:18;21938:26;;22010:9;22004:4;22000:20;21996:1;21985:9;21981:17;21974:47;22038:131;22164:4;22038:131;:::i;:::-;22030:139;;21757:419;;;:::o;22182:::-;22348:4;22386:2;22375:9;22371:18;22363:26;;22435:9;22429:4;22425:20;22421:1;22410:9;22406:17;22399:47;22463:131;22589:4;22463:131;:::i;:::-;22455:139;;22182:419;;;:::o;22607:::-;22773:4;22811:2;22800:9;22796:18;22788:26;;22860:9;22854:4;22850:20;22846:1;22835:9;22831:17;22824:47;22888:131;23014:4;22888:131;:::i;:::-;22880:139;;22607:419;;;:::o;23032:::-;23198:4;23236:2;23225:9;23221:18;23213:26;;23285:9;23279:4;23275:20;23271:1;23260:9;23256:17;23249:47;23313:131;23439:4;23313:131;:::i;:::-;23305:139;;23032:419;;;:::o;23457:::-;23623:4;23661:2;23650:9;23646:18;23638:26;;23710:9;23704:4;23700:20;23696:1;23685:9;23681:17;23674:47;23738:131;23864:4;23738:131;:::i;:::-;23730:139;;23457:419;;;:::o;23882:::-;24048:4;24086:2;24075:9;24071:18;24063:26;;24135:9;24129:4;24125:20;24121:1;24110:9;24106:17;24099:47;24163:131;24289:4;24163:131;:::i;:::-;24155:139;;23882:419;;;:::o;24307:222::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24451:71;24519:1;24508:9;24504:17;24495:6;24451:71;:::i;:::-;24307:222;;;;:::o;24535:129::-;24569:6;24596:20;;:::i;:::-;24586:30;;24625:33;24653:4;24645:6;24625:33;:::i;:::-;24535:129;;;:::o;24670:75::-;24703:6;24736:2;24730:9;24720:19;;24670:75;:::o;24751:307::-;24812:4;24902:18;24894:6;24891:30;24888:56;;;24924:18;;:::i;:::-;24888:56;24962:29;24984:6;24962:29;:::i;:::-;24954:37;;25046:4;25040;25036:15;25028:23;;24751:307;;;:::o;25064:308::-;25126:4;25216:18;25208:6;25205:30;25202:56;;;25238:18;;:::i;:::-;25202:56;25276:29;25298:6;25276:29;:::i;:::-;25268:37;;25360:4;25354;25350:15;25342:23;;25064:308;;;:::o;25378:141::-;25427:4;25450:3;25442:11;;25473:3;25470:1;25463:14;25507:4;25504:1;25494:18;25486:26;;25378:141;;;:::o;25525:98::-;25576:6;25610:5;25604:12;25594:22;;25525:98;;;:::o;25629:99::-;25681:6;25715:5;25709:12;25699:22;;25629:99;;;:::o;25734:168::-;25817:11;25851:6;25846:3;25839:19;25891:4;25886:3;25882:14;25867:29;;25734:168;;;;:::o;25908:147::-;26009:11;26046:3;26031:18;;25908:147;;;;:::o;26061:169::-;26145:11;26179:6;26174:3;26167:19;26219:4;26214:3;26210:14;26195:29;;26061:169;;;;:::o;26236:148::-;26338:11;26375:3;26360:18;;26236:148;;;;:::o;26390:305::-;26430:3;26449:20;26467:1;26449:20;:::i;:::-;26444:25;;26483:20;26501:1;26483:20;:::i;:::-;26478:25;;26637:1;26569:66;26565:74;26562:1;26559:81;26556:107;;;26643:18;;:::i;:::-;26556:107;26687:1;26684;26680:9;26673:16;;26390:305;;;;:::o;26701:185::-;26741:1;26758:20;26776:1;26758:20;:::i;:::-;26753:25;;26792:20;26810:1;26792:20;:::i;:::-;26787:25;;26831:1;26821:35;;26836:18;;:::i;:::-;26821:35;26878:1;26875;26871:9;26866:14;;26701:185;;;;:::o;26892:348::-;26932:7;26955:20;26973:1;26955:20;:::i;:::-;26950:25;;26989:20;27007:1;26989:20;:::i;:::-;26984:25;;27177:1;27109:66;27105:74;27102:1;27099:81;27094:1;27087:9;27080:17;27076:105;27073:131;;;27184:18;;:::i;:::-;27073:131;27232:1;27229;27225:9;27214:20;;26892:348;;;;:::o;27246:191::-;27286:4;27306:20;27324:1;27306:20;:::i;:::-;27301:25;;27340:20;27358:1;27340:20;:::i;:::-;27335:25;;27379:1;27376;27373:8;27370:34;;;27384:18;;:::i;:::-;27370:34;27429:1;27426;27422:9;27414:17;;27246:191;;;;:::o;27443:96::-;27480:7;27509:24;27527:5;27509:24;:::i;:::-;27498:35;;27443:96;;;:::o;27545:90::-;27579:7;27622:5;27615:13;27608:21;27597:32;;27545:90;;;:::o;27641:149::-;27677:7;27717:66;27710:5;27706:78;27695:89;;27641:149;;;:::o;27796:126::-;27833:7;27873:42;27866:5;27862:54;27851:65;;27796:126;;;:::o;27928:77::-;27965:7;27994:5;27983:16;;27928:77;;;:::o;28011:154::-;28095:6;28090:3;28085;28072:30;28157:1;28148:6;28143:3;28139:16;28132:27;28011:154;;;:::o;28171:307::-;28239:1;28249:113;28263:6;28260:1;28257:13;28249:113;;;28348:1;28343:3;28339:11;28333:18;28329:1;28324:3;28320:11;28313:39;28285:2;28282:1;28278:10;28273:15;;28249:113;;;28380:6;28377:1;28374:13;28371:101;;;28460:1;28451:6;28446:3;28442:16;28435:27;28371:101;28220:258;28171:307;;;:::o;28484:320::-;28528:6;28565:1;28559:4;28555:12;28545:22;;28612:1;28606:4;28602:12;28633:18;28623:81;;28689:4;28681:6;28677:17;28667:27;;28623:81;28751:2;28743:6;28740:14;28720:18;28717:38;28714:84;;;28770:18;;:::i;:::-;28714:84;28535:269;28484:320;;;:::o;28810:281::-;28893:27;28915:4;28893:27;:::i;:::-;28885:6;28881:40;29023:6;29011:10;29008:22;28987:18;28975:10;28972:34;28969:62;28966:88;;;29034:18;;:::i;:::-;28966:88;29074:10;29070:2;29063:22;28853:238;28810:281;;:::o;29097:233::-;29136:3;29159:24;29177:5;29159:24;:::i;:::-;29150:33;;29205:66;29198:5;29195:77;29192:103;;;29275:18;;:::i;:::-;29192:103;29322:1;29315:5;29311:13;29304:20;;29097:233;;;:::o;29336:176::-;29368:1;29385:20;29403:1;29385:20;:::i;:::-;29380:25;;29419:20;29437:1;29419:20;:::i;:::-;29414:25;;29458:1;29448:35;;29463:18;;:::i;:::-;29448:35;29504:1;29501;29497:9;29492:14;;29336:176;;;;:::o;29518:180::-;29566:77;29563:1;29556:88;29663:4;29660:1;29653:15;29687:4;29684:1;29677:15;29704:180;29752:77;29749:1;29742:88;29849:4;29846:1;29839:15;29873:4;29870:1;29863:15;29890:180;29938:77;29935:1;29928:88;30035:4;30032:1;30025:15;30059:4;30056:1;30049:15;30076:180;30124:77;30121:1;30114:88;30221:4;30218:1;30211:15;30245:4;30242:1;30235:15;30262:180;30310:77;30307:1;30300:88;30407:4;30404:1;30397:15;30431:4;30428:1;30421:15;30448:117;30557:1;30554;30547:12;30571:117;30680:1;30677;30670:12;30694:117;30803:1;30800;30793:12;30817:117;30926:1;30923;30916:12;30940:102;30981:6;31032:2;31028:7;31023:2;31016:5;31012:14;31008:28;30998:38;;30940:102;;;:::o;31048:233::-;31188:34;31184:1;31176:6;31172:14;31165:58;31257:16;31252:2;31244:6;31240:15;31233:41;31048:233;:::o;31287:225::-;31427:34;31423:1;31415:6;31411:14;31404:58;31496:8;31491:2;31483:6;31479:15;31472:33;31287:225;:::o;31518:168::-;31658:20;31654:1;31646:6;31642:14;31635:44;31518:168;:::o;31692:170::-;31832:22;31828:1;31820:6;31816:14;31809:46;31692:170;:::o;31868:223::-;32008:34;32004:1;31996:6;31992:14;31985:58;32077:6;32072:2;32064:6;32060:15;32053:31;31868:223;:::o;32097:231::-;32237:34;32233:1;32225:6;32221:14;32214:58;32306:14;32301:2;32293:6;32289:15;32282:39;32097:231;:::o;32334:169::-;32474:21;32470:1;32462:6;32458:14;32451:45;32334:169;:::o;32509:160::-;32649:12;32645:1;32637:6;32633:14;32626:36;32509:160;:::o;32675:155::-;32815:7;32811:1;32803:6;32799:14;32792:31;32675:155;:::o;32836:234::-;32976:34;32972:1;32964:6;32960:14;32953:58;33045:17;33040:2;33032:6;33028:15;33021:42;32836:234;:::o;33076:182::-;33216:34;33212:1;33204:6;33200:14;33193:58;33076:182;:::o;33264:234::-;33404:34;33400:1;33392:6;33388:14;33381:58;33473:17;33468:2;33460:6;33456:15;33449:42;33264:234;:::o;33504:172::-;33644:24;33640:1;33632:6;33628:14;33621:48;33504:172;:::o;33682:114::-;;:::o;33802:166::-;33942:18;33938:1;33930:6;33926:14;33919:42;33802:166;:::o;33974:158::-;34110:18;34106:1;34098:6;34094:14;34087:42;33974:158;:::o;34134:114::-;34203:24;34221:5;34203:24;:::i;:::-;34196:5;34193:35;34183:63;;34242:1;34239;34232:12;34183:63;34134:114;:::o;34250:108::-;34316:21;34331:5;34316:21;:::i;:::-;34309:5;34306:32;34296:60;;34352:1;34349;34342:12;34296:60;34250:108;:::o;34360:112::-;34428:23;34445:5;34428:23;:::i;:::-;34421:5;34418:34;34408:62;;34466:1;34463;34456:12;34408:62;34360:112;:::o;34474:114::-;34543:24;34561:5;34543:24;:::i;:::-;34536:5;34533:35;34523:63;;34582:1;34579;34572:12;34523:63;34474:114;:::o
Swarm Source
ipfs://160c13043b025a57c684a9434c5b0537dd5aeeaa57bb14280820621436ac8ffd
Loading...
Loading
Loading...
Loading
[ 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.