Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 519 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19018158 | 633 days ago | IN | 0 ETH | 0.00113353 | ||||
Set Approval For... | 18898257 | 650 days ago | IN | 0 ETH | 0.00060776 | ||||
Set Approval For... | 18632436 | 687 days ago | IN | 0 ETH | 0.00141501 | ||||
Set Approval For... | 17594146 | 833 days ago | IN | 0 ETH | 0.00129413 | ||||
Set Approval For... | 17577612 | 835 days ago | IN | 0 ETH | 0.00078009 | ||||
Set Approval For... | 17577469 | 835 days ago | IN | 0 ETH | 0.0006262 | ||||
Set Approval For... | 17272113 | 878 days ago | IN | 0 ETH | 0.00178765 | ||||
Safe Transfer Fr... | 17144287 | 896 days ago | IN | 0 ETH | 0.00175775 | ||||
Safe Transfer Fr... | 17122704 | 899 days ago | IN | 0 ETH | 0.01128527 | ||||
Set Approval For... | 17122601 | 899 days ago | IN | 0 ETH | 0.0015869 | ||||
Set Approval For... | 17122569 | 899 days ago | IN | 0 ETH | 0.00165008 | ||||
Set Approval For... | 17092621 | 903 days ago | IN | 0 ETH | 0.00165032 | ||||
Safe Transfer Fr... | 17092608 | 903 days ago | IN | 0 ETH | 0.00243721 | ||||
Set Approval For... | 17002089 | 916 days ago | IN | 0 ETH | 0.00090823 | ||||
Set Approval For... | 16974723 | 920 days ago | IN | 0 ETH | 0.00090077 | ||||
Set Approval For... | 16943358 | 925 days ago | IN | 0 ETH | 0.00208146 | ||||
Set Approval For... | 16917675 | 928 days ago | IN | 0 ETH | 0.00124568 | ||||
Set Approval For... | 16885529 | 933 days ago | IN | 0 ETH | 0.00114174 | ||||
Set Approval For... | 16875265 | 934 days ago | IN | 0 ETH | 0.00064913 | ||||
Set Approval For... | 16873290 | 934 days ago | IN | 0 ETH | 0.00084253 | ||||
Set Approval For... | 16873264 | 934 days ago | IN | 0 ETH | 0.00069689 | ||||
Set Approval For... | 16871958 | 935 days ago | IN | 0 ETH | 0.0007913 | ||||
Set Approval For... | 16871932 | 935 days ago | IN | 0 ETH | 0.00084051 | ||||
Set Approval For... | 16871397 | 935 days ago | IN | 0 ETH | 0.00108446 | ||||
Set Approval For... | 16871210 | 935 days ago | IN | 0 ETH | 0.00112421 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 16858050 | 937 days ago | 150 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ChatGPTLand
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; // from openzeppelin import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; // local import "./SalesActivation.sol"; import "./Whitelist.sol"; // ChatGPT Land contract ChatGPTLand is Ownable, ERC721A, SalesActivation, Whitelist { // ------------------------------------------- const // total sales uint256 public constant TOTAL_MAX_QTY = 3000; // ------------------------------------------- variable mapping(address => uint256) public accountToTokenQtyWhitelist; mapping(address => uint256) public accountToTokenQtyPublic; // nft sales price uint256 public whitelistPrice = 0.05 ether; uint256 public publicPrice = 0.05 ether; // max number of NFTs every wallet can buy uint256 public maxQtyPerMinterInPublicSales = 10; // max number of NFTs every wallet can buy in whitelistsales uint256 public maxQtyPerMinterInWhitelist = 10; // whitelist sales quantity uint256 public whitelistSalesMintedQty = 0; // public sales quantity uint256 public publicSalesMintedQty = 0; // URI for NFT meta data string private _baseTokenURI; // init for the contract constructor() ERC721A("ChatGPT Land", "ChatGPTLand") {} // whitelist mint function whitelistMint(uint256 _mintQty) external isPreSalesActive callerIsUser payable { require( isInWhitelist(msg.sender), "Not in whitelist yet!" ); require( publicSalesMintedQty + whitelistSalesMintedQty + _mintQty <= TOTAL_MAX_QTY, "Exceed sales max limit!" ); require( accountToTokenQtyWhitelist[msg.sender] + _mintQty <= maxQtyPerMinterInWhitelist, "Exceed max mint per minter!" ); require( msg.value >= _mintQty * whitelistPrice, "Insufficient ETH!" ); // update the quantity of the sales accountToTokenQtyWhitelist[msg.sender] += _mintQty; whitelistSalesMintedQty += _mintQty; // safe mint for every NFT _mint(msg.sender, _mintQty); } // public mint function mint(uint256 _mintQty) external isPublicSalesActive callerIsUser payable { require( publicSalesMintedQty + whitelistSalesMintedQty + _mintQty <= TOTAL_MAX_QTY, "Exceed sales max limit!" ); require( accountToTokenQtyPublic[msg.sender] + _mintQty <= maxQtyPerMinterInPublicSales, "Exceed max mint per minter!" ); require( msg.value >= _mintQty * publicPrice, "Insufficient ETH" ); // update the quantity of the sales accountToTokenQtyPublic[msg.sender] += _mintQty; publicSalesMintedQty += _mintQty; _mint(msg.sender, _mintQty); } // set the quantity per minter can mint in public sales function setQtyPerMinterPublicSales(uint256 _qty) external onlyOwner { maxQtyPerMinterInPublicSales = _qty; } // set the quantity per minter can mint in whitelist sales function setQtyPerMinterWhitelist(uint256 _qty) external onlyOwner { maxQtyPerMinterInWhitelist = _qty; } // set the whitelist price function setWhitelistPrice(uint256 _price) external onlyOwner { whitelistPrice = _price; } // set the public price function setPublicPrice(uint256 _price) external onlyOwner { publicPrice = _price; } // ------------------------------------------- withdraw // withdraw all (if need) function withdrawAll() external onlyOwner { require(address(this).balance > 0, "Withdraw: No amount"); payable(msg.sender).transfer(address(this).balance); } // // metadata URI function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // not other contract modifier callerIsUser() { require(tx.origin == msg.sender, "not user!"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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 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.4; // from openzeppelin import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; // local import "./SalesActivation.sol"; import "./Whitelist.sol"; // Base721A contract Base721A is Ownable, ERC721A, SalesActivation, Whitelist { // ------------------------------------------- const // total sales uint256 public constant TOTAL_MAX_QTY = 1000; // ------------------------------------------- variable mapping(address => uint256) public accountToTokenQtyWhitelist; mapping(address => uint256) public accountToTokenQtyPublic; // nft sales price uint256 public whitelistPrice = 0.01 ether; uint256 public publicPrice = 0.01 ether; // max number of NFTs every wallet can buy uint256 public maxQtyPerMinterInPublicSales = 5; // max number of NFTs every wallet can buy in whitelistsales uint256 public maxQtyPerMinterInWhitelist = 5; // whitelist sales quantity uint256 public whitelistSalesMintedQty = 0; // public sales quantity uint256 public publicSalesMintedQty = 0; // URI for NFT meta data string private _baseTokenURI; // init for the contract constructor() ERC721A("Base721A", "Base721A") {} // whitelist mint function whitelistMint(uint256 _mintQty) external isPreSalesActive callerIsUser payable { require( isInWhitelist(msg.sender), "Not in whitelist yet!" ); require( publicSalesMintedQty + whitelistSalesMintedQty + _mintQty <= TOTAL_MAX_QTY, "Exceed sales max limit!" ); require( accountToTokenQtyWhitelist[msg.sender] + _mintQty <= maxQtyPerMinterInWhitelist, "Exceed max mint per minter!" ); require( msg.value >= _mintQty * whitelistPrice, "Insufficient ETH!" ); // update the quantity of the sales accountToTokenQtyWhitelist[msg.sender] += _mintQty; whitelistSalesMintedQty += _mintQty; // safe mint for every NFT _mint(msg.sender, _mintQty); } // public mint function mint(uint256 _mintQty) external isPublicSalesActive callerIsUser payable { require( publicSalesMintedQty + whitelistSalesMintedQty + _mintQty <= TOTAL_MAX_QTY, "Exceed sales max limit!" ); require( accountToTokenQtyPublic[msg.sender] + _mintQty <= maxQtyPerMinterInPublicSales, "Exceed max mint per minter!" ); require( msg.value >= _mintQty * publicPrice, "Insufficient ETH" ); // update the quantity of the sales accountToTokenQtyPublic[msg.sender] += _mintQty; publicSalesMintedQty += _mintQty; _mint(msg.sender, _mintQty); } // set the quantity per minter can mint in public sales function setQtyPerMinterPublicSales(uint256 _qty) external onlyOwner { maxQtyPerMinterInPublicSales = _qty; } // set the quantity per minter can mint in whitelist sales function setQtyPerMinterWhitelist(uint256 _qty) external onlyOwner { maxQtyPerMinterInWhitelist = _qty; } // set the whitelist price function setWhitelistPrice(uint256 _price) external onlyOwner { whitelistPrice = _price; } // set the public price function setPublicPrice(uint256 _price) external onlyOwner { publicPrice = _price; } // ------------------------------------------- withdraw // withdraw all (if need) function withdrawAll() external onlyOwner { require(address(this).balance > 0, "Withdraw: No amount"); payable(msg.sender).transfer(address(this).balance); } // metadata URI function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata _newBaseURI) external onlyOwner { _baseTokenURI = _newBaseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // not other contract modifier callerIsUser() { require(tx.origin == msg.sender, "not user!"); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; // sales config contract SalesActivation is Ownable { // public sales start time uint256 public publicSalesStartTime; // public sales end time uint256 public publicSalesEndTime; // pre sales start time uint256 public preSalesStartTime; // pre sales end time uint256 public preSalesEndTime; constructor() {} // ------------------------------------------- public sales // set public sales time function setPublicSalesTime(uint256 _startTime, uint256 _endTime) external onlyOwner { require( _endTime >= _startTime, "Public sales: End time should be later than start time" ); publicSalesStartTime = _startTime; publicSalesEndTime = _endTime; } // is public sales activated function isPublicSalesActivated() public view returns (bool) { return publicSalesStartTime > 0 && publicSalesEndTime > 0 && block.timestamp >= publicSalesStartTime && block.timestamp <= publicSalesEndTime; } // is public sales activated (modifier) modifier isPublicSalesActive() { require( isPublicSalesActivated(), "Public sales: Sale is not activated" ); _; } // ------------------------------------------- pre sales // set pre sales time function setPreSalesTime(uint256 _startTime, uint256 _endTime) external onlyOwner { require( _endTime >= _startTime, "Pre sales: End time should be later than start time" ); preSalesStartTime = _startTime; preSalesEndTime = _endTime; } // is pre sales active modifier isPreSalesActive() { require( isPreSalesActivated(), "Pre sales: Sale is not activated" ); _; } // is pre sales activated function isPreSalesActivated() public view returns (bool) { return preSalesStartTime > 0 && preSalesEndTime > 0 && block.timestamp >= preSalesStartTime && block.timestamp <= preSalesEndTime; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; // from openzeppelin import "@openzeppelin/contracts/access/Ownable.sol"; // White list contract contract Whitelist is Ownable{ constructor() {} // white list wallets mapping(address => uint256) public whitelistWallets; // add wallets to white list function addWhitelist(address[] calldata receivers) external onlyOwner { for (uint256 i = 0; i < receivers.length; i++) { whitelistWallets[receivers[i]] = 1; } } // is a wallet in whitelist function isInWhitelist(address wallet) public view returns(bool){ return whitelistWallets[wallet] == 1; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[],"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":[],"name":"TOTAL_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountToTokenQtyPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountToTokenQtyWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalesActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSalesActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQtyPerMinterInPublicSales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQtyPerMinterInWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"preSalesEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalesStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalesEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalesMintedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalesStartTime","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setPreSalesTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setPublicSalesTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"setQtyPerMinterPublicSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"setQtyPerMinterWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSalesMintedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec5000060105566b1a2bc2ec50000601155600a601255600a601355600060145560006015553480156200003b57600080fd5b506040518060400160405280600c81526020017f43686174475054204c616e6400000000000000000000000000000000000000008152506040518060400160405280600b81526020017f436861744750544c616e64000000000000000000000000000000000000000000815250620000c8620000bc6200010a60201b60201c565b6200011260201b60201c565b8160039081620000d9919062000459565b508060049081620000eb919062000459565b50620000fc620001d660201b60201c565b600181905550505062000540565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026157607f821691505b60208210810362000277576200027662000219565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a2565b620002ed8683620002a2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200033a620003346200032e8462000305565b6200030f565b62000305565b9050919050565b6000819050919050565b620003568362000319565b6200036e620003658262000341565b848454620002af565b825550505050565b600090565b6200038562000376565b620003928184846200034b565b505050565b5b81811015620003ba57620003ae6000826200037b565b60018101905062000398565b5050565b601f8211156200040957620003d3816200027d565b620003de8462000292565b81016020851015620003ee578190505b62000406620003fd8562000292565b83018262000397565b50505b505050565b600082821c905092915050565b60006200042e600019846008026200040e565b1980831691505092915050565b60006200044983836200041b565b9150826002028217905092915050565b6200046482620001df565b67ffffffffffffffff81111562000480576200047f620001ea565b5b6200048c825462000248565b62000499828285620003be565b600060209050601f831160018114620004d15760008415620004bc578287015190505b620004c885826200043b565b86555062000538565b601f198416620004e1866200027d565b60005b828110156200050b57848901518255600182019150602085019450602081019050620004e4565b868310156200052b578489015162000527601f8916826200041b565b8355505b6001600288020188555050505b505050505050565b61381780620005506000396000f3fe6080604052600436106102725760003560e01c8063a0712d681161014f578063c6275255116100c1578063e985e9c51161007a578063e985e9c514610904578063ed39039b14610941578063edac985b1461096a578063f2fde38b14610993578063f7e78e9d146109bc578063fc1a1c36146109f957610272565b8063c6275255146107f2578063c87b56dd1461081b578063cdc63bb614610858578063d2f864a114610883578063dee816e6146108ae578063e6c3819c146108d957610272565b8063ae4384f111610113578063ae4384f1146106ef578063b4127db91461071a578063b7329d2b14610757578063b8314d8414610782578063b88d4fde146107ad578063c199d690146107c957610272565b8063a0712d6814610617578063a22cb46514610633578063a78a673f1461065c578063a8f8266814610687578063a945bf80146106c457610272565b8063585789c9116101e8578063853828b6116101ac578063853828b61461053a578063868ff4a2146105515780638b7ce6f71461056d5780638da5cb5b1461059657806395d89b41146105c15780639c123661146105ec57610272565b8063585789c9146104575780636352211e1461048057806370a08231146104bd578063715018a6146104fa578063717d57d31461051157610272565b806318160ddd1161023a57806318160ddd1461037557806323b872dd146103a057806326b391d0146103bc578063397d0c0c146103e757806342842e0e1461041257806355f804b31461042e57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806309fd821214610338575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906125a9565b610a24565b6040516102ab91906125f1565b60405180910390f35b3480156102c057600080fd5b506102c9610ab6565b6040516102d6919061269c565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906126f4565b610b48565b6040516103139190612762565b60405180910390f35b610336600480360381019061033191906127a9565b610bc7565b005b34801561034457600080fd5b5061035f600480360381019061035a91906127e9565b610d0b565b60405161036c91906125f1565b60405180910390f35b34801561038157600080fd5b5061038a610d57565b6040516103979190612825565b60405180910390f35b6103ba60048036038101906103b59190612840565b610d6e565b005b3480156103c857600080fd5b506103d1611090565b6040516103de9190612825565b60405180910390f35b3480156103f357600080fd5b506103fc611096565b6040516104099190612825565b60405180910390f35b61042c60048036038101906104279190612840565b61109c565b005b34801561043a57600080fd5b50610455600480360381019061045091906128f8565b6110bc565b005b34801561046357600080fd5b5061047e600480360381019061047991906126f4565b6110da565b005b34801561048c57600080fd5b506104a760048036038101906104a291906126f4565b6110ec565b6040516104b49190612762565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906127e9565b6110fe565b6040516104f19190612825565b60405180910390f35b34801561050657600080fd5b5061050f6111b6565b005b34801561051d57600080fd5b50610538600480360381019061053391906126f4565b6111ca565b005b34801561054657600080fd5b5061054f6111dc565b005b61056b600480360381019061056691906126f4565b611270565b005b34801561057957600080fd5b50610594600480360381019061058f9190612945565b611527565b005b3480156105a257600080fd5b506105ab611584565b6040516105b89190612762565b60405180910390f35b3480156105cd57600080fd5b506105d66115ad565b6040516105e3919061269c565b60405180910390f35b3480156105f857600080fd5b5061060161163f565b60405161060e9190612825565b60405180910390f35b610631600480360381019061062c91906126f4565b611645565b005b34801561063f57600080fd5b5061065a600480360381019061065591906129b1565b6118b4565b005b34801561066857600080fd5b506106716119bf565b60405161067e9190612825565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906127e9565b6119c5565b6040516106bb9190612825565b60405180910390f35b3480156106d057600080fd5b506106d96119dd565b6040516106e69190612825565b60405180910390f35b3480156106fb57600080fd5b506107046119e3565b60405161071191906125f1565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c91906127e9565b611a19565b60405161074e9190612825565b60405180910390f35b34801561076357600080fd5b5061076c611a31565b60405161077991906125f1565b60405180910390f35b34801561078e57600080fd5b50610797611a67565b6040516107a49190612825565b60405180910390f35b6107c760048036038101906107c29190612b21565b611a6d565b005b3480156107d557600080fd5b506107f060048036038101906107eb91906126f4565b611ae0565b005b3480156107fe57600080fd5b50610819600480360381019061081491906126f4565b611af2565b005b34801561082757600080fd5b50610842600480360381019061083d91906126f4565b611b04565b60405161084f919061269c565b60405180910390f35b34801561086457600080fd5b5061086d611ba2565b60405161087a9190612825565b60405180910390f35b34801561088f57600080fd5b50610898611ba8565b6040516108a59190612825565b60405180910390f35b3480156108ba57600080fd5b506108c3611bae565b6040516108d09190612825565b60405180910390f35b3480156108e557600080fd5b506108ee611bb4565b6040516108fb9190612825565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190612ba4565b611bba565b60405161093891906125f1565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190612945565b611c4e565b005b34801561097657600080fd5b50610991600480360381019061098c9190612c3a565b611cab565b005b34801561099f57600080fd5b506109ba60048036038101906109b591906127e9565b611d45565b005b3480156109c857600080fd5b506109e360048036038101906109de91906127e9565b611dc8565b6040516109f09190612825565b60405180910390f35b348015610a0557600080fd5b50610a0e611de0565b604051610a1b9190612825565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aaf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610ac590612cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610af190612cb6565b8015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b6000610b5382611de6565b610b89576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd2826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff16610bf3611e45565b73ffffffffffffffffffffffffffffffffffffffff1614610c5657610c1f81610c1a611e45565b611bba565b610c55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b6000610d61611e4d565b6002546001540303905090565b6000610d7982611e56565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610de0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dec84611f22565b91509150610e028187610dfd611e45565b611f49565b610e4e57610e1786610e12611e45565b611bba565b610e4d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec18686866001611f8d565b8015610ecc57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f9a85610f76888887611f93565b7c020000000000000000000000000000000000000000000000000000000017611fbb565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611020576000600185019050600060056000838152602001908152602001600020540361101e57600154811461101d578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110888686866001611fe6565b505050505050565b600a5481565b600b5481565b6110b783838360405180602001604052806000815250611a6d565b505050565b6110c4611fec565b8181601691826110d5929190612e9e565b505050565b6110e2611fec565b8060138190555050565b60006110f782611e56565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611165576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111be611fec565b6111c8600061206a565b565b6111d2611fec565b8060108190555050565b6111e4611fec565b60004711611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612fba565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561126d573d6000803e3d6000fd5b50565b611278611a31565b6112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613026565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613092565b60405180910390fd5b61132e33610d0b565b61136d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611364906130fe565b60405180910390fd5b610bb881601454601554611381919061314d565b61138b919061314d565b11156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c3906131cd565b60405180910390fd5b60135481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461141a919061314d565b111561145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613239565b60405180910390fd5b601054816114699190613259565b3410156114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a2906132e7565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114fa919061314d565b925050819055508060146000828254611513919061314d565b92505081905550611524338261212e565b50565b61152f611fec565b81811015611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613379565b60405180910390fd5b8160098190555080600a819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546115bc90612cb6565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890612cb6565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b5050505050905090565b60155481565b61164d6119e3565b61168c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116839061340b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613092565b60405180910390fd5b610bb88160145460155461170e919061314d565b611718919061314d565b1115611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906131cd565b60405180910390fd5b60125481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a7919061314d565b11156117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613239565b60405180910390fd5b601154816117f69190613259565b341015611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613477565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611887919061314d565b9250508190555080601560008282546118a0919061314d565b925050819055506118b1338261212e565b50565b80600860006118c1611e45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196e611e45565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b391906125f1565b60405180910390a35050565b600c5481565b600e6020528060005260406000206000915090505481565b60115481565b6000806009541180156119f857506000600a54115b8015611a0657506009544210155b8015611a145750600a544211155b905090565b600f6020528060005260406000206000915090505481565b600080600b54118015611a4657506000600c54115b8015611a545750600b544210155b8015611a625750600c544211155b905090565b60135481565b611a78848484610d6e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ada57611aa3848484846122ea565b611ad9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611ae8611fec565b8060128190555050565b611afa611fec565b8060118190555050565b6060611b0f82611de6565b611b45576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b4f61243a565b90506000815103611b6f5760405180602001604052806000815250611b9a565b80611b79846124cc565b604051602001611b8a9291906134d3565b6040516020818303038152906040525b915050919050565b60145481565b60125481565b610bb881565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c56611fec565b81811015611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613569565b60405180910390fd5b81600b8190555080600c819055505050565b611cb3611fec565b60005b82829050811015611d40576001600d6000858585818110611cda57611cd9613589565b5b9050602002016020810190611cef91906127e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611d38906135b8565b915050611cb6565b505050565b611d4d611fec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613672565b60405180910390fd5b611dc58161206a565b50565b600d6020528060005260406000206000915090505481565b60105481565b600081611df1611e4d565b11158015611e00575060015482105b8015611e3e575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e65611e4d565b11611eeb57600154811015611eea5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ee8575b60008103611ede576005600083600190039350838152602001908152602001600020549050611eb4565b8092505050611f1d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611faa86868461251c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ff4612525565b73ffffffffffffffffffffffffffffffffffffffff16612012611584565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f906136de565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060015490506000820361216f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c6000848385611f8d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f3836121e46000866000611f93565b6121ed8561252d565b17611fbb565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461229457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612259565b50600082036122cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506122e56000848385611fe6565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612310611e45565b8786866040518563ffffffff1660e01b81526004016123329493929190613753565b6020604051808303816000875af192505050801561236e57506040513d601f19601f8201168201806040525081019061236b91906137b4565b60015b6123e7573d806000811461239e576040519150601f19603f3d011682016040523d82523d6000602084013e6123a3565b606091505b5060008151036123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606016805461244990612cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461247590612cb6565b80156124c25780601f10612497576101008083540402835291602001916124c2565b820191906000526020600020905b8154815290600101906020018083116124a557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561250757600184039350600a81066030018453600a81049050806124e5575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61258681612551565b811461259157600080fd5b50565b6000813590506125a38161257d565b92915050565b6000602082840312156125bf576125be612547565b5b60006125cd84828501612594565b91505092915050565b60008115159050919050565b6125eb816125d6565b82525050565b600060208201905061260660008301846125e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561264657808201518184015260208101905061262b565b60008484015250505050565b6000601f19601f8301169050919050565b600061266e8261260c565b6126788185612617565b9350612688818560208601612628565b61269181612652565b840191505092915050565b600060208201905081810360008301526126b68184612663565b905092915050565b6000819050919050565b6126d1816126be565b81146126dc57600080fd5b50565b6000813590506126ee816126c8565b92915050565b60006020828403121561270a57612709612547565b5b6000612718848285016126df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061274c82612721565b9050919050565b61275c81612741565b82525050565b60006020820190506127776000830184612753565b92915050565b61278681612741565b811461279157600080fd5b50565b6000813590506127a38161277d565b92915050565b600080604083850312156127c0576127bf612547565b5b60006127ce85828601612794565b92505060206127df858286016126df565b9150509250929050565b6000602082840312156127ff576127fe612547565b5b600061280d84828501612794565b91505092915050565b61281f816126be565b82525050565b600060208201905061283a6000830184612816565b92915050565b60008060006060848603121561285957612858612547565b5b600061286786828701612794565b935050602061287886828701612794565b9250506040612889868287016126df565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126128b8576128b7612893565b5b8235905067ffffffffffffffff8111156128d5576128d4612898565b5b6020830191508360018202830111156128f1576128f061289d565b5b9250929050565b6000806020838503121561290f5761290e612547565b5b600083013567ffffffffffffffff81111561292d5761292c61254c565b5b612939858286016128a2565b92509250509250929050565b6000806040838503121561295c5761295b612547565b5b600061296a858286016126df565b925050602061297b858286016126df565b9150509250929050565b61298e816125d6565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c7612547565b5b60006129d685828601612794565b92505060206129e78582860161299c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2e82612652565b810181811067ffffffffffffffff82111715612a4d57612a4c6129f6565b5b80604052505050565b6000612a6061253d565b9050612a6c8282612a25565b919050565b600067ffffffffffffffff821115612a8c57612a8b6129f6565b5b612a9582612652565b9050602081019050919050565b82818337600083830152505050565b6000612ac4612abf84612a71565b612a56565b905082815260208101848484011115612ae057612adf6129f1565b5b612aeb848285612aa2565b509392505050565b600082601f830112612b0857612b07612893565b5b8135612b18848260208601612ab1565b91505092915050565b60008060008060808587031215612b3b57612b3a612547565b5b6000612b4987828801612794565b9450506020612b5a87828801612794565b9350506040612b6b878288016126df565b925050606085013567ffffffffffffffff811115612b8c57612b8b61254c565b5b612b9887828801612af3565b91505092959194509250565b60008060408385031215612bbb57612bba612547565b5b6000612bc985828601612794565b9250506020612bda85828601612794565b9150509250929050565b60008083601f840112612bfa57612bf9612893565b5b8235905067ffffffffffffffff811115612c1757612c16612898565b5b602083019150836020820283011115612c3357612c3261289d565b5b9250929050565b60008060208385031215612c5157612c50612547565b5b600083013567ffffffffffffffff811115612c6f57612c6e61254c565b5b612c7b85828601612be4565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cce57607f821691505b602082108103612ce157612ce0612c87565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d17565b612d5e8683612d17565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d9b612d96612d91846126be565b612d76565b6126be565b9050919050565b6000819050919050565b612db583612d80565b612dc9612dc182612da2565b848454612d24565b825550505050565b600090565b612dde612dd1565b612de9818484612dac565b505050565b5b81811015612e0d57612e02600082612dd6565b600181019050612def565b5050565b601f821115612e5257612e2381612cf2565b612e2c84612d07565b81016020851015612e3b578190505b612e4f612e4785612d07565b830182612dee565b50505b505050565b600082821c905092915050565b6000612e7560001984600802612e57565b1980831691505092915050565b6000612e8e8383612e64565b9150826002028217905092915050565b612ea88383612ce7565b67ffffffffffffffff811115612ec157612ec06129f6565b5b612ecb8254612cb6565b612ed6828285612e11565b6000601f831160018114612f055760008415612ef3578287013590505b612efd8582612e82565b865550612f65565b601f198416612f1386612cf2565b60005b82811015612f3b57848901358255600182019150602085019450602081019050612f16565b86831015612f585784890135612f54601f891682612e64565b8355505b6001600288020188555050505b50505050505050565b7f57697468647261773a204e6f20616d6f756e7400000000000000000000000000600082015250565b6000612fa4601383612617565b9150612faf82612f6e565b602082019050919050565b60006020820190508181036000830152612fd381612f97565b9050919050565b7f5072652073616c65733a2053616c65206973206e6f7420616374697661746564600082015250565b6000613010602083612617565b915061301b82612fda565b602082019050919050565b6000602082019050818103600083015261303f81613003565b9050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b600061307c600983612617565b915061308782613046565b602082019050919050565b600060208201905081810360008301526130ab8161306f565b9050919050565b7f4e6f7420696e2077686974656c69737420796574210000000000000000000000600082015250565b60006130e8601583612617565b91506130f3826130b2565b602082019050919050565b60006020820190508181036000830152613117816130db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613158826126be565b9150613163836126be565b925082820190508082111561317b5761317a61311e565b5b92915050565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b60006131b7601783612617565b91506131c282613181565b602082019050919050565b600060208201905081810360008301526131e6816131aa565b9050919050565b7f457863656564206d6178206d696e7420706572206d696e746572210000000000600082015250565b6000613223601b83612617565b915061322e826131ed565b602082019050919050565b6000602082019050818103600083015261325281613216565b9050919050565b6000613264826126be565b915061326f836126be565b925082820261327d816126be565b915082820484148315176132945761329361311e565b5b5092915050565b7f496e73756666696369656e742045544821000000000000000000000000000000600082015250565b60006132d1601183612617565b91506132dc8261329b565b602082019050919050565b60006020820190508181036000830152613300816132c4565b9050919050565b7f5075626c69632073616c65733a20456e642074696d652073686f756c6420626560008201527f206c61746572207468616e2073746172742074696d6500000000000000000000602082015250565b6000613363603683612617565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b7f5075626c69632073616c65733a2053616c65206973206e6f742061637469766160008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006133f5602383612617565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b6000613461601083612617565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b600081905092915050565b60006134ad8261260c565b6134b78185613497565b93506134c7818560208601612628565b80840191505092915050565b60006134df82856134a2565b91506134eb82846134a2565b91508190509392505050565b7f5072652073616c65733a20456e642074696d652073686f756c64206265206c6160008201527f746572207468616e2073746172742074696d6500000000000000000000000000602082015250565b6000613553603383612617565b915061355e826134f7565b604082019050919050565b6000602082019050818103600083015261358281613546565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006135c3826126be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135f5576135f461311e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061365c602683612617565b915061366782613600565b604082019050919050565b6000602082019050818103600083015261368b8161364f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c8602083612617565b91506136d382613692565b602082019050919050565b600060208201905081810360008301526136f7816136bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613725826136fe565b61372f8185613709565b935061373f818560208601612628565b61374881612652565b840191505092915050565b60006080820190506137686000830187612753565b6137756020830186612753565b6137826040830185612816565b8181036060830152613794818461371a565b905095945050505050565b6000815190506137ae8161257d565b92915050565b6000602082840312156137ca576137c9612547565b5b60006137d88482850161379f565b9150509291505056fea26469706673582212209febdc2e13b4f52cbe0f5c69a5366ad4b64e0254e1b1adc86a649ba3a19a0f0564736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102725760003560e01c8063a0712d681161014f578063c6275255116100c1578063e985e9c51161007a578063e985e9c514610904578063ed39039b14610941578063edac985b1461096a578063f2fde38b14610993578063f7e78e9d146109bc578063fc1a1c36146109f957610272565b8063c6275255146107f2578063c87b56dd1461081b578063cdc63bb614610858578063d2f864a114610883578063dee816e6146108ae578063e6c3819c146108d957610272565b8063ae4384f111610113578063ae4384f1146106ef578063b4127db91461071a578063b7329d2b14610757578063b8314d8414610782578063b88d4fde146107ad578063c199d690146107c957610272565b8063a0712d6814610617578063a22cb46514610633578063a78a673f1461065c578063a8f8266814610687578063a945bf80146106c457610272565b8063585789c9116101e8578063853828b6116101ac578063853828b61461053a578063868ff4a2146105515780638b7ce6f71461056d5780638da5cb5b1461059657806395d89b41146105c15780639c123661146105ec57610272565b8063585789c9146104575780636352211e1461048057806370a08231146104bd578063715018a6146104fa578063717d57d31461051157610272565b806318160ddd1161023a57806318160ddd1461037557806323b872dd146103a057806326b391d0146103bc578063397d0c0c146103e757806342842e0e1461041257806355f804b31461042e57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806309fd821214610338575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906125a9565b610a24565b6040516102ab91906125f1565b60405180910390f35b3480156102c057600080fd5b506102c9610ab6565b6040516102d6919061269c565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906126f4565b610b48565b6040516103139190612762565b60405180910390f35b610336600480360381019061033191906127a9565b610bc7565b005b34801561034457600080fd5b5061035f600480360381019061035a91906127e9565b610d0b565b60405161036c91906125f1565b60405180910390f35b34801561038157600080fd5b5061038a610d57565b6040516103979190612825565b60405180910390f35b6103ba60048036038101906103b59190612840565b610d6e565b005b3480156103c857600080fd5b506103d1611090565b6040516103de9190612825565b60405180910390f35b3480156103f357600080fd5b506103fc611096565b6040516104099190612825565b60405180910390f35b61042c60048036038101906104279190612840565b61109c565b005b34801561043a57600080fd5b50610455600480360381019061045091906128f8565b6110bc565b005b34801561046357600080fd5b5061047e600480360381019061047991906126f4565b6110da565b005b34801561048c57600080fd5b506104a760048036038101906104a291906126f4565b6110ec565b6040516104b49190612762565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906127e9565b6110fe565b6040516104f19190612825565b60405180910390f35b34801561050657600080fd5b5061050f6111b6565b005b34801561051d57600080fd5b50610538600480360381019061053391906126f4565b6111ca565b005b34801561054657600080fd5b5061054f6111dc565b005b61056b600480360381019061056691906126f4565b611270565b005b34801561057957600080fd5b50610594600480360381019061058f9190612945565b611527565b005b3480156105a257600080fd5b506105ab611584565b6040516105b89190612762565b60405180910390f35b3480156105cd57600080fd5b506105d66115ad565b6040516105e3919061269c565b60405180910390f35b3480156105f857600080fd5b5061060161163f565b60405161060e9190612825565b60405180910390f35b610631600480360381019061062c91906126f4565b611645565b005b34801561063f57600080fd5b5061065a600480360381019061065591906129b1565b6118b4565b005b34801561066857600080fd5b506106716119bf565b60405161067e9190612825565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906127e9565b6119c5565b6040516106bb9190612825565b60405180910390f35b3480156106d057600080fd5b506106d96119dd565b6040516106e69190612825565b60405180910390f35b3480156106fb57600080fd5b506107046119e3565b60405161071191906125f1565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c91906127e9565b611a19565b60405161074e9190612825565b60405180910390f35b34801561076357600080fd5b5061076c611a31565b60405161077991906125f1565b60405180910390f35b34801561078e57600080fd5b50610797611a67565b6040516107a49190612825565b60405180910390f35b6107c760048036038101906107c29190612b21565b611a6d565b005b3480156107d557600080fd5b506107f060048036038101906107eb91906126f4565b611ae0565b005b3480156107fe57600080fd5b50610819600480360381019061081491906126f4565b611af2565b005b34801561082757600080fd5b50610842600480360381019061083d91906126f4565b611b04565b60405161084f919061269c565b60405180910390f35b34801561086457600080fd5b5061086d611ba2565b60405161087a9190612825565b60405180910390f35b34801561088f57600080fd5b50610898611ba8565b6040516108a59190612825565b60405180910390f35b3480156108ba57600080fd5b506108c3611bae565b6040516108d09190612825565b60405180910390f35b3480156108e557600080fd5b506108ee611bb4565b6040516108fb9190612825565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190612ba4565b611bba565b60405161093891906125f1565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190612945565b611c4e565b005b34801561097657600080fd5b50610991600480360381019061098c9190612c3a565b611cab565b005b34801561099f57600080fd5b506109ba60048036038101906109b591906127e9565b611d45565b005b3480156109c857600080fd5b506109e360048036038101906109de91906127e9565b611dc8565b6040516109f09190612825565b60405180910390f35b348015610a0557600080fd5b50610a0e611de0565b604051610a1b9190612825565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aaf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610ac590612cb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610af190612cb6565b8015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b6000610b5382611de6565b610b89576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd2826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff16610bf3611e45565b73ffffffffffffffffffffffffffffffffffffffff1614610c5657610c1f81610c1a611e45565b611bba565b610c55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b6000610d61611e4d565b6002546001540303905090565b6000610d7982611e56565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610de0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dec84611f22565b91509150610e028187610dfd611e45565b611f49565b610e4e57610e1786610e12611e45565b611bba565b610e4d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ec18686866001611f8d565b8015610ecc57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f9a85610f76888887611f93565b7c020000000000000000000000000000000000000000000000000000000017611fbb565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611020576000600185019050600060056000838152602001908152602001600020540361101e57600154811461101d578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110888686866001611fe6565b505050505050565b600a5481565b600b5481565b6110b783838360405180602001604052806000815250611a6d565b505050565b6110c4611fec565b8181601691826110d5929190612e9e565b505050565b6110e2611fec565b8060138190555050565b60006110f782611e56565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611165576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111be611fec565b6111c8600061206a565b565b6111d2611fec565b8060108190555050565b6111e4611fec565b60004711611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612fba565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561126d573d6000803e3d6000fd5b50565b611278611a31565b6112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613026565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c90613092565b60405180910390fd5b61132e33610d0b565b61136d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611364906130fe565b60405180910390fd5b610bb881601454601554611381919061314d565b61138b919061314d565b11156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c3906131cd565b60405180910390fd5b60135481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461141a919061314d565b111561145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613239565b60405180910390fd5b601054816114699190613259565b3410156114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a2906132e7565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114fa919061314d565b925050819055508060146000828254611513919061314d565b92505081905550611524338261212e565b50565b61152f611fec565b81811015611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613379565b60405180910390fd5b8160098190555080600a819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546115bc90612cb6565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890612cb6565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b5050505050905090565b60155481565b61164d6119e3565b61168c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116839061340b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613092565b60405180910390fd5b610bb88160145460155461170e919061314d565b611718919061314d565b1115611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906131cd565b60405180910390fd5b60125481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a7919061314d565b11156117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613239565b60405180910390fd5b601154816117f69190613259565b341015611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613477565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611887919061314d565b9250508190555080601560008282546118a0919061314d565b925050819055506118b1338261212e565b50565b80600860006118c1611e45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196e611e45565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b391906125f1565b60405180910390a35050565b600c5481565b600e6020528060005260406000206000915090505481565b60115481565b6000806009541180156119f857506000600a54115b8015611a0657506009544210155b8015611a145750600a544211155b905090565b600f6020528060005260406000206000915090505481565b600080600b54118015611a4657506000600c54115b8015611a545750600b544210155b8015611a625750600c544211155b905090565b60135481565b611a78848484610d6e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ada57611aa3848484846122ea565b611ad9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611ae8611fec565b8060128190555050565b611afa611fec565b8060118190555050565b6060611b0f82611de6565b611b45576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b4f61243a565b90506000815103611b6f5760405180602001604052806000815250611b9a565b80611b79846124cc565b604051602001611b8a9291906134d3565b6040516020818303038152906040525b915050919050565b60145481565b60125481565b610bb881565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c56611fec565b81811015611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613569565b60405180910390fd5b81600b8190555080600c819055505050565b611cb3611fec565b60005b82829050811015611d40576001600d6000858585818110611cda57611cd9613589565b5b9050602002016020810190611cef91906127e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611d38906135b8565b915050611cb6565b505050565b611d4d611fec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613672565b60405180910390fd5b611dc58161206a565b50565b600d6020528060005260406000206000915090505481565b60105481565b600081611df1611e4d565b11158015611e00575060015482105b8015611e3e575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e65611e4d565b11611eeb57600154811015611eea5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ee8575b60008103611ede576005600083600190039350838152602001908152602001600020549050611eb4565b8092505050611f1d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611faa86868461251c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ff4612525565b73ffffffffffffffffffffffffffffffffffffffff16612012611584565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f906136de565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060015490506000820361216f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c6000848385611f8d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121f3836121e46000866000611f93565b6121ed8561252d565b17611fbb565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461229457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612259565b50600082036122cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506122e56000848385611fe6565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612310611e45565b8786866040518563ffffffff1660e01b81526004016123329493929190613753565b6020604051808303816000875af192505050801561236e57506040513d601f19601f8201168201806040525081019061236b91906137b4565b60015b6123e7573d806000811461239e576040519150601f19603f3d011682016040523d82523d6000602084013e6123a3565b606091505b5060008151036123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606016805461244990612cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461247590612cb6565b80156124c25780601f10612497576101008083540402835291602001916124c2565b820191906000526020600020905b8154815290600101906020018083116124a557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561250757600184039350600a81066030018453600a81049050806124e5575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61258681612551565b811461259157600080fd5b50565b6000813590506125a38161257d565b92915050565b6000602082840312156125bf576125be612547565b5b60006125cd84828501612594565b91505092915050565b60008115159050919050565b6125eb816125d6565b82525050565b600060208201905061260660008301846125e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561264657808201518184015260208101905061262b565b60008484015250505050565b6000601f19601f8301169050919050565b600061266e8261260c565b6126788185612617565b9350612688818560208601612628565b61269181612652565b840191505092915050565b600060208201905081810360008301526126b68184612663565b905092915050565b6000819050919050565b6126d1816126be565b81146126dc57600080fd5b50565b6000813590506126ee816126c8565b92915050565b60006020828403121561270a57612709612547565b5b6000612718848285016126df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061274c82612721565b9050919050565b61275c81612741565b82525050565b60006020820190506127776000830184612753565b92915050565b61278681612741565b811461279157600080fd5b50565b6000813590506127a38161277d565b92915050565b600080604083850312156127c0576127bf612547565b5b60006127ce85828601612794565b92505060206127df858286016126df565b9150509250929050565b6000602082840312156127ff576127fe612547565b5b600061280d84828501612794565b91505092915050565b61281f816126be565b82525050565b600060208201905061283a6000830184612816565b92915050565b60008060006060848603121561285957612858612547565b5b600061286786828701612794565b935050602061287886828701612794565b9250506040612889868287016126df565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126128b8576128b7612893565b5b8235905067ffffffffffffffff8111156128d5576128d4612898565b5b6020830191508360018202830111156128f1576128f061289d565b5b9250929050565b6000806020838503121561290f5761290e612547565b5b600083013567ffffffffffffffff81111561292d5761292c61254c565b5b612939858286016128a2565b92509250509250929050565b6000806040838503121561295c5761295b612547565b5b600061296a858286016126df565b925050602061297b858286016126df565b9150509250929050565b61298e816125d6565b811461299957600080fd5b50565b6000813590506129ab81612985565b92915050565b600080604083850312156129c8576129c7612547565b5b60006129d685828601612794565b92505060206129e78582860161299c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2e82612652565b810181811067ffffffffffffffff82111715612a4d57612a4c6129f6565b5b80604052505050565b6000612a6061253d565b9050612a6c8282612a25565b919050565b600067ffffffffffffffff821115612a8c57612a8b6129f6565b5b612a9582612652565b9050602081019050919050565b82818337600083830152505050565b6000612ac4612abf84612a71565b612a56565b905082815260208101848484011115612ae057612adf6129f1565b5b612aeb848285612aa2565b509392505050565b600082601f830112612b0857612b07612893565b5b8135612b18848260208601612ab1565b91505092915050565b60008060008060808587031215612b3b57612b3a612547565b5b6000612b4987828801612794565b9450506020612b5a87828801612794565b9350506040612b6b878288016126df565b925050606085013567ffffffffffffffff811115612b8c57612b8b61254c565b5b612b9887828801612af3565b91505092959194509250565b60008060408385031215612bbb57612bba612547565b5b6000612bc985828601612794565b9250506020612bda85828601612794565b9150509250929050565b60008083601f840112612bfa57612bf9612893565b5b8235905067ffffffffffffffff811115612c1757612c16612898565b5b602083019150836020820283011115612c3357612c3261289d565b5b9250929050565b60008060208385031215612c5157612c50612547565b5b600083013567ffffffffffffffff811115612c6f57612c6e61254c565b5b612c7b85828601612be4565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cce57607f821691505b602082108103612ce157612ce0612c87565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d17565b612d5e8683612d17565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d9b612d96612d91846126be565b612d76565b6126be565b9050919050565b6000819050919050565b612db583612d80565b612dc9612dc182612da2565b848454612d24565b825550505050565b600090565b612dde612dd1565b612de9818484612dac565b505050565b5b81811015612e0d57612e02600082612dd6565b600181019050612def565b5050565b601f821115612e5257612e2381612cf2565b612e2c84612d07565b81016020851015612e3b578190505b612e4f612e4785612d07565b830182612dee565b50505b505050565b600082821c905092915050565b6000612e7560001984600802612e57565b1980831691505092915050565b6000612e8e8383612e64565b9150826002028217905092915050565b612ea88383612ce7565b67ffffffffffffffff811115612ec157612ec06129f6565b5b612ecb8254612cb6565b612ed6828285612e11565b6000601f831160018114612f055760008415612ef3578287013590505b612efd8582612e82565b865550612f65565b601f198416612f1386612cf2565b60005b82811015612f3b57848901358255600182019150602085019450602081019050612f16565b86831015612f585784890135612f54601f891682612e64565b8355505b6001600288020188555050505b50505050505050565b7f57697468647261773a204e6f20616d6f756e7400000000000000000000000000600082015250565b6000612fa4601383612617565b9150612faf82612f6e565b602082019050919050565b60006020820190508181036000830152612fd381612f97565b9050919050565b7f5072652073616c65733a2053616c65206973206e6f7420616374697661746564600082015250565b6000613010602083612617565b915061301b82612fda565b602082019050919050565b6000602082019050818103600083015261303f81613003565b9050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b600061307c600983612617565b915061308782613046565b602082019050919050565b600060208201905081810360008301526130ab8161306f565b9050919050565b7f4e6f7420696e2077686974656c69737420796574210000000000000000000000600082015250565b60006130e8601583612617565b91506130f3826130b2565b602082019050919050565b60006020820190508181036000830152613117816130db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613158826126be565b9150613163836126be565b925082820190508082111561317b5761317a61311e565b5b92915050565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b60006131b7601783612617565b91506131c282613181565b602082019050919050565b600060208201905081810360008301526131e6816131aa565b9050919050565b7f457863656564206d6178206d696e7420706572206d696e746572210000000000600082015250565b6000613223601b83612617565b915061322e826131ed565b602082019050919050565b6000602082019050818103600083015261325281613216565b9050919050565b6000613264826126be565b915061326f836126be565b925082820261327d816126be565b915082820484148315176132945761329361311e565b5b5092915050565b7f496e73756666696369656e742045544821000000000000000000000000000000600082015250565b60006132d1601183612617565b91506132dc8261329b565b602082019050919050565b60006020820190508181036000830152613300816132c4565b9050919050565b7f5075626c69632073616c65733a20456e642074696d652073686f756c6420626560008201527f206c61746572207468616e2073746172742074696d6500000000000000000000602082015250565b6000613363603683612617565b915061336e82613307565b604082019050919050565b6000602082019050818103600083015261339281613356565b9050919050565b7f5075626c69632073616c65733a2053616c65206973206e6f742061637469766160008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006133f5602383612617565b915061340082613399565b604082019050919050565b60006020820190508181036000830152613424816133e8565b9050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b6000613461601083612617565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b600081905092915050565b60006134ad8261260c565b6134b78185613497565b93506134c7818560208601612628565b80840191505092915050565b60006134df82856134a2565b91506134eb82846134a2565b91508190509392505050565b7f5072652073616c65733a20456e642074696d652073686f756c64206265206c6160008201527f746572207468616e2073746172742074696d6500000000000000000000000000602082015250565b6000613553603383612617565b915061355e826134f7565b604082019050919050565b6000602082019050818103600083015261358281613546565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006135c3826126be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135f5576135f461311e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061365c602683612617565b915061366782613600565b604082019050919050565b6000602082019050818103600083015261368b8161364f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c8602083612617565b91506136d382613692565b602082019050919050565b600060208201905081810360008301526136f7816136bb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613725826136fe565b61372f8185613709565b935061373f818560208601612628565b61374881612652565b840191505092915050565b60006080820190506137686000830187612753565b6137756020830186612753565b6137826040830185612816565b8181036060830152613794818461371a565b905095945050505050565b6000815190506137ae8161257d565b92915050565b6000602082840312156137ca576137c9612547565b5b60006137d88482850161379f565b9150509291505056fea26469706673582212209febdc2e13b4f52cbe0f5c69a5366ad4b64e0254e1b1adc86a649ba3a19a0f0564736f6c63430008120033
Deployed Bytecode Sourcemap
256:4133:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;562:117:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;272:33:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;340:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22758:187:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4049:104:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3238:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;3396:102:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3724:178;;;;;;;;;;;;;:::i;:::-;;1338:887;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;557:307:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1114:39:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2250:732;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;405:30:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;535:61:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;738:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;903:267:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;602:58:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2019:252:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;951:46:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23526:396:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3048:121:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3532:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:42:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;831:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;424:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;201:35:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1478:315:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;331:193:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;239:51:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;690:42:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:6;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;15812:398::-;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;562:117:5:-;621:4;671:1;643:16;:24;660:6;643:24;;;;;;;;;;;;;;;;:29;636:36;;562:117;;;:::o;5894:317:6:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::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;272:33:4:-;;;;:::o;340:32::-;;;;:::o;22758:187:6:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;4049:104:3:-;1094:13:0;:11;:13::i;:::-;4139:7:3::1;;4123:13;:23;;;;;;;:::i;:::-;;4049:104:::0;;:::o;3238:117::-;1094:13:0;:11;:13::i;:::-;3344:4:3::1;3315:26;:33;;;;3238:117:::0;:::o;11391:150:6:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;7045:230::-;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;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3396:102:3:-;1094:13:0;:11;:13::i;:::-;3485:6:3::1;3468:14;:23;;;;3396:102:::0;:::o;3724:178::-;1094:13:0;:11;:13::i;:::-;3809:1:3::1;3785:21;:25;3777:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3852:10;3844:28;;:51;3873:21;3844:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3724:178::o:0;1338:887::-;1886:21:4;:19;:21::i;:::-;1865:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4345:10:3::1;4332:23;;:9;:23;;;4324:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;1493:25:::2;1507:10;1493:13;:25::i;:::-;1472:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;464:4;1645:8;1619:23;;1596:20;;:46;;;;:::i;:::-;:57;;;;:::i;:::-;:74;;1575:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;1803:26;;1791:8;1750:26;:38;1777:10;1750:38;;;;;;;;;;;;;;;;:49;;;;:::i;:::-;:79;;1729:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;1937:14;;1926:8;:25;;;;:::i;:::-;1913:9;:38;;1892:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;2091:8;2049:26;:38;2076:10;2049:38;;;;;;;;;;;;;;;;:50;;;;;;;:::i;:::-;;;;;;;;2136:8;2109:23;;:35;;;;;;;:::i;:::-;;;;;;;;2190:27;2196:10;2208:8;2190:5;:27::i;:::-;1338:887:::0;:::o;557:307:4:-;1094:13:0;:11;:13::i;:::-;685:10:4::1;673:8;:22;;652:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;808:10;785:20;:33;;;;849:8;828:18;:29;;;;557:307:::0;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:6:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;1114:39:3:-;;;;:::o;2250:732::-;1282:24:4;:22;:24::i;:::-;1261:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;4345:10:3::1;4332:23;;:9;:23;;;4324:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;464:4:::2;2448:8;2422:23;;2399:20;;:46;;;;:::i;:::-;:57;;;;:::i;:::-;:74;;2378:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;2603:28;;2591:8;2553:23;:35;2577:10;2553:35;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:78;;2532:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;2739:11;;2728:8;:22;;;;:::i;:::-;2715:9;:35;;2694:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;2886:8;2847:23;:35;2871:10;2847:35;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;2928:8;2904:20;;:32;;;;;;;:::i;:::-;;;;;;;;2947:27;2953:10;2965:8;2947:5;:27::i;:::-;2250:732:::0;:::o;16901:231:6:-;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;405:30:4:-;;;;:::o;535:61:3:-;;;;;;;;;;;;;;;;;:::o;738:39::-;;;;:::o;903:267:4:-;958:4;1016:1;993:20;;:24;:62;;;;;1054:1;1033:18;;:22;993:62;:117;;;;;1090:20;;1071:15;:39;;993:117;:170;;;;;1145:18;;1126:15;:37;;993:170;974:189;;903:267;:::o;602:58:3:-;;;;;;;;;;;;;;;;;:::o;2019:252:4:-;2071:4;2126:1;2106:17;;:21;:56;;;;;2161:1;2143:15;;:19;2106:56;:108;;;;;2197:17;;2178:15;:36;;2106:108;:158;;;;;2249:15;;2230;:34;;2106:158;2087:177;;2019:252;:::o;951:46:3:-;;;;:::o;23526:396:6:-;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;3048:121:3:-;1094:13:0;:11;:13::i;:::-;3158:4:3::1;3127:28;:35;;;;3048:121:::0;:::o;3532:96::-;1094:13:0;:11;:13::i;:::-;3615:6:3::1;3601:11;:20;;;;3532:96:::0;:::o;10411:313:6:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;1036:42:3:-;;;;:::o;831:48::-;;;;:::o;424:44::-;464:4;424:44;:::o;201:35:4:-;;;;:::o;17282:162:6:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;1478:315:4:-;1094:13:0;:11;:13::i;:::-;1623:10:4::1;1611:8;:22;;1590:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;1740:10;1720:17;:30;;;;1778:8;1760:15;:26;;;;1478:315:::0;;:::o;331:193:5:-;1094:13:0;:11;:13::i;:::-;417:9:5::1;412:106;436:9;;:16;;432:1;:20;412:106;;;506:1;473:16;:30;490:9;;500:1;490:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;473:30;;;;;;;;;;;;;;;:34;;;;454:3;;;;;:::i;:::-;;;;412:106;;;;331:193:::0;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;239:51:5:-;;;;;;;;;;;;;;;;;:::o;690:42:3:-;;;;:::o;17693:277:6:-;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;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;4159:99:3:-;4224:7;4250:1;4243:8;;4159:99;:::o;12515:1249:6:-;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;18828:474::-;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;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:187::-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;27091:2902:6:-;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;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;3931:112:3:-;3991:13;4023;4016:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931:112;:::o;39637:1708:6:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;14837:318:6:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;7:75:8:-;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:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:117;6557:1;6554;6547:12;6585:553;6643:8;6653:6;6703:3;6696:4;6688:6;6684:17;6680:27;6670:122;;6711:79;;:::i;:::-;6670:122;6824:6;6811:20;6801:30;;6854:18;6846:6;6843:30;6840:117;;;6876:79;;:::i;:::-;6840:117;6990:4;6982:6;6978:17;6966:29;;7044:3;7036:4;7028:6;7024:17;7014:8;7010:32;7007:41;7004:128;;;7051:79;;:::i;:::-;7004:128;6585:553;;;;;:::o;7144:529::-;7215:6;7223;7272:2;7260:9;7251:7;7247:23;7243:32;7240:119;;;7278:79;;:::i;:::-;7240:119;7426:1;7415:9;7411:17;7398:31;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7591:65;7648:7;7639:6;7628:9;7624:22;7591:65;:::i;:::-;7573:83;;;;7369:297;7144:529;;;;;:::o;7679:474::-;7747:6;7755;7804:2;7792:9;7783:7;7779:23;7775:32;7772:119;;;7810:79;;:::i;:::-;7772:119;7930:1;7955:53;8000:7;7991:6;7980:9;7976:22;7955:53;:::i;:::-;7945:63;;7901:117;8057:2;8083:53;8128:7;8119:6;8108:9;8104:22;8083:53;:::i;:::-;8073:63;;8028:118;7679:474;;;;;:::o;8159:116::-;8229:21;8244:5;8229:21;:::i;:::-;8222:5;8219:32;8209:60;;8265:1;8262;8255:12;8209:60;8159:116;:::o;8281:133::-;8324:5;8362:6;8349:20;8340:29;;8378:30;8402:5;8378:30;:::i;:::-;8281:133;;;;:::o;8420:468::-;8485:6;8493;8542:2;8530:9;8521:7;8517:23;8513:32;8510:119;;;8548:79;;:::i;:::-;8510:119;8668:1;8693:53;8738:7;8729:6;8718:9;8714:22;8693:53;:::i;:::-;8683:63;;8639:117;8795:2;8821:50;8863:7;8854:6;8843:9;8839:22;8821:50;:::i;:::-;8811:60;;8766:115;8420:468;;;;;:::o;8894:117::-;9003:1;9000;8993:12;9017:180;9065:77;9062:1;9055:88;9162:4;9159:1;9152:15;9186:4;9183:1;9176:15;9203:281;9286:27;9308:4;9286:27;:::i;:::-;9278:6;9274:40;9416:6;9404:10;9401:22;9380:18;9368:10;9365:34;9362:62;9359:88;;;9427:18;;:::i;:::-;9359:88;9467:10;9463:2;9456:22;9246:238;9203:281;;:::o;9490:129::-;9524:6;9551:20;;:::i;:::-;9541:30;;9580:33;9608:4;9600:6;9580:33;:::i;:::-;9490:129;;;:::o;9625:307::-;9686:4;9776:18;9768:6;9765:30;9762:56;;;9798:18;;:::i;:::-;9762:56;9836:29;9858:6;9836:29;:::i;:::-;9828:37;;9920:4;9914;9910:15;9902:23;;9625:307;;;:::o;9938:146::-;10035:6;10030:3;10025;10012:30;10076:1;10067:6;10062:3;10058:16;10051:27;9938:146;;;:::o;10090:423::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:54;10500:6;10495:3;10490;10453:54;:::i;:::-;10173:340;10090:423;;;;;:::o;10532:338::-;10587:5;10636:3;10629:4;10621:6;10617:17;10613:27;10603:122;;10644:79;;:::i;:::-;10603:122;10761:6;10748:20;10786:78;10860:3;10852:6;10845:4;10837:6;10833:17;10786:78;:::i;:::-;10777:87;;10593:277;10532:338;;;;:::o;10876:943::-;10971:6;10979;10987;10995;11044:3;11032:9;11023:7;11019:23;11015:33;11012:120;;;11051:79;;:::i;:::-;11012:120;11171:1;11196:53;11241:7;11232:6;11221:9;11217:22;11196:53;:::i;:::-;11186:63;;11142:117;11298:2;11324:53;11369:7;11360:6;11349:9;11345:22;11324:53;:::i;:::-;11314:63;;11269:118;11426:2;11452:53;11497:7;11488:6;11477:9;11473:22;11452:53;:::i;:::-;11442:63;;11397:118;11582:2;11571:9;11567:18;11554:32;11613:18;11605:6;11602:30;11599:117;;;11635:79;;:::i;:::-;11599:117;11740:62;11794:7;11785:6;11774:9;11770:22;11740:62;:::i;:::-;11730:72;;11525:287;10876:943;;;;;;;:::o;11825:474::-;11893:6;11901;11950:2;11938:9;11929:7;11925:23;11921:32;11918:119;;;11956:79;;:::i;:::-;11918:119;12076:1;12101:53;12146:7;12137:6;12126:9;12122:22;12101:53;:::i;:::-;12091:63;;12047:117;12203:2;12229:53;12274:7;12265:6;12254:9;12250:22;12229:53;:::i;:::-;12219:63;;12174:118;11825:474;;;;;:::o;12322:568::-;12395:8;12405:6;12455:3;12448:4;12440:6;12436:17;12432:27;12422:122;;12463:79;;:::i;:::-;12422:122;12576:6;12563:20;12553:30;;12606:18;12598:6;12595:30;12592:117;;;12628:79;;:::i;:::-;12592:117;12742:4;12734:6;12730:17;12718:29;;12796:3;12788:4;12780:6;12776:17;12766:8;12762:32;12759:41;12756:128;;;12803:79;;:::i;:::-;12756:128;12322:568;;;;;:::o;12896:559::-;12982:6;12990;13039:2;13027:9;13018:7;13014:23;13010:32;13007:119;;;13045:79;;:::i;:::-;13007:119;13193:1;13182:9;13178:17;13165:31;13223:18;13215:6;13212:30;13209:117;;;13245:79;;:::i;:::-;13209:117;13358:80;13430:7;13421:6;13410:9;13406:22;13358:80;:::i;:::-;13340:98;;;;13136:312;12896:559;;;;;:::o;13461:180::-;13509:77;13506:1;13499:88;13606:4;13603:1;13596:15;13630:4;13627:1;13620:15;13647:320;13691:6;13728:1;13722:4;13718:12;13708:22;;13775:1;13769:4;13765:12;13796:18;13786:81;;13852:4;13844:6;13840:17;13830:27;;13786:81;13914:2;13906:6;13903:14;13883:18;13880:38;13877:84;;13933:18;;:::i;:::-;13877:84;13698:269;13647:320;;;:::o;13973:97::-;14032:6;14060:3;14050:13;;13973:97;;;;:::o;14076:141::-;14125:4;14148:3;14140:11;;14171:3;14168:1;14161:14;14205:4;14202:1;14192:18;14184:26;;14076:141;;;:::o;14223:93::-;14260:6;14307:2;14302;14295:5;14291:14;14287:23;14277:33;;14223:93;;;:::o;14322:107::-;14366:8;14416:5;14410:4;14406:16;14385:37;;14322:107;;;;:::o;14435:393::-;14504:6;14554:1;14542:10;14538:18;14577:97;14607:66;14596:9;14577:97;:::i;:::-;14695:39;14725:8;14714:9;14695:39;:::i;:::-;14683:51;;14767:4;14763:9;14756:5;14752:21;14743:30;;14816:4;14806:8;14802:19;14795:5;14792:30;14782:40;;14511:317;;14435:393;;;;;:::o;14834:60::-;14862:3;14883:5;14876:12;;14834:60;;;:::o;14900:142::-;14950:9;14983:53;15001:34;15010:24;15028:5;15010:24;:::i;:::-;15001:34;:::i;:::-;14983:53;:::i;:::-;14970:66;;14900:142;;;:::o;15048:75::-;15091:3;15112:5;15105:12;;15048:75;;;:::o;15129:269::-;15239:39;15270:7;15239:39;:::i;:::-;15300:91;15349:41;15373:16;15349:41;:::i;:::-;15341:6;15334:4;15328:11;15300:91;:::i;:::-;15294:4;15287:105;15205:193;15129:269;;;:::o;15404:73::-;15449:3;15404:73;:::o;15483:189::-;15560:32;;:::i;:::-;15601:65;15659:6;15651;15645:4;15601:65;:::i;:::-;15536:136;15483:189;;:::o;15678:186::-;15738:120;15755:3;15748:5;15745:14;15738:120;;;15809:39;15846:1;15839:5;15809:39;:::i;:::-;15782:1;15775:5;15771:13;15762:22;;15738:120;;;15678:186;;:::o;15870:543::-;15971:2;15966:3;15963:11;15960:446;;;16005:38;16037:5;16005:38;:::i;:::-;16089:29;16107:10;16089:29;:::i;:::-;16079:8;16075:44;16272:2;16260:10;16257:18;16254:49;;;16293:8;16278:23;;16254:49;16316:80;16372:22;16390:3;16372:22;:::i;:::-;16362:8;16358:37;16345:11;16316:80;:::i;:::-;15975:431;;15960:446;15870:543;;;:::o;16419:117::-;16473:8;16523:5;16517:4;16513:16;16492:37;;16419:117;;;;:::o;16542:169::-;16586:6;16619:51;16667:1;16663:6;16655:5;16652:1;16648:13;16619:51;:::i;:::-;16615:56;16700:4;16694;16690:15;16680:25;;16593:118;16542:169;;;;:::o;16716:295::-;16792:4;16938:29;16963:3;16957:4;16938:29;:::i;:::-;16930:37;;17000:3;16997:1;16993:11;16987:4;16984:21;16976:29;;16716:295;;;;:::o;17016:1403::-;17140:44;17180:3;17175;17140:44;:::i;:::-;17249:18;17241:6;17238:30;17235:56;;;17271:18;;:::i;:::-;17235:56;17315:38;17347:4;17341:11;17315:38;:::i;:::-;17400:67;17460:6;17452;17446:4;17400:67;:::i;:::-;17494:1;17523:2;17515:6;17512:14;17540:1;17535:632;;;;18211:1;18228:6;18225:84;;;18284:9;18279:3;18275:19;18262:33;18253:42;;18225:84;18335:67;18395:6;18388:5;18335:67;:::i;:::-;18329:4;18322:81;18184:229;17505:908;;17535:632;17587:4;17583:9;17575:6;17571:22;17621:37;17653:4;17621:37;:::i;:::-;17680:1;17694:215;17708:7;17705:1;17702:14;17694:215;;;17794:9;17789:3;17785:19;17772:33;17764:6;17757:49;17845:1;17837:6;17833:14;17823:24;;17892:2;17881:9;17877:18;17864:31;;17731:4;17728:1;17724:12;17719:17;;17694:215;;;17937:6;17928:7;17925:19;17922:186;;;18002:9;17997:3;17993:19;17980:33;18045:48;18087:4;18079:6;18075:17;18064:9;18045:48;:::i;:::-;18037:6;18030:64;17945:163;17922:186;18154:1;18150;18142:6;18138:14;18134:22;18128:4;18121:36;17542:625;;;17505:908;;17115:1304;;;17016:1403;;;:::o;18425:169::-;18565:21;18561:1;18553:6;18549:14;18542:45;18425:169;:::o;18600:366::-;18742:3;18763:67;18827:2;18822:3;18763:67;:::i;:::-;18756:74;;18839:93;18928:3;18839:93;:::i;:::-;18957:2;18952:3;18948:12;18941:19;;18600:366;;;:::o;18972:419::-;19138:4;19176:2;19165:9;19161:18;19153:26;;19225:9;19219:4;19215:20;19211:1;19200:9;19196:17;19189:47;19253:131;19379:4;19253:131;:::i;:::-;19245:139;;18972:419;;;:::o;19397:182::-;19537:34;19533:1;19525:6;19521:14;19514:58;19397:182;:::o;19585:366::-;19727:3;19748:67;19812:2;19807:3;19748:67;:::i;:::-;19741:74;;19824:93;19913:3;19824:93;:::i;:::-;19942:2;19937:3;19933:12;19926:19;;19585:366;;;:::o;19957:419::-;20123:4;20161:2;20150:9;20146:18;20138:26;;20210:9;20204:4;20200:20;20196:1;20185:9;20181:17;20174:47;20238:131;20364:4;20238:131;:::i;:::-;20230:139;;19957:419;;;:::o;20382:159::-;20522:11;20518:1;20510:6;20506:14;20499:35;20382:159;:::o;20547:365::-;20689:3;20710:66;20774:1;20769:3;20710:66;:::i;:::-;20703:73;;20785:93;20874:3;20785:93;:::i;:::-;20903:2;20898:3;20894:12;20887:19;;20547:365;;;:::o;20918:419::-;21084:4;21122:2;21111:9;21107:18;21099:26;;21171:9;21165:4;21161:20;21157:1;21146:9;21142:17;21135:47;21199:131;21325:4;21199:131;:::i;:::-;21191:139;;20918:419;;;:::o;21343:171::-;21483:23;21479:1;21471:6;21467:14;21460:47;21343:171;:::o;21520:366::-;21662:3;21683:67;21747:2;21742:3;21683:67;:::i;:::-;21676:74;;21759:93;21848:3;21759:93;:::i;:::-;21877:2;21872:3;21868:12;21861:19;;21520:366;;;:::o;21892:419::-;22058:4;22096:2;22085:9;22081:18;22073:26;;22145:9;22139:4;22135:20;22131:1;22120:9;22116:17;22109:47;22173:131;22299:4;22173:131;:::i;:::-;22165:139;;21892:419;;;:::o;22317:180::-;22365:77;22362:1;22355:88;22462:4;22459:1;22452:15;22486:4;22483:1;22476:15;22503:191;22543:3;22562:20;22580:1;22562:20;:::i;:::-;22557:25;;22596:20;22614:1;22596:20;:::i;:::-;22591:25;;22639:1;22636;22632:9;22625:16;;22660:3;22657:1;22654:10;22651:36;;;22667:18;;:::i;:::-;22651:36;22503:191;;;;:::o;22700:173::-;22840:25;22836:1;22828:6;22824:14;22817:49;22700:173;:::o;22879:366::-;23021:3;23042:67;23106:2;23101:3;23042:67;:::i;:::-;23035:74;;23118:93;23207:3;23118:93;:::i;:::-;23236:2;23231:3;23227:12;23220:19;;22879:366;;;:::o;23251:419::-;23417:4;23455:2;23444:9;23440:18;23432:26;;23504:9;23498:4;23494:20;23490:1;23479:9;23475:17;23468:47;23532:131;23658:4;23532:131;:::i;:::-;23524:139;;23251:419;;;:::o;23676:177::-;23816:29;23812:1;23804:6;23800:14;23793:53;23676:177;:::o;23859:366::-;24001:3;24022:67;24086:2;24081:3;24022:67;:::i;:::-;24015:74;;24098:93;24187:3;24098:93;:::i;:::-;24216:2;24211:3;24207:12;24200:19;;23859:366;;;:::o;24231:419::-;24397:4;24435:2;24424:9;24420:18;24412:26;;24484:9;24478:4;24474:20;24470:1;24459:9;24455:17;24448:47;24512:131;24638:4;24512:131;:::i;:::-;24504:139;;24231:419;;;:::o;24656:410::-;24696:7;24719:20;24737:1;24719:20;:::i;:::-;24714:25;;24753:20;24771:1;24753:20;:::i;:::-;24748:25;;24808:1;24805;24801:9;24830:30;24848:11;24830:30;:::i;:::-;24819:41;;25009:1;25000:7;24996:15;24993:1;24990:22;24970:1;24963:9;24943:83;24920:139;;25039:18;;:::i;:::-;24920:139;24704:362;24656:410;;;;:::o;25072:167::-;25212:19;25208:1;25200:6;25196:14;25189:43;25072:167;:::o;25245:366::-;25387:3;25408:67;25472:2;25467:3;25408:67;:::i;:::-;25401:74;;25484:93;25573:3;25484:93;:::i;:::-;25602:2;25597:3;25593:12;25586:19;;25245:366;;;:::o;25617:419::-;25783:4;25821:2;25810:9;25806:18;25798:26;;25870:9;25864:4;25860:20;25856:1;25845:9;25841:17;25834:47;25898:131;26024:4;25898:131;:::i;:::-;25890:139;;25617:419;;;:::o;26042:241::-;26182:34;26178:1;26170:6;26166:14;26159:58;26251:24;26246:2;26238:6;26234:15;26227:49;26042:241;:::o;26289:366::-;26431:3;26452:67;26516:2;26511:3;26452:67;:::i;:::-;26445:74;;26528:93;26617:3;26528:93;:::i;:::-;26646:2;26641:3;26637:12;26630:19;;26289:366;;;:::o;26661:419::-;26827:4;26865:2;26854:9;26850:18;26842:26;;26914:9;26908:4;26904:20;26900:1;26889:9;26885:17;26878:47;26942:131;27068:4;26942:131;:::i;:::-;26934:139;;26661:419;;;:::o;27086:222::-;27226:34;27222:1;27214:6;27210:14;27203:58;27295:5;27290:2;27282:6;27278:15;27271:30;27086:222;:::o;27314:366::-;27456:3;27477:67;27541:2;27536:3;27477:67;:::i;:::-;27470:74;;27553:93;27642:3;27553:93;:::i;:::-;27671:2;27666:3;27662:12;27655:19;;27314:366;;;:::o;27686:419::-;27852:4;27890:2;27879:9;27875:18;27867:26;;27939:9;27933:4;27929:20;27925:1;27914:9;27910:17;27903:47;27967:131;28093:4;27967:131;:::i;:::-;27959:139;;27686:419;;;:::o;28111:166::-;28251:18;28247:1;28239:6;28235:14;28228:42;28111:166;:::o;28283:366::-;28425:3;28446:67;28510:2;28505:3;28446:67;:::i;:::-;28439:74;;28522:93;28611:3;28522:93;:::i;:::-;28640:2;28635:3;28631:12;28624:19;;28283:366;;;:::o;28655:419::-;28821:4;28859:2;28848:9;28844:18;28836:26;;28908:9;28902:4;28898:20;28894:1;28883:9;28879:17;28872:47;28936:131;29062:4;28936:131;:::i;:::-;28928:139;;28655:419;;;:::o;29080:148::-;29182:11;29219:3;29204:18;;29080:148;;;;:::o;29234:390::-;29340:3;29368:39;29401:5;29368:39;:::i;:::-;29423:89;29505:6;29500:3;29423:89;:::i;:::-;29416:96;;29521:65;29579:6;29574:3;29567:4;29560:5;29556:16;29521:65;:::i;:::-;29611:6;29606:3;29602:16;29595:23;;29344:280;29234:390;;;;:::o;29630:435::-;29810:3;29832:95;29923:3;29914:6;29832:95;:::i;:::-;29825:102;;29944:95;30035:3;30026:6;29944:95;:::i;:::-;29937:102;;30056:3;30049:10;;29630:435;;;;;:::o;30071:238::-;30211:34;30207:1;30199:6;30195:14;30188:58;30280:21;30275:2;30267:6;30263:15;30256:46;30071:238;:::o;30315:366::-;30457:3;30478:67;30542:2;30537:3;30478:67;:::i;:::-;30471:74;;30554:93;30643:3;30554:93;:::i;:::-;30672:2;30667:3;30663:12;30656:19;;30315:366;;;:::o;30687:419::-;30853:4;30891:2;30880:9;30876:18;30868:26;;30940:9;30934:4;30930:20;30926:1;30915:9;30911:17;30904:47;30968:131;31094:4;30968:131;:::i;:::-;30960:139;;30687:419;;;:::o;31112:180::-;31160:77;31157:1;31150:88;31257:4;31254:1;31247:15;31281:4;31278:1;31271:15;31298:233;31337:3;31360:24;31378:5;31360:24;:::i;:::-;31351:33;;31406:66;31399:5;31396:77;31393:103;;31476:18;;:::i;:::-;31393:103;31523:1;31516:5;31512:13;31505:20;;31298:233;;;:::o;31537:225::-;31677:34;31673:1;31665:6;31661:14;31654:58;31746:8;31741:2;31733:6;31729:15;31722:33;31537:225;:::o;31768:366::-;31910:3;31931:67;31995:2;31990:3;31931:67;:::i;:::-;31924:74;;32007:93;32096:3;32007:93;:::i;:::-;32125:2;32120:3;32116:12;32109:19;;31768:366;;;:::o;32140:419::-;32306:4;32344:2;32333:9;32329:18;32321:26;;32393:9;32387:4;32383:20;32379:1;32368:9;32364:17;32357:47;32421:131;32547:4;32421:131;:::i;:::-;32413:139;;32140:419;;;:::o;32565:182::-;32705:34;32701:1;32693:6;32689:14;32682:58;32565:182;:::o;32753:366::-;32895:3;32916:67;32980:2;32975:3;32916:67;:::i;:::-;32909:74;;32992:93;33081:3;32992:93;:::i;:::-;33110:2;33105:3;33101:12;33094:19;;32753:366;;;:::o;33125:419::-;33291:4;33329:2;33318:9;33314:18;33306:26;;33378:9;33372:4;33368:20;33364:1;33353:9;33349:17;33342:47;33406:131;33532:4;33406:131;:::i;:::-;33398:139;;33125:419;;;:::o;33550:98::-;33601:6;33635:5;33629:12;33619:22;;33550:98;;;:::o;33654:168::-;33737:11;33771:6;33766:3;33759:19;33811:4;33806:3;33802:14;33787:29;;33654:168;;;;:::o;33828:373::-;33914:3;33942:38;33974:5;33942:38;:::i;:::-;33996:70;34059:6;34054:3;33996:70;:::i;:::-;33989:77;;34075:65;34133:6;34128:3;34121:4;34114:5;34110:16;34075:65;:::i;:::-;34165:29;34187:6;34165:29;:::i;:::-;34160:3;34156:39;34149:46;;33918:283;33828:373;;;;:::o;34207:640::-;34402:4;34440:3;34429:9;34425:19;34417:27;;34454:71;34522:1;34511:9;34507:17;34498:6;34454:71;:::i;:::-;34535:72;34603:2;34592:9;34588:18;34579:6;34535:72;:::i;:::-;34617;34685:2;34674:9;34670:18;34661:6;34617:72;:::i;:::-;34736:9;34730:4;34726:20;34721:2;34710:9;34706:18;34699:48;34764:76;34835:4;34826:6;34764:76;:::i;:::-;34756:84;;34207:640;;;;;;;:::o;34853:141::-;34909:5;34940:6;34934:13;34925:22;;34956:32;34982:5;34956:32;:::i;:::-;34853:141;;;;:::o;35000:349::-;35069:6;35118:2;35106:9;35097:7;35093:23;35089:32;35086:119;;;35124:79;;:::i;:::-;35086:119;35244:1;35269:63;35324:7;35315:6;35304:9;35300:22;35269:63;:::i;:::-;35259:73;;35215:127;35000:349;;;;:::o
Swarm Source
ipfs://9febdc2e13b4f52cbe0f5c69a5366ad4b64e0254e1b1adc86a649ba3a19a0f05
Loading...
Loading
Loading...
Loading

Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.