ERC-721
Overview
Max Total Supply
3,568 Bitcoin
Holders
377
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
16 BitcoinLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitcoinPresents
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./ERC721A.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./DefaultOperatorFilterer.sol"; import "./base64.sol"; contract BitcoinPresents is DefaultOperatorFilterer, ERC721A, Ownable { using Strings for uint256; uint256 public maxSupply = 5555; uint256 public maxFreeAmount = 1555; uint256 public maxFreePerWallet = 5; uint256 public price = 0.001 ether; uint256 public maxPerTx = 20; uint256 public maxPerWallet = 100; uint256 public teamReserved = 100; bool public mintEnabled = true; string public baseURI; constructor() ERC721A("Bitcoin Presents", "Bitcoin") { _safeMint(msg.sender, 100); } function mint(uint256 quantity) external payable { require(mintEnabled, "Minting is not live yet."); require(totalSupply() + quantity < maxSupply + 1, "No more"); uint256 cost = price; uint256 _maxPerWallet = maxPerWallet; if ( totalSupply() < maxFreeAmount && _numberMinted(msg.sender) < maxFreePerWallet && quantity <= maxFreePerWallet ) { cost = 0; _maxPerWallet = maxFreePerWallet; } require( _numberMinted(msg.sender) + quantity <= _maxPerWallet, "Max per wallet" ); uint256 needPayCount = quantity; if (_numberMinted(msg.sender) == 0) { needPayCount = quantity - 1; } require( msg.value >= needPayCount * cost, "Please send the exact amount." ); _safeMint(msg.sender, quantity); } function teamMint() public onlyOwner { _safeMint(msg.sender, teamReserved); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { string[26] memory colors = ["#F7931A","#46885f","#30322e","#c6ab6f","#763164","#1b387e","#336a75", "#7f766d","#eeeeee","#FCE74C","#fdcce5","#bd7ebe","#00bfa0","#fd7f6f","#dc0ab4","#f46a9b","#d0f400","#9b19f5","#ffa300","#e60049","#82b6b9","#b3d4ff","#00ffff","#0bb4ff","#35d435","#61ff75"]; string memory color = colors[tokenId % 25]; string memory rawSvg = string( abi.encodePacked( '<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" version="1.1" viewBox="0 0 4091.27 4091.73"><rect width="100%" height="100%" fill="', color, '"/><path fill="white" fill-rule="nonzero" d="M2947.77 1754.38c40.72,-272.26 -166.56,-418.61 -450,-516.24l91.95 -368.8 -224.5 -55.94 -89.51 359.09c-59.02,-14.72 -119.63,-28.59 -179.87,-42.34l90.16 -361.46 -224.36 -55.94 -92 368.68c-48.84,-11.12 -96.81,-22.11 -143.35,-33.69l0.26 -1.16 -309.59 -77.31 -59.72 239.78c0,0 166.56,38.18 163.05,40.53 90.91,22.69 107.35,82.87 104.62,130.57l-104.74 420.15c6.26,1.59 14.38,3.89 23.34,7.49 -7.49,-1.86 -15.46,-3.89 -23.73,-5.87l-146.81 588.57c-11.11,27.62 -39.31,69.07 -102.87,53.33 2.25,3.26 -163.17,-40.72 -163.17,-40.72l-111.46 256.98 292.15 72.83c54.35,13.63 107.61,27.89 160.06,41.3l-92.9 373.03 224.24 55.94 92 -369.07c61.26,16.63 120.71,31.97 178.91,46.43l-91.69 367.33 224.51 55.94 92.89 -372.33c382.82,72.45 670.67,43.24 791.83,-303.02 97.63,-278.78 -4.86,-439.58 -206.26,-544.44 146.69,-33.83 257.18,-130.31 286.64,-329.61l-0.07 -0.05zm-512.93 719.26c-69.38,278.78 -538.76,128.08 -690.94,90.29l123.28 -494.2c152.17,37.99 640.17,113.17 567.67,403.91zm69.43 -723.3c-63.29,253.58 -453.96,124.75 -580.69,93.16l111.77 -448.21c126.73,31.59 534.85,90.55 468.94,355.05l-0.02 0z" style=" transform: rotate(347deg); transform-origin: center; "/></svg>' ) ); string memory encodedSvg = Base64.encode(bytes(rawSvg)); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( "{", '"name":"Bitcoin #', tokenId.toString(), '",', '"image": "', "data:image/svg+xml;base64,", encodedSvg, '",', '"attributes": [{"trait_type": "Bitcoin", "value": "To The Moon!!"' ) ) ) ) ); } function flipSale() external onlyOwner { mintEnabled = !mintEnabled; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setMaxFreeAmount(uint256 _amount) external onlyOwner { maxFreeAmount = _amount; } function setMaxFreePerWallet(uint256 _amount) external onlyOwner { maxFreePerWallet = _amount; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } //========================================================================= // OPENSEA-PROVIDED OVERRIDES for OPERATOR FILTER REGISTRY //========================================================================= function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed( address registrant, address operator ) external view returns (bool); function register(address registrant) external; function registerAndSubscribe( address registrant, address subscription ) external; function registerAndCopyEntries( address registrant, address registrantToCopy ) external; function updateOperator( address registrant, address operator, bool filtered ) external; function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; function subscribe( address registrant, address registrantToSubscribe ) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers( address registrant ) external returns (address[] memory); function subscriberAt( address registrant, uint256 index ) external returns (address); function copyEntriesOf( address registrant, address registrantToCopy ) external; function isOperatorFiltered( address registrant, address operator ) external returns (bool); function isCodeHashOfFiltered( address registrant, address operatorWithCode ) external returns (bool); function isCodeHashFiltered( address registrant, bytes32 codeHash ) external returns (bool); function filteredOperators( address addr ) external returns (address[] memory); function filteredCodeHashes( address addr ) external returns (bytes32[] memory); function filteredOperatorAt( address registrant, uint256 index ) external returns (address); function filteredCodeHashAt( address registrant, uint256 index ) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe( address(this), subscriptionOrRegistrantToCopy ); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries( address(this), subscriptionOrRegistrantToCopy ); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), operator ) ) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamReserved","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526115b3600955610613600a556005600b5566038d7ea4c68000600c556014600d556064600e556064600f556001601060006101000a81548160ff0219169083151502179055503480156200005757600080fd5b506040518060400160405280601081526020017f426974636f696e2050726573656e7473000000000000000000000000000000008152506040518060400160405280600781526020017f426974636f696e00000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d057801562000196576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200015c92919062000906565b600060405180830381600087803b1580156200017757600080fd5b505af11580156200018c573d6000803e3d6000fd5b50505050620002cf565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000250576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021692919062000906565b600060405180830381600087803b1580156200023157600080fd5b505af115801562000246573d6000803e3d6000fd5b50505050620002ce565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000299919062000933565b600060405180830381600087803b158015620002b457600080fd5b505af1158015620002c9573d6000803e3d6000fd5b505050505b5b5b50508160029081620002e3919062000bca565b508060039081620002f5919062000bca565b50620003066200034760201b60201c565b60008190555050506200032e620003226200034c60201b60201c565b6200035460201b60201c565b620003413360646200041a60201b60201c565b62000e44565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200043c8282604051806020016040528060008152506200044060201b60201c565b5050565b620004528383620004f160201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620004ec57600080549050600083820390505b6200049b6000868380600101945086620006d860201b60201c565b620004d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000480578160005414620004e957600080fd5b50505b505050565b6000805490506000820362000532576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200054760008483856200083960201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620005d683620005b860008660006200083f60201b60201c565b620005c9856200086f60201b60201c565b176200087f60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200067957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200063c565b5060008203620006b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620006d36000848385620008aa60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000706620008b060201b60201c565b8786866040518563ffffffff1660e01b81526004016200072a949392919062000d5c565b6020604051808303816000875af19250505080156200076957506040513d601f19601f8201168201806040525081019062000766919062000e12565b60015b620007e6573d80600081146200079c576040519150601f19603f3d011682016040523d82523d6000602084013e620007a1565b606091505b506000815103620007de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200085e868684620008b860201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008ee82620008c1565b9050919050565b6200090081620008e1565b82525050565b60006040820190506200091d6000830185620008f5565b6200092c6020830184620008f5565b9392505050565b60006020820190506200094a6000830184620008f5565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009d257607f821691505b602082108103620009e857620009e76200098a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a13565b62000a5e868362000a13565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000aab62000aa562000a9f8462000a76565b62000a80565b62000a76565b9050919050565b6000819050919050565b62000ac78362000a8a565b62000adf62000ad68262000ab2565b84845462000a20565b825550505050565b600090565b62000af662000ae7565b62000b0381848462000abc565b505050565b5b8181101562000b2b5762000b1f60008262000aec565b60018101905062000b09565b5050565b601f82111562000b7a5762000b4481620009ee565b62000b4f8462000a03565b8101602085101562000b5f578190505b62000b7762000b6e8562000a03565b83018262000b08565b50505b505050565b600082821c905092915050565b600062000b9f6000198460080262000b7f565b1980831691505092915050565b600062000bba838362000b8c565b9150826002028217905092915050565b62000bd58262000950565b67ffffffffffffffff81111562000bf15762000bf06200095b565b5b62000bfd8254620009b9565b62000c0a82828562000b2f565b600060209050601f83116001811462000c42576000841562000c2d578287015190505b62000c39858262000bac565b86555062000ca9565b601f19841662000c5286620009ee565b60005b8281101562000c7c5784890151825560018201915060208501945060208101905062000c55565b8683101562000c9c578489015162000c98601f89168262000b8c565b8355505b6001600288020188555050505b505050505050565b62000cbc8162000a76565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000cfe57808201518184015260208101905062000ce1565b60008484015250505050565b6000601f19601f8301169050919050565b600062000d288262000cc2565b62000d34818562000ccd565b935062000d4681856020860162000cde565b62000d518162000d0a565b840191505092915050565b600060808201905062000d736000830187620008f5565b62000d826020830186620008f5565b62000d91604083018562000cb1565b818103606083015262000da5818462000d1b565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000dec8162000db5565b811462000df857600080fd5b50565b60008151905062000e0c8162000de1565b92915050565b60006020828403121562000e2b5762000e2a62000db0565b5b600062000e3b8482850162000dfb565b91505092915050565b6144428062000e546000396000f3fe6080604052600436106101f95760003560e01c80637ba5e6211161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610692578063e985e9c5146106bd578063f2fde38b146106fa578063f892c6e214610723578063f968adbe1461074e576101f9565b8063b88d4fde146105f7578063ba7a86b814610613578063c87b56dd1461062a578063d123973014610667576101f9565b8063a035b1fe116100dc578063a035b1fe1461055c578063a0712d6814610587578063a22cb465146105a3578063a7027357146105cc576101f9565b80637ba5e621146104c65780638da5cb5b146104dd57806391b7f5ed1461050857806395d89b4114610531576101f9565b80633ccfd60b116101905780636352211e1161015f5780636352211e146103e15780636c0360eb1461041e5780636d7c4a4b1461044957806370a0823114610472578063715018a6146104af576101f9565b80633ccfd60b1461035a57806342842e0e14610371578063453c23101461038d57806355f804b3146103b8576101f9565b80630c23bb3f116101cc5780630c23bb3f146102bf57806318160ddd146102e857806323b872dd1461031357806336f5b9a31461032f576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a45565b610779565b6040516102329190612a8d565b60405180910390f35b34801561024757600080fd5b5061025061080b565b60405161025d9190612b38565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612b90565b61089d565b60405161029a9190612bfe565b60405180910390f35b6102bd60048036038101906102b89190612c45565b61091c565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612b90565b610935565b005b3480156102f457600080fd5b506102fd610947565b60405161030a9190612c94565b60405180910390f35b61032d60048036038101906103289190612caf565b61095e565b005b34801561033b57600080fd5b506103446109ad565b6040516103519190612c94565b60405180910390f35b34801561036657600080fd5b5061036f6109b3565b005b61038b60048036038101906103869190612caf565b610a6a565b005b34801561039957600080fd5b506103a2610ab9565b6040516103af9190612c94565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190612e37565b610abf565b005b3480156103ed57600080fd5b5061040860048036038101906104039190612b90565b610ada565b6040516104159190612bfe565b60405180910390f35b34801561042a57600080fd5b50610433610aec565b6040516104409190612b38565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612b90565b610b7a565b005b34801561047e57600080fd5b5061049960048036038101906104949190612e80565b610b8c565b6040516104a69190612c94565b60405180910390f35b3480156104bb57600080fd5b506104c4610c44565b005b3480156104d257600080fd5b506104db610c58565b005b3480156104e957600080fd5b506104f2610c8c565b6040516104ff9190612bfe565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612b90565b610cb6565b005b34801561053d57600080fd5b50610546610cc8565b6040516105539190612b38565b60405180910390f35b34801561056857600080fd5b50610571610d5a565b60405161057e9190612c94565b60405180910390f35b6105a1600480360381019061059c9190612b90565b610d60565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190612ed9565b610f36565b005b3480156105d857600080fd5b506105e1610f4f565b6040516105ee9190612c94565b60405180910390f35b610611600480360381019061060c9190612fba565b610f55565b005b34801561061f57600080fd5b50610628610fa6565b005b34801561063657600080fd5b50610651600480360381019061064c9190612b90565b610fbc565b60405161065e9190612b38565b60405180910390f35b34801561067357600080fd5b5061067c61167f565b6040516106899190612a8d565b60405180910390f35b34801561069e57600080fd5b506106a7611692565b6040516106b49190612c94565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df919061303d565b611698565b6040516106f19190612a8d565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612e80565b61172c565b005b34801561072f57600080fd5b506107386117af565b6040516107459190612c94565b60405180910390f35b34801561075a57600080fd5b506107636117b5565b6040516107709190612c94565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108045750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461081a906130ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610846906130ac565b80156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b60006108a8826117bb565b6108de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816109268161181a565b6109308383611917565b505050565b61093d611a5b565b80600a8190555050565b6000610951611ad9565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099c5761099b3361181a565b5b6109a7848484611ade565b50505050565b600f5481565b6109bb611a5b565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516109e19061310e565b60006040518083038185875af1925050503d8060008114610a1e576040519150601f19603f3d011682016040523d82523d6000602084013e610a23565b606091505b5050905080610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e9061316f565b60405180910390fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa857610aa73361181a565b5b610ab3848484611e00565b50505050565b600e5481565b610ac7611a5b565b8060119081610ad6919061333b565b5050565b6000610ae582611e20565b9050919050565b60118054610af9906130ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610b25906130ac565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b505050505081565b610b82611a5b565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c4c611a5b565b610c566000611eec565b565b610c60611a5b565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cbe611a5b565b80600c8190555050565b606060038054610cd7906130ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d03906130ac565b8015610d505780601f10610d2557610100808354040283529160200191610d50565b820191906000526020600020905b815481529060010190602001808311610d3357829003601f168201915b5050505050905090565b600c5481565b601060009054906101000a900460ff16610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690613459565b60405180910390fd5b6001600954610dbe91906134a8565b81610dc7610947565b610dd191906134a8565b10610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613528565b60405180910390fd5b6000600c5490506000600e549050600a54610e2a610947565b108015610e405750600b54610e3e33611fb2565b105b8015610e4e5750600b548311155b15610e5d5760009150600b5490505b8083610e6833611fb2565b610e7291906134a8565b1115610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613594565b60405180910390fd5b60008390506000610ec333611fb2565b03610ed857600184610ed591906135b4565b90505b8281610ee491906135e8565b341015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613676565b60405180910390fd5b610f303385612009565b50505050565b81610f408161181a565b610f4a8383612027565b505050565b600b5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f9357610f923361181a565b5b610f9f85858585612132565b5050505050565b610fae611a5b565b610fba33600f54612009565b565b606060006040518061034001604052806040518060400160405280600781526020017f234637393331410000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233436383835660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233330333232650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236336616236660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233736333136340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233162333837650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233333366137350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233766373636640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236565656565650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234643453734430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236664636365350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236264376562650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030626661300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236664376636660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236463306162340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236634366139620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236430663430300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233962313966350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236666613330300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236536303034390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233832623662390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236233643466660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030666666660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233062623466660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233335643433350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233631666637350000000000000000000000000000000000000000000000000081525081525090506000816019856115da91906136c5565b601a81106115eb576115ea6136f6565b5b602002015190506000816040516020016116059190613e2f565b60405160208183030381529060405290506000611621826121a5565b905061165561162f8761231d565b82604051602001611641929190614070565b6040516020818303038152906040526121a5565b604051602001611665919061412d565b604051602081830303815290604052945050505050919050565b601060009054906101000a900460ff1681565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611734611a5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906141c1565b60405180910390fd5b6117ac81611eec565b50565b600a5481565b600d5481565b6000816117c6611ad9565b111580156117d5575060005482105b8015611813575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611914576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016118919291906141e1565b602060405180830381865afa1580156118ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d2919061421f565b61191357806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161190a9190612bfe565b60405180910390fd5b5b50565b600061192282610ada565b90508073ffffffffffffffffffffffffffffffffffffffff166119436123eb565b73ffffffffffffffffffffffffffffffffffffffff16146119a65761196f8161196a6123eb565b611698565b6119a5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611a636123f3565b73ffffffffffffffffffffffffffffffffffffffff16611a81610c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614298565b60405180910390fd5b565b600090565b6000611ae982611e20565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b50576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b5c846123fb565b91509150611b728187611b6d6123eb565b612422565b611bbe57611b8786611b826123eb565b611698565b611bbd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c318686866001612466565b8015611c3c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d0a85611ce688888761246c565b7c020000000000000000000000000000000000000000000000000000000017612494565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611d905760006001850190506000600460008381526020019081526020016000205403611d8e576000548114611d8d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611df886868660016124bf565b505050505050565b611e1b83838360405180602001604052806000815250610f55565b505050565b60008082905080611e2f611ad9565b11611eb557600054811015611eb45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611eb2575b60008103611ea8576004600083600190039350838152602001908152602001600020549050611e7e565b8092505050611ee7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120238282604051806020016040528060008152506124c5565b5050565b80600760006120346123eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e16123eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121269190612a8d565b60405180910390a35050565b61213d84848461095e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461219f5761216884848484612562565b61219e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008251036121c757604051806020016040528060008152509050612318565b60006040518060600160405280604081526020016143cd60409139905060006003600285516121f691906134a8565b61220091906142b8565b600461220c91906135e8565b9050600060208261221d91906134a8565b67ffffffffffffffff81111561223657612235612d0c565b5b6040519080825280601f01601f1916602001820160405280156122685781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156122d7576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182536001820191505061227c565b6003895106600181146122f157600281146123015761230c565b613d3d60f01b600283035261230c565b603d60f81b60018303525b50505050508093505050505b919050565b60606000600161232c846126b2565b01905060008167ffffffffffffffff81111561234b5761234a612d0c565b5b6040519080825280601f01601f19166020018201604052801561237d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156123e0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123d4576123d3613696565b5b0494506000850361238b575b819350505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612483868684612805565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6124cf838361280e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461255d57600080549050600083820390505b61250f6000868380600101945086612562565b612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124fc57816000541461255a57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125886123eb565b8786866040518563ffffffff1660e01b81526004016125aa949392919061433e565b6020604051808303816000875af19250505080156125e657506040513d601f19601f820116820180604052508101906125e3919061439f565b60015b61265f573d8060008114612616576040519150601f19603f3d011682016040523d82523d6000602084013e61261b565b606091505b506000815103612657576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612710577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161270657612705613696565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061274d576d04ee2d6d415b85acef8100000000838161274357612742613696565b5b0492506020810190505b662386f26fc10000831061277c57662386f26fc10000838161277257612771613696565b5b0492506010810190505b6305f5e10083106127a5576305f5e100838161279b5761279a613696565b5b0492506008810190505b61271083106127ca5761271083816127c0576127bf613696565b5b0492506004810190505b606483106127ed57606483816127e3576127e2613696565b5b0492506002810190505b600a83106127fc576001810190505b80915050919050565b60009392505050565b6000805490506000820361284e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285b6000848385612466565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128d2836128c3600086600061246c565b6128cc856129c9565b17612494565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461297357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612938565b50600082036129ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129c460008483856124bf565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a22816129ed565b8114612a2d57600080fd5b50565b600081359050612a3f81612a19565b92915050565b600060208284031215612a5b57612a5a6129e3565b5b6000612a6984828501612a30565b91505092915050565b60008115159050919050565b612a8781612a72565b82525050565b6000602082019050612aa26000830184612a7e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ae2578082015181840152602081019050612ac7565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b0a82612aa8565b612b148185612ab3565b9350612b24818560208601612ac4565b612b2d81612aee565b840191505092915050565b60006020820190508181036000830152612b528184612aff565b905092915050565b6000819050919050565b612b6d81612b5a565b8114612b7857600080fd5b50565b600081359050612b8a81612b64565b92915050565b600060208284031215612ba657612ba56129e3565b5b6000612bb484828501612b7b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612be882612bbd565b9050919050565b612bf881612bdd565b82525050565b6000602082019050612c136000830184612bef565b92915050565b612c2281612bdd565b8114612c2d57600080fd5b50565b600081359050612c3f81612c19565b92915050565b60008060408385031215612c5c57612c5b6129e3565b5b6000612c6a85828601612c30565b9250506020612c7b85828601612b7b565b9150509250929050565b612c8e81612b5a565b82525050565b6000602082019050612ca96000830184612c85565b92915050565b600080600060608486031215612cc857612cc76129e3565b5b6000612cd686828701612c30565b9350506020612ce786828701612c30565b9250506040612cf886828701612b7b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4482612aee565b810181811067ffffffffffffffff82111715612d6357612d62612d0c565b5b80604052505050565b6000612d766129d9565b9050612d828282612d3b565b919050565b600067ffffffffffffffff821115612da257612da1612d0c565b5b612dab82612aee565b9050602081019050919050565b82818337600083830152505050565b6000612dda612dd584612d87565b612d6c565b905082815260208101848484011115612df657612df5612d07565b5b612e01848285612db8565b509392505050565b600082601f830112612e1e57612e1d612d02565b5b8135612e2e848260208601612dc7565b91505092915050565b600060208284031215612e4d57612e4c6129e3565b5b600082013567ffffffffffffffff811115612e6b57612e6a6129e8565b5b612e7784828501612e09565b91505092915050565b600060208284031215612e9657612e956129e3565b5b6000612ea484828501612c30565b91505092915050565b612eb681612a72565b8114612ec157600080fd5b50565b600081359050612ed381612ead565b92915050565b60008060408385031215612ef057612eef6129e3565b5b6000612efe85828601612c30565b9250506020612f0f85828601612ec4565b9150509250929050565b600067ffffffffffffffff821115612f3457612f33612d0c565b5b612f3d82612aee565b9050602081019050919050565b6000612f5d612f5884612f19565b612d6c565b905082815260208101848484011115612f7957612f78612d07565b5b612f84848285612db8565b509392505050565b600082601f830112612fa157612fa0612d02565b5b8135612fb1848260208601612f4a565b91505092915050565b60008060008060808587031215612fd457612fd36129e3565b5b6000612fe287828801612c30565b9450506020612ff387828801612c30565b935050604061300487828801612b7b565b925050606085013567ffffffffffffffff811115613025576130246129e8565b5b61303187828801612f8c565b91505092959194509250565b60008060408385031215613054576130536129e3565b5b600061306285828601612c30565b925050602061307385828601612c30565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130c457607f821691505b6020821081036130d7576130d661307d565b5b50919050565b600081905092915050565b50565b60006130f86000836130dd565b9150613103826130e8565b600082019050919050565b6000613119826130eb565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613159601083612ab3565b915061316482613123565b602082019050919050565b600060208201905081810360008301526131888161314c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131b4565b6131fb86836131b4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061323861323361322e84612b5a565b613213565b612b5a565b9050919050565b6000819050919050565b6132528361321d565b61326661325e8261323f565b8484546131c1565b825550505050565b600090565b61327b61326e565b613286818484613249565b505050565b5b818110156132aa5761329f600082613273565b60018101905061328c565b5050565b601f8211156132ef576132c08161318f565b6132c9846131a4565b810160208510156132d8578190505b6132ec6132e4856131a4565b83018261328b565b50505b505050565b600082821c905092915050565b6000613312600019846008026132f4565b1980831691505092915050565b600061332b8383613301565b9150826002028217905092915050565b61334482612aa8565b67ffffffffffffffff81111561335d5761335c612d0c565b5b61336782546130ac565b6133728282856132ae565b600060209050601f8311600181146133a55760008415613393578287015190505b61339d858261331f565b865550613405565b601f1984166133b38661318f565b60005b828110156133db578489015182556001820191506020850194506020810190506133b6565b868310156133f857848901516133f4601f891682613301565b8355505b6001600288020188555050505b505050505050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000613443601883612ab3565b915061344e8261340d565b602082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134b382612b5a565b91506134be83612b5a565b92508282019050808211156134d6576134d5613479565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613512600783612ab3565b915061351d826134dc565b602082019050919050565b6000602082019050818103600083015261354181613505565b9050919050565b7f4d6178207065722077616c6c6574000000000000000000000000000000000000600082015250565b600061357e600e83612ab3565b915061358982613548565b602082019050919050565b600060208201905081810360008301526135ad81613571565b9050919050565b60006135bf82612b5a565b91506135ca83612b5a565b92508282039050818111156135e2576135e1613479565b5b92915050565b60006135f382612b5a565b91506135fe83612b5a565b925082820261360c81612b5a565b9150828204841483151761362357613622613479565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613660601d83612ab3565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136d082612b5a565b91506136db83612b5a565b9250826136eb576136ea613696565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d223130303022206865696768743d2231303060208201527f30222076657273696f6e3d22312e31222076696577426f783d2230203020343060408201527f39312e323720343039312e3733223e3c726563742077696474683d223130302560608201527f22206865696768743d2231303025222066696c6c3d2200000000000000000000608082015250565b60006137fe609683613725565b915061380982613730565b609682019050919050565b600061381f82612aa8565b6138298185613725565b9350613839818560208601612ac4565b80840191505092915050565b7f222f3e3c706174682066696c6c3d227768697465222066696c6c2d72756c653d60008201527f226e6f6e7a65726f2220643d224d323934372e373720313735342e333863343060208201527f2e37322c2d3237322e3236202d3136362e35362c2d3431382e3631202d34353060408201527f2c2d3531362e32346c39312e3935202d3336382e38202d3232342e35202d353560608201527f2e3934202d38392e3531203335392e3039632d35392e30322c2d31342e37322060808201527f2d3131392e36332c2d32382e3539202d3137392e38372c2d34322e33346c393060a08201527f2e3136202d3336312e3436202d3232342e3336202d35352e3934202d3932203360c08201527f36382e3638632d34382e38342c2d31312e3132202d39362e38312c2d32322e3160e08201527f31202d3134332e33352c2d33332e36396c302e3236202d312e3136202d3330396101008201527f2e3539202d37372e3331202d35392e3732203233392e373863302c30203136366101208201527f2e35362c33382e3138203136332e30352c34302e35332039302e39312c32322e6101408201527f3639203130372e33352c38322e3837203130342e36322c3133302e35376c2d316101608201527f30342e3734203432302e313563362e32362c312e35392031342e33382c332e386101808201527f392032332e33342c372e3439202d372e34392c2d312e3836202d31352e34362c6101a08201527f2d332e3839202d32332e37332c2d352e38376c2d3134362e3831203538382e356101c08201527f37632d31312e31312c32372e3632202d33392e33312c36392e3037202d3130326101e08201527f2e38372c35332e333320322e32352c332e3236202d3136332e31372c2d34302e6102008201527f3732202d3136332e31372c2d34302e37326c2d3131312e3436203235362e39386102208201527f203239322e31352037322e38336335342e33352c31332e3633203130372e36316102408201527f2c32372e3839203136302e30362c34312e336c2d39322e39203337332e3033206102608201527f3232342e32342035352e3934203932202d3336392e30376336312e32362c31366102808201527f2e3633203132302e37312c33312e3937203137382e39312c34362e34336c2d396102a08201527f312e3639203336372e3333203232342e35312035352e39342039322e3839202d6102c08201527f3337322e3333633338322e38322c37322e3435203637302e36372c34332e32346102e08201527f203739312e38332c2d3330332e30322039372e36332c2d3237382e3738202d346103008201527f2e38362c2d3433392e3538202d3230362e32362c2d3534342e3434203134362e6103208201527f36392c2d33332e3833203235372e31382c2d3133302e3331203238362e36342c6103408201527f2d3332392e36316c2d302e3037202d302e30357a6d2d3531322e3933203731396103608201527f2e3236632d36392e33382c3237382e3738202d3533382e37362c3132382e30386103808201527f202d3639302e39342c39302e32396c3132332e3238202d3439342e32633135326103a08201527f2e31372c33372e3939203634302e31372c3131332e3137203536372e36372c346103c08201527f30332e39317a6d36392e3433202d3732332e33632d36332e32392c3235332e356103e08201527f38202d3435332e39362c3132342e3735202d3538302e36392c39332e31366c316104008201527f31312e3737202d3434382e3231633132362e37332c33312e3539203533342e386104208201527f352c39302e3535203436382e39342c3335352e30356c2d302e303220307a22206104408201527f7374796c653d22262331303b7472616e73666f726d3a20726f746174652833346104608201527f37646567293b262331303b202020207472616e73666f726d2d6f726967696e3a6104808201527f2063656e7465723b262331303b222f3e3c2f7376673e000000000000000000006104a082015250565b6000613e186104b683613725565b9150613e2382613845565b6104b682019050919050565b6000613e3a826137f1565b9150613e468284613814565b9150613e5182613e0a565b915081905092915050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613e92600183613725565b9150613e9d82613e5c565b600182019050919050565b7f226e616d65223a22426974636f696e2023000000000000000000000000000000600082015250565b6000613ede601183613725565b9150613ee982613ea8565b601182019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b6000613f2a600283613725565b9150613f3582613ef4565b600282019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b6000613f76600a83613725565b9150613f8182613f40565b600a82019050919050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b6000613fc2601a83613725565b9150613fcd82613f8c565b601a82019050919050565b7f2261747472696275746573223a205b7b2274726169745f74797065223a20224260008201527f6974636f696e222c202276616c7565223a2022546f20546865204d6f6f6e212160208201527f2200000000000000000000000000000000000000000000000000000000000000604082015250565b600061405a604183613725565b915061406582613fd8565b604182019050919050565b600061407b82613e85565b915061408682613ed1565b91506140928285613814565b915061409d82613f1d565b91506140a882613f69565b91506140b382613fb5565b91506140bf8284613814565b91506140ca82613f1d565b91506140d58261404d565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614117601d83613725565b9150614122826140e1565b601d82019050919050565b60006141388261410a565b91506141448284613814565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141ab602683612ab3565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b60006040820190506141f66000830185612bef565b6142036020830184612bef565b9392505050565b60008151905061421981612ead565b92915050565b600060208284031215614235576142346129e3565b5b60006142438482850161420a565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614282602083612ab3565b915061428d8261424c565b602082019050919050565b600060208201905081810360008301526142b181614275565b9050919050565b60006142c382612b5a565b91506142ce83612b5a565b9250826142de576142dd613696565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000614310826142e9565b61431a81856142f4565b935061432a818560208601612ac4565b61433381612aee565b840191505092915050565b60006080820190506143536000830187612bef565b6143606020830186612bef565b61436d6040830185612c85565b818103606083015261437f8184614305565b905095945050505050565b60008151905061439981612a19565b92915050565b6000602082840312156143b5576143b46129e3565b5b60006143c38482850161438a565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122003cdac90347225d078f36850bc486b98170579616327f01ec219e4fc651e326264736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80637ba5e6211161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610692578063e985e9c5146106bd578063f2fde38b146106fa578063f892c6e214610723578063f968adbe1461074e576101f9565b8063b88d4fde146105f7578063ba7a86b814610613578063c87b56dd1461062a578063d123973014610667576101f9565b8063a035b1fe116100dc578063a035b1fe1461055c578063a0712d6814610587578063a22cb465146105a3578063a7027357146105cc576101f9565b80637ba5e621146104c65780638da5cb5b146104dd57806391b7f5ed1461050857806395d89b4114610531576101f9565b80633ccfd60b116101905780636352211e1161015f5780636352211e146103e15780636c0360eb1461041e5780636d7c4a4b1461044957806370a0823114610472578063715018a6146104af576101f9565b80633ccfd60b1461035a57806342842e0e14610371578063453c23101461038d57806355f804b3146103b8576101f9565b80630c23bb3f116101cc5780630c23bb3f146102bf57806318160ddd146102e857806323b872dd1461031357806336f5b9a31461032f576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a45565b610779565b6040516102329190612a8d565b60405180910390f35b34801561024757600080fd5b5061025061080b565b60405161025d9190612b38565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612b90565b61089d565b60405161029a9190612bfe565b60405180910390f35b6102bd60048036038101906102b89190612c45565b61091c565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612b90565b610935565b005b3480156102f457600080fd5b506102fd610947565b60405161030a9190612c94565b60405180910390f35b61032d60048036038101906103289190612caf565b61095e565b005b34801561033b57600080fd5b506103446109ad565b6040516103519190612c94565b60405180910390f35b34801561036657600080fd5b5061036f6109b3565b005b61038b60048036038101906103869190612caf565b610a6a565b005b34801561039957600080fd5b506103a2610ab9565b6040516103af9190612c94565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190612e37565b610abf565b005b3480156103ed57600080fd5b5061040860048036038101906104039190612b90565b610ada565b6040516104159190612bfe565b60405180910390f35b34801561042a57600080fd5b50610433610aec565b6040516104409190612b38565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612b90565b610b7a565b005b34801561047e57600080fd5b5061049960048036038101906104949190612e80565b610b8c565b6040516104a69190612c94565b60405180910390f35b3480156104bb57600080fd5b506104c4610c44565b005b3480156104d257600080fd5b506104db610c58565b005b3480156104e957600080fd5b506104f2610c8c565b6040516104ff9190612bfe565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612b90565b610cb6565b005b34801561053d57600080fd5b50610546610cc8565b6040516105539190612b38565b60405180910390f35b34801561056857600080fd5b50610571610d5a565b60405161057e9190612c94565b60405180910390f35b6105a1600480360381019061059c9190612b90565b610d60565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190612ed9565b610f36565b005b3480156105d857600080fd5b506105e1610f4f565b6040516105ee9190612c94565b60405180910390f35b610611600480360381019061060c9190612fba565b610f55565b005b34801561061f57600080fd5b50610628610fa6565b005b34801561063657600080fd5b50610651600480360381019061064c9190612b90565b610fbc565b60405161065e9190612b38565b60405180910390f35b34801561067357600080fd5b5061067c61167f565b6040516106899190612a8d565b60405180910390f35b34801561069e57600080fd5b506106a7611692565b6040516106b49190612c94565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df919061303d565b611698565b6040516106f19190612a8d565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612e80565b61172c565b005b34801561072f57600080fd5b506107386117af565b6040516107459190612c94565b60405180910390f35b34801561075a57600080fd5b506107636117b5565b6040516107709190612c94565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108045750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461081a906130ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610846906130ac565b80156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b60006108a8826117bb565b6108de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816109268161181a565b6109308383611917565b505050565b61093d611a5b565b80600a8190555050565b6000610951611ad9565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099c5761099b3361181a565b5b6109a7848484611ade565b50505050565b600f5481565b6109bb611a5b565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516109e19061310e565b60006040518083038185875af1925050503d8060008114610a1e576040519150601f19603f3d011682016040523d82523d6000602084013e610a23565b606091505b5050905080610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e9061316f565b60405180910390fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa857610aa73361181a565b5b610ab3848484611e00565b50505050565b600e5481565b610ac7611a5b565b8060119081610ad6919061333b565b5050565b6000610ae582611e20565b9050919050565b60118054610af9906130ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610b25906130ac565b8015610b725780601f10610b4757610100808354040283529160200191610b72565b820191906000526020600020905b815481529060010190602001808311610b5557829003601f168201915b505050505081565b610b82611a5b565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c4c611a5b565b610c566000611eec565b565b610c60611a5b565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cbe611a5b565b80600c8190555050565b606060038054610cd7906130ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d03906130ac565b8015610d505780601f10610d2557610100808354040283529160200191610d50565b820191906000526020600020905b815481529060010190602001808311610d3357829003601f168201915b5050505050905090565b600c5481565b601060009054906101000a900460ff16610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690613459565b60405180910390fd5b6001600954610dbe91906134a8565b81610dc7610947565b610dd191906134a8565b10610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613528565b60405180910390fd5b6000600c5490506000600e549050600a54610e2a610947565b108015610e405750600b54610e3e33611fb2565b105b8015610e4e5750600b548311155b15610e5d5760009150600b5490505b8083610e6833611fb2565b610e7291906134a8565b1115610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613594565b60405180910390fd5b60008390506000610ec333611fb2565b03610ed857600184610ed591906135b4565b90505b8281610ee491906135e8565b341015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90613676565b60405180910390fd5b610f303385612009565b50505050565b81610f408161181a565b610f4a8383612027565b505050565b600b5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f9357610f923361181a565b5b610f9f85858585612132565b5050505050565b610fae611a5b565b610fba33600f54612009565b565b606060006040518061034001604052806040518060400160405280600781526020017f234637393331410000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233436383835660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233330333232650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236336616236660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233736333136340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233162333837650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233333366137350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233766373636640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236565656565650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234643453734430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236664636365350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236264376562650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030626661300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236664376636660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236463306162340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236634366139620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236430663430300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233962313966350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236666613330300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236536303034390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233832623662390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236233643466660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030666666660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233062623466660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233335643433350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233631666637350000000000000000000000000000000000000000000000000081525081525090506000816019856115da91906136c5565b601a81106115eb576115ea6136f6565b5b602002015190506000816040516020016116059190613e2f565b60405160208183030381529060405290506000611621826121a5565b905061165561162f8761231d565b82604051602001611641929190614070565b6040516020818303038152906040526121a5565b604051602001611665919061412d565b604051602081830303815290604052945050505050919050565b601060009054906101000a900460ff1681565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611734611a5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906141c1565b60405180910390fd5b6117ac81611eec565b50565b600a5481565b600d5481565b6000816117c6611ad9565b111580156117d5575060005482105b8015611813575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611914576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016118919291906141e1565b602060405180830381865afa1580156118ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d2919061421f565b61191357806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161190a9190612bfe565b60405180910390fd5b5b50565b600061192282610ada565b90508073ffffffffffffffffffffffffffffffffffffffff166119436123eb565b73ffffffffffffffffffffffffffffffffffffffff16146119a65761196f8161196a6123eb565b611698565b6119a5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611a636123f3565b73ffffffffffffffffffffffffffffffffffffffff16611a81610c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614298565b60405180910390fd5b565b600090565b6000611ae982611e20565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b50576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b5c846123fb565b91509150611b728187611b6d6123eb565b612422565b611bbe57611b8786611b826123eb565b611698565b611bbd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c318686866001612466565b8015611c3c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611d0a85611ce688888761246c565b7c020000000000000000000000000000000000000000000000000000000017612494565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611d905760006001850190506000600460008381526020019081526020016000205403611d8e576000548114611d8d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611df886868660016124bf565b505050505050565b611e1b83838360405180602001604052806000815250610f55565b505050565b60008082905080611e2f611ad9565b11611eb557600054811015611eb45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611eb2575b60008103611ea8576004600083600190039350838152602001908152602001600020549050611e7e565b8092505050611ee7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120238282604051806020016040528060008152506124c5565b5050565b80600760006120346123eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120e16123eb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121269190612a8d565b60405180910390a35050565b61213d84848461095e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461219f5761216884848484612562565b61219e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008251036121c757604051806020016040528060008152509050612318565b60006040518060600160405280604081526020016143cd60409139905060006003600285516121f691906134a8565b61220091906142b8565b600461220c91906135e8565b9050600060208261221d91906134a8565b67ffffffffffffffff81111561223657612235612d0c565b5b6040519080825280601f01601f1916602001820160405280156122685781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156122d7576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f811685015182536001820191505061227c565b6003895106600181146122f157600281146123015761230c565b613d3d60f01b600283035261230c565b603d60f81b60018303525b50505050508093505050505b919050565b60606000600161232c846126b2565b01905060008167ffffffffffffffff81111561234b5761234a612d0c565b5b6040519080825280601f01601f19166020018201604052801561237d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156123e0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123d4576123d3613696565b5b0494506000850361238b575b819350505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612483868684612805565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6124cf838361280e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461255d57600080549050600083820390505b61250f6000868380600101945086612562565b612545576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124fc57816000541461255a57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125886123eb565b8786866040518563ffffffff1660e01b81526004016125aa949392919061433e565b6020604051808303816000875af19250505080156125e657506040513d601f19601f820116820180604052508101906125e3919061439f565b60015b61265f573d8060008114612616576040519150601f19603f3d011682016040523d82523d6000602084013e61261b565b606091505b506000815103612657576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612710577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161270657612705613696565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061274d576d04ee2d6d415b85acef8100000000838161274357612742613696565b5b0492506020810190505b662386f26fc10000831061277c57662386f26fc10000838161277257612771613696565b5b0492506010810190505b6305f5e10083106127a5576305f5e100838161279b5761279a613696565b5b0492506008810190505b61271083106127ca5761271083816127c0576127bf613696565b5b0492506004810190505b606483106127ed57606483816127e3576127e2613696565b5b0492506002810190505b600a83106127fc576001810190505b80915050919050565b60009392505050565b6000805490506000820361284e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285b6000848385612466565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128d2836128c3600086600061246c565b6128cc856129c9565b17612494565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461297357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612938565b50600082036129ae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129c460008483856124bf565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a22816129ed565b8114612a2d57600080fd5b50565b600081359050612a3f81612a19565b92915050565b600060208284031215612a5b57612a5a6129e3565b5b6000612a6984828501612a30565b91505092915050565b60008115159050919050565b612a8781612a72565b82525050565b6000602082019050612aa26000830184612a7e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ae2578082015181840152602081019050612ac7565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b0a82612aa8565b612b148185612ab3565b9350612b24818560208601612ac4565b612b2d81612aee565b840191505092915050565b60006020820190508181036000830152612b528184612aff565b905092915050565b6000819050919050565b612b6d81612b5a565b8114612b7857600080fd5b50565b600081359050612b8a81612b64565b92915050565b600060208284031215612ba657612ba56129e3565b5b6000612bb484828501612b7b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612be882612bbd565b9050919050565b612bf881612bdd565b82525050565b6000602082019050612c136000830184612bef565b92915050565b612c2281612bdd565b8114612c2d57600080fd5b50565b600081359050612c3f81612c19565b92915050565b60008060408385031215612c5c57612c5b6129e3565b5b6000612c6a85828601612c30565b9250506020612c7b85828601612b7b565b9150509250929050565b612c8e81612b5a565b82525050565b6000602082019050612ca96000830184612c85565b92915050565b600080600060608486031215612cc857612cc76129e3565b5b6000612cd686828701612c30565b9350506020612ce786828701612c30565b9250506040612cf886828701612b7b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d4482612aee565b810181811067ffffffffffffffff82111715612d6357612d62612d0c565b5b80604052505050565b6000612d766129d9565b9050612d828282612d3b565b919050565b600067ffffffffffffffff821115612da257612da1612d0c565b5b612dab82612aee565b9050602081019050919050565b82818337600083830152505050565b6000612dda612dd584612d87565b612d6c565b905082815260208101848484011115612df657612df5612d07565b5b612e01848285612db8565b509392505050565b600082601f830112612e1e57612e1d612d02565b5b8135612e2e848260208601612dc7565b91505092915050565b600060208284031215612e4d57612e4c6129e3565b5b600082013567ffffffffffffffff811115612e6b57612e6a6129e8565b5b612e7784828501612e09565b91505092915050565b600060208284031215612e9657612e956129e3565b5b6000612ea484828501612c30565b91505092915050565b612eb681612a72565b8114612ec157600080fd5b50565b600081359050612ed381612ead565b92915050565b60008060408385031215612ef057612eef6129e3565b5b6000612efe85828601612c30565b9250506020612f0f85828601612ec4565b9150509250929050565b600067ffffffffffffffff821115612f3457612f33612d0c565b5b612f3d82612aee565b9050602081019050919050565b6000612f5d612f5884612f19565b612d6c565b905082815260208101848484011115612f7957612f78612d07565b5b612f84848285612db8565b509392505050565b600082601f830112612fa157612fa0612d02565b5b8135612fb1848260208601612f4a565b91505092915050565b60008060008060808587031215612fd457612fd36129e3565b5b6000612fe287828801612c30565b9450506020612ff387828801612c30565b935050604061300487828801612b7b565b925050606085013567ffffffffffffffff811115613025576130246129e8565b5b61303187828801612f8c565b91505092959194509250565b60008060408385031215613054576130536129e3565b5b600061306285828601612c30565b925050602061307385828601612c30565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130c457607f821691505b6020821081036130d7576130d661307d565b5b50919050565b600081905092915050565b50565b60006130f86000836130dd565b9150613103826130e8565b600082019050919050565b6000613119826130eb565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613159601083612ab3565b915061316482613123565b602082019050919050565b600060208201905081810360008301526131888161314c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131b4565b6131fb86836131b4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061323861323361322e84612b5a565b613213565b612b5a565b9050919050565b6000819050919050565b6132528361321d565b61326661325e8261323f565b8484546131c1565b825550505050565b600090565b61327b61326e565b613286818484613249565b505050565b5b818110156132aa5761329f600082613273565b60018101905061328c565b5050565b601f8211156132ef576132c08161318f565b6132c9846131a4565b810160208510156132d8578190505b6132ec6132e4856131a4565b83018261328b565b50505b505050565b600082821c905092915050565b6000613312600019846008026132f4565b1980831691505092915050565b600061332b8383613301565b9150826002028217905092915050565b61334482612aa8565b67ffffffffffffffff81111561335d5761335c612d0c565b5b61336782546130ac565b6133728282856132ae565b600060209050601f8311600181146133a55760008415613393578287015190505b61339d858261331f565b865550613405565b601f1984166133b38661318f565b60005b828110156133db578489015182556001820191506020850194506020810190506133b6565b868310156133f857848901516133f4601f891682613301565b8355505b6001600288020188555050505b505050505050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000613443601883612ab3565b915061344e8261340d565b602082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134b382612b5a565b91506134be83612b5a565b92508282019050808211156134d6576134d5613479565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613512600783612ab3565b915061351d826134dc565b602082019050919050565b6000602082019050818103600083015261354181613505565b9050919050565b7f4d6178207065722077616c6c6574000000000000000000000000000000000000600082015250565b600061357e600e83612ab3565b915061358982613548565b602082019050919050565b600060208201905081810360008301526135ad81613571565b9050919050565b60006135bf82612b5a565b91506135ca83612b5a565b92508282039050818111156135e2576135e1613479565b5b92915050565b60006135f382612b5a565b91506135fe83612b5a565b925082820261360c81612b5a565b9150828204841483151761362357613622613479565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613660601d83612ab3565b915061366b8261362a565b602082019050919050565b6000602082019050818103600083015261368f81613653565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136d082612b5a565b91506136db83612b5a565b9250826136eb576136ea613696565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d223130303022206865696768743d2231303060208201527f30222076657273696f6e3d22312e31222076696577426f783d2230203020343060408201527f39312e323720343039312e3733223e3c726563742077696474683d223130302560608201527f22206865696768743d2231303025222066696c6c3d2200000000000000000000608082015250565b60006137fe609683613725565b915061380982613730565b609682019050919050565b600061381f82612aa8565b6138298185613725565b9350613839818560208601612ac4565b80840191505092915050565b7f222f3e3c706174682066696c6c3d227768697465222066696c6c2d72756c653d60008201527f226e6f6e7a65726f2220643d224d323934372e373720313735342e333863343060208201527f2e37322c2d3237322e3236202d3136362e35362c2d3431382e3631202d34353060408201527f2c2d3531362e32346c39312e3935202d3336382e38202d3232342e35202d353560608201527f2e3934202d38392e3531203335392e3039632d35392e30322c2d31342e37322060808201527f2d3131392e36332c2d32382e3539202d3137392e38372c2d34322e33346c393060a08201527f2e3136202d3336312e3436202d3232342e3336202d35352e3934202d3932203360c08201527f36382e3638632d34382e38342c2d31312e3132202d39362e38312c2d32322e3160e08201527f31202d3134332e33352c2d33332e36396c302e3236202d312e3136202d3330396101008201527f2e3539202d37372e3331202d35392e3732203233392e373863302c30203136366101208201527f2e35362c33382e3138203136332e30352c34302e35332039302e39312c32322e6101408201527f3639203130372e33352c38322e3837203130342e36322c3133302e35376c2d316101608201527f30342e3734203432302e313563362e32362c312e35392031342e33382c332e386101808201527f392032332e33342c372e3439202d372e34392c2d312e3836202d31352e34362c6101a08201527f2d332e3839202d32332e37332c2d352e38376c2d3134362e3831203538382e356101c08201527f37632d31312e31312c32372e3632202d33392e33312c36392e3037202d3130326101e08201527f2e38372c35332e333320322e32352c332e3236202d3136332e31372c2d34302e6102008201527f3732202d3136332e31372c2d34302e37326c2d3131312e3436203235362e39386102208201527f203239322e31352037322e38336335342e33352c31332e3633203130372e36316102408201527f2c32372e3839203136302e30362c34312e336c2d39322e39203337332e3033206102608201527f3232342e32342035352e3934203932202d3336392e30376336312e32362c31366102808201527f2e3633203132302e37312c33312e3937203137382e39312c34362e34336c2d396102a08201527f312e3639203336372e3333203232342e35312035352e39342039322e3839202d6102c08201527f3337322e3333633338322e38322c37322e3435203637302e36372c34332e32346102e08201527f203739312e38332c2d3330332e30322039372e36332c2d3237382e3738202d346103008201527f2e38362c2d3433392e3538202d3230362e32362c2d3534342e3434203134362e6103208201527f36392c2d33332e3833203235372e31382c2d3133302e3331203238362e36342c6103408201527f2d3332392e36316c2d302e3037202d302e30357a6d2d3531322e3933203731396103608201527f2e3236632d36392e33382c3237382e3738202d3533382e37362c3132382e30386103808201527f202d3639302e39342c39302e32396c3132332e3238202d3439342e32633135326103a08201527f2e31372c33372e3939203634302e31372c3131332e3137203536372e36372c346103c08201527f30332e39317a6d36392e3433202d3732332e33632d36332e32392c3235332e356103e08201527f38202d3435332e39362c3132342e3735202d3538302e36392c39332e31366c316104008201527f31312e3737202d3434382e3231633132362e37332c33312e3539203533342e386104208201527f352c39302e3535203436382e39342c3335352e30356c2d302e303220307a22206104408201527f7374796c653d22262331303b7472616e73666f726d3a20726f746174652833346104608201527f37646567293b262331303b202020207472616e73666f726d2d6f726967696e3a6104808201527f2063656e7465723b262331303b222f3e3c2f7376673e000000000000000000006104a082015250565b6000613e186104b683613725565b9150613e2382613845565b6104b682019050919050565b6000613e3a826137f1565b9150613e468284613814565b9150613e5182613e0a565b915081905092915050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613e92600183613725565b9150613e9d82613e5c565b600182019050919050565b7f226e616d65223a22426974636f696e2023000000000000000000000000000000600082015250565b6000613ede601183613725565b9150613ee982613ea8565b601182019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b6000613f2a600283613725565b9150613f3582613ef4565b600282019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b6000613f76600a83613725565b9150613f8182613f40565b600a82019050919050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b6000613fc2601a83613725565b9150613fcd82613f8c565b601a82019050919050565b7f2261747472696275746573223a205b7b2274726169745f74797065223a20224260008201527f6974636f696e222c202276616c7565223a2022546f20546865204d6f6f6e212160208201527f2200000000000000000000000000000000000000000000000000000000000000604082015250565b600061405a604183613725565b915061406582613fd8565b604182019050919050565b600061407b82613e85565b915061408682613ed1565b91506140928285613814565b915061409d82613f1d565b91506140a882613f69565b91506140b382613fb5565b91506140bf8284613814565b91506140ca82613f1d565b91506140d58261404d565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614117601d83613725565b9150614122826140e1565b601d82019050919050565b60006141388261410a565b91506141448284613814565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141ab602683612ab3565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b60006040820190506141f66000830185612bef565b6142036020830184612bef565b9392505050565b60008151905061421981612ead565b92915050565b600060208284031215614235576142346129e3565b5b60006142438482850161420a565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614282602083612ab3565b915061428d8261424c565b602082019050919050565b600060208201905081810360008301526142b181614275565b9050919050565b60006142c382612b5a565b91506142ce83612b5a565b9250826142de576142dd613696565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000614310826142e9565b61431a81856142f4565b935061432a818560208601612ac4565b61433381612aee565b840191505092915050565b60006080820190506143536000830187612bef565b6143606020830186612bef565b61436d6040830185612c85565b818103606083015261437f8184614305565b905095945050505050565b60008151905061439981612a19565b92915050565b6000602082840312156143b5576143b46129e3565b5b60006143c38482850161438a565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122003cdac90347225d078f36850bc486b98170579616327f01ec219e4fc651e326264736f6c63430008120033
Deployed Bytecode Sourcemap
194:6532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5875:185:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5020:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6066:199:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;533:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5242:201;;;;;;;;;;;;;:::i;:::-;;6271:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;494:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4832:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;608:21:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5128:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:8;;;;;;;;;;;;;:::i;:::-;;4744:82:0;;;;;;;;;;;;;:::i;:::-;;1194:85:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4924:90:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;420:34:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;738:933;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5673:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;379:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6484:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1677:89;;;;;;;;;;;;;:::i;:::-;;1884:2854;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;572:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;301:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;338:35:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;460:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:3;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;5875:185:0:-;6001:8;2004:30:7;2025:8;2004:20;:30::i;:::-;6021:32:0::1;6035:8;6045:7;6021:13;:32::i;:::-;5875:185:::0;;;:::o;5020:102::-;1087:13:8;:11;:13::i;:::-;5108:7:0::1;5092:13;:23;;;;5020:102:::0;:::o;5894:317:3:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;6066:199:0:-;6205:4;1748:10:7;1740:18;;:4;:18;;;1736:81;;1774:32;1795:10;1774:20;:32::i;:::-;1736:81;6221:37:0::1;6240:4;6246:2;6250:7;6221:18;:37::i;:::-;6066:199:::0;;;;:::o;533:33::-;;;;:::o;5242:201::-;1087:13:8;:11;:13::i;:::-;5292:12:0::1;5318:10;5310:24;;5355:21;5310:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5291:99;;;5408:7;5400:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;5281:162;5242:201::o:0;6271:207::-;6414:4;1748:10:7;1740:18;;:4;:18;;;1736:81;;1774:32;1795:10;1774:20;:32::i;:::-;1736:81;6430:41:0::1;6453:4;6459:2;6463:7;6430:22;:41::i;:::-;6271:207:::0;;;;:::o;494:33::-;;;;:::o;4832:86::-;1087:13:8;:11;:13::i;:::-;4908:3:0::1;4898:7;:13;;;;;;:::i;:::-;;4832:86:::0;:::o;11391:150:3:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;608:21:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5128:108::-;1087:13:8;:11;:13::i;:::-;5222:7:0::1;5203:16;:26;;;;5128:108:::0;:::o;7045:230:3:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:8:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;4744:82:0:-;1087:13:8;:11;:13::i;:::-;4808:11:0::1;;;;;;;;;;;4807:12;4793:11;;:26;;;;;;;;;;;;;;;;;;4744:82::o:0;1194:85:8:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;4924:90:0:-;1087:13:8;:11;:13::i;:::-;4998:9:0::1;4990:5;:17;;;;4924:90:::0;:::o;10208:102:3:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;420:34:0:-;;;;:::o;738:933::-;805:11;;;;;;;;;;;797:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;902:1;890:9;;:13;;;;:::i;:::-;879:8;863:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;855:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;925:12;940:5;;925:20;;955:21;979:12;;955:36;;1035:13;;1019;:11;:13::i;:::-;:29;:89;;;;;1092:16;;1064:25;1078:10;1064:13;:25::i;:::-;:44;1019:89;:133;;;;;1136:16;;1124:8;:28;;1019:133;1002:240;;;1184:1;1177:8;;1215:16;;1199:32;;1002:240;1313:13;1301:8;1273:25;1287:10;1273:13;:25::i;:::-;:36;;;;:::i;:::-;:53;;1252:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;1377:20;1400:8;1377:31;;1451:1;1422:25;1436:10;1422:13;:25::i;:::-;:30;1418:88;;1494:1;1483:8;:12;;;;:::i;:::-;1468:27;;1418:88;1564:4;1549:12;:19;;;;:::i;:::-;1536:9;:32;;1515:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;1633:31;1643:10;1655:8;1633:9;:31::i;:::-;787:884;;;738:933;:::o;5673:196::-;5799:8;2004:30:7;2025:8;2004:20;:30::i;:::-;5819:43:0::1;5843:8;5853;5819:23;:43::i;:::-;5673:196:::0;;;:::o;379:35::-;;;;:::o;6484:240::-;6654:4;1748:10:7;1740:18;;:4;:18;;;1736:81;;1774:32;1795:10;1774:20;:32::i;:::-;1736:81;6670:47:0::1;6693:4;6699:2;6703:7;6712:4;6670:22;:47::i;:::-;6484:240:::0;;;;;:::o;1677:89::-;1087:13:8;:11;:13::i;:::-;1724:35:0::1;1734:10;1746:12;;1724:9;:35::i;:::-;1677:89::o:0;1884:2854::-;1971:13;1996:24;:289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2295:19;2317:6;2334:2;2324:7;:12;;;;:::i;:::-;2317:20;;;;;;;:::i;:::-;;;;;;2295:42;;2347:20;2594:5;2390:1449;;;;;;;;:::i;:::-;;;;;;;;;;;;;2347:1502;;3860:24;3887:28;3907:6;3887:13;:28::i;:::-;3860:55;;4060:639;4274:18;:7;:16;:18::i;:::-;4472:10;4134:517;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4060:13;:639::i;:::-;3969:748;;;;;;;;:::i;:::-;;;;;;;;;;;;;3926:805;;;;;;1884:2854;;;:::o;572:30::-;;;;;;;;;;;;;:::o;301:31::-;;;;:::o;17282:162:3:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2074:198:8:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;338:35:0:-;;;;:::o;460:28::-;;;;:::o;17693:277:3:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;2140:726:7:-;2377:1;312:42;2329:45;;;:49;2325:535;;;312:42;2642;;;2714:4;2741:8;2642:125;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2620:230;;2826:8;2807:28;;;;;;;;;;;:::i;:::-;;;;;;;;2620:230;2325:535;2140:726;:::o;15812:398:3:-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;1352:130:8:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;5426:90:3:-;5482:7;5426:90;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;2426:187:8:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;7352:176:3:-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;16901:231::-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;657:1829:10:-;715:13;759:1;744:4;:11;:16;740:31;;762:9;;;;;;;;;;;;;;;;740:31;820:19;842:12;;;;;;;;;;;;;;;;;820:34;;903:18;949:1;944;930:4;:11;:15;;;;:::i;:::-;929:21;;;;:::i;:::-;924:1;:27;;;;:::i;:::-;903:48;;1031:20;1078:2;1065:10;:15;;;;:::i;:::-;1054:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:50;;1170:10;1162:6;1155:26;1258:1;1251:5;1247:13;1310:4;1360;1354:11;1345:7;1341:25;1449:2;1441:6;1437:15;1515:731;1534:6;1525:7;1522:19;1515:731;;;1627:1;1618:7;1614:15;1603:26;;1665:7;1659:14;1784:4;1776:5;1772:2;1768:14;1764:25;1754:8;1750:40;1744:47;1733:9;1725:67;1837:1;1826:9;1822:17;1809:30;;1915:4;1907:5;1903:2;1899:14;1895:25;1885:8;1881:40;1875:47;1864:9;1856:67;1968:1;1957:9;1953:17;1940:30;;2046:4;2038:5;2035:1;2030:14;2026:25;2016:8;2012:40;2006:47;1995:9;1987:67;2099:1;2088:9;2084:17;2071:30;;2177:4;2169:5;2157:25;2147:8;2143:40;2137:47;2126:9;2118:67;2230:1;2219:9;2215:17;2202:30;;1557:689;1515:731;;;2312:1;2305:4;2299:11;2295:19;2332:1;2327:54;;;;2399:1;2394:52;;;;2288:158;;2327:54;2371:6;2366:3;2362:16;2358:1;2347:9;2343:17;2336:43;2327:54;;2394:52;2438:4;2433:3;2429:14;2425:1;2414:9;2410:17;2403:41;2288:158;;1101:1355;;;;2473:6;2466:13;;;;;657:1829;;;;:::o;410:696:9:-;466:13;515:14;552:1;532:17;543:5;532:10;:17::i;:::-;:21;515:38;;567:20;601:6;590:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567:41;;622:11;748:6;744:2;740:15;732:6;728:28;721:35;;783:280;790:4;783:280;;;814:5;;;;;;;;953:8;948:2;941:5;937:14;932:30;927:3;919:44;1007:2;998:11;;;;;;:::i;:::-;;;;;1040:1;1031:5;:10;783:280;1027:21;783:280;1083:6;1076:13;;;;;410:696;;;:::o;39437:103:3:-;39497:7;39523:10;39516:17;;39437:103;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;18828:474:3:-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;9889:890:6:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;38475:143:3:-;38608:6;38475:143;;;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;7:75:11:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:147::-;12704:11;12741:3;12726:18;;12603:147;;;;:::o;12756:114::-;;:::o;12876:398::-;13035:3;13056:83;13137:1;13132:3;13056:83;:::i;:::-;13049:90;;13148:93;13237:3;13148:93;:::i;:::-;13266:1;13261:3;13257:11;13250:18;;12876:398;;;:::o;13280:379::-;13464:3;13486:147;13629:3;13486:147;:::i;:::-;13479:154;;13650:3;13643:10;;13280:379;;;:::o;13665:166::-;13805:18;13801:1;13793:6;13789:14;13782:42;13665:166;:::o;13837:366::-;13979:3;14000:67;14064:2;14059:3;14000:67;:::i;:::-;13993:74;;14076:93;14165:3;14076:93;:::i;:::-;14194:2;14189:3;14185:12;14178:19;;13837:366;;;:::o;14209:419::-;14375:4;14413:2;14402:9;14398:18;14390:26;;14462:9;14456:4;14452:20;14448:1;14437:9;14433:17;14426:47;14490:131;14616:4;14490:131;:::i;:::-;14482:139;;14209:419;;;:::o;14634:141::-;14683:4;14706:3;14698:11;;14729:3;14726:1;14719:14;14763:4;14760:1;14750:18;14742:26;;14634:141;;;:::o;14781:93::-;14818:6;14865:2;14860;14853:5;14849:14;14845:23;14835:33;;14781:93;;;:::o;14880:107::-;14924:8;14974:5;14968:4;14964:16;14943:37;;14880:107;;;;:::o;14993:393::-;15062:6;15112:1;15100:10;15096:18;15135:97;15165:66;15154:9;15135:97;:::i;:::-;15253:39;15283:8;15272:9;15253:39;:::i;:::-;15241:51;;15325:4;15321:9;15314:5;15310:21;15301:30;;15374:4;15364:8;15360:19;15353:5;15350:30;15340:40;;15069:317;;14993:393;;;;;:::o;15392:60::-;15420:3;15441:5;15434:12;;15392:60;;;:::o;15458:142::-;15508:9;15541:53;15559:34;15568:24;15586:5;15568:24;:::i;:::-;15559:34;:::i;:::-;15541:53;:::i;:::-;15528:66;;15458:142;;;:::o;15606:75::-;15649:3;15670:5;15663:12;;15606:75;;;:::o;15687:269::-;15797:39;15828:7;15797:39;:::i;:::-;15858:91;15907:41;15931:16;15907:41;:::i;:::-;15899:6;15892:4;15886:11;15858:91;:::i;:::-;15852:4;15845:105;15763:193;15687:269;;;:::o;15962:73::-;16007:3;15962:73;:::o;16041:189::-;16118:32;;:::i;:::-;16159:65;16217:6;16209;16203:4;16159:65;:::i;:::-;16094:136;16041:189;;:::o;16236:186::-;16296:120;16313:3;16306:5;16303:14;16296:120;;;16367:39;16404:1;16397:5;16367:39;:::i;:::-;16340:1;16333:5;16329:13;16320:22;;16296:120;;;16236:186;;:::o;16428:543::-;16529:2;16524:3;16521:11;16518:446;;;16563:38;16595:5;16563:38;:::i;:::-;16647:29;16665:10;16647:29;:::i;:::-;16637:8;16633:44;16830:2;16818:10;16815:18;16812:49;;;16851:8;16836:23;;16812:49;16874:80;16930:22;16948:3;16930:22;:::i;:::-;16920:8;16916:37;16903:11;16874:80;:::i;:::-;16533:431;;16518:446;16428:543;;;:::o;16977:117::-;17031:8;17081:5;17075:4;17071:16;17050:37;;16977:117;;;;:::o;17100:169::-;17144:6;17177:51;17225:1;17221:6;17213:5;17210:1;17206:13;17177:51;:::i;:::-;17173:56;17258:4;17252;17248:15;17238:25;;17151:118;17100:169;;;;:::o;17274:295::-;17350:4;17496:29;17521:3;17515:4;17496:29;:::i;:::-;17488:37;;17558:3;17555:1;17551:11;17545:4;17542:21;17534:29;;17274:295;;;;:::o;17574:1395::-;17691:37;17724:3;17691:37;:::i;:::-;17793:18;17785:6;17782:30;17779:56;;;17815:18;;:::i;:::-;17779:56;17859:38;17891:4;17885:11;17859:38;:::i;:::-;17944:67;18004:6;17996;17990:4;17944:67;:::i;:::-;18038:1;18062:4;18049:17;;18094:2;18086:6;18083:14;18111:1;18106:618;;;;18768:1;18785:6;18782:77;;;18834:9;18829:3;18825:19;18819:26;18810:35;;18782:77;18885:67;18945:6;18938:5;18885:67;:::i;:::-;18879:4;18872:81;18741:222;18076:887;;18106:618;18158:4;18154:9;18146:6;18142:22;18192:37;18224:4;18192:37;:::i;:::-;18251:1;18265:208;18279:7;18276:1;18273:14;18265:208;;;18358:9;18353:3;18349:19;18343:26;18335:6;18328:42;18409:1;18401:6;18397:14;18387:24;;18456:2;18445:9;18441:18;18428:31;;18302:4;18299:1;18295:12;18290:17;;18265:208;;;18501:6;18492:7;18489:19;18486:179;;;18559:9;18554:3;18550:19;18544:26;18602:48;18644:4;18636:6;18632:17;18621:9;18602:48;:::i;:::-;18594:6;18587:64;18509:156;18486:179;18711:1;18707;18699:6;18695:14;18691:22;18685:4;18678:36;18113:611;;;18076:887;;17666:1303;;;17574:1395;;:::o;18975:174::-;19115:26;19111:1;19103:6;19099:14;19092:50;18975:174;:::o;19155:366::-;19297:3;19318:67;19382:2;19377:3;19318:67;:::i;:::-;19311:74;;19394:93;19483:3;19394:93;:::i;:::-;19512:2;19507:3;19503:12;19496:19;;19155:366;;;:::o;19527:419::-;19693:4;19731:2;19720:9;19716:18;19708:26;;19780:9;19774:4;19770:20;19766:1;19755:9;19751:17;19744:47;19808:131;19934:4;19808:131;:::i;:::-;19800:139;;19527:419;;;:::o;19952:180::-;20000:77;19997:1;19990:88;20097:4;20094:1;20087:15;20121:4;20118:1;20111:15;20138:191;20178:3;20197:20;20215:1;20197:20;:::i;:::-;20192:25;;20231:20;20249:1;20231:20;:::i;:::-;20226:25;;20274:1;20271;20267:9;20260:16;;20295:3;20292:1;20289:10;20286:36;;;20302:18;;:::i;:::-;20286:36;20138:191;;;;:::o;20335:157::-;20475:9;20471:1;20463:6;20459:14;20452:33;20335:157;:::o;20498:365::-;20640:3;20661:66;20725:1;20720:3;20661:66;:::i;:::-;20654:73;;20736:93;20825:3;20736:93;:::i;:::-;20854:2;20849:3;20845:12;20838:19;;20498:365;;;:::o;20869:419::-;21035:4;21073:2;21062:9;21058:18;21050:26;;21122:9;21116:4;21112:20;21108:1;21097:9;21093:17;21086:47;21150:131;21276:4;21150:131;:::i;:::-;21142:139;;20869:419;;;:::o;21294:164::-;21434:16;21430:1;21422:6;21418:14;21411:40;21294:164;:::o;21464:366::-;21606:3;21627:67;21691:2;21686:3;21627:67;:::i;:::-;21620:74;;21703:93;21792:3;21703:93;:::i;:::-;21821:2;21816:3;21812:12;21805:19;;21464:366;;;:::o;21836:419::-;22002:4;22040:2;22029:9;22025:18;22017:26;;22089:9;22083:4;22079:20;22075:1;22064:9;22060:17;22053:47;22117:131;22243:4;22117:131;:::i;:::-;22109:139;;21836:419;;;:::o;22261:194::-;22301:4;22321:20;22339:1;22321:20;:::i;:::-;22316:25;;22355:20;22373:1;22355:20;:::i;:::-;22350:25;;22399:1;22396;22392:9;22384:17;;22423:1;22417:4;22414:11;22411:37;;;22428:18;;:::i;:::-;22411:37;22261:194;;;;:::o;22461:410::-;22501:7;22524:20;22542:1;22524:20;:::i;:::-;22519:25;;22558:20;22576:1;22558:20;:::i;:::-;22553:25;;22613:1;22610;22606:9;22635:30;22653:11;22635:30;:::i;:::-;22624:41;;22814:1;22805:7;22801:15;22798:1;22795:22;22775:1;22768:9;22748:83;22725:139;;22844:18;;:::i;:::-;22725:139;22509:362;22461:410;;;;:::o;22877:179::-;23017:31;23013:1;23005:6;23001:14;22994:55;22877:179;:::o;23062:366::-;23204:3;23225:67;23289:2;23284:3;23225:67;:::i;:::-;23218:74;;23301:93;23390:3;23301:93;:::i;:::-;23419:2;23414:3;23410:12;23403:19;;23062:366;;;:::o;23434:419::-;23600:4;23638:2;23627:9;23623:18;23615:26;;23687:9;23681:4;23677:20;23673:1;23662:9;23658:17;23651:47;23715:131;23841:4;23715:131;:::i;:::-;23707:139;;23434:419;;;:::o;23859:180::-;23907:77;23904:1;23897:88;24004:4;24001:1;23994:15;24028:4;24025:1;24018:15;24045:176;24077:1;24094:20;24112:1;24094:20;:::i;:::-;24089:25;;24128:20;24146:1;24128:20;:::i;:::-;24123:25;;24167:1;24157:35;;24172:18;;:::i;:::-;24157:35;24213:1;24210;24206:9;24201:14;;24045:176;;;;:::o;24227:180::-;24275:77;24272:1;24265:88;24372:4;24369:1;24362:15;24396:4;24393:1;24386:15;24413:148;24515:11;24552:3;24537:18;;24413:148;;;;:::o;24567:619::-;24707:66;24703:1;24695:6;24691:14;24684:90;24808:66;24803:2;24795:6;24791:15;24784:91;24909:66;24904:2;24896:6;24892:15;24885:91;25010:66;25005:2;24997:6;24993:15;24986:91;25112:66;25106:3;25098:6;25094:16;25087:92;24567:619;:::o;25192:404::-;25352:3;25373:86;25455:3;25450;25373:86;:::i;:::-;25366:93;;25468;25557:3;25468:93;:::i;:::-;25586:3;25581;25577:13;25570:20;;25192:404;;;:::o;25602:390::-;25708:3;25736:39;25769:5;25736:39;:::i;:::-;25791:89;25873:6;25868:3;25791:89;:::i;:::-;25784:96;;25889:65;25947:6;25942:3;25935:4;25928:5;25924:16;25889:65;:::i;:::-;25979:6;25974:3;25970:16;25963:23;;25712:280;25602:390;;;;:::o;25998:2923::-;26138:66;26134:1;26126:6;26122:14;26115:90;26239:66;26234:2;26226:6;26222:15;26215:91;26340:34;26335:2;26327:6;26323:15;26316:59;26409:34;26404:2;26396:6;26392:15;26385:59;26479:34;26473:3;26465:6;26461:16;26454:60;26549:34;26543:3;26535:6;26531:16;26524:60;26619:34;26613:3;26605:6;26601:16;26594:60;26689:34;26683:3;26675:6;26671:16;26664:60;26759:34;26753:3;26745:6;26741:16;26734:60;26829:34;26823:3;26815:6;26811:16;26804:60;26899:34;26893:3;26885:6;26881:16;26874:60;26969:34;26963:3;26955:6;26951:16;26944:60;27039:34;27033:3;27025:6;27021:16;27014:60;27109:34;27103:3;27095:6;27091:16;27084:60;27179:34;27173:3;27165:6;27161:16;27154:60;27249:34;27243:3;27235:6;27231:16;27224:60;27319:34;27313:3;27305:6;27301:16;27294:60;27389:34;27383:3;27375:6;27371:16;27364:60;27459:34;27453:3;27445:6;27441:16;27434:60;27529:34;27523:3;27515:6;27511:16;27504:60;27599:34;27593:3;27585:6;27581:16;27574:60;27669:34;27663:3;27655:6;27651:16;27644:60;27739:34;27733:3;27725:6;27721:16;27714:60;27809:34;27803:3;27795:6;27791:16;27784:60;27879:34;27873:3;27865:6;27861:16;27854:60;27949:34;27943:3;27935:6;27931:16;27924:60;28019:34;28013:3;28005:6;28001:16;27994:60;28089:34;28083:3;28075:6;28071:16;28064:60;28159:34;28153:3;28145:6;28141:16;28134:60;28229:34;28223:3;28215:6;28211:16;28204:60;28299:34;28293:3;28285:6;28281:16;28274:60;28369:34;28363:3;28355:6;28351:16;28344:60;28440:34;28433:4;28425:6;28421:17;28414:61;28511:34;28504:4;28496:6;28492:17;28485:61;28582:66;28575:4;28567:6;28563:17;28556:93;28685:66;28678:4;28670:6;28666:17;28659:93;28784:34;28777:4;28769:6;28765:17;28758:61;28851:66;28844:4;28836:6;28832:17;28825:93;25998:2923;:::o;28923:390::-;29083:3;29100:87;29182:4;29177:3;29100:87;:::i;:::-;29093:94;;29192:93;29281:3;29192:93;:::i;:::-;29306:4;29301:3;29297:14;29290:21;;28923:390;;;:::o;29315:787::-;29649:3;29667:148;29811:3;29667:148;:::i;:::-;29660:155;;29828:95;29919:3;29910:6;29828:95;:::i;:::-;29821:102;;29936:148;30080:3;29936:148;:::i;:::-;29929:155;;30097:3;30090:10;;29315:787;;;;:::o;30104:147::-;30240:3;30236:1;30228:6;30224:14;30217:27;30104:147;:::o;30257:400::-;30417:3;30438:84;30520:1;30515:3;30438:84;:::i;:::-;30431:91;;30531:93;30620:3;30531:93;:::i;:::-;30649:1;30644:3;30640:11;30633:18;;30257:400;;;:::o;30663:214::-;30803:66;30799:1;30791:6;30787:14;30780:90;30663:214;:::o;30883:402::-;31043:3;31064:85;31146:2;31141:3;31064:85;:::i;:::-;31057:92;;31158:93;31247:3;31158:93;:::i;:::-;31276:2;31271:3;31267:12;31260:19;;30883:402;;;:::o;31291:214::-;31431:66;31427:1;31419:6;31415:14;31408:90;31291:214;:::o;31511:400::-;31671:3;31692:84;31774:1;31769:3;31692:84;:::i;:::-;31685:91;;31785:93;31874:3;31785:93;:::i;:::-;31903:1;31898:3;31894:11;31887:18;;31511:400;;;:::o;31917:214::-;32057:66;32053:1;32045:6;32041:14;32034:90;31917:214;:::o;32137:402::-;32297:3;32318:85;32400:2;32395:3;32318:85;:::i;:::-;32311:92;;32412:93;32501:3;32412:93;:::i;:::-;32530:2;32525:3;32521:12;32514:19;;32137:402;;;:::o;32545:176::-;32685:28;32681:1;32673:6;32669:14;32662:52;32545:176;:::o;32727:402::-;32887:3;32908:85;32990:2;32985:3;32908:85;:::i;:::-;32901:92;;33002:93;33091:3;33002:93;:::i;:::-;33120:2;33115:3;33111:12;33104:19;;32727:402;;;:::o;33135:416::-;33275:66;33271:1;33263:6;33259:14;33252:90;33376:66;33371:2;33363:6;33359:15;33352:91;33477:66;33472:2;33464:6;33460:15;33453:91;33135:416;:::o;33557:402::-;33717:3;33738:85;33820:2;33815:3;33738:85;:::i;:::-;33731:92;;33832:93;33921:3;33832:93;:::i;:::-;33950:2;33945:3;33941:12;33934:19;;33557:402;;;:::o;33965:2297::-;34852:3;34874:148;35018:3;34874:148;:::i;:::-;34867:155;;35039:148;35183:3;35039:148;:::i;:::-;35032:155;;35204:95;35295:3;35286:6;35204:95;:::i;:::-;35197:102;;35316:148;35460:3;35316:148;:::i;:::-;35309:155;;35481:148;35625:3;35481:148;:::i;:::-;35474:155;;35646:148;35790:3;35646:148;:::i;:::-;35639:155;;35811:95;35902:3;35893:6;35811:95;:::i;:::-;35804:102;;35923:148;36067:3;35923:148;:::i;:::-;35916:155;;36088:148;36232:3;36088:148;:::i;:::-;36081:155;;36253:3;36246:10;;33965:2297;;;;;:::o;36268:179::-;36408:31;36404:1;36396:6;36392:14;36385:55;36268:179;:::o;36453:402::-;36613:3;36634:85;36716:2;36711:3;36634:85;:::i;:::-;36627:92;;36728:93;36817:3;36728:93;:::i;:::-;36846:2;36841:3;36837:12;36830:19;;36453:402;;;:::o;36861:541::-;37094:3;37116:148;37260:3;37116:148;:::i;:::-;37109:155;;37281:95;37372:3;37363:6;37281:95;:::i;:::-;37274:102;;37393:3;37386:10;;36861:541;;;;:::o;37408:225::-;37548:34;37544:1;37536:6;37532:14;37525:58;37617:8;37612:2;37604:6;37600:15;37593:33;37408:225;:::o;37639:366::-;37781:3;37802:67;37866:2;37861:3;37802:67;:::i;:::-;37795:74;;37878:93;37967:3;37878:93;:::i;:::-;37996:2;37991:3;37987:12;37980:19;;37639:366;;;:::o;38011:419::-;38177:4;38215:2;38204:9;38200:18;38192:26;;38264:9;38258:4;38254:20;38250:1;38239:9;38235:17;38228:47;38292:131;38418:4;38292:131;:::i;:::-;38284:139;;38011:419;;;:::o;38436:332::-;38557:4;38595:2;38584:9;38580:18;38572:26;;38608:71;38676:1;38665:9;38661:17;38652:6;38608:71;:::i;:::-;38689:72;38757:2;38746:9;38742:18;38733:6;38689:72;:::i;:::-;38436:332;;;;;:::o;38774:137::-;38828:5;38859:6;38853:13;38844:22;;38875:30;38899:5;38875:30;:::i;:::-;38774:137;;;;:::o;38917:345::-;38984:6;39033:2;39021:9;39012:7;39008:23;39004:32;39001:119;;;39039:79;;:::i;:::-;39001:119;39159:1;39184:61;39237:7;39228:6;39217:9;39213:22;39184:61;:::i;:::-;39174:71;;39130:125;38917:345;;;;:::o;39268:182::-;39408:34;39404:1;39396:6;39392:14;39385:58;39268:182;:::o;39456:366::-;39598:3;39619:67;39683:2;39678:3;39619:67;:::i;:::-;39612:74;;39695:93;39784:3;39695:93;:::i;:::-;39813:2;39808:3;39804:12;39797:19;;39456:366;;;:::o;39828:419::-;39994:4;40032:2;40021:9;40017:18;40009:26;;40081:9;40075:4;40071:20;40067:1;40056:9;40052:17;40045:47;40109:131;40235:4;40109:131;:::i;:::-;40101:139;;39828:419;;;:::o;40253:185::-;40293:1;40310:20;40328:1;40310:20;:::i;:::-;40305:25;;40344:20;40362:1;40344:20;:::i;:::-;40339:25;;40383:1;40373:35;;40388:18;;:::i;:::-;40373:35;40430:1;40427;40423:9;40418:14;;40253:185;;;;:::o;40444:98::-;40495:6;40529:5;40523:12;40513:22;;40444:98;;;:::o;40548:168::-;40631:11;40665:6;40660:3;40653:19;40705:4;40700:3;40696:14;40681:29;;40548:168;;;;:::o;40722:373::-;40808:3;40836:38;40868:5;40836:38;:::i;:::-;40890:70;40953:6;40948:3;40890:70;:::i;:::-;40883:77;;40969:65;41027:6;41022:3;41015:4;41008:5;41004:16;40969:65;:::i;:::-;41059:29;41081:6;41059:29;:::i;:::-;41054:3;41050:39;41043:46;;40812:283;40722:373;;;;:::o;41101:640::-;41296:4;41334:3;41323:9;41319:19;41311:27;;41348:71;41416:1;41405:9;41401:17;41392:6;41348:71;:::i;:::-;41429:72;41497:2;41486:9;41482:18;41473:6;41429:72;:::i;:::-;41511;41579:2;41568:9;41564:18;41555:6;41511:72;:::i;:::-;41630:9;41624:4;41620:20;41615:2;41604:9;41600:18;41593:48;41658:76;41729:4;41720:6;41658:76;:::i;:::-;41650:84;;41101:640;;;;;;;:::o;41747:141::-;41803:5;41834:6;41828:13;41819:22;;41850:32;41876:5;41850:32;:::i;:::-;41747:141;;;;:::o;41894:349::-;41963:6;42012:2;42000:9;41991:7;41987:23;41983:32;41980:119;;;42018:79;;:::i;:::-;41980:119;42138:1;42163:63;42218:7;42209:6;42198:9;42194:22;42163:63;:::i;:::-;42153:73;;42109:127;41894:349;;;;:::o
Swarm Source
ipfs://03cdac90347225d078f36850bc486b98170579616327f01ec219e4fc651e3262
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.